Merge pull request #2380 from ClearlyClaire/glitch-soc/merge-upstream
Merge upstream changes up to 1cb978bcc3
main
commit
8eb09466aa
|
@ -532,7 +532,7 @@ GEM
|
|||
premailer (~> 1.7, >= 1.7.9)
|
||||
private_address_check (0.5.0)
|
||||
public_suffix (5.0.3)
|
||||
puma (6.3.0)
|
||||
puma (6.3.1)
|
||||
nio4r (~> 2.0)
|
||||
pundit (2.3.0)
|
||||
activesupport (>= 3.0.0)
|
||||
|
|
|
@ -0,0 +1,27 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
class Settings::PrivacyController < Settings::BaseController
|
||||
before_action :set_account
|
||||
|
||||
def show; end
|
||||
|
||||
def update
|
||||
if UpdateAccountService.new.call(@account, account_params.except(:settings))
|
||||
current_user.update!(settings_attributes: account_params[:settings])
|
||||
ActivityPub::UpdateDistributionWorker.perform_async(@account.id)
|
||||
redirect_to settings_privacy_path, notice: I18n.t('generic.changes_saved_msg')
|
||||
else
|
||||
render :show
|
||||
end
|
||||
end
|
||||
|
||||
private
|
||||
|
||||
def account_params
|
||||
params.require(:account).permit(:discoverable, :unlocked, :show_collections, settings: UserSettings.keys)
|
||||
end
|
||||
|
||||
def set_account
|
||||
@account = current_account
|
||||
end
|
||||
end
|
|
@ -20,7 +20,7 @@ class Settings::ProfilesController < Settings::BaseController
|
|||
private
|
||||
|
||||
def account_params
|
||||
params.require(:account).permit(:display_name, :note, :avatar, :header, :locked, :bot, :discoverable, :hide_collections, fields_attributes: [:name, :value])
|
||||
params.require(:account).permit(:display_name, :note, :avatar, :header, :bot, fields_attributes: [:name, :value])
|
||||
end
|
||||
|
||||
def set_account
|
||||
|
|
|
@ -21,6 +21,7 @@ module ContextHelper
|
|||
focal_point: { 'toot' => 'http://joinmastodon.org/ns#', 'focalPoint' => { '@container' => '@list', '@id' => 'toot:focalPoint' } },
|
||||
blurhash: { 'toot' => 'http://joinmastodon.org/ns#', 'blurhash' => 'toot:blurhash' },
|
||||
discoverable: { 'toot' => 'http://joinmastodon.org/ns#', 'discoverable' => 'toot:discoverable' },
|
||||
indexable: { 'toot' => 'http://joinmastodon.org/ns#', 'indexable' => 'toot:indexable' },
|
||||
voters_count: { 'toot' => 'http://joinmastodon.org/ns#', 'votersCount' => 'toot:votersCount' },
|
||||
olm: {
|
||||
'toot' => 'http://joinmastodon.org/ns#', 'Device' => 'toot:Device', 'Ed25519Signature' => 'toot:Ed25519Signature', 'Ed25519Key' => 'toot:Ed25519Key', 'Curve25519Key' => 'toot:Curve25519Key', 'EncryptedMessage' => 'toot:EncryptedMessage', 'publicKeyBase64' => 'toot:publicKeyBase64', 'deviceId' => 'toot:deviceId',
|
||||
|
|
|
@ -8,6 +8,7 @@ import classNames from 'classnames';
|
|||
import api from 'flavours/glitch/api';
|
||||
|
||||
const messages = defineMessages({
|
||||
legal: { id: 'report.categories.legal', defaultMessage: 'Legal' },
|
||||
other: { id: 'report.categories.other', defaultMessage: 'Other' },
|
||||
spam: { id: 'report.categories.spam', defaultMessage: 'Spam' },
|
||||
violation: { id: 'report.categories.violation', defaultMessage: 'Content violates one or more server rules' },
|
||||
|
@ -150,6 +151,7 @@ class ReportReasonSelector extends PureComponent {
|
|||
return (
|
||||
<div className='report-reason-selector'>
|
||||
<Category id='other' text={intl.formatMessage(messages.other)} selected={category === 'other'} onSelect={this.handleSelect} disabled={disabled} />
|
||||
<Category id='legal' text={intl.formatMessage(messages.legal)} selected={category === 'legal'} onSelect={this.handleSelect} disabled={disabled} />
|
||||
<Category id='spam' text={intl.formatMessage(messages.spam)} selected={category === 'spam'} onSelect={this.handleSelect} disabled={disabled} />
|
||||
<Category id='violation' text={intl.formatMessage(messages.violation)} selected={category === 'violation'} onSelect={this.handleSelect} disabled={disabled}>
|
||||
{rules.map(rule => <Rule key={rule.id} id={rule.id} text={rule.text} selected={rule_ids.includes(rule.id)} onToggle={this.handleToggle} disabled={disabled} />)}
|
||||
|
|
|
@ -196,9 +196,9 @@ class Header extends ImmutablePureComponent {
|
|||
if (signedIn && !account.get('relationship')) { // Wait until the relationship is loaded
|
||||
actionBtn = '';
|
||||
} else if (account.getIn(['relationship', 'requested'])) {
|
||||
actionBtn = <Button className={classNames({ 'button--with-bell': bellBtn !== '' })} text={intl.formatMessage(messages.cancel_follow_request)} title={intl.formatMessage(messages.requested)} onClick={this.props.onFollow} />;
|
||||
actionBtn = <Button text={intl.formatMessage(messages.cancel_follow_request)} title={intl.formatMessage(messages.requested)} onClick={this.props.onFollow} />;
|
||||
} else if (!account.getIn(['relationship', 'blocking'])) {
|
||||
actionBtn = <Button className={classNames({ 'button--destructive': account.getIn(['relationship', 'following']), 'button--with-bell': bellBtn !== '' })} text={intl.formatMessage(account.getIn(['relationship', 'following']) ? messages.unfollow : messages.follow)} onClick={signedIn ? this.props.onFollow : this.props.onInteractionModal} />;
|
||||
actionBtn = <Button className={classNames({ 'button--destructive': account.getIn(['relationship', 'following']) })} text={intl.formatMessage(account.getIn(['relationship', 'following']) ? messages.unfollow : messages.follow)} onClick={signedIn ? this.props.onFollow : this.props.onInteractionModal} />;
|
||||
} else if (account.getIn(['relationship', 'blocking'])) {
|
||||
actionBtn = <Button text={intl.formatMessage(messages.unblock, { name: account.get('username') })} onClick={this.props.onBlock} />;
|
||||
}
|
||||
|
|
|
@ -147,10 +147,6 @@
|
|||
display: block;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.layout-multiple-columns &.button--with-bell {
|
||||
font-size: 12px;
|
||||
}
|
||||
}
|
||||
|
||||
.icon-button {
|
||||
|
|
|
@ -8,6 +8,7 @@ import classNames from 'classnames';
|
|||
import api from 'mastodon/api';
|
||||
|
||||
const messages = defineMessages({
|
||||
legal: { id: 'report.categories.legal', defaultMessage: 'Legal' },
|
||||
other: { id: 'report.categories.other', defaultMessage: 'Other' },
|
||||
spam: { id: 'report.categories.spam', defaultMessage: 'Spam' },
|
||||
violation: { id: 'report.categories.violation', defaultMessage: 'Content violates one or more server rules' },
|
||||
|
@ -150,6 +151,7 @@ class ReportReasonSelector extends PureComponent {
|
|||
return (
|
||||
<div className='report-reason-selector'>
|
||||
<Category id='other' text={intl.formatMessage(messages.other)} selected={category === 'other'} onSelect={this.handleSelect} disabled={disabled} />
|
||||
<Category id='legal' text={intl.formatMessage(messages.legal)} selected={category === 'legal'} onSelect={this.handleSelect} disabled={disabled} />
|
||||
<Category id='spam' text={intl.formatMessage(messages.spam)} selected={category === 'spam'} onSelect={this.handleSelect} disabled={disabled} />
|
||||
<Category id='violation' text={intl.formatMessage(messages.violation)} selected={category === 'violation'} onSelect={this.handleSelect} disabled={disabled}>
|
||||
{rules.map(rule => <Rule key={rule.id} id={rule.id} text={rule.text} selected={rule_ids.includes(rule.id)} onToggle={this.handleToggle} disabled={disabled} />)}
|
||||
|
|
|
@ -0,0 +1,50 @@
|
|||
import PropTypes from 'prop-types';
|
||||
import { useMemo, useState, useCallback } from 'react';
|
||||
|
||||
import { FormattedMessage } from 'react-intl';
|
||||
|
||||
import { Link } from 'react-router-dom';
|
||||
|
||||
import ImmutablePropTypes from 'react-immutable-proptypes';
|
||||
|
||||
const domParser = new DOMParser();
|
||||
|
||||
// About two lines on desktop
|
||||
const VISIBLE_HASHTAGS = 7;
|
||||
|
||||
export const HashtagBar = ({ hashtags, text }) => {
|
||||
const renderedHashtags = useMemo(() => {
|
||||
const body = domParser.parseFromString(text, 'text/html').documentElement;
|
||||
return [].filter.call(body.querySelectorAll('a[href]'), link => link.textContent[0] === '#' || (link.previousSibling?.textContent?.[link.previousSibling.textContent.length - 1] === '#')).map(node => node.textContent);
|
||||
}, [text]);
|
||||
|
||||
const invisibleHashtags = useMemo(() => (
|
||||
hashtags.filter(hashtag => !renderedHashtags.some(textContent => textContent.localeCompare(`#${hashtag.get('name')}`, undefined, { sensitivity: 'accent' }) === 0 || textContent.localeCompare(hashtag.get('name'), undefined, { sensitivity: 'accent' }) === 0))
|
||||
), [hashtags, renderedHashtags]);
|
||||
|
||||
const [expanded, setExpanded] = useState(false);
|
||||
const handleClick = useCallback(() => setExpanded(true), []);
|
||||
|
||||
if (invisibleHashtags.isEmpty()) {
|
||||
return null;
|
||||
}
|
||||
|
||||
const revealedHashtags = expanded ? invisibleHashtags : invisibleHashtags.take(VISIBLE_HASHTAGS);
|
||||
|
||||
return (
|
||||
<div className='hashtag-bar'>
|
||||
{revealedHashtags.map(hashtag => (
|
||||
<Link key={hashtag.get('name')} to={`/tags/${hashtag.get('name')}`}>
|
||||
#{hashtag.get('name')}
|
||||
</Link>
|
||||
))}
|
||||
|
||||
{!expanded && invisibleHashtags.size > VISIBLE_HASHTAGS && <button className='link-button' onClick={handleClick}><FormattedMessage id='hashtags.and_other' defaultMessage='…and {count, plural, other {# more}}' values={{ count: invisibleHashtags.size - VISIBLE_HASHTAGS }} /></button>}
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
HashtagBar.propTypes = {
|
||||
hashtags: ImmutablePropTypes.list,
|
||||
text: PropTypes.string,
|
||||
};
|
|
@ -22,6 +22,7 @@ import { displayMedia } from '../initial_state';
|
|||
import { Avatar } from './avatar';
|
||||
import { AvatarOverlay } from './avatar_overlay';
|
||||
import { DisplayName } from './display_name';
|
||||
import { HashtagBar } from './hashtag_bar';
|
||||
import { RelativeTimestamp } from './relative_timestamp';
|
||||
import StatusActionBar from './status_action_bar';
|
||||
import StatusContent from './status_content';
|
||||
|
@ -580,6 +581,8 @@ class Status extends ImmutablePureComponent {
|
|||
|
||||
{media}
|
||||
|
||||
<HashtagBar hashtags={status.get('tags')} text={status.get('content')} />
|
||||
|
||||
<StatusActionBar scrollKey={scrollKey} status={status} account={account} onFilter={matchedFilters ? this.handleFilterClick : null} {...other} />
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -265,9 +265,9 @@ class Header extends ImmutablePureComponent {
|
|||
if (signedIn && !account.get('relationship')) { // Wait until the relationship is loaded
|
||||
actionBtn = '';
|
||||
} else if (account.getIn(['relationship', 'requested'])) {
|
||||
actionBtn = <Button className={classNames({ 'button--with-bell': bellBtn !== '' })} text={intl.formatMessage(messages.cancel_follow_request)} title={intl.formatMessage(messages.requested)} onClick={this.props.onFollow} />;
|
||||
actionBtn = <Button text={intl.formatMessage(messages.cancel_follow_request)} title={intl.formatMessage(messages.requested)} onClick={this.props.onFollow} />;
|
||||
} else if (!account.getIn(['relationship', 'blocking'])) {
|
||||
actionBtn = <Button disabled={account.getIn(['relationship', 'blocked_by'])} className={classNames({ 'button--destructive': account.getIn(['relationship', 'following']), 'button--with-bell': bellBtn !== '' })} text={intl.formatMessage(account.getIn(['relationship', 'following']) ? messages.unfollow : messages.follow)} onClick={signedIn ? this.props.onFollow : this.props.onInteractionModal} />;
|
||||
actionBtn = <Button disabled={account.getIn(['relationship', 'blocked_by'])} className={classNames({ 'button--destructive': account.getIn(['relationship', 'following']) })} text={intl.formatMessage(account.getIn(['relationship', 'following']) ? messages.unfollow : messages.follow)} onClick={signedIn ? this.props.onFollow : this.props.onInteractionModal} />;
|
||||
} else if (account.getIn(['relationship', 'blocking'])) {
|
||||
actionBtn = <Button text={intl.formatMessage(messages.unblock, { name: account.get('username') })} onClick={this.props.onBlock} />;
|
||||
}
|
||||
|
|
|
@ -10,6 +10,7 @@ import ImmutablePureComponent from 'react-immutable-pure-component';
|
|||
|
||||
import { AnimatedNumber } from 'mastodon/components/animated_number';
|
||||
import EditedTimestamp from 'mastodon/components/edited_timestamp';
|
||||
import { HashtagBar } from 'mastodon/components/hashtag_bar';
|
||||
import { Icon } from 'mastodon/components/icon';
|
||||
import PictureInPicturePlaceholder from 'mastodon/components/picture_in_picture_placeholder';
|
||||
|
||||
|
@ -314,6 +315,8 @@ class DetailedStatus extends ImmutablePureComponent {
|
|||
|
||||
{media}
|
||||
|
||||
<HashtagBar hashtags={status.get('tags')} text={status.get('content')} />
|
||||
|
||||
<div className='detailed-status__meta'>
|
||||
<a className='detailed-status__datetime' href={`/@${status.getIn(['account', 'acct'])}/${status.get('id')}`} target='_blank' rel='noopener noreferrer'>
|
||||
<FormattedDate value={new Date(status.get('created_at'))} hour12={false} year='numeric' month='short' day='2-digit' hour='2-digit' minute='2-digit' />
|
||||
|
|
|
@ -300,6 +300,7 @@
|
|||
"hashtag.counter_by_uses_today": "{count, plural, one {{counter} post} other {{counter} posts}} today",
|
||||
"hashtag.follow": "Follow hashtag",
|
||||
"hashtag.unfollow": "Unfollow hashtag",
|
||||
"hashtags.and_other": "…and {count, plural, other {# more}}",
|
||||
"home.actions.go_to_explore": "See what's trending",
|
||||
"home.actions.go_to_suggestions": "Find people to follow",
|
||||
"home.column_settings.basic": "Basic",
|
||||
|
@ -532,6 +533,7 @@
|
|||
"reply_indicator.cancel": "Cancel",
|
||||
"report.block": "Block",
|
||||
"report.block_explanation": "You will not see their posts. They will not be able to see your posts or follow you. They will be able to tell that they are blocked.",
|
||||
"report.categories.legal": "Legal",
|
||||
"report.categories.other": "Other",
|
||||
"report.categories.spam": "Spam",
|
||||
"report.categories.violation": "Content violates one or more server rules",
|
||||
|
|
|
@ -170,11 +170,6 @@
|
|||
display: block;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.layout-multiple-columns &.button--with-bell {
|
||||
font-size: 12px;
|
||||
padding: 0 8px;
|
||||
}
|
||||
}
|
||||
|
||||
.column__wrapper {
|
||||
|
@ -1116,7 +1111,8 @@ body > [data-popper-placement] {
|
|||
.audio-player,
|
||||
.attachment-list,
|
||||
.picture-in-picture-placeholder,
|
||||
.status-card {
|
||||
.status-card,
|
||||
.hashtag-bar {
|
||||
margin-inline-start: $thread-margin;
|
||||
width: calc(100% - ($thread-margin));
|
||||
}
|
||||
|
@ -9261,3 +9257,26 @@ noscript {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
.hashtag-bar {
|
||||
margin-top: 16px;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
font-size: 14px;
|
||||
gap: 4px;
|
||||
|
||||
a {
|
||||
display: inline-flex;
|
||||
border-radius: 4px;
|
||||
background: rgba($highlight-text-color, 0.2);
|
||||
color: $highlight-text-color;
|
||||
padding: 0.4em 0.6em;
|
||||
text-decoration: none;
|
||||
|
||||
&:hover,
|
||||
&:focus,
|
||||
&:active {
|
||||
background: rgba($highlight-text-color, 0.3);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2,8 +2,14 @@
|
|||
|
||||
class CacheBuster
|
||||
def initialize(options = {})
|
||||
@secret_header = options[:secret_header] || 'Secret-Header'
|
||||
@secret = options[:secret] || 'True'
|
||||
ActiveSupport::Deprecation.warn('Default values for the cache buster secret header name and values will be removed in Mastodon 4.3. Please set them explicitely if you rely on those.') unless options[:http_method] || (options[:secret] && options[:secret_header])
|
||||
|
||||
@secret_header = options[:secret_header] ||
|
||||
(options[:http_method] ? nil : 'Secret-Header')
|
||||
@secret = options[:secret] ||
|
||||
(options[:http_method] ? nil : 'True')
|
||||
|
||||
@http_method = options[:http_method] || 'GET'
|
||||
end
|
||||
|
||||
def bust(url)
|
||||
|
@ -21,8 +27,9 @@ class CacheBuster
|
|||
end
|
||||
|
||||
def build_request(url, http_client)
|
||||
Request.new(:get, url, http_client: http_client).tap do |request|
|
||||
request.add_headers(@secret_header => @secret)
|
||||
end
|
||||
request = Request.new(@http_method.downcase.to_sym, url, http_client: http_client)
|
||||
request.add_headers(@secret_header => @secret) if @secret_header.present? && @secret && !@secret.empty?
|
||||
|
||||
request
|
||||
end
|
||||
end
|
||||
|
|
|
@ -117,7 +117,7 @@ class Request
|
|||
|
||||
def perform
|
||||
begin
|
||||
response = http_client.public_send(@verb, @url.to_s, @options.merge(headers: headers))
|
||||
response = http_client.request(@verb, @url.to_s, @options.merge(headers: headers))
|
||||
rescue => e
|
||||
raise e.class, "#{e.message} on #{@url}", e.backtrace[0]
|
||||
end
|
||||
|
|
|
@ -43,6 +43,9 @@ class VideoMetadataExtractor
|
|||
@height = video_stream[:height]
|
||||
@frame_rate = video_stream[:avg_frame_rate] == '0/0' ? nil : Rational(video_stream[:avg_frame_rate])
|
||||
@r_frame_rate = video_stream[:r_frame_rate] == '0/0' ? nil : Rational(video_stream[:r_frame_rate])
|
||||
# For some video streams the frame_rate reported by `ffprobe` will be 0/0, but for these streams we
|
||||
# should use `r_frame_rate` instead. Video screencast generated by Gnome Screencast have this issue.
|
||||
@frame_rate ||= @r_frame_rate
|
||||
end
|
||||
|
||||
if (audio_stream = audio_streams.first)
|
||||
|
|
|
@ -50,6 +50,7 @@
|
|||
# trendable :boolean
|
||||
# reviewed_at :datetime
|
||||
# requested_review_at :datetime
|
||||
# indexable :boolean default(FALSE), not null
|
||||
#
|
||||
|
||||
class Account < ApplicationRecord
|
||||
|
@ -439,8 +440,21 @@ class Account < ApplicationRecord
|
|||
EntityCache.instance.mention(username, domain)
|
||||
end
|
||||
end
|
||||
|
||||
def inverse_alias(key, original_key)
|
||||
define_method("#{key}=") do |value|
|
||||
public_send("#{original_key}=", !ActiveModel::Type::Boolean.new.cast(value))
|
||||
end
|
||||
|
||||
define_method(key) do
|
||||
!public_send(original_key)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
inverse_alias :show_collections, :hide_collections
|
||||
inverse_alias :unlocked, :locked
|
||||
|
||||
def emojis
|
||||
@emojis ||= CustomEmoji.from_text(emojifiable_text, domain)
|
||||
end
|
||||
|
|
|
@ -48,7 +48,10 @@ class Report < ApplicationRecord
|
|||
|
||||
validate :validate_rule_ids
|
||||
|
||||
# entries here needs to be kept in sync with app/javascript/mastodon/features/notifications/components/report.jsx
|
||||
# entries here need to be kept in sync with the front-end:
|
||||
# - app/javascript/mastodon/features/notifications/components/report.jsx
|
||||
# - app/javascript/mastodon/features/report/category.jsx
|
||||
# - app/javascript/mastodon/components/admin/ReportReasonSelector.jsx
|
||||
enum category: {
|
||||
other: 0,
|
||||
spam: 1_000,
|
||||
|
|
|
@ -410,13 +410,25 @@ class Status < ApplicationRecord
|
|||
|
||||
account_ids.uniq!
|
||||
|
||||
status_ids = cached_items.map { |item| item.reblog? ? item.reblog_of_id : item.id }.uniq
|
||||
|
||||
return if account_ids.empty?
|
||||
|
||||
accounts = Account.where(id: account_ids).includes(:account_stat, :user).index_by(&:id)
|
||||
|
||||
status_stats = StatusStat.where(status_id: status_ids).index_by(&:status_id)
|
||||
|
||||
cached_items.each do |item|
|
||||
item.account = accounts[item.account_id]
|
||||
item.reblog.account = accounts[item.reblog.account_id] if item.reblog?
|
||||
|
||||
if item.reblog?
|
||||
status_stat = status_stats[item.reblog.id]
|
||||
item.reblog.status_stat = status_stat if status_stat.present?
|
||||
else
|
||||
status_stat = status_stats[item.id]
|
||||
item.status_stat = status_stat if status_stat.present?
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -19,6 +19,9 @@ class UserSettings
|
|||
setting :default_content_type, default: 'text/plain'
|
||||
setting :hide_followers_count, default: false
|
||||
|
||||
setting_inverse_alias :indexable, :noindex
|
||||
setting_inverse_alias :show_followers_count, :hide_followers_count
|
||||
|
||||
namespace :web do
|
||||
setting :advanced_layout, default: false
|
||||
setting :trends, default: true
|
||||
|
@ -62,31 +65,26 @@ class UserSettings
|
|||
end
|
||||
|
||||
def [](key)
|
||||
key = key.to_sym
|
||||
definition = self.class.definition_for(key)
|
||||
|
||||
raise KeyError, "Undefined setting: #{key}" unless self.class.definition_for?(key)
|
||||
raise KeyError, "Undefined setting: #{key}" if definition.nil?
|
||||
|
||||
if @original_hash.key?(key)
|
||||
@original_hash[key]
|
||||
else
|
||||
self.class.definition_for(key).default_value
|
||||
end
|
||||
definition.value_for(key, @original_hash[definition.key])
|
||||
end
|
||||
|
||||
def []=(key, value)
|
||||
key = key.to_sym
|
||||
definition = self.class.definition_for(key)
|
||||
|
||||
raise KeyError, "Undefined setting: #{key}" unless self.class.definition_for?(key)
|
||||
raise KeyError, "Undefined setting: #{key}" if definition.nil?
|
||||
|
||||
setting_definition = self.class.definition_for(key)
|
||||
typecast_value = setting_definition.type_cast(value)
|
||||
typecast_value = definition.type_cast(value)
|
||||
|
||||
raise ArgumentError, "Invalid value for setting #{key}: #{typecast_value}" if setting_definition.in.present? && setting_definition.in.exclude?(typecast_value)
|
||||
raise ArgumentError, "Invalid value for setting #{definition.key}: #{typecast_value}" if definition.in.present? && definition.in.exclude?(typecast_value)
|
||||
|
||||
if typecast_value.nil?
|
||||
@original_hash.delete(key)
|
||||
@original_hash.delete(definition.key)
|
||||
else
|
||||
@original_hash[key] = typecast_value
|
||||
@original_hash[definition.key] = definition.value_for(key, typecast_value)
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -10,6 +10,10 @@ module UserSettings::DSL
|
|||
end
|
||||
end
|
||||
|
||||
def setting_inverse_alias(key, original_key)
|
||||
@definitions[key] = @definitions[original_key].inverse_of(key)
|
||||
end
|
||||
|
||||
def namespace(key, &block)
|
||||
@definitions ||= {}
|
||||
|
||||
|
|
|
@ -10,6 +10,27 @@ class UserSettings::Setting
|
|||
@in = options[:in]
|
||||
end
|
||||
|
||||
def inverse_of(name)
|
||||
@inverse_of = name.to_sym
|
||||
self
|
||||
end
|
||||
|
||||
def value_for(name, original_value)
|
||||
value = begin
|
||||
if original_value.nil?
|
||||
default_value
|
||||
else
|
||||
original_value
|
||||
end
|
||||
end
|
||||
|
||||
if !@inverse_of.nil? && @inverse_of == name.to_sym
|
||||
!value
|
||||
else
|
||||
value
|
||||
end
|
||||
end
|
||||
|
||||
def default_value
|
||||
if @default_value.respond_to?(:call)
|
||||
@default_value.call
|
||||
|
|
|
@ -115,6 +115,7 @@ class ActivityPub::ProcessAccountService < BaseService
|
|||
@account.fields = property_values || {}
|
||||
@account.also_known_as = as_array(@json['alsoKnownAs'] || []).map { |item| value_or_id(item) }
|
||||
@account.discoverable = @json['discoverable'] || false
|
||||
@account.indexable = @json['indexable'] || false
|
||||
end
|
||||
|
||||
def set_fetchable_key!
|
||||
|
|
|
@ -8,16 +8,9 @@
|
|||
= render 'shared/error_messages', object: current_user
|
||||
|
||||
= f.simple_fields_for :settings, current_user.settings do |ff|
|
||||
.fields-group
|
||||
= ff.input :noindex, wrapper: :with_label, label: I18n.t('simple_form.labels.defaults.setting_noindex'), hint: I18n.t('simple_form.hints.defaults.setting_noindex')
|
||||
|
||||
.fields-group
|
||||
= ff.input :aggregate_reblogs, wrapper: :with_label, recommended: true, label: I18n.t('simple_form.labels.defaults.setting_aggregate_reblogs'), hint: I18n.t('simple_form.hints.defaults.setting_aggregate_reblogs')
|
||||
|
||||
- unless Setting.hide_followers_count
|
||||
.fields-group
|
||||
= ff.input :hide_followers_count, wrapper: :with_label, label: I18n.t('simple_form.labels.defaults.setting_hide_followers_count'), glitch_only: true
|
||||
|
||||
%h4= t 'preferences.posting_defaults'
|
||||
|
||||
.fields-row
|
||||
|
@ -30,9 +23,6 @@
|
|||
.fields-group
|
||||
= ff.input :default_sensitive, wrapper: :with_label, label: I18n.t('simple_form.labels.defaults.setting_default_sensitive'), hint: I18n.t('simple_form.hints.defaults.setting_default_sensitive')
|
||||
|
||||
.fields-group
|
||||
= ff.input :show_application, wrapper: :with_label, recommended: true, label: I18n.t('simple_form.labels.defaults.setting_show_application'), hint: I18n.t('simple_form.hints.defaults.setting_show_application')
|
||||
|
||||
.fields-group
|
||||
= ff.input :default_content_type, collection: ['text/plain', 'text/markdown', 'text/html'], wrapper: :with_label, label: I18n.t('simple_form.labels.defaults.setting_default_content_type'), include_blank: false, label_method: lambda { |item| safe_join([t("simple_form.labels.defaults.setting_default_content_type_#{item.split('/')[1]}"), content_tag(:span, t("simple_form.hints.defaults.setting_default_content_type_#{item.split('/')[1]}"), class: 'hint')]) }, required: false, as: :radio_buttons, collection_wrapper_tag: 'ul', item_wrapper_tag: 'li', glitch_only: true
|
||||
|
||||
|
|
|
@ -0,0 +1,47 @@
|
|||
- content_for :page_title do
|
||||
= t('privacy.title')
|
||||
|
||||
- content_for :heading do
|
||||
%h2= t('settings.profile')
|
||||
= render partial: 'settings/shared/profile_navigation'
|
||||
|
||||
= simple_form_for @account, url: settings_privacy_path, html: { method: :put } do |f|
|
||||
= render 'shared/error_messages', object: @account
|
||||
|
||||
%p.lead= t('privacy.hint_html')
|
||||
|
||||
%h4= t('privacy.reach')
|
||||
|
||||
%p.lead= t('privacy.reach_hint_html')
|
||||
|
||||
.fields-group
|
||||
= f.input :discoverable, as: :boolean, wrapper: :with_label, recommended: true
|
||||
|
||||
.fields-group
|
||||
= f.input :unlocked, as: :boolean, wrapper: :with_label
|
||||
|
||||
%h4= t('privacy.search')
|
||||
|
||||
%p.lead= t('privacy.search_hint_html')
|
||||
|
||||
= f.simple_fields_for :settings, current_user.settings do |ff|
|
||||
.fields-group
|
||||
= ff.input :indexable, wrapper: :with_label
|
||||
|
||||
%h4= t('privacy.privacy')
|
||||
|
||||
%p.lead= t('privacy.privacy_hint_html')
|
||||
|
||||
.fields-group
|
||||
= f.input :show_collections, as: :boolean, wrapper: :with_label
|
||||
|
||||
= f.simple_fields_for :settings, current_user.settings do |ff|
|
||||
- unless Setting.hide_followers_count
|
||||
.fields-group
|
||||
= ff.input :show_followers_count, wrapper: :with_label, label: I18n.t('simple_form.labels.defaults.setting_show_followers_count'), hint: I18n.t('simple_form.hints.defaults.setting_show_followers_count'), glitch_only: true
|
||||
|
||||
.fields-group
|
||||
= ff.input :show_application, wrapper: :with_label
|
||||
|
||||
.actions
|
||||
= f.button :button, t('generic.save_changes'), type: :submit
|
|
@ -56,17 +56,6 @@
|
|||
= fa_icon 'trash fw'
|
||||
= t('generic.delete')
|
||||
|
||||
%h4= t('edit_profile.safety_and_privacy')
|
||||
|
||||
.fields-group
|
||||
= f.input :discoverable, as: :boolean, wrapper: :with_label, hint: t('simple_form.hints.defaults.discoverable'), recommended: true
|
||||
|
||||
.fields-group
|
||||
= f.input :locked, as: :boolean, wrapper: :with_label, hint: t('simple_form.hints.defaults.locked')
|
||||
|
||||
.fields-group
|
||||
= f.input :hide_collections, as: :boolean, wrapper: :with_label, label: t('simple_form.labels.defaults.setting_hide_network'), hint: t('simple_form.hints.defaults.setting_hide_network')
|
||||
|
||||
%h4= t('edit_profile.other')
|
||||
|
||||
.fields-group
|
||||
|
|
|
@ -2,5 +2,6 @@
|
|||
= render_navigation renderer: :links do |primary|
|
||||
:ruby
|
||||
primary.item :profile, safe_join([fa_icon('user fw'), t('settings.edit_profile')]), settings_profile_path
|
||||
primary.item :privacy, safe_join([fa_icon('lock fw'), t('privacy.title')]), settings_privacy_path
|
||||
primary.item :verification, safe_join([fa_icon('check fw'), t('verification.verification')]), settings_verification_path
|
||||
primary.item :featured_tags, safe_join([fa_icon('hashtag fw'), t('settings.featured_tags')]), settings_featured_tags_path
|
||||
|
|
|
@ -51,6 +51,7 @@ require_relative '../lib/rails/engine_extensions'
|
|||
require_relative '../lib/active_record/database_tasks_extensions'
|
||||
require_relative '../lib/active_record/batches'
|
||||
require_relative '../lib/simple_navigation/item_extensions'
|
||||
require_relative '../lib/http_extensions'
|
||||
|
||||
Dotenv::Railtie.load
|
||||
|
||||
|
|
|
@ -6,5 +6,6 @@ Rails.application.configure do
|
|||
config.x.cache_buster = {
|
||||
secret_header: ENV['CACHE_BUSTER_SECRET_HEADER'],
|
||||
secret: ENV['CACHE_BUSTER_SECRET'],
|
||||
http_method: ENV['CACHE_BUSTER_HTTP_METHOD'] || 'GET',
|
||||
}
|
||||
end
|
||||
|
|
|
@ -15,6 +15,9 @@ Chewy.settings = {
|
|||
journal: false,
|
||||
user: user,
|
||||
password: password,
|
||||
index: {
|
||||
number_of_replicas: ['single_node_cluster', nil].include?(ENV['ES_PRESET'].presence) ? 0 : 1,
|
||||
},
|
||||
}
|
||||
|
||||
# We use our own async strategy even outside the request-response
|
||||
|
|
|
@ -8,7 +8,7 @@ en:
|
|||
setting_default_content_type_markdown: When writing toots, assume they are using Markdown for rich text formatting, unless specified otherwise
|
||||
setting_default_content_type_plain: When writing toots, assume they are plain text with no special formatting, unless specified otherwise (default Mastodon behavior)
|
||||
setting_default_language: The language of your toots can be detected automatically, but it's not always accurate
|
||||
setting_hide_followers_count: Hide your followers count from everybody, including you. Some applications may display a negative followers count.
|
||||
setting_show_followers_count: Show your followers count on your profile. If you hide your followers count, it will be hidden even from yourself, and some applications may display a negative followers count.
|
||||
setting_skin: Reskins the selected Mastodon flavour
|
||||
labels:
|
||||
defaults:
|
||||
|
@ -17,7 +17,7 @@ en:
|
|||
setting_default_content_type_markdown: Markdown
|
||||
setting_default_content_type_plain: Plain text
|
||||
setting_favourite_modal: Show confirmation dialog before favouriting (applies to Glitch flavour only)
|
||||
setting_hide_followers_count: Hide your followers count
|
||||
setting_show_followers_count: Show your followers count
|
||||
setting_skin: Skin
|
||||
setting_system_emoji_font: Use system's default font for emojis (applies to Glitch flavour only)
|
||||
notification_emails:
|
||||
|
|
|
@ -1152,7 +1152,6 @@ ar:
|
|||
edit_profile:
|
||||
basic_information: معلومات أساسية
|
||||
other: أخرى
|
||||
safety_and_privacy: الأمان والخصوصية
|
||||
errors:
|
||||
'400': الطلب الذي قدمته غير صالح أو أنّ شكله غير سليم.
|
||||
'403': ليس لك الصلاحيات الكافية لعرض هذه الصفحة.
|
||||
|
|
|
@ -528,8 +528,6 @@ ast:
|
|||
your_appeal_approved: Aprobóse la to apellación
|
||||
your_appeal_pending: Unviesti una apellación
|
||||
your_appeal_rejected: Refugóse la to apellación
|
||||
edit_profile:
|
||||
safety_and_privacy: Seguranza ya privacidá
|
||||
errors:
|
||||
'400': La solicitú qu'unviesti nun yera válida o yera incorreuta.
|
||||
'403': Nun tienes permisu pa ver esta páxina.
|
||||
|
|
|
@ -1176,7 +1176,6 @@ be:
|
|||
basic_information: Асноўная інфармацыя
|
||||
hint_html: "<strong>Наладзьце тое, што людзі будуць бачыць у вашым профілі і побач з вашымі паведамленнямі.</strong> Іншыя людзі з большай верагоднасцю будуць сачыць і ўзаемадзейнічаць з вамі, калі ў вас ёсць запоўнены профіль і фота профілю."
|
||||
other: Іншае
|
||||
safety_and_privacy: Бяспека і прыватнасць
|
||||
errors:
|
||||
'400': Запыт, які вы адправілі, памылковы або няправільны.
|
||||
'403': У вас няма дазволу на прагляд гэтай старонкі.
|
||||
|
|
|
@ -1139,7 +1139,6 @@ bg:
|
|||
basic_information: Основна информация
|
||||
hint_html: "<strong>Персонализирайте какво хората виждат в обществения ви профил и до публикациите ви.</strong> Другите хора са по-склонни да ви последват и да взаимодействат с вас, когато имате попълнен профил и снимка на профила."
|
||||
other: Друго
|
||||
safety_and_privacy: Безопасност и поверителност
|
||||
errors:
|
||||
'400': Подадохте невалидна или деформирана заявка.
|
||||
'403': Нямате позволение да разгледате тази страница.
|
||||
|
|
|
@ -1140,7 +1140,6 @@ ca:
|
|||
basic_information: Informació bàsica
|
||||
hint_html: "<strong>Personalitza el que la gent veu en el teu perfil públic i a prop dels teus tuts..</strong> És més probable que altres persones et segueixin i interaccionin amb tu quan tens emplenat el teu perfil i amb la teva imatge."
|
||||
other: Altres
|
||||
safety_and_privacy: Seguretat i privacitat
|
||||
errors:
|
||||
'400': La sol·licitud que vas emetre no era vàlida o no era correcta.
|
||||
'403': No tens permís per a veure aquesta pàgina.
|
||||
|
|
|
@ -1212,7 +1212,6 @@ cy:
|
|||
basic_information: Gwybodaeth Sylfaenol
|
||||
hint_html: "<strong>Addaswch yr hyn y mae pobl yn ei weld ar eich proffil cyhoeddus ac wrth ymyl eich postiadau.</strong> Mae pobl eraill yn fwy tebygol o'ch dilyn yn ôl a rhyngweithio â chi pan fydd gennych broffil wedi'i lenwi a llun proffil."
|
||||
other: Arall
|
||||
safety_and_privacy: Diogelwch a phreifatrwydd
|
||||
errors:
|
||||
'400': Roedd y cais a gyflwynwyd gennych yn annilys neu wedi'i gamffurfio.
|
||||
'403': Nid oes gennych ganiatâd i weld y dudalen hon.
|
||||
|
|
|
@ -1140,7 +1140,6 @@ da:
|
|||
basic_information: Oplysninger
|
||||
hint_html: "<strong>Tilpas hvad folk ser på din offentlige profil og ved siden af dine indlæg.</strong> Andre personer vil mere sandsynligt følge dig tilbage og interagere med dig, når du har en udfyldt profil og et profilbillede."
|
||||
other: Andre
|
||||
safety_and_privacy: Sikkerhed og privatliv
|
||||
errors:
|
||||
'400': Din indsendte anmodning er ugyldig eller fejlbehæftet.
|
||||
'403': Du har ikke tilladelse til at se denne side.
|
||||
|
|
|
@ -1140,7 +1140,6 @@ de:
|
|||
basic_information: Allgemeine Informationen
|
||||
hint_html: "<strong>Bestimme, was andere auf deinem öffentlichen Profil und neben deinen Beiträgen sehen können.</strong> Wenn du ein Profilbild festlegst und dein Profil vervollständigst, werden andere eher mit dir interagieren und dir folgen."
|
||||
other: Andere
|
||||
safety_and_privacy: Sicherheit und Datenschutz
|
||||
errors:
|
||||
'400': Die Anfrage, die du gestellt hast, war ungültig oder fehlerhaft.
|
||||
'403': Dir fehlt die Berechtigung, diese Seite aufzurufen.
|
||||
|
|
|
@ -1140,7 +1140,6 @@ en-GB:
|
|||
basic_information: Basic information
|
||||
hint_html: "<strong>Customise 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
|
||||
safety_and_privacy: Safety and privacy
|
||||
errors:
|
||||
'400': The request you submitted was invalid or malformed.
|
||||
'403': You don't have permission to view this page.
|
||||
|
|
|
@ -1140,7 +1140,6 @@ en:
|
|||
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."
|
||||
other: Other
|
||||
safety_and_privacy: Safety and privacy
|
||||
errors:
|
||||
'400': The request you submitted was invalid or malformed.
|
||||
'403': You don't have permission to view this page.
|
||||
|
@ -1477,6 +1476,15 @@ en:
|
|||
other: Other
|
||||
posting_defaults: Posting defaults
|
||||
public_timelines: Public timelines
|
||||
privacy:
|
||||
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_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.
|
||||
reach: Reach
|
||||
reach_hint_html: Control whether you want to be discovered and followed by new people. Do you want your posts to appear on the Explore screen? Do you want other people to see you in their follow recommendations? Do you want to accept all new followers automatically, or have granular control over each one?
|
||||
search: Search
|
||||
search_hint_html: Control how you want to be found. Do you want people to find you by what you've publicly posted about? Do you want people outside Mastodon to find your profile when searching the web? Please mind that total exclusion from all search engines cannot be guaranteed for public information.
|
||||
title: Privacy and reach
|
||||
privacy_policy:
|
||||
title: Privacy Policy
|
||||
reactions:
|
||||
|
|
|
@ -1135,7 +1135,6 @@ eo:
|
|||
edit_profile:
|
||||
basic_information: Baza informo
|
||||
other: Alia
|
||||
safety_and_privacy: Sekureco kaj privateco
|
||||
errors:
|
||||
'400': La peto kiun vi sendis estas nevalida au malformas.
|
||||
'403': Vi ne havas la rajton por vidi ĉi tiun paĝon.
|
||||
|
|
|
@ -1140,7 +1140,6 @@ es-AR:
|
|||
basic_information: Información básica
|
||||
hint_html: "<strong>Personalizá lo que la gente ve en tu perfil público y junto a tus publicaciones.</strong> Es más probable que otras personas te sigan e interactúen con vos cuando tengas un perfil completo y una foto de perfil."
|
||||
other: Otros
|
||||
safety_and_privacy: Seguridad y privacidad
|
||||
errors:
|
||||
'400': La solicitud que enviaste no era válida o estaba corrompida.
|
||||
'403': No tenés permiso para ver esta página.
|
||||
|
|
|
@ -1140,7 +1140,6 @@ es-MX:
|
|||
basic_information: Información básica
|
||||
hint_html: "<strong>Personaliza lo que la gente ve en tu perfil público junto a tus publicaciones.</strong> Es más probable que otras personas te sigan e interactúen contigo cuando completes tu perfil y agregues una foto."
|
||||
other: Otro
|
||||
safety_and_privacy: Seguridad y privacidad
|
||||
errors:
|
||||
'400': La solicitud que has enviado no es valida o estaba malformada.
|
||||
'403': No tienes permiso para acceder a esta página.
|
||||
|
|
|
@ -1140,7 +1140,6 @@ es:
|
|||
basic_information: Información básica
|
||||
hint_html: "<strong>Personaliza lo que la gente ve en tu perfil público junto a tus publicaciones.</strong> Es más probable que otras personas te sigan e interactúen contigo cuando completas tu perfil y foto."
|
||||
other: Otros
|
||||
safety_and_privacy: Seguridad y privacidad
|
||||
errors:
|
||||
'400': La solicitud que has enviado no es valida o estaba malformada.
|
||||
'403': No tienes permiso para acceder a esta página.
|
||||
|
|
|
@ -1140,7 +1140,6 @@ et:
|
|||
basic_information: Põhiinfo
|
||||
hint_html: "<strong>Kohanda, mida inimesed näevad su avalikul profiilil ja postituste kõrval.</strong> Inimesed alustavad tõenäolisemalt sinu jälgimist ja interakteeruvad sinuga, kui sul on täidetud profiil ja profiilipilt."
|
||||
other: Muu
|
||||
safety_and_privacy: Turvalisus ja privaatsus
|
||||
errors:
|
||||
'400': Esitatud päring oli vigane või valesti vormindatud.
|
||||
'403': Sul puudub õigus seda lehte vaadata.
|
||||
|
|
|
@ -1140,7 +1140,6 @@ fi:
|
|||
basic_information: Perustiedot
|
||||
hint_html: "<strong>Mukauta mitä ihmiset näkevät julkisessa profiilissasi ja sinun julkaisujen vieressä.</strong> Ihmiset todennäköisesti seuraavat ja kirjoittavat sinulle, kun sinulla on täytetty profiili ja profiilikuva."
|
||||
other: Muu
|
||||
safety_and_privacy: Turvallisuus ja yksityisyys
|
||||
errors:
|
||||
'400': Lähettämäsi pyyntö oli virheellinen tai muotoiltu virheellisesti.
|
||||
'403': Sinulla ei ole lupaa nähdä tätä sivua.
|
||||
|
|
|
@ -1140,7 +1140,6 @@ fo:
|
|||
basic_information: Grundleggjandi upplýsingar
|
||||
hint_html: "<strong>Tillaga tað, sum fólk síggja á tínum almenna vanga og við síðna av tínum postum.</strong> Sannlíkindini fyri, at onnur fylgja tær og virka saman við tær eru størri, tá tú hevur fylt út vangan og eina vangamynd."
|
||||
other: Onnur
|
||||
safety_and_privacy: Trygd og privatlív
|
||||
errors:
|
||||
'400': Umbønin, sum tú sendi inn, var ógildug ella hevði skeivt skap.
|
||||
'403': Tú hevur ikki loyvi at síggja hesa síðuna.
|
||||
|
|
|
@ -1140,7 +1140,6 @@ fr-QC:
|
|||
basic_information: Informations de base
|
||||
hint_html: "<strong>Personnalisez ce que les gens voient sur votre profil public et à côté de vos messages.</strong> Les autres personnes seront plus susceptibles de vous suivre et d’interagir avec vous lorsque vous avez un profil complet et une photo."
|
||||
other: Autre
|
||||
safety_and_privacy: Sécurité et confidentialité
|
||||
errors:
|
||||
'400': La demande que vous avez soumise est invalide ou mal formée.
|
||||
'403': Vous n’avez pas accès à cette page.
|
||||
|
|
|
@ -1140,7 +1140,6 @@ fr:
|
|||
basic_information: Informations de base
|
||||
hint_html: "<strong>Personnalisez ce que les gens voient sur votre profil public et à côté de vos messages.</strong> Les autres personnes seront plus susceptibles de vous suivre et d’interagir avec vous lorsque vous avez un profil complet et une photo."
|
||||
other: Autre
|
||||
safety_and_privacy: Sécurité et confidentialité
|
||||
errors:
|
||||
'400': La demande que vous avez soumise est invalide ou mal formée.
|
||||
'403': Vous n’avez pas accès à cette page.
|
||||
|
|
|
@ -1140,7 +1140,6 @@ fy:
|
|||
basic_information: Algemiene ynformaasje
|
||||
hint_html: "<strong>Pas oan wat minsken op jo iepenbiere profyl en njonken jo berjochten sjogge.</strong> Oare minsken sille jo earder folgje en mei jo kommunisearje wannear’t jo profyl ynfolle is en jo in profylfoto hawwe."
|
||||
other: Oars
|
||||
safety_and_privacy: Feilichheid en privacy
|
||||
errors:
|
||||
'400': De oanfraach dy’t jo yntsjinne hawwe wie ûnjildich of fout.
|
||||
'403': Jo hawwe gjin tastimming om dizze side te besjen.
|
||||
|
|
|
@ -1176,7 +1176,6 @@ gd:
|
|||
basic_information: Fiosrachadh bunasach
|
||||
hint_html: "<strong>Gnàthaich na chithear air a’ phròifil phoblach agad is ri taobh nam postaichean agad.</strong> Bidh càch nas buailtiche do leantainn agus conaltradh leat nuair a bhios tu air a’ phròifil agad a lìonadh agus dealbh rithe."
|
||||
other: Eile
|
||||
safety_and_privacy: Sàbhailteachd is prìobhaideachd
|
||||
errors:
|
||||
'400': Cha robh an t-iarrtas a chuir thu a-null dligheach no bha droch-chruth air.
|
||||
'403': Chan eil cead agad gus an duilleag seo a shealltainn.
|
||||
|
|
|
@ -1140,7 +1140,6 @@ gl:
|
|||
basic_information: Información básica
|
||||
hint_html: "<strong>Personaliza o que van ver no teu perfil público e ao lado das túas publicacións.</strong> As outras persoas estarán máis animadas a seguirte e interactuar contigo se engades algún dato sobre ti así como unha imaxe de perfil."
|
||||
other: Outros
|
||||
safety_and_privacy: Seguridade e privacidade
|
||||
errors:
|
||||
'400': A solicitude que enviou non é válida ou ten formato incorrecto.
|
||||
'403': Non ten permiso para ver esta páxina.
|
||||
|
|
|
@ -1176,7 +1176,6 @@ he:
|
|||
basic_information: מידע בסיסי
|
||||
hint_html: "<strong>התאמה אישית של מה שיראו אחרים בפרופיל הציבורי שלך וליד הודעותיך.</strong> אחרים עשויים יותר להחזיר עוקב וליצור אתך שיחה אם הפרופיל והתמונה יהיו מלאים."
|
||||
other: אחר
|
||||
safety_and_privacy: בטחון ופרטיות
|
||||
errors:
|
||||
'400': הבקשה שהגשת לא תקינה.
|
||||
'403': חסרות לך הרשאות לצפיה בעמוד זה.
|
||||
|
|
|
@ -1140,7 +1140,6 @@ hu:
|
|||
basic_information: Általános információk
|
||||
hint_html: "<strong>Tedd egyedivé, mi látnak mások a profilodon és a bejegyzéseid mellett.</strong> Mások nagyobb eséllyel követnek vissza és lépnek veled kapcsolatba, ha van kitöltött profilod és profilképed."
|
||||
other: Egyéb
|
||||
safety_and_privacy: Biztonság és személyes adatok
|
||||
errors:
|
||||
'400': A küldött kérés érvénytelen vagy hibás volt.
|
||||
'403': Nincs jogosultságod az oldal megtekintéséhez.
|
||||
|
|
|
@ -1144,7 +1144,6 @@ is:
|
|||
basic_information: Grunnupplýsingar
|
||||
hint_html: "<strong>Sérsníddu hvað fólk sér á opinbera notandasniðinu þínu og næst færslunum þínum.</strong> Annað fólk er líklegra til að fylgjast með þér og eiga í samskiptum við þig ef þú fyllir út notandasniðið og setur auðkennismynd."
|
||||
other: Annað
|
||||
safety_and_privacy: Öryggi og friðhelgi
|
||||
errors:
|
||||
'400': Beiðnin sem þú sendir er ógild eða rangt uppsett.
|
||||
'403': Þú hefur ekki heimildir til að skoða þessari síðu.
|
||||
|
|
|
@ -1142,7 +1142,6 @@ it:
|
|||
basic_information: Informazioni di base
|
||||
hint_html: "<strong>Personalizza ciò che le persone vedono sul tuo profilo pubblico e accanto ai tuoi post.</strong> È più probabile che altre persone ti seguano e interagiscano con te quando hai un profilo compilato e un'immagine del profilo."
|
||||
other: Altro
|
||||
safety_and_privacy: Sicurezza e privacy
|
||||
errors:
|
||||
'400': La richiesta che hai inviato non è valida o non è corretta.
|
||||
'403': Non sei autorizzato a visualizzare questa pagina.
|
||||
|
|
|
@ -1122,7 +1122,6 @@ ja:
|
|||
basic_information: 基本情報
|
||||
hint_html: "<strong>アカウントのトップページや投稿の隣に表示される公開情報です。</strong>プロフィールとアイコンを設定することで、ほかのユーザーは親しみやすく、またフォローしやすくなります。"
|
||||
other: その他
|
||||
safety_and_privacy: 安全とプライバシー
|
||||
errors:
|
||||
'400': 送信されたリクエストは無効であるか、または不正なフォーマットです。
|
||||
'403': このページを表示する権限がありません。
|
||||
|
|
|
@ -1124,7 +1124,6 @@ ko:
|
|||
basic_information: 기본 정보
|
||||
hint_html: "<strong>내 공개 프로필과 게시물 옆에 보이는 부분을 꾸미세요.</strong> 다른 사람들은 프로필 내용과 사진이 채워진 계정과 더 상호작용하고 팔로우를 하고 싶어합니다."
|
||||
other: 기타
|
||||
safety_and_privacy: 안전과 개인정보
|
||||
errors:
|
||||
'400': 제출한 요청이 올바르지 않습니다.
|
||||
'403': 이 페이지를 표시할 권한이 없습니다.
|
||||
|
|
|
@ -1122,7 +1122,6 @@ my:
|
|||
basic_information: အခြေခံသတင်းအချက်အလက်
|
||||
hint_html: "<strong>သင်၏ အများမြင်ပရိုဖိုင်နှင့် သင့်ပို့စ်များဘေးရှိ တွေ့မြင်ရသည့်အရာကို စိတ်ကြိုက်ပြင်ဆင်ပါ။ </strong> သင့်တွင် ပရိုဖိုင်နှင့် ပရိုဖိုင်ပုံတစ်ခု ဖြည့်သွင်းထားပါက အခြားသူများအနေဖြင့် သင်နှင့် အပြန်အလှန် တုံ့ပြန်နိုင်ခြေပိုများပါသည်။"
|
||||
other: အခြား
|
||||
safety_and_privacy: ဘေးကင်းရေးနှင့် လျှို့ဝှက်ရေး
|
||||
errors:
|
||||
'400': သင်တင်ပြသော တောင်းဆိုချက်မှာ မမှန်ကန်ပါ သို့မဟုတ် ပုံစံမမှန်ပါ။
|
||||
'403': ဤစာမျက်နှာကြည့်ရှုရန် သင့်တွင် ခွင့်ပြုချက်မရှိပါ။
|
||||
|
|
|
@ -1140,7 +1140,6 @@ nl:
|
|||
basic_information: Algemene informatie
|
||||
hint_html: "<strong>Pas aan wat mensen op jouw openbare profiel en naast je berichten zien.</strong> Andere mensen zullen je eerder volgen en met je communiceren wanneer je profiel is ingevuld en je een profielfoto hebt."
|
||||
other: Overige
|
||||
safety_and_privacy: Veiligheid en privacy
|
||||
errors:
|
||||
'400': De aanvraag die je hebt ingediend was ongeldig of foutief.
|
||||
'403': Jij hebt geen toestemming om deze pagina te bekijken.
|
||||
|
|
|
@ -1140,7 +1140,6 @@ nn:
|
|||
basic_information: Grunnleggande informasjon
|
||||
hint_html: "<strong>Tilpass kva folk ser på den offentlege profilen din og ved sida av innlegga dine.</strong> Andre vil i større grad fylgja og samhandla med deg når du har eit profilbilete og har fyllt ut profilen din."
|
||||
other: Anna
|
||||
safety_and_privacy: Sikkerheit og personvern
|
||||
errors:
|
||||
'400': Søknaden du sende var ugyldig eller sett opp feil.
|
||||
'403': Du har ikkje løyve til å sjå denne sida.
|
||||
|
|
|
@ -1140,7 +1140,6 @@
|
|||
basic_information: Grunnleggende informasjon
|
||||
hint_html: "<strong>Tilpass hva folk ser på din offentlige profil og ved siden av dine innlegg.</strong> Det er mer sannsynlig at andre mennesker følger deg tilbake og samhandler med deg når du har fylt ut en profil og et profilbilde."
|
||||
other: Annet
|
||||
safety_and_privacy: Sikkerhet og personvern
|
||||
errors:
|
||||
'400': Forespørselen du sendte inn var ugyldig eller feil.
|
||||
'403': Du har ikke tillatelse til å vise denne siden.
|
||||
|
|
|
@ -1176,7 +1176,6 @@ pl:
|
|||
basic_information: Podstawowe informacje
|
||||
hint_html: "<strong>Dostosuj to, co ludzie widzą na Twoim profilu publicznym i obok Twoich wpisów.</strong> Inne osoby są bardziej skłonne obserwować Cię i wchodzić z Tobą w interakcje, gdy masz wypełniony profil i zdjęcie profilowe."
|
||||
other: Inne
|
||||
safety_and_privacy: Bezpieczeństwo i prywatność
|
||||
errors:
|
||||
'400': Wysłane zgłoszenie jest nieprawidłowe lub uszkodzone.
|
||||
'403': Nie masz uprawnień, aby wyświetlić tę stronę.
|
||||
|
|
|
@ -1139,7 +1139,6 @@ pt-BR:
|
|||
basic_information: Informações básicas
|
||||
hint_html: "<strong>Personalize o que as pessoas veem no seu perfil público e ao lado de suas publicações.</strong> É mais provável que outras pessoas o sigam de volta e interajam com você quando você tiver um perfil preenchido e uma foto de perfil."
|
||||
other: Outro
|
||||
safety_and_privacy: Segurança e privacidade
|
||||
errors:
|
||||
'400': A solicitação enviada é inválida ou incorreta.
|
||||
'403': Você não tem permissão para ver esta página.
|
||||
|
|
|
@ -1140,7 +1140,6 @@ pt-PT:
|
|||
basic_information: Informação básica
|
||||
hint_html: "<strong>Personalize o que as pessoas veem no seu perfil público e junto das suas publicações.</strong> É mais provável que as outras pessoas o sigam de volta ou interajam consigo se tiver um perfil preenchido e uma imagem de perfil."
|
||||
other: Outro
|
||||
safety_and_privacy: Segurança e privacidade
|
||||
errors:
|
||||
'400': O pedido que submeteu foi inválido ou mal formulado.
|
||||
'403': Não tens a permissão necessária para ver esta página.
|
||||
|
|
|
@ -1176,7 +1176,6 @@ ru:
|
|||
basic_information: Основная информация
|
||||
hint_html: "<strong>Настройте то, что люди видят в вашем публичном профиле и рядом с вашими сообщениями.</strong> Другие люди с большей вероятностью подпишутся на Вас и будут взаимодействовать с вами, если у Вас заполнен профиль и добавлено изображение."
|
||||
other: Прочее
|
||||
safety_and_privacy: Безопасность и приватность
|
||||
errors:
|
||||
'400': Ваш запрос был недействительным или неправильным.
|
||||
'403': У Вас нет доступа к просмотру этой страницы.
|
||||
|
|
|
@ -37,13 +37,11 @@ an:
|
|||
current_password: Per razons de seguranza per favor ingrese la clau d'a cuenta actual
|
||||
current_username: Pa confirmar, per favor ingrese lo nombre d'usuario d'a cuenta actual
|
||||
digest: Solo ninviau dimpués d'un largo periodo d'inactividat y nomás si has recibiu mensaches personals entre la tuya ausencia
|
||||
discoverable: Permite que la tuya cuenta sía descubierta per extranyos a traviés de recomendacions, tendencias y atras caracteristicas
|
||||
email: Se le ninviará un correu de confirmación
|
||||
header: PNG, GIF u JPG. Maximo %{size}. Será escalau a %{dimensions}px
|
||||
inbox_url: Copia la URL d'a pachina prencipal d'o relés que quiers utilizar
|
||||
irreversible: Las publicacions filtradas desapareixerán irreversiblement, mesmo si este filtro ye eliminau mas abance
|
||||
locale: L'idioma d'a interficie d'usuario, correus y notificacions push
|
||||
locked: Requiere que manualment aprebes seguidores y las publicacions serán amostradas nomás a las tuyas seguidores
|
||||
password: Utilice a lo menos 8 caracters
|
||||
phrase: S'aplicará sin importar las mayusclas u los avisos de conteniu d'una publicación
|
||||
scopes: Qué APIs de l'aplicación tendrán acceso. Si trías l'aconsiga de libel pero alto, no amenestes triar las individuals.
|
||||
|
@ -53,9 +51,6 @@ an:
|
|||
setting_display_media_default: Amagar conteniu multimedia marcau como sensible
|
||||
setting_display_media_hide_all: Siempre amagar tot lo conteniu multimedia
|
||||
setting_display_media_show_all: Amostrar siempre conteniu multimedia marcau como sensible
|
||||
setting_hide_network: A quí sigues y quí te sigue no será amostrau en o tuyo perfil
|
||||
setting_noindex: Afecta a lo tuyo perfil publico y pachinas d'estau
|
||||
setting_show_application: L'aplicación que utiliza vusté pa publicar publicacions s'amostrará en a vista detallada d'as suyas publicacions
|
||||
setting_use_blurhash: Los gradientes se basan en as colors d'as imachens amagadas pero fendo borrosos los detalles
|
||||
setting_use_pending_items: Amagar nuevos estaus dezaga d'un clic en cuenta de desplazar automaticament lo feed
|
||||
whole_word: Quan la parola clau u frase ye nomás alfanumerica, nomás será aplicau si concuerda con tota la parola
|
||||
|
@ -170,7 +165,6 @@ an:
|
|||
context: Filtrar contextos
|
||||
current_password: Clau actual
|
||||
data: Información
|
||||
discoverable: Sucherir la cuenta a atros
|
||||
display_name: Nombre pa amostrar
|
||||
email: Adreza de correu electronico
|
||||
expires_in: Expirar dimpués de
|
||||
|
@ -180,7 +174,6 @@ an:
|
|||
inbox_url: URL d'a dentrada de relés
|
||||
irreversible: Refusar en cuenta d'amagar
|
||||
locale: Idioma
|
||||
locked: Fer privada esta cuenta
|
||||
max_uses: Máx. numero d'usos
|
||||
new_password: Nueva clau
|
||||
note: Biografía
|
||||
|
@ -203,9 +196,7 @@ an:
|
|||
setting_display_media_show_all: Amostrar tot
|
||||
setting_expand_spoilers: Siempre expandir las publicacions marcadas con alvertencias de conteniu
|
||||
setting_hide_network: Amagar lo tuyo ret
|
||||
setting_noindex: Excluyir-se d'o indexado de motors de busqueda
|
||||
setting_reduce_motion: Reducir lo movimiento d'as animacions
|
||||
setting_show_application: Amostrar aplicación usada pa publicar publicacions
|
||||
setting_system_font_ui: Utilizar la tipografía per defecto d'o sistema
|
||||
setting_theme: Tema d'o puesto
|
||||
setting_trends: Amostrar las tendencias de hue
|
||||
|
|
|
@ -41,13 +41,11 @@ ar:
|
|||
current_password: لأسباب أمنية ، يرجى إدخال الكلمة السرية الخاصة بالحساب الحالي
|
||||
current_username: يرجى إدخال اسم المستخدم الخاص بالحساب الحالي قصد التأكيد
|
||||
digest: تُرسَل إليك بعد مُضيّ مدة مِن خمول نشاطك و فقط إذا ما تلقيت رسائل شخصية مباشِرة أثناء فترة غيابك مِن الشبكة
|
||||
discoverable: السماح للغرباء اكتشاف حسابك من خلال التوصيات والمتداولة وغيرها من الميزات
|
||||
email: سوف تتلقى رسالة إلكترونية للتأكيد
|
||||
header: ملف PNG أو GIF أو JPG. حجمه على أقصى تصدير %{size}. سيتم تصغيره إلى %{dimensions}px
|
||||
inbox_url: نسخ العنوان الذي تريد استخدامه مِن صفحة الاستقبال للمُرحَّل
|
||||
irreversible: المنشورات التي تم تصفيتها ستختفي لا محالة حتى و إن تمت إزالة عامِل التصفية لاحقًا
|
||||
locale: لغة واجهة المستخدم و الرسائل الإلكترونية و الإشعارات
|
||||
locked: يتطلب منك الموافقة يدويا على طلبات المتابعة
|
||||
password: يُنصح باستخدام 8 أحرف على الأقل
|
||||
phrase: سوف يتم العثور عليه مهما كان نوع النص أو حتى و إن كان داخل الويب فيه تحذير عن المحتوى
|
||||
scopes: ما هي المجالات المسموح بها في التطبيق ؟ إن قمت باختيار أعلى المجالات فيمكنك الاستغناء عن الخَيار اليدوي.
|
||||
|
@ -57,9 +55,6 @@ ar:
|
|||
setting_display_media_default: إخفاء الوسائط المُعيَّنة كحساسة
|
||||
setting_display_media_hide_all: إخفاء كافة الوسائط دائمًا
|
||||
setting_display_media_show_all: دائمًا عرض الوسائط المُعيَّنة كحساسة
|
||||
setting_hide_network: الحسابات التي تُتابعها و التي تُتابِعك على حد سواء لن تُعرَض على صفحتك التعريفية
|
||||
setting_noindex: ذلك يؤثر على صفحتك التعريفية وصفحات المنشورات
|
||||
setting_show_application: سيُعرَض اسم التطبيق الذي تستخدمه عند النشر في العرض المفصّل لمنشوراتك
|
||||
setting_use_blurhash: الألوان التدرّجية مبنية على ألوان المرئيات المخفية ولكنها تحجب كافة التفاصيل
|
||||
setting_use_pending_items: إخفاء تحديثات الخط وراء نقرة بدلًا مِن التمرير التلقائي للتدفق
|
||||
username: يمكنك استخدام الأحرف والأرقام والسطور السفلية
|
||||
|
@ -178,7 +173,6 @@ ar:
|
|||
context: تصفية السياقات
|
||||
current_password: كلمة السر الحالية
|
||||
data: البيانات
|
||||
discoverable: القيام بإدراج هذا الحساب في قائمة دليل الحسابات
|
||||
display_name: الاسم المعروض
|
||||
email: عنوان البريد الإلكتروني
|
||||
expires_in: تنتهي مدة صلاحيته بعد
|
||||
|
@ -188,7 +182,6 @@ ar:
|
|||
inbox_url: عنوان رابط صندوق المُرَحِّل
|
||||
irreversible: إسقاط بدلا من إخفائها
|
||||
locale: لغة الواجهة
|
||||
locked: تجميد الحساب
|
||||
max_uses: عدد مرات استخدام الرابط
|
||||
new_password: كلمة السر الجديدة
|
||||
note: السيرة الذاتية
|
||||
|
@ -211,9 +204,7 @@ ar:
|
|||
setting_display_media_show_all: عرض الكل
|
||||
setting_expand_spoilers: توسيع المنشورات التي تحتوي على تحذيرات عن المحتوى دائما
|
||||
setting_hide_network: إخفِ شبكتك
|
||||
setting_noindex: الطلب مِن محركات البحث بعدم فهرسة معلوماتك وصفحتك التعريفية الشخصية
|
||||
setting_reduce_motion: تخفيض عدد الصور في الوسائط المتحركة
|
||||
setting_show_application: اكشف اسم التطبيق المستخدَم لإرسال المنشورات
|
||||
setting_system_font_ui: استخدم الخطوط الافتراضية للنظام
|
||||
setting_theme: سمة الموقع
|
||||
setting_trends: اعرض ما يُتداوَل اليوم
|
||||
|
|
|
@ -18,11 +18,9 @@ ast:
|
|||
avatar: Ficheros PNG, GIF o JPG de %{size} como muncho. La semeya va redimensionase a %{dimensions} px
|
||||
bot: Avisa a otres persones de qu'esta cuenta fai principalmente aiciones automatizaes ya de que ye posible que nun tean supervisaes
|
||||
digest: Namás s'unvia dempués d'un periodu llongu d'inactividá ya namás si recibiesti dalgún mensaxe personal demientres la to ausencia
|
||||
discoverable: Permite que persones desconocíes descubran la to cuenta pente recomendaciones, tendencies ya otres funciones
|
||||
header: Ficheros PNG, GIF o JPG de %{size} como muncho. La semeya va redimensionase a %{dimensions} px
|
||||
irreversible: Los artículos peñeraos desapaecen de forma irreversible, magar que la peñera se quite dempués
|
||||
locale: La llingua de la interfaz, los mensaxes per corréu electrónicu ya los avisos push
|
||||
locked: Controla manualmente quién pue siguite pente l'aprobación de les solicitúes de siguimientu
|
||||
password: Usa polo menos 8 caráuteres
|
||||
setting_aggregate_reblogs: Nun amuesa los artículos compartíos nuevos que xá se compartieren de recién (namás afeuta a los artículos compartíos d'agora)
|
||||
setting_always_send_emails: Los avisos nun se suelen unviar per corréu electrónicu si uses activamente Mastodon
|
||||
|
@ -30,9 +28,6 @@ ast:
|
|||
setting_display_media_default: Anubrilu cuando se marque como sensible
|
||||
setting_display_media_hide_all: Anubrilu siempres
|
||||
setting_display_media_show_all: Amosalu siempres
|
||||
setting_hide_network: Les persones que sigas ya les que te sigan nun van apaecer nel to perfil
|
||||
setting_noindex: Afeuta al perfil públicu ya a les páxines de los artículos
|
||||
setting_show_application: L'aplicación qu'uses pa espublizar apaez na vista detallada de los tos artículos
|
||||
setting_use_blurhash: Los dilíos básense nos colores del conteníu multimedia anubríu mas desenfonca los detalles
|
||||
featured_tag:
|
||||
name: 'Equí tán dalgunes de les etiquetes qu''usesti apocayá:'
|
||||
|
@ -91,7 +86,6 @@ ast:
|
|||
confirm_password: Confirmación de la contraseña
|
||||
current_password: Contraseña actual
|
||||
data: Datos
|
||||
discoverable: Suxerir esta cuenta a otres persones
|
||||
display_name: Nome visible
|
||||
email: Direición de corréu electrónicu
|
||||
expires_in: Caduca dempués de
|
||||
|
@ -99,7 +93,6 @@ ast:
|
|||
header: Semeya de la testera
|
||||
irreversible: Escartar en cuentes d'anubrir
|
||||
locale: Llingua de la interfaz
|
||||
locked: Riquir solicitúes de siguimientu
|
||||
max_uses: Númberu máximu d'usos
|
||||
new_password: Contraseña nueva
|
||||
note: Biografía
|
||||
|
@ -119,9 +112,7 @@ ast:
|
|||
setting_display_media: Conteníu multimedia
|
||||
setting_expand_spoilers: Espander siempres los artículos marcaos con alvertencies de conteníu
|
||||
setting_hide_network: Anubrir les cuentes que sigas ya te sigan
|
||||
setting_noindex: Arrenunciar a apaecer nos índices de los motores de busca
|
||||
setting_reduce_motion: Amenorgar el movimientu de les animaciones
|
||||
setting_show_application: Dicir les aplicaciones que s'usen pa unviar artículos
|
||||
setting_system_font_ui: Usar la fonte predeterminada del sistema
|
||||
setting_theme: Estilu del sitiu
|
||||
setting_trends: Amosar les tendencies de güei
|
||||
|
|
|
@ -41,13 +41,11 @@ be:
|
|||
current_password: У мэтах бяспекі, калі ласка, увядзіце пароль бягучага ўліковага запісу
|
||||
current_username: Каб пацвердзіць, увядзіце, калі ласка імя карыстальніка бягучага ўліковага запісу
|
||||
digest: Будзе даслана толькі пасля доўгага перыяду неактыўнасці і толькі калі вы атрымалі асабістыя паведамленні падчас вашай адсутнасці
|
||||
discoverable: Дазволіць незнаёмым людзям знаходзіць ваш уліковы запіс праз рэкамендацыі, трэнды і іншыя функцыі
|
||||
email: Пацвярджэнне будзе выслана па электроннай пошце
|
||||
header: PNG, GIF ці JPG. Не больш за %{size}. Будзе сціснуты да памеру %{dimensions}} пікселяў
|
||||
inbox_url: Капіраваць URL са старонкі рэтранслятара, якім вы хочаце карыстацца
|
||||
irreversible: Адфільтраваныя пасты прападуць незваротна, нават калі фільтр потым будзе выдалены
|
||||
locale: Мова карыстальніцкага інтэрфейсу, электронных паведамленняў і апавяшчэнняў
|
||||
locked: Уручную кантралюйце, хто можа быць вашым падпісантам, ухваляючы запросы на падпіску
|
||||
password: Не менш за 8 сімвалаў
|
||||
phrase: Параўнанне адбудзецца нягледзячы на рэгістр тэксту і папярэджанні аб змесціве допісу
|
||||
scopes: Якімі API праграм будзе дазволена карыстацца. Калі вы абярэце найвышэйшы ўзровень, не трэба абіраць асобныя.
|
||||
|
@ -57,9 +55,6 @@ be:
|
|||
setting_display_media_default: Хаваць медыя пазначаныя як далікатныя
|
||||
setting_display_media_hide_all: Заўсёды хаваць медыя
|
||||
setting_display_media_show_all: Заўсёды паказваць медыя
|
||||
setting_hide_network: Вашы падпіскі і вашы падпісчыкі будуць нябачны ў вашым профілі
|
||||
setting_noindex: Уплывае на бачнасць старонкі вашага профілю і вашых допісаў
|
||||
setting_show_application: Праграма, праз якую вы ствараеце допісы, будзе паказвацца ў падрабязнасцях пра допісы
|
||||
setting_use_blurhash: Градыенты заснаваны на колерах схаваных выяў, але размываюць дэталі
|
||||
setting_use_pending_items: Схаваць абнаўленні стужкі за клікам замест аўтаматычнага пракручвання стужкі
|
||||
username: Вы можаце выкарыстоўваць літары, лічбы і падкрэсліванне
|
||||
|
@ -178,7 +173,6 @@ be:
|
|||
context: Фільтр кантэкстаў
|
||||
current_password: Бягучы пароль
|
||||
data: Даныя
|
||||
discoverable: Рэкамендаваць уліковы запіс іншым карыстальнікам
|
||||
display_name: Адлюстраванае імя
|
||||
email: Адрас электроннай пошты
|
||||
expires_in: Заканчваецца пасля
|
||||
|
@ -188,7 +182,6 @@ be:
|
|||
inbox_url: URL паштовай скрыні-рэтранслятара
|
||||
irreversible: Выдаляць, а не хаваць
|
||||
locale: Мова інтэрфейсу
|
||||
locked: Зрабіць уліковы запіс закрытым
|
||||
max_uses: Максімальная колькасць выкарыстанняў
|
||||
new_password: Новы пароль
|
||||
note: Пра сябе
|
||||
|
@ -211,9 +204,7 @@ be:
|
|||
setting_display_media_show_all: Паказаць усё
|
||||
setting_expand_spoilers: Заўжды разгортваць допісы з папярэджаннем аб змесціве
|
||||
setting_hide_network: Схаваць вашы сувязі
|
||||
setting_noindex: Адмовіцца ад індэксавання пашуковымі рухавікамі
|
||||
setting_reduce_motion: Памяншэнне руху ў анімацыях
|
||||
setting_show_application: Паказваць праграмы, праз якія дасылаюцца допісы
|
||||
setting_system_font_ui: Выкарыстоўваць прадвызначаны сістэмны шрыфт
|
||||
setting_theme: Тэма сайта
|
||||
setting_trends: Паказваць трэнды дня
|
||||
|
|
|
@ -41,13 +41,11 @@ bg:
|
|||
current_password: От съображения за сигурност, въведете паролата на текущия акаунт
|
||||
current_username: Въведете потребителското име на текущия профил, за да потвърдите
|
||||
digest: Изпраща се само след дълъг период на бездействие и само ако сте получили лични съобщения във ваше отсъствие
|
||||
discoverable: Позволяване на странници да откриват вашия акаунт чрез препоръки, нашумели и други неща
|
||||
email: Ще ви се изпрати имейл за потвърждение
|
||||
header: PNG, GIF или JPG. До най-много %{size}. Ще се смали до %{dimensions} пиксела
|
||||
inbox_url: Копирайте URL адреса от заглавната страница на предаващия сървър, който искате да използвате
|
||||
irreversible: Филтрираните публикации ще изчезнат безвъзвратно, дори филтърът да бъде премахнат по-късно
|
||||
locale: Езикът на потребителския интерфейс, известиятата по имейл и насочените известия
|
||||
locked: Ръчно управляване кой може да ви последва, одобрявайки заявките за последване
|
||||
password: Използвайте поне 8 символа
|
||||
phrase: Ще съвпадне без значение дали са главни или малки букви, или ако е предупреждение към публикация
|
||||
scopes: Указва до кои API има достъп приложението. Ако изберете диапазон от най-високо ниво, няма нужда да избирате индивидуални.
|
||||
|
@ -57,9 +55,6 @@ bg:
|
|||
setting_display_media_default: Скриване на мултимедия отбелязана като деликатна
|
||||
setting_display_media_hide_all: Винаги скриване на мултимедията
|
||||
setting_display_media_show_all: Винаги показване на мултимедията
|
||||
setting_hide_network: В профила ви ще бъде скрито кой може да последвате и кой може да ви последва
|
||||
setting_noindex: Влияе на вашите обществен профил и страници с публикации
|
||||
setting_show_application: Приложението, което ползвате за публикуване, ще се показва в подробностите на публикацията ви
|
||||
setting_use_blurhash: Преливането е въз основа на цветовете на скритите визуализации, но се замъгляват подробностите
|
||||
setting_use_pending_items: Да се показват обновявания на часовата ос само след щракване вместо автоматично превъртане на инфоканала
|
||||
username: Може да ползвате букви, цифри и долни черти
|
||||
|
@ -178,7 +173,6 @@ bg:
|
|||
context: Прецеждане на контекста
|
||||
current_password: Текуща парола
|
||||
data: Данни
|
||||
discoverable: Предложете акаунта на други
|
||||
display_name: Показвано име
|
||||
email: Адрес на имейла
|
||||
expires_in: Изтича след
|
||||
|
@ -188,7 +182,6 @@ bg:
|
|||
inbox_url: URL адрес за входящи съобщения на предаващия сървър
|
||||
irreversible: Премахване, вместо скриване
|
||||
locale: Език на интерфейса
|
||||
locked: Направи акаунта поверителен
|
||||
max_uses: Макс брой употреби
|
||||
new_password: Нова парола
|
||||
note: Биогр.
|
||||
|
@ -211,9 +204,7 @@ bg:
|
|||
setting_display_media_show_all: Показване на всичко
|
||||
setting_expand_spoilers: Винаги разширяване на публикации, отбелязани с предупреждения за съдържание
|
||||
setting_hide_network: Скриване на социалния ви свързан граф
|
||||
setting_noindex: Отказвам се от индексирането от търсачки
|
||||
setting_reduce_motion: Обездвижване на анимациите
|
||||
setting_show_application: Разкриване на приложението, изпращащо публикации
|
||||
setting_system_font_ui: Употреба на стандартния шрифт на системата
|
||||
setting_theme: Тема на сайта
|
||||
setting_trends: Показване на днешното налагащо се
|
||||
|
|
|
@ -41,13 +41,11 @@ ca:
|
|||
current_password: Per motius de seguretat, introduïu la contrasenya del compte actual
|
||||
current_username: Per a confirmar, entreu el nom d'usuari del compte actual
|
||||
digest: Només s'envia després d'un llarg període d'inactivitat i només si has rebut algun missatge personal durant la teva absència
|
||||
discoverable: Permet que el teu compte sigui descobert per desconeguts a través de recomanacions, etiquetes i altres característiques
|
||||
email: Se t'enviarà un correu electrònic de confirmació
|
||||
header: PNG, GIF o JPG de com a màxim %{size}. S'escalarà a %{dimensions}px
|
||||
inbox_url: Copia l'enllaç de la pàgina principal del relay que vols usar
|
||||
irreversible: Els tuts filtrats desapareixeran de manera irreversible, fins i tot si el filtre es retira més tard
|
||||
locale: L'idioma de la interfície d’usuari, els correus i les notificacions push
|
||||
locked: Controla manualment qui et pot seguir, aprovant sol·licituds
|
||||
password: Utilitza com a mínim 8 caràcters
|
||||
phrase: Es combinarà independentment del format en el text o l'avís de contingut del tut
|
||||
scopes: API permeses per a accedir a l'aplicació. Si selecciones un àmbit de nivell superior, no cal que en seleccionis un d'individual.
|
||||
|
@ -57,9 +55,6 @@ ca:
|
|||
setting_display_media_default: Amaga el contingut gràfic marcat com a sensible
|
||||
setting_display_media_hide_all: Oculta sempre tot el contingut multimèdia
|
||||
setting_display_media_show_all: Mostra sempre el contingut gràfic
|
||||
setting_hide_network: Qui segueixes i els que et segueixen no es mostraran en el teu perfil
|
||||
setting_noindex: Afecta el teu perfil públic i les pàgines d'estat
|
||||
setting_show_application: L'aplicació que fas servir per a publicar es mostrarà a la vista detallada dels teus tuts
|
||||
setting_use_blurhash: Els degradats es basen en els colors de les imatges ocultes, però n'enfosqueixen els detalls
|
||||
setting_use_pending_items: Amaga les actualitzacions de la línia de temps després de fer un clic, en lloc de desplaçar-les automàticament
|
||||
username: Pots emprar lletres, números i subratllats
|
||||
|
@ -178,7 +173,6 @@ ca:
|
|||
context: Filtre els contextos
|
||||
current_password: Contrasenya actual
|
||||
data: Informació
|
||||
discoverable: Mostra aquest compte en el directori de perfils
|
||||
display_name: Nom visible
|
||||
email: Adreça de correu electrònic
|
||||
expires_in: Expira després
|
||||
|
@ -188,7 +182,6 @@ ca:
|
|||
inbox_url: Enllaç de la safata d'entrada del relay
|
||||
irreversible: Cau en lloc d'ocultar
|
||||
locale: Idioma de la interfície
|
||||
locked: Requereix sol·licituds de seguiment
|
||||
max_uses: Nombre màxim d'usos
|
||||
new_password: Contrasenya nova
|
||||
note: Biografia
|
||||
|
@ -211,9 +204,7 @@ ca:
|
|||
setting_display_media_show_all: Mostra-ho tot
|
||||
setting_expand_spoilers: Desplega sempre els tuts marcats amb advertències de contingut
|
||||
setting_hide_network: Amaga la teva xarxa
|
||||
setting_noindex: Desactiva la indexació dels motors de cerca
|
||||
setting_reduce_motion: Redueix el moviment de les animacions
|
||||
setting_show_application: Revela l'aplicació utilitzada per enviar tuts
|
||||
setting_system_font_ui: Usa la lletra predeterminada del sistema
|
||||
setting_theme: Tema del lloc
|
||||
setting_trends: Mostra les tendències d'avui
|
||||
|
|
|
@ -36,7 +36,6 @@ ckb:
|
|||
inbox_url: نیشانەی پەڕەی سەرەکی ئەو رێڵە کە هەرەکتە بەکاریببەیت ڕوونووس دەکات
|
||||
irreversible: توتە فلتەرکراوەکە بە شێوەیەکی نەگەڕاو فرەدەدرێن، تەنانەت ئەگەر فلتەردواتر لاببرێت
|
||||
locale: زمانی ڕووکاری بەکارهێنەر، ئیمەیلەکان و ئاگانامەکان
|
||||
locked: خۆت بڕیار بدە کێ دەتوانێت شوێنت بکەوێت بە وەرگتنی داوای شوێنکەوتن
|
||||
password: لایەنی کەم 8 نووسە بەکار بهێنە
|
||||
phrase: سەربەخۆ لە بچکۆلی و گەورەیی پیتەکان، لەگەڵ دەقی ئەسڵی یان ئاگانامەکانی ناوەرۆکی توتەکان هاوئاهەنگ دەکرێت
|
||||
scopes: APIـیەکانی بەرنامەنووسی کە ئەم ماڵپەڕە دەستپێگەیشتنی لەگەڵیان هیە. ئەگەر بەرزترین ئاست هەڵبژێرن ئیتر نیاز بە بژاردەی ئاستی نزم نییە.
|
||||
|
@ -45,9 +44,6 @@ ckb:
|
|||
setting_display_media_default: ئەو میدیایانە بشارەوە کە هەستیارن
|
||||
setting_display_media_hide_all: هەمیشە میدیا بشارەوە
|
||||
setting_display_media_show_all: هەمیشە میدیا نیشان بدە
|
||||
setting_hide_network: شوێنکەوتوو و شوێنکەوتنەکانت لە پرۆفایلەکەت نیشان نادرێن
|
||||
setting_noindex: کاردەکاتە سەر پرۆفایل و لاپەڕە گشتیەکانت
|
||||
setting_show_application: بەرنامەیەک کە بە یارمەتیت توت دەکەیت، لە دیمەنی وردی توتەکان پیشان دەدرێت
|
||||
setting_use_blurhash: سێبەرەکان لە سەر بنەمای ڕەنگەکانی بەکارهاتوو لە وێنە داشاراوەکان دروست دەبن بەڵام وردەزانیاری وێنە تێیدا ڕوون نییە
|
||||
setting_use_pending_items: لەجیاتی ئەوەی بە خۆکارانە کێشان هەبێت لە نووسراوەکان بە کرتەیەک بەڕۆژبوونی پێرستی نووسراوەکان بشارەوە
|
||||
whole_word: کاتێک کلیلوشە بریتییە لە ژمارە و پیت، تنەها کاتێک پەیدا دەبێت کە لەگەڵ گشتی وشە لە نێو دەقەکە هاوئاهەنگ بێت، نە تەنها لەگەڵ بەشێک لە وشە
|
||||
|
@ -116,7 +112,6 @@ ckb:
|
|||
context: چوارچێوەی پاڵافتن
|
||||
current_password: تێپەروشەی ئێستا
|
||||
data: دراوه
|
||||
discoverable: ئەم هەژمێرە لە پێرستی بژاردەی بەکارهێنەران نیشان بدە
|
||||
display_name: ناوی پیشاندان
|
||||
email: ناونیشانی ئیمەیڵ
|
||||
expires_in: بەسەردەچێت پاش
|
||||
|
@ -125,7 +120,6 @@ ckb:
|
|||
inbox_url: بەستەری سندوقی گواستنەوەی
|
||||
irreversible: فرێدان لەجیاتی شاردنەوە
|
||||
locale: زمانی پەڕەی بەکارهێنەر
|
||||
locked: داخستنی هەژمارە
|
||||
max_uses: زۆرترین ژمارەی بەکاربەرەکان
|
||||
new_password: تێپەروشەی نوێ
|
||||
note: دەربارەی ئیوە
|
||||
|
@ -147,9 +141,7 @@ ckb:
|
|||
setting_display_media_show_all: هەموو نیشان بدە
|
||||
setting_expand_spoilers: هەمیشە ئەو توتانەی کە بە ئاگادارکردنەوەکانی ناوەڕۆکەوە نیشانەکراون، پیسان بدە
|
||||
setting_hide_network: شاردنەوەی تۆڕەکەت
|
||||
setting_noindex: داوا لە مەکینەی گەڕان بۆ پیشاننەدان لە دەئەنجامی گەڕانەکان
|
||||
setting_reduce_motion: کەمکردنەوەی جوڵە لە ئەنیمەکان
|
||||
setting_show_application: ئاشکراکردنی ئەپەکان بۆ ناردنی توتەکان
|
||||
setting_system_font_ui: فۆنتی بنەڕەتی سیستەم بەکاربهێنە
|
||||
setting_theme: ڕووکاری ماڵپەڕ
|
||||
setting_trends: پیشاندانی نووسراوە بەرچاوکراوەی ئەمڕۆ
|
||||
|
|
|
@ -34,7 +34,6 @@ co:
|
|||
inbox_url: Cupiate l'URL di a pagina d'accolta di u ripetitore chì vulete utilizà
|
||||
irreversible: I statuti filtrati saranu sguassati di manera irreversibile, ancu s'ellu hè toltu u filtru
|
||||
locale: A lingua di l'interfaccia utilizatore, di l'e-mail è di e nutificazione push
|
||||
locked: Duvarete appruvà e dumande d’abbunamentu
|
||||
password: Ci volenu almenu 8 caratteri
|
||||
phrase: Sarà trovu senza primura di e maiuscule o di l'avertimenti
|
||||
scopes: L'API à quelle l'applicazione averà accessu. S'è voi selezziunate un parametru d'altu livellu, un c'hè micca bisognu di selezziunà quell'individuali.
|
||||
|
@ -43,9 +42,6 @@ co:
|
|||
setting_display_media_default: Piattà i media marcati cum'è sensibili
|
||||
setting_display_media_hide_all: Sempre piattà tutti i media
|
||||
setting_display_media_show_all: Sempre affissà i media marcati cum'è sensibili
|
||||
setting_hide_network: I vostri abbunati è abbunamenti ùn saranu micca mustrati nant’à u vostru prufile
|
||||
setting_noindex: Tocca à u vostru prufile pubblicu è i vostri statuti
|
||||
setting_show_application: L'applicazione chì voi utilizate per mandà statuti sarà affissata indè a vista ditagliata di quelli
|
||||
setting_use_blurhash: I digradati blurhash sò basati nant'à i culori di u ritrattu piattatu ma senza i ditagli
|
||||
setting_use_pending_items: Clicchi per messe à ghjornu i statuti invece di fà sfilà a linea autumaticamente
|
||||
whole_word: Quandu a parolla o a frasa sana hè alfanumerica, sarà applicata solu s'ella currisponde à a parolla sana
|
||||
|
@ -116,7 +112,6 @@ co:
|
|||
context: Cuntesti di u filtru
|
||||
current_password: Chjave d’accessu attuale
|
||||
data: Dati
|
||||
discoverable: Arregistrà stu contu indè l'annuariu
|
||||
display_name: Nome pubblicu
|
||||
email: Indirizzu e-mail
|
||||
expires_in: Spira dopu à
|
||||
|
@ -126,7 +121,6 @@ co:
|
|||
inbox_url: URL di l'inbox di u ripetitore
|
||||
irreversible: Sguassà invece di piattà
|
||||
locale: Lingua di l'interfaccia
|
||||
locked: Privatizà u contu
|
||||
max_uses: Numeru massimale d’utilizazione
|
||||
new_password: Nova chjave d’accessu
|
||||
note: Descrizzione
|
||||
|
@ -148,9 +142,7 @@ co:
|
|||
setting_display_media_show_all: Affissà tuttu
|
||||
setting_expand_spoilers: Sempre slibrà i statutu marcati cù un'avertimentu CW
|
||||
setting_hide_network: Piattà a vostra rete
|
||||
setting_noindex: Dumandà à i motori di ricerca internet d’un pudè micca esse truvatu·a cusì
|
||||
setting_reduce_motion: Fà chì l’animazione vanu più pianu
|
||||
setting_show_application: Indicà u nome di l'applicazione utilizata per mandà statuti
|
||||
setting_system_font_ui: Pulizza di caratteri di u sistemu
|
||||
setting_theme: Tema di u situ
|
||||
setting_trends: Vede e tendenze per oghji
|
||||
|
|
|
@ -41,13 +41,11 @@ cs:
|
|||
current_password: Z bezpečnostních důvodů prosím zadejte heslo současného účtu
|
||||
current_username: Potvrďte prosím tuto akci zadáním uživatelského jména aktuálního účtu
|
||||
digest: Odesíláno pouze po dlouhé době nečinnosti a pouze, pokud jste během své nepřítomnosti obdrželi osobní zprávy
|
||||
discoverable: Umožnit, aby mohli váš účet objevit neznámí lidé pomocí doporučení, trendů a dalších funkcí
|
||||
email: Bude vám poslán potvrzovací e-mail
|
||||
header: PNG, GIF či JPG. Maximálně %{size}. Bude zmenšen na %{dimensions} px
|
||||
inbox_url: Zkopírujte URL z hlavní stránky mostu, který chcete použít
|
||||
irreversible: Filtrované příspěvky nenávratně zmizí, i pokud bude filtr později odstraněn
|
||||
locale: Jazyk uživatelského rozhraní, e-mailů a push notifikací
|
||||
locked: Kontrolujte, kdo vás může sledovat pomocí schvalování žádostí o sledování
|
||||
password: Použijte alespoň 8 znaků
|
||||
phrase: Shoda bude nalezena bez ohledu na velikost písmen v textu příspěvku či varování o obsahu
|
||||
scopes: Která API bude aplikace moct používat. Pokud vyberete rozsah nejvyššího stupně, nebudete je muset vybírat jednotlivě.
|
||||
|
@ -57,9 +55,6 @@ cs:
|
|||
setting_display_media_default: Skrývat média označená jako citlivá
|
||||
setting_display_media_hide_all: Vždy skrývat média
|
||||
setting_display_media_show_all: Vždy zobrazovat média
|
||||
setting_hide_network: Koho sledujete a kdo sleduje vás bude na vašem profilu skryto
|
||||
setting_noindex: Ovlivňuje váš veřejný profil a stránky příspěvků
|
||||
setting_show_application: Aplikace, kterou používáte k odeslání příspěvků, bude zobrazena jejich detailním zobrazení
|
||||
setting_use_blurhash: Gradienty jsou založeny na barvách skryté grafiky, ale zakrývají jakékoliv detaily
|
||||
setting_use_pending_items: Aktualizovat časovou osu až po kliknutí namísto automatického rolování kanálu
|
||||
username: Pouze písmena, číslice a podtržítka
|
||||
|
@ -178,7 +173,6 @@ cs:
|
|||
context: Kontexty filtrů
|
||||
current_password: Současné heslo
|
||||
data: Data
|
||||
discoverable: Navrhovat účet ostatním
|
||||
display_name: Zobrazované jméno
|
||||
email: E-mailová adresa
|
||||
expires_in: Vypršet za
|
||||
|
@ -188,7 +182,6 @@ cs:
|
|||
inbox_url: URL příchozí schránky mostu
|
||||
irreversible: Zahodit místo skrytí
|
||||
locale: Jazyk rozhraní
|
||||
locked: Vynutit žádosti o sledování
|
||||
max_uses: Maximální počet použití
|
||||
new_password: Nové heslo
|
||||
note: O vás
|
||||
|
@ -211,9 +204,7 @@ cs:
|
|||
setting_display_media_show_all: Zobrazit vše
|
||||
setting_expand_spoilers: Vždy rozbalit příspěvky označené varováními o obsahu
|
||||
setting_hide_network: Skrýt mou síť
|
||||
setting_noindex: Neindexovat svůj profil vyhledávači
|
||||
setting_reduce_motion: Omezit pohyb v animacích
|
||||
setting_show_application: Odhalit aplikaci použitou k odeslání příspěvků
|
||||
setting_system_font_ui: Použít výchozí písmo systému
|
||||
setting_theme: Vzhled stránky
|
||||
setting_trends: Zobrazit dnešní trendy
|
||||
|
|
|
@ -41,13 +41,11 @@ cy:
|
|||
current_password: At ddibenion diogelwch, nodwch gyfrinair y cyfrif cyfredol
|
||||
current_username: I gadarnhau, nodwch enw defnyddiwr y cyfrif cyfredol
|
||||
digest: Ond yn cael eu hanfon ar ôl cyfnod hir o anweithgarwch ac ond os ydych wedi derbyn unrhyw negeseuon personol yn eich absenoldeb
|
||||
discoverable: Caniatáu i'ch cyfrif gael ei ddarganfod gan ddieithriaid trwy argymhellion, pynciau llosg a nodweddion eraill
|
||||
email: Byddwch yn derbyn e-bost cadarnhau
|
||||
header: PNG, GIF neu JPG. %{size} ar y mwyaf. Bydd yn cael ei israddio i %{dimensions}px
|
||||
inbox_url: Copïwch yr URL o dudalen flaen y relái yr ydych am ei ddefnyddio
|
||||
irreversible: Bydd postiadau wedi'u hidlo'n diflannu'n ddiwrthdro, hyd yn oed os caiff yr hidlydd ei dynnu'n ddiweddarach
|
||||
locale: Iaith y rhyngwyneb, e-byst a hysbysiadau gwthiadwy
|
||||
locked: Mae hyn yn eich galluogi i reoli pwy sy'n gallu eich dilyn drwy gymeradwyo ceisiadau dilyn
|
||||
password: Defnyddiwch o leiaf 8 nod
|
||||
phrase: Caiff ei gyfateb heb ystyriaeth o briflythrennu mewn testun neu rhybudd ynghylch cynnwys postiad
|
||||
scopes: Pa APIs y bydd y rhaglen yn cael mynediad iddynt. Os dewiswch gwmpas lefel uchaf, nid oes angen i chi ddewis rhai unigol.
|
||||
|
@ -57,9 +55,6 @@ cy:
|
|||
setting_display_media_default: Cuddio cyfryngau wedi eu marcio'n sensitif
|
||||
setting_display_media_hide_all: Cuddio cyfryngau bob tro
|
||||
setting_display_media_show_all: Dangos cyfryngau bob tro
|
||||
setting_hide_network: Ni fydd y pobl yr ydych chi'n eu dilyn a'ch dilynwyr yn ymddangos ar eich proffil
|
||||
setting_noindex: Mae hyn yn effeithio ar eich proffil cyhoeddus a'ch tudalennau statws
|
||||
setting_show_application: Bydd y cymhwysiad a ddefnyddiwch i bostio yn cael ei arddangos yng ngolwg fanwl eich postiadau
|
||||
setting_use_blurhash: Mae graddiannau wedi'u seilio ar liwiau'r delweddau cudd ond maen nhw'n cuddio unrhyw fanylion
|
||||
setting_use_pending_items: Cuddio diweddariadau llinell amser y tu ôl i glic yn lle sgrolio'n awtomatig
|
||||
username: Gallwch ddefnyddio nodau, rhifau a thanlinellau
|
||||
|
@ -178,7 +173,6 @@ cy:
|
|||
context: Hidlo cyd-destunau
|
||||
current_password: Cyfrinair cyfredol
|
||||
data: Data
|
||||
discoverable: Awgrymu cyfrif i eraill
|
||||
display_name: Enw dangos
|
||||
email: Cyfeiriad e-bost
|
||||
expires_in: Yn dod i ben ar ôl
|
||||
|
@ -188,7 +182,6 @@ cy:
|
|||
inbox_url: URL y mewnflwch relái
|
||||
irreversible: Gollwng yn hytrach na chuddio
|
||||
locale: Iaith y rhyngwyneb
|
||||
locked: Angen ceisiadau dilyn
|
||||
max_uses: Nifer y ddefnyddiau uchafswm
|
||||
new_password: Cyfrinair newydd
|
||||
note: Bywgraffiad
|
||||
|
@ -211,9 +204,7 @@ cy:
|
|||
setting_display_media_show_all: Dangos popeth
|
||||
setting_expand_spoilers: Dangos postiadau wedi'u marcio â rhybudd cynnwys bob tro
|
||||
setting_hide_network: Cuddio eich graff cymdeithasol
|
||||
setting_noindex: Eithrio rhag gael eich mynegeio gan beiriannau chwilio
|
||||
setting_reduce_motion: Lleihau mudiant mewn animeiddiadau
|
||||
setting_show_application: Datgelu rhaglen a ddefnyddir i anfon postiadau
|
||||
setting_system_font_ui: Defnyddio ffont rhagosodedig y system
|
||||
setting_theme: Thema'r wefan
|
||||
setting_trends: Dangos pynciau llosg heddiw
|
||||
|
|
|
@ -41,13 +41,11 @@ da:
|
|||
current_password: Angiv af sikkerhedsårsager adgangskoden til den aktuelle konto
|
||||
current_username: For at bekræfte, angiv brugernavnet for den aktuelle konto
|
||||
digest: Sendes kun efter en lang inaktivitetsperiode, og kun hvis du har modtaget personlige beskeder under fraværet
|
||||
discoverable: Tillad kontoen at blive fundet af fremmede via anbefalinger og øvrige funktioner
|
||||
email: En bekræftelses-e-mail fremsendes
|
||||
header: PNG, GIF eller JPG. Maks. %{size}. Auto-nedskaleres til %{dimensions}px
|
||||
inbox_url: Kopiér URL'en fra forsiden af den videreformidler, der skal anvendes
|
||||
irreversible: Filtrerede indlæg forsvinder permanent, selv hvis filteret senere fjernes
|
||||
locale: Sprog til brug for brugerflade, e-mails og push-notifikationer
|
||||
locked: Godkend manuelt følgeanmodninger for at styre, hvem der følger dig
|
||||
password: Brug mindst 8 tegn
|
||||
phrase: Matches uanset uanset brug af store/små bogstaver i teksten eller indholdsadvarsel for et indlæg
|
||||
scopes: De API'er, som applikationen vil kunne tilgå. Vælges en topniveaudstrækning, vil detailvalg være unødvendige.
|
||||
|
@ -57,9 +55,6 @@ da:
|
|||
setting_display_media_default: Skjul medier med sensitiv-markering
|
||||
setting_display_media_hide_all: Skjul altid medier
|
||||
setting_display_media_show_all: Vis altid medier
|
||||
setting_hide_network: Hvem du følger, og hvem som følger dig, skjules på din profil
|
||||
setting_noindex: Påvirker din offentlige profil samt indlægssider
|
||||
setting_show_application: Applikationen, hvormed der postes, vil fremgå af detailvisningen af dine indlæg
|
||||
setting_use_blurhash: Gradienter er baseret på de skjulte grafikelementers farver, men slører alle detaljer
|
||||
setting_use_pending_items: Skjul tidslinjeopdateringer bag et klik i stedet for brug af auto-feedrulning
|
||||
username: Bogstaver, cifre og understregningstegn kan benyttes
|
||||
|
@ -178,7 +173,6 @@ da:
|
|||
context: Kontekstfiltrering
|
||||
current_password: Aktuel adgangskode
|
||||
data: Data
|
||||
discoverable: Foreslå konto til andre
|
||||
display_name: Visningsnavn
|
||||
email: E-mailadresse
|
||||
expires_in: Udløb efter
|
||||
|
@ -188,7 +182,6 @@ da:
|
|||
inbox_url: URL til videreformidlingsindbakken
|
||||
irreversible: Fjern istedet for skjul
|
||||
locale: Grænsefladesprog
|
||||
locked: Kræv følgeanmodninger
|
||||
max_uses: Maks. antal afbenyttelser
|
||||
new_password: Ny adgangskode
|
||||
note: Biografi
|
||||
|
@ -211,9 +204,7 @@ da:
|
|||
setting_display_media_show_all: Vis alle
|
||||
setting_expand_spoilers: Ekspandér altid indlæg markeret med indholdsadvarsler
|
||||
setting_hide_network: Skjul din sociale graf
|
||||
setting_noindex: Fravælg søgemaskineindeksering
|
||||
setting_reduce_motion: Reducér animationsbevægelse
|
||||
setting_show_application: Vis applikationen brugt til at poste indlæg
|
||||
setting_system_font_ui: Brug systemets standardskrifttype
|
||||
setting_theme: Webstedstema
|
||||
setting_trends: Vis dagens tendenser
|
||||
|
|
|
@ -41,13 +41,11 @@ de:
|
|||
current_password: Gib aus Sicherheitsgründen bitte das Passwort des aktuellen Kontos ein
|
||||
current_username: Um das zu bestätigen, gib den Profilnamen des aktuellen Kontos ein
|
||||
digest: Wenn du eine längere Zeit inaktiv bist oder du während deiner Abwesenheit in einer privaten Nachricht erwähnt worden bist
|
||||
discoverable: Dein Konto kann von Fremden durch Empfehlungen, Trends und andere Funktionen entdeckt werden
|
||||
email: Du wirst eine E-Mail zur Verifizierung dieser E-Mail-Adresse erhalten
|
||||
header: PNG, GIF oder JPG. Höchstens %{size} groß. Wird auf %{dimensions} px verkleinert
|
||||
inbox_url: Kopiere die URL von der Startseite des gewünschten Relays
|
||||
irreversible: Bereinigte Beiträge verschwinden unwiderruflich für dich, auch dann, wenn dieser Filter zu einem späteren wieder entfernt wird
|
||||
locale: Die Sprache der Bedienoberfläche, E-Mails und Push-Benachrichtigungen
|
||||
locked: Wer dir folgen möchte, muss um deine Erlaubnis bitten
|
||||
password: Verwende mindestens 8 Zeichen
|
||||
phrase: Wird unabhängig von der Groß- und Kleinschreibung im Text oder der Inhaltswarnung eines Beitrags abgeglichen
|
||||
scopes: Welche Schnittstellen der Applikation erlaubt sind. Wenn du einen Top-Level-Scope auswählst, dann musst du nicht jeden einzelnen darunter auswählen.
|
||||
|
@ -57,9 +55,6 @@ de:
|
|||
setting_display_media_default: Medien mit Inhaltswarnung ausblenden
|
||||
setting_display_media_hide_all: Medien immer ausblenden
|
||||
setting_display_media_show_all: Medien mit Inhaltswarnung immer anzeigen
|
||||
setting_hide_network: Wem du folgst und wer dir folgt, wird auf deinem Profil nicht angezeigt
|
||||
setting_noindex: Betrifft dein öffentliches Profil und deine Beiträge
|
||||
setting_show_application: Die Anwendung die du nutzt wird in der detaillierten Ansicht deiner Beiträge angezeigt
|
||||
setting_use_blurhash: Der Farbverlauf basiert auf den Farben der ausgeblendeten Medien, verschleiert aber jegliche Details
|
||||
setting_use_pending_items: Neue Beiträge hinter einem Klick verstecken, anstatt automatisch zu scrollen
|
||||
username: Du kannst Buchstaben, Zahlen und Unterstriche verwenden
|
||||
|
@ -178,7 +173,6 @@ de:
|
|||
context: Nach Bereichen filtern
|
||||
current_password: Derzeitiges Passwort
|
||||
data: Daten
|
||||
discoverable: Anderen dieses Konto empfehlen
|
||||
display_name: Anzeigename
|
||||
email: E-Mail-Adresse
|
||||
expires_in: Läuft ab
|
||||
|
@ -188,7 +182,6 @@ de:
|
|||
inbox_url: Inbox-URL des Relais
|
||||
irreversible: Endgültig, nicht nur temporär ausblenden
|
||||
locale: Sprache des Webinterface
|
||||
locked: Geschütztes Profil
|
||||
max_uses: Maximale Anzahl von Verwendungen
|
||||
new_password: Neues Passwort
|
||||
note: Biografie
|
||||
|
@ -211,9 +204,7 @@ de:
|
|||
setting_display_media_show_all: Alle Medien anzeigen
|
||||
setting_expand_spoilers: Beiträge mit Inhaltswarnung immer ausklappen
|
||||
setting_hide_network: Follower und „Folge ich“ nicht anzeigen
|
||||
setting_noindex: Suchmaschinen-Indexierung verhindern
|
||||
setting_reduce_motion: Bewegung in Animationen verringern
|
||||
setting_show_application: Anwendung für das Veröffentlichen von Beiträgen offenlegen
|
||||
setting_system_font_ui: Standardschriftart des Browsers verwenden
|
||||
setting_theme: Design
|
||||
setting_trends: Heutige Trends anzeigen
|
||||
|
|
|
@ -37,13 +37,11 @@ el:
|
|||
current_password: Για λόγους ασφαλείας παρακαλώ γράψε τον κωδικό του τρέχοντος λογαριασμού
|
||||
current_username: Για επιβεβαίωση, παρακαλώ γράψε το όνομα χρήστη του τρέχοντος λογαριασμού
|
||||
digest: Αποστέλλεται μόνο μετά από μακρά περίοδο αδράνειας και μόνο αν έχεις λάβει προσωπικά μηνύματα κατά την απουσία σου
|
||||
discoverable: Επέτρεψε στον λογαριασμό σου να ανακαλυφθεί από αγνώστους μέσω συστάσεων, τάσεων και άλλων χαρακτηριστικών
|
||||
email: Θα σου σταλεί email επιβεβαίωσης
|
||||
header: PNG, GIF ή JPG. Έως %{size}. Θα περιοριστεί σε διάσταση %{dimensions}px
|
||||
inbox_url: Αντέγραψε το URL της αρχικής σελίδας του ανταποκριτή που θέλεις να χρησιμοποιήσεις
|
||||
irreversible: Οι φιλτραρισμένες αναρτήσεις θα εξαφανιστούν αμετάκλητα, ακόμα και αν το φίλτρο αργότερα αφαιρεθεί
|
||||
locale: Η γλώσσα χρήσης, των email και των ειδοποιήσεων push
|
||||
locked: Απαιτεί να εγκρίνεις χειροκίνητα τους ακόλουθούς σου
|
||||
password: Χρησιμοποίησε τουλάχιστον 8 χαρακτήρες
|
||||
phrase: Θα ταιριάζει ανεξαρτήτως πεζών/κεφαλαίων ή προειδοποίησης περιεχομένου μιας ανάρτησης
|
||||
scopes: Ποια API θα επιτρέπεται στην εφαρμογή να χρησιμοποιήσεις. Αν επιλέξεις κάποιο υψηλό εύρος εφαρμογής, δε χρειάζεται να επιλέξεις και το καθένα ξεχωριστά.
|
||||
|
@ -53,9 +51,6 @@ el:
|
|||
setting_display_media_default: Απόκρυψη ευαίσθητων πολυμέσων
|
||||
setting_display_media_hide_all: Μόνιμη απόκρυψη όλων των πολυμέσων
|
||||
setting_display_media_show_all: Πάντα εμφάνιση πολυμέσων
|
||||
setting_hide_network: Δε θα εμφανίζεται στο προφίλ σου ποιους ακολουθείς και ποιοι σε ακολουθούν
|
||||
setting_noindex: Επηρεάζει το δημόσιο προφίλ και τις αναρτήσεις σου
|
||||
setting_show_application: Η εφαρμογή που χρησιμοποιείς για να κάνεις τις αναρτήσεις σου θα εμφανίζεται στις αναλυτικές λεπτομέρειες των αναρτήσεων σου
|
||||
setting_use_blurhash: Οι χρωματισμοί βασίζονται στα χρώματα του κρυμμένου πολυμέσου αλλά θολώνουν τις λεπτομέρειες
|
||||
setting_use_pending_items: Εμφάνιση ενημερώσεων ροής μετά από κλικ αντί για αυτόματη κύλισή τους
|
||||
username: Μπορείς να χρησιμοποιήσεις γράμματα, αριθμούς και κάτω παύλες
|
||||
|
@ -173,7 +168,6 @@ el:
|
|||
context: Πλαίσια φιλτραρίσματος
|
||||
current_password: Τρέχον συνθηματικό
|
||||
data: Δεδομένα
|
||||
discoverable: Εμφάνιση αυτού του λογαριασμού στον κατάλογο
|
||||
display_name: Όνομα εμφάνισης
|
||||
email: Διεύθυνση email
|
||||
expires_in: Λήξη μετά από
|
||||
|
@ -183,7 +177,6 @@ el:
|
|||
inbox_url: Το URL του inbox του ανταποκριτή (relay)
|
||||
irreversible: Απόρριψη αντί για κρύψιμο
|
||||
locale: Γλώσσα χρήσης
|
||||
locked: Κλείδωμα λογαριασμού
|
||||
max_uses: Μέγιστος αριθμός χρήσεων
|
||||
new_password: Νέο συνθηματικό
|
||||
note: Βιογραφικό
|
||||
|
@ -206,9 +199,7 @@ el:
|
|||
setting_display_media_show_all: Εμφάνιση όλων
|
||||
setting_expand_spoilers: Μόνιμη ανάπτυξη των τουτ με προειδοποίηση περιεχομένου
|
||||
setting_hide_network: Κρύψε τις διασυνδέσεις σου
|
||||
setting_noindex: Επέλεξε να μην συμμετέχεις στα αποτελέσματα μηχανών αναζήτησης
|
||||
setting_reduce_motion: Μείωση κίνησης κινουμένων στοιχείων
|
||||
setting_show_application: Αποκάλυψη εφαρμογής που χρησιμοποιήθηκε για την αποστολή των τουτ
|
||||
setting_system_font_ui: Χρήση της προεπιλεγμένης γραμματοσειράς του συστήματος
|
||||
setting_theme: Θέμα ιστότοπου
|
||||
setting_trends: Εμφάνιση σημερινών τάσεων
|
||||
|
|
|
@ -41,13 +41,11 @@ en-GB:
|
|||
current_password: For security purposes please enter the password of the current account
|
||||
current_username: To confirm, please enter the username of the current account
|
||||
digest: Only sent after a long period of inactivity and only if you have received any personal messages in your absence
|
||||
discoverable: Allow your account to be discovered by strangers through recommendations, trends and other features
|
||||
email: You will be sent a confirmation e-mail
|
||||
header: PNG, GIF or JPG. At most %{size}. Will be downscaled to %{dimensions}px
|
||||
inbox_url: Copy the URL from the frontpage of the relay you want to use
|
||||
irreversible: Filtered posts will disappear irreversibly, even if filter is later removed
|
||||
locale: The language of the user interface, e-mails and push notifications
|
||||
locked: Manually control who can follow you by approving follow requests
|
||||
password: Use at least 8 characters
|
||||
phrase: Will be matched regardless of casing in text or content warning of a post
|
||||
scopes: Which APIs the application will be allowed to access. If you select a top-level scope, you don't need to select individual ones.
|
||||
|
@ -57,9 +55,6 @@ en-GB:
|
|||
setting_display_media_default: Hide media marked as sensitive
|
||||
setting_display_media_hide_all: Always hide media
|
||||
setting_display_media_show_all: Always show media
|
||||
setting_hide_network: Who you follow and who follows you will be hidden on your profile
|
||||
setting_noindex: Affects your public profile and post pages
|
||||
setting_show_application: The application you use to post will be displayed in the detailed view of your posts
|
||||
setting_use_blurhash: Gradients are based on the colors of the hidden visuals but obfuscate any details
|
||||
setting_use_pending_items: Hide timeline updates behind a click instead of automatically scrolling the feed
|
||||
username: You can use letters, numbers, and underscores
|
||||
|
@ -178,7 +173,6 @@ en-GB:
|
|||
context: Filter contexts
|
||||
current_password: Current password
|
||||
data: Data
|
||||
discoverable: Suggest account to others
|
||||
display_name: Display name
|
||||
email: E-mail address
|
||||
expires_in: Expire after
|
||||
|
@ -188,7 +182,6 @@ en-GB:
|
|||
inbox_url: URL of the relay inbox
|
||||
irreversible: Drop instead of hide
|
||||
locale: Interface language
|
||||
locked: Require follow requests
|
||||
max_uses: Max number of uses
|
||||
new_password: New password
|
||||
note: Bio
|
||||
|
@ -211,9 +204,7 @@ en-GB:
|
|||
setting_display_media_show_all: Show all
|
||||
setting_expand_spoilers: Always expand posts marked with content warnings
|
||||
setting_hide_network: Hide your social graph
|
||||
setting_noindex: Opt-out of search engine indexing
|
||||
setting_reduce_motion: Reduce motion in animations
|
||||
setting_show_application: Disclose application used to send posts
|
||||
setting_system_font_ui: Use system's default font
|
||||
setting_theme: Site theme
|
||||
setting_trends: Show today's trends
|
||||
|
|
|
@ -3,9 +3,12 @@ en:
|
|||
simple_form:
|
||||
hints:
|
||||
account:
|
||||
discoverable: Your public posts and profile may be featured or recommended in various areas of Mastodon and your profile may be suggested to other users.
|
||||
display_name: Your full name or your fun name.
|
||||
fields: Your homepage, pronouns, age, anything you want.
|
||||
note: 'You can @mention other people or #hashtags.'
|
||||
show_collections: People will be able to browse through your follows and followers. People that you follow will see that you follow them regardless.
|
||||
unlocked: People will be able to follow you without requesting approval. Uncheck if you want to review follow requests and chose whether to accept or reject new followers.
|
||||
account_alias:
|
||||
acct: Specify the username@domain of the account you want to move from
|
||||
account_migration:
|
||||
|
@ -41,13 +44,11 @@ en:
|
|||
current_password: For security purposes please enter the password of the current account
|
||||
current_username: To confirm, please enter the username of the current account
|
||||
digest: Only sent after a long period of inactivity and only if you have received any personal messages in your absence
|
||||
discoverable: Allow your account to be discovered by strangers through recommendations, trends and other features
|
||||
email: You will be sent a confirmation e-mail
|
||||
header: PNG, GIF or JPG. At most %{size}. Will be downscaled to %{dimensions}px
|
||||
inbox_url: Copy the URL from the frontpage of the relay you want to use
|
||||
irreversible: Filtered posts will disappear irreversibly, even if filter is later removed
|
||||
locale: The language of the user interface, e-mails and push notifications
|
||||
locked: Manually control who can follow you by approving follow requests
|
||||
password: Use at least 8 characters
|
||||
phrase: Will be matched regardless of casing in text or content warning of a post
|
||||
scopes: Which APIs the application will be allowed to access. If you select a top-level scope, you don't need to select individual ones.
|
||||
|
@ -57,9 +58,6 @@ en:
|
|||
setting_display_media_default: Hide media marked as sensitive
|
||||
setting_display_media_hide_all: Always hide media
|
||||
setting_display_media_show_all: Always show media
|
||||
setting_hide_network: Who you follow and who follows you will be hidden on your profile
|
||||
setting_noindex: Affects your public profile and post pages
|
||||
setting_show_application: The application you use to post will be displayed in the detailed view of your posts
|
||||
setting_use_blurhash: Gradients are based on the colors of the hidden visuals but obfuscate any details
|
||||
setting_use_pending_items: Hide timeline updates behind a click instead of automatically scrolling the feed
|
||||
username: You can use letters, numbers, and underscores
|
||||
|
@ -121,6 +119,9 @@ en:
|
|||
sessions:
|
||||
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.
|
||||
settings:
|
||||
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.
|
||||
tag:
|
||||
name: You can only change the casing of the letters, for example, to make it more readable
|
||||
user:
|
||||
|
@ -138,9 +139,12 @@ en:
|
|||
url: Where events will be sent to
|
||||
labels:
|
||||
account:
|
||||
discoverable: Feature profile and posts in discovery algorithms
|
||||
fields:
|
||||
name: Label
|
||||
value: Content
|
||||
show_collections: Show follows and followers on profile
|
||||
unlocked: Automatically accept new followers
|
||||
account_alias:
|
||||
acct: Handle of the old account
|
||||
account_migration:
|
||||
|
@ -178,7 +182,6 @@ en:
|
|||
context: Filter contexts
|
||||
current_password: Current password
|
||||
data: Data
|
||||
discoverable: Suggest account to others
|
||||
display_name: Display name
|
||||
email: E-mail address
|
||||
expires_in: Expire after
|
||||
|
@ -188,7 +191,6 @@ en:
|
|||
inbox_url: URL of the relay inbox
|
||||
irreversible: Drop instead of hide
|
||||
locale: Interface language
|
||||
locked: Require follow requests
|
||||
max_uses: Max number of uses
|
||||
new_password: New password
|
||||
note: Bio
|
||||
|
@ -211,9 +213,7 @@ en:
|
|||
setting_display_media_show_all: Show all
|
||||
setting_expand_spoilers: Always expand posts marked with content warnings
|
||||
setting_hide_network: Hide your social graph
|
||||
setting_noindex: Opt-out of search engine indexing
|
||||
setting_reduce_motion: Reduce motion in animations
|
||||
setting_show_application: Disclose application used to send posts
|
||||
setting_system_font_ui: Use system's default font
|
||||
setting_theme: Site theme
|
||||
setting_trends: Show today's trends
|
||||
|
@ -292,6 +292,9 @@ en:
|
|||
trending_tag: New trend requires review
|
||||
rule:
|
||||
text: Rule
|
||||
settings:
|
||||
indexable: Include profile page in search engines
|
||||
show_application: Display from which app you sent a post
|
||||
tag:
|
||||
listable: Allow this hashtag to appear in searches and suggestions
|
||||
name: Hashtag
|
||||
|
|
|
@ -41,13 +41,11 @@ eo:
|
|||
current_password: Pro sekuraj kialoj, bonvolu enigi la pasvorton de la nuna konto
|
||||
current_username: Por konfirmi, bonvolu enigi la uzantnomon de la nuna konto
|
||||
digest: Sendita nur post longa tempo de neaktiveco, kaj nur se vi ricevis personan mesaĝon en via foresto
|
||||
discoverable: Permesi vian konton esti malkovrita de fremduloj per rekomendoj, tendencoj kaj aliaj funkcioj
|
||||
email: Vi ricevos konfirman retpoŝton
|
||||
header: Formato PNG, GIF aŭ JPG. Ĝis %{size}. Estos malgrandigita al %{dimensions}px
|
||||
inbox_url: Kopiu la URL de la ĉefpaĝo de la ripetilo, kiun vi volas uzi
|
||||
irreversible: La filtritaj mesaĝoj malaperos por eterne, eĉ se la filtrilo poste estas forigita
|
||||
locale: La lingvo de la fasado, retpoŝtaĵoj, kaj sciigoj
|
||||
locked: Vi devos aprobi ĉiun peton de sekvado mane
|
||||
password: Uzu almenaŭ 8 signojn
|
||||
phrase: Estos provita senzorge pri la uskleco de teksto aŭ averto pri enhavo de mesaĝo
|
||||
scopes: Kiujn API-ojn la aplikaĵo permesiĝos atingi. Se vi elektas supran amplekson, vi ne bezonas elekti la individuajn.
|
||||
|
@ -57,9 +55,6 @@ eo:
|
|||
setting_display_media_default: Kaŝi plurmediojn markitajn kiel tiklaj
|
||||
setting_display_media_hide_all: Ĉiam kaŝi la plurmediojn
|
||||
setting_display_media_show_all: Ĉiam montri la plurmediojn
|
||||
setting_hide_network: Tiuj kiujn vi sekvas, kaj tiuj kiuj sekvas vin estos kaŝitaj en via profilo
|
||||
setting_noindex: Influas vian publikan profilon kaj afiŝajn paĝojn
|
||||
setting_show_application: La aplikaĵo, kiun vi uzas por afiŝi, estos montrita en la detala vido de viaj afiŝoj
|
||||
setting_use_blurhash: Transirojn estas bazita sur la koloroj de la kaŝitaj aŭdovidaĵoj sed ne montri iun ajn detalon
|
||||
setting_use_pending_items: Kaŝi tempoliniajn ĝisdatigojn malantaŭ klako anstataŭ aŭtomate rulumi la fluon
|
||||
username: Vi povas uzi literojn, ciferojn kaj substrekojn
|
||||
|
@ -178,7 +173,6 @@ eo:
|
|||
context: Filtri kuntekstojn
|
||||
current_password: Nuna pasvorto
|
||||
data: Datumoj
|
||||
discoverable: Montri ĉi tiun konton en la profilujo
|
||||
display_name: Publika nomo
|
||||
email: Retadreso
|
||||
expires_in: Eksvalidiĝas post
|
||||
|
@ -188,7 +182,6 @@ eo:
|
|||
inbox_url: URL de la ripetila enirkesto
|
||||
irreversible: Forĵeti anstataŭ kaŝi
|
||||
locale: Lingvo de la fasado
|
||||
locked: Ŝlosi konton
|
||||
max_uses: Maksimuma nombro de uzoj
|
||||
new_password: Nova pasvorto
|
||||
note: Sinprezento
|
||||
|
@ -211,9 +204,7 @@ eo:
|
|||
setting_display_media_show_all: Montri ĉiujn
|
||||
setting_expand_spoilers: Ĉiam malfoldas mesaĝojn markitajn per averto pri enhavo
|
||||
setting_hide_network: Kaŝi viajn sekvantojn kaj sekvatojn
|
||||
setting_noindex: Ellistiĝi de retserĉila indeksado
|
||||
setting_reduce_motion: Redukti la movecojn de la animacioj
|
||||
setting_show_application: Publikigi la aplikaĵon uzatan por sendi mesaĝojn
|
||||
setting_system_font_ui: Uzi la dekomencan tiparon de la sistemo
|
||||
setting_theme: Etoso de la retejo
|
||||
setting_trends: Montri hodiaŭajn furoraĵojn
|
||||
|
|
|
@ -41,13 +41,11 @@ es-AR:
|
|||
current_password: Por razones de seguridad, por favor, ingresá la contraseña de la cuenta actual
|
||||
current_username: Para confirmar, por favor, ingresá el nombre de usuario de la cuenta actual
|
||||
digest: Sólo enviado tras un largo periodo de inactividad, y sólo si recibiste mensajes personales en tu ausencia
|
||||
discoverable: Permití que tu cuenta sea descubierta por extraños a través de recomendaciones, tendencias y otras funciones
|
||||
email: Se te enviará un correo electrónico de confirmación
|
||||
header: 'PNG, GIF o JPG. Máximo: %{size}. Será subescalado a %{dimensions} píxeles.'
|
||||
inbox_url: Copiá la dirección web desde la página principal del relé que querés usar
|
||||
irreversible: Los mensajes filtrados desaparecerán irreversiblemente, incluso si este filtro es eliminado después
|
||||
locale: El idioma de la interface de usuario, correos electrónicos y notificaciones push
|
||||
locked: Controlá manualmente quién puede seguirte al aprobar solicitudes de seguimiento
|
||||
password: Usá al menos 8 caracteres
|
||||
phrase: Se aplicará sin importar las mayúsculas o las advertencias de contenido de un mensaje
|
||||
scopes: Qué APIs de la aplicación tendrán acceso. Si seleccionás el alcance de nivel más alto, no necesitás seleccionar las individuales.
|
||||
|
@ -57,9 +55,6 @@ es-AR:
|
|||
setting_display_media_default: Ocultar medios marcados como sensibles
|
||||
setting_display_media_hide_all: Siempre ocultar todos los medios
|
||||
setting_display_media_show_all: Siempre mostrar todos los medios
|
||||
setting_hide_network: Las cuentas que seguís y tus seguidores serán ocultados en tu perfil
|
||||
setting_noindex: Afecta a tu perfil público y páginas de mensajes
|
||||
setting_show_application: La aplicación que usás para enviar mensajes se mostrará en la vista detallada de tus mensajes
|
||||
setting_use_blurhash: Los gradientes se basan en los colores de las imágenes ocultas pero haciendo borrosos los detalles
|
||||
setting_use_pending_items: Ocultar actualizaciones de la línea temporal detrás de un clic en lugar de desplazar automáticamente el flujo
|
||||
username: Podés usar letras, números y subguiones ("_")
|
||||
|
@ -178,7 +173,6 @@ es-AR:
|
|||
context: Filtrar contextos
|
||||
current_password: Contraseña actual
|
||||
data: Datos
|
||||
discoverable: Sugerir cuenta a otros
|
||||
display_name: Nombre para mostrar
|
||||
email: Dirección de correo electrónico
|
||||
expires_in: Vence después de
|
||||
|
@ -188,7 +182,6 @@ es-AR:
|
|||
inbox_url: Dirección web de la bandeja de entrada del relé
|
||||
irreversible: Dejar en lugar de ocultar
|
||||
locale: Idioma de la interface
|
||||
locked: Requerir solicitudes de seguimiento
|
||||
max_uses: Número máximo de usos
|
||||
new_password: Nueva contraseña
|
||||
note: Biografía
|
||||
|
@ -211,9 +204,7 @@ es-AR:
|
|||
setting_display_media_show_all: Mostrar todo
|
||||
setting_expand_spoilers: Siempre expandir los mensajes marcados con advertencias de contenido
|
||||
setting_hide_network: Ocultá tu gráfica social
|
||||
setting_noindex: Excluirse del indexado de motores de búsqueda
|
||||
setting_reduce_motion: Reducir el movimiento de las animaciones
|
||||
setting_show_application: Mostrar aplicación usada para enviar mensajes
|
||||
setting_system_font_ui: Utilizar la tipografía predeterminada del sistema
|
||||
setting_theme: Tema del sitio
|
||||
setting_trends: Mostrar las tendencias de hoy
|
||||
|
|
|
@ -41,13 +41,11 @@ es-MX:
|
|||
current_password: Por razones de seguridad por favor ingrese la contraseña de la cuenta actual
|
||||
current_username: Para confirmar, por favor ingrese el nombre de usuario de la cuenta actual
|
||||
digest: Solo enviado tras un largo periodo de inactividad y solo si has recibido mensajes personales durante tu ausencia
|
||||
discoverable: Permite que tu cuenta sea descubierta por extraños a través de recomendaciones, tendencias y otras características
|
||||
email: Se le enviará un correo de confirmación
|
||||
header: PNG, GIF o JPG. Máximo %{size}. Será escalado a %{dimensions}px
|
||||
inbox_url: Copia la URL de la página principal del relés que quieres utilizar
|
||||
irreversible: Los toots filtrados desaparecerán irreversiblemente, incluso si este filtro es eliminado más adelante
|
||||
locale: El idioma de la interfaz de usuario, correos y notificaciones push
|
||||
locked: Requiere que manualmente apruebes seguidores y las publicaciones serán mostradas solamente a tus seguidores
|
||||
password: Utilice al menos 8 caracteres
|
||||
phrase: Se aplicará sin importar las mayúsculas o los avisos de contenido de un toot
|
||||
scopes: Qué APIs de la aplicación tendrán acceso. Si seleccionas el alcance de nivel mas alto, no necesitas seleccionar las individuales.
|
||||
|
@ -57,9 +55,6 @@ es-MX:
|
|||
setting_display_media_default: Ocultar contenido multimedia marcado como sensible
|
||||
setting_display_media_hide_all: Siempre ocultar todo el contenido multimedia
|
||||
setting_display_media_show_all: Mostrar siempre contenido multimedia marcado como sensible
|
||||
setting_hide_network: A quién sigues y quién te sigue no será mostrado en tu perfil
|
||||
setting_noindex: Afecta a tu perfil público y páginas de estado
|
||||
setting_show_application: La aplicación que utiliza usted para publicar toots se mostrará en la vista detallada de sus toots
|
||||
setting_use_blurhash: Los gradientes se basan en los colores de las imágenes ocultas pero haciendo borrosos los detalles
|
||||
setting_use_pending_items: Ocultar nuevos estados detrás de un clic en lugar de desplazar automáticamente el feed
|
||||
username: Puedes usar letras, números y guiones bajos
|
||||
|
@ -178,7 +173,6 @@ es-MX:
|
|||
context: Filtrar contextos
|
||||
current_password: Contraseña actual
|
||||
data: Información
|
||||
discoverable: Listar esta cuenta en el directorio
|
||||
display_name: Nombre para mostrar
|
||||
email: Dirección de correo electrónico
|
||||
expires_in: Expirar tras
|
||||
|
@ -188,7 +182,6 @@ es-MX:
|
|||
inbox_url: URL de la entrada de relés
|
||||
irreversible: Dejar en lugar de ocultar
|
||||
locale: Idioma
|
||||
locked: Hacer privada esta cuenta
|
||||
max_uses: Máx. número de usos
|
||||
new_password: Nueva contraseña
|
||||
note: Biografía
|
||||
|
@ -211,9 +204,7 @@ es-MX:
|
|||
setting_display_media_show_all: Mostrar todo
|
||||
setting_expand_spoilers: Siempre expandir los toots marcados con advertencias de contenido
|
||||
setting_hide_network: Ocultar tu red
|
||||
setting_noindex: Excluirse del indexado de motores de búsqueda
|
||||
setting_reduce_motion: Reducir el movimiento de las animaciones
|
||||
setting_show_application: Mostrar aplicación usada para publicar toots
|
||||
setting_system_font_ui: Utilizar la tipografía por defecto del sistema
|
||||
setting_theme: Tema del sitio
|
||||
setting_trends: Mostrar las tendencias de hoy
|
||||
|
|
|
@ -41,13 +41,11 @@ es:
|
|||
current_password: Por razones de seguridad por favor ingrese la contraseña de la cuenta actual
|
||||
current_username: Para confirmar, por favor ingrese el nombre de usuario de la cuenta actual
|
||||
digest: Solo enviado tras un largo periodo de inactividad y solo si has recibido mensajes personales durante tu ausencia
|
||||
discoverable: Permite que tu cuenta sea descubierta por extraños a través de recomendaciones, tendencias y otras características
|
||||
email: Se le enviará un correo de confirmación
|
||||
header: PNG, GIF o JPG. Máximo %{size}. Será escalado a %{dimensions}px
|
||||
inbox_url: Copia la URL de la página principal del relés que quieres utilizar
|
||||
irreversible: Las publicaciones filtradas desaparecerán irreversiblemente, incluso si este filtro es eliminado más adelante
|
||||
locale: El idioma de la interfaz de usuario, correos y notificaciones push
|
||||
locked: Requiere que manualmente apruebes seguidores y las publicaciones serán mostradas solamente a tus seguidores
|
||||
password: Utilice al menos 8 caracteres
|
||||
phrase: Se aplicará sin importar las mayúsculas o los avisos de contenido de una publicación
|
||||
scopes: Qué APIs de la aplicación tendrán acceso. Si seleccionas el alcance de nivel mas alto, no necesitas seleccionar las individuales.
|
||||
|
@ -57,9 +55,6 @@ es:
|
|||
setting_display_media_default: Ocultar contenido multimedia marcado como sensible
|
||||
setting_display_media_hide_all: Siempre ocultar todo el contenido multimedia
|
||||
setting_display_media_show_all: Mostrar siempre contenido multimedia marcado como sensible
|
||||
setting_hide_network: A quién sigues y quién te sigue no será mostrado en tu perfil
|
||||
setting_noindex: Afecta a tu perfil público y a tus publicaciones
|
||||
setting_show_application: La aplicación que utiliza usted para publicar publicaciones se mostrará en la vista detallada de sus publicaciones
|
||||
setting_use_blurhash: Los gradientes se basan en los colores de las imágenes ocultas pero haciendo borrosos los detalles
|
||||
setting_use_pending_items: Ocultar nuevas publicaciones detrás de un clic en lugar de desplazar automáticamente el feed
|
||||
username: Puedes usar letras, números y guiones bajos
|
||||
|
@ -178,7 +173,6 @@ es:
|
|||
context: Filtrar contextos
|
||||
current_password: Contraseña actual
|
||||
data: Información
|
||||
discoverable: Sugerir la cuenta a otros
|
||||
display_name: Nombre para mostrar
|
||||
email: Dirección de correo electrónico
|
||||
expires_in: Expirar tras
|
||||
|
@ -188,7 +182,6 @@ es:
|
|||
inbox_url: URL de la entrada de relés
|
||||
irreversible: Rechazar en lugar de ocultar
|
||||
locale: Idioma
|
||||
locked: Hacer privada esta cuenta
|
||||
max_uses: Máx. número de usos
|
||||
new_password: Nueva contraseña
|
||||
note: Biografía
|
||||
|
@ -211,9 +204,7 @@ es:
|
|||
setting_display_media_show_all: Mostrar todo
|
||||
setting_expand_spoilers: Siempre expandir las publicaciones marcadas con advertencias de contenido
|
||||
setting_hide_network: Ocultar tu red
|
||||
setting_noindex: Excluirse del indexado de motores de búsqueda
|
||||
setting_reduce_motion: Reducir el movimiento de las animaciones
|
||||
setting_show_application: Mostrar aplicación usada para publicar publicaciones
|
||||
setting_system_font_ui: Utilizar la tipografía por defecto del sistema
|
||||
setting_theme: Tema del sitio
|
||||
setting_trends: Mostrar las tendencias de hoy
|
||||
|
|
|
@ -41,13 +41,11 @@ et:
|
|||
current_password: Sisesta turvalisuse huvides oma siinse konto salasõna
|
||||
current_username: Kinnitamiseks palun sisesta oma konto kasutajanimi
|
||||
digest: Saadetakse ainult pärast pikka tegevusetuse perioodi ja ainult siis, kui on saadetud otsesõnumeid
|
||||
discoverable: Konto on leitav võhivõõraste jaoks soovituste ja trendide sirvimise teel vm sarnaste vahenditega
|
||||
email: Sulle saadetakse e-posti teel kinnituskiri
|
||||
header: PNG, GIF või JPG. Kõige rohkem %{size}. Vähendatakse %{dimensions} pikslini
|
||||
inbox_url: Kopeeri soovitud vahendaja avalehe URL
|
||||
irreversible: Filtreeritud postitused kaovad taastamatult, isegi kui filter on hiljem eemaldatud
|
||||
locale: Kasutajaliidese, e-kirjade ja tõuketeadete keel
|
||||
locked: Nõuab käsitsi jälgijate kinnitamist
|
||||
password: Vajalik on vähemalt 8 märki
|
||||
phrase: Kattub olenemata postituse teksti suurtähtedest või sisuhoiatusest
|
||||
scopes: Milliseid API-sid see rakendus tohib kasutada. Kui valid kõrgeima taseme, ei pea üksikuid eraldi valima.
|
||||
|
@ -57,9 +55,6 @@ et:
|
|||
setting_display_media_default: Peida tundlikuks märgitud meedia
|
||||
setting_display_media_hide_all: Alati peida kõik meedia
|
||||
setting_display_media_show_all: Alati näita tundlikuks märgistatud meedia
|
||||
setting_hide_network: Profiilil ei kuvata, keda sa jälgid ja kes sind jälgib
|
||||
setting_noindex: Mõjutab avalikku profiili ja postituste lehekülgi
|
||||
setting_show_application: Postitamiseks kasutatud rakenduse infot kuvatakse postituse üksikasjavaates
|
||||
setting_use_blurhash: Värvid põhinevad peidetud visuaalidel, kuid hägustavad igasuguseid detaile
|
||||
setting_use_pending_items: Voo automaatse kerimise asemel peida ajajoone uuendused kliki taha
|
||||
username: Võid kasutada ladina tähti, numbreid ja allkriipsu
|
||||
|
@ -178,7 +173,6 @@ et:
|
|||
context: Filtreeri kontekste
|
||||
current_password: Kehtiv salasõna
|
||||
data: Andmed
|
||||
discoverable: Lisa see konto kataloogi
|
||||
display_name: Kuvanimi
|
||||
email: E-posti aadress
|
||||
expires_in: Aegu pärast
|
||||
|
@ -188,7 +182,6 @@ et:
|
|||
inbox_url: Vahendaja sisendkausta URL
|
||||
irreversible: Kustuta selle asemel, et peita
|
||||
locale: Kasutajaliidese keel
|
||||
locked: Lukusta konto
|
||||
max_uses: Maksimum kasutajate arv
|
||||
new_password: Uus salasõna
|
||||
note: Elulugu
|
||||
|
@ -211,9 +204,7 @@ et:
|
|||
setting_display_media_show_all: Kuva kõik
|
||||
setting_expand_spoilers: Alati näita tundlikuks märgitud postituste sisu
|
||||
setting_hide_network: Peida oma võrk
|
||||
setting_noindex: Keeldu otsingumootorite indekseerimistest
|
||||
setting_reduce_motion: Vähenda animatsioonides liikumist
|
||||
setting_show_application: Avalikusta postituste tegemisel kasutatud rakendus
|
||||
setting_system_font_ui: Kasuta süsteemi vaikefonti
|
||||
setting_theme: Saidi teema
|
||||
setting_trends: Näita tänaseid trende
|
||||
|
|
|
@ -37,13 +37,11 @@ eu:
|
|||
current_password: Segurtasunagatik sartu uneko kontuaren pasahitza
|
||||
current_username: Berresteko sartu uneko kontuaren erabiltzaile-izena
|
||||
digest: Jarduerarik gabeko epe luze bat eta gero mezu pertsonalen bat jaso baduzu, besterik ez
|
||||
discoverable: Baimendu zure kontua ezezagunek aurkitu ahal izatea gomendio, joera eta beste ezaugarrien bidez
|
||||
email: Baieztapen e-mail bat bidaliko zaizu
|
||||
header: PNG, GIF edo JPG. Gehienez %{size}. %{dimensions}px eskalara txikituko da
|
||||
inbox_url: Kopiatu erabili nahi duzun errelearen hasiera orriaren URLa
|
||||
irreversible: Iragazitako tootak betirako galduko dira, geroago iragazkia kentzen baduzu ere
|
||||
locale: Erabiltzaile-interfazea, e-mail mezuen eta jakinarazpenen hizkuntza
|
||||
locked: Jarraitzaileak eskuz onartu behar dituzu
|
||||
password: Erabili 8 karaktere gutxienez
|
||||
phrase: Bat egingo du Maiuskula/minuskula kontuan hartu gabe eta edukiaren abisua kontuan hartu gabe
|
||||
scopes: Zeintzuk API atzitu ditzakeen aplikazioak. Goi mailako arloa aukeratzen baduzu, ez dituzu azpikoak aukeratu behar.
|
||||
|
@ -53,9 +51,6 @@ eu:
|
|||
setting_display_media_default: Ezkutatu hunkigarri gisa markatutako multimedia
|
||||
setting_display_media_hide_all: Ezkutatu multimedia guztia beti
|
||||
setting_display_media_show_all: Erakutsi beti hunkigarri gisa markatutako multimedia
|
||||
setting_hide_network: Nor jarraitzen duzun eta nork jarraitzen zaituen ez da bistaratuko zure profilean
|
||||
setting_noindex: Zure profil publiko eta tooten orrietan eragina du
|
||||
setting_show_application: Tootak bidaltzeko erabiltzen duzun aplikazioa zure tooten ikuspegi xehetsuan bistaratuko da
|
||||
setting_use_blurhash: Gradienteak ezkutatutakoaren koloreetan oinarritzen dira, baina xehetasunak ezkutatzen dituzte
|
||||
setting_use_pending_items: Ezkutatu denbora-lerroko eguneraketak klik baten atzean jarioa automatikoki korritu ordez
|
||||
username: Hizkiak, zenbakiak eta azpimarrak erabil ditzakezu
|
||||
|
@ -173,7 +168,6 @@ eu:
|
|||
context: Iragazkiaren testuinguruak
|
||||
current_password: Oraingo pasahitza
|
||||
data: Datuak
|
||||
discoverable: Zerrendatu kontu hau direktorioan
|
||||
display_name: Pantaila-izena
|
||||
email: E-mail helbidea
|
||||
expires_in: Iraungitzea
|
||||
|
@ -183,7 +177,6 @@ eu:
|
|||
inbox_url: Errelearen sarrera ontziaren URLa
|
||||
irreversible: Baztertu ezkutatu ordez
|
||||
locale: Interfazearen hizkuntza
|
||||
locked: Giltzapetu kontua
|
||||
max_uses: Gehieneko erabiltzaile kopurua
|
||||
new_password: Pasahitz berria
|
||||
note: Biografia
|
||||
|
@ -206,9 +199,7 @@ eu:
|
|||
setting_display_media_show_all: Erakutsi guztia
|
||||
setting_expand_spoilers: Hedatu beti edukia abisua (CW) duten tootak
|
||||
setting_hide_network: Ezkutatu zure sarea
|
||||
setting_noindex: Atera bilaketa motorraren indexaziotik
|
||||
setting_reduce_motion: Murriztu animazioen mugimenduak
|
||||
setting_show_application: Utzi agerian tootak bidaltzeko erabilitako aplikazioa
|
||||
setting_system_font_ui: Erabili sistemako tipografia lehenetsia
|
||||
setting_theme: Gunearen azala
|
||||
setting_trends: Erakutsi gaurko joerak
|
||||
|
|
|
@ -37,13 +37,11 @@ fa:
|
|||
current_password: به دلایل امنیتی لطفاً گذرواژه این حساب را وارد کنید
|
||||
current_username: برای تأیید، لطفاً نام کاربری حساب فعلی را وارد کنید
|
||||
digest: تنها وقتی فرستاده میشود که مدتی طولانی فعالیتی نداشته باشید و در این مدت برای شما پیغام خصوصیای نوشته شده باشد
|
||||
discoverable: اجازه دهید حسابتان از طریق پیشنهادها، پرطرفدارها و سایر قابلیتها، توسط افراد غریبه قابل کشف باشد
|
||||
email: به شما ایمیل تأییدی فرستاده خواهد شد
|
||||
header: یکی از قالبهای PNG یا GIF یا JPG. بیشترین اندازه %{size}. تصویر به اندازهٔ %{dimensions} پیکسل تبدیل خواهد شد
|
||||
inbox_url: نشانی صفحهٔ اصلی رلهای را که میخواهید به کار ببرید کپی کنید
|
||||
irreversible: فرستههای پالوده به طور برگشتناپذیری ناپدید میشوند، حتا اگر بعدها پالایه برداشته شود
|
||||
locale: زبان واسط کاربری، رایانامهها و آگاهیهای ارسالی
|
||||
locked: باید پیگیران تازه را خودتان تأیید کنید
|
||||
password: دستکم باید ۸ نویسه داشته باشد
|
||||
phrase: مستقل از کوچکی و بزرگی حروف، با متن اصلی یا هشدار محتوای فرستهها مقایسه میشود
|
||||
scopes: واسطهای برنامهنویسی که این برنامه به آن دسترسی دارد. اگر بالاترین سطح دسترسی را انتخاب کنید، دیگر نیازی به انتخاب سطحهای پایینی ندارید.
|
||||
|
@ -53,9 +51,6 @@ fa:
|
|||
setting_display_media_default: تصویرهایی را که به عنوان حساس علامت زده شدهاند پنهان کن
|
||||
setting_display_media_hide_all: همیشه همهٔ عکسها و ویدیوها را پنهان کن
|
||||
setting_display_media_show_all: همیشه تصویرهایی را که به عنوان حساس علامت زده شدهاند را نشان بده
|
||||
setting_hide_network: فهرست پیگیران شما و فهرست کسانی که شما پی میگیرید روی نمایهٔ شما دیده نخواهد شد
|
||||
setting_noindex: روی نمایهٔ عمومی و صفحهٔ نوشتههای شما تأثیر میگذارد
|
||||
setting_show_application: برنامهای که به کمک آن فرسته میزنید، در جزئیات فرسته شما نمایش خواهد یافت
|
||||
setting_use_blurhash: سایهها بر اساس رنگهای بهکاررفته در تصویر پنهانشده ساخته میشوند ولی جزئیات تصویر در آنها آشکار نیست
|
||||
setting_use_pending_items: به جای پیشرفتن خودکار در فهرست، بهروزرسانی فهرست نوشتهها را پشت یک کلیک پنهان کن
|
||||
username: تنها میتوانید از حروف، اعداد، و زیرخط استفاده کنید
|
||||
|
@ -147,7 +142,6 @@ fa:
|
|||
context: زمینههای پالایش
|
||||
current_password: گذرواژه کنونی
|
||||
data: دادهها
|
||||
discoverable: پیشنهاد حساب به دیگران
|
||||
display_name: نمایش به نام
|
||||
email: نشانی ایمیل
|
||||
expires_in: تاریخ انقضا
|
||||
|
@ -157,7 +151,6 @@ fa:
|
|||
inbox_url: نشانی صندوق ورودی رله
|
||||
irreversible: به جای پنهانسازی، حذف کن
|
||||
locale: زبان محیط کاربری
|
||||
locked: خصوصیکردن حساب
|
||||
max_uses: بیشترین شمار استفاده
|
||||
new_password: گذرواژه تازه
|
||||
note: دربارهٔ شما
|
||||
|
@ -180,9 +173,7 @@ fa:
|
|||
setting_display_media_show_all: نمایش همه
|
||||
setting_expand_spoilers: همیشه فرستههایی را که هشدار محتوا دارند کامل نشان بده
|
||||
setting_hide_network: نهفتن شبکهٔ ارتباطی
|
||||
setting_noindex: درخواست از موتورهای جستجوگر برای ظاهر نشدن در نتایج جستجو
|
||||
setting_reduce_motion: کاستن از حرکت در پویانماییها
|
||||
setting_show_application: برنامهای که به کار میبرید آشکار شود
|
||||
setting_system_font_ui: بهکاربردن قلم پیشفرض سیستم
|
||||
setting_theme: تم سایت
|
||||
setting_trends: نشاندادن موضوعات پرطرفدار روز
|
||||
|
|
|
@ -41,13 +41,11 @@ fi:
|
|||
current_password: Turvallisuussyistä kirjoita nykyisen tilin salasana
|
||||
current_username: Vahvista kirjoittamalla nykyisen tilin käyttäjätunnus
|
||||
digest: Lähetetään vain pitkän poissaolon jälkeen ja vain, jos olet saanut suoria viestejä poissaolosi aikana
|
||||
discoverable: Salli tuntemattomien löytää tilisi suositusten, trendien ja muiden ominaisuuksien kautta
|
||||
email: Sinulle lähetetään vahvistussähköposti
|
||||
header: PNG, GIF tai JPG. Enintään %{size}. Skaalataan kokoon %{dimensions} px
|
||||
inbox_url: Kopioi URL-osoite haluamasi välittäjän etusivulta
|
||||
irreversible: Suodatetut julkaisut katoavat lopullisesti, vaikka suodatin poistettaisiin myöhemmin
|
||||
locale: Käyttöliittymän, sähköpostien ja ilmoitusten kieli
|
||||
locked: Sinun täytyy hyväksyä seuraajat manuaalisesti
|
||||
password: Käytä vähintään 8 merkkiä
|
||||
phrase: Täytetään riippumatta julkaisun kirjainkoon tai sisällön varoituksesta
|
||||
scopes: Mihin sovellusliittymiin sovellus pääsee käsiksi. Jos valitset ylätason laajuuden, sinun ei tarvitse valita yksittäisiä.
|
||||
|
@ -57,9 +55,6 @@ fi:
|
|||
setting_display_media_default: Piilota arkaluonteiseksi merkitty media
|
||||
setting_display_media_hide_all: Piilota aina kaikki media
|
||||
setting_display_media_show_all: Näytä aina arkaluonteiseksi merkitty media
|
||||
setting_hide_network: Ketä seuraat ja kuka seuraa sinua, piilotetaan profiiliisi
|
||||
setting_noindex: Vaikuttaa julkiseen profiiliisi ja tilasivuihisi
|
||||
setting_show_application: Viestittelyyn käyttämäsi sovellus näkyy viestiesi yksityiskohtaisessa näkymässä
|
||||
setting_use_blurhash: Liukuvärit perustuvat piilotettujen kuvien väreihin, mutta sumentavat yksityiskohdat
|
||||
setting_use_pending_items: Piilota aikajanan päivitykset napsautuksen taakse syötteen automaattisen vierityksen sijaan
|
||||
username: Voit käyttää kirjaimia, numeroita ja alaviivoja
|
||||
|
@ -178,7 +173,6 @@ fi:
|
|||
context: Suodata konteksteista
|
||||
current_password: Nykyinen salasana
|
||||
data: Tiedot
|
||||
discoverable: Listaa tämä tili hakemistoon
|
||||
display_name: Nimimerkki
|
||||
email: Sähköpostiosoite
|
||||
expires_in: Vanhenee
|
||||
|
@ -188,7 +182,6 @@ fi:
|
|||
inbox_url: Välittäjän postilaatikon URL-osoite
|
||||
irreversible: Pudota piilottamisen sijaan
|
||||
locale: Kieli
|
||||
locked: Lukitse tili
|
||||
max_uses: Käyttökertoja enintään
|
||||
new_password: Uusi salasana
|
||||
note: Kuvaus
|
||||
|
@ -211,9 +204,7 @@ fi:
|
|||
setting_display_media_show_all: Näytä kaikki
|
||||
setting_expand_spoilers: Laajenna aina sisältövaroituksilla merkityt viestit
|
||||
setting_hide_network: Piilota verkkosi
|
||||
setting_noindex: Jättäydy hakukoneindeksoinnin ulkopuolelle
|
||||
setting_reduce_motion: Vähennä animaatioiden liikettä
|
||||
setting_show_application: Näytä sovellus mistä lähetät viestejä
|
||||
setting_system_font_ui: Käytä järjestelmän oletusfonttia
|
||||
setting_theme: Sivuston teema
|
||||
setting_trends: Näytä päivän trendit
|
||||
|
|
|
@ -41,13 +41,11 @@ fo:
|
|||
current_password: Av trygdarávum vinarliga les inn loyniorðið hjá verandi kontu
|
||||
current_username: Fyri at vátta, vinarliga les inn brúkaranavnið á verandi kontu
|
||||
digest: Einans sent eftir eitt langt tíðarskeið við óvirkni og einans um tú hevur móttikið persónlig boð meðan tú var burtur
|
||||
discoverable: Loyv kontu tíni at verða funnin av fremmandum gjøgnum viðmæli, rák og aðrar hentleikar
|
||||
email: Tú fær sendandi ein váttanarteldupost
|
||||
header: PNG, GIF ella JPG. Ikki størri enn %{size}. Verður minkað til %{dimensions}px
|
||||
inbox_url: Avrita URL'in frá forsíðuni hjá reiðlagnum, sum tú vilt brúka
|
||||
irreversible: Filtreraðir postar blíva burtur med alla, eisini sjálvt um filtrið seinni verður strikað
|
||||
locale: Málið, sum verður brúkt í brúkaramarkamótinum, teldupostum og skumpiboðum
|
||||
locked: Stýr hvør kann fylgja tær við at góðtaka ella vraka umbønir um at fylgja
|
||||
password: Skriva minst 8 tekin
|
||||
phrase: Fer at samsvara óanæsð um tað er skrivað við lítlum ella stórum ella um postar hava innihaldsávaringar
|
||||
scopes: Hvørji API nýtsluskipanin fær atgongd til. Velur tú eitt vav á hægsta stigi, so er ikki neyðugt at velja tey einstøku.
|
||||
|
@ -57,9 +55,6 @@ fo:
|
|||
setting_display_media_default: Fjal miðlafílur, sum eru merktar sum viðkvæmar
|
||||
setting_display_media_hide_all: Fjal altíð miðlafílur
|
||||
setting_display_media_show_all: Vís altíð miðlafílur
|
||||
setting_hide_network: Tey, ið tú fylgir og tey, ið fylgja tær, verða ikki víst á tínum vanga
|
||||
setting_noindex: Ávirkar almenna vangan og síður við postum hjá tær
|
||||
setting_show_application: Nýtsluskipanin, sum tú brúkar at posta við, verður víst í nágreinligu vísingini av postum tínum
|
||||
setting_use_blurhash: Gradientar eru grundaðir á litirnar av fjaldu myndunum, men grugga allar smálutir
|
||||
setting_use_pending_items: Fjal tíðarlinjudagføringar aftan fyri eitt klikk heldur enn at skrulla tilføringina sjálvvirkandi
|
||||
username: Tú kanst brúka bókstavir, tøl og botnstrikur
|
||||
|
@ -178,7 +173,6 @@ fo:
|
|||
context: Filtrera kontekstir
|
||||
current_password: Núverandi loyniorð
|
||||
data: Dáta
|
||||
discoverable: Skjót kontuna upp fyri øðrum
|
||||
display_name: Navn, sum skal vísast
|
||||
email: Teldubrævabústaður
|
||||
expires_in: Endar aftan á
|
||||
|
@ -188,7 +182,6 @@ fo:
|
|||
inbox_url: URL'ur hjá innbakkanum hjá reiðlagnum
|
||||
irreversible: Strika heldur enn at fjala
|
||||
locale: Markamótsmál
|
||||
locked: Krev umbønir um at fylgja
|
||||
max_uses: Ikki brúka oftari enn
|
||||
new_password: Nýtt loyniorð
|
||||
note: Ævilýsing
|
||||
|
@ -211,9 +204,7 @@ fo:
|
|||
setting_display_media_show_all: Vís alt
|
||||
setting_expand_spoilers: Víðka altíð postar, sum eru merktir við innihaldsávaringum
|
||||
setting_hide_network: Fjal sosiala grafin hjá tær
|
||||
setting_noindex: Frábið tær indeksering á leitimaskinum
|
||||
setting_reduce_motion: Minka um rørslu í teknimyndum
|
||||
setting_show_application: Avdúka serskipan, sum verður brúkt til at senda postar
|
||||
setting_system_font_ui: Brúka vanliga skriftaslagið hjá skipanini
|
||||
setting_theme: Uppsetingareyðkenni
|
||||
setting_trends: Vís dagsins rák
|
||||
|
|
|
@ -41,13 +41,11 @@ fr-QC:
|
|||
current_password: Par mesure de sécurité, veuillez saisir le mot de passe de ce compte
|
||||
current_username: Pour confirmer, veuillez saisir le nom d'utilisateur de ce compte
|
||||
digest: Uniquement envoyé après une longue période d’inactivité en cas de messages personnels reçus pendant votre absence
|
||||
discoverable: Permet à votre compte d’être découvert par des inconnus par le biais de recommandations, de tendances et autres fonctionnalités
|
||||
email: Vous recevrez un courriel de confirmation
|
||||
header: Au format PNG, GIF ou JPG. %{size} maximum. Sera réduit à %{dimensions}px
|
||||
inbox_url: Copiez l’URL depuis la page d’accueil du relai que vous souhaitez utiliser
|
||||
irreversible: Les messages filtrés disparaîtront irrévocablement, même si le filtre est supprimé plus tard
|
||||
locale: La langue de l’interface, des courriels et des notifications
|
||||
locked: Nécessite que vous approuviez manuellement chaque abonné·e
|
||||
password: Utilisez au moins 8 caractères
|
||||
phrase: Sera filtré peu importe la casse ou l’avertissement de contenu du message
|
||||
scopes: À quelles APIs l’application sera autorisée à accéder. Si vous sélectionnez une permission générale, vous n’avez pas besoin de sélectionner les permissions plus précises.
|
||||
|
@ -57,9 +55,6 @@ fr-QC:
|
|||
setting_display_media_default: Masquer les médias marqués comme sensibles
|
||||
setting_display_media_hide_all: Toujours masquer les médias
|
||||
setting_display_media_show_all: Toujours afficher les médias
|
||||
setting_hide_network: Ceux que vous suivez et ceux qui vous suivent ne seront pas affichés sur votre profil
|
||||
setting_noindex: Affecte votre profil public ainsi que vos messages
|
||||
setting_show_application: Le nom de l’application que vous utilisez pour publier sera affichée dans la vue détaillée de vos messages
|
||||
setting_use_blurhash: Les dégradés sont basés sur les couleurs des images cachées mais n’en montrent pas les détails
|
||||
setting_use_pending_items: Cacher les mises à jour des fils d’actualités derrière un clic, au lieu de les afficher automatiquement
|
||||
username: Vous pouvez utiliser des lettres, des chiffres, et des tirets bas
|
||||
|
@ -178,7 +173,6 @@ fr-QC:
|
|||
context: Contextes du filtre
|
||||
current_password: Mot de passe actuel
|
||||
data: Données
|
||||
discoverable: Suggérer ce compte aux autres
|
||||
display_name: Nom public
|
||||
email: Adresse courriel
|
||||
expires_in: Expire après
|
||||
|
@ -188,7 +182,6 @@ fr-QC:
|
|||
inbox_url: URL de la boîte de relais
|
||||
irreversible: Supprimer plutôt que masquer
|
||||
locale: Langue de l’interface
|
||||
locked: Verrouiller le compte
|
||||
max_uses: Nombre maximum d’utilisations
|
||||
new_password: Nouveau mot de passe
|
||||
note: Présentation
|
||||
|
@ -211,9 +204,7 @@ fr-QC:
|
|||
setting_display_media_show_all: Montrer tout
|
||||
setting_expand_spoilers: Toujours déplier les messages marqués d’un avertissement de contenu
|
||||
setting_hide_network: Cacher votre réseau
|
||||
setting_noindex: Demander aux moteurs de recherche de ne pas indexer vos informations personnelles
|
||||
setting_reduce_motion: Réduire la vitesse des animations
|
||||
setting_show_application: Dévoiler l’application utilisée pour envoyer les messages
|
||||
setting_system_font_ui: Utiliser la police par défaut du système
|
||||
setting_theme: Thème du site
|
||||
setting_trends: Afficher les tendances du jour
|
||||
|
|
|
@ -41,13 +41,11 @@ fr:
|
|||
current_password: Par mesure de sécurité, veuillez saisir le mot de passe de ce compte
|
||||
current_username: Pour confirmer, veuillez saisir l’identifiant de ce compte
|
||||
digest: Uniquement envoyé après une longue période d’inactivité en cas de messages personnels reçus pendant votre absence
|
||||
discoverable: Permet à votre compte d’être découvert par des inconnus par le biais de recommandations, de tendances et autres fonctionnalités
|
||||
email: Vous recevrez un courriel de confirmation
|
||||
header: Au format PNG, GIF ou JPG. %{size} maximum. Sera réduit à %{dimensions}px
|
||||
inbox_url: Copiez l’URL depuis la page d’accueil du relais que vous souhaitez utiliser
|
||||
irreversible: Les messages filtrés disparaîtront irrévocablement, même si le filtre est supprimé plus tard
|
||||
locale: La langue de l’interface, des courriels et des notifications
|
||||
locked: Nécessite que vous approuviez manuellement chaque abonné·e
|
||||
password: Utilisez au moins 8 caractères
|
||||
phrase: Sera filtré peu importe la casse ou l’avertissement de contenu du message
|
||||
scopes: À quelles APIs l’application sera autorisée à accéder. Si vous sélectionnez une permission générale, vous n’avez pas besoin de sélectionner les permissions plus précises.
|
||||
|
@ -57,9 +55,6 @@ fr:
|
|||
setting_display_media_default: Masquer les médias marqués comme sensibles
|
||||
setting_display_media_hide_all: Toujours masquer les médias
|
||||
setting_display_media_show_all: Toujours afficher les médias
|
||||
setting_hide_network: Ceux que vous suivez et ceux qui vous suivent ne seront pas affichés sur votre profil
|
||||
setting_noindex: Affecte votre profil public ainsi que vos messages
|
||||
setting_show_application: Le nom de l’application que vous utilisez pour publier sera affichée dans la vue détaillée de vos messages
|
||||
setting_use_blurhash: Les dégradés sont basés sur les couleurs des images cachées mais n’en montrent pas les détails
|
||||
setting_use_pending_items: Cacher les mises à jour des fils d’actualités derrière un clic, au lieu de les afficher automatiquement
|
||||
username: Vous pouvez utiliser des lettres, des chiffres, et des tirets bas
|
||||
|
@ -178,7 +173,6 @@ fr:
|
|||
context: Contextes du filtre
|
||||
current_password: Mot de passe actuel
|
||||
data: Données
|
||||
discoverable: Suggérer ce compte aux autres
|
||||
display_name: Nom public
|
||||
email: Adresse de courriel
|
||||
expires_in: Expire après
|
||||
|
@ -188,7 +182,6 @@ fr:
|
|||
inbox_url: URL de la boîte de relais
|
||||
irreversible: Supprimer plutôt que masquer
|
||||
locale: Langue de l’interface
|
||||
locked: Verrouiller le compte
|
||||
max_uses: Nombre maximum d’utilisations
|
||||
new_password: Nouveau mot de passe
|
||||
note: Présentation
|
||||
|
@ -211,9 +204,7 @@ fr:
|
|||
setting_display_media_show_all: Montrer tout
|
||||
setting_expand_spoilers: Toujours déplier les messages marqués d’un avertissement de contenu
|
||||
setting_hide_network: Cacher votre réseau
|
||||
setting_noindex: Demander aux moteurs de recherche de ne pas indexer vos informations personnelles
|
||||
setting_reduce_motion: Réduire la vitesse des animations
|
||||
setting_show_application: Dévoiler l’application utilisée pour envoyer les messages
|
||||
setting_system_font_ui: Utiliser la police par défaut du système
|
||||
setting_theme: Thème du site
|
||||
setting_trends: Afficher les tendances du jour
|
||||
|
|
|
@ -41,13 +41,11 @@ fy:
|
|||
current_password: Fier foar feilichheidsredenen it wachtwurd fan jo aktuele account yn
|
||||
current_username: Fier ta befêstiging de brûkersnamme fan jo aktuele account yn
|
||||
digest: Wurdt allinnich nei in lange perioade fan ynaktiviteit ferstjoerd en allinnich wannear’t jo wylst jo ôfwêzigens persoanlike berjochten ûntfongen hawwe
|
||||
discoverable: Tastean dat jo account te finen is foar ûnbekenden, fia oanrekommandaasjes, trends en op oare manieren
|
||||
email: Jo krije in befêstigings-e-mailberjocht
|
||||
header: PNG, GIF of JPG. Maksimaal %{size}. Wurdt weromskeald nei %{dimensions}px
|
||||
inbox_url: Kopiearje de URL fan de foarside fan de relayserver dy’t jo brûke wolle
|
||||
irreversible: Filtere berjochten ferdwine definityf, sels as it filter letter fuortsmiten wurdt
|
||||
locale: De taal fan de brûkersomjouwing, e-mailberjochten en pushmeldingen
|
||||
locked: Troch it goedkarren fan folgers hânmjittich bepale wa’t jo folgje mei
|
||||
password: Brûk op syn minst 8 tekens
|
||||
phrase: Komt oerien nettsjinsteande haad-/lytse letters of in ynhâldswarskôging
|
||||
scopes: Ta hokker API’s hat de tapassing tagong. Wannear’t jo in tastimming fan it boppeste nivo kieze, hoege jo gjin yndividuele tastimmingen mear te kiezen.
|
||||
|
@ -57,9 +55,6 @@ fy:
|
|||
setting_display_media_default: As gefoelich markearre media ferstopje
|
||||
setting_display_media_hide_all: Media altyd ferstopje
|
||||
setting_display_media_show_all: Media altyd toane
|
||||
setting_hide_network: Wa’t jo folgje en wa’t jo folget wurdt net op jo profyl toand
|
||||
setting_noindex: Hat ynfloed op jo iepenbiere profyl en siden mei berjochten
|
||||
setting_show_application: De tapassing dy’t jo brûke om berjochten te pleatsen, wurdt yn de detaillearre werjefte fan it berjocht toand
|
||||
setting_use_blurhash: Dizige kleuroergongen binne basearre op de kleuren fan de ferstoppe media, wêrmei elk detail ferdwynt
|
||||
setting_use_pending_items: De tiidline wurdt bywurke troch op it oantal nije items te klikken, yn stee fan dat dizze automatysk bywurke wurdt
|
||||
username: Jo kinne letters, sifers en ûnderstreekjes brûke
|
||||
|
@ -178,7 +173,6 @@ fy:
|
|||
context: Filterlokaasjes
|
||||
current_password: Aktueel wachtwurd
|
||||
data: Gegevens
|
||||
discoverable: Dizze account oanrekommandearje litte en yn de brûkersgids toane
|
||||
display_name: Werjeftenamme
|
||||
email: E-mailadres
|
||||
expires_in: Ferrint nei
|
||||
|
@ -188,7 +182,6 @@ fy:
|
|||
inbox_url: Relais-ynboks-URL
|
||||
irreversible: Fuortsmite yn stee fan ferstopje
|
||||
locale: Taal fan de brûkersomjouwing
|
||||
locked: Folchfersyk fereaskje
|
||||
max_uses: Maksimaal tal kear te brûken
|
||||
new_password: Nije wachtwurd
|
||||
note: Bio
|
||||
|
@ -211,9 +204,7 @@ fy:
|
|||
setting_display_media_show_all: Alles toane
|
||||
setting_expand_spoilers: Berjochten mei ynhâldswarskôgingen altyd útklappe
|
||||
setting_hide_network: Jo folgers en wa’t jo folget ferstopje
|
||||
setting_noindex: Jo berjochten net troch sykmasinen yndeksearje litte
|
||||
setting_reduce_motion: Stadigere animaasjes
|
||||
setting_show_application: Tapassing dy’t jo foar it ferstjoeren fan berjochten brûke toane
|
||||
setting_system_font_ui: Standertlettertype fan jo systeem brûke
|
||||
setting_theme: Websitetema
|
||||
setting_trends: Trends fan hjoed toane
|
||||
|
|
|
@ -41,13 +41,11 @@ gd:
|
|||
current_password: A chùm tèarainteachd, cuir a-steach facal-faire a’ chunntais làithrich
|
||||
current_username: Airson seo a dhearbhadh, cuir a-steach ainm-cleachdaiche a’ chunntais làithrich
|
||||
digest: Cha dèid seo a chur ach nuair a bhios tu air ùine mhòr gun ghnìomh a ghabhail agus ma fhuair thu teachdaireachd phearsanta fhad ’s a bha thu air falbh
|
||||
discoverable: Ceadaich gun rùraich coigrich an cunntas agad le taic o mholaidhean, treandaichean is gleusan eile
|
||||
email: Thèid post-d dearbhaidh a chur thugad
|
||||
header: PNG, GIF or JPG. %{size} air a char as motha. Thèid a sgèileadh sìos gu %{dimensions}px
|
||||
inbox_url: Dèan lethbhreac dhen URL o phrìomh-dhuilleag an ath-sheachadain a bu mhiann leat cleachdadh
|
||||
irreversible: Thèid postaichean criathraichte à sealladh gu buan fiù ’s ma bheir thu a’ chriathrag air falbh às dèidh làimhe
|
||||
locale: Cànan eadar-aghaidh a’ chleachdaiche, nam post-d ’s nam brathan putaidh
|
||||
locked: Stiùirich cò dh’fhaodas ’gad leantainn le gabhail ri iarrtasan leantainn a làimh
|
||||
password: Cleachd co-dhiù 8 caractaran
|
||||
phrase: Thèid a mhaidseadh gun aire air litrichean mòra ’s beaga no air rabhadh susbainte puist
|
||||
scopes: Na APIan a dh’fhaodas an aplacaid inntrigeadh. Ma thaghas tu sgòp air ìre as àirde, cha leig thu leas sgòpaichean fa leth a thaghadh.
|
||||
|
@ -57,9 +55,6 @@ gd:
|
|||
setting_display_media_default: Falaich meadhanan ris a bheil comharra gu bheil iad frionasach
|
||||
setting_display_media_hide_all: Falaich na meadhanan an-còmhnaidh
|
||||
setting_display_media_show_all: Seall na meadhanan an-còmhnaidh
|
||||
setting_hide_network: Thèid cò a tha thu a’ leantainn ’s an luchd-leantainn agad fhèin a chur am falach air a’ phròifil agad
|
||||
setting_noindex: Bheir seo buaidh air a’ phròifil phoblach ’s air duilleagan nam postaichean agad
|
||||
setting_show_application: Chithear cò an aplacaid a chleachd thu airson post a sgrìobhadh ann an seallaidhean mionaideach nam postaichean agad
|
||||
setting_use_blurhash: Tha caiseadan stèidhichte air dathan nan nithean lèirsinneach a chaidh fhalach ach chan fhaicear am mion-fhiosrachadh
|
||||
setting_use_pending_items: Falaich ùrachaidhean na loidhne-ama air cùlaibh briogaidh seach a bhith a’ sgroladh nam postaichean gu fèin-obrachail
|
||||
username: Faodaidh tu litrichean, àireamhan is fo-loidhnichean a chleachdadh
|
||||
|
@ -178,7 +173,6 @@ gd:
|
|||
context: Co-theacsaichean na criathraige
|
||||
current_password: Am facal-faire làithreach
|
||||
data: Dàta
|
||||
discoverable: Mol an cunntas do chàch
|
||||
display_name: Ainm-taisbeanaidh
|
||||
email: Seòladh puist-d
|
||||
expires_in: Falbhaidh an ùine air às dèidh
|
||||
|
@ -188,7 +182,6 @@ gd:
|
|||
inbox_url: URL bogsa a-steach an ath-sheachadain
|
||||
irreversible: Leig seachad seach falach
|
||||
locale: Cànan na h-eadar-aghaidh
|
||||
locked: Iarr iarrtasan leantainn
|
||||
max_uses: An àireamh as motha de chleachdaidhean
|
||||
new_password: Facal-faire ùr
|
||||
note: Mu mo dhèidhinn
|
||||
|
@ -211,9 +204,7 @@ gd:
|
|||
setting_display_media_show_all: Seall na h-uile
|
||||
setting_expand_spoilers: Leudaich postaichean ris a bheil rabhadh susbainte an-còmhnaidh
|
||||
setting_hide_network: Falaich an graf sòisealta agad
|
||||
setting_noindex: Thoir air falbh an ro-aonta air inneacsadh le einnseanan-luirg
|
||||
setting_reduce_motion: Ìslich an gluasad sna beòthachaidhean
|
||||
setting_show_application: Foillsich dè an aplacaid a chleachdas tu airson postaichean a chur
|
||||
setting_system_font_ui: Cleachd cruth-clò bunaiteach an t-siostaim
|
||||
setting_theme: Ùrlar na làraich
|
||||
setting_trends: Seall na treandaichean an-diugh
|
||||
|
|
|
@ -41,13 +41,11 @@ gl:
|
|||
current_password: Por razóns de seguridade, introduce o contrasinal da conta actual
|
||||
current_username: Para confirmar, introduce o nome de usuaria da conta actual
|
||||
digest: Enviar só tras un longo período de inactividade e só se recibiches algunha mensaxe directa na tua ausencia
|
||||
discoverable: Permite que a túa conta poida ser descuberta por persoas descoñecidas a través de recomendacións, tendencias e outras ferramentas
|
||||
email: Ímosche enviar un correo de confirmación
|
||||
header: PNG, GIF ou JPG. Máximo %{size}. Será reducida a %{dimensions}px
|
||||
inbox_url: Copiar o URL desde a páxina de inicio do repetidor que queres utilizar
|
||||
irreversible: As publicacións filtradas desaparecerán de xeito irreversible, incluso se despois se elimina o filtro
|
||||
locale: O idioma da interface de usuaria, correos e notificacións
|
||||
locked: Xestionar manualmente quen pode seguirte aprobando as solicitudes de seguimento
|
||||
password: Utiliza 8 caracteres ao menos
|
||||
phrase: Concordará independentemente das maiúsculas ou avisos de contido na publicación
|
||||
scopes: A que APIs terá acceso a aplicación. Se escolles un ámbito de alto nivel, non precisas seleccionar elementos individuais.
|
||||
|
@ -57,9 +55,6 @@ gl:
|
|||
setting_display_media_default: Ocultar medios marcados como sensibles
|
||||
setting_display_media_hide_all: Ocultar sempre os medios
|
||||
setting_display_media_show_all: Mostrar sempre os medios marcados como sensibles
|
||||
setting_hide_network: Non se mostrará no teu perfil quen te segue e a quen estás a seguir
|
||||
setting_noindex: Afecta ao teu perfil público e páxinas de publicación
|
||||
setting_show_application: A aplicación que estás a utilizar para enviar publicacións mostrarase na vista detallada da publicación
|
||||
setting_use_blurhash: Os gradientes toman as cores da imaxe oculta pero esvaecendo tódolos detalles
|
||||
setting_use_pending_items: Agochar actualizacións da cronoloxía tras un click no lugar de desprazar automáticamente os comentarios
|
||||
username: Podes usar letras, números e trazos baixos
|
||||
|
@ -178,7 +173,6 @@ gl:
|
|||
context: Contextos do filtro
|
||||
current_password: Contrasinal actual
|
||||
data: Datos
|
||||
discoverable: Suxerir esta conta a outras persoas
|
||||
display_name: Nome mostrado
|
||||
email: Enderezo de email
|
||||
expires_in: Caduca tras
|
||||
|
@ -188,7 +182,6 @@ gl:
|
|||
inbox_url: URL da caixa de entrada do repetidor
|
||||
irreversible: Desbotar en lugar de agochar
|
||||
locale: Idioma da interface
|
||||
locked: Requerir aprobar seguimento
|
||||
max_uses: Número máximo de usos
|
||||
new_password: Novo contrasinal
|
||||
note: Acerca de ti
|
||||
|
@ -211,9 +204,7 @@ gl:
|
|||
setting_display_media_show_all: Mostrar todo
|
||||
setting_expand_spoilers: Despregar sempre as publicacións marcadas con avisos de contido
|
||||
setting_hide_network: Non mostrar contactos
|
||||
setting_noindex: Pedir non aparecer nas buscas dos motores de busca
|
||||
setting_reduce_motion: Reducir o movemento nas animacións
|
||||
setting_show_application: Mostrar a aplicación utilizada para publicar
|
||||
setting_system_font_ui: Utilizar a tipografía por defecto do sistema
|
||||
setting_theme: Decorado da instancia
|
||||
setting_trends: Mostrar as tendencias de hoxe
|
||||
|
|
|
@ -41,13 +41,11 @@ he:
|
|||
current_password: מסיבות אבטחה נא להזין את הסיסמא של החשבון הנוכחי
|
||||
current_username: על מנת לאשר, נא להכניס את שם המשתמש של החשבון הנוכחי
|
||||
digest: נשלח לאחר תקופה ארוכה של אי-פעילות עם סיכום איזכורים שקיבלת בהעדרך
|
||||
discoverable: אשר/י לחשבונך להתגלות לזרים על ידי המלצות, נושאים חמים ושאר דרכים
|
||||
email: דוא"ל אישור יישלח אליך
|
||||
header: PNG, GIF או JPG. מקסימום %{size}. גודל התמונה יוקטן %{dimensions}px
|
||||
inbox_url: נא להעתיק את הקישורית מדף הבית של הממסר בו תרצה/י להשתמש
|
||||
irreversible: הודעות מסוננות יעלמו באופן בלתי הפיך, אפילו אם מאוחר יותר יוסר המסנן
|
||||
locale: שפת ממשק המשתמש, הדוא"ל וההתראות בדחיפה
|
||||
locked: מחייב אישור עוקבים באופן ידני. פרטיות ההודעות תהיה עוקבים-בלבד אלא אם יצוין אחרת
|
||||
password: נא להשתמש בלפחות 8 תוים
|
||||
phrase: התאמה תמצא ללא תלות באזהרת תוכן בהודעה
|
||||
scopes: לאיזה ממשק יורשה היישום לגשת. בבחירת תחום כללי, אין צורך לבחור ממשקים ספציפיים.
|
||||
|
@ -57,9 +55,6 @@ he:
|
|||
setting_display_media_default: הסתרת מדיה המסומנת כרגישה
|
||||
setting_display_media_hide_all: הסתר מדיה תמיד
|
||||
setting_display_media_show_all: גלה מדיה תמיד
|
||||
setting_hide_network: עוקבייך ונעקבייך יוסתרו בפרופילך
|
||||
setting_noindex: משפיע על הפרופיל הציבורי שלך ועמודי ההודעות
|
||||
setting_show_application: היישום בו נעשה שימוש כדי לחצרץ יופיע בתצוגה המפורטת של החצרוץ
|
||||
setting_use_blurhash: הגראדיינטים מבוססים על תוכן התמונה המוסתרת, אבל מסתירים את כל הפרטים
|
||||
setting_use_pending_items: הסתר עדכוני פיד מאחורי קליק במקום לגלול את הפיד אוטומטית
|
||||
username: ניתן להשתמש בספרות, אותיות לטיניות ומקף תחתון
|
||||
|
@ -178,7 +173,6 @@ he:
|
|||
context: סינון לפי הקשר
|
||||
current_password: סיסמא נוכחית
|
||||
data: מידע
|
||||
discoverable: הצע חשבון לאחרים
|
||||
display_name: שם להצגה
|
||||
email: כתובת דוא"ל
|
||||
expires_in: תפוגה לאחר
|
||||
|
@ -188,7 +182,6 @@ he:
|
|||
inbox_url: קישורית לתיבת ממסר
|
||||
irreversible: הסרה במקום הסתרה
|
||||
locale: שפה
|
||||
locked: הפוך חשבון לפרטי
|
||||
max_uses: מספר מרבי של שימושים
|
||||
new_password: סיסמא חדשה
|
||||
note: אודות
|
||||
|
@ -211,9 +204,7 @@ he:
|
|||
setting_display_media_show_all: להציג הכול
|
||||
setting_expand_spoilers: להרחיב תמיד הודעות מסומנות באזהרת תוכן
|
||||
setting_hide_network: להחביא את הגרף החברתי שלך
|
||||
setting_noindex: לבקש הסתרה ממנועי חיפוש
|
||||
setting_reduce_motion: הפחתת תנועה בהנפשות
|
||||
setting_show_application: הצגת הישום ששימש לפרסום ההודעה
|
||||
setting_system_font_ui: להשתמש בגופן ברירת המחדל של המערכת
|
||||
setting_theme: ערכת העיצוב של האתר
|
||||
setting_trends: הצגת הנושאים החמים
|
||||
|
|
|
@ -5,7 +5,6 @@ hr:
|
|||
defaults:
|
||||
avatar: PNG, GIF ili JPG. Najviše %{size}. Bit će smanjeno na %{dimensions}px
|
||||
header: PNG, GIF ili JPG. Najviše %{size}. Bit će smanjeno na %{dimensions}px
|
||||
locked: Zahtijeva ručno odobravanje pratitelja
|
||||
setting_display_media_default: Sakrij medijski sadržaj označen kao osjetljiv
|
||||
setting_display_media_hide_all: Uvijek sakrij medijski sadržaj
|
||||
setting_display_media_show_all: Uvijek prikaži medijski sadržaj
|
||||
|
@ -24,7 +23,6 @@ hr:
|
|||
display_name: Prikazano ime
|
||||
email: Adresa e-pošte
|
||||
locale: Jezik sučelja
|
||||
locked: Zaključaj račun
|
||||
new_password: Nova lozinka
|
||||
note: Biografija
|
||||
otp_attempt: Dvofaktorski kôd
|
||||
|
|
|
@ -41,13 +41,11 @@ hu:
|
|||
current_password: Biztonsági okok miatt kérlek, írd be a jelenlegi fiók jelszavát
|
||||
current_username: A jóváhagyáshoz írd be a jelenlegi fiók felhasználói nevét
|
||||
digest: Csak hosszú távollét esetén küldődik és csak ha személyes üzenetet kaptál távollétedben
|
||||
discoverable: Engedélyezés, hogy a fiókod idegenek által megtalálható legyen javaslatokon, trendeken és más funkciókon keresztül
|
||||
email: Kapsz egy megerősítő e-mailt
|
||||
header: PNG, GIF vagy JPG. Maximum %{size}. Átméretezzük %{dimensions} pixelre
|
||||
inbox_url: Másold ki a használandó relé szerver kezdőoldalának URL-jét
|
||||
irreversible: A kiszűrt bejegyzések visszafordíthatatlanul eltűnnek, a szűrő későbbi törlése esetén is
|
||||
locale: A felhasználói felület, e-mailek, push üzenetek nyelve
|
||||
locked: Egyenként engedélyezned kell a követőidet
|
||||
password: Legalább 8 karakter
|
||||
phrase: Illeszkedni fog kis/nagybetű függetlenül, és tartalmi figyelmeztetések mögött is
|
||||
scopes: Mely API-kat érheti el az alkalmazás. Ha felső szintű hatáskört választasz, nem kell egyesével kiválasztanod az alatta lévőeket.
|
||||
|
@ -57,9 +55,6 @@ hu:
|
|||
setting_display_media_default: Kényes tartalomnak jelölt média elrejtése
|
||||
setting_display_media_hide_all: Mindig minden média elrejtése
|
||||
setting_display_media_show_all: Mindig mutasd a szenzitív tartalomként jelölt médiát
|
||||
setting_hide_network: Nem látszik majd a profilodon, kik követnek és te kiket követsz
|
||||
setting_noindex: A nyilvános profilodra és a bejegyzéseidre vonatkozik
|
||||
setting_show_application: A bejegyzések részletes nézetében látszani fog, milyen alkalmazást használtál a bejegyzés közzétételéhez
|
||||
setting_use_blurhash: A kihomályosítás az eredeti képből történik, de minden részletet elrejt
|
||||
setting_use_pending_items: Idővonal frissítése csak kattintásra automatikus görgetés helyett
|
||||
username: Betűk, számok és alávonások használhatók
|
||||
|
@ -178,7 +173,6 @@ hu:
|
|||
context: Szűrés kontextusai
|
||||
current_password: Jelenlegi jelszó
|
||||
data: Adatok
|
||||
discoverable: Fiók listázása a profilok adatbázisában
|
||||
display_name: Megjelenített név
|
||||
email: E-mail cím
|
||||
expires_in: Elévül
|
||||
|
@ -188,7 +182,6 @@ hu:
|
|||
inbox_url: Relé inbox-hoz tartozó URL
|
||||
irreversible: Eldobás elrejtés helyett
|
||||
locale: Felhasználói felület nyelve
|
||||
locked: Felhasználói fiók lezárása
|
||||
max_uses: Hányszor használható
|
||||
new_password: Új jelszó
|
||||
note: Bemutatkozás
|
||||
|
@ -211,9 +204,7 @@ hu:
|
|||
setting_display_media_show_all: Mindent mutat
|
||||
setting_expand_spoilers: Tartalmi figyelmeztetéssel ellátott bejegyzések automatikus kinyitása
|
||||
setting_hide_network: Hálózatod elrejtése
|
||||
setting_noindex: Megtiltom a keresőmotoroknak, hogy indexeljék a tartalmaimat
|
||||
setting_reduce_motion: Animációk mozgásának csökkentése
|
||||
setting_show_application: Bejegyzések küldésére használt alkalmazás feltüntetése
|
||||
setting_system_font_ui: Rendszer betűtípusának használata
|
||||
setting_theme: Megjelenítési sablon
|
||||
setting_trends: Mai trend mutatása
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue