Add email subscriptions (#38163)
This commit is contained in:
parent
b46d003e20
commit
bcf0718a9a
@ -0,0 +1,26 @@
|
|||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
class Api::V1::Accounts::EmailSubscriptionsController < Api::BaseController
|
||||||
|
before_action :set_account
|
||||||
|
before_action :require_feature_enabled!
|
||||||
|
before_action :require_account_permissions!
|
||||||
|
|
||||||
|
def create
|
||||||
|
@account.email_subscriptions.create!(email: params[:email], locale: I18n.locale)
|
||||||
|
render_empty
|
||||||
|
end
|
||||||
|
|
||||||
|
private
|
||||||
|
|
||||||
|
def set_account
|
||||||
|
@account = Account.local.find(params[:account_id])
|
||||||
|
end
|
||||||
|
|
||||||
|
def require_feature_enabled!
|
||||||
|
head 404 unless Mastodon::Feature.email_subscriptions_enabled?
|
||||||
|
end
|
||||||
|
|
||||||
|
def require_account_permissions!
|
||||||
|
head 404 if @account.unavailable? || !@account.user_can?(:manage_email_subscriptions) || !@account.user_email_subscriptions_enabled?
|
||||||
|
end
|
||||||
|
end
|
||||||
@ -0,0 +1,17 @@
|
|||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
class EmailSubscriptions::ConfirmationsController < ApplicationController
|
||||||
|
layout 'auth'
|
||||||
|
|
||||||
|
before_action :set_email_subscription
|
||||||
|
|
||||||
|
def show
|
||||||
|
@email_subscription.confirm! unless @email_subscription.confirmed?
|
||||||
|
end
|
||||||
|
|
||||||
|
private
|
||||||
|
|
||||||
|
def set_email_subscription
|
||||||
|
@email_subscription = EmailSubscription.find_by!(confirmation_token: params[:confirmation_token])
|
||||||
|
end
|
||||||
|
end
|
||||||
@ -1,39 +0,0 @@
|
|||||||
# frozen_string_literal: true
|
|
||||||
|
|
||||||
class MailSubscriptionsController < ApplicationController
|
|
||||||
layout 'auth'
|
|
||||||
|
|
||||||
skip_before_action :require_functional!
|
|
||||||
|
|
||||||
before_action :set_user
|
|
||||||
before_action :set_type
|
|
||||||
|
|
||||||
protect_from_forgery with: :null_session
|
|
||||||
|
|
||||||
def show; end
|
|
||||||
|
|
||||||
def create
|
|
||||||
@user.settings[email_type_from_param] = false
|
|
||||||
@user.save!
|
|
||||||
end
|
|
||||||
|
|
||||||
private
|
|
||||||
|
|
||||||
def set_user
|
|
||||||
@user = GlobalID::Locator.locate_signed(params[:token], for: 'unsubscribe')
|
|
||||||
not_found unless @user
|
|
||||||
end
|
|
||||||
|
|
||||||
def set_type
|
|
||||||
@type = email_type_from_param
|
|
||||||
end
|
|
||||||
|
|
||||||
def email_type_from_param
|
|
||||||
case params[:type]
|
|
||||||
when 'follow', 'reblog', 'favourite', 'mention', 'follow_request'
|
|
||||||
"notification_emails.#{params[:type]}"
|
|
||||||
else
|
|
||||||
not_found
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
class Settings::PrivacyController < Settings::BaseController
|
class Settings::PrivacyController < Settings::BaseController
|
||||||
before_action :set_account
|
before_action :set_account
|
||||||
|
before_action :set_email_subscriptions_count
|
||||||
|
|
||||||
def show; end
|
def show; end
|
||||||
|
|
||||||
@ -24,4 +25,8 @@ class Settings::PrivacyController < Settings::BaseController
|
|||||||
def set_account
|
def set_account
|
||||||
@account = current_account
|
@account = current_account
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def set_email_subscriptions_count
|
||||||
|
@email_subscriptions_count = with_read_replica { @account.email_subscriptions.confirmed.count }
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
58
app/controllers/unsubscriptions_controller.rb
Normal file
58
app/controllers/unsubscriptions_controller.rb
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
class UnsubscriptionsController < ApplicationController
|
||||||
|
layout 'auth'
|
||||||
|
|
||||||
|
skip_before_action :require_functional!
|
||||||
|
|
||||||
|
before_action :set_recipient
|
||||||
|
before_action :set_type
|
||||||
|
before_action :set_scope
|
||||||
|
before_action :require_type_if_user!
|
||||||
|
|
||||||
|
protect_from_forgery with: :null_session
|
||||||
|
|
||||||
|
def show; end
|
||||||
|
|
||||||
|
def create
|
||||||
|
case @scope
|
||||||
|
when :user
|
||||||
|
@recipient.settings[@type] = false
|
||||||
|
@recipient.save!
|
||||||
|
when :email_subscription
|
||||||
|
@recipient.destroy!
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
private
|
||||||
|
|
||||||
|
def set_recipient
|
||||||
|
@recipient = GlobalID::Locator.locate_signed(params[:token], for: 'unsubscribe')
|
||||||
|
not_found unless @recipient
|
||||||
|
end
|
||||||
|
|
||||||
|
def set_scope
|
||||||
|
if @recipient.is_a?(User)
|
||||||
|
@scope = :user
|
||||||
|
elsif @recipient.is_a?(EmailSubscription)
|
||||||
|
@scope = :email_subscription
|
||||||
|
else
|
||||||
|
not_found
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def set_type
|
||||||
|
@type = email_type_from_param
|
||||||
|
end
|
||||||
|
|
||||||
|
def require_type_if_user!
|
||||||
|
not_found if @recipient.is_a?(User) && @type.blank?
|
||||||
|
end
|
||||||
|
|
||||||
|
def email_type_from_param
|
||||||
|
case params[:type]
|
||||||
|
when 'follow', 'reblog', 'favourite', 'mention', 'follow_request'
|
||||||
|
"notification_emails.#{params[:type]}"
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
@ -721,6 +721,52 @@ table + p {
|
|||||||
line-height: 24px;
|
line-height: 24px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Banner item
|
||||||
|
.email-banner-table {
|
||||||
|
border-radius: 12px;
|
||||||
|
background-color: #1b001f;
|
||||||
|
background-image: url('../../images/mailer-new/common/header-bg-start.png');
|
||||||
|
background-position: left top;
|
||||||
|
background-repeat: repeat;
|
||||||
|
}
|
||||||
|
|
||||||
|
.email-banner-td {
|
||||||
|
padding: 24px 24px 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.email-banner-text-td {
|
||||||
|
p {
|
||||||
|
margin: 0 0 12px;
|
||||||
|
color: #fff;
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: 600;
|
||||||
|
line-height: 16.8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.email-desktop-flex {
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.email-btn-table {
|
||||||
|
background-color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.email-btn-td {
|
||||||
|
mso-padding-alt: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.email-btn-a {
|
||||||
|
color: #181820;
|
||||||
|
padding-left: 10px;
|
||||||
|
padding-right: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
div + div {
|
||||||
|
margin-inline-start: auto;
|
||||||
|
margin-bottom: 12px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Checklist item
|
// Checklist item
|
||||||
.email-checklist-wrapper-td {
|
.email-checklist-wrapper-td {
|
||||||
padding: 4px 0;
|
padding: 4px 0;
|
||||||
|
|||||||
@ -93,6 +93,26 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&.mini-table {
|
||||||
|
border-top: 1px solid var(--color-border-primary);
|
||||||
|
width: 50%;
|
||||||
|
|
||||||
|
& > tbody > tr > th,
|
||||||
|
& > tbody > tr > td {
|
||||||
|
padding: 12px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
& > tbody > tr > th {
|
||||||
|
color: var(--color-text-secondary);
|
||||||
|
font-weight: 400;
|
||||||
|
}
|
||||||
|
|
||||||
|
& > tbody > tr > td {
|
||||||
|
color: var(--color-text-primary);
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
&.batch-table {
|
&.batch-table {
|
||||||
& > thead > tr > th {
|
& > thead > tr > th {
|
||||||
background: var(--color-bg-primary);
|
background: var(--color-bg-primary);
|
||||||
|
|||||||
66
app/mailers/email_subscription_mailer.rb
Normal file
66
app/mailers/email_subscription_mailer.rb
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
class EmailSubscriptionMailer < ApplicationMailer
|
||||||
|
include BulkMailSettingsConcern
|
||||||
|
include Redisable
|
||||||
|
|
||||||
|
layout 'mailer'
|
||||||
|
|
||||||
|
helper :accounts
|
||||||
|
helper :routing
|
||||||
|
helper :statuses
|
||||||
|
|
||||||
|
before_action :set_subscription
|
||||||
|
before_action :set_unsubscribe_url
|
||||||
|
before_action :set_instance
|
||||||
|
before_action :set_skip_preferences_link
|
||||||
|
|
||||||
|
after_action :use_bulk_mail_delivery_settings, except: [:confirmation]
|
||||||
|
after_action :set_list_headers
|
||||||
|
|
||||||
|
default to: -> { @subscription.email }
|
||||||
|
|
||||||
|
def confirmation
|
||||||
|
I18n.with_locale(locale) do
|
||||||
|
mail subject: default_i18n_subject
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def notification(statuses)
|
||||||
|
@statuses = statuses
|
||||||
|
|
||||||
|
I18n.with_locale(locale) do
|
||||||
|
mail subject: default_i18n_subject(count: @statuses.size, name: @subscription.account.display_name, excerpt: @statuses.first.text.truncate(17))
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
private
|
||||||
|
|
||||||
|
def set_list_headers
|
||||||
|
headers(
|
||||||
|
'List-ID' => "<#{@subscription.account.username}.#{Rails.configuration.x.local_domain}>",
|
||||||
|
'List-Unsubscribe-Post' => 'List-Unsubscribe=One-Click',
|
||||||
|
'List-Unsubscribe' => "<#{@unsubscribe_url}>"
|
||||||
|
)
|
||||||
|
end
|
||||||
|
|
||||||
|
def set_subscription
|
||||||
|
@subscription = params[:subscription]
|
||||||
|
end
|
||||||
|
|
||||||
|
def set_unsubscribe_url
|
||||||
|
@unsubscribe_url = unsubscribe_url(token: @subscription.to_sgid(for: 'unsubscribe').to_s)
|
||||||
|
end
|
||||||
|
|
||||||
|
def set_instance
|
||||||
|
@instance = Rails.configuration.x.local_domain
|
||||||
|
end
|
||||||
|
|
||||||
|
def set_skip_preferences_link
|
||||||
|
@skip_preferences_link = true
|
||||||
|
end
|
||||||
|
|
||||||
|
def locale
|
||||||
|
@subscription.locale.presence || I18n.default_locale
|
||||||
|
end
|
||||||
|
end
|
||||||
@ -193,8 +193,10 @@ class Account < ApplicationRecord
|
|||||||
:role,
|
:role,
|
||||||
:locale,
|
:locale,
|
||||||
:shows_application?,
|
:shows_application?,
|
||||||
|
:email_subscriptions_enabled?,
|
||||||
:prefers_noindex?,
|
:prefers_noindex?,
|
||||||
:time_zone,
|
:time_zone,
|
||||||
|
:can?,
|
||||||
to: :user,
|
to: :user,
|
||||||
prefix: true,
|
prefix: true,
|
||||||
allow_nil: true
|
allow_nil: true
|
||||||
|
|||||||
@ -38,6 +38,7 @@ module Account::Associations
|
|||||||
has_many :status_pins
|
has_many :status_pins
|
||||||
has_many :statuses
|
has_many :statuses
|
||||||
has_many :keypairs
|
has_many :keypairs
|
||||||
|
has_many :email_subscriptions
|
||||||
|
|
||||||
has_one :deletion_request, class_name: 'AccountDeletionRequest'
|
has_one :deletion_request, class_name: 'AccountDeletionRequest'
|
||||||
has_one :follow_recommendation_suppression
|
has_one :follow_recommendation_suppression
|
||||||
|
|||||||
@ -15,6 +15,10 @@ module User::HasSettings
|
|||||||
settings['noindex']
|
settings['noindex']
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def email_subscriptions_enabled?
|
||||||
|
settings['email_subscriptions']
|
||||||
|
end
|
||||||
|
|
||||||
def preferred_posting_language
|
def preferred_posting_language
|
||||||
valid_locale_cascade(settings['default_language'], locale, I18n.locale)
|
valid_locale_cascade(settings['default_language'], locale, I18n.locale)
|
||||||
end
|
end
|
||||||
|
|||||||
48
app/models/email_subscription.rb
Normal file
48
app/models/email_subscription.rb
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
# == Schema Information
|
||||||
|
#
|
||||||
|
# Table name: email_subscriptions
|
||||||
|
#
|
||||||
|
# id :bigint(8) not null, primary key
|
||||||
|
# confirmation_token :string
|
||||||
|
# confirmed_at :datetime
|
||||||
|
# email :string not null
|
||||||
|
# locale :string not null
|
||||||
|
# created_at :datetime not null
|
||||||
|
# updated_at :datetime not null
|
||||||
|
# account_id :bigint(8) not null
|
||||||
|
#
|
||||||
|
|
||||||
|
class EmailSubscription < ApplicationRecord
|
||||||
|
belongs_to :account
|
||||||
|
|
||||||
|
normalizes :email, with: ->(str) { str.squish.downcase }
|
||||||
|
|
||||||
|
validates :email, presence: true, email_address: true, uniqueness: { scope: :account_id }
|
||||||
|
|
||||||
|
scope :confirmed, -> { where.not(confirmed_at: nil) }
|
||||||
|
scope :unconfirmed, -> { where(confirmed_at: nil) }
|
||||||
|
|
||||||
|
before_create :set_confirmation_token
|
||||||
|
|
||||||
|
after_create_commit :send_confirmation_email
|
||||||
|
|
||||||
|
def confirmed?
|
||||||
|
confirmed_at.present?
|
||||||
|
end
|
||||||
|
|
||||||
|
def confirm!
|
||||||
|
touch(:confirmed_at)
|
||||||
|
end
|
||||||
|
|
||||||
|
private
|
||||||
|
|
||||||
|
def set_confirmation_token
|
||||||
|
self.confirmation_token = Devise.friendly_token unless confirmed?
|
||||||
|
end
|
||||||
|
|
||||||
|
def send_confirmation_email
|
||||||
|
EmailSubscriptionMailer.with(subscription: self).confirmation.deliver_later
|
||||||
|
end
|
||||||
|
end
|
||||||
@ -39,6 +39,7 @@ class UserRole < ApplicationRecord
|
|||||||
delete_user_data: (1 << 19),
|
delete_user_data: (1 << 19),
|
||||||
view_feeds: (1 << 20),
|
view_feeds: (1 << 20),
|
||||||
invite_bypass_approval: (1 << 21),
|
invite_bypass_approval: (1 << 21),
|
||||||
|
manage_email_subscriptions: (1 << 22),
|
||||||
}.freeze
|
}.freeze
|
||||||
|
|
||||||
EVERYONE_ROLE_ID = -99
|
EVERYONE_ROLE_ID = -99
|
||||||
@ -60,6 +61,10 @@ class UserRole < ApplicationRecord
|
|||||||
invite_bypass_approval
|
invite_bypass_approval
|
||||||
).freeze,
|
).freeze,
|
||||||
|
|
||||||
|
email: %i(
|
||||||
|
manage_email_subscriptions
|
||||||
|
).freeze,
|
||||||
|
|
||||||
moderation: %i(
|
moderation: %i(
|
||||||
view_dashboard
|
view_dashboard
|
||||||
view_audit_log
|
view_audit_log
|
||||||
|
|||||||
@ -16,6 +16,7 @@ class UserSettings
|
|||||||
setting :default_sensitive, default: false
|
setting :default_sensitive, default: false
|
||||||
setting :default_privacy, default: nil, in: %w(public unlisted private)
|
setting :default_privacy, default: nil, in: %w(public unlisted private)
|
||||||
setting :default_quote_policy, default: 'public', in: %w(public followers nobody)
|
setting :default_quote_policy, default: 'public', in: %w(public followers nobody)
|
||||||
|
setting :email_subscriptions, default: false
|
||||||
|
|
||||||
setting_inverse_alias :indexable, :noindex
|
setting_inverse_alias :indexable, :noindex
|
||||||
|
|
||||||
|
|||||||
@ -22,6 +22,7 @@ class REST::AccountSerializer < ActiveModel::Serializer
|
|||||||
attribute :memorial, if: :memorial?
|
attribute :memorial, if: :memorial?
|
||||||
|
|
||||||
attribute :feature_approval, if: -> { Mastodon::Feature.collections_enabled? }
|
attribute :feature_approval, if: -> { Mastodon::Feature.collections_enabled? }
|
||||||
|
attribute :email_subscriptions, if: -> { Mastodon::Feature.email_subscriptions_enabled? }
|
||||||
|
|
||||||
class AccountDecorator < SimpleDelegator
|
class AccountDecorator < SimpleDelegator
|
||||||
def self.model_name
|
def self.model_name
|
||||||
@ -176,4 +177,8 @@ class REST::AccountSerializer < ActiveModel::Serializer
|
|||||||
current_user: object.feature_policy_for_account(current_user&.account),
|
current_user: object.feature_policy_for_account(current_user&.account),
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def email_subscriptions
|
||||||
|
object.user_can?(:manage_email_subscriptions) && object.user_email_subscriptions_enabled?
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@ -5,6 +5,12 @@ class PostStatusService < BaseService
|
|||||||
include Lockable
|
include Lockable
|
||||||
include LanguagesHelper
|
include LanguagesHelper
|
||||||
|
|
||||||
|
# How much to delay sending an e-mail about a new post, to allow grouping multiple posts
|
||||||
|
EMAIL_DISTRIBUTION_DELAY = 5.minutes.freeze
|
||||||
|
|
||||||
|
# If the job is not executed within this timeframe, it will lose its arguments
|
||||||
|
EMAIL_DISTRIBUTION_TTL = 1.hour.to_i
|
||||||
|
|
||||||
class UnexpectedMentionsError < StandardError
|
class UnexpectedMentionsError < StandardError
|
||||||
attr_reader :accounts
|
attr_reader :accounts
|
||||||
|
|
||||||
@ -158,11 +164,26 @@ class PostStatusService < BaseService
|
|||||||
Trends.tags.register(@status)
|
Trends.tags.register(@status)
|
||||||
LinkCrawlWorker.perform_async(@status.id)
|
LinkCrawlWorker.perform_async(@status.id)
|
||||||
DistributionWorker.perform_async(@status.id)
|
DistributionWorker.perform_async(@status.id)
|
||||||
|
process_email_subscriptions!
|
||||||
ActivityPub::DistributionWorker.perform_async(@status.id)
|
ActivityPub::DistributionWorker.perform_async(@status.id)
|
||||||
PollExpirationNotifyWorker.perform_at(@status.poll.expires_at, @status.poll.id) if @status.poll
|
PollExpirationNotifyWorker.perform_at(@status.poll.expires_at, @status.poll.id) if @status.poll
|
||||||
ActivityPub::QuoteRequestWorker.perform_async(@status.quote.id) if @status.quote&.quoted_status.present? && !@status.quote&.quoted_status&.local?
|
ActivityPub::QuoteRequestWorker.perform_async(@status.quote.id) if @status.quote&.quoted_status.present? && !@status.quote&.quoted_status&.local?
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def process_email_subscriptions!
|
||||||
|
return unless Mastodon::Feature.email_subscriptions_enabled? &&
|
||||||
|
@status.public_visibility? && (!@status.reply? || @status.in_reply_to_account_id == @status.account_id) &&
|
||||||
|
@status.account.user_can?(:manage_email_subscriptions) &&
|
||||||
|
@status.account.user_email_subscriptions_enabled?
|
||||||
|
|
||||||
|
# To allow e-mail grouping, pass the arguments via a redis set and schedule
|
||||||
|
# a unique worker a few minutes in the future, in case the user makes subsequent
|
||||||
|
# posts within that time window
|
||||||
|
redis.sadd("email_subscriptions:#{@status.account_id}:next_batch", @status.id)
|
||||||
|
redis.expire("email_subscriptions:#{@status.account_id}:next_batch", EMAIL_DISTRIBUTION_TTL)
|
||||||
|
EmailDistributionWorker.perform_in(EMAIL_DISTRIBUTION_DELAY, @status.account_id)
|
||||||
|
end
|
||||||
|
|
||||||
def validate_media!
|
def validate_media!
|
||||||
if @options[:media_ids].blank? || !@options[:media_ids].is_a?(Enumerable)
|
if @options[:media_ids].blank? || !@options[:media_ids].is_a?(Enumerable)
|
||||||
@media = []
|
@media = []
|
||||||
|
|||||||
20
app/views/email_subscription_mailer/confirmation.html.haml
Normal file
20
app/views/email_subscription_mailer/confirmation.html.haml
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
= content_for :heading do
|
||||||
|
= render 'application/mailer/heading',
|
||||||
|
image_url: full_asset_url(@subscription.account.avatar.url),
|
||||||
|
title: t('.title', name: display_name(@subscription.account))
|
||||||
|
|
||||||
|
%table.email-w-full{ cellspacing: 0, cellpadding: 0, border: 0, role: 'presentation' }
|
||||||
|
%tr
|
||||||
|
%td.email-body-padding-td
|
||||||
|
%table.email-inner-card-table{ cellspacing: 0, cellpadding: 0, border: 0, role: 'presentation' }
|
||||||
|
%tr
|
||||||
|
%td.email-inner-card-td.email-prose
|
||||||
|
%p= t '.instructions_to_confirm', name: display_name(@subscription.account), acct: "#{@subscription.account.username}@#{@instance}"
|
||||||
|
|
||||||
|
= render 'application/mailer/button', text: t('.action'), url: email_subscriptions_confirmation_url(confirmation_token: @subscription.confirmation_token)
|
||||||
|
|
||||||
|
%p= t '.instructions_to_ignore'
|
||||||
|
|
||||||
|
- content_for :footer do
|
||||||
|
%p.email-footer-p= t('email_subscription_mailer.notification.footer.reason_for_email_html', name: display_name(@subscription.account), unsubscribe_path: @unsubscribe_url)
|
||||||
|
%p.email-footer-p= t('email_subscription_mailer.notification.footer.privacy_html', domain: @instance, privacy_policy_path: privacy_policy_path)
|
||||||
@ -0,0 +1,9 @@
|
|||||||
|
<%= t '.title', name: display_name(@subscription.account) %>
|
||||||
|
|
||||||
|
===
|
||||||
|
|
||||||
|
<%= t '.instructions_to_confirm', name: display_name(@subscription.account), acct: "#{@subscription.account.username}@#{@instance}" %>
|
||||||
|
|
||||||
|
=> <%= root_url(confirmation_token: @subscription.confirmation_token) %>
|
||||||
|
|
||||||
|
<%= t '.instructions_to_ignore' %>
|
||||||
36
app/views/email_subscription_mailer/notification.html.haml
Normal file
36
app/views/email_subscription_mailer/notification.html.haml
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
%table.email-w-full{ cellspacing: 0, cellpadding: 0, border: 0, role: 'presentation' }
|
||||||
|
- @statuses.each do |status|
|
||||||
|
%tr
|
||||||
|
%td.email-body-padding-td
|
||||||
|
%table.email-inner-card-table{ cellspacing: 0, cellpadding: 0, border: 0, role: 'presentation' }
|
||||||
|
%tr
|
||||||
|
%td.email-inner-card-td
|
||||||
|
= render 'notification_mailer/status', status: status, time_zone: nil
|
||||||
|
|
||||||
|
%table.email-w-full{ cellspacing: 0, cellpadding: 0, border: 0, role: 'presentation' }
|
||||||
|
%tr
|
||||||
|
%td.email-body-padding-td
|
||||||
|
%table.email-w-full.email-checklist-wrapper-table{ cellspacing: 0, cellpadding: 0, border: 0, role: 'presentation' }
|
||||||
|
%tr
|
||||||
|
%td.email-checklist-wrapper-td
|
||||||
|
%table.email-w-full.email-banner-table{ cellspacing: 0, cellpadding: 0, border: 0, role: 'presentation' }
|
||||||
|
%tr
|
||||||
|
%td.email-banner-td
|
||||||
|
%table.email-w-full{ cellspacing: 0, cellpadding: 0, border: 0, role: 'presentation' }
|
||||||
|
%tr
|
||||||
|
%td.email-banner-text-td
|
||||||
|
.email-desktop-flex
|
||||||
|
/[if mso]
|
||||||
|
<table border="0" cellpadding="0" cellspacing="0" align="center" style="width:100%;" role="presentation"><tr><td vertical-align:top;">
|
||||||
|
%div
|
||||||
|
%p= t('.interact_with_this_post', count: @statuses.size)
|
||||||
|
/[if mso]
|
||||||
|
</td><td style="vertical-align:top;">
|
||||||
|
%div
|
||||||
|
= render 'application/mailer/button', text: t('.create_account'), url: available_sign_up_path, has_arrow: false
|
||||||
|
/[if mso]
|
||||||
|
</td></tr></table>
|
||||||
|
|
||||||
|
- content_for :footer do
|
||||||
|
%p.email-footer-p= t('.footer.reason_for_email_html', name: display_name(@subscription.account), unsubscribe_path: @unsubscribe_url)
|
||||||
|
%p.email-footer-p= t('.footer.privacy_html', domain: @instance, privacy_policy_path: privacy_policy_path)
|
||||||
@ -0,0 +1,7 @@
|
|||||||
|
<%= t '.title', count: @statuses.size, name: display_name(@subscription.account), excerpt: truncate(@statuses.first.text, length: 17) %>
|
||||||
|
|
||||||
|
===
|
||||||
|
|
||||||
|
<%- @statuses.each do |status| %>
|
||||||
|
<%= render 'notification_mailer/status', status: status %>
|
||||||
|
<%- end %>
|
||||||
11
app/views/email_subscriptions/confirmations/show.html.haml
Normal file
11
app/views/email_subscriptions/confirmations/show.html.haml
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
- content_for :page_title do
|
||||||
|
= t('.title')
|
||||||
|
|
||||||
|
.simple_form
|
||||||
|
%h1.title
|
||||||
|
= t('.title')
|
||||||
|
%p.lead
|
||||||
|
= t('.success_html', name: content_tag(:strong, display_name(@email_subscription.account)), sender: content_tag(:strong, EmailSubscriptionMailer.default[:from]))
|
||||||
|
%p.lead
|
||||||
|
= t('.changed_your_mind')
|
||||||
|
= link_to t('.unsubscribe'), unsubscribe_url(token: @email_subscription.to_sgid(for: 'unsubscribe'))
|
||||||
@ -12,6 +12,7 @@
|
|||||||
%style{ 'data-premailer': 'ignore' }
|
%style{ 'data-premailer': 'ignore' }
|
||||||
\.email a { color: inherit; text-decoration: none; }
|
\.email a { color: inherit; text-decoration: none; }
|
||||||
\.email-btn-hover:hover { background-color: #563acc !important; }
|
\.email-btn-hover:hover { background-color: #563acc !important; }
|
||||||
|
\.email-banner-text-td .email-btn-hover:hover { background-color: #fff !important; }
|
||||||
/[if mso]
|
/[if mso]
|
||||||
<xml>
|
<xml>
|
||||||
<o:OfficeDocumentSettings xmlns:o="urn:schemas-microsoft-com:office:office">
|
<o:OfficeDocumentSettings xmlns:o="urn:schemas-microsoft-com:office:office">
|
||||||
@ -73,15 +74,18 @@
|
|||||||
%table.email-w-full{ cellspacing: 0, cellpadding: 0, border: 0, role: 'presentation' }
|
%table.email-w-full{ cellspacing: 0, cellpadding: 0, border: 0, role: 'presentation' }
|
||||||
%tr
|
%tr
|
||||||
%td.email-footer-td
|
%td.email-footer-td
|
||||||
%p.email-footer-p
|
- if content_for?(:footer)
|
||||||
= link_to root_url, class: 'email-footer-logo-a' do
|
= yield :footer
|
||||||
= image_tag frontend_asset_url('images/mailer-new/common/logo-footer.png'), alt: 'Mastodon', width: 44, height: 44
|
- else
|
||||||
%p.email-footer-p
|
%p.email-footer-p
|
||||||
= t 'about.hosted_on', domain: site_hostname
|
= link_to root_url, class: 'email-footer-logo-a' do
|
||||||
%p.email-footer-p
|
= image_tag frontend_asset_url('images/mailer-new/common/logo-footer.png'), alt: 'Mastodon', width: 44, height: 44
|
||||||
= link_to t('application_mailer.notification_preferences'), settings_preferences_notifications_url
|
%p.email-footer-p
|
||||||
- if defined?(@unsubscribe_url)
|
= t 'about.hosted_on', domain: site_hostname
|
||||||
·
|
%p.email-footer-p
|
||||||
= link_to t('application_mailer.unsubscribe'), @unsubscribe_url
|
= link_to t('application_mailer.notification_preferences'), settings_preferences_notifications_url
|
||||||
|
- if defined?(@unsubscribe_url)
|
||||||
|
·
|
||||||
|
= link_to t('application_mailer.unsubscribe'), @unsubscribe_url
|
||||||
/[if mso]
|
/[if mso]
|
||||||
</td></tr></table>
|
</td></tr></table>
|
||||||
|
|||||||
@ -1,5 +1,9 @@
|
|||||||
<%= yield %>
|
<%= yield %>
|
||||||
---
|
---
|
||||||
|
|
||||||
<%= t 'about.hosted_on', domain: site_hostname %>
|
<%- unless defined?(@skip_preferences_link) %>
|
||||||
<%= t('application_mailer.settings', link: settings_preferences_url) %>
|
<%= t('application_mailer.notification_preferences') %>: <%= settings_preferences_url %>
|
||||||
|
<%- end %>
|
||||||
|
<%- if defined?(@unsubscribe_url) %>
|
||||||
|
<%= t('application_mailer.unsubscribe') %>: <%= @unsubscribe_url %>
|
||||||
|
<%- end %>
|
||||||
|
|||||||
@ -1,9 +0,0 @@
|
|||||||
- content_for :page_title do
|
|
||||||
= t('mail_subscriptions.unsubscribe.title')
|
|
||||||
|
|
||||||
.simple_form
|
|
||||||
%h1.title= t('mail_subscriptions.unsubscribe.complete')
|
|
||||||
%p.lead
|
|
||||||
= t('mail_subscriptions.unsubscribe.success_html', domain: content_tag(:strong, site_hostname), type: content_tag(:strong, I18n.t(@type, scope: 'mail_subscriptions.unsubscribe.emails')), email: content_tag(:strong, @user.email))
|
|
||||||
%p.lead
|
|
||||||
= t('mail_subscriptions.unsubscribe.resubscribe_html', settings_path: settings_preferences_notifications_path)
|
|
||||||
@ -1,20 +0,0 @@
|
|||||||
- content_for :page_title do
|
|
||||||
= t('mail_subscriptions.unsubscribe.title')
|
|
||||||
|
|
||||||
.simple_form
|
|
||||||
%h1.title= t('mail_subscriptions.unsubscribe.title')
|
|
||||||
%p.lead
|
|
||||||
= t 'mail_subscriptions.unsubscribe.confirmation_html',
|
|
||||||
domain: content_tag(:strong, site_hostname),
|
|
||||||
type: content_tag(:strong, I18n.t(@type, scope: 'mail_subscriptions.unsubscribe.emails')),
|
|
||||||
email: content_tag(:strong, @user.email),
|
|
||||||
settings_path: settings_preferences_notifications_path
|
|
||||||
|
|
||||||
= form_with url: unsubscribe_path do |form|
|
|
||||||
= form.hidden_field :token,
|
|
||||||
value: params[:token]
|
|
||||||
= form.hidden_field :type,
|
|
||||||
value: params[:type]
|
|
||||||
= form.button t('mail_subscriptions.unsubscribe.action'),
|
|
||||||
type: :submit,
|
|
||||||
class: 'btn'
|
|
||||||
@ -41,5 +41,25 @@
|
|||||||
.fields-group
|
.fields-group
|
||||||
= ff.input :show_application, wrapper: :with_label
|
= ff.input :show_application, wrapper: :with_label
|
||||||
|
|
||||||
|
- if Mastodon::Feature.email_subscriptions_enabled? && current_user.can?(:manage_email_subscriptions)
|
||||||
|
%h2= t('privacy.email_subscriptions')
|
||||||
|
|
||||||
|
%p.lead= t('privacy.email_subscriptions_hint_html')
|
||||||
|
|
||||||
|
- if @email_subscriptions_count.positive? || @account.user_email_subscriptions_enabled?
|
||||||
|
.table-wrapper
|
||||||
|
%table.table.mini-table
|
||||||
|
%tbody
|
||||||
|
%tr
|
||||||
|
%th= t('email_subscriptions.status')
|
||||||
|
%td= @account.user_email_subscriptions_enabled? ? t('email_subscriptions.active') : t('email_subscriptions.inactive')
|
||||||
|
%tr
|
||||||
|
%th= t('email_subscriptions.subscribers')
|
||||||
|
%td= number_with_delimiter @email_subscriptions_count
|
||||||
|
|
||||||
|
= f.simple_fields_for :settings, current_user.settings do |ff|
|
||||||
|
.fields-group
|
||||||
|
= ff.input :email_subscriptions, wrapper: :with_label
|
||||||
|
|
||||||
.actions
|
.actions
|
||||||
= f.button :button, t('generic.save_changes'), type: :submit
|
= f.button :button, t('generic.save_changes'), type: :submit
|
||||||
|
|||||||
12
app/views/unsubscriptions/create.html.haml
Normal file
12
app/views/unsubscriptions/create.html.haml
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
- content_for :page_title do
|
||||||
|
= t('.title')
|
||||||
|
|
||||||
|
.simple_form
|
||||||
|
%h1.title= t('.title')
|
||||||
|
%p.lead
|
||||||
|
- if @scope == :email_subscription
|
||||||
|
= t('.email_subscription.confirmation_html', name: display_name(@recipient.account))
|
||||||
|
- elsif @scope == :user
|
||||||
|
= t('.user.confirmation_html', type: I18n.t(@type, scope: 'unsubscriptions.notification_emails'), domain: site_hostname)
|
||||||
|
|
||||||
|
= link_to t('.action'), root_path, class: 'btn'
|
||||||
26
app/views/unsubscriptions/show.html.haml
Normal file
26
app/views/unsubscriptions/show.html.haml
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
- content_for :page_title do
|
||||||
|
- if @scope == :user
|
||||||
|
= t('.user.title', type: I18n.t(@type, scope: 'unsubscriptions.notification_emails'))
|
||||||
|
- elsif @scope == :email_subscription
|
||||||
|
= t('.email_subscription.title', name: display_name(@recipient.account))
|
||||||
|
|
||||||
|
.simple_form
|
||||||
|
%h1.title
|
||||||
|
- if @scope == :user
|
||||||
|
= t('.user.title', type: I18n.t(@type, scope: 'unsubscriptions.notification_emails'))
|
||||||
|
- elsif @scope == :email_subscription
|
||||||
|
= t('.email_subscription.title', name: display_name(@recipient.account))
|
||||||
|
%p.lead
|
||||||
|
- if @scope == :user
|
||||||
|
= t('.user.confirmation_html')
|
||||||
|
- elsif @scope == :email_subscription
|
||||||
|
= t('.email_subscription.confirmation_html')
|
||||||
|
|
||||||
|
= form_with url: unsubscribe_path do |form|
|
||||||
|
= form.hidden_field :token,
|
||||||
|
value: params[:token]
|
||||||
|
= form.hidden_field :type,
|
||||||
|
value: params[:type]
|
||||||
|
= form.button t('.action'),
|
||||||
|
type: :submit,
|
||||||
|
class: 'btn'
|
||||||
37
app/workers/email_distribution_worker.rb
Normal file
37
app/workers/email_distribution_worker.rb
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
class EmailDistributionWorker
|
||||||
|
include Sidekiq::Worker
|
||||||
|
include Redisable
|
||||||
|
|
||||||
|
sidekiq_options lock: :until_executed, lock_ttl: 1.day.to_i
|
||||||
|
|
||||||
|
def perform(account_id)
|
||||||
|
return unless Mastodon::Feature.email_subscriptions_enabled?
|
||||||
|
|
||||||
|
@account = Account.find(account_id)
|
||||||
|
|
||||||
|
return unless @account.user_can?(:manage_email_subscriptions) && @account.user_email_subscriptions_enabled?
|
||||||
|
|
||||||
|
with_redis do |redis|
|
||||||
|
@status_ids = redis.smembers("email_subscriptions:#{account_id}:next_batch")
|
||||||
|
redis.srem("email_subscriptions:#{account_id}:next_batch", @status_ids)
|
||||||
|
end
|
||||||
|
|
||||||
|
return if @account.email_subscriptions.confirmed.empty? || @status_ids.empty?
|
||||||
|
|
||||||
|
statuses = Status.without_replies
|
||||||
|
.without_reblogs
|
||||||
|
.public_visibility
|
||||||
|
.where(id: @status_ids)
|
||||||
|
.to_a
|
||||||
|
|
||||||
|
return if statuses.empty?
|
||||||
|
|
||||||
|
@account.email_subscriptions.confirmed.find_each do |email_subscription|
|
||||||
|
EmailSubscriptionMailer.with(subscription: email_subscription).notification(statuses).deliver_later
|
||||||
|
end
|
||||||
|
rescue ActiveRecord::RecordNotFound
|
||||||
|
nil
|
||||||
|
end
|
||||||
|
end
|
||||||
@ -11,6 +11,7 @@ class Scheduler::UserCleanupScheduler
|
|||||||
def perform
|
def perform
|
||||||
clean_unconfirmed_accounts!
|
clean_unconfirmed_accounts!
|
||||||
clean_discarded_statuses!
|
clean_discarded_statuses!
|
||||||
|
clean_unconfirmed_email_subscriptions!
|
||||||
end
|
end
|
||||||
|
|
||||||
private
|
private
|
||||||
@ -32,4 +33,10 @@ class Scheduler::UserCleanupScheduler
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def clean_unconfirmed_email_subscriptions!
|
||||||
|
EmailSubscription.unconfirmed.where(created_at: ..UNCONFIRMED_ACCOUNTS_MAX_AGE_DAYS.days.ago).find_in_batches do |batch|
|
||||||
|
EmailSubscription.where(id: batch.map(&:id)).delete_all
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@ -65,6 +65,7 @@ ignore_unused:
|
|||||||
- 'move_handler.carry_{mutes,blocks}_over_text'
|
- 'move_handler.carry_{mutes,blocks}_over_text'
|
||||||
- 'admin_mailer.*.subject'
|
- 'admin_mailer.*.subject'
|
||||||
- 'user_mailer.*.subject'
|
- 'user_mailer.*.subject'
|
||||||
|
- 'email_subscription_mailer.*'
|
||||||
- 'notification_mailer.*'
|
- 'notification_mailer.*'
|
||||||
- 'imports.overwrite_preambles.{following,blocking,muting,domain_blocking,bookmarks,lists}_html.*'
|
- 'imports.overwrite_preambles.{following,blocking,muting,domain_blocking,bookmarks,lists}_html.*'
|
||||||
- 'imports.preambles.{following,blocking,muting,domain_blocking,bookmarks,lists}_html.*'
|
- 'imports.preambles.{following,blocking,muting,domain_blocking,bookmarks,lists}_html.*'
|
||||||
|
|||||||
@ -1267,7 +1267,6 @@ ar:
|
|||||||
application_mailer:
|
application_mailer:
|
||||||
notification_preferences: تغيير تفضيلات البريد الإلكتروني
|
notification_preferences: تغيير تفضيلات البريد الإلكتروني
|
||||||
salutation: "%{name}،"
|
salutation: "%{name}،"
|
||||||
settings: 'تغيير تفضيلات البريد الإلكتروني: %{link}'
|
|
||||||
unsubscribe: إلغاء الاشتراك
|
unsubscribe: إلغاء الاشتراك
|
||||||
view: 'اعرض:'
|
view: 'اعرض:'
|
||||||
view_profile: اعرض الصفحة التعريفية
|
view_profile: اعرض الصفحة التعريفية
|
||||||
@ -1764,9 +1763,6 @@ ar:
|
|||||||
title: تاريخ المصادقة
|
title: تاريخ المصادقة
|
||||||
mail_subscriptions:
|
mail_subscriptions:
|
||||||
unsubscribe:
|
unsubscribe:
|
||||||
action: نعم، ألغِ الاشتراك
|
|
||||||
complete: غير مشترك
|
|
||||||
confirmation_html: هل أنت متأكد أنك تريد إلغاء الاشتراك عن تلقي %{type} لماستدون على %{domain} إلى بريدك الإلكتروني %{email}؟ يمكنك دائمًا إعادة الاشتراك من <a href="%{settings_path}">إعدادات إشعارات البريد الإلكتروني</a>.
|
|
||||||
emails:
|
emails:
|
||||||
notification_emails:
|
notification_emails:
|
||||||
favourite: إرسال إشعارات التفضيلات بالبريد الإلكتروني
|
favourite: إرسال إشعارات التفضيلات بالبريد الإلكتروني
|
||||||
@ -1774,9 +1770,6 @@ ar:
|
|||||||
follow_request: إرسال إشعارات الطلبات بالبريد الإلكتروني
|
follow_request: إرسال إشعارات الطلبات بالبريد الإلكتروني
|
||||||
mention: إشعارات رسائل البريد عندما يَذكُرك أحدهم
|
mention: إشعارات رسائل البريد عندما يَذكُرك أحدهم
|
||||||
reblog: رسائل البريد الخاصة بالمنشورات المعاد نشرها
|
reblog: رسائل البريد الخاصة بالمنشورات المعاد نشرها
|
||||||
resubscribe_html: إذا قمت بإلغاء الاشتراك عن طريق الخطأ، يمكنك إعادة الاشتراك من <a href="%{settings_path}">إعدادات إشعارات البريد الإلكتروني</a>.
|
|
||||||
success_html: لن تتلقّ بعد الآن %{type} لماستدون مِن %{domain} على بريدك الإلكتروني %{email}.
|
|
||||||
title: إلغاء الاشتراك
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: ليس بالإمكان إرفاق فيديو في منشور يحتوي مسبقا على صور
|
images_and_video: ليس بالإمكان إرفاق فيديو في منشور يحتوي مسبقا على صور
|
||||||
|
|||||||
@ -1273,7 +1273,6 @@ be:
|
|||||||
application_mailer:
|
application_mailer:
|
||||||
notification_preferences: Змяніць налады эл. пошты
|
notification_preferences: Змяніць налады эл. пошты
|
||||||
salutation: "%{name},"
|
salutation: "%{name},"
|
||||||
settings: 'Змяніць налады эл. пошты: %{link}'
|
|
||||||
unsubscribe: Адпісацца
|
unsubscribe: Адпісацца
|
||||||
view: 'Паглядзець:'
|
view: 'Паглядзець:'
|
||||||
view_profile: Паглядзець профіль
|
view_profile: Паглядзець профіль
|
||||||
@ -1737,9 +1736,6 @@ be:
|
|||||||
title: Гісторыя ўваходаў
|
title: Гісторыя ўваходаў
|
||||||
mail_subscriptions:
|
mail_subscriptions:
|
||||||
unsubscribe:
|
unsubscribe:
|
||||||
action: Так, адпісацца
|
|
||||||
complete: Адпісаны
|
|
||||||
confirmation_html: Вы ўпэўнены, што жадаеце адмовіцца ад атрымання %{type} з Mastodon на дамене %{domain} на сваю электронную пошту %{email}? Вы заўсёды можаце паўторна падпісацца ў <a href="%{settings_path}">наладах апавяшчэнняў па электроннай пошце</a>.
|
|
||||||
emails:
|
emails:
|
||||||
notification_emails:
|
notification_emails:
|
||||||
favourite: апавяшчэнні на пошту пра упадабанае
|
favourite: апавяшчэнні на пошту пра упадабанае
|
||||||
@ -1747,9 +1743,6 @@ be:
|
|||||||
follow_request: апавяшчэнні на пошту пра запыты на падпіску
|
follow_request: апавяшчэнні на пошту пра запыты на падпіску
|
||||||
mention: апавяшчэнні на пошту пра згадванні
|
mention: апавяшчэнні на пошту пра згадванні
|
||||||
reblog: апавяшчэнні на пошту пра пашырэнні
|
reblog: апавяшчэнні на пошту пра пашырэнні
|
||||||
resubscribe_html: Калі вы адмовіліся ад падпіскі памылкова, вы можаце зноў падпісацца ў <a href="%{settings_path}">наладах апавяшчэнняў па электроннай пошце</a>.
|
|
||||||
success_html: Вы больш не будзеце атрымліваць %{type} на сваю электронную пошту %{email} ад Mastodon на дамене %{domain}.
|
|
||||||
title: Адпісацца
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: Немагчыма далучыць відэа да допісу, які ўжо змяшчае выявы
|
images_and_video: Немагчыма далучыць відэа да допісу, які ўжо змяшчае выявы
|
||||||
|
|||||||
@ -1186,7 +1186,6 @@ bg:
|
|||||||
application_mailer:
|
application_mailer:
|
||||||
notification_preferences: Промяна на предпочитанията за е-поща
|
notification_preferences: Промяна на предпочитанията за е-поща
|
||||||
salutation: "%{name},"
|
salutation: "%{name},"
|
||||||
settings: 'Промяна на предпочитанията за имейл: %{link}'
|
|
||||||
unsubscribe: Стоп на абонамента
|
unsubscribe: Стоп на абонамента
|
||||||
view: 'Преглед:'
|
view: 'Преглед:'
|
||||||
view_profile: Преглед на профила
|
view_profile: Преглед на профила
|
||||||
@ -1601,9 +1600,6 @@ bg:
|
|||||||
title: Историята на удостоверяване
|
title: Историята на удостоверяване
|
||||||
mail_subscriptions:
|
mail_subscriptions:
|
||||||
unsubscribe:
|
unsubscribe:
|
||||||
action: Да, да се спре абонамента
|
|
||||||
complete: Спрян абонамент
|
|
||||||
confirmation_html: Наистина ли искате да спрете абонамента от получаването на %{type} за Mastodon в %{domain} към имейла си при %{email}? Може винаги пак да се абонирате от своите <a href="%{settings_path}">настройки за известяване по е-поща</a>.
|
|
||||||
emails:
|
emails:
|
||||||
notification_emails:
|
notification_emails:
|
||||||
favourite: е-писма за известия с любими
|
favourite: е-писма за известия с любими
|
||||||
@ -1611,9 +1607,6 @@ bg:
|
|||||||
follow_request: е-писма със заявки за следване
|
follow_request: е-писма със заявки за следване
|
||||||
mention: е-писма с известия за споменаване
|
mention: е-писма с известия за споменаване
|
||||||
reblog: е-писма с известия за подсилване
|
reblog: е-писма с известия за подсилване
|
||||||
resubscribe_html: Ако погрешка сте спрели абонамента, то може пак да се абонирате от своите <a href="%{settings_path}">настройки за известия по е-поща</a>.
|
|
||||||
success_html: Повече няма да получавате %{type} за Mastodon на %{domain} към имейла си при %{email}.
|
|
||||||
title: Спиране на абонамента
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: Не мога да прикача видеоклип към публикация, която вече съдържа изображения
|
images_and_video: Не мога да прикача видеоклип към публикация, която вече съдържа изображения
|
||||||
|
|||||||
@ -683,9 +683,6 @@ br:
|
|||||||
authentication_methods:
|
authentication_methods:
|
||||||
password: ger-tremen
|
password: ger-tremen
|
||||||
webauthn: alc’hwezioù surentez
|
webauthn: alc’hwezioù surentez
|
||||||
mail_subscriptions:
|
|
||||||
unsubscribe:
|
|
||||||
action: Ya, digoumanantiñ
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: N'haller stagañ ur video ouzh un embannadur a zo fotoioù gantañ dija
|
images_and_video: N'haller stagañ ur video ouzh un embannadur a zo fotoioù gantañ dija
|
||||||
|
|||||||
@ -1194,7 +1194,6 @@ ca:
|
|||||||
application_mailer:
|
application_mailer:
|
||||||
notification_preferences: Canviar les preferències de correu-e
|
notification_preferences: Canviar les preferències de correu-e
|
||||||
salutation: "%{name},"
|
salutation: "%{name},"
|
||||||
settings: 'Canviar les preferències de correu-e: %{link}'
|
|
||||||
unsubscribe: Cancel·la la subscripció
|
unsubscribe: Cancel·la la subscripció
|
||||||
view: 'Visualització:'
|
view: 'Visualització:'
|
||||||
view_profile: Mostra el perfil
|
view_profile: Mostra el perfil
|
||||||
@ -1616,9 +1615,6 @@ ca:
|
|||||||
title: Historial d'autenticació
|
title: Historial d'autenticació
|
||||||
mail_subscriptions:
|
mail_subscriptions:
|
||||||
unsubscribe:
|
unsubscribe:
|
||||||
action: Sí, canceŀla la subscripció
|
|
||||||
complete: Subscripció cancel·lada
|
|
||||||
confirmation_html: Segur que vols donar-te de baixa de rebre %{type} de Mastodon a %{domain} a %{email}? Sempre pots subscriure't de nou des de la <a href="%{settings_path}">configuració de les notificacions per correu electrònic</a>.
|
|
||||||
emails:
|
emails:
|
||||||
notification_emails:
|
notification_emails:
|
||||||
favourite: notificacions dels favorits per correu electrònic
|
favourite: notificacions dels favorits per correu electrònic
|
||||||
@ -1626,9 +1622,6 @@ ca:
|
|||||||
follow_request: correus electrònics de peticions de seguiment
|
follow_request: correus electrònics de peticions de seguiment
|
||||||
mention: correus electrònics de notificacions de mencions
|
mention: correus electrònics de notificacions de mencions
|
||||||
reblog: correus electrònics de notificacions d'impulsos
|
reblog: correus electrònics de notificacions d'impulsos
|
||||||
resubscribe_html: Si ets dones de baixa per error pots donar-te d'alta des de la <a href="%{settings_path}">configuració de les notificacions per correu electrònic</a>.
|
|
||||||
success_html: Ja no rebràs %{type} de Mastodon a %{domain} a %{email}.
|
|
||||||
title: Cancel·la la subscripció
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: No es pot adjuntar un vídeo a una publicació que ja contingui imatges
|
images_and_video: No es pot adjuntar un vídeo a una publicació que ja contingui imatges
|
||||||
|
|||||||
@ -1267,7 +1267,6 @@ cs:
|
|||||||
application_mailer:
|
application_mailer:
|
||||||
notification_preferences: Změnit předvolby e-mailu
|
notification_preferences: Změnit předvolby e-mailu
|
||||||
salutation: "%{name},"
|
salutation: "%{name},"
|
||||||
settings: 'Změnit předvolby e-mailu: %{link}'
|
|
||||||
unsubscribe: Přestat odebírat
|
unsubscribe: Přestat odebírat
|
||||||
view: 'Zobrazit:'
|
view: 'Zobrazit:'
|
||||||
view_profile: Zobrazit profil
|
view_profile: Zobrazit profil
|
||||||
@ -1729,9 +1728,6 @@ cs:
|
|||||||
title: Historie přihlášení
|
title: Historie přihlášení
|
||||||
mail_subscriptions:
|
mail_subscriptions:
|
||||||
unsubscribe:
|
unsubscribe:
|
||||||
action: Ano, odeberte odběr
|
|
||||||
complete: Odběr byl odhlášen
|
|
||||||
confirmation_html: Jste si jisti, že chcete odhlásit odběr %{type} pro Mastodon na %{domain} na váš e-mail %{email}? Vždy se můžete znovu přihlásit ve svém nastavení <a href="%{settings_path}">e-mailových oznámení</a>.
|
|
||||||
emails:
|
emails:
|
||||||
notification_emails:
|
notification_emails:
|
||||||
favourite: e-mailové oznámení při oblíbení
|
favourite: e-mailové oznámení při oblíbení
|
||||||
@ -1739,9 +1735,6 @@ cs:
|
|||||||
follow_request: e-mail při žádost o sledování
|
follow_request: e-mail při žádost o sledování
|
||||||
mention: e-mailové oznámení při zmínění
|
mention: e-mailové oznámení při zmínění
|
||||||
reblog: e-mailové oznámení při boostu
|
reblog: e-mailové oznámení při boostu
|
||||||
resubscribe_html: Pokud jste se odhlásili omylem, můžete se znovu přihlásit ve svých nastavení <a href="%{settings_path}">e-mailových oznámení</a>.
|
|
||||||
success_html: Již nebudete dostávat %{type} pro Mastodon na %{domain} na vaši e-mailovou adresu %{email}.
|
|
||||||
title: Odhlásit odběr
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: K příspěvku, který již obsahuje obrázky, nelze připojit video
|
images_and_video: K příspěvku, který již obsahuje obrázky, nelze připojit video
|
||||||
|
|||||||
@ -1313,7 +1313,6 @@ cy:
|
|||||||
application_mailer:
|
application_mailer:
|
||||||
notification_preferences: Newid dewisiadau e-bost
|
notification_preferences: Newid dewisiadau e-bost
|
||||||
salutation: "%{name},"
|
salutation: "%{name},"
|
||||||
settings: 'Newid dewisiadau e-bost: %{link}'
|
|
||||||
unsubscribe: Dad-danysgrifio
|
unsubscribe: Dad-danysgrifio
|
||||||
view: 'Gweld:'
|
view: 'Gweld:'
|
||||||
view_profile: Gweld proffil
|
view_profile: Gweld proffil
|
||||||
@ -1817,9 +1816,6 @@ cy:
|
|||||||
title: Hanes dilysu
|
title: Hanes dilysu
|
||||||
mail_subscriptions:
|
mail_subscriptions:
|
||||||
unsubscribe:
|
unsubscribe:
|
||||||
action: Iawn, dad-danysgrifio
|
|
||||||
complete: Dad-danysgrifiwyd
|
|
||||||
confirmation_html: Ydych chi'n siŵr eich bod am ddad-danysgrifio rhag derbyn %{type} Mastodon ar %{domain} i'ch e-bost yn %{email}? Gallwch ail-danysgrifio o'ch <a href="%{settings_path}">gosodiadau hysbysu e-bost</a> rhywbryd eto.
|
|
||||||
emails:
|
emails:
|
||||||
notification_emails:
|
notification_emails:
|
||||||
favourite: e-bost hysbysu hoffi
|
favourite: e-bost hysbysu hoffi
|
||||||
@ -1827,9 +1823,6 @@ cy:
|
|||||||
follow_request: e-byst ceisiadau dilyn
|
follow_request: e-byst ceisiadau dilyn
|
||||||
mention: e-byst hysbysu crybwylliadau
|
mention: e-byst hysbysu crybwylliadau
|
||||||
reblog: e-byst hysbysiadau hybu
|
reblog: e-byst hysbysiadau hybu
|
||||||
resubscribe_html: Os ydych wedi dad-danysgrifio trwy gamgymeriad, gallwch ail-danysgrifio drwy'ch <a href="%{settings_path}">gosodiadau hysbysu e-bost</a>.
|
|
||||||
success_html: Ni fyddwch bellach yn derbyn %{type} ar gyfer Mastodon ar %{domain} i'ch e-bost am %{email}.
|
|
||||||
title: Dad-danysgrifio
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: Methu atodi fideo i bostiad sydd eisoes yn cynnwys delweddau
|
images_and_video: Methu atodi fideo i bostiad sydd eisoes yn cynnwys delweddau
|
||||||
|
|||||||
@ -1231,7 +1231,6 @@ da:
|
|||||||
application_mailer:
|
application_mailer:
|
||||||
notification_preferences: Skift e-mailpræferencer
|
notification_preferences: Skift e-mailpræferencer
|
||||||
salutation: "%{name}"
|
salutation: "%{name}"
|
||||||
settings: 'Skift e-mailpræferencer: %{link}'
|
|
||||||
unsubscribe: Afmeld notifikationer
|
unsubscribe: Afmeld notifikationer
|
||||||
view: 'Vis:'
|
view: 'Vis:'
|
||||||
view_profile: Vis profil
|
view_profile: Vis profil
|
||||||
@ -1655,9 +1654,6 @@ da:
|
|||||||
title: Godkendelseshistorik
|
title: Godkendelseshistorik
|
||||||
mail_subscriptions:
|
mail_subscriptions:
|
||||||
unsubscribe:
|
unsubscribe:
|
||||||
action: Ja, afmeld
|
|
||||||
complete: Afmeldt
|
|
||||||
confirmation_html: Er du sikker på, at du vil afmelde modtagelse af %{type} for Mastodon på %{domain} til din e-mail på %{email}? Du kan altid tilmelde dig igen fra dine <a href="%{settings_path}">indstillinger for e-mail-notifikationer</a>.
|
|
||||||
emails:
|
emails:
|
||||||
notification_emails:
|
notification_emails:
|
||||||
favourite: e-mailnotifikationer om favoritmarkeringer
|
favourite: e-mailnotifikationer om favoritmarkeringer
|
||||||
@ -1665,9 +1661,6 @@ da:
|
|||||||
follow_request: e-mailnotifikationer om følgeanmodninger
|
follow_request: e-mailnotifikationer om følgeanmodninger
|
||||||
mention: e-mailnotifikationer om omtaler
|
mention: e-mailnotifikationer om omtaler
|
||||||
reblog: e-mailnotifikationer om fremhævelser
|
reblog: e-mailnotifikationer om fremhævelser
|
||||||
resubscribe_html: Har du afmeldt dig ved en fejl, kan du gentilmelde dig via <a href="%{settings_path}">indstillingerne for e-mail-notifikationer</a>.
|
|
||||||
success_html: Du vil ikke længere modtage %{type} for Mastodon på %{domain} til din e-mail %{email}.
|
|
||||||
title: Opsig abonnement
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: En video kan ikke vedhæftes et indlæg med billedindhold
|
images_and_video: En video kan ikke vedhæftes et indlæg med billedindhold
|
||||||
|
|||||||
@ -1231,7 +1231,6 @@ de:
|
|||||||
application_mailer:
|
application_mailer:
|
||||||
notification_preferences: E-Mail-Einstellungen ändern
|
notification_preferences: E-Mail-Einstellungen ändern
|
||||||
salutation: "%{name},"
|
salutation: "%{name},"
|
||||||
settings: 'E-Mail-Einstellungen ändern: %{link}'
|
|
||||||
unsubscribe: Abbestellen
|
unsubscribe: Abbestellen
|
||||||
view: 'Siehe:'
|
view: 'Siehe:'
|
||||||
view_profile: Profil anzeigen
|
view_profile: Profil anzeigen
|
||||||
@ -1655,9 +1654,6 @@ de:
|
|||||||
title: Anmeldeverlauf
|
title: Anmeldeverlauf
|
||||||
mail_subscriptions:
|
mail_subscriptions:
|
||||||
unsubscribe:
|
unsubscribe:
|
||||||
action: Ja, abbestellen
|
|
||||||
complete: Abbestellt
|
|
||||||
confirmation_html: Möchtest du %{type} für Mastodon auf %{domain} an deine E-Mail-Adresse %{email} wirklich abbestellen? Du kannst dies später in den Einstellungen <a href="%{settings_path}">Benachrichtigungen per E-Mail</a> rückgängig machen.
|
|
||||||
emails:
|
emails:
|
||||||
notification_emails:
|
notification_emails:
|
||||||
favourite: E-Mail-Benachrichtigungen bei Favoriten
|
favourite: E-Mail-Benachrichtigungen bei Favoriten
|
||||||
@ -1665,9 +1661,6 @@ de:
|
|||||||
follow_request: E-Mail-Benachrichtigungen bei Follower-Anfragen
|
follow_request: E-Mail-Benachrichtigungen bei Follower-Anfragen
|
||||||
mention: E-Mail-Benachrichtigungen bei Erwähnungen
|
mention: E-Mail-Benachrichtigungen bei Erwähnungen
|
||||||
reblog: E-Mail-Benachrichtigungen bei geteilten Beiträgen
|
reblog: E-Mail-Benachrichtigungen bei geteilten Beiträgen
|
||||||
resubscribe_html: Falls du etwas irrtümlich abbestellt hast, kannst du das in den Einstellungen <a href="%{settings_path}">Benachrichtigungen per E-Mail</a> rückgängig machen.
|
|
||||||
success_html: Du wirst nicht länger %{type} für Mastodon auf %{domain} an deine E-Mail-Adresse %{email} erhalten.
|
|
||||||
title: Abbestellen
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: Es kann kein Video an einen Beitrag angehängt werden, der bereits Bilder enthält
|
images_and_video: Es kann kein Video an einen Beitrag angehängt werden, der bereits Bilder enthält
|
||||||
|
|||||||
@ -1231,7 +1231,6 @@ el:
|
|||||||
application_mailer:
|
application_mailer:
|
||||||
notification_preferences: Αλλαγή προτιμήσεων email
|
notification_preferences: Αλλαγή προτιμήσεων email
|
||||||
salutation: "%{name},"
|
salutation: "%{name},"
|
||||||
settings: 'Αλλαγή προτιμήσεων email: %{link}'
|
|
||||||
unsubscribe: Κατάργηση εγγραφής
|
unsubscribe: Κατάργηση εγγραφής
|
||||||
view: 'Προβολή:'
|
view: 'Προβολή:'
|
||||||
view_profile: Προβολή προφίλ
|
view_profile: Προβολή προφίλ
|
||||||
@ -1655,9 +1654,6 @@ el:
|
|||||||
title: Ιστορικό ελέγχου ταυτότητας
|
title: Ιστορικό ελέγχου ταυτότητας
|
||||||
mail_subscriptions:
|
mail_subscriptions:
|
||||||
unsubscribe:
|
unsubscribe:
|
||||||
action: Ναι, κατάργηση συνδρομής
|
|
||||||
complete: Η συνδρομή καταργήθηκε
|
|
||||||
confirmation_html: Σίγουρα θες να καταργήσεις την εγγραφή σου για %{type} για το Mastodon στο %{domain} στο email σου %{email}; Μπορείς πάντα να εγγραφείς ξανά από τις <a href="%{settings_path}">ρυθμίσεις ειδοποιήσεων email</a>.
|
|
||||||
emails:
|
emails:
|
||||||
notification_emails:
|
notification_emails:
|
||||||
favourite: ειδοποιήσεις email για αγαπημένα
|
favourite: ειδοποιήσεις email για αγαπημένα
|
||||||
@ -1665,9 +1661,6 @@ el:
|
|||||||
follow_request: email για αιτήματα ακολούθησης
|
follow_request: email για αιτήματα ακολούθησης
|
||||||
mention: ειδοποιήσεις email για επισημάνσεις
|
mention: ειδοποιήσεις email για επισημάνσεις
|
||||||
reblog: ειδοποιήσεις email για ενίσχυση
|
reblog: ειδοποιήσεις email για ενίσχυση
|
||||||
resubscribe_html: Αν έχεις καταργήσει την εγγραφή σου κατά λάθος, μπορείς να εγγραφείς εκ νέου από τις <a href="%{settings_path}">ρυθμίσεις ειδοποίησης email</a>.
|
|
||||||
success_html: Δεν θα λαμβάνεις πλέον %{type} για το Mastodon στο %{domain} στο email σου στο %{email}.
|
|
||||||
title: Κατάργηση συνδρομής
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: Δεν γίνεται να προσθέσεις βίντεο σε ανάρτηση που ήδη περιέχει εικόνες
|
images_and_video: Δεν γίνεται να προσθέσεις βίντεο σε ανάρτηση που ήδη περιέχει εικόνες
|
||||||
|
|||||||
@ -1229,7 +1229,6 @@ en-GB:
|
|||||||
application_mailer:
|
application_mailer:
|
||||||
notification_preferences: Change email preferences
|
notification_preferences: Change email preferences
|
||||||
salutation: "%{name},"
|
salutation: "%{name},"
|
||||||
settings: 'Change email preferences: %{link}'
|
|
||||||
unsubscribe: Unsubscribe
|
unsubscribe: Unsubscribe
|
||||||
view: 'View:'
|
view: 'View:'
|
||||||
view_profile: View profile
|
view_profile: View profile
|
||||||
@ -1651,9 +1650,6 @@ en-GB:
|
|||||||
title: Authentication history
|
title: Authentication history
|
||||||
mail_subscriptions:
|
mail_subscriptions:
|
||||||
unsubscribe:
|
unsubscribe:
|
||||||
action: Yes, unsubscribe
|
|
||||||
complete: Unsubscribed
|
|
||||||
confirmation_html: Are you sure you want to unsubscribe from receiving %{type} for Mastodon on %{domain} to your email at %{email}? You can always re-subscribe from your <a href="%{settings_path}">email notification settings</a>.
|
|
||||||
emails:
|
emails:
|
||||||
notification_emails:
|
notification_emails:
|
||||||
favourite: favourite notification emails
|
favourite: favourite notification emails
|
||||||
@ -1661,9 +1657,6 @@ en-GB:
|
|||||||
follow_request: follow request emails
|
follow_request: follow request emails
|
||||||
mention: mention notification emails
|
mention: mention notification emails
|
||||||
reblog: boost notification emails
|
reblog: boost notification emails
|
||||||
resubscribe_html: If you've unsubscribed by mistake, you can re-subscribe from your <a href="%{settings_path}">email notification settings</a>.
|
|
||||||
success_html: You'll no longer receive %{type} for Mastodon on %{domain} to your email at %{email}.
|
|
||||||
title: Unsubscribe
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: Cannot attach a video to a post that already contains images
|
images_and_video: Cannot attach a video to a post that already contains images
|
||||||
|
|||||||
@ -762,6 +762,7 @@ en:
|
|||||||
categories:
|
categories:
|
||||||
administration: Administration
|
administration: Administration
|
||||||
devops: DevOps
|
devops: DevOps
|
||||||
|
email: Email
|
||||||
invites: Invites
|
invites: Invites
|
||||||
moderation: Moderation
|
moderation: Moderation
|
||||||
special: Special
|
special: Special
|
||||||
@ -790,6 +791,8 @@ en:
|
|||||||
manage_blocks_description: Allows users to block email providers and IP addresses
|
manage_blocks_description: Allows users to block email providers and IP addresses
|
||||||
manage_custom_emojis: Manage Custom Emojis
|
manage_custom_emojis: Manage Custom Emojis
|
||||||
manage_custom_emojis_description: Allows users to manage custom emojis on the server
|
manage_custom_emojis_description: Allows users to manage custom emojis on the server
|
||||||
|
manage_email_subscriptions: Manage Email Subscriptions
|
||||||
|
manage_email_subscriptions_description: Allow users to subscribe to users with this permission by email
|
||||||
manage_federation: Manage Federation
|
manage_federation: Manage Federation
|
||||||
manage_federation_description: Allows users to block or allow federation with other domains, and control deliverability
|
manage_federation_description: Allows users to block or allow federation with other domains, and control deliverability
|
||||||
manage_invites: Manage Invites
|
manage_invites: Manage Invites
|
||||||
@ -1231,7 +1234,6 @@ en:
|
|||||||
application_mailer:
|
application_mailer:
|
||||||
notification_preferences: Change email preferences
|
notification_preferences: Change email preferences
|
||||||
salutation: "%{name},"
|
salutation: "%{name},"
|
||||||
settings: 'Change email preferences: %{link}'
|
|
||||||
unsubscribe: Unsubscribe
|
unsubscribe: Unsubscribe
|
||||||
view: 'View:'
|
view: 'View:'
|
||||||
view_profile: View profile
|
view_profile: View profile
|
||||||
@ -1419,6 +1421,38 @@ en:
|
|||||||
basic_information: Basic information
|
basic_information: Basic information
|
||||||
hint_html: "<strong>Customize what people see on your public profile and next to your posts.</strong> Other people are more likely to follow you back and interact with you when you have a filled out profile and a profile picture."
|
hint_html: "<strong>Customize what people see on your public profile and next to your posts.</strong> Other people are more likely to follow you back and interact with you when you have a filled out profile and a profile picture."
|
||||||
other: Other
|
other: Other
|
||||||
|
email_subscription_mailer:
|
||||||
|
confirmation:
|
||||||
|
action: Confirm email address
|
||||||
|
instructions_to_confirm: Confirm you'd like to receive emails from %{name} (@%{acct}) when they publish new posts.
|
||||||
|
instructions_to_ignore: If you're not sure why you received this email, you can delete it. You will not be subscribed if you don't click on the link above.
|
||||||
|
subject: Confirm your email address
|
||||||
|
title: Get email updates from %{name}?
|
||||||
|
notification:
|
||||||
|
create_account: Create a Mastodon account
|
||||||
|
footer:
|
||||||
|
privacy_html: Emails are sent from %{domain}, a server powered by Mastodon. To understand how this server processes your personal data, refer to the <a href="%{privacy_policy_path}">Privacy Policy</a>.
|
||||||
|
reason_for_email_html: You're receiving this email because you opted into email updates from %{name}. Don't want to receive these emails? <a href="%{unsubscribe_path}">Unsubscribe</a>
|
||||||
|
interact_with_this_post:
|
||||||
|
one: Interact with this post and discover more like it.
|
||||||
|
other: Interact with these posts and discover more.
|
||||||
|
subject:
|
||||||
|
one: 'New post: "%{excerpt}"'
|
||||||
|
other: New posts from %{name}
|
||||||
|
title:
|
||||||
|
one: 'New post: "%{excerpt}"'
|
||||||
|
other: New posts from %{name}
|
||||||
|
email_subscriptions:
|
||||||
|
active: Active
|
||||||
|
confirmations:
|
||||||
|
show:
|
||||||
|
changed_your_mind: Changed your mind?
|
||||||
|
success_html: You'll now start receiving emails when %{name} publishes new posts. Add %{sender} to your contacts so these posts don't end up in your Spam folder.
|
||||||
|
title: You're signed up
|
||||||
|
unsubscribe: Unsubscribe
|
||||||
|
inactive: Inactive
|
||||||
|
status: Status
|
||||||
|
subscribers: Subscribers
|
||||||
emoji_styles:
|
emoji_styles:
|
||||||
auto: Auto
|
auto: Auto
|
||||||
native: Native
|
native: Native
|
||||||
@ -1653,21 +1687,6 @@ en:
|
|||||||
failed_sign_in_html: Failed sign-in attempt with %{method} from %{ip} (%{browser})
|
failed_sign_in_html: Failed sign-in attempt with %{method} from %{ip} (%{browser})
|
||||||
successful_sign_in_html: Successful sign-in with %{method} from %{ip} (%{browser})
|
successful_sign_in_html: Successful sign-in with %{method} from %{ip} (%{browser})
|
||||||
title: Authentication history
|
title: Authentication history
|
||||||
mail_subscriptions:
|
|
||||||
unsubscribe:
|
|
||||||
action: Yes, unsubscribe
|
|
||||||
complete: Unsubscribed
|
|
||||||
confirmation_html: Are you sure you want to unsubscribe from receiving %{type} for Mastodon on %{domain} to your email at %{email}? You can always re-subscribe from your <a href="%{settings_path}">email notification settings</a>.
|
|
||||||
emails:
|
|
||||||
notification_emails:
|
|
||||||
favourite: favorite notification emails
|
|
||||||
follow: follow notification emails
|
|
||||||
follow_request: follow request emails
|
|
||||||
mention: mention notification emails
|
|
||||||
reblog: boost notification emails
|
|
||||||
resubscribe_html: If you've unsubscribed by mistake, you can re-subscribe from your <a href="%{settings_path}">email notification settings</a>.
|
|
||||||
success_html: You'll no longer receive %{type} for Mastodon on %{domain} to your email at %{email}.
|
|
||||||
title: Unsubscribe
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: Cannot attach a video to a post that already contains images
|
images_and_video: Cannot attach a video to a post that already contains images
|
||||||
@ -1806,6 +1825,8 @@ en:
|
|||||||
posting_defaults: Posting defaults
|
posting_defaults: Posting defaults
|
||||||
public_timelines: Public timelines
|
public_timelines: Public timelines
|
||||||
privacy:
|
privacy:
|
||||||
|
email_subscriptions: Send posts via email
|
||||||
|
email_subscriptions_hint_html: Add an email sign-up form to your profile that appears for logged-out users. When visitors enter their email address and opt in, Mastodon will send email updates for your public posts.
|
||||||
hint_html: "<strong>Customize how you want your profile and your posts to be found.</strong> A variety of features in Mastodon can help you reach a wider audience when enabled. Take a moment to review these settings to make sure they fit your use case."
|
hint_html: "<strong>Customize how you want your profile and your posts to be found.</strong> A variety of features in Mastodon can help you reach a wider audience when enabled. Take a moment to review these settings to make sure they fit your use case."
|
||||||
privacy: Privacy
|
privacy: Privacy
|
||||||
privacy_hint_html: Control how much you want to disclose for the benefit of others. People discover interesting profiles and cool apps by browsing other people's follows and seeing which apps they post from, but you may prefer to keep it hidden.
|
privacy_hint_html: Control how much you want to disclose for the benefit of others. People discover interesting profiles and cool apps by browsing other people's follows and seeing which apps they post from, but you may prefer to keep it hidden.
|
||||||
@ -2069,6 +2090,28 @@ en:
|
|||||||
resume_app_authorization: Resume application authorization
|
resume_app_authorization: Resume application authorization
|
||||||
role_requirement: "%{domain} requires you to set up Two-Factor Authentication before you can use Mastodon."
|
role_requirement: "%{domain} requires you to set up Two-Factor Authentication before you can use Mastodon."
|
||||||
webauthn: Security keys
|
webauthn: Security keys
|
||||||
|
unsubscriptions:
|
||||||
|
create:
|
||||||
|
action: Go to server homepage
|
||||||
|
email_subscription:
|
||||||
|
confirmation_html: You'll no longer receive emails from %{name}.
|
||||||
|
title: You are unsubscribed
|
||||||
|
user:
|
||||||
|
confirmation_html: You'll no longer receive %{type} from Mastodon on %{domain}.
|
||||||
|
notification_emails:
|
||||||
|
favourite: favorite notification emails
|
||||||
|
follow: follow notification emails
|
||||||
|
follow_request: follow request emails
|
||||||
|
mention: mention notification emails
|
||||||
|
reblog: boost notification emails
|
||||||
|
show:
|
||||||
|
action: Unsubscribe
|
||||||
|
email_subscription:
|
||||||
|
confirmation_html: You'll stop receiving emails when this account publishes new posts.
|
||||||
|
title: Unsubscribe from %{name}?
|
||||||
|
user:
|
||||||
|
confirmation_html: You'll stop receiving %{type} from Mastodon on %{domain}.
|
||||||
|
title: Unsubscribe from %{type}?
|
||||||
user_mailer:
|
user_mailer:
|
||||||
announcement_published:
|
announcement_published:
|
||||||
description: 'The administrators of %{domain} are making an announcement:'
|
description: 'The administrators of %{domain} are making an announcement:'
|
||||||
|
|||||||
@ -1182,7 +1182,6 @@ eo:
|
|||||||
application_mailer:
|
application_mailer:
|
||||||
notification_preferences: Ŝanĝi retpoŝtajn preferojn
|
notification_preferences: Ŝanĝi retpoŝtajn preferojn
|
||||||
salutation: "%{name},"
|
salutation: "%{name},"
|
||||||
settings: 'Ŝanĝi retpoŝtajn preferojn: %{link}'
|
|
||||||
unsubscribe: Malabonu
|
unsubscribe: Malabonu
|
||||||
view: 'Vidi:'
|
view: 'Vidi:'
|
||||||
view_profile: Vidi profilon
|
view_profile: Vidi profilon
|
||||||
@ -1592,9 +1591,6 @@ eo:
|
|||||||
title: Aŭtentiga historio
|
title: Aŭtentiga historio
|
||||||
mail_subscriptions:
|
mail_subscriptions:
|
||||||
unsubscribe:
|
unsubscribe:
|
||||||
action: Jes, malabonu
|
|
||||||
complete: Malabonita
|
|
||||||
confirmation_html: Ĉu vi certas, ke vi volas malaboni je ricevi %{type} por Mastodon ĉe %{domain} al via retpoŝto ĉe %{email}? Vi ĉiam povas reaboni de viaj <a href="%{settings_path}">retpoŝtaj sciigaj agordoj</a>.
|
|
||||||
emails:
|
emails:
|
||||||
notification_emails:
|
notification_emails:
|
||||||
favourite: sciigoj retpoŝtaj de ŝatataj
|
favourite: sciigoj retpoŝtaj de ŝatataj
|
||||||
@ -1602,9 +1598,6 @@ eo:
|
|||||||
follow_request: retpoŝtajn petoj de sekvado
|
follow_request: retpoŝtajn petoj de sekvado
|
||||||
mention: sciigoj retpoŝtaj de mencioj
|
mention: sciigoj retpoŝtaj de mencioj
|
||||||
reblog: sciigoj retpoŝtaj de diskonigoj
|
reblog: sciigoj retpoŝtaj de diskonigoj
|
||||||
resubscribe_html: Se vi malabonis erare, vi povas reaboni de viaj <a href="%{settings_path}">retpoŝtaj sciigaj agordoj</a>.
|
|
||||||
success_html: Vi ne plu ricevos %{type} por Mastodon ĉe %{domain} al via retpoŝto ĉe %{email}.
|
|
||||||
title: Malaboni
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: Aldoni videon al mesaĝo, kiu jam havas bildojn ne eblas
|
images_and_video: Aldoni videon al mesaĝo, kiu jam havas bildojn ne eblas
|
||||||
|
|||||||
@ -1231,7 +1231,6 @@ es-AR:
|
|||||||
application_mailer:
|
application_mailer:
|
||||||
notification_preferences: Cambiar configuración de correo electrónico
|
notification_preferences: Cambiar configuración de correo electrónico
|
||||||
salutation: "%{name}:"
|
salutation: "%{name}:"
|
||||||
settings: 'Cambiar configuración de correo electrónico: %{link}'
|
|
||||||
unsubscribe: Desuscribirse
|
unsubscribe: Desuscribirse
|
||||||
view: 'Visitá:'
|
view: 'Visitá:'
|
||||||
view_profile: Ver perfil
|
view_profile: Ver perfil
|
||||||
@ -1655,9 +1654,6 @@ es-AR:
|
|||||||
title: Historial de autenticación
|
title: Historial de autenticación
|
||||||
mail_subscriptions:
|
mail_subscriptions:
|
||||||
unsubscribe:
|
unsubscribe:
|
||||||
action: Sí, desuscribir
|
|
||||||
complete: Desuscripto
|
|
||||||
confirmation_html: ¿Estás seguro que querés dejar de recibir %{type} de Mastodon en %{domain} a tu correo electrónico %{email}? Siempre podrás volver a suscribirte desde la <a href="%{settings_path}"> configuración de notificaciones por correo electrónico.</a>.
|
|
||||||
emails:
|
emails:
|
||||||
notification_emails:
|
notification_emails:
|
||||||
favourite: notificaciones de favoritos por correo electrónico
|
favourite: notificaciones de favoritos por correo electrónico
|
||||||
@ -1665,9 +1661,6 @@ es-AR:
|
|||||||
follow_request: notificaciones de solicitudes de seguimiento por correo electrónico
|
follow_request: notificaciones de solicitudes de seguimiento por correo electrónico
|
||||||
mention: notificaciones de menciones por correo electrónico
|
mention: notificaciones de menciones por correo electrónico
|
||||||
reblog: notificaciones de adhesiones por correo electrónico
|
reblog: notificaciones de adhesiones por correo electrónico
|
||||||
resubscribe_html: Si te desuscribiste por error, podés resuscribirte desde la <a href="%{settings_path}">configuración de notificaciones por correo electrónico</a>.
|
|
||||||
success_html: Ya no recibirás %{type} de mastodon en %{domain} a tu correo electrónico %{email}.
|
|
||||||
title: Desuscribirse
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: No se puede adjuntar un video a un mensaje que ya contenga imágenes
|
images_and_video: No se puede adjuntar un video a un mensaje que ya contenga imágenes
|
||||||
|
|||||||
@ -1231,7 +1231,6 @@ es-MX:
|
|||||||
application_mailer:
|
application_mailer:
|
||||||
notification_preferences: Cambiar preferencias de correo electrónico
|
notification_preferences: Cambiar preferencias de correo electrónico
|
||||||
salutation: "%{name}:"
|
salutation: "%{name}:"
|
||||||
settings: 'Cambiar preferencias de correo: %{link}'
|
|
||||||
unsubscribe: Cancelar suscripción
|
unsubscribe: Cancelar suscripción
|
||||||
view: 'Vista:'
|
view: 'Vista:'
|
||||||
view_profile: Ver perfil
|
view_profile: Ver perfil
|
||||||
@ -1655,9 +1654,6 @@ es-MX:
|
|||||||
title: Historial de autenticación
|
title: Historial de autenticación
|
||||||
mail_subscriptions:
|
mail_subscriptions:
|
||||||
unsubscribe:
|
unsubscribe:
|
||||||
action: Sí, darse de baja
|
|
||||||
complete: Has cancelado tu suscripción
|
|
||||||
confirmation_html: ¿Estás seguro de que quieres dejar de recibir %{type} de Mastodon en %{domain} a tu correo %{email}? Siempre podrás volver a suscribirte de nuevo desde los <a href="%{settings_path}">ajustes de notificación por correo</a>.
|
|
||||||
emails:
|
emails:
|
||||||
notification_emails:
|
notification_emails:
|
||||||
favourite: correos de notificación de favoritos
|
favourite: correos de notificación de favoritos
|
||||||
@ -1665,9 +1661,6 @@ es-MX:
|
|||||||
follow_request: correos electrónicos de solicitud de seguimiento
|
follow_request: correos electrónicos de solicitud de seguimiento
|
||||||
mention: correos de notificación de menciones
|
mention: correos de notificación de menciones
|
||||||
reblog: correos de notificación de impulsos
|
reblog: correos de notificación de impulsos
|
||||||
resubscribe_html: Si te has dado de baja por error, puedes volver a darte de alta desde tus <a href="%{settings_path}">ajustes de notificaciones por correo</a>.
|
|
||||||
success_html: Ya no recibirás %{type} de Mastodon en %{domain} a tu correo %{email}.
|
|
||||||
title: Cancelar suscripción
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: No se puede adjuntar un video a una publicación que ya contenga imágenes
|
images_and_video: No se puede adjuntar un video a una publicación que ya contenga imágenes
|
||||||
|
|||||||
@ -1231,7 +1231,6 @@ es:
|
|||||||
application_mailer:
|
application_mailer:
|
||||||
notification_preferences: Cambiar preferencias de correo electrónico
|
notification_preferences: Cambiar preferencias de correo electrónico
|
||||||
salutation: "%{name}:"
|
salutation: "%{name}:"
|
||||||
settings: 'Cambiar preferencias de correo: %{link}'
|
|
||||||
unsubscribe: Cancelar suscripción
|
unsubscribe: Cancelar suscripción
|
||||||
view: 'Vista:'
|
view: 'Vista:'
|
||||||
view_profile: Ver perfil
|
view_profile: Ver perfil
|
||||||
@ -1655,9 +1654,6 @@ es:
|
|||||||
title: Historial de autenticación
|
title: Historial de autenticación
|
||||||
mail_subscriptions:
|
mail_subscriptions:
|
||||||
unsubscribe:
|
unsubscribe:
|
||||||
action: Sí, cancelar suscripción
|
|
||||||
complete: Has cancelado tu suscripción
|
|
||||||
confirmation_html: ¿Estás seguro de que quieres dejar de recibir %{type} de Mastodon en %{domain} a tu correo %{email}? Siempre podrás volver a suscribirte de nuevo desde los <a href="%{settings_path}">ajustes de notificación por correo</a>.
|
|
||||||
emails:
|
emails:
|
||||||
notification_emails:
|
notification_emails:
|
||||||
favourite: correos de notificación de favoritos
|
favourite: correos de notificación de favoritos
|
||||||
@ -1665,9 +1661,6 @@ es:
|
|||||||
follow_request: correos de notificación de solicitud de seguidor
|
follow_request: correos de notificación de solicitud de seguidor
|
||||||
mention: correos de notificación de menciones
|
mention: correos de notificación de menciones
|
||||||
reblog: correos de notificación de impulsos
|
reblog: correos de notificación de impulsos
|
||||||
resubscribe_html: Si te has dado de baja por error, puedes volver a darte de alta desde tus <a href="%{settings_path}">ajustes de notificaciones por correo</a>.
|
|
||||||
success_html: Ya no recibirás %{type} de Mastodon en %{domain} a tu correo %{email}.
|
|
||||||
title: Cancelar suscripición
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: No se puede adjuntar un video a una publicación que ya contenga imágenes
|
images_and_video: No se puede adjuntar un video a una publicación que ya contenga imágenes
|
||||||
|
|||||||
@ -1214,7 +1214,6 @@ et:
|
|||||||
application_mailer:
|
application_mailer:
|
||||||
notification_preferences: Muuda e-posti eelistusi
|
notification_preferences: Muuda e-posti eelistusi
|
||||||
salutation: "%{name}!"
|
salutation: "%{name}!"
|
||||||
settings: 'Muuda e-posti eelistusi: %{link}'
|
|
||||||
unsubscribe: Loobu tellimisest
|
unsubscribe: Loobu tellimisest
|
||||||
view: 'Vaade:'
|
view: 'Vaade:'
|
||||||
view_profile: Vaata profiili
|
view_profile: Vaata profiili
|
||||||
@ -1636,9 +1635,6 @@ et:
|
|||||||
title: Autentimise ajalugu
|
title: Autentimise ajalugu
|
||||||
mail_subscriptions:
|
mail_subscriptions:
|
||||||
unsubscribe:
|
unsubscribe:
|
||||||
action: Jah, lõpeta tellimine
|
|
||||||
complete: Tellimine lõpetatud
|
|
||||||
confirmation_html: Kas oled kindel, et soovid loobuda %{type} tellimisest oma e-postiaadressile %{email} Mastodonist kohas %{domain}? Saad alati uuesti tellida oma <a href="%{settings_path}">e-posti teavituste seadetest</a>.
|
|
||||||
emails:
|
emails:
|
||||||
notification_emails:
|
notification_emails:
|
||||||
favourite: lemmikuks märkimise teavituskirjade
|
favourite: lemmikuks märkimise teavituskirjade
|
||||||
@ -1646,9 +1642,6 @@ et:
|
|||||||
follow_request: jälgimistaotluste teavituskirjade
|
follow_request: jälgimistaotluste teavituskirjade
|
||||||
mention: mainimiste teavituskirjade
|
mention: mainimiste teavituskirjade
|
||||||
reblog: jagamiste teavituskirjade
|
reblog: jagamiste teavituskirjade
|
||||||
resubscribe_html: Kui loobusid tellimisest ekslikult, saad uuesti tellida oma <a href="%{settings_path}">e-posti teavituste seadetest</a>.
|
|
||||||
success_html: Sa ei saa enam %{type} teateid oma e-postile %{email} Mastodonist kohas %{domain}.
|
|
||||||
title: Loobu tellimisest
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: Ei saa lisada video postitusele, milles on juba pildid
|
images_and_video: Ei saa lisada video postitusele, milles on juba pildid
|
||||||
|
|||||||
@ -1171,7 +1171,6 @@ eu:
|
|||||||
application_mailer:
|
application_mailer:
|
||||||
notification_preferences: Posta elektronikoaren lehentasunak aldatu
|
notification_preferences: Posta elektronikoaren lehentasunak aldatu
|
||||||
salutation: "%{name},"
|
salutation: "%{name},"
|
||||||
settings: 'Posta elektronikoaren lehentasunak aldatu: %{link}'
|
|
||||||
unsubscribe: Kendu harpidetza
|
unsubscribe: Kendu harpidetza
|
||||||
view: 'Ikusi:'
|
view: 'Ikusi:'
|
||||||
view_profile: Ikusi profila
|
view_profile: Ikusi profila
|
||||||
@ -1538,11 +1537,6 @@ eu:
|
|||||||
title: Autentifikazioen historia
|
title: Autentifikazioen historia
|
||||||
mail_subscriptions:
|
mail_subscriptions:
|
||||||
unsubscribe:
|
unsubscribe:
|
||||||
action: Bai, kendu harpidetza
|
|
||||||
complete: Harpidetza kenduta
|
|
||||||
confirmation_html: |-
|
|
||||||
Ziur Mastodonen %{domain} zerbitzariko %{type} %{email} helbide elektronikoan jasotzeari utzi nahi diozula?
|
|
||||||
Beti harpidetu zaitezke berriro <a href="%{settings_path}">eposta jakinarazpenen hobespenetan</a>.
|
|
||||||
emails:
|
emails:
|
||||||
notification_emails:
|
notification_emails:
|
||||||
favourite: zure argitalpena gogoko egin dutenaren jakinarazpen e-mailak
|
favourite: zure argitalpena gogoko egin dutenaren jakinarazpen e-mailak
|
||||||
@ -1550,9 +1544,6 @@ eu:
|
|||||||
follow_request: jarraipen-eskaeren jakinarazpen e-mailak
|
follow_request: jarraipen-eskaeren jakinarazpen e-mailak
|
||||||
mention: aipamenen jakinarazpen e-mailak
|
mention: aipamenen jakinarazpen e-mailak
|
||||||
reblog: bultzaden jakinarazpen e-mailak
|
reblog: bultzaden jakinarazpen e-mailak
|
||||||
resubscribe_html: Nahi gabe utzi badiozu jakinarazpenak jasotzeari, berriro harpidetu zaitezke <a href="%{settings_path}">e-mail jakinarazpenen hobespenetan</a>.
|
|
||||||
success_html: Ez duzu Mastodonen %{domain} zerbitzariko %{type} jasoko %{email} helbide elektronikoan.
|
|
||||||
title: Kendu harpidetza
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: Ezin da irudiak dituen bidalketa batean bideo bat erantsi
|
images_and_video: Ezin da irudiak dituen bidalketa batean bideo bat erantsi
|
||||||
|
|||||||
@ -1210,7 +1210,6 @@ fa:
|
|||||||
application_mailer:
|
application_mailer:
|
||||||
notification_preferences: تغییر ترجیحات رایانامه
|
notification_preferences: تغییر ترجیحات رایانامه
|
||||||
salutation: "%{name}،"
|
salutation: "%{name}،"
|
||||||
settings: 'تغییر ترجیحات رایانامه: %{link}'
|
|
||||||
unsubscribe: لغو اشتراک
|
unsubscribe: لغو اشتراک
|
||||||
view: 'نمایش:'
|
view: 'نمایش:'
|
||||||
view_profile: دیدن نمایه
|
view_profile: دیدن نمایه
|
||||||
@ -1632,9 +1631,6 @@ fa:
|
|||||||
title: تاریخچهٔ تأیید هویت
|
title: تاریخچهٔ تأیید هویت
|
||||||
mail_subscriptions:
|
mail_subscriptions:
|
||||||
unsubscribe:
|
unsubscribe:
|
||||||
action: بله. لغو اشتراک
|
|
||||||
complete: لغو اشتراک شد
|
|
||||||
confirmation_html: مطمئنید که میخواهید اشتراک %{type} را از ماستودون روی %{domain} برای رایانامهٔ %{email} لغو کنید؟ همواره میتوانید از <a href="%{settings_path}">تنظیمات آگاهی رایانامهای</a> دوباره مشترک شوید.
|
|
||||||
emails:
|
emails:
|
||||||
notification_emails:
|
notification_emails:
|
||||||
favourite: رایانامههای آگاهی برگزیدن
|
favourite: رایانامههای آگاهی برگزیدن
|
||||||
@ -1642,9 +1638,6 @@ fa:
|
|||||||
follow_request: رایانامههای درخواست پیگیری
|
follow_request: رایانامههای درخواست پیگیری
|
||||||
mention: رایانامههای آگاهی اشاره
|
mention: رایانامههای آگاهی اشاره
|
||||||
reblog: رایانامههای آگاهی تقویت
|
reblog: رایانامههای آگاهی تقویت
|
||||||
resubscribe_html: اگر اشتراک را اشتباهی لغو کردید میتوانید از <a href="%{settings_path}">تنظیمات آگاهی رایانامهای</a> دوباره مشترک شوید.
|
|
||||||
success_html: دیگر %{type} را از ماستودون روی %{domain} برای رایانامهٔ %{email} نخواهید گرفت.
|
|
||||||
title: لغو اشتراک
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: نمیتوان برای نوشتهای که تصویر دارد ویدیو بارگذاری کرد
|
images_and_video: نمیتوان برای نوشتهای که تصویر دارد ویدیو بارگذاری کرد
|
||||||
|
|||||||
@ -1231,7 +1231,6 @@ fi:
|
|||||||
application_mailer:
|
application_mailer:
|
||||||
notification_preferences: Muuta sähköpostiasetuksia
|
notification_preferences: Muuta sähköpostiasetuksia
|
||||||
salutation: "%{name}"
|
salutation: "%{name}"
|
||||||
settings: 'Muuta sähköpostiasetuksia: %{link}'
|
|
||||||
unsubscribe: Lopeta tilaus
|
unsubscribe: Lopeta tilaus
|
||||||
view: 'Näytä:'
|
view: 'Näytä:'
|
||||||
view_profile: Näytä profiili
|
view_profile: Näytä profiili
|
||||||
@ -1655,9 +1654,6 @@ fi:
|
|||||||
title: Todennushistoria
|
title: Todennushistoria
|
||||||
mail_subscriptions:
|
mail_subscriptions:
|
||||||
unsubscribe:
|
unsubscribe:
|
||||||
action: Kyllä, peru tilaus
|
|
||||||
complete: Tilaus lopetettiin
|
|
||||||
confirmation_html: Haluatko varmasti lopettaa Mastodonin sähköposti-ilmoitusten vastaanottamisen aiheesta %{type} palvelimelta %{domain} osoitteeseesi %{email}? Voit tilata ilmoitusviestejä milloin tahansa uudelleen <a href="%{settings_path}">sähköposti-ilmoitusten asetuksista</a>.
|
|
||||||
emails:
|
emails:
|
||||||
notification_emails:
|
notification_emails:
|
||||||
favourite: sähköposti-ilmoituksia suosikkeihin lisäämisistä
|
favourite: sähköposti-ilmoituksia suosikkeihin lisäämisistä
|
||||||
@ -1665,9 +1661,6 @@ fi:
|
|||||||
follow_request: sähköposti-ilmoituksia seurantapyynnöistä
|
follow_request: sähköposti-ilmoituksia seurantapyynnöistä
|
||||||
mention: sähköposti-ilmoituksia maininnoista
|
mention: sähköposti-ilmoituksia maininnoista
|
||||||
reblog: sähköposti-ilmoituksia tehostuksista
|
reblog: sähköposti-ilmoituksia tehostuksista
|
||||||
resubscribe_html: Jos olet perunut tilauksen erehdyksessä, voit tilata ilmoitusviestejä uudelleen <a href="%{settings_path}">sähköposti-ilmoitusten asetuksista</a>.
|
|
||||||
success_html: Sinulle ei enää lähetetä Mastodonin %{type} palvelimelta %{domain} osoitteeseen %{email}.
|
|
||||||
title: Lopeta tilaus
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: Videota ei voi liittää tilapäivitykseen, jossa on jo kuvia
|
images_and_video: Videota ei voi liittää tilapäivitykseen, jossa on jo kuvia
|
||||||
|
|||||||
@ -1229,7 +1229,6 @@ fo:
|
|||||||
application_mailer:
|
application_mailer:
|
||||||
notification_preferences: Broyt teldupostastillingar
|
notification_preferences: Broyt teldupostastillingar
|
||||||
salutation: "%{name}"
|
salutation: "%{name}"
|
||||||
settings: 'Broyt teldupostastillingar: %{link}'
|
|
||||||
unsubscribe: Strika hald
|
unsubscribe: Strika hald
|
||||||
view: 'Vís:'
|
view: 'Vís:'
|
||||||
view_profile: Vís vanga
|
view_profile: Vís vanga
|
||||||
@ -1651,9 +1650,6 @@ fo:
|
|||||||
title: Samgildissøga
|
title: Samgildissøga
|
||||||
mail_subscriptions:
|
mail_subscriptions:
|
||||||
unsubscribe:
|
unsubscribe:
|
||||||
action: Ja, strika hald
|
|
||||||
complete: Hald strikað
|
|
||||||
confirmation_html: Ert tú vís/ur í, at tú vil gevast at móttaka %{type} fyri Mastodon á %{domain} til tína teldupostadressu á %{email}? Tú kanst altíð gera haldið virkið aftur frá tínum <a href="%{settings_path}">teldupostfráboðanarstillingum</a>.
|
|
||||||
emails:
|
emails:
|
||||||
notification_emails:
|
notification_emails:
|
||||||
favourite: yndisfráboðanarteldupostar
|
favourite: yndisfráboðanarteldupostar
|
||||||
@ -1661,9 +1657,6 @@ fo:
|
|||||||
follow_request: fylg umbønir um teldupost
|
follow_request: fylg umbønir um teldupost
|
||||||
mention: nevn fráboðanarteldupostar
|
mention: nevn fráboðanarteldupostar
|
||||||
reblog: framhevja fráboðanarpostar
|
reblog: framhevja fráboðanarpostar
|
||||||
resubscribe_html: Um tú hevur strikað haldið av misgávum, so kanst tú tekna haldið av nýggjum í tínum <a href="%{settings_path}">teldupostfráboðarstillingum</a>.
|
|
||||||
success_html: Tú fer ikki longur at móttaka %{type} fyri Mastodon á %{domain} til tín teldupost á %{email}.
|
|
||||||
title: Strika hald
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: Kann ikki viðfesta sjónfílu til ein post, sum longu inniheldur myndir
|
images_and_video: Kann ikki viðfesta sjónfílu til ein post, sum longu inniheldur myndir
|
||||||
|
|||||||
@ -1234,7 +1234,6 @@ fr-CA:
|
|||||||
application_mailer:
|
application_mailer:
|
||||||
notification_preferences: Modification des préférences de la messagerie
|
notification_preferences: Modification des préférences de la messagerie
|
||||||
salutation: "%{name},"
|
salutation: "%{name},"
|
||||||
settings: 'Modifier les préférences de la messagerie : %{link}'
|
|
||||||
unsubscribe: Se désabonner
|
unsubscribe: Se désabonner
|
||||||
view: 'Voir :'
|
view: 'Voir :'
|
||||||
view_profile: Voir le profil
|
view_profile: Voir le profil
|
||||||
@ -1658,9 +1657,6 @@ fr-CA:
|
|||||||
title: Historique d'authentification
|
title: Historique d'authentification
|
||||||
mail_subscriptions:
|
mail_subscriptions:
|
||||||
unsubscribe:
|
unsubscribe:
|
||||||
action: Oui, me désabonner
|
|
||||||
complete: Désabonné·e
|
|
||||||
confirmation_html: Êtes-vous sûr de vouloir vous désabonner de la réception de %{type} pour Mastodon sur %{domain} à votre adresse e-mail %{email} ? Vous pouvez toujours vous réabonner à partir de vos paramètres de <a href="%{settings_path}">notification par messagerie</a>.
|
|
||||||
emails:
|
emails:
|
||||||
notification_emails:
|
notification_emails:
|
||||||
favourite: e-mails de notifications de favoris
|
favourite: e-mails de notifications de favoris
|
||||||
@ -1668,9 +1664,6 @@ fr-CA:
|
|||||||
follow_request: e-mails de demandes d’abonnements
|
follow_request: e-mails de demandes d’abonnements
|
||||||
mention: e-mails de notifications de mentions
|
mention: e-mails de notifications de mentions
|
||||||
reblog: e-mails de notifications de partages
|
reblog: e-mails de notifications de partages
|
||||||
resubscribe_html: Si vous vous êtes désinscrit par erreur, vous pouvez vous réinscrire à partir de vos <a href="%{settings_path}">paramètres de notification par e-mail</a>.
|
|
||||||
success_html: Vous ne recevrez plus de %{type} pour Mastodon sur %{domain} à votre adresse e-mail à %{email}.
|
|
||||||
title: Se désabonner
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: Impossible de joindre une vidéo à un message contenant déjà des images
|
images_and_video: Impossible de joindre une vidéo à un message contenant déjà des images
|
||||||
|
|||||||
@ -1234,7 +1234,6 @@ fr:
|
|||||||
application_mailer:
|
application_mailer:
|
||||||
notification_preferences: Modification des préférences de la messagerie
|
notification_preferences: Modification des préférences de la messagerie
|
||||||
salutation: "%{name},"
|
salutation: "%{name},"
|
||||||
settings: 'Modifier les préférences de la messagerie : %{link}'
|
|
||||||
unsubscribe: Se désabonner
|
unsubscribe: Se désabonner
|
||||||
view: 'Voir :'
|
view: 'Voir :'
|
||||||
view_profile: Voir le profil
|
view_profile: Voir le profil
|
||||||
@ -1658,9 +1657,6 @@ fr:
|
|||||||
title: Historique d'authentification
|
title: Historique d'authentification
|
||||||
mail_subscriptions:
|
mail_subscriptions:
|
||||||
unsubscribe:
|
unsubscribe:
|
||||||
action: Oui, se désinscrire
|
|
||||||
complete: Désinscrit
|
|
||||||
confirmation_html: Êtes-vous sûr de vouloir vous désabonner de la réception de %{type} pour Mastodon sur %{domain} à votre adresse e-mail %{email} ? Vous pouvez toujours vous réabonner à partir de vos paramètres de <a href="%{settings_path}">notification par messagerie</a>.
|
|
||||||
emails:
|
emails:
|
||||||
notification_emails:
|
notification_emails:
|
||||||
favourite: e-mails de notifications de favoris
|
favourite: e-mails de notifications de favoris
|
||||||
@ -1668,9 +1664,6 @@ fr:
|
|||||||
follow_request: e-mails de demandes d’abonnements
|
follow_request: e-mails de demandes d’abonnements
|
||||||
mention: e-mails de notifications de mentions
|
mention: e-mails de notifications de mentions
|
||||||
reblog: e-mails de notifications de partages
|
reblog: e-mails de notifications de partages
|
||||||
resubscribe_html: Si vous vous êtes désinscrit par erreur, vous pouvez vous réinscrire à partir de vos <a href="%{settings_path}">paramètres de notification par e-mail</a>.
|
|
||||||
success_html: Vous ne recevrez plus de %{type} pour Mastodon sur %{domain} à votre adresse e-mail à %{email}.
|
|
||||||
title: Se désinscrire
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: Impossible de joindre une vidéo à un message contenant déjà des images
|
images_and_video: Impossible de joindre une vidéo à un message contenant déjà des images
|
||||||
|
|||||||
@ -1189,7 +1189,6 @@ fy:
|
|||||||
application_mailer:
|
application_mailer:
|
||||||
notification_preferences: E-mailynstellingen wizigje
|
notification_preferences: E-mailynstellingen wizigje
|
||||||
salutation: "%{name},"
|
salutation: "%{name},"
|
||||||
settings: 'E-mailfoarkarren wizigje: %{link}'
|
|
||||||
unsubscribe: Ofmelde
|
unsubscribe: Ofmelde
|
||||||
view: 'Besjoch:'
|
view: 'Besjoch:'
|
||||||
view_profile: Profyl besjen
|
view_profile: Profyl besjen
|
||||||
@ -1597,9 +1596,6 @@ fy:
|
|||||||
title: Oanmeldskiednis
|
title: Oanmeldskiednis
|
||||||
mail_subscriptions:
|
mail_subscriptions:
|
||||||
unsubscribe:
|
unsubscribe:
|
||||||
action: Ja, ôfmelde
|
|
||||||
complete: Ofmelden
|
|
||||||
confirmation_html: Binne jo wis dat jo jo ôfmelde wolle foar it ûntfangen fan %{type} fan Mastodon op %{domain} op jo e-mailadres %{email}? Jo kinne jo altyd opnij abonnearje yn jo <a href="%{settings_path}">ynstellingen foar e-mailmeldingen</a>.
|
|
||||||
emails:
|
emails:
|
||||||
notification_emails:
|
notification_emails:
|
||||||
favourite: e-mailmeldingen foar favoriten
|
favourite: e-mailmeldingen foar favoriten
|
||||||
@ -1607,9 +1603,6 @@ fy:
|
|||||||
follow_request: e-mailmeldingen foar folchfersiken
|
follow_request: e-mailmeldingen foar folchfersiken
|
||||||
mention: e-mailmeldingen foar fermeldingen
|
mention: e-mailmeldingen foar fermeldingen
|
||||||
reblog: e-mailmeldingen foar boosts
|
reblog: e-mailmeldingen foar boosts
|
||||||
resubscribe_html: As jo jo mei fersin ôfmeld hawwe, kinne jo jo opnij abonnearje yn jo <a href="%{settings_path}">ynstellingen foar e-mailmeldingen</a>.
|
|
||||||
success_html: Jo ûntfange net langer %{type} fan Mastodon op %{domain} op jo e-mailadres %{email}.
|
|
||||||
title: Ofmelde
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: In fideo kin net oan in berjocht mei ôfbyldingen keppele wurde
|
images_and_video: In fideo kin net oan in berjocht mei ôfbyldingen keppele wurde
|
||||||
|
|||||||
@ -1296,7 +1296,6 @@ ga:
|
|||||||
application_mailer:
|
application_mailer:
|
||||||
notification_preferences: Athraigh roghanna ríomhphoist
|
notification_preferences: Athraigh roghanna ríomhphoist
|
||||||
salutation: "%{name},"
|
salutation: "%{name},"
|
||||||
settings: 'Athraigh sainroghanna ríomhphoist: %{link}'
|
|
||||||
unsubscribe: Díliostáil
|
unsubscribe: Díliostáil
|
||||||
view: 'Amharc:'
|
view: 'Amharc:'
|
||||||
view_profile: Féach ar phróifíl
|
view_profile: Féach ar phróifíl
|
||||||
@ -1780,9 +1779,6 @@ ga:
|
|||||||
title: Stair fíordheimhnithe
|
title: Stair fíordheimhnithe
|
||||||
mail_subscriptions:
|
mail_subscriptions:
|
||||||
unsubscribe:
|
unsubscribe:
|
||||||
action: Sea, díliostáil
|
|
||||||
complete: Gan liostáil
|
|
||||||
confirmation_html: An bhfuil tú cinnte gur mhaith leat díliostáil ó %{type} a fháil do Mastodon ar %{domain} chuig do ríomhphost ag %{email}? Is féidir leat liostáil arís i gcónaí ó do <a href="%{settings_path}">socruithe fógra ríomhphoist</a>.
|
|
||||||
emails:
|
emails:
|
||||||
notification_emails:
|
notification_emails:
|
||||||
favourite: ríomhphoist fógra is fearr leat
|
favourite: ríomhphoist fógra is fearr leat
|
||||||
@ -1790,9 +1786,6 @@ ga:
|
|||||||
follow_request: lean ríomhphoist iarratais
|
follow_request: lean ríomhphoist iarratais
|
||||||
mention: trácht ar ríomhphoist fógra
|
mention: trácht ar ríomhphoist fógra
|
||||||
reblog: ríomhphoist fógraí a threisiú
|
reblog: ríomhphoist fógraí a threisiú
|
||||||
resubscribe_html: Má dhíliostáil tú de dhearmad, is féidir leat liostáil arís ó do <a href="%{settings_path}">socruithe fógra ríomhphoist</a>.
|
|
||||||
success_html: Ní bhfaighidh tú %{type} le haghaidh Mastodon ar %{domain} chuig do ríomhphost ag %{email} a thuilleadh.
|
|
||||||
title: Díliostáil
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: Ní féidir físeán a cheangal le postáil a bhfuil íomhánna ann cheana féin
|
images_and_video: Ní féidir físeán a cheangal le postáil a bhfuil íomhánna ann cheana féin
|
||||||
|
|||||||
@ -1248,7 +1248,6 @@ gd:
|
|||||||
application_mailer:
|
application_mailer:
|
||||||
notification_preferences: Atharraich roghainnean a’ phuist-d
|
notification_preferences: Atharraich roghainnean a’ phuist-d
|
||||||
salutation: "%{name},"
|
salutation: "%{name},"
|
||||||
settings: 'Atharraich roghainnean a’ phuist-d: %{link}'
|
|
||||||
unsubscribe: Cuir crìoch air an fho-sgrìobhadh
|
unsubscribe: Cuir crìoch air an fho-sgrìobhadh
|
||||||
view: 'Faic:'
|
view: 'Faic:'
|
||||||
view_profile: Seall a’ phròifil
|
view_profile: Seall a’ phròifil
|
||||||
@ -1710,9 +1709,6 @@ gd:
|
|||||||
title: Eachdraidh an dearbhaidh
|
title: Eachdraidh an dearbhaidh
|
||||||
mail_subscriptions:
|
mail_subscriptions:
|
||||||
unsubscribe:
|
unsubscribe:
|
||||||
action: Tha, cuir crìoch air an fho-sgrìobhadh
|
|
||||||
complete: Chaidh crìoch a chur air an fho-sgrìobhadh
|
|
||||||
confirmation_html: A bheil thu cinnteach nach eil thu airson %{type} fhaighinn tuilleadh o Mhastodon air %{domain} dhan post-d agad aig %{email}? ’S urrainn dhut fo-sgrìobhadh a-rithist uair sam bith o <a href="%{settings_path}">roghainnean a’ puist-d agad</a>.
|
|
||||||
emails:
|
emails:
|
||||||
notification_emails:
|
notification_emails:
|
||||||
favourite: puist-d le brathan mu annsachdan
|
favourite: puist-d le brathan mu annsachdan
|
||||||
@ -1720,9 +1716,6 @@ gd:
|
|||||||
follow_request: puist-d le brathan mu iarrtasan leantainn
|
follow_request: puist-d le brathan mu iarrtasan leantainn
|
||||||
mention: puist-d le brathan mu iomraidhean
|
mention: puist-d le brathan mu iomraidhean
|
||||||
reblog: puist-d le brathan mu bhrosnachaidhean
|
reblog: puist-d le brathan mu bhrosnachaidhean
|
||||||
resubscribe_html: Ma chuir thu crìoch air an fho-sgrìobhadh le mearachd, ’s urrainn dhut fo-sgrìobhadh a-rithist o <a href="%{settings_path}">roghainnean a’ puist-d agad</a>.
|
|
||||||
success_html: Chan fhaigh thu %{type} o Mhastodon air %{domain} dhan phost-d agad aig %{email} tuilleadh.
|
|
||||||
title: Cuir crìoch air an fho-sgrìobhadh
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: Chan urrainn dhut video a cheangal ri post sa bheil dealbh mu thràth
|
images_and_video: Chan urrainn dhut video a cheangal ri post sa bheil dealbh mu thràth
|
||||||
|
|||||||
@ -1231,7 +1231,6 @@ gl:
|
|||||||
application_mailer:
|
application_mailer:
|
||||||
notification_preferences: Cambiar preferencias de correo
|
notification_preferences: Cambiar preferencias de correo
|
||||||
salutation: "%{name},"
|
salutation: "%{name},"
|
||||||
settings: 'Cambiar preferencias de correo: %{link}'
|
|
||||||
unsubscribe: Anular subscrición
|
unsubscribe: Anular subscrición
|
||||||
view: 'Vista:'
|
view: 'Vista:'
|
||||||
view_profile: Ver perfil
|
view_profile: Ver perfil
|
||||||
@ -1655,9 +1654,6 @@ gl:
|
|||||||
title: Historial de autenticación
|
title: Historial de autenticación
|
||||||
mail_subscriptions:
|
mail_subscriptions:
|
||||||
unsubscribe:
|
unsubscribe:
|
||||||
action: Si, retirar subscrición
|
|
||||||
complete: Subscrición anulada
|
|
||||||
confirmation_html: Tes a certeza de querer retirar a subscrición a Mastodon en %{domain} para recibir %{type} no teu correo electrónico en %{email}? Poderás volver a subscribirte desde os <a href="%{settings_path}">axustes de notificacións por correo</a>.
|
|
||||||
emails:
|
emails:
|
||||||
notification_emails:
|
notification_emails:
|
||||||
favourite: notificacións de favorecidas
|
favourite: notificacións de favorecidas
|
||||||
@ -1665,9 +1661,6 @@ gl:
|
|||||||
follow_request: notificacións de solicitudes de seguimento
|
follow_request: notificacións de solicitudes de seguimento
|
||||||
mention: notificacións de mencións
|
mention: notificacións de mencións
|
||||||
reblog: notificacións de promocións
|
reblog: notificacións de promocións
|
||||||
resubscribe_html: Se por un erro eliminaches a subscrición, podes volver a subscribirte desde os <a href="%{settings_path}">axustes de notificacións por correo electrónico</a>.
|
|
||||||
success_html: Non vas recibir %{type} de Mastodon en %{domain} no enderezo %{email}.
|
|
||||||
title: Anular subscrición
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: Non podes anexar un vídeo a unha publicación que xa contén imaxes
|
images_and_video: Non podes anexar un vídeo a unha publicación que xa contén imaxes
|
||||||
|
|||||||
@ -1273,7 +1273,6 @@ he:
|
|||||||
application_mailer:
|
application_mailer:
|
||||||
notification_preferences: שינוי העדפות דוא"ל
|
notification_preferences: שינוי העדפות דוא"ל
|
||||||
salutation: "%{name},"
|
salutation: "%{name},"
|
||||||
settings: 'שינוי הגדרות דוא"ל: %{link}'
|
|
||||||
unsubscribe: בטל מנוי
|
unsubscribe: בטל מנוי
|
||||||
view: 'תצוגה:'
|
view: 'תצוגה:'
|
||||||
view_profile: צפיה בפרופיל
|
view_profile: צפיה בפרופיל
|
||||||
@ -1737,9 +1736,6 @@ he:
|
|||||||
title: הסטוריית אימותים
|
title: הסטוריית אימותים
|
||||||
mail_subscriptions:
|
mail_subscriptions:
|
||||||
unsubscribe:
|
unsubscribe:
|
||||||
action: כן, לבטל הרשמה
|
|
||||||
complete: הפסקת הרשמה
|
|
||||||
confirmation_html: יש לאשר את ביטול ההרשמה להודעות %{type} ממסטודון בשרת %{domain} לכתובת הדואל %{email}. תמיד אפשר להרשם מחדש ב<a href="%{settings_path}">כיוונוני הודעות דואל</a>.
|
|
||||||
emails:
|
emails:
|
||||||
notification_emails:
|
notification_emails:
|
||||||
favourite: הודעות דואל לגבי חיבובים
|
favourite: הודעות דואל לגבי חיבובים
|
||||||
@ -1747,9 +1743,6 @@ he:
|
|||||||
follow_request: הודעות דואל לגבי בקשות מעקב
|
follow_request: הודעות דואל לגבי בקשות מעקב
|
||||||
mention: הודעות דואל לגבי איזכורים
|
mention: הודעות דואל לגבי איזכורים
|
||||||
reblog: הודעות דואל לגבי הידהודים
|
reblog: הודעות דואל לגבי הידהודים
|
||||||
resubscribe_html: אם ביטול ההרשמה היה בטעות, ניתן להרשם מחדש מתוך <a href="%{settings_path}">מסך הגדרות ההרשמה</a> שלך.
|
|
||||||
success_html: לא יגיעו אליך יותר הודעות %{type} משרת מסטודון %{domain} לכתובת הדואל %{email}.
|
|
||||||
title: הפסקת הרשמה
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: לא ניתן להוסיף וידאו להודעה שכבר מכילה תמונות
|
images_and_video: לא ניתן להוסיף וידאו להודעה שכבר מכילה תמונות
|
||||||
|
|||||||
@ -1231,7 +1231,6 @@ hu:
|
|||||||
application_mailer:
|
application_mailer:
|
||||||
notification_preferences: E-mail-beállítások módosítása
|
notification_preferences: E-mail-beállítások módosítása
|
||||||
salutation: "%{name}!"
|
salutation: "%{name}!"
|
||||||
settings: 'E-mail-beállítások módosítása: %{link}'
|
|
||||||
unsubscribe: Leiratkozás
|
unsubscribe: Leiratkozás
|
||||||
view: 'Megtekintés:'
|
view: 'Megtekintés:'
|
||||||
view_profile: Profil megtekintése
|
view_profile: Profil megtekintése
|
||||||
@ -1655,9 +1654,6 @@ hu:
|
|||||||
title: Hitelesítési történet
|
title: Hitelesítési történet
|
||||||
mail_subscriptions:
|
mail_subscriptions:
|
||||||
unsubscribe:
|
unsubscribe:
|
||||||
action: Igen, leiratkozás
|
|
||||||
complete: Leiratkozva
|
|
||||||
confirmation_html: 'Biztos, hogy leiratkozol arról, hogy %{type} típusú üzeneteket kapj a(z) %{domain} Mastodon-kiszolgálótól erre a címedre: %{email}? Bármikor újra feliratkozhatsz az <a href="%{settings_path}">e-mail-értesítési beállításokban</a>.'
|
|
||||||
emails:
|
emails:
|
||||||
notification_emails:
|
notification_emails:
|
||||||
favourite: kedvencnek jelölés értesítő e-mailjei
|
favourite: kedvencnek jelölés értesítő e-mailjei
|
||||||
@ -1665,9 +1661,6 @@ hu:
|
|||||||
follow_request: követési kérések e-mailjei
|
follow_request: követési kérések e-mailjei
|
||||||
mention: megemlítés értesítő e-mailjei
|
mention: megemlítés értesítő e-mailjei
|
||||||
reblog: megtolás értesítő e-mailjei
|
reblog: megtolás értesítő e-mailjei
|
||||||
resubscribe_html: Ha tévedésből iratkoztál le, újra feliratkozhatsz az <a href="%{settings_path}">e-mail-értesítési beállításoknál</a>.
|
|
||||||
success_html: 'Mostantól nem kapsz %{type} típusú üzeneket a(z) %{domain} Mastodon-kiszolgálón erre a címedre: %{email}.'
|
|
||||||
title: Leiratkozás
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: Nem csatolhatsz videót olyan bejegyzéshez, amelyhez már csatoltál képet
|
images_and_video: Nem csatolhatsz videót olyan bejegyzéshez, amelyhez már csatoltál képet
|
||||||
|
|||||||
@ -1207,7 +1207,6 @@ ia:
|
|||||||
application_mailer:
|
application_mailer:
|
||||||
notification_preferences: Cambiar preferentias de e-mail
|
notification_preferences: Cambiar preferentias de e-mail
|
||||||
salutation: "%{name},"
|
salutation: "%{name},"
|
||||||
settings: 'Cambiar preferentias de e-mail: %{link}'
|
|
||||||
unsubscribe: Cancellar subscription
|
unsubscribe: Cancellar subscription
|
||||||
view: 'Visita:'
|
view: 'Visita:'
|
||||||
view_profile: Vider profilo
|
view_profile: Vider profilo
|
||||||
@ -1622,9 +1621,6 @@ ia:
|
|||||||
title: Historia de authentication
|
title: Historia de authentication
|
||||||
mail_subscriptions:
|
mail_subscriptions:
|
||||||
unsubscribe:
|
unsubscribe:
|
||||||
action: Si, cancellar subscription
|
|
||||||
complete: Desubscribite
|
|
||||||
confirmation_html: Es tu secur de voler cancellar le subscription al %{type} de Mastodon sur %{domain} pro tu adresse de e-mail %{email}? Tu pote sempre resubscriber te a partir del <a href="%{settings_path}">parametros de notification in e-mail</a>.
|
|
||||||
emails:
|
emails:
|
||||||
notification_emails:
|
notification_emails:
|
||||||
favourite: notificationes de favorites in e-mail
|
favourite: notificationes de favorites in e-mail
|
||||||
@ -1632,9 +1628,6 @@ ia:
|
|||||||
follow_request: requestas de sequimento in e-mail
|
follow_request: requestas de sequimento in e-mail
|
||||||
mention: notificationes de mentiones in e-mail
|
mention: notificationes de mentiones in e-mail
|
||||||
reblog: notificationes de impulsos in e-mail
|
reblog: notificationes de impulsos in e-mail
|
||||||
resubscribe_html: Si tu ha cancellate le subscription in error, tu pote resubscriber te a partir del <a href="%{settings_path}">parametros de notification in e-mail</a>.
|
|
||||||
success_html: Tu non recipera plus %{type} pro Mastodon sur %{domain} a tu adresse de e-mail %{email}.
|
|
||||||
title: Desubcriber
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: Impossibile annexar un video a un message que jam contine imagines
|
images_and_video: Impossibile annexar un video a un message que jam contine imagines
|
||||||
|
|||||||
@ -1328,11 +1328,6 @@ ie:
|
|||||||
failed_sign_in_html: Fallit prova de apertion de session per %{method} de %{ip} (%{browser})
|
failed_sign_in_html: Fallit prova de apertion de session per %{method} de %{ip} (%{browser})
|
||||||
successful_sign_in_html: Successosi apertion de session per %{method} de %{ip} (%{browser})
|
successful_sign_in_html: Successosi apertion de session per %{method} de %{ip} (%{browser})
|
||||||
title: Historie de autentication
|
title: Historie de autentication
|
||||||
mail_subscriptions:
|
|
||||||
unsubscribe:
|
|
||||||
action: Yes, desabonnar
|
|
||||||
complete: Desabonnat
|
|
||||||
title: Desabonnar
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: On ne posse atachar un video a un posta quel ja contene images
|
images_and_video: On ne posse atachar un video a un posta quel ja contene images
|
||||||
|
|||||||
@ -1104,7 +1104,6 @@ io:
|
|||||||
application_mailer:
|
application_mailer:
|
||||||
notification_preferences: Chanjar retpostopreferaji
|
notification_preferences: Chanjar retpostopreferaji
|
||||||
salutation: "%{name},"
|
salutation: "%{name},"
|
||||||
settings: 'Chanjar retpostopreferaji: %{link}'
|
|
||||||
unsubscribe: Desabonez
|
unsubscribe: Desabonez
|
||||||
view: 'Vidar:'
|
view: 'Vidar:'
|
||||||
view_profile: Videz profilo
|
view_profile: Videz profilo
|
||||||
@ -1461,11 +1460,6 @@ io:
|
|||||||
failed_sign_in_html: Falita enirprob per %{method} de %{ip} (%{browser})
|
failed_sign_in_html: Falita enirprob per %{method} de %{ip} (%{browser})
|
||||||
successful_sign_in_html: Sucesoza eniro per %{method} de %{ip} (%{browser})
|
successful_sign_in_html: Sucesoza eniro per %{method} de %{ip} (%{browser})
|
||||||
title: Yurizeshistorio
|
title: Yurizeshistorio
|
||||||
mail_subscriptions:
|
|
||||||
unsubscribe:
|
|
||||||
action: Yes, desabonez
|
|
||||||
complete: Desabonita
|
|
||||||
title: Desabonez
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: Ne povas addonar video ad afisho qua ja enhavas imaji
|
images_and_video: Ne povas addonar video ad afisho qua ja enhavas imaji
|
||||||
|
|||||||
@ -1233,7 +1233,6 @@ is:
|
|||||||
application_mailer:
|
application_mailer:
|
||||||
notification_preferences: Breyta kjörstillingum tölvupósts
|
notification_preferences: Breyta kjörstillingum tölvupósts
|
||||||
salutation: "%{name},"
|
salutation: "%{name},"
|
||||||
settings: 'Breyta kjörstillingum tölvupósts: %{link}'
|
|
||||||
unsubscribe: Taka úr áskrift
|
unsubscribe: Taka úr áskrift
|
||||||
view: 'Skoða:'
|
view: 'Skoða:'
|
||||||
view_profile: Skoða notandasnið
|
view_profile: Skoða notandasnið
|
||||||
@ -1659,9 +1658,6 @@ is:
|
|||||||
title: Auðkenningarferill
|
title: Auðkenningarferill
|
||||||
mail_subscriptions:
|
mail_subscriptions:
|
||||||
unsubscribe:
|
unsubscribe:
|
||||||
action: Já, hætta í áskrift
|
|
||||||
complete: Hætta í áskrift
|
|
||||||
confirmation_html: Ertu viss um að þú viljir hætta áskrift sendinga á %{type} fyrir Mastodon á %{domain} til póstfangsins þíns %{email}? Þú getur alltaf aftur gerst áskrifandi í <a href="%{settings_path}">stillingunum fyrir tilkynningar í tölvupósti</a>.
|
|
||||||
emails:
|
emails:
|
||||||
notification_emails:
|
notification_emails:
|
||||||
favourite: tilkynningum í tölvupósti um eftirlæti
|
favourite: tilkynningum í tölvupósti um eftirlæti
|
||||||
@ -1669,9 +1665,6 @@ is:
|
|||||||
follow_request: tilkynningum í tölvupósti um beiðnir um að fylgjast með
|
follow_request: tilkynningum í tölvupósti um beiðnir um að fylgjast með
|
||||||
mention: tilkynningum í tölvupósti um tilvísanir
|
mention: tilkynningum í tölvupósti um tilvísanir
|
||||||
reblog: tilkynningum í tölvupósti um endurbirtingar
|
reblog: tilkynningum í tölvupósti um endurbirtingar
|
||||||
resubscribe_html: Ef þú hættir áskrift fyrir mistök, geturðu alltaf aftur gerst áskrifandi í <a href="%{settings_path}">stillingunum fyrir tilkynningar í tölvupósti</a>.
|
|
||||||
success_html: Þú munt ekki lengur fá sendingar með %{type} fyrir Mastodon á %{domain} á póstfangið þitt %{email}.
|
|
||||||
title: Taka úr áskrift
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: Ekki er hægt að hengja myndskeið við færslu sem þegar inniheldur myndir
|
images_and_video: Ekki er hægt að hengja myndskeið við færslu sem þegar inniheldur myndir
|
||||||
|
|||||||
@ -1231,7 +1231,6 @@ it:
|
|||||||
application_mailer:
|
application_mailer:
|
||||||
notification_preferences: Modifica le preferenze e-mail
|
notification_preferences: Modifica le preferenze e-mail
|
||||||
salutation: "%{name},"
|
salutation: "%{name},"
|
||||||
settings: 'Modifica le preferenze e-mail: %{link}'
|
|
||||||
unsubscribe: Disiscriviti
|
unsubscribe: Disiscriviti
|
||||||
view: 'Guarda:'
|
view: 'Guarda:'
|
||||||
view_profile: Mostra profilo
|
view_profile: Mostra profilo
|
||||||
@ -1655,9 +1654,6 @@ it:
|
|||||||
title: Cronologia delle autenticazioni
|
title: Cronologia delle autenticazioni
|
||||||
mail_subscriptions:
|
mail_subscriptions:
|
||||||
unsubscribe:
|
unsubscribe:
|
||||||
action: Sì, annulla l'iscrizione
|
|
||||||
complete: Iscrizione annullata
|
|
||||||
confirmation_html: Si è sicuri di voler annullare l'iscrizione per non ricevere %{type} per Mastodon su %{domain} sulla tua e-mail %{email}? Puoi sempre reiscriverti dalle tue <a href="%{settings_path}">impostazioni di notifica e-mail</a>.
|
|
||||||
emails:
|
emails:
|
||||||
notification_emails:
|
notification_emails:
|
||||||
favourite: e-mail di notifica preferite
|
favourite: e-mail di notifica preferite
|
||||||
@ -1665,9 +1661,6 @@ it:
|
|||||||
follow_request: segui le e-mail di richiesta
|
follow_request: segui le e-mail di richiesta
|
||||||
mention: menziona le e-mail di notifica
|
mention: menziona le e-mail di notifica
|
||||||
reblog: e-mail di notifica per le condivisioni
|
reblog: e-mail di notifica per le condivisioni
|
||||||
resubscribe_html: Se hai annullato l'iscrizione per errore, puoi reiscriverti tramite le <a href="%{settings_path}">impostazioni di notifica e-mail</a>.
|
|
||||||
success_html: Non riceverai più %{type} per Mastodon su %{domain} al tuo indirizzo e-mail %{email}.
|
|
||||||
title: Disiscriviti
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: Impossibile allegare video a un post che contiene già immagini
|
images_and_video: Impossibile allegare video a un post che contiene già immagini
|
||||||
|
|||||||
@ -1169,7 +1169,6 @@ ja:
|
|||||||
application_mailer:
|
application_mailer:
|
||||||
notification_preferences: メール設定の変更
|
notification_preferences: メール設定の変更
|
||||||
salutation: "%{name}さん"
|
salutation: "%{name}さん"
|
||||||
settings: 'メール設定の変更: %{link}'
|
|
||||||
unsubscribe: 購読解除
|
unsubscribe: 購読解除
|
||||||
view: 'リンク:'
|
view: 'リンク:'
|
||||||
view_profile: プロフィールを表示
|
view_profile: プロフィールを表示
|
||||||
@ -1560,9 +1559,6 @@ ja:
|
|||||||
title: 認証履歴
|
title: 認証履歴
|
||||||
mail_subscriptions:
|
mail_subscriptions:
|
||||||
unsubscribe:
|
unsubscribe:
|
||||||
action: 購読を解除する
|
|
||||||
complete: 購読を解除しました
|
|
||||||
confirmation_html: Mastodon (%{domain}) による %{email} 宛の「%{type}」の配信を停止します。再度必要になった場合は<a href="%{settings_path}">メール通知の設定</a>からいつでも再開できます。
|
|
||||||
emails:
|
emails:
|
||||||
notification_emails:
|
notification_emails:
|
||||||
favourite: お気に入りの通知メール
|
favourite: お気に入りの通知メール
|
||||||
@ -1570,9 +1566,6 @@ ja:
|
|||||||
follow_request: フォローリクエストの通知メール
|
follow_request: フォローリクエストの通知メール
|
||||||
mention: 返信の通知メール
|
mention: 返信の通知メール
|
||||||
reblog: ブーストの通知メール
|
reblog: ブーストの通知メール
|
||||||
resubscribe_html: 誤って解除した場合は<a href="%{settings_path}">メール通知の設定</a>から再購読できます。
|
|
||||||
success_html: Mastodon (%{domain}) から %{email} への「%{type}」の配信が停止されました。
|
|
||||||
title: 購読の解除
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: 既に画像が追加されているため、動画を追加することはできません
|
images_and_video: 既に画像が追加されているため、動画を追加することはできません
|
||||||
|
|||||||
@ -567,7 +567,6 @@ kab:
|
|||||||
application_mailer:
|
application_mailer:
|
||||||
notification_preferences: Snifel imenyafen n imayl
|
notification_preferences: Snifel imenyafen n imayl
|
||||||
salutation: "%{name},"
|
salutation: "%{name},"
|
||||||
settings: 'Snifel imenyafen n imayl: %{link}'
|
|
||||||
view: 'Ẓaṛ:'
|
view: 'Ẓaṛ:'
|
||||||
view_profile: Ssken-d amaɣnu
|
view_profile: Ssken-d amaɣnu
|
||||||
view_status: Ssken-d tasuffiɣt
|
view_status: Ssken-d tasuffiɣt
|
||||||
|
|||||||
@ -1194,7 +1194,6 @@ ko:
|
|||||||
application_mailer:
|
application_mailer:
|
||||||
notification_preferences: 이메일 설정 변경
|
notification_preferences: 이메일 설정 변경
|
||||||
salutation: "%{name} 님,"
|
salutation: "%{name} 님,"
|
||||||
settings: '이메일 설정 변경: %{link}'
|
|
||||||
unsubscribe: 구독 해제
|
unsubscribe: 구독 해제
|
||||||
view: '보기:'
|
view: '보기:'
|
||||||
view_profile: 프로필 보기
|
view_profile: 프로필 보기
|
||||||
@ -1596,9 +1595,6 @@ ko:
|
|||||||
title: 인증 이력
|
title: 인증 이력
|
||||||
mail_subscriptions:
|
mail_subscriptions:
|
||||||
unsubscribe:
|
unsubscribe:
|
||||||
action: 네, 구독 취소합니다
|
|
||||||
complete: 구독 취소됨
|
|
||||||
confirmation_html: 정말로 %{domain}에서 %{email}로 보내는 마스토돈의 %{type}에 대한 구독을 취소하시겠습니까? 언제든지 <a href="%{settings_path}">이메일 알림 설정</a>에서 다시 구독할 수 있습니다.
|
|
||||||
emails:
|
emails:
|
||||||
notification_emails:
|
notification_emails:
|
||||||
favourite: 좋아요 알림 이메일
|
favourite: 좋아요 알림 이메일
|
||||||
@ -1606,9 +1602,6 @@ ko:
|
|||||||
follow_request: 팔로우 요청 이메일
|
follow_request: 팔로우 요청 이메일
|
||||||
mention: 멘션 알림 이메일
|
mention: 멘션 알림 이메일
|
||||||
reblog: 부스트 알림 이메일
|
reblog: 부스트 알림 이메일
|
||||||
resubscribe_html: 만약 실수로 구독 취소를 했다면 <a href="%{settings_path}">이메일 알림 설정</a>에서 다시 구독할 수 있습니다.
|
|
||||||
success_html: 이제 더이상 %{domain}의 마스토돈에서 %{email}로 %{type} 알림을 보내지 않습니다.
|
|
||||||
title: 구독 취소
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: 이미 사진이 첨부된 게시물엔 동영상을 첨부할 수 없습니다.
|
images_and_video: 이미 사진이 첨부된 게시물엔 동영상을 첨부할 수 없습니다.
|
||||||
|
|||||||
@ -1135,7 +1135,6 @@ lad:
|
|||||||
application_mailer:
|
application_mailer:
|
||||||
notification_preferences: Troka preferensyas de posta
|
notification_preferences: Troka preferensyas de posta
|
||||||
salutation: "%{name},"
|
salutation: "%{name},"
|
||||||
settings: 'Troka preferensyas de posta: %{link}'
|
|
||||||
unsubscribe: Dezabona
|
unsubscribe: Dezabona
|
||||||
view: 'Mira:'
|
view: 'Mira:'
|
||||||
view_profile: Ve profil
|
view_profile: Ve profil
|
||||||
@ -1505,9 +1504,6 @@ lad:
|
|||||||
title: Estoria de autentifikasyon
|
title: Estoria de autentifikasyon
|
||||||
mail_subscriptions:
|
mail_subscriptions:
|
||||||
unsubscribe:
|
unsubscribe:
|
||||||
action: Si, dezabona
|
|
||||||
complete: Dezabonado
|
|
||||||
confirmation_html: Estas siguro de ke ya no keres risivir %{type} de Mastodon en %{domain} a tu posta elektronika %{email}? Syempre podras reabonarte dizde las <a href="%{settings_path}"> opsyones de avizos por posta.</a>.
|
|
||||||
emails:
|
emails:
|
||||||
notification_emails:
|
notification_emails:
|
||||||
favourite: avizos de favoritos por posta
|
favourite: avizos de favoritos por posta
|
||||||
@ -1515,9 +1511,6 @@ lad:
|
|||||||
follow_request: avizos de solisitasyones de segimyento por posta
|
follow_request: avizos de solisitasyones de segimyento por posta
|
||||||
mention: avizos de enmentaduras por posta
|
mention: avizos de enmentaduras por posta
|
||||||
reblog: avizos de repartajasyones por posta
|
reblog: avizos de repartajasyones por posta
|
||||||
resubscribe_html: Si tyenes deabonado por yerro, puedes reabonar en tus <a href="%{settings_path}">opsyones de avizos por posta elektronika</a>.
|
|
||||||
success_html: Ya no risiviras %{type} de Mastodon en %{domain} a tu posta en %{email}.
|
|
||||||
title: Dezabona
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: No se puede adjuntar un video a un estado ke ya kontenga imajes
|
images_and_video: No se puede adjuntar un video a un estado ke ya kontenga imajes
|
||||||
|
|||||||
@ -1078,7 +1078,6 @@ lt:
|
|||||||
emails:
|
emails:
|
||||||
notification_emails:
|
notification_emails:
|
||||||
reblog: dalintis pranešimų el. pašto laiškais
|
reblog: dalintis pranešimų el. pašto laiškais
|
||||||
success_html: Daugiau negausi %{type} „Mastodon“ domene %{domain} į savo el. paštą %{email}.
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: Negalima pridėti video prie statuso, kuris jau turi nuotrauką
|
images_and_video: Negalima pridėti video prie statuso, kuris jau turi nuotrauką
|
||||||
|
|||||||
@ -1174,7 +1174,6 @@ lv:
|
|||||||
application_mailer:
|
application_mailer:
|
||||||
notification_preferences: Mainīt e-pasta uztādījumus
|
notification_preferences: Mainīt e-pasta uztādījumus
|
||||||
salutation: "%{name},"
|
salutation: "%{name},"
|
||||||
settings: 'Mainīt e-pasta uztādījumus: %{link}'
|
|
||||||
unsubscribe: Atcelt abonēšanu
|
unsubscribe: Atcelt abonēšanu
|
||||||
view: 'Skatīt:'
|
view: 'Skatīt:'
|
||||||
view_profile: Skatīt profilu
|
view_profile: Skatīt profilu
|
||||||
@ -1598,9 +1597,6 @@ lv:
|
|||||||
title: Autentifikācijas vēsture
|
title: Autentifikācijas vēsture
|
||||||
mail_subscriptions:
|
mail_subscriptions:
|
||||||
unsubscribe:
|
unsubscribe:
|
||||||
action: Jā, atcelt abonēšanu
|
|
||||||
complete: Anulēts
|
|
||||||
confirmation_html: Vai tiešām atteikties no %{type} saņemšanas savā e-pasta adresē %{email} par %{domain} esošo Mastodon? Vienmēr var abonēt no jauna savos <a href="%{settings_path}">e-pasta paziņojumu iestatījumos</a>.
|
|
||||||
emails:
|
emails:
|
||||||
notification_emails:
|
notification_emails:
|
||||||
favourite: izlases paziņojumu e-pasta ziņojumi
|
favourite: izlases paziņojumu e-pasta ziņojumi
|
||||||
@ -1608,9 +1604,6 @@ lv:
|
|||||||
follow_request: sekošanas pieprasījumu e-pasta ziņojumi
|
follow_request: sekošanas pieprasījumu e-pasta ziņojumi
|
||||||
mention: pieminēšanas paziņojumu e-pasta ziņojumi
|
mention: pieminēšanas paziņojumu e-pasta ziņojumi
|
||||||
reblog: pastiprinājumu paziņojumu e-pasta ziņojumi
|
reblog: pastiprinājumu paziņojumu e-pasta ziņojumi
|
||||||
resubscribe_html: Ja abonements tika atcelts kļūdas dēļ, abonēt no jauna var savos <a href="%{settings_path}">e-pasta paziņojumu iestatījumos</a>.
|
|
||||||
success_html: Tu vairs savā e-pasta adresē %{email} nesaņemsi %{type} par %{domain} esošo Mastodon.
|
|
||||||
title: Atcelt abonēšanu
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: Nevar pievienot videoklipu tādai ziņai, kura jau satur attēlus
|
images_and_video: Nevar pievienot videoklipu tādai ziņai, kura jau satur attēlus
|
||||||
|
|||||||
@ -1280,12 +1280,9 @@ ms:
|
|||||||
title: Sejarah pengesahan
|
title: Sejarah pengesahan
|
||||||
mail_subscriptions:
|
mail_subscriptions:
|
||||||
unsubscribe:
|
unsubscribe:
|
||||||
action: Ya, nyahlanggan
|
|
||||||
complete: Menyahlanggan
|
|
||||||
emails:
|
emails:
|
||||||
notification_emails:
|
notification_emails:
|
||||||
favourite: emel pemberitahuan sukaan
|
favourite: emel pemberitahuan sukaan
|
||||||
title: Hentikan langganan
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: Tidak boleh melampirkan video pada pos yang sudah mengandungi imej
|
images_and_video: Tidak boleh melampirkan video pada pos yang sudah mengandungi imej
|
||||||
|
|||||||
@ -1275,11 +1275,6 @@ my:
|
|||||||
failed_sign_in_html: "%{ip} (%{browser}) မှ %{method} ဖြင့် အကောင့်ဝင်ရောက်ခြင်း မအောင်မြင်ပါ"
|
failed_sign_in_html: "%{ip} (%{browser}) မှ %{method} ဖြင့် အကောင့်ဝင်ရောက်ခြင်း မအောင်မြင်ပါ"
|
||||||
successful_sign_in_html: "%{ip} (%{browser}) မှ %{method} ဖြင့် အကောင့်ဝင်၍ရပါပြီ"
|
successful_sign_in_html: "%{ip} (%{browser}) မှ %{method} ဖြင့် အကောင့်ဝင်၍ရပါပြီ"
|
||||||
title: အထောက်အထားမှတ်တမ်း
|
title: အထောက်အထားမှတ်တမ်း
|
||||||
mail_subscriptions:
|
|
||||||
unsubscribe:
|
|
||||||
action: ဟုတ်ကဲ့၊ စာရင်းမှ ဖြုတ်လိုက်ပါပြီ
|
|
||||||
complete: စာရင်းမှထွက်ရန်
|
|
||||||
title: စာရင်းမှထွက်ရန်
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: ရုပ်ပုံပါရှိပြီးသားပို့စ်တွင် ဗီဒီယို ပူးတွဲ၍မရပါ
|
images_and_video: ရုပ်ပုံပါရှိပြီးသားပို့စ်တွင် ဗီဒီယို ပူးတွဲ၍မရပါ
|
||||||
|
|||||||
@ -1210,7 +1210,6 @@ nan-TW:
|
|||||||
application_mailer:
|
application_mailer:
|
||||||
notification_preferences: 改電子phue ê偏好
|
notification_preferences: 改電子phue ê偏好
|
||||||
salutation: "%{name}、"
|
salutation: "%{name}、"
|
||||||
settings: 改電子phue ê偏好:%{link}
|
|
||||||
unsubscribe: 取消訂
|
unsubscribe: 取消訂
|
||||||
view: 檢視:
|
view: 檢視:
|
||||||
view_profile: 看個人資料
|
view_profile: 看個人資料
|
||||||
@ -1614,9 +1613,6 @@ nan-TW:
|
|||||||
title: 認證歷史
|
title: 認證歷史
|
||||||
mail_subscriptions:
|
mail_subscriptions:
|
||||||
unsubscribe:
|
unsubscribe:
|
||||||
action: Hennh,mài訂
|
|
||||||
complete: 無訂ah
|
|
||||||
confirmation_html: Lí kám確定beh取消訂 %{domain} ê Mastodon 內底 ê %{type} kàu lí ê電子批 %{email}?Lí ē當隨時對lí ê<a href="%{settings_path}">電子批通知設定</a>重訂。
|
|
||||||
emails:
|
emails:
|
||||||
notification_emails:
|
notification_emails:
|
||||||
favourite: 收藏通知電子批
|
favourite: 收藏通知電子批
|
||||||
@ -1624,9 +1620,6 @@ nan-TW:
|
|||||||
follow_request: 跟tuè請求電子批
|
follow_request: 跟tuè請求電子批
|
||||||
mention: 提起通知電子批
|
mention: 提起通知電子批
|
||||||
reblog: 轉送通知電子批
|
reblog: 轉送通知電子批
|
||||||
resubscribe_html: Nā出tshê取消訂,lí通重訂tuì lí ê<a href="%{settings_path}">電子批通知設定</a>。
|
|
||||||
success_html: Lí bē koh收著佇 %{domain} ê Mastodon內底ê %{type} kàu lí ê電子批 %{email}。
|
|
||||||
title: 取消訂
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: Bē當佇有影像ê PO文內底加影片
|
images_and_video: Bē當佇有影像ê PO文內底加影片
|
||||||
|
|||||||
@ -1231,7 +1231,6 @@ nl:
|
|||||||
application_mailer:
|
application_mailer:
|
||||||
notification_preferences: E-mailvoorkeuren wijzigen
|
notification_preferences: E-mailvoorkeuren wijzigen
|
||||||
salutation: "%{name},"
|
salutation: "%{name},"
|
||||||
settings: 'E-mailvoorkeuren wijzigen: %{link}'
|
|
||||||
unsubscribe: Afmelden
|
unsubscribe: Afmelden
|
||||||
view: 'Bekijk:'
|
view: 'Bekijk:'
|
||||||
view_profile: Profiel bekijken
|
view_profile: Profiel bekijken
|
||||||
@ -1655,9 +1654,6 @@ nl:
|
|||||||
title: Inloggeschiedenis
|
title: Inloggeschiedenis
|
||||||
mail_subscriptions:
|
mail_subscriptions:
|
||||||
unsubscribe:
|
unsubscribe:
|
||||||
action: Ja, afmelden
|
|
||||||
complete: Afgemeld
|
|
||||||
confirmation_html: Weet je zeker dat je je wilt afmelden voor het ontvangen van %{type} van Mastodon op %{domain} op je e-mailadres %{email}? Je kunt je altijd opnieuw abonneren in jouw <a href="%{settings_path}">instellingen voor e-mailmeldingen</a>.
|
|
||||||
emails:
|
emails:
|
||||||
notification_emails:
|
notification_emails:
|
||||||
favourite: e-mailmeldingen voor favorieten
|
favourite: e-mailmeldingen voor favorieten
|
||||||
@ -1665,9 +1661,6 @@ nl:
|
|||||||
follow_request: e-mailmeldingen voor volgverzoeken
|
follow_request: e-mailmeldingen voor volgverzoeken
|
||||||
mention: e-mailmeldingen voor vermeldingen
|
mention: e-mailmeldingen voor vermeldingen
|
||||||
reblog: e-mailmeldingen voor boosts
|
reblog: e-mailmeldingen voor boosts
|
||||||
resubscribe_html: Als je je per ongeluk hebt afgemeld, kun je je opnieuw abonneren in jouw <a href="%{settings_path}">instellingen voor e-mailmeldingen</a>.
|
|
||||||
success_html: Je ontvangt niet langer %{type} van Mastodon op %{domain} op je e-mailadres %{email}.
|
|
||||||
title: Afmelden
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: Een video kan niet aan een bericht met afbeeldingen worden gekoppeld
|
images_and_video: Een video kan niet aan een bericht met afbeeldingen worden gekoppeld
|
||||||
|
|||||||
@ -1229,7 +1229,6 @@ nn:
|
|||||||
application_mailer:
|
application_mailer:
|
||||||
notification_preferences: Endre e-post-innstillingane
|
notification_preferences: Endre e-post-innstillingane
|
||||||
salutation: Hei %{name},
|
salutation: Hei %{name},
|
||||||
settings: 'Endre e-post-innstillingar: %{link}'
|
|
||||||
unsubscribe: Meld av
|
unsubscribe: Meld av
|
||||||
view: 'Sjå:'
|
view: 'Sjå:'
|
||||||
view_profile: Sjå profil
|
view_profile: Sjå profil
|
||||||
@ -1653,9 +1652,6 @@ nn:
|
|||||||
title: Autentiseringshistorikk
|
title: Autentiseringshistorikk
|
||||||
mail_subscriptions:
|
mail_subscriptions:
|
||||||
unsubscribe:
|
unsubscribe:
|
||||||
action: Ja, meld av
|
|
||||||
complete: Meldt av
|
|
||||||
confirmation_html: Er du sikker på at du ikkje lenger ynskjer å motta %{type} frå Mastodon på %{domain} til e-posten din %{email}? Du kan alltids gjera om på dette i <a href="%{settings_path}">innstillingar for e-postvarsling</a>.
|
|
||||||
emails:
|
emails:
|
||||||
notification_emails:
|
notification_emails:
|
||||||
favourite: e-postar om favorittmarkeringar
|
favourite: e-postar om favorittmarkeringar
|
||||||
@ -1663,9 +1659,6 @@ nn:
|
|||||||
follow_request: e-postar om fylgjeførespurnadar
|
follow_request: e-postar om fylgjeførespurnadar
|
||||||
mention: e-postar om omtaler
|
mention: e-postar om omtaler
|
||||||
reblog: e-postar om framhevingar
|
reblog: e-postar om framhevingar
|
||||||
resubscribe_html: Om du har avslutta abonnementet ved ein feil, kan du abonnera på nytt i <a href="%{settings_path}">innstillingar for e-postvarsling</a>.
|
|
||||||
success_html: Du vil ikkje lenger få %{type} frå Mastodon på %{domain} til e-posten på %{email}.
|
|
||||||
title: Meld av
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: Kan ikkje leggja ved video til status som allereie inneheld bilete
|
images_and_video: Kan ikkje leggja ved video til status som allereie inneheld bilete
|
||||||
|
|||||||
@ -1352,11 +1352,6 @@
|
|||||||
failed_sign_in_html: Mislykket innloggingsforsøk med %{method} fra %{ip} (%{browser})
|
failed_sign_in_html: Mislykket innloggingsforsøk med %{method} fra %{ip} (%{browser})
|
||||||
successful_sign_in_html: Vellykket innlogging med %{method} fra %{ip} (%{browser})
|
successful_sign_in_html: Vellykket innlogging med %{method} fra %{ip} (%{browser})
|
||||||
title: Autentiseringshistorikk
|
title: Autentiseringshistorikk
|
||||||
mail_subscriptions:
|
|
||||||
unsubscribe:
|
|
||||||
action: Ja, avslutt abonnement
|
|
||||||
complete: Abonnement avsluttet
|
|
||||||
title: Avslutt abonnement
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: Kan ikke legge ved video på en status som allerede inneholder bilder
|
images_and_video: Kan ikke legge ved video på en status som allerede inneholder bilder
|
||||||
|
|||||||
@ -1230,7 +1230,6 @@ pl:
|
|||||||
application_mailer:
|
application_mailer:
|
||||||
notification_preferences: Zmień ustawienia e-maili
|
notification_preferences: Zmień ustawienia e-maili
|
||||||
salutation: "%{name},"
|
salutation: "%{name},"
|
||||||
settings: 'Zmień ustawienia e-maili: %{link}'
|
|
||||||
unsubscribe: Anuluj subskrypcję
|
unsubscribe: Anuluj subskrypcję
|
||||||
view: 'Zobacz:'
|
view: 'Zobacz:'
|
||||||
view_profile: Wyświetl profil
|
view_profile: Wyświetl profil
|
||||||
@ -1689,9 +1688,6 @@ pl:
|
|||||||
title: Historia uwierzytelniania
|
title: Historia uwierzytelniania
|
||||||
mail_subscriptions:
|
mail_subscriptions:
|
||||||
unsubscribe:
|
unsubscribe:
|
||||||
action: Tak, wypisuję się
|
|
||||||
complete: Anulowano subskrypcję
|
|
||||||
confirmation_html: Czy na pewno chcesz wypisać się z otrzymywania %{type} z Mastodona na %{domain} na adres %{email}? Zawsze możesz zapisać się ponownie ze strony <a href="%{settings_path}">ustawień powiadomień mejlowych</a>.
|
|
||||||
emails:
|
emails:
|
||||||
notification_emails:
|
notification_emails:
|
||||||
favourite: powiadomień mejlowych o polubieniach
|
favourite: powiadomień mejlowych o polubieniach
|
||||||
@ -1699,9 +1695,6 @@ pl:
|
|||||||
follow_request: mejli o prośbach o możliwość obserwowania
|
follow_request: mejli o prośbach o możliwość obserwowania
|
||||||
mention: powiadomień mejlowych o wspomnieniach
|
mention: powiadomień mejlowych o wspomnieniach
|
||||||
reblog: powiadomień mejlowych o podbiciach
|
reblog: powiadomień mejlowych o podbiciach
|
||||||
resubscribe_html: W przypadku przypadkowego wypisania możesz zapisać się ponownie z <a href="%{settings_path}">ustawień powiadomień mejlowych</a>.
|
|
||||||
success_html: Już nie będziesz otrzymywać %{type} z Mastodona na %{domain} na adres %{email}.
|
|
||||||
title: Anuluj subskrypcję
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: Nie możesz załączyć pliku wideo do wpisu, który zawiera już zdjęcia
|
images_and_video: Nie możesz załączyć pliku wideo do wpisu, który zawiera już zdjęcia
|
||||||
|
|||||||
@ -1229,7 +1229,6 @@ pt-BR:
|
|||||||
application_mailer:
|
application_mailer:
|
||||||
notification_preferences: Alterar preferências de e-mail
|
notification_preferences: Alterar preferências de e-mail
|
||||||
salutation: "%{name},"
|
salutation: "%{name},"
|
||||||
settings: 'Alterar preferências de e-mail: %{link}'
|
|
||||||
unsubscribe: Desinscrever
|
unsubscribe: Desinscrever
|
||||||
view: 'Ver:'
|
view: 'Ver:'
|
||||||
view_profile: Ver perfil
|
view_profile: Ver perfil
|
||||||
@ -1651,9 +1650,6 @@ pt-BR:
|
|||||||
title: Histórico de autenticação
|
title: Histórico de autenticação
|
||||||
mail_subscriptions:
|
mail_subscriptions:
|
||||||
unsubscribe:
|
unsubscribe:
|
||||||
action: Sim, cancelar subscrição
|
|
||||||
complete: Desinscrito
|
|
||||||
confirmation_html: Tem certeza que deseja cancelar a assinatura de %{type} para Mastodon no %{domain} para o seu endereço de e-mail %{email}? Você sempre pode se inscrever novamente nas <a href="%{settings_path}">configurações de notificação de email</a>.
|
|
||||||
emails:
|
emails:
|
||||||
notification_emails:
|
notification_emails:
|
||||||
favourite: emails de notificação favoritos
|
favourite: emails de notificação favoritos
|
||||||
@ -1661,9 +1657,6 @@ pt-BR:
|
|||||||
follow_request: emails de seguidores pendentes
|
follow_request: emails de seguidores pendentes
|
||||||
mention: emails de notificação de menções
|
mention: emails de notificação de menções
|
||||||
reblog: emails de notificação de impulsos
|
reblog: emails de notificação de impulsos
|
||||||
resubscribe_html: Se você cancelou sua inscrição por engano, você pode se inscrever novamente em suas <a href="%{settings_path}"> configurações de notificações por e-mail</a>.
|
|
||||||
success_html: Você não mais receberá %{type} no Mastodon em %{domain} ao seu endereço de e-mail %{email}.
|
|
||||||
title: Cancelar inscrição
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: Não foi possível anexar um vídeo a uma publicação que já contém imagens
|
images_and_video: Não foi possível anexar um vídeo a uma publicação que já contém imagens
|
||||||
|
|||||||
@ -1229,7 +1229,6 @@ pt-PT:
|
|||||||
application_mailer:
|
application_mailer:
|
||||||
notification_preferences: Alterar preferências de e-mail
|
notification_preferences: Alterar preferências de e-mail
|
||||||
salutation: "%{name},"
|
salutation: "%{name},"
|
||||||
settings: 'Alterar preferências de e-mail: %{link}'
|
|
||||||
unsubscribe: Cancelar subscrição
|
unsubscribe: Cancelar subscrição
|
||||||
view: 'Ver:'
|
view: 'Ver:'
|
||||||
view_profile: Ver perfil
|
view_profile: Ver perfil
|
||||||
@ -1651,9 +1650,6 @@ pt-PT:
|
|||||||
title: Histórico de autenticação
|
title: Histórico de autenticação
|
||||||
mail_subscriptions:
|
mail_subscriptions:
|
||||||
unsubscribe:
|
unsubscribe:
|
||||||
action: Sim, cancelar subscrição
|
|
||||||
complete: Subscrição cancelada
|
|
||||||
confirmation_html: Tens a certeza que desejas cancelar a subscrição para receber %{type} pelo Mastodon em %{domain} no teu e-mail em %{email}? Podes sempre subscrever novamente nas tuas <a href="%{settings_path}">definições de notificação por e-mail</a>.
|
|
||||||
emails:
|
emails:
|
||||||
notification_emails:
|
notification_emails:
|
||||||
favourite: e-mails de notificação de favoritos
|
favourite: e-mails de notificação de favoritos
|
||||||
@ -1661,9 +1657,6 @@ pt-PT:
|
|||||||
follow_request: e-mails de pedido de seguidor
|
follow_request: e-mails de pedido de seguidor
|
||||||
mention: e-mails de notificação de menção
|
mention: e-mails de notificação de menção
|
||||||
reblog: e-mails de notificação de partilhas
|
reblog: e-mails de notificação de partilhas
|
||||||
resubscribe_html: Se tiveres anulado a subscrição por engano, podes voltar a subscrevê-la nas <a href="%{settings_path}">definições de notificação por e-mail</a>.
|
|
||||||
success_html: Não receberás novamente %{type} do Mastodon em %{domain} para o teu e-mail em %{email}.
|
|
||||||
title: Cancelar subscrição
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: Não é possível anexar um vídeo a uma publicação que já contém imagens
|
images_and_video: Não é possível anexar um vídeo a uma publicação que já contém imagens
|
||||||
|
|||||||
@ -1227,7 +1227,6 @@ ru:
|
|||||||
application_mailer:
|
application_mailer:
|
||||||
notification_preferences: Настроить оповещения по электронной почте
|
notification_preferences: Настроить оповещения по электронной почте
|
||||||
salutation: Привет, %{name}!
|
salutation: Привет, %{name}!
|
||||||
settings: 'Настроить оповещения по электронной почте можно здесь: %{link}'
|
|
||||||
unsubscribe: Отписаться
|
unsubscribe: Отписаться
|
||||||
view: 'Открыть в браузере:'
|
view: 'Открыть в браузере:'
|
||||||
view_profile: Перейти к профилю
|
view_profile: Перейти к профилю
|
||||||
@ -1675,9 +1674,6 @@ ru:
|
|||||||
title: История входов
|
title: История входов
|
||||||
mail_subscriptions:
|
mail_subscriptions:
|
||||||
unsubscribe:
|
unsubscribe:
|
||||||
action: Да, я хочу отписаться
|
|
||||||
complete: Подписка отменена
|
|
||||||
confirmation_html: Вы уверены в том, что хотите отписаться от всех %{type}, которые вы получаете на адрес %{email} для учётной записи на сервере Mastodon %{domain}? Вы всегда сможете подписаться снова в <a href="%{settings_path}">настройках уведомлений по электронной почте</a>.
|
|
||||||
emails:
|
emails:
|
||||||
notification_emails:
|
notification_emails:
|
||||||
favourite: уведомлений о добавлении ваших постов в избранное
|
favourite: уведомлений о добавлении ваших постов в избранное
|
||||||
@ -1685,9 +1681,6 @@ ru:
|
|||||||
follow_request: уведомлений о новых запросах на подписку
|
follow_request: уведомлений о новых запросах на подписку
|
||||||
mention: уведомлений о новых упоминаниях
|
mention: уведомлений о новых упоминаниях
|
||||||
reblog: уведомлений о продвижении ваших постов
|
reblog: уведомлений о продвижении ваших постов
|
||||||
resubscribe_html: Если вы отписались по ошибке и хотите подписаться снова, перейдите на страницу <a href="%{settings_path}">настройки уведомлений по электронной почте</a>.
|
|
||||||
success_html: Вы отказались от %{type}, которые вы получали на адрес %{email} для вашей учётной записи на сервере Mastodon %{domain}.
|
|
||||||
title: Отписаться
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: Нельзя добавить видео к посту с изображениями
|
images_and_video: Нельзя добавить видео к посту с изображениями
|
||||||
|
|||||||
@ -913,9 +913,6 @@ sc:
|
|||||||
authentication_methods:
|
authentication_methods:
|
||||||
password: crae
|
password: crae
|
||||||
webauthn: craes de seguresa
|
webauthn: craes de seguresa
|
||||||
mail_subscriptions:
|
|
||||||
unsubscribe:
|
|
||||||
title: Annulla sa sutiscritzione
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: Non si podet allegare unu vìdeu in una publicatzione chi cuntenet giai immàgines
|
images_and_video: Non si podet allegare unu vìdeu in una publicatzione chi cuntenet giai immàgines
|
||||||
|
|||||||
@ -134,6 +134,7 @@ en:
|
|||||||
otp: 'Enter the two-factor code generated by your phone app or use one of your recovery codes:'
|
otp: 'Enter the two-factor code generated by your phone app or use one of your recovery codes:'
|
||||||
webauthn: If it's an USB key be sure to insert it and, if necessary, tap it.
|
webauthn: If it's an USB key be sure to insert it and, if necessary, tap it.
|
||||||
settings:
|
settings:
|
||||||
|
email_subscriptions: Disabling retains existing subscribers but stops sending emails.
|
||||||
indexable: Your profile page may appear in search results on Google, Bing, and others.
|
indexable: Your profile page may appear in search results on Google, Bing, and others.
|
||||||
show_application: You will always be able to see which app published your post regardless.
|
show_application: You will always be able to see which app published your post regardless.
|
||||||
tag:
|
tag:
|
||||||
@ -356,6 +357,7 @@ en:
|
|||||||
hint: Additional information
|
hint: Additional information
|
||||||
text: Rule
|
text: Rule
|
||||||
settings:
|
settings:
|
||||||
|
email_subscriptions: Enable email sign-ups
|
||||||
indexable: Include profile page in search engines
|
indexable: Include profile page in search engines
|
||||||
show_application: Display from which app you sent a post
|
show_application: Display from which app you sent a post
|
||||||
tag:
|
tag:
|
||||||
|
|||||||
@ -1085,7 +1085,6 @@ sk:
|
|||||||
emails:
|
emails:
|
||||||
notification_emails:
|
notification_emails:
|
||||||
reblog: e-mailové upozornenia na zdieľania
|
reblog: e-mailové upozornenia na zdieľania
|
||||||
title: Ukonči odber
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: K príspevku ktorý už obsahuje obrázky nemôžeš priložiť video
|
images_and_video: K príspevku ktorý už obsahuje obrázky nemôžeš priložiť video
|
||||||
|
|||||||
@ -1227,7 +1227,6 @@ sl:
|
|||||||
application_mailer:
|
application_mailer:
|
||||||
notification_preferences: Spremenite e-poštne nastavitve
|
notification_preferences: Spremenite e-poštne nastavitve
|
||||||
salutation: "%{name},"
|
salutation: "%{name},"
|
||||||
settings: 'Spremenite e-poštne nastavitve: %{link}'
|
|
||||||
unsubscribe: Odjavi od naročnine
|
unsubscribe: Odjavi od naročnine
|
||||||
view: 'Pogled:'
|
view: 'Pogled:'
|
||||||
view_profile: Ogled profila
|
view_profile: Ogled profila
|
||||||
@ -1687,9 +1686,6 @@ sl:
|
|||||||
title: Zgodovina overjanja
|
title: Zgodovina overjanja
|
||||||
mail_subscriptions:
|
mail_subscriptions:
|
||||||
unsubscribe:
|
unsubscribe:
|
||||||
action: Da, odjavi me
|
|
||||||
complete: Odjavljeni
|
|
||||||
confirmation_html: Ali se res želite odjaviti od prejemanja %{type} za Mastodon na %{domain} na svojo e-pošto %{email}? Kadarkoli se lahko znova prijavite iz svojih <a href="%{settings_path}">nastavitev e-poštnih obvestil</a>.
|
|
||||||
emails:
|
emails:
|
||||||
notification_emails:
|
notification_emails:
|
||||||
favourite: e-sporočil z obvestili o priljubljenosti
|
favourite: e-sporočil z obvestili o priljubljenosti
|
||||||
@ -1697,9 +1693,6 @@ sl:
|
|||||||
follow_request: e-sporočil o zahtevah za sledenje
|
follow_request: e-sporočil o zahtevah za sledenje
|
||||||
mention: e-sporočil z obvestili o omembah
|
mention: e-sporočil z obvestili o omembah
|
||||||
reblog: e-sporočil z obvestili o izpostavljanju
|
reblog: e-sporočil z obvestili o izpostavljanju
|
||||||
resubscribe_html: Če ste se odjavili po pomoti, se lahko znova prijavite iz svojih <a href="%{settings_path}">nastavitev e-poštnih obvestil</a>.
|
|
||||||
success_html: Nič več ne boste prejemali %{type} za Mastodon na %{domain} na svoj e-naslov %{email}.
|
|
||||||
title: Odjavi od naročnine
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: Videoposnetka ni mogoče priložiti objavi, ki že vsebuje slike
|
images_and_video: Videoposnetka ni mogoče priložiti objavi, ki že vsebuje slike
|
||||||
|
|||||||
@ -1220,7 +1220,6 @@ sq:
|
|||||||
application_mailer:
|
application_mailer:
|
||||||
notification_preferences: Ndryshoni parapëlqime rreth email-esh
|
notification_preferences: Ndryshoni parapëlqime rreth email-esh
|
||||||
salutation: "%{name},"
|
salutation: "%{name},"
|
||||||
settings: 'Ndryshoni parapëlqime rreth email-esh: %{link}'
|
|
||||||
unsubscribe: Shpajtohuni
|
unsubscribe: Shpajtohuni
|
||||||
view: 'Parje:'
|
view: 'Parje:'
|
||||||
view_profile: Shihni profilin
|
view_profile: Shihni profilin
|
||||||
@ -1640,9 +1639,6 @@ sq:
|
|||||||
title: Historik mirëfilltësimesh
|
title: Historik mirëfilltësimesh
|
||||||
mail_subscriptions:
|
mail_subscriptions:
|
||||||
unsubscribe:
|
unsubscribe:
|
||||||
action: Po, shpajtomëni
|
|
||||||
complete: U shpajtuat
|
|
||||||
confirmation_html: Jeni i sigurt se doni të shpajtoheni nga marrje %{type} për Mastodon te %{domain} në email-in tuaj %{email}? Mundeni përherë të ripajtoheni që nga <a href="%{settings_path}">rregullimet tuaja për njoftime me email</a>.
|
|
||||||
emails:
|
emails:
|
||||||
notification_emails:
|
notification_emails:
|
||||||
favourite: email-e njoftimesh parapëlqimesh
|
favourite: email-e njoftimesh parapëlqimesh
|
||||||
@ -1650,9 +1646,6 @@ sq:
|
|||||||
follow_request: email-e kërkesash ndjekjeje
|
follow_request: email-e kërkesash ndjekjeje
|
||||||
mention: email-e njoftimesh përmendjesh
|
mention: email-e njoftimesh përmendjesh
|
||||||
reblog: email-e njoftimesh përforcimesh
|
reblog: email-e njoftimesh përforcimesh
|
||||||
resubscribe_html: Nëse u shpajtuat gabimisht, mund të ripajtoheni që nga <a href="%{settings_path}">rregullimet tuaja për njoftime me email</a>.
|
|
||||||
success_html: S’do të merrni më %{type} për Mastodon te %{domain} në email-in tuaj te %{email}.
|
|
||||||
title: Shpajtohuni
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: S’mund të bashkëngjitet video te një gjendje që përmban figura tashmë
|
images_and_video: S’mund të bashkëngjitet video te një gjendje që përmban figura tashmë
|
||||||
|
|||||||
@ -1357,11 +1357,6 @@ sr-Latn:
|
|||||||
failed_sign_in_html: Neuspešan pokušaj prijavljivanja putem %{method} sa %{ip} (%{browser})
|
failed_sign_in_html: Neuspešan pokušaj prijavljivanja putem %{method} sa %{ip} (%{browser})
|
||||||
successful_sign_in_html: Uspešan pokušaj prijavljivanja putem %{method} sa %{ip} (%{browser})
|
successful_sign_in_html: Uspešan pokušaj prijavljivanja putem %{method} sa %{ip} (%{browser})
|
||||||
title: Istorija autentifikacije
|
title: Istorija autentifikacije
|
||||||
mail_subscriptions:
|
|
||||||
unsubscribe:
|
|
||||||
action: Da, odjavi me
|
|
||||||
complete: Odjavljen
|
|
||||||
title: Odjavi se
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: Ne može da se prikači video na status koji već ima slike
|
images_and_video: Ne može da se prikači video na status koji već ima slike
|
||||||
|
|||||||
@ -1387,11 +1387,6 @@ sr:
|
|||||||
failed_sign_in_html: Неуспешан покушај пријављивања путем %{method} са %{ip} (%{browser})
|
failed_sign_in_html: Неуспешан покушај пријављивања путем %{method} са %{ip} (%{browser})
|
||||||
successful_sign_in_html: Успешан покушај пријављивања путем %{method} са %{ip} (%{browser})
|
successful_sign_in_html: Успешан покушај пријављивања путем %{method} са %{ip} (%{browser})
|
||||||
title: Историја аутентификације
|
title: Историја аутентификације
|
||||||
mail_subscriptions:
|
|
||||||
unsubscribe:
|
|
||||||
action: Да, одјави ме
|
|
||||||
complete: Одјављен
|
|
||||||
title: Одјави се
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: Не може да се прикачи видео на статус који већ има слике
|
images_and_video: Не може да се прикачи видео на статус који већ има слике
|
||||||
|
|||||||
@ -1228,7 +1228,6 @@ sv:
|
|||||||
application_mailer:
|
application_mailer:
|
||||||
notification_preferences: Ändra e-postpreferenser
|
notification_preferences: Ändra e-postpreferenser
|
||||||
salutation: "%{name},"
|
salutation: "%{name},"
|
||||||
settings: 'Ändra e-postinställningar: %{link}'
|
|
||||||
unsubscribe: Avprenumerera
|
unsubscribe: Avprenumerera
|
||||||
view: 'Granska:'
|
view: 'Granska:'
|
||||||
view_profile: Visa profil
|
view_profile: Visa profil
|
||||||
@ -1652,9 +1651,6 @@ sv:
|
|||||||
title: Autentiseringshistorik
|
title: Autentiseringshistorik
|
||||||
mail_subscriptions:
|
mail_subscriptions:
|
||||||
unsubscribe:
|
unsubscribe:
|
||||||
action: Ja, avsluta prenumerationen
|
|
||||||
complete: Prenumeration avslutad
|
|
||||||
confirmation_html: Är du säker på att du vill avregistrera dig från att ta emot %{type} för Mastodon på %{domain} med din e-post på %{email}? Du kan alltid återprenumerera bland dina <a href="%{settings_path}">e-postmeddelandeinställningar</a>.
|
|
||||||
emails:
|
emails:
|
||||||
notification_emails:
|
notification_emails:
|
||||||
favourite: aviseringsmejl för favoriserade inlägg
|
favourite: aviseringsmejl för favoriserade inlägg
|
||||||
@ -1662,9 +1658,6 @@ sv:
|
|||||||
follow_request: aviseringsmejl för följdförfrågningar
|
follow_request: aviseringsmejl för följdförfrågningar
|
||||||
mention: aviseringsmejl för inlägg där du nämns
|
mention: aviseringsmejl för inlägg där du nämns
|
||||||
reblog: aviseringsmejl för förhöjda inlägg
|
reblog: aviseringsmejl för förhöjda inlägg
|
||||||
resubscribe_html: Om du slutat prenumerera av misstag kan du återprenumerera i dina <a href="%{settings_path}">e-postaviseringsinställningar</a>.
|
|
||||||
success_html: Du får inte längre %{type} för Mastodon på %{domain} till din e-post på %{email}.
|
|
||||||
title: Avsluta prenumeration
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: Det går inte att bifoga en video till ett inlägg som redan innehåller bilder
|
images_and_video: Det går inte att bifoga en video till ett inlägg som redan innehåller bilder
|
||||||
|
|||||||
@ -1124,7 +1124,6 @@ th:
|
|||||||
application_mailer:
|
application_mailer:
|
||||||
notification_preferences: เปลี่ยนการกำหนดลักษณะอีเมล
|
notification_preferences: เปลี่ยนการกำหนดลักษณะอีเมล
|
||||||
salutation: "%{name},"
|
salutation: "%{name},"
|
||||||
settings: 'เปลี่ยนการกำหนดลักษณะอีเมล: %{link}'
|
|
||||||
unsubscribe: เลิกบอกรับ
|
unsubscribe: เลิกบอกรับ
|
||||||
view: 'ดู:'
|
view: 'ดู:'
|
||||||
view_profile: ดูโปรไฟล์
|
view_profile: ดูโปรไฟล์
|
||||||
@ -1510,9 +1509,6 @@ th:
|
|||||||
title: ประวัติการรับรองความถูกต้อง
|
title: ประวัติการรับรองความถูกต้อง
|
||||||
mail_subscriptions:
|
mail_subscriptions:
|
||||||
unsubscribe:
|
unsubscribe:
|
||||||
action: ใช่ เลิกบอกรับ
|
|
||||||
complete: เลิกบอกรับแล้ว
|
|
||||||
confirmation_html: คุณแน่ใจหรือไม่ว่าต้องการเลิกบอกรับจากการรับ %{type} สำหรับ Mastodon ใน %{domain} ไปยังอีเมลของคุณที่ %{email}? คุณสามารถบอกรับใหม่ได้เสมอจาก <a href="%{settings_path}">การตั้งค่าการแจ้งเตือนอีเมล</a> ของคุณ
|
|
||||||
emails:
|
emails:
|
||||||
notification_emails:
|
notification_emails:
|
||||||
favourite: อีเมลการแจ้งเตือนการชื่นชอบ
|
favourite: อีเมลการแจ้งเตือนการชื่นชอบ
|
||||||
@ -1520,9 +1516,6 @@ th:
|
|||||||
follow_request: อีเมลคำขอติดตาม
|
follow_request: อีเมลคำขอติดตาม
|
||||||
mention: อีเมลการแจ้งเตือนการกล่าวถึง
|
mention: อีเมลการแจ้งเตือนการกล่าวถึง
|
||||||
reblog: อีเมลการแจ้งเตือนการดัน
|
reblog: อีเมลการแจ้งเตือนการดัน
|
||||||
resubscribe_html: หากคุณได้เลิกบอกรับโดยไม่ได้ตั้งใจ คุณสามารถบอกรับใหม่ได้จาก <a href="%{settings_path}">การตั้งค่าการแจ้งเตือนอีเมล</a> ของคุณ
|
|
||||||
success_html: คุณจะไม่ได้รับ %{type} สำหรับ Mastodon ใน %{domain} ไปยังอีเมลของคุณที่ %{email} อีกต่อไป
|
|
||||||
title: เลิกบอกรับ
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: ไม่สามารถแนบวิดีโอกับโพสต์ที่มีภาพอยู่แล้ว
|
images_and_video: ไม่สามารถแนบวิดีโอกับโพสต์ที่มีภาพอยู่แล้ว
|
||||||
|
|||||||
@ -1231,7 +1231,6 @@ tr:
|
|||||||
application_mailer:
|
application_mailer:
|
||||||
notification_preferences: E-posta tercihlerini değiştir
|
notification_preferences: E-posta tercihlerini değiştir
|
||||||
salutation: "%{name},"
|
salutation: "%{name},"
|
||||||
settings: 'E-posta tercihlerini değiştir: %{link}'
|
|
||||||
unsubscribe: Abonelikten çık
|
unsubscribe: Abonelikten çık
|
||||||
view: 'Görüntüle:'
|
view: 'Görüntüle:'
|
||||||
view_profile: Profili görüntüle
|
view_profile: Profili görüntüle
|
||||||
@ -1655,9 +1654,6 @@ tr:
|
|||||||
title: Kimlik doğrulama geçmişi
|
title: Kimlik doğrulama geçmişi
|
||||||
mail_subscriptions:
|
mail_subscriptions:
|
||||||
unsubscribe:
|
unsubscribe:
|
||||||
action: Evet, abonelikten çık
|
|
||||||
complete: Abonelikten çık
|
|
||||||
confirmation_html: '%{domain} üzerindeki Mastodon için %{type} almayı durdurarak %{email} adresinize aboneliğinizi iptal etmek istediğinizden emin misiniz? <a href="%{settings_path}">e-posta bildirim ayarlarınızdan</a> her zaman yeniden abone olabilirsiniz.'
|
|
||||||
emails:
|
emails:
|
||||||
notification_emails:
|
notification_emails:
|
||||||
favourite: favori bildirim e-postaları
|
favourite: favori bildirim e-postaları
|
||||||
@ -1665,9 +1661,6 @@ tr:
|
|||||||
follow_request: takip isteği bildirim e-postaları
|
follow_request: takip isteği bildirim e-postaları
|
||||||
mention: bahsetme bildirim e-postaları
|
mention: bahsetme bildirim e-postaları
|
||||||
reblog: öne çıkanlar bildirim e-postaları
|
reblog: öne çıkanlar bildirim e-postaları
|
||||||
resubscribe_html: Abonelikten yanlışlıkla çıktıysanız, <a href="%{settings_path}">e-posta bildirim ayarlarınızdan</a> yeniden abone olabilirsiniz.
|
|
||||||
success_html: Artık %{email} adresindeki e-postanıza %{domain} üzerindeki Mastodon için %{type} almayacaksınız.
|
|
||||||
title: Abonelikten çık
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: Zaten resim içeren bir duruma video eklenemez
|
images_and_video: Zaten resim içeren bir duruma video eklenemez
|
||||||
|
|||||||
@ -1180,7 +1180,6 @@ uk:
|
|||||||
application_mailer:
|
application_mailer:
|
||||||
notification_preferences: Змінити налаштування електронної пошти
|
notification_preferences: Змінити налаштування електронної пошти
|
||||||
salutation: "%{name},"
|
salutation: "%{name},"
|
||||||
settings: 'Змінити налаштування електронної пошти: %{link}'
|
|
||||||
unsubscribe: Відписатися
|
unsubscribe: Відписатися
|
||||||
view: 'Перегляд:'
|
view: 'Перегляд:'
|
||||||
view_profile: Показати профіль
|
view_profile: Показати профіль
|
||||||
@ -1572,9 +1571,6 @@ uk:
|
|||||||
title: Історія входів
|
title: Історія входів
|
||||||
mail_subscriptions:
|
mail_subscriptions:
|
||||||
unsubscribe:
|
unsubscribe:
|
||||||
action: Так, відписатися
|
|
||||||
complete: Відписалися
|
|
||||||
confirmation_html: Ви впевнені, що хочете відписатися від отримання %{type} для Mastodon на %{domain} до своєї скриньки %{email}? Ви можете повторно підписатися у <a href="%{settings_path}">налаштуваннях сповіщень електронною поштою</a>.
|
|
||||||
emails:
|
emails:
|
||||||
notification_emails:
|
notification_emails:
|
||||||
favourite: отримувати сповіщення про вподобання електронною поштою
|
favourite: отримувати сповіщення про вподобання електронною поштою
|
||||||
@ -1582,9 +1578,6 @@ uk:
|
|||||||
follow_request: отримувати сповіщення про запити на стеження електронною поштою
|
follow_request: отримувати сповіщення про запити на стеження електронною поштою
|
||||||
mention: отримувати сповіщення про згадки електронною поштою
|
mention: отримувати сповіщення про згадки електронною поштою
|
||||||
reblog: отримувати сповіщення про поширення електронною поштою
|
reblog: отримувати сповіщення про поширення електронною поштою
|
||||||
resubscribe_html: Якщо ви відписалися помилково, ви можете повторно підписатися в <a href="%{settings_path}">налаштуваннях сповіщень електронною поштою</a>.
|
|
||||||
success_html: Ви більше не отримуватимете %{type} для Mastodon %{domain} на адресу %{email}.
|
|
||||||
title: Відписатися
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: Не можна додати відео до допису з зображеннями
|
images_and_video: Не можна додати відео до допису з зображеннями
|
||||||
|
|||||||
@ -1210,7 +1210,6 @@ vi:
|
|||||||
application_mailer:
|
application_mailer:
|
||||||
notification_preferences: Thay đổi thiết lập email
|
notification_preferences: Thay đổi thiết lập email
|
||||||
salutation: "%{name},"
|
salutation: "%{name},"
|
||||||
settings: 'Thay đổi thiết lập email: %{link}'
|
|
||||||
unsubscribe: Hủy đăng ký
|
unsubscribe: Hủy đăng ký
|
||||||
view: 'Chi tiết:'
|
view: 'Chi tiết:'
|
||||||
view_profile: Xem trang hồ sơ
|
view_profile: Xem trang hồ sơ
|
||||||
@ -1614,9 +1613,6 @@ vi:
|
|||||||
title: Lịch sử đăng nhập
|
title: Lịch sử đăng nhập
|
||||||
mail_subscriptions:
|
mail_subscriptions:
|
||||||
unsubscribe:
|
unsubscribe:
|
||||||
action: Đúng, hủy đăng ký
|
|
||||||
complete: Đã hủy đăng ký
|
|
||||||
confirmation_html: Bạn có chắc muốn hủy đăng ký %{type} Mastodon trên %{domain} tới %{email}? Bạn có thể đăng ký lại từ <a href="%{settings_path}">cài đặt thông báo email</a>.
|
|
||||||
emails:
|
emails:
|
||||||
notification_emails:
|
notification_emails:
|
||||||
favourite: email thông báo lượt thích
|
favourite: email thông báo lượt thích
|
||||||
@ -1624,9 +1620,6 @@ vi:
|
|||||||
follow_request: email thông báo yêu cầu theo dõi
|
follow_request: email thông báo yêu cầu theo dõi
|
||||||
mention: email thông báo lượt nhắc đến
|
mention: email thông báo lượt nhắc đến
|
||||||
reblog: email thông báo lượt đăng lại
|
reblog: email thông báo lượt đăng lại
|
||||||
resubscribe_html: Nếu đổi ý, bạn có thể đăng ký lại từ <a href="%{settings_path}">cài đặt thông báo email</a>.
|
|
||||||
success_html: Bạn sẽ không còn nhận %{type} Mastodon trên %{domain} tới %{email}.
|
|
||||||
title: Hủy đăng ký
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: Không thể đính kèm video vào tút đã chứa hình ảnh
|
images_and_video: Không thể đính kèm video vào tút đã chứa hình ảnh
|
||||||
|
|||||||
@ -1210,7 +1210,6 @@ zh-CN:
|
|||||||
application_mailer:
|
application_mailer:
|
||||||
notification_preferences: 更改邮件偏好
|
notification_preferences: 更改邮件偏好
|
||||||
salutation: "%{name}:"
|
salutation: "%{name}:"
|
||||||
settings: 更改邮件偏好: %{link}
|
|
||||||
unsubscribe: 取消订阅
|
unsubscribe: 取消订阅
|
||||||
view: 点此链接查看详情:
|
view: 点此链接查看详情:
|
||||||
view_profile: 查看个人资料
|
view_profile: 查看个人资料
|
||||||
@ -1614,9 +1613,6 @@ zh-CN:
|
|||||||
title: 认证历史
|
title: 认证历史
|
||||||
mail_subscriptions:
|
mail_subscriptions:
|
||||||
unsubscribe:
|
unsubscribe:
|
||||||
action: 是,取消订阅
|
|
||||||
complete: 已取消订阅
|
|
||||||
confirmation_html: 你确定要退订来自 %{domain} 上的 Mastodon 的 %{type} 到你的邮箱 %{email} 吗?你可以随时在<a href="%{settings_path}">邮件通知设置</a>中重新订阅。
|
|
||||||
emails:
|
emails:
|
||||||
notification_emails:
|
notification_emails:
|
||||||
favourite: 嘟文被喜欢邮件通知
|
favourite: 嘟文被喜欢邮件通知
|
||||||
@ -1624,9 +1620,6 @@ zh-CN:
|
|||||||
follow_request: 关注请求邮件通知
|
follow_request: 关注请求邮件通知
|
||||||
mention: 账号被提及邮件通知
|
mention: 账号被提及邮件通知
|
||||||
reblog: 嘟文被转嘟邮件通知
|
reblog: 嘟文被转嘟邮件通知
|
||||||
resubscribe_html: 如果你不小心取消了订阅,可以在你的<a href="%{settings_path}">邮件通知设置</a>中重新订阅。
|
|
||||||
success_html: 你将不会在你的邮箱 %{email} 中收到 %{domain} 上的 Mastodon的 %{type}
|
|
||||||
title: 取消订阅
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: 无法在嘟文中同时插入视频和图片
|
images_and_video: 无法在嘟文中同时插入视频和图片
|
||||||
|
|||||||
@ -1341,11 +1341,6 @@ zh-HK:
|
|||||||
failed_sign_in_html: 以 %{method} 從 %{ip} (%{browser}) 登入失敗
|
failed_sign_in_html: 以 %{method} 從 %{ip} (%{browser}) 登入失敗
|
||||||
successful_sign_in_html: 以 %{method} 從 %{ip} (%{browser}) 成功登入
|
successful_sign_in_html: 以 %{method} 從 %{ip} (%{browser}) 成功登入
|
||||||
title: 驗證操作歷史
|
title: 驗證操作歷史
|
||||||
mail_subscriptions:
|
|
||||||
unsubscribe:
|
|
||||||
action: 沒錯,取消訂閱
|
|
||||||
complete: 已取消訂閱
|
|
||||||
title: 取消訂閱
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: 不能在已有圖片的文章上加入影片
|
images_and_video: 不能在已有圖片的文章上加入影片
|
||||||
|
|||||||
@ -1212,7 +1212,6 @@ zh-TW:
|
|||||||
application_mailer:
|
application_mailer:
|
||||||
notification_preferences: 變更電子郵件設定
|
notification_preferences: 變更電子郵件設定
|
||||||
salutation: "%{name}、"
|
salutation: "%{name}、"
|
||||||
settings: 變更電子郵件設定︰%{link}
|
|
||||||
unsubscribe: 取消訂閱
|
unsubscribe: 取消訂閱
|
||||||
view: 進入瀏覽:
|
view: 進入瀏覽:
|
||||||
view_profile: 檢視個人檔案
|
view_profile: 檢視個人檔案
|
||||||
@ -1616,9 +1615,6 @@ zh-TW:
|
|||||||
title: 認證歷史紀錄
|
title: 認證歷史紀錄
|
||||||
mail_subscriptions:
|
mail_subscriptions:
|
||||||
unsubscribe:
|
unsubscribe:
|
||||||
action: 是的,取消訂閱
|
|
||||||
complete: 取消訂閱
|
|
||||||
confirmation_html: 您確定要取要取消訂閱自 Mastodon 上 %{domain} 之 %{type} 至您電子郵件 %{email} 嗎?您隨時可以自<a href="%{settings_path}">電子郵件通知設定</a>重新訂閱。
|
|
||||||
emails:
|
emails:
|
||||||
notification_emails:
|
notification_emails:
|
||||||
favourite: 最愛通知電子郵件
|
favourite: 最愛通知電子郵件
|
||||||
@ -1626,9 +1622,6 @@ zh-TW:
|
|||||||
follow_request: 跟隨請求通知電子郵件
|
follow_request: 跟隨請求通知電子郵件
|
||||||
mention: 提及通知電子郵件
|
mention: 提及通知電子郵件
|
||||||
reblog: 轉嘟通知電子郵件
|
reblog: 轉嘟通知電子郵件
|
||||||
resubscribe_html: 若您不慎錯誤地取消訂閱,您可以自<a href="%{settings_path}">電子郵件通知設定</a>重新訂閱。
|
|
||||||
success_html: 您將不再收到來自 Mastodon 上 %{domain} 之 %{type} 至您電子郵件 %{email}。
|
|
||||||
title: 取消訂閱
|
|
||||||
media_attachments:
|
media_attachments:
|
||||||
validations:
|
validations:
|
||||||
images_and_video: 無法於已有圖片之嘟文中加入影片
|
images_and_video: 無法於已有圖片之嘟文中加入影片
|
||||||
|
|||||||
@ -71,7 +71,7 @@ Rails.application.routes.draw do
|
|||||||
devise_scope :user do
|
devise_scope :user do
|
||||||
get '/invite/:invite_code', to: 'auth/registrations#new', as: :public_invite
|
get '/invite/:invite_code', to: 'auth/registrations#new', as: :public_invite
|
||||||
|
|
||||||
resource :unsubscribe, only: [:show, :create], controller: :mail_subscriptions
|
resource :unsubscribe, only: [:show, :create], controller: :unsubscriptions
|
||||||
|
|
||||||
namespace :auth do
|
namespace :auth do
|
||||||
resource :setup, only: [:show, :update], controller: :setup
|
resource :setup, only: [:show, :update], controller: :setup
|
||||||
@ -188,6 +188,10 @@ Rails.application.routes.draw do
|
|||||||
resources :statuses, only: :show
|
resources :statuses, only: :show
|
||||||
end
|
end
|
||||||
|
|
||||||
|
namespace :email_subscriptions do
|
||||||
|
resource :confirmation, only: :show
|
||||||
|
end
|
||||||
|
|
||||||
resources :media, only: [:show] do
|
resources :media, only: [:show] do
|
||||||
get :player
|
get :player
|
||||||
end
|
end
|
||||||
|
|||||||
@ -221,6 +221,7 @@ namespace :api, format: false do
|
|||||||
resources :identity_proofs, only: :index
|
resources :identity_proofs, only: :index
|
||||||
resources :featured_tags, only: :index
|
resources :featured_tags, only: :index
|
||||||
resources :endorsements, only: :index
|
resources :endorsements, only: :index
|
||||||
|
resources :email_subscriptions, only: :create
|
||||||
end
|
end
|
||||||
|
|
||||||
member do
|
member do
|
||||||
|
|||||||
17
db/migrate/20260311212130_create_email_subscriptions.rb
Normal file
17
db/migrate/20260311212130_create_email_subscriptions.rb
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
class CreateEmailSubscriptions < ActiveRecord::Migration[8.1]
|
||||||
|
def change
|
||||||
|
create_table :email_subscriptions do |t|
|
||||||
|
t.references :account, null: false, foreign_key: { on_delete: :cascade }
|
||||||
|
t.string :email, null: false
|
||||||
|
t.string :locale, null: false
|
||||||
|
t.string :confirmation_token, index: { unique: true, where: 'confirmation_token is not null' }
|
||||||
|
t.datetime :confirmed_at
|
||||||
|
|
||||||
|
t.timestamps
|
||||||
|
end
|
||||||
|
|
||||||
|
add_index :email_subscriptions, [:account_id, :email], unique: true
|
||||||
|
end
|
||||||
|
end
|
||||||
14
db/schema.rb
14
db/schema.rb
@ -504,6 +504,19 @@ ActiveRecord::Schema[8.1].define(version: 2026_03_23_105645) do
|
|||||||
t.index ["domain"], name: "index_email_domain_blocks_on_domain", unique: true
|
t.index ["domain"], name: "index_email_domain_blocks_on_domain", unique: true
|
||||||
end
|
end
|
||||||
|
|
||||||
|
create_table "email_subscriptions", force: :cascade do |t|
|
||||||
|
t.bigint "account_id", null: false
|
||||||
|
t.string "confirmation_token"
|
||||||
|
t.datetime "confirmed_at"
|
||||||
|
t.datetime "created_at", null: false
|
||||||
|
t.string "email", null: false
|
||||||
|
t.string "locale", null: false
|
||||||
|
t.datetime "updated_at", null: false
|
||||||
|
t.index ["account_id", "email"], name: "index_email_subscriptions_on_account_id_and_email", unique: true
|
||||||
|
t.index ["account_id"], name: "index_email_subscriptions_on_account_id"
|
||||||
|
t.index ["confirmation_token"], name: "index_email_subscriptions_on_confirmation_token", unique: true, where: "(confirmation_token IS NOT NULL)"
|
||||||
|
end
|
||||||
|
|
||||||
create_table "fasp_backfill_requests", force: :cascade do |t|
|
create_table "fasp_backfill_requests", force: :cascade do |t|
|
||||||
t.string "category", null: false
|
t.string "category", null: false
|
||||||
t.datetime "created_at", null: false
|
t.datetime "created_at", null: false
|
||||||
@ -1486,6 +1499,7 @@ ActiveRecord::Schema[8.1].define(version: 2026_03_23_105645) do
|
|||||||
add_foreign_key "custom_filter_statuses", "statuses", on_delete: :cascade
|
add_foreign_key "custom_filter_statuses", "statuses", on_delete: :cascade
|
||||||
add_foreign_key "custom_filters", "accounts", on_delete: :cascade
|
add_foreign_key "custom_filters", "accounts", on_delete: :cascade
|
||||||
add_foreign_key "email_domain_blocks", "email_domain_blocks", column: "parent_id", on_delete: :cascade
|
add_foreign_key "email_domain_blocks", "email_domain_blocks", column: "parent_id", on_delete: :cascade
|
||||||
|
add_foreign_key "email_subscriptions", "accounts", on_delete: :cascade
|
||||||
add_foreign_key "fasp_backfill_requests", "fasp_providers"
|
add_foreign_key "fasp_backfill_requests", "fasp_providers"
|
||||||
add_foreign_key "fasp_debug_callbacks", "fasp_providers"
|
add_foreign_key "fasp_debug_callbacks", "fasp_providers"
|
||||||
add_foreign_key "fasp_follow_recommendations", "accounts", column: "recommended_account_id"
|
add_foreign_key "fasp_follow_recommendations", "accounts", column: "recommended_account_id"
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user