Merge pull request #1715 from ClearlyClaire/glitch-soc/merge-upstream
Merge upstream changes
This commit is contained in:
commit
2c8bb17453
179 changed files with 2096 additions and 817 deletions
3
Gemfile
3
Gemfile
|
@ -40,6 +40,7 @@ end
|
|||
gem 'net-ldap', '~> 0.17'
|
||||
gem 'omniauth-cas', '~> 2.0'
|
||||
gem 'omniauth-saml', '~> 1.10'
|
||||
gem 'gitlab-omniauth-openid-connect', '~>0.5.0', require: 'omniauth_openid_connect'
|
||||
gem 'omniauth', '~> 1.9'
|
||||
gem 'omniauth-rails_csrf_protection', '~> 0.1'
|
||||
|
||||
|
@ -115,7 +116,7 @@ end
|
|||
group :test do
|
||||
gem 'capybara', '~> 3.36'
|
||||
gem 'climate_control', '~> 0.2'
|
||||
gem 'faker', '~> 2.19'
|
||||
gem 'faker', '~> 2.20'
|
||||
gem 'microformats', '~> 4.2'
|
||||
gem 'rails-controller-testing', '~> 1.0'
|
||||
gem 'rspec-sidekiq', '~> 3.1'
|
||||
|
|
55
Gemfile.lock
55
Gemfile.lock
|
@ -68,6 +68,7 @@ GEM
|
|||
zeitwerk (~> 2.3)
|
||||
addressable (2.8.0)
|
||||
public_suffix (>= 2.0.2, < 5.0)
|
||||
aes_key_wrap (1.1.0)
|
||||
airbrussh (1.4.0)
|
||||
sshkit (>= 1.6.1, != 1.7.0)
|
||||
android_key_attestation (0.3.0)
|
||||
|
@ -77,6 +78,7 @@ GEM
|
|||
ast (2.4.2)
|
||||
attr_encrypted (3.1.0)
|
||||
encryptor (~> 3.0.0)
|
||||
attr_required (1.0.1)
|
||||
awrence (1.1.1)
|
||||
aws-eventstream (1.2.0)
|
||||
aws-partitions (1.558.0)
|
||||
|
@ -126,7 +128,7 @@ GEM
|
|||
sshkit (>= 1.9.0)
|
||||
capistrano-bundler (2.0.1)
|
||||
capistrano (~> 3.1)
|
||||
capistrano-rails (1.6.1)
|
||||
capistrano-rails (1.6.2)
|
||||
capistrano (~> 3.1)
|
||||
capistrano-bundler (>= 1.1, < 3)
|
||||
capistrano-rbenv (2.2.0)
|
||||
|
@ -210,8 +212,8 @@ GEM
|
|||
tzinfo
|
||||
excon (0.76.0)
|
||||
fabrication (2.27.0)
|
||||
faker (2.19.0)
|
||||
i18n (>= 1.6, < 2)
|
||||
faker (2.20.0)
|
||||
i18n (>= 1.8.11, < 2)
|
||||
faraday (1.9.3)
|
||||
faraday-em_http (~> 1.0)
|
||||
faraday-em_synchrony (~> 1.0)
|
||||
|
@ -260,6 +262,10 @@ GEM
|
|||
fuubar (2.5.1)
|
||||
rspec-core (~> 3.0)
|
||||
ruby-progressbar (~> 1.4)
|
||||
gitlab-omniauth-openid-connect (0.5.0)
|
||||
addressable (~> 2.7)
|
||||
omniauth (~> 1.9)
|
||||
openid_connect (~> 1.2)
|
||||
globalid (1.0.0)
|
||||
activesupport (>= 5.0)
|
||||
hamlit (2.13.0)
|
||||
|
@ -288,10 +294,11 @@ GEM
|
|||
domain_name (~> 0.5)
|
||||
http-form_data (2.3.0)
|
||||
http_accept_language (2.1.1)
|
||||
httpclient (2.8.3)
|
||||
httplog (1.5.0)
|
||||
rack (>= 1.0)
|
||||
rainbow (>= 2.0.0)
|
||||
i18n (1.9.1)
|
||||
i18n (1.10.0)
|
||||
concurrent-ruby (~> 1.0)
|
||||
i18n-tasks (0.9.37)
|
||||
activesupport (>= 4.0.2)
|
||||
|
@ -308,6 +315,10 @@ GEM
|
|||
jmespath (1.6.0)
|
||||
json (2.5.1)
|
||||
json-canonicalization (0.3.0)
|
||||
json-jwt (1.13.0)
|
||||
activesupport (>= 4.2)
|
||||
aes_key_wrap
|
||||
bindata
|
||||
json-ld (3.2.0)
|
||||
htmlentities (~> 4.3)
|
||||
json-canonicalization (~> 0.3)
|
||||
|
@ -408,6 +419,16 @@ GEM
|
|||
omniauth-saml (1.10.3)
|
||||
omniauth (~> 1.3, >= 1.3.2)
|
||||
ruby-saml (~> 1.9)
|
||||
openid_connect (1.2.0)
|
||||
activemodel
|
||||
attr_required (>= 1.0.0)
|
||||
json-jwt (>= 1.5.0)
|
||||
rack-oauth2 (>= 1.6.1)
|
||||
swd (>= 1.0.0)
|
||||
tzinfo
|
||||
validate_email
|
||||
validate_url
|
||||
webfinger (>= 1.0.1)
|
||||
openssl (2.2.0)
|
||||
openssl-signature_algorithm (0.4.0)
|
||||
orm_adapter (0.5.0)
|
||||
|
@ -451,6 +472,12 @@ GEM
|
|||
rack (>= 1.0, < 3)
|
||||
rack-cors (1.1.1)
|
||||
rack (>= 2.0.0)
|
||||
rack-oauth2 (1.16.0)
|
||||
activesupport
|
||||
attr_required
|
||||
httpclient
|
||||
json-jwt (>= 1.11.0)
|
||||
rack (>= 2.1.0)
|
||||
rack-proxy (0.7.0)
|
||||
rack
|
||||
rack-test (1.1.0)
|
||||
|
@ -498,7 +525,7 @@ GEM
|
|||
rdf (~> 3.2)
|
||||
redcarpet (3.5.1)
|
||||
redis (4.5.1)
|
||||
redis-namespace (1.8.1)
|
||||
redis-namespace (1.8.2)
|
||||
redis (>= 3.0.4)
|
||||
regexp_parser (2.2.0)
|
||||
request_store (1.5.0)
|
||||
|
@ -606,11 +633,15 @@ GEM
|
|||
sshkit (1.21.2)
|
||||
net-scp (>= 1.1.2)
|
||||
net-ssh (>= 2.8.0)
|
||||
stackprof (0.2.17)
|
||||
stackprof (0.2.19)
|
||||
statsd-ruby (1.5.0)
|
||||
stoplight (2.2.1)
|
||||
strong_migrations (0.7.9)
|
||||
activerecord (>= 5)
|
||||
swd (1.2.0)
|
||||
activesupport (>= 3)
|
||||
attr_required (>= 0.0.5)
|
||||
httpclient (>= 2.4)
|
||||
temple (0.8.2)
|
||||
terminal-table (3.0.2)
|
||||
unicode-display_width (>= 1.1.1, < 3)
|
||||
|
@ -645,6 +676,12 @@ GEM
|
|||
unf_ext (0.0.8)
|
||||
unicode-display_width (2.1.0)
|
||||
uniform_notifier (1.14.2)
|
||||
validate_email (0.1.6)
|
||||
activemodel (>= 3.0)
|
||||
mail (>= 2.2.5)
|
||||
validate_url (1.0.13)
|
||||
activemodel (>= 3.0.0)
|
||||
public_suffix
|
||||
warden (1.2.9)
|
||||
rack (>= 2.0.9)
|
||||
webauthn (3.0.0.alpha1)
|
||||
|
@ -657,6 +694,9 @@ GEM
|
|||
safety_net_attestation (~> 0.4.0)
|
||||
securecompare (~> 1.0)
|
||||
tpm-key_attestation (~> 0.9.0)
|
||||
webfinger (1.1.0)
|
||||
activesupport
|
||||
httpclient (>= 2.4)
|
||||
webmock (3.14.0)
|
||||
addressable (>= 2.8.0)
|
||||
crack (>= 0.3.2)
|
||||
|
@ -714,12 +754,13 @@ DEPENDENCIES
|
|||
dotenv-rails (~> 2.7)
|
||||
ed25519 (~> 1.3)
|
||||
fabrication (~> 2.27)
|
||||
faker (~> 2.19)
|
||||
faker (~> 2.20)
|
||||
fast_blank (~> 1.0)
|
||||
fastimage
|
||||
fog-core (<= 2.1.0)
|
||||
fog-openstack (~> 0.3)
|
||||
fuubar (~> 2.5)
|
||||
gitlab-omniauth-openid-connect (~> 0.5.0)
|
||||
hamlit-rails (~> 0.2)
|
||||
hcaptcha (~> 7.1)
|
||||
hiredis (~> 0.6)
|
||||
|
|
|
@ -57,7 +57,7 @@ class StatusesIndex < Chewy::Index
|
|||
field :id, type: 'long'
|
||||
field :account_id, type: 'long'
|
||||
|
||||
field :text, type: 'text', value: ->(status) { [status.spoiler_text, Formatter.instance.plaintext(status)].concat(status.media_attachments.map(&:description)).concat(status.preloadable_poll ? status.preloadable_poll.options : []).join("\n\n") } do
|
||||
field :text, type: 'text', value: ->(status) { [status.spoiler_text, Formatter.instance.plaintext(status)].concat(status.ordered_media_attachments.map(&:description)).concat(status.preloadable_poll ? status.preloadable_poll.options : []).join("\n\n") } do
|
||||
field :stemmed, type: 'text', analyzer: 'content'
|
||||
end
|
||||
|
||||
|
|
|
@ -56,10 +56,6 @@ module Admin
|
|||
end
|
||||
end
|
||||
|
||||
def show
|
||||
authorize @domain_block, :show?
|
||||
end
|
||||
|
||||
def destroy
|
||||
authorize @domain_block, :destroy?
|
||||
UnblockDomainService.new.call(@domain_block)
|
||||
|
|
|
@ -4,28 +4,26 @@ module Admin
|
|||
class InstancesController < BaseController
|
||||
before_action :set_instances, only: :index
|
||||
before_action :set_instance, except: :index
|
||||
before_action :set_exhausted_deliveries_days, only: :show
|
||||
|
||||
def index
|
||||
authorize :instance, :index?
|
||||
preload_delivery_failures!
|
||||
end
|
||||
|
||||
def show
|
||||
authorize :instance, :show?
|
||||
@time_period = (6.days.ago.to_date...Time.now.utc.to_date)
|
||||
end
|
||||
|
||||
def destroy
|
||||
authorize :instance, :destroy?
|
||||
|
||||
Admin::DomainPurgeWorker.perform_async(@instance.domain)
|
||||
|
||||
log_action :destroy, @instance
|
||||
redirect_to admin_instances_path, notice: I18n.t('admin.instances.destroyed_msg', domain: @instance.domain)
|
||||
end
|
||||
|
||||
def clear_delivery_errors
|
||||
authorize :delivery, :clear_delivery_errors?
|
||||
|
||||
@instance.delivery_failure_tracker.clear_failures!
|
||||
redirect_to admin_instance_path(@instance.domain)
|
||||
end
|
||||
|
@ -33,11 +31,9 @@ module Admin
|
|||
def restart_delivery
|
||||
authorize :delivery, :restart_delivery?
|
||||
|
||||
last_unavailable_domain = unavailable_domain
|
||||
|
||||
if last_unavailable_domain.present?
|
||||
if @instance.unavailable?
|
||||
@instance.delivery_failure_tracker.track_success!
|
||||
log_action :destroy, last_unavailable_domain
|
||||
log_action :destroy, @instance.unavailable_domain
|
||||
end
|
||||
|
||||
redirect_to admin_instance_path(@instance.domain)
|
||||
|
@ -45,8 +41,7 @@ module Admin
|
|||
|
||||
def stop_delivery
|
||||
authorize :delivery, :stop_delivery?
|
||||
|
||||
UnavailableDomain.create(domain: @instance.domain)
|
||||
unavailable_domain = UnavailableDomain.create!(domain: @instance.domain)
|
||||
log_action :create, unavailable_domain
|
||||
redirect_to admin_instance_path(@instance.domain)
|
||||
end
|
||||
|
@ -57,12 +52,11 @@ module Admin
|
|||
@instance = Instance.find(params[:id])
|
||||
end
|
||||
|
||||
def set_exhausted_deliveries_days
|
||||
@exhausted_deliveries_days = @instance.delivery_failure_tracker.exhausted_deliveries_days
|
||||
end
|
||||
|
||||
def set_instances
|
||||
@instances = filtered_instances.page(params[:page])
|
||||
end
|
||||
|
||||
def preload_delivery_failures!
|
||||
warning_domains_map = DeliveryFailureTracker.warning_domains_map
|
||||
|
||||
@instances.each do |instance|
|
||||
|
@ -70,10 +64,6 @@ module Admin
|
|||
end
|
||||
end
|
||||
|
||||
def unavailable_domain
|
||||
UnavailableDomain.find_by(domain: @instance.domain)
|
||||
end
|
||||
|
||||
def filtered_instances
|
||||
InstanceFilter.new(whitelist_mode? ? { allowed: true } : filter_params).results
|
||||
end
|
||||
|
|
|
@ -10,6 +10,7 @@ class Api::V1::StatusesController < Api::BaseController
|
|||
before_action :set_thread, only: [:create]
|
||||
|
||||
override_rate_limit_headers :create, family: :statuses
|
||||
override_rate_limit_headers :update, family: :statuses
|
||||
|
||||
# This API was originally unlimited, pagination cannot be introduced without
|
||||
# breaking backwards-compatibility. Arbitrarily high number to cover most
|
||||
|
|
|
@ -4,8 +4,6 @@ class Auth::OmniauthCallbacksController < Devise::OmniauthCallbacksController
|
|||
skip_before_action :verify_authenticity_token
|
||||
|
||||
def self.provides_callback_for(provider)
|
||||
provider_id = provider.to_s.chomp '_oauth2'
|
||||
|
||||
define_method provider do
|
||||
@user = User.find_for_oauth(request.env['omniauth.auth'], current_user)
|
||||
|
||||
|
@ -20,7 +18,7 @@ class Auth::OmniauthCallbacksController < Devise::OmniauthCallbacksController
|
|||
)
|
||||
|
||||
sign_in_and_redirect @user, event: :authentication
|
||||
set_flash_message(:notice, :success, kind: provider_id.capitalize) if is_navigational_format?
|
||||
set_flash_message(:notice, :success, kind: Devise.omniauth_configs[provider].strategy.display_name.capitalize) if is_navigational_format?
|
||||
else
|
||||
session["devise.#{provider}_data"] = request.env['omniauth.auth']
|
||||
redirect_to new_user_registration_url
|
||||
|
@ -33,7 +31,7 @@ class Auth::OmniauthCallbacksController < Devise::OmniauthCallbacksController
|
|||
end
|
||||
|
||||
def after_sign_in_path_for(resource)
|
||||
if resource.email_verified?
|
||||
if resource.email_present?
|
||||
root_path
|
||||
else
|
||||
auth_setup_path(missing_email: '1')
|
||||
|
|
|
@ -241,6 +241,15 @@ module LanguagesHelper
|
|||
code
|
||||
end
|
||||
|
||||
def valid_locale_cascade(*arr)
|
||||
arr.each do |str|
|
||||
locale = valid_locale_or_nil(str)
|
||||
return locale if locale.present?
|
||||
end
|
||||
|
||||
nil
|
||||
end
|
||||
|
||||
def valid_locale?(locale)
|
||||
locale.present? && SUPPORTED_LOCALES.key?(locale.to_sym)
|
||||
end
|
||||
|
|
|
@ -132,7 +132,7 @@ module StatusesHelper
|
|||
end
|
||||
|
||||
def render_video_component(status, **options)
|
||||
video = status.media_attachments.first
|
||||
video = status.ordered_media_attachments.first
|
||||
|
||||
meta = video.file.meta || {}
|
||||
|
||||
|
@ -150,12 +150,12 @@ module StatusesHelper
|
|||
}.merge(**options)
|
||||
|
||||
react_component :video, component_params do
|
||||
render partial: 'statuses/attachment_list', locals: { attachments: status.media_attachments }
|
||||
render partial: 'statuses/attachment_list', locals: { attachments: status.ordered_media_attachments }
|
||||
end
|
||||
end
|
||||
|
||||
def render_audio_component(status, **options)
|
||||
audio = status.media_attachments.first
|
||||
audio = status.ordered_media_attachments.first
|
||||
|
||||
meta = audio.file.meta || {}
|
||||
|
||||
|
@ -170,7 +170,7 @@ module StatusesHelper
|
|||
}.merge(**options)
|
||||
|
||||
react_component :audio, component_params do
|
||||
render partial: 'statuses/attachment_list', locals: { attachments: status.media_attachments }
|
||||
render partial: 'statuses/attachment_list', locals: { attachments: status.ordered_media_attachments }
|
||||
end
|
||||
end
|
||||
|
||||
|
@ -178,11 +178,11 @@ module StatusesHelper
|
|||
component_params = {
|
||||
sensitive: sensitized?(status, current_account),
|
||||
autoplay: prefers_autoplay?,
|
||||
media: status.media_attachments.map { |a| ActiveModelSerializers::SerializableResource.new(a, serializer: REST::MediaAttachmentSerializer).as_json },
|
||||
media: status.ordered_media_attachments.map { |a| ActiveModelSerializers::SerializableResource.new(a, serializer: REST::MediaAttachmentSerializer).as_json },
|
||||
}.merge(**options)
|
||||
|
||||
react_component :media_gallery, component_params do
|
||||
render partial: 'statuses/attachment_list', locals: { attachments: status.media_attachments }
|
||||
render partial: 'statuses/attachment_list', locals: { attachments: status.ordered_media_attachments }
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -68,12 +68,12 @@ export default class Counter extends React.PureComponent {
|
|||
);
|
||||
} else {
|
||||
const measure = data[0];
|
||||
const percentChange = percIncrease(measure.previous_total * 1, measure.total * 1);
|
||||
const percentChange = measure.previous_total && percIncrease(measure.previous_total * 1, measure.total * 1);
|
||||
|
||||
content = (
|
||||
<React.Fragment>
|
||||
<span className='sparkline__value__total'><FormattedNumber value={measure.total} /></span>
|
||||
<span className={classNames('sparkline__value__change', { positive: percentChange > 0, negative: percentChange < 0 })}>{percentChange > 0 && '+'}<FormattedNumber value={percentChange} style='percent' /></span>
|
||||
<span className='sparkline__value__total'>{measure.human_value || <FormattedNumber value={measure.total} />}</span>
|
||||
{measure.previous_total && (<span className={classNames('sparkline__value__change', { positive: percentChange > 0, negative: percentChange < 0 })}>{percentChange > 0 && '+'}<FormattedNumber value={percentChange} style='percent' /></span>)}
|
||||
</React.Fragment>
|
||||
);
|
||||
}
|
||||
|
|
119
app/javascript/flavours/glitch/components/media_attachments.js
Normal file
119
app/javascript/flavours/glitch/components/media_attachments.js
Normal file
|
@ -0,0 +1,119 @@
|
|||
import React from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
import ImmutablePropTypes from 'react-immutable-proptypes';
|
||||
import ImmutablePureComponent from 'react-immutable-pure-component';
|
||||
import { MediaGallery, Video, Audio } from 'flavours/glitch/util/async-components';
|
||||
import Bundle from 'flavours/glitch/features/ui/components/bundle';
|
||||
import noop from 'lodash/noop';
|
||||
|
||||
export default class MediaAttachments extends ImmutablePureComponent {
|
||||
|
||||
static propTypes = {
|
||||
status: ImmutablePropTypes.map.isRequired,
|
||||
height: PropTypes.number,
|
||||
width: PropTypes.number,
|
||||
revealed: PropTypes.bool,
|
||||
};
|
||||
|
||||
static defaultProps = {
|
||||
height: 110,
|
||||
width: 239,
|
||||
};
|
||||
|
||||
updateOnProps = [
|
||||
'status',
|
||||
];
|
||||
|
||||
renderLoadingMediaGallery = () => {
|
||||
const { height, width } = this.props;
|
||||
|
||||
return (
|
||||
<div className='media-gallery' style={{ height, width }} />
|
||||
);
|
||||
}
|
||||
|
||||
renderLoadingVideoPlayer = () => {
|
||||
const { height, width } = this.props;
|
||||
|
||||
return (
|
||||
<div className='video-player' style={{ height, width }} />
|
||||
);
|
||||
}
|
||||
|
||||
renderLoadingAudioPlayer = () => {
|
||||
const { height, width } = this.props;
|
||||
|
||||
return (
|
||||
<div className='audio-player' style={{ height, width }} />
|
||||
);
|
||||
}
|
||||
|
||||
render () {
|
||||
const { status, width, height, revealed } = this.props;
|
||||
const mediaAttachments = status.get('media_attachments');
|
||||
|
||||
if (mediaAttachments.size === 0) {
|
||||
return null;
|
||||
}
|
||||
|
||||
if (mediaAttachments.getIn([0, 'type']) === 'audio') {
|
||||
const audio = mediaAttachments.get(0);
|
||||
|
||||
return (
|
||||
<Bundle fetchComponent={Audio} loading={this.renderLoadingAudioPlayer} >
|
||||
{Component => (
|
||||
<Component
|
||||
src={audio.get('url')}
|
||||
alt={audio.get('description')}
|
||||
width={width}
|
||||
height={height}
|
||||
poster={audio.get('preview_url') || status.getIn(['account', 'avatar_static'])}
|
||||
backgroundColor={audio.getIn(['meta', 'colors', 'background'])}
|
||||
foregroundColor={audio.getIn(['meta', 'colors', 'foreground'])}
|
||||
accentColor={audio.getIn(['meta', 'colors', 'accent'])}
|
||||
duration={audio.getIn(['meta', 'original', 'duration'], 0)}
|
||||
/>
|
||||
)}
|
||||
</Bundle>
|
||||
);
|
||||
} else if (mediaAttachments.getIn([0, 'type']) === 'video') {
|
||||
const video = mediaAttachments.get(0);
|
||||
|
||||
return (
|
||||
<Bundle fetchComponent={Video} loading={this.renderLoadingVideoPlayer} >
|
||||
{Component => (
|
||||
<Component
|
||||
preview={video.get('preview_url')}
|
||||
frameRate={video.getIn(['meta', 'original', 'frame_rate'])}
|
||||
blurhash={video.get('blurhash')}
|
||||
src={video.get('url')}
|
||||
alt={video.get('description')}
|
||||
width={width}
|
||||
height={height}
|
||||
inline
|
||||
sensitive={status.get('sensitive')}
|
||||
revealed={revealed}
|
||||
onOpenVideo={noop}
|
||||
/>
|
||||
)}
|
||||
</Bundle>
|
||||
);
|
||||
} else {
|
||||
return (
|
||||
<Bundle fetchComponent={MediaGallery} loading={this.renderLoadingMediaGallery} >
|
||||
{Component => (
|
||||
<Component
|
||||
media={mediaAttachments}
|
||||
sensitive={status.get('sensitive')}
|
||||
defaultWidth={width}
|
||||
revealed={revealed}
|
||||
height={height}
|
||||
onOpenMedia={noop}
|
||||
/>
|
||||
)}
|
||||
</Bundle>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
|
@ -40,7 +40,17 @@ class ColumnSettings extends React.PureComponent {
|
|||
}
|
||||
};
|
||||
|
||||
onSelect = mode => value => this.props.onChange(['tags', mode], value);
|
||||
onSelect = mode => value => {
|
||||
const oldValue = this.tags(mode);
|
||||
|
||||
// Prevent changes that add more than 4 tags, but allow removing
|
||||
// tags that were already added before
|
||||
if ((value.length > 4) && !(value < oldValue)) {
|
||||
return;
|
||||
}
|
||||
|
||||
this.props.onChange(['tags', mode], value);
|
||||
};
|
||||
|
||||
onToggle = () => {
|
||||
if (this.state.open && this.hasTags()) {
|
||||
|
|
|
@ -1,14 +1,12 @@
|
|||
import React from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
import ImmutablePropTypes from 'react-immutable-proptypes';
|
||||
import noop from 'lodash/noop';
|
||||
import StatusContent from 'flavours/glitch/components/status_content';
|
||||
import { MediaGallery, Video } from 'flavours/glitch/util/async-components';
|
||||
import Bundle from 'flavours/glitch/features/ui/components/bundle';
|
||||
import Avatar from 'flavours/glitch/components/avatar';
|
||||
import DisplayName from 'flavours/glitch/components/display_name';
|
||||
import RelativeTimestamp from 'flavours/glitch/components/relative_timestamp';
|
||||
import Option from './option';
|
||||
import MediaAttachments from 'flavours/glitch/components/media_attachments';
|
||||
|
||||
export default class StatusCheckBox extends React.PureComponent {
|
||||
|
||||
|
@ -27,53 +25,10 @@ export default class StatusCheckBox extends React.PureComponent {
|
|||
render () {
|
||||
const { status, checked } = this.props;
|
||||
|
||||
let media = null;
|
||||
|
||||
if (status.get('reblog')) {
|
||||
return null;
|
||||
}
|
||||
|
||||
if (status.get('media_attachments').size > 0) {
|
||||
if (status.get('media_attachments').some(item => item.get('type') === 'unknown')) {
|
||||
|
||||
} else if (status.getIn(['media_attachments', 0, 'type']) === 'video') {
|
||||
const video = status.getIn(['media_attachments', 0]);
|
||||
|
||||
media = (
|
||||
<Bundle fetchComponent={Video} loading={this.renderLoadingVideoPlayer} >
|
||||
{Component => (
|
||||
<Component
|
||||
preview={video.get('preview_url')}
|
||||
blurhash={video.get('blurhash')}
|
||||
src={video.get('url')}
|
||||
alt={video.get('description')}
|
||||
width={239}
|
||||
height={110}
|
||||
inline
|
||||
sensitive={status.get('sensitive')}
|
||||
revealed={false}
|
||||
onOpenVideo={noop}
|
||||
/>
|
||||
)}
|
||||
</Bundle>
|
||||
);
|
||||
} else {
|
||||
media = (
|
||||
<Bundle fetchComponent={MediaGallery} loading={this.renderLoadingMediaGallery} >
|
||||
{Component => (
|
||||
<Component
|
||||
media={status.get('media_attachments')}
|
||||
sensitive={status.get('sensitive')}
|
||||
revealed={false}
|
||||
height={110}
|
||||
onOpenMedia={noop}
|
||||
/>
|
||||
)}
|
||||
</Bundle>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
const labelComponent = (
|
||||
<div className='status-check-box__status poll__option__text'>
|
||||
<div className='detailed-status__display-name'>
|
||||
|
@ -84,7 +39,7 @@ export default class StatusCheckBox extends React.PureComponent {
|
|||
<div><DisplayName account={status.get('account')} /> · <RelativeTimestamp timestamp={status.get('created_at')} /></div>
|
||||
</div>
|
||||
|
||||
<StatusContent status={status} media={media} />
|
||||
<StatusContent status={status} media={<MediaAttachments status={status} revealed={false} />} />
|
||||
</div>
|
||||
);
|
||||
|
||||
|
|
|
@ -9,6 +9,7 @@ import escapeTextContentForBrowser from 'escape-html';
|
|||
import InlineAccount from 'flavours/glitch/components/inline_account';
|
||||
import IconButton from 'flavours/glitch/components/icon_button';
|
||||
import RelativeTimestamp from 'flavours/glitch/components/relative_timestamp';
|
||||
import MediaAttachments from 'flavours/glitch/components/media_attachments';
|
||||
|
||||
const mapStateToProps = (state, { statusId }) => ({
|
||||
versions: state.getIn(['history', statusId, 'items']),
|
||||
|
@ -70,6 +71,25 @@ class CompareHistoryModal extends React.PureComponent {
|
|||
)}
|
||||
|
||||
<div className='status__content__text status__content__text--visible translate' dangerouslySetInnerHTML={content} />
|
||||
|
||||
{!!currentVersion.get('poll') && (
|
||||
<div className='poll'>
|
||||
<ul>
|
||||
{currentVersion.getIn(['poll', 'options']).map(option => (
|
||||
<li key={option.get('title')}>
|
||||
<span className='poll__input disabled' />
|
||||
|
||||
<span
|
||||
className='poll__option__text translate'
|
||||
dangerouslySetInnerHTML={{ __html: emojify(escapeTextContentForBrowser(option.get('title')), emojiMap) }}
|
||||
/>
|
||||
</li>
|
||||
))}
|
||||
</ul>
|
||||
</div>
|
||||
)}
|
||||
|
||||
<MediaAttachments status={currentVersion} />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -367,6 +367,21 @@ body,
|
|||
}
|
||||
}
|
||||
|
||||
.positive-hint,
|
||||
.negative-hint,
|
||||
.neutral-hint {
|
||||
a {
|
||||
color: inherit;
|
||||
text-decoration: underline;
|
||||
|
||||
&:focus,
|
||||
&:hover,
|
||||
&:active {
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.positive-hint {
|
||||
color: $valid-value-color;
|
||||
font-weight: 500;
|
||||
|
@ -1612,3 +1627,38 @@ a.sparkline {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
.availability-indicator {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
margin-bottom: 30px;
|
||||
font-size: 14px;
|
||||
line-height: 21px;
|
||||
|
||||
&__hint {
|
||||
padding: 0 15px;
|
||||
}
|
||||
|
||||
&__graphic {
|
||||
display: flex;
|
||||
margin: 0 -2px;
|
||||
|
||||
&__item {
|
||||
display: block;
|
||||
flex: 0 0 auto;
|
||||
width: 4px;
|
||||
height: 21px;
|
||||
background: lighten($ui-base-color, 8%);
|
||||
margin: 0 2px;
|
||||
border-radius: 2px;
|
||||
|
||||
&.positive {
|
||||
background: $valid-value-color;
|
||||
}
|
||||
|
||||
&.negative {
|
||||
background: $error-value-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1563,41 +1563,6 @@ button.icon-button.active i.fa-retweet {
|
|||
filter: none;
|
||||
}
|
||||
|
||||
.compare-history-modal {
|
||||
.report-modal__target {
|
||||
border-bottom: 1px solid $ui-secondary-color;
|
||||
}
|
||||
|
||||
&__container {
|
||||
padding: 30px;
|
||||
pointer-events: all;
|
||||
}
|
||||
|
||||
.status__content {
|
||||
color: $inverted-text-color;
|
||||
font-size: 19px;
|
||||
line-height: 24px;
|
||||
|
||||
.emojione {
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
margin: -1px 0 0;
|
||||
}
|
||||
|
||||
a {
|
||||
color: $highlight-text-color;
|
||||
}
|
||||
|
||||
hr {
|
||||
height: 0.25rem;
|
||||
padding: 0;
|
||||
background-color: $ui-secondary-color;
|
||||
border: 0;
|
||||
margin: 20px 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.loading-bar {
|
||||
background-color: $ui-highlight-color;
|
||||
height: 3px;
|
||||
|
|
|
@ -1041,6 +1041,47 @@
|
|||
}
|
||||
}
|
||||
|
||||
.compare-history-modal {
|
||||
.report-modal__target {
|
||||
border-bottom: 1px solid $ui-secondary-color;
|
||||
}
|
||||
|
||||
&__container {
|
||||
padding: 30px;
|
||||
pointer-events: all;
|
||||
}
|
||||
|
||||
.status__content {
|
||||
color: $inverted-text-color;
|
||||
font-size: 19px;
|
||||
line-height: 24px;
|
||||
|
||||
.emojione {
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
margin: -1px 0 0;
|
||||
}
|
||||
|
||||
a {
|
||||
color: $highlight-text-color;
|
||||
}
|
||||
|
||||
hr {
|
||||
height: 0.25rem;
|
||||
padding: 0;
|
||||
background-color: $ui-secondary-color;
|
||||
border: 0;
|
||||
margin: 20px 0;
|
||||
}
|
||||
}
|
||||
|
||||
.media-gallery,
|
||||
.audio-player,
|
||||
.video-player {
|
||||
margin-top: 15px;
|
||||
}
|
||||
}
|
||||
|
||||
.embed-modal {
|
||||
width: auto;
|
||||
max-width: 80vw;
|
||||
|
|
|
@ -538,7 +538,7 @@
|
|||
.media-gallery,
|
||||
.audio-player,
|
||||
.video-player {
|
||||
margin-top: 8px;
|
||||
margin-top: 15px;
|
||||
max-width: 250px;
|
||||
}
|
||||
|
||||
|
|
|
@ -229,15 +229,21 @@
|
|||
.mute-modal,
|
||||
.block-modal,
|
||||
.report-modal,
|
||||
.report-dialog-modal,
|
||||
.embed-modal,
|
||||
.error-modal,
|
||||
.onboarding-modal,
|
||||
.report-modal__comment .setting-text__wrapper,
|
||||
.report-modal__comment .setting-text {
|
||||
.report-modal__comment .setting-text,
|
||||
.report-dialog-modal__textarea {
|
||||
background: $white;
|
||||
border: 1px solid lighten($ui-base-color, 8%);
|
||||
}
|
||||
|
||||
.report-dialog-modal .dialog-option .poll__input {
|
||||
color: $white;
|
||||
}
|
||||
|
||||
.report-modal__comment {
|
||||
border-right-color: lighten($ui-base-color, 8%);
|
||||
}
|
||||
|
|
|
@ -65,6 +65,24 @@
|
|||
}
|
||||
}
|
||||
|
||||
&.horizontal-table {
|
||||
border-collapse: collapse;
|
||||
border-style: hidden;
|
||||
|
||||
& > tbody > tr > th,
|
||||
& > tbody > tr > td {
|
||||
padding: 11px 10px;
|
||||
background: transparent;
|
||||
border: 1px solid lighten($ui-base-color, 8%);
|
||||
color: $secondary-text-color;
|
||||
}
|
||||
|
||||
& > tbody > tr > th {
|
||||
color: $darker-text-color;
|
||||
font-weight: 600;
|
||||
}
|
||||
}
|
||||
|
||||
&.batch-table {
|
||||
& > thead > tr > th {
|
||||
background: $ui-base-color;
|
||||
|
|
|
@ -68,12 +68,12 @@ export default class Counter extends React.PureComponent {
|
|||
);
|
||||
} else {
|
||||
const measure = data[0];
|
||||
const percentChange = percIncrease(measure.previous_total * 1, measure.total * 1);
|
||||
const percentChange = measure.previous_total && percIncrease(measure.previous_total * 1, measure.total * 1);
|
||||
|
||||
content = (
|
||||
<React.Fragment>
|
||||
<span className='sparkline__value__total'><FormattedNumber value={measure.total} /></span>
|
||||
<span className={classNames('sparkline__value__change', { positive: percentChange > 0, negative: percentChange < 0 })}>{percentChange > 0 && '+'}<FormattedNumber value={percentChange} style='percent' /></span>
|
||||
<span className='sparkline__value__total'>{measure.human_value || <FormattedNumber value={measure.total} />}</span>
|
||||
{measure.previous_total && (<span className={classNames('sparkline__value__change', { positive: percentChange > 0, negative: percentChange < 0 })}>{percentChange > 0 && '+'}<FormattedNumber value={percentChange} style='percent' /></span>)}
|
||||
</React.Fragment>
|
||||
);
|
||||
}
|
||||
|
|
116
app/javascript/mastodon/components/media_attachments.js
Normal file
116
app/javascript/mastodon/components/media_attachments.js
Normal file
|
@ -0,0 +1,116 @@
|
|||
import React from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
import ImmutablePropTypes from 'react-immutable-proptypes';
|
||||
import ImmutablePureComponent from 'react-immutable-pure-component';
|
||||
import { MediaGallery, Video, Audio } from 'mastodon/features/ui/util/async-components';
|
||||
import Bundle from 'mastodon/features/ui/components/bundle';
|
||||
import noop from 'lodash/noop';
|
||||
|
||||
export default class MediaAttachments extends ImmutablePureComponent {
|
||||
|
||||
static propTypes = {
|
||||
status: ImmutablePropTypes.map.isRequired,
|
||||
height: PropTypes.number,
|
||||
width: PropTypes.number,
|
||||
};
|
||||
|
||||
static defaultProps = {
|
||||
height: 110,
|
||||
width: 239,
|
||||
};
|
||||
|
||||
updateOnProps = [
|
||||
'status',
|
||||
];
|
||||
|
||||
renderLoadingMediaGallery = () => {
|
||||
const { height, width } = this.props;
|
||||
|
||||
return (
|
||||
<div className='media-gallery' style={{ height, width }} />
|
||||
);
|
||||
}
|
||||
|
||||
renderLoadingVideoPlayer = () => {
|
||||
const { height, width } = this.props;
|
||||
|
||||
return (
|
||||
<div className='video-player' style={{ height, width }} />
|
||||
);
|
||||
}
|
||||
|
||||
renderLoadingAudioPlayer = () => {
|
||||
const { height, width } = this.props;
|
||||
|
||||
return (
|
||||
<div className='audio-player' style={{ height, width }} />
|
||||
);
|
||||
}
|
||||
|
||||
render () {
|
||||
const { status, width, height } = this.props;
|
||||
const mediaAttachments = status.get('media_attachments');
|
||||
|
||||
if (mediaAttachments.size === 0) {
|
||||
return null;
|
||||
}
|
||||
|
||||
if (mediaAttachments.getIn([0, 'type']) === 'audio') {
|
||||
const audio = mediaAttachments.get(0);
|
||||
|
||||
return (
|
||||
<Bundle fetchComponent={Audio} loading={this.renderLoadingAudioPlayer} >
|
||||
{Component => (
|
||||
<Component
|
||||
src={audio.get('url')}
|
||||
alt={audio.get('description')}
|
||||
width={width}
|
||||
height={height}
|
||||
poster={audio.get('preview_url') || status.getIn(['account', 'avatar_static'])}
|
||||
backgroundColor={audio.getIn(['meta', 'colors', 'background'])}
|
||||
foregroundColor={audio.getIn(['meta', 'colors', 'foreground'])}
|
||||
accentColor={audio.getIn(['meta', 'colors', 'accent'])}
|
||||
duration={audio.getIn(['meta', 'original', 'duration'], 0)}
|
||||
/>
|
||||
)}
|
||||
</Bundle>
|
||||
);
|
||||
} else if (mediaAttachments.getIn([0, 'type']) === 'video') {
|
||||
const video = mediaAttachments.get(0);
|
||||
|
||||
return (
|
||||
<Bundle fetchComponent={Video} loading={this.renderLoadingVideoPlayer} >
|
||||
{Component => (
|
||||
<Component
|
||||
preview={video.get('preview_url')}
|
||||
frameRate={video.getIn(['meta', 'original', 'frame_rate'])}
|
||||
blurhash={video.get('blurhash')}
|
||||
src={video.get('url')}
|
||||
alt={video.get('description')}
|
||||
width={width}
|
||||
height={height}
|
||||
inline
|
||||
sensitive={status.get('sensitive')}
|
||||
onOpenVideo={noop}
|
||||
/>
|
||||
)}
|
||||
</Bundle>
|
||||
);
|
||||
} else {
|
||||
return (
|
||||
<Bundle fetchComponent={MediaGallery} loading={this.renderLoadingMediaGallery} >
|
||||
{Component => (
|
||||
<Component
|
||||
media={mediaAttachments}
|
||||
sensitive={status.get('sensitive')}
|
||||
defaultWidth={width}
|
||||
height={height}
|
||||
onOpenMedia={noop}
|
||||
/>
|
||||
)}
|
||||
</Bundle>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
|
@ -40,7 +40,17 @@ class ColumnSettings extends React.PureComponent {
|
|||
}
|
||||
};
|
||||
|
||||
onSelect = mode => value => this.props.onChange(['tags', mode], value);
|
||||
onSelect = mode => value => {
|
||||
const oldValue = this.tags(mode);
|
||||
|
||||
// Prevent changes that add more than 4 tags, but allow removing
|
||||
// tags that were already added before
|
||||
if ((value.length > 4) && !(value < oldValue)) {
|
||||
return;
|
||||
}
|
||||
|
||||
this.props.onChange(['tags', mode], value);
|
||||
};
|
||||
|
||||
onToggle = () => {
|
||||
if (this.state.open && this.hasTags()) {
|
||||
|
|
|
@ -1,14 +1,12 @@
|
|||
import React from 'react';
|
||||
import PropTypes from 'prop-types';
|
||||
import ImmutablePropTypes from 'react-immutable-proptypes';
|
||||
import noop from 'lodash/noop';
|
||||
import StatusContent from 'mastodon/components/status_content';
|
||||
import { MediaGallery, Video } from 'mastodon/features/ui/util/async-components';
|
||||
import Bundle from 'mastodon/features/ui/components/bundle';
|
||||
import Avatar from 'mastodon/components/avatar';
|
||||
import DisplayName from 'mastodon/components/display_name';
|
||||
import RelativeTimestamp from 'mastodon/components/relative_timestamp';
|
||||
import Option from './option';
|
||||
import MediaAttachments from 'mastodon/components/media_attachments';
|
||||
|
||||
export default class StatusCheckBox extends React.PureComponent {
|
||||
|
||||
|
@ -27,51 +25,10 @@ export default class StatusCheckBox extends React.PureComponent {
|
|||
render () {
|
||||
const { status, checked } = this.props;
|
||||
|
||||
let media = null;
|
||||
|
||||
if (status.get('reblog')) {
|
||||
return null;
|
||||
}
|
||||
|
||||
if (status.get('media_attachments').size > 0) {
|
||||
if (status.get('media_attachments').some(item => item.get('type') === 'unknown')) {
|
||||
|
||||
} else if (status.getIn(['media_attachments', 0, 'type']) === 'video') {
|
||||
const video = status.getIn(['media_attachments', 0]);
|
||||
|
||||
media = (
|
||||
<Bundle fetchComponent={Video} loading={this.renderLoadingVideoPlayer} >
|
||||
{Component => (
|
||||
<Component
|
||||
preview={video.get('preview_url')}
|
||||
blurhash={video.get('blurhash')}
|
||||
src={video.get('url')}
|
||||
alt={video.get('description')}
|
||||
width={239}
|
||||
height={110}
|
||||
inline
|
||||
sensitive={status.get('sensitive')}
|
||||
onOpenVideo={noop}
|
||||
/>
|
||||
)}
|
||||
</Bundle>
|
||||
);
|
||||
} else {
|
||||
media = (
|
||||
<Bundle fetchComponent={MediaGallery} loading={this.renderLoadingMediaGallery} >
|
||||
{Component => (
|
||||
<Component
|
||||
media={status.get('media_attachments')}
|
||||
sensitive={status.get('sensitive')}
|
||||
height={110}
|
||||
onOpenMedia={noop}
|
||||
/>
|
||||
)}
|
||||
</Bundle>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
const labelComponent = (
|
||||
<div className='status-check-box__status poll__option__text'>
|
||||
<div className='detailed-status__display-name'>
|
||||
|
@ -79,12 +36,13 @@ export default class StatusCheckBox extends React.PureComponent {
|
|||
<Avatar account={status.get('account')} size={46} />
|
||||
</div>
|
||||
|
||||
<div><DisplayName account={status.get('account')} /> · <RelativeTimestamp timestamp={status.get('created_at')} /></div>
|
||||
<div>
|
||||
<DisplayName account={status.get('account')} /> · <RelativeTimestamp timestamp={status.get('created_at')} />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<StatusContent status={status} />
|
||||
|
||||
{media}
|
||||
<MediaAttachments status={status} />
|
||||
</div>
|
||||
);
|
||||
|
||||
|
|
|
@ -9,6 +9,7 @@ import escapeTextContentForBrowser from 'escape-html';
|
|||
import InlineAccount from 'mastodon/components/inline_account';
|
||||
import IconButton from 'mastodon/components/icon_button';
|
||||
import RelativeTimestamp from 'mastodon/components/relative_timestamp';
|
||||
import MediaAttachments from 'mastodon/components/media_attachments';
|
||||
|
||||
const mapStateToProps = (state, { statusId }) => ({
|
||||
versions: state.getIn(['history', statusId, 'items']),
|
||||
|
@ -70,6 +71,25 @@ class CompareHistoryModal extends React.PureComponent {
|
|||
)}
|
||||
|
||||
<div className='status__content__text status__content__text--visible translate' dangerouslySetInnerHTML={content} />
|
||||
|
||||
{!!currentVersion.get('poll') && (
|
||||
<div className='poll'>
|
||||
<ul>
|
||||
{currentVersion.getIn(['poll', 'options']).map(option => (
|
||||
<li key={option.get('title')}>
|
||||
<span className='poll__input disabled' />
|
||||
|
||||
<span
|
||||
className='poll__option__text translate'
|
||||
dangerouslySetInnerHTML={{ __html: emojify(escapeTextContentForBrowser(option.get('title')), emojiMap) }}
|
||||
/>
|
||||
</li>
|
||||
))}
|
||||
</ul>
|
||||
</div>
|
||||
)}
|
||||
|
||||
<MediaAttachments status={currentVersion} />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Followers",
|
||||
"account.followers.empty": "No one follows this user yet.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.follows.empty": "This user doesn't follow anyone yet.",
|
||||
"account.follows_you": "Follows you",
|
||||
"account.hide_reblogs": "Hide boosts from @{name}",
|
||||
"account.joined": "Joined {date}",
|
||||
"account.last_status": "Last active",
|
||||
"account.link_verified_on": "Ownership of this link was checked on {date}",
|
||||
"account.locked_info": "This account privacy status is set to locked. The owner manually reviews who can follow them.",
|
||||
"account.media": "Media",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "Mute @{name}",
|
||||
"account.mute_notifications": "Mute notifications from @{name}",
|
||||
"account.muted": "Muted",
|
||||
"account.never_active": "Never",
|
||||
"account.posts": "Toots",
|
||||
"account.posts_with_replies": "Toots and replies",
|
||||
"account.report": "Report @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
|
||||
"account.unblock": "Unblock @{name}",
|
||||
"account.unblock_domain": "Unblock domain {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "Don't feature on profile",
|
||||
"account.unfollow": "Unfollow",
|
||||
"account.unmute": "Unmute @{name}",
|
||||
"account.unmute_notifications": "Unmute notifications from @{name}",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Click to add a note",
|
||||
"admin.dashboard.daily_retention": "User retention rate by day after sign-up",
|
||||
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "المُتابِعون",
|
||||
"account.followers.empty": "لا أحدَ يُتابع هذا المُستخدم حتى الآن.",
|
||||
"account.followers_counter": "{count, plural, zero{لا مُتابع} one {مُتابعٌ واحِد} two{مُتابعانِ اِثنان} few{{counter} مُتابِعين} many{{counter} مُتابِعًا} other {{counter} مُتابع}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, zero{لا يُتابِع} one {يُتابِعُ واحد} two{يُتابِعُ اِثنان} few{يُتابِعُ {counter}} many{يُتابِعُ {counter}} other {يُتابِعُ {counter}}}",
|
||||
"account.follows.empty": "لا يُتابع هذا المُستخدمُ أيَّ أحدٍ حتى الآن.",
|
||||
"account.follows_you": "يُتابِعُك",
|
||||
"account.hide_reblogs": "إخفاء مشاركات @{name}",
|
||||
"account.joined": "انضم في {date}",
|
||||
"account.last_status": "آخر نشاط",
|
||||
"account.link_verified_on": "تمَّ التَّحقق مِن مِلْكيّة هذا الرابط بتاريخ {date}",
|
||||
"account.locked_info": "تمَّ تعيين حالة خصوصية هذا الحساب إلى مُقفَل. يُراجع المالك يدويًا من يمكنه متابعته.",
|
||||
"account.media": "وسائط",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "كَتم @{name}",
|
||||
"account.mute_notifications": "كَتم الإشعارات من @{name}",
|
||||
"account.muted": "مَكتوم",
|
||||
"account.never_active": "أبدًا",
|
||||
"account.posts": "منشورات",
|
||||
"account.posts_with_replies": "المنشورات والرُدود",
|
||||
"account.report": "الإبلاغ عن @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, zero {لَا تَبويقات} one {تَبويقةٌ واحدة} two {تَبويقَتانِ اِثنتان} few {{counter} تَبويقات} many {{counter} تَبويقتًا} other {{counter} تَبويقة}}",
|
||||
"account.unblock": "إلغاء الحَظر عن @{name}",
|
||||
"account.unblock_domain": "إلغاء الحَظر عن النِّطاق {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "لا تُرَوِّج لهُ في الملف الشخصي",
|
||||
"account.unfollow": "إلغاء المُتابعة",
|
||||
"account.unmute": "إلغاء الكَتم عن @{name}",
|
||||
"account.unmute_notifications": "إلغاء كَتم الإشعارات عن @{name}",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "اضغط لإضافة مُلاحظة",
|
||||
"admin.dashboard.daily_retention": "User retention rate by day after sign-up",
|
||||
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Siguidores",
|
||||
"account.followers.empty": "Naide sigue a esti usuariu entá.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.follows.empty": "Esti usuariu entá nun sigue a naide.",
|
||||
"account.follows_you": "Síguete",
|
||||
"account.hide_reblogs": "Anubrir les comparticiones de @{name}",
|
||||
"account.joined": "Joined {date}",
|
||||
"account.last_status": "Cabera actividá",
|
||||
"account.link_verified_on": "La propiedá d'esti enllaz foi comprobada'l {date}",
|
||||
"account.locked_info": "This account privacy status is set to locked. The owner manually reviews who can follow them.",
|
||||
"account.media": "Media",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "Silenciar a @{name}",
|
||||
"account.mute_notifications": "Mute notifications from @{name}",
|
||||
"account.muted": "Muted",
|
||||
"account.never_active": "Enxamás",
|
||||
"account.posts": "Barritos",
|
||||
"account.posts_with_replies": "Barritos y rempuestes",
|
||||
"account.report": "Report @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
|
||||
"account.unblock": "Desbloquiar a @{name}",
|
||||
"account.unblock_domain": "Amosar {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "Nun destacar nel perfil",
|
||||
"account.unfollow": "Dexar de siguir",
|
||||
"account.unmute": "Unmute @{name}",
|
||||
"account.unmute_notifications": "Unmute notifications from @{name}",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Click to add a note",
|
||||
"admin.dashboard.daily_retention": "User retention rate by day after sign-up",
|
||||
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Последователи",
|
||||
"account.followers.empty": "Все още никой не следва този потребител.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Последовател} other {{counter} Последователи}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {{counter} Последван} other {{counter} Последвани}}",
|
||||
"account.follows.empty": "Този потребител все още не следва никого.",
|
||||
"account.follows_you": "Твой последовател",
|
||||
"account.hide_reblogs": "Скриване на споделяния от @{name}",
|
||||
"account.joined": "Joined {date}",
|
||||
"account.last_status": "Последно активен/а",
|
||||
"account.link_verified_on": "Собствеността върху тази връзка е проверена на {date}",
|
||||
"account.locked_info": "Този акаунт е поверително заключен. Собственикът преглежда ръчно кой може да го следва.",
|
||||
"account.media": "Мултимедия",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "Заглушаване на @{name}",
|
||||
"account.mute_notifications": "Заглушаване на известия от @{name}",
|
||||
"account.muted": "Заглушено",
|
||||
"account.never_active": "Никога",
|
||||
"account.posts": "Публикации",
|
||||
"account.posts_with_replies": "Toots with replies",
|
||||
"account.report": "Докладване на @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} Публикация} other {{counter} Публикации}}",
|
||||
"account.unblock": "Не блокирай",
|
||||
"account.unblock_domain": "Unhide {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "Не включвайте в профила",
|
||||
"account.unfollow": "Не следвай",
|
||||
"account.unmute": "Раззаглушаване на @{name}",
|
||||
"account.unmute_notifications": "Раззаглушаване на известия от @{name}",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Click to add a note",
|
||||
"admin.dashboard.daily_retention": "User retention rate by day after sign-up",
|
||||
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "অনুসরণকারী",
|
||||
"account.followers.empty": "এই ব্যক্তিকে এখনো কেউ অনুসরণ করে না।",
|
||||
"account.followers_counter": "{count, plural,one {{counter} জন অনুসরণকারী } other {{counter} জন অনুসরণকারী}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural,one {{counter} জনকে অনুসরণ} other {{counter} জনকে অনুসরণ}}",
|
||||
"account.follows.empty": "এই সদস্য কাওকে এখনো অনুসরণ করেন না.",
|
||||
"account.follows_you": "তোমাকে অনুসরণ করে",
|
||||
"account.hide_reblogs": "@{name}'র সমর্থনগুলি লুকিয়ে ফেলুন",
|
||||
"account.joined": "Joined {date}",
|
||||
"account.last_status": "শেষ সক্রিয় ছিল",
|
||||
"account.link_verified_on": "এই লিংকের মালিকানা চেক করা হয়েছে {date} তারিখে",
|
||||
"account.locked_info": "এই নিবন্ধনের গোপনীয়তার ক্ষেত্র তালা দেওয়া আছে। নিবন্ধনকারী অনুসরণ করার অনুমতি যাদেরকে দেবেন, শুধু তারাই অনুসরণ করতে পারবেন।",
|
||||
"account.media": "মিডিয়া",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "@{name} কে নিঃশব্দ করুন",
|
||||
"account.mute_notifications": "@{name} র প্রজ্ঞাপন আপনার কাছে নিঃশব্দ করুন",
|
||||
"account.muted": "নিঃশব্দ",
|
||||
"account.never_active": "কখনও নয়",
|
||||
"account.posts": "টুট",
|
||||
"account.posts_with_replies": "টুট এবং মতামত",
|
||||
"account.report": "@{name} কে রিপোর্ট করুন",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural,one {{counter} টুট} other {{counter} টুট}}",
|
||||
"account.unblock": "@{name} র কার্যকলাপ দেখুন",
|
||||
"account.unblock_domain": "{domain} কে আবার দেখুন",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "আপনার নিজের পাতায় এটা দেখবেন না",
|
||||
"account.unfollow": "অনুসরণ করো না",
|
||||
"account.unmute": "@{name} র কার্যকলাপ আবার দেখুন",
|
||||
"account.unmute_notifications": "@{name} র প্রজ্ঞাপন দেখুন",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "নোট যোগ করতে ক্লিক করুন",
|
||||
"admin.dashboard.daily_retention": "User retention rate by day after sign-up",
|
||||
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Heulier·ezed·ien",
|
||||
"account.followers.empty": "Den na heul an implijer-mañ c'hoazh.",
|
||||
"account.followers_counter": "{count, plural, other{{counter} Heulier}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, other {{counter} Heuliañ}}",
|
||||
"account.follows.empty": "An implijer·ez-mañ na heul den ebet.",
|
||||
"account.follows_you": "Ho heul",
|
||||
"account.hide_reblogs": "Kuzh toudoù rannet gant @{name}",
|
||||
"account.joined": "Amañ abaoe {date}",
|
||||
"account.last_status": "Oberiantiz zivezhañ",
|
||||
"account.link_verified_on": "Gwiriet eo bet perc'hennidigezh al liamm d'an deiziad-mañ : {date}",
|
||||
"account.locked_info": "Prennet eo ar gont-mañ. Dibab a ra ar perc'henn ar re a c'hall heuliañ anezhi pe anezhañ.",
|
||||
"account.media": "Media",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "Kuzhat @{name}",
|
||||
"account.mute_notifications": "Kuzh kemennoù eus @{name}",
|
||||
"account.muted": "Kuzhet",
|
||||
"account.never_active": "Birviken",
|
||||
"account.posts": "a doudoù",
|
||||
"account.posts_with_replies": "Toudoù ha respontoù",
|
||||
"account.report": "Disklêriañ @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} Toud} other {{counter} Toud}}",
|
||||
"account.unblock": "Diverzañ @{name}",
|
||||
"account.unblock_domain": "Diverzañ an domani {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "Paouez da lakaat war-wel war ar profil",
|
||||
"account.unfollow": "Diheuliañ",
|
||||
"account.unmute": "Diguzhat @{name}",
|
||||
"account.unmute_notifications": "Diguzhat kemennoù a @{name}",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Klikit evit ouzhpenniñ un notenn",
|
||||
"admin.dashboard.daily_retention": "User retention rate by day after sign-up",
|
||||
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Seguidors",
|
||||
"account.followers.empty": "Encara ningú no segueix aquest usuari.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Seguidor} other {{counter} Seguidors}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, other {{counter} Seguint}}",
|
||||
"account.follows.empty": "Aquest usuari encara no segueix a ningú.",
|
||||
"account.follows_you": "Et segueix",
|
||||
"account.hide_reblogs": "Amaga els impulsos de @{name}",
|
||||
"account.joined": "Unit des de {date}",
|
||||
"account.last_status": "Darrer actiu",
|
||||
"account.link_verified_on": "La propietat d'aquest enllaç es va verificar el dia {date}",
|
||||
"account.locked_info": "Aquest estat de privadesa del compte està definit com a bloquejat. El propietari revisa manualment qui pot seguir-lo.",
|
||||
"account.media": "Mèdia",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "Silencia @{name}",
|
||||
"account.mute_notifications": "Notificacions desactivades de @{name}",
|
||||
"account.muted": "Silenciat",
|
||||
"account.never_active": "Mai",
|
||||
"account.posts": "Tuts",
|
||||
"account.posts_with_replies": "Tuts i respostes",
|
||||
"account.report": "Informar sobre @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} Tut} other {{counter} Tuts}}",
|
||||
"account.unblock": "Desbloqueja @{name}",
|
||||
"account.unblock_domain": "Mostra {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "No recomanar en el perfil",
|
||||
"account.unfollow": "Deixa de seguir",
|
||||
"account.unmute": "Treure silenci de @{name}",
|
||||
"account.unmute_notifications": "Activar notificacions de @{name}",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Fes clic per afegir una nota",
|
||||
"admin.dashboard.daily_retention": "Ràtio de retenció per dia després del registre",
|
||||
"admin.dashboard.monthly_retention": "Ràtio de retenció per mes després del registre",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Abbunati",
|
||||
"account.followers.empty": "Nisunu hè abbunatu à st'utilizatore.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Abbunatu} other {{counter} Abbunati}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {{counter} Abbunamentu} other {{counter} Abbunamenti}}",
|
||||
"account.follows.empty": "St'utilizatore ùn seguita nisunu.",
|
||||
"account.follows_you": "Vi seguita",
|
||||
"account.hide_reblogs": "Piattà spartere da @{name}",
|
||||
"account.joined": "Quì dapoi {date}",
|
||||
"account.last_status": "Ultima attività",
|
||||
"account.link_verified_on": "A prupietà di stu ligame hè stata verificata u {date}",
|
||||
"account.locked_info": "U statutu di vita privata di u contu hè chjosu. U pruprietariu esamina manualmente e dumande d'abbunamentu.",
|
||||
"account.media": "Media",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "Piattà @{name}",
|
||||
"account.mute_notifications": "Piattà nutificazione da @{name}",
|
||||
"account.muted": "Piattatu",
|
||||
"account.never_active": "Mai",
|
||||
"account.posts": "Statuti",
|
||||
"account.posts_with_replies": "Statuti è risposte",
|
||||
"account.report": "Palisà @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} Statutu} other {{counter} Statuti}}",
|
||||
"account.unblock": "Sbluccà @{name}",
|
||||
"account.unblock_domain": "Ùn piattà più {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "Ùn fà figurà nant'à u prufilu",
|
||||
"account.unfollow": "Ùn siguità più",
|
||||
"account.unmute": "Ùn piattà più @{name}",
|
||||
"account.unmute_notifications": "Ùn piattà più nutificazione da @{name}",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Senza cummentariu",
|
||||
"admin.dashboard.daily_retention": "User retention rate by day after sign-up",
|
||||
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Sledující",
|
||||
"account.followers.empty": "Tohoto uživatele ještě nikdo nesleduje.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Sledující} few {{counter} Sledující} many {{counter} Sledujících} other {{counter} Sledujících}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {{counter} Sledovaný} few {{counter} Sledovaní} many {{counter} Sledovaných} other {{counter} Sledovaných}}",
|
||||
"account.follows.empty": "Tento uživatel ještě nikoho nesleduje.",
|
||||
"account.follows_you": "Sleduje vás",
|
||||
"account.hide_reblogs": "Skrýt boosty od @{name}",
|
||||
"account.joined": "Založen {date}",
|
||||
"account.last_status": "Naposledy aktivní",
|
||||
"account.link_verified_on": "Vlastnictví tohoto odkazu bylo zkontrolováno {date}",
|
||||
"account.locked_info": "Stav soukromí tohoto účtu je nastaven na zamčeno. Jeho vlastník ručně posuzuje, kdo ho může sledovat.",
|
||||
"account.media": "Média",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "Skrýt @{name}",
|
||||
"account.mute_notifications": "Skrýt oznámení od @{name}",
|
||||
"account.muted": "Skryt",
|
||||
"account.never_active": "Nikdy",
|
||||
"account.posts": "Příspěvky",
|
||||
"account.posts_with_replies": "Příspěvky a odpovědi",
|
||||
"account.report": "Nahlásit @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} Příspěvek} few {{counter} Příspěvky} many {{counter} Příspěvků} other {{counter} Příspěvků}}",
|
||||
"account.unblock": "Odblokovat @{name}",
|
||||
"account.unblock_domain": "Odblokovat doménu {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "Nezvýrazňovat na profilu",
|
||||
"account.unfollow": "Přestat sledovat",
|
||||
"account.unmute": "Zrušit skrytí @{name}",
|
||||
"account.unmute_notifications": "Zrušit skrytí oznámení od @{name}",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Klikněte pro přidání poznámky",
|
||||
"admin.dashboard.daily_retention": "User retention rate by day after sign-up",
|
||||
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Dilynwyr",
|
||||
"account.followers.empty": "Nid oes neb yn dilyn y defnyddiwr hwn eto.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Ddilynwr} other {{counter} o Ddilynwyr}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {{counter} yn Dilyn} other {{counter} yn Dilyn}}",
|
||||
"account.follows.empty": "Nid yw'r defnyddiwr hwn yn dilyn unrhyw un eto.",
|
||||
"account.follows_you": "Yn eich dilyn chi",
|
||||
"account.hide_reblogs": "Cuddio bwstiau o @{name}",
|
||||
"account.joined": "Joined {date}",
|
||||
"account.last_status": "Gweithredol olaf",
|
||||
"account.link_verified_on": "Gwiriwyd perchnogaeth y ddolen yma ar {date}",
|
||||
"account.locked_info": "Mae'r statws preifatrwydd cyfrif hwn wedi'i osod i gloi. Mae'r perchennog yn adolygu'r sawl sy'n gallu eu dilyn.",
|
||||
"account.media": "Cyfryngau",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "Tawelu @{name}",
|
||||
"account.mute_notifications": "Cuddio hysbysiadau o @{name}",
|
||||
"account.muted": "Distewyd",
|
||||
"account.never_active": "Byth",
|
||||
"account.posts": "Tŵtiau",
|
||||
"account.posts_with_replies": "Tŵtiau ac atebion",
|
||||
"account.report": "Adrodd @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} Dŵt} other {{counter} o Dŵtiau}}",
|
||||
"account.unblock": "Dadflocio @{name}",
|
||||
"account.unblock_domain": "Dadguddio {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "Peidio a'i arddangos ar fy mhroffil",
|
||||
"account.unfollow": "Dad-ddilyn",
|
||||
"account.unmute": "Dad-dawelu @{name}",
|
||||
"account.unmute_notifications": "Dad-dawelu hysbysiadau o @{name}",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Clicio i ychwanegu nodyn",
|
||||
"admin.dashboard.daily_retention": "User retention rate by day after sign-up",
|
||||
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Følgere",
|
||||
"account.followers.empty": "Ingen følger brugeren endnu.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Følger} other {{counter} Følgere}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {{counter} Følges} other {{counter} Følges}}",
|
||||
"account.follows.empty": "Denne bruger følger ikke nogen endnu.",
|
||||
"account.follows_you": "Følger dig",
|
||||
"account.hide_reblogs": "Skjul fremhævelser fra @{name}",
|
||||
"account.joined": "Tilmeldt {date}",
|
||||
"account.last_status": "Senest aktiv",
|
||||
"account.link_verified_on": "Ejerskab af dette link blev tjekket {date}",
|
||||
"account.locked_info": "Denne kontos fortrolighedsstatus er sat til låst. Ejeren bedømmer manuelt, hvem der kan følge vedkommende.",
|
||||
"account.media": "Medier",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "Skjul @{name}",
|
||||
"account.mute_notifications": "Skjul notifikationer fra @{name}",
|
||||
"account.muted": "Tystnet",
|
||||
"account.never_active": "Aldrig",
|
||||
"account.posts": "Indlæg",
|
||||
"account.posts_with_replies": "Indlæg og svar",
|
||||
"account.report": "Anmeld @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} Indlæg} other {{counter} Indlæg}}",
|
||||
"account.unblock": "Fjern blokeringen af @{name}",
|
||||
"account.unblock_domain": "Afblokér domænet {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "Fjern visning på din profil",
|
||||
"account.unfollow": "Følg ikke længere",
|
||||
"account.unmute": "Fjern tavsgjort for @{name}",
|
||||
"account.unmute_notifications": "Slå notifikationer om @{name} til igen",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Klik for at tilføje notat",
|
||||
"admin.dashboard.daily_retention": "Brugerfastholdelsesrate efter dag efter tilmelding",
|
||||
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Follower",
|
||||
"account.followers.empty": "Diesem Profil folgt noch niemand.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Follower}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {{counter} Folgender} other {{counter} Folgende}}",
|
||||
"account.follows.empty": "Dieses Profil folgt noch niemandem.",
|
||||
"account.follows_you": "Folgt dir",
|
||||
"account.hide_reblogs": "Geteilte Beiträge von @{name} verbergen",
|
||||
"account.joined": "Beigetreten am {date}",
|
||||
"account.last_status": "Zuletzt aktiv",
|
||||
"account.link_verified_on": "Besitz dieses Links wurde geprüft am {date}",
|
||||
"account.locked_info": "Der Privatsphärenstatus dieses Accounts wurde auf gesperrt gesetzt. Die Person bestimmt manuell wer ihm/ihr folgen darf.",
|
||||
"account.media": "Medien",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "@{name} stummschalten",
|
||||
"account.mute_notifications": "Benachrichtigungen von @{name} stummschalten",
|
||||
"account.muted": "Stummgeschaltet",
|
||||
"account.never_active": "Nie",
|
||||
"account.posts": "Beiträge",
|
||||
"account.posts_with_replies": "Beiträge und Antworten",
|
||||
"account.report": "@{name} melden",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} Beitrag} other {{counter} Beiträge}}",
|
||||
"account.unblock": "@{name} entblocken",
|
||||
"account.unblock_domain": "{domain} wieder anzeigen",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "Nicht auf Profil hervorheben",
|
||||
"account.unfollow": "Entfolgen",
|
||||
"account.unmute": "@{name} nicht mehr stummschalten",
|
||||
"account.unmute_notifications": "Benachrichtigungen von @{name} einschalten",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Notiz durch Klicken hinzufügen",
|
||||
"admin.dashboard.daily_retention": "Benutzerverbleibrate nach Tag nach Anmeldung",
|
||||
"admin.dashboard.monthly_retention": "Benutzerverbleibrate nach Monat nach Anmeldung",
|
||||
|
|
|
@ -1624,30 +1624,38 @@
|
|||
},
|
||||
{
|
||||
"descriptors": [
|
||||
{
|
||||
"defaultMessage": "Follow",
|
||||
"id": "account.follow"
|
||||
},
|
||||
{
|
||||
"defaultMessage": "Unfollow",
|
||||
"id": "account.unfollow"
|
||||
},
|
||||
{
|
||||
"defaultMessage": "Awaiting approval",
|
||||
"defaultMessage": "Follow",
|
||||
"id": "account.follow"
|
||||
},
|
||||
{
|
||||
"defaultMessage": "Cancel follow request",
|
||||
"id": "account.cancel_follow_request"
|
||||
},
|
||||
{
|
||||
"defaultMessage": "Awaiting approval. Click to cancel follow request",
|
||||
"id": "account.requested"
|
||||
},
|
||||
{
|
||||
"defaultMessage": "Unblock @{name}",
|
||||
"id": "account.unblock"
|
||||
"defaultMessage": "Unblock",
|
||||
"id": "account.unblock_short"
|
||||
},
|
||||
{
|
||||
"defaultMessage": "Unmute @{name}",
|
||||
"id": "account.unmute"
|
||||
"defaultMessage": "Unmute",
|
||||
"id": "account.unmute_short"
|
||||
},
|
||||
{
|
||||
"defaultMessage": "Unfollow",
|
||||
"id": "confirmations.unfollow.confirm"
|
||||
},
|
||||
{
|
||||
"defaultMessage": "Edit profile",
|
||||
"id": "account.edit_profile"
|
||||
},
|
||||
{
|
||||
"defaultMessage": "Are you sure you want to unfollow {name}?",
|
||||
"id": "confirmations.unfollow.message"
|
||||
|
@ -1661,12 +1669,8 @@
|
|||
"id": "account.followers"
|
||||
},
|
||||
{
|
||||
"defaultMessage": "Never",
|
||||
"id": "account.never_active"
|
||||
},
|
||||
{
|
||||
"defaultMessage": "Last active",
|
||||
"id": "account.last_status"
|
||||
"defaultMessage": "Following",
|
||||
"id": "account.following"
|
||||
}
|
||||
],
|
||||
"path": "app/javascript/mastodon/features/directory/components/account_card.json"
|
||||
|
@ -2007,10 +2011,6 @@
|
|||
{
|
||||
"defaultMessage": "Getting started",
|
||||
"id": "getting_started.heading"
|
||||
},
|
||||
{
|
||||
"defaultMessage": "Profile directory",
|
||||
"id": "getting_started.directory"
|
||||
}
|
||||
],
|
||||
"path": "app/javascript/mastodon/features/getting_started/index.json"
|
||||
|
@ -2742,7 +2742,7 @@
|
|||
"id": "report.reasons.spam"
|
||||
},
|
||||
{
|
||||
"defaultMessage": "Malicious links, fake engagement, or repetetive replies",
|
||||
"defaultMessage": "Malicious links, fake engagement, or repetitive replies",
|
||||
"id": "report.reasons.spam_description"
|
||||
},
|
||||
{
|
||||
|
@ -3402,6 +3402,10 @@
|
|||
"defaultMessage": "About this server",
|
||||
"id": "navigation_bar.info"
|
||||
},
|
||||
{
|
||||
"defaultMessage": "Profile directory",
|
||||
"id": "getting_started.directory"
|
||||
},
|
||||
{
|
||||
"defaultMessage": "Mobile apps",
|
||||
"id": "navigation_bar.apps"
|
||||
|
@ -3529,10 +3533,6 @@
|
|||
"defaultMessage": "Lists",
|
||||
"id": "navigation_bar.lists"
|
||||
},
|
||||
{
|
||||
"defaultMessage": "Profile directory",
|
||||
"id": "getting_started.directory"
|
||||
},
|
||||
{
|
||||
"defaultMessage": "Preferences",
|
||||
"id": "navigation_bar.preferences"
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Ακόλουθοι",
|
||||
"account.followers.empty": "Κανείς δεν ακολουθεί αυτό τον χρήστη ακόμα.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Ακόλουθος} other {{counter} Ακόλουθοι}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, other {{counter} Ακολουθεί}}",
|
||||
"account.follows.empty": "Αυτός ο χρήστης δεν ακολουθεί κανέναν ακόμα.",
|
||||
"account.follows_you": "Σε ακολουθεί",
|
||||
"account.hide_reblogs": "Απόκρυψη προωθήσεων από @{name}",
|
||||
"account.joined": "Μέλος από τις {date}",
|
||||
"account.last_status": "Τελευταία δραστηριότητα",
|
||||
"account.link_verified_on": "Η ιδιοκτησία αυτού του συνδέσμου ελέχθηκε την {date}",
|
||||
"account.locked_info": "Η κατάσταση απορρήτου αυτού του λογαριασμού είναι κλειδωμένη. Ο ιδιοκτήτης επιβεβαιώνει χειροκίνητα ποιος μπορεί να τον ακολουθήσει.",
|
||||
"account.media": "Πολυμέσα",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "Σώπασε @{name}",
|
||||
"account.mute_notifications": "Σώπασε τις ειδοποιήσεις από @{name}",
|
||||
"account.muted": "Αποσιωπημένος/η",
|
||||
"account.never_active": "Ποτέ",
|
||||
"account.posts": "Τουτ",
|
||||
"account.posts_with_replies": "Τουτ και απαντήσεις",
|
||||
"account.report": "Κατάγγειλε @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} Τουτ} other {{counter} Τουτ}}",
|
||||
"account.unblock": "Ξεμπλόκαρε @{name}",
|
||||
"account.unblock_domain": "Αποκάλυψε το {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "Άνευ προβολής στο προφίλ",
|
||||
"account.unfollow": "Διακοπή παρακολούθησης",
|
||||
"account.unmute": "Διακοπή αποσιώπησης @{name}",
|
||||
"account.unmute_notifications": "Διακοπή αποσιώπησης ειδοποιήσεων του/της @{name}",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Κλικ για να βάλεις σημείωση",
|
||||
"admin.dashboard.daily_retention": "User retention rate by day after sign-up",
|
||||
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Followers",
|
||||
"account.followers.empty": "No one follows this user yet.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.follows.empty": "This user doesn't follow anyone yet.",
|
||||
"account.follows_you": "Follows you",
|
||||
"account.hide_reblogs": "Hide boosts from @{name}",
|
||||
"account.joined": "Joined {date}",
|
||||
"account.last_status": "Last active",
|
||||
"account.link_verified_on": "Ownership of this link was checked on {date}",
|
||||
"account.locked_info": "This account privacy status is set to locked. The owner manually reviews who can follow them.",
|
||||
"account.media": "Media",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "Mute @{name}",
|
||||
"account.mute_notifications": "Mute notifications from @{name}",
|
||||
"account.muted": "Muted",
|
||||
"account.never_active": "Never",
|
||||
"account.posts": "Posts",
|
||||
"account.posts_with_replies": "Posts and replies",
|
||||
"account.report": "Report @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} Post} other {{counter} Posts}}",
|
||||
"account.unblock": "Unblock @{name}",
|
||||
"account.unblock_domain": "Unblock domain {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "Don't feature on profile",
|
||||
"account.unfollow": "Unfollow",
|
||||
"account.unmute": "Unmute @{name}",
|
||||
"account.unmute_notifications": "Unmute notifications from @{name}",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Click to add note",
|
||||
"admin.dashboard.daily_retention": "User retention rate by day after sign-up",
|
||||
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Sekvantoj",
|
||||
"account.followers.empty": "Ankoraŭ neniu sekvas tiun uzanton.",
|
||||
"account.followers_counter": "{count, plural, one{{counter} Sekvanto} other {{counter} Sekvantoj}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {{counter} Sekvato} other {{counter} Sekvatoj}}",
|
||||
"account.follows.empty": "Tiu uzanto ankoraŭ ne sekvas iun.",
|
||||
"account.follows_you": "Sekvas vin",
|
||||
"account.hide_reblogs": "Kaŝi diskonigojn de @{name}",
|
||||
"account.joined": "Kuniĝis {date}",
|
||||
"account.last_status": "Laste aktiva",
|
||||
"account.link_verified_on": "La posedanto de tiu ligilo estis kontrolita je {date}",
|
||||
"account.locked_info": "La privateco de tiu konto estas elektita kiel fermita. La posedanto povas mane akcepti tiun, kiu povas sekvi rin.",
|
||||
"account.media": "Amaskomunikiloj",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "Silentigi @{name}",
|
||||
"account.mute_notifications": "Silentigi sciigojn de @{name}",
|
||||
"account.muted": "Silentigita",
|
||||
"account.never_active": "Neniam",
|
||||
"account.posts": "Mesaĝoj",
|
||||
"account.posts_with_replies": "Kun respondoj",
|
||||
"account.report": "Signali @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} Mesaĝo} other {{counter} Mesaĝoj}}",
|
||||
"account.unblock": "Malbloki @{name}",
|
||||
"account.unblock_domain": "Malbloki {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "Ne montri en profilo",
|
||||
"account.unfollow": "Ne plu sekvi",
|
||||
"account.unmute": "Malsilentigi @{name}",
|
||||
"account.unmute_notifications": "Malsilentigi sciigojn de @{name}",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Alklaku por aldoni noton",
|
||||
"admin.dashboard.daily_retention": "User retention rate by day after sign-up",
|
||||
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Seguidores",
|
||||
"account.followers.empty": "Todavía nadie sigue a este usuario.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Seguidor} other {{counter} Seguidores}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, other {{counter} Siguiendo}}",
|
||||
"account.follows.empty": "Todavía este usuario no sigue a nadie.",
|
||||
"account.follows_you": "Te sigue",
|
||||
"account.hide_reblogs": "Ocultar adhesiones de @{name}",
|
||||
"account.joined": "En este servidor desde {date}",
|
||||
"account.last_status": "Última actividad",
|
||||
"account.link_verified_on": "La propiedad de este enlace fue verificada el {date}",
|
||||
"account.locked_info": "Esta cuenta es privada. El propietario manualmente revisa quién puede seguirle.",
|
||||
"account.media": "Medios",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "Silenciar a @{name}",
|
||||
"account.mute_notifications": "Silenciar notificaciones de @{name}",
|
||||
"account.muted": "Silenciado",
|
||||
"account.never_active": "Nunca",
|
||||
"account.posts": "Mensajes",
|
||||
"account.posts_with_replies": "Mensajes y respuestas públicas",
|
||||
"account.report": "Denunciar a @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} Mensaje} other {{counter} Mensajes}}",
|
||||
"account.unblock": "Desbloquear a @{name}",
|
||||
"account.unblock_domain": "Desbloquear dominio {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "No destacar en el perfil",
|
||||
"account.unfollow": "Dejar de seguir",
|
||||
"account.unmute": "Dejar de silenciar a @{name}",
|
||||
"account.unmute_notifications": "Dejar de silenciar las notificaciones de @{name}",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Hacé clic par agregar una nota",
|
||||
"admin.dashboard.daily_retention": "Tasa de retención de usuarios por día, después del registro",
|
||||
"admin.dashboard.monthly_retention": "Tasa de retención de usuarios por mes, después del registro",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Seguidores",
|
||||
"account.followers.empty": "Todavía nadie sigue a este usuario.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Seguidor} other {{counter} Seguidores}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, other {{counter} Siguiendo}}",
|
||||
"account.follows.empty": "Este usuario todavía no sigue a nadie.",
|
||||
"account.follows_you": "Te sigue",
|
||||
"account.hide_reblogs": "Ocultar retoots de @{name}",
|
||||
"account.joined": "Se unió el {date}",
|
||||
"account.last_status": "Última actividad",
|
||||
"account.link_verified_on": "El proprietario de este link fue comprobado el {date}",
|
||||
"account.locked_info": "El estado de privacidad de esta cuenta està configurado como bloqueado. El proprietario debe revisar manualmente quien puede seguirle.",
|
||||
"account.media": "Multimedia",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "Silenciar a @{name}",
|
||||
"account.mute_notifications": "Silenciar notificaciones de @{name}",
|
||||
"account.muted": "Silenciado",
|
||||
"account.never_active": "Nunca",
|
||||
"account.posts": "Toots",
|
||||
"account.posts_with_replies": "Toots con respuestas",
|
||||
"account.report": "Reportar a @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
|
||||
"account.unblock": "Desbloquear a @{name}",
|
||||
"account.unblock_domain": "Mostrar a {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "No mostrar en el perfil",
|
||||
"account.unfollow": "Dejar de seguir",
|
||||
"account.unmute": "Dejar de silenciar a @{name}",
|
||||
"account.unmute_notifications": "Dejar de silenciar las notificaciones de @{name}",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Clic para añadir nota",
|
||||
"admin.dashboard.daily_retention": "Tasa de retención de usuarios por día después del registro",
|
||||
"admin.dashboard.monthly_retention": "Tasa de retención de usuarios por mes después del registro",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Seguidores",
|
||||
"account.followers.empty": "Todavía nadie sigue a este usuario.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Seguidor} other {{counter} Seguidores}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, other {{counter} Siguiendo}}",
|
||||
"account.follows.empty": "Este usuario todavía no sigue a nadie.",
|
||||
"account.follows_you": "Te sigue",
|
||||
"account.hide_reblogs": "Ocultar retoots de @{name}",
|
||||
"account.joined": "Se unió el {date}",
|
||||
"account.last_status": "Última actividad",
|
||||
"account.link_verified_on": "El proprietario de este link fue comprobado el {date}",
|
||||
"account.locked_info": "El estado de privacidad de esta cuenta està configurado como bloqueado. El proprietario debe revisar manualmente quien puede seguirle.",
|
||||
"account.media": "Multimedia",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "Silenciar a @{name}",
|
||||
"account.mute_notifications": "Silenciar notificaciones de @{name}",
|
||||
"account.muted": "Silenciado",
|
||||
"account.never_active": "Nunca",
|
||||
"account.posts": "Publicaciones",
|
||||
"account.posts_with_replies": "Publicaciones y respuestas",
|
||||
"account.report": "Reportar a @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} Publicación} other {{counter} Publicaciones}}",
|
||||
"account.unblock": "Desbloquear a @{name}",
|
||||
"account.unblock_domain": "Mostrar a {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "No mostrar en el perfil",
|
||||
"account.unfollow": "Dejar de seguir",
|
||||
"account.unmute": "Dejar de silenciar a @{name}",
|
||||
"account.unmute_notifications": "Dejar de silenciar las notificaciones de @{name}",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Clic para añadir nota",
|
||||
"admin.dashboard.daily_retention": "Tasa de retención de usuarios por día después del registro",
|
||||
"admin.dashboard.monthly_retention": "Tasa de retención de usuarios por mes después del registro",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Jälgijad",
|
||||
"account.followers.empty": "Keegi ei jälgi seda kasutajat veel.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.follows.empty": "See kasutaja ei jälgi veel kedagi.",
|
||||
"account.follows_you": "Jälgib Teid",
|
||||
"account.hide_reblogs": "Peida upitused kasutajalt @{name}",
|
||||
"account.joined": "Joined {date}",
|
||||
"account.last_status": "Viimati aktiivne",
|
||||
"account.link_verified_on": "Selle lingi autorsust kontrolliti {date}",
|
||||
"account.locked_info": "Selle konto privaatsussätteks on lukustatud. Omanik vaatab manuaalselt üle, kes teda jägida saab.",
|
||||
"account.media": "Meedia",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "Vaigista @{name}",
|
||||
"account.mute_notifications": "Vaigista teated kasutajalt @{name}",
|
||||
"account.muted": "Vaigistatud",
|
||||
"account.never_active": "Mitte kunagi",
|
||||
"account.posts": "Tuututused",
|
||||
"account.posts_with_replies": "Tuututused ja vastused",
|
||||
"account.report": "Raporteeri @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
|
||||
"account.unblock": "Eemalda blokeering @{name}",
|
||||
"account.unblock_domain": "Tee {domain} nähtavaks",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "Ära kuva profiilil",
|
||||
"account.unfollow": "Ära jälgi",
|
||||
"account.unmute": "Ära vaigista @{name}",
|
||||
"account.unmute_notifications": "Ära vaigista teateid kasutajalt @{name}",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Click to add a note",
|
||||
"admin.dashboard.daily_retention": "User retention rate by day after sign-up",
|
||||
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Jarraitzaileak",
|
||||
"account.followers.empty": "Ez du inork erabiltzaile hau jarraitzen oraindik.",
|
||||
"account.followers_counter": "{count, plural, one {Jarraitzaile {counter}} other {{counter} jarraitzaile}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {{counter} jarraitzen} other {{counter} jarraitzen}}",
|
||||
"account.follows.empty": "Erabiltzaile honek ez du inor jarraitzen oraindik.",
|
||||
"account.follows_you": "Jarraitzen dizu",
|
||||
"account.hide_reblogs": "Ezkutatu @{name}(r)en bultzadak",
|
||||
"account.joined": "{date}(e)an elkartua",
|
||||
"account.last_status": "Azkenekoz aktiboa",
|
||||
"account.link_verified_on": "Esteka honen jabetzaren egiaztaketa data: {date}",
|
||||
"account.locked_info": "Kontu honen pribatutasun egoera blokeatuta gisa ezarri da. Jabeak eskuz erabakitzen du nork jarraitu diezaioken.",
|
||||
"account.media": "Multimedia",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "Mututu @{name}",
|
||||
"account.mute_notifications": "Mututu @{name}(r)en jakinarazpenak",
|
||||
"account.muted": "Mutututa",
|
||||
"account.never_active": "Inoiz ez",
|
||||
"account.posts": "Bidalketa",
|
||||
"account.posts_with_replies": "Bidalketak eta erantzunak",
|
||||
"account.report": "Salatu @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {Bidalketa {counter}} other {{counter} bidalketa}}",
|
||||
"account.unblock": "Desblokeatu @{name}",
|
||||
"account.unblock_domain": "Berriz erakutsi {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "Ez nabarmendu profilean",
|
||||
"account.unfollow": "Utzi jarraitzeari",
|
||||
"account.unmute": "Desmututu @{name}",
|
||||
"account.unmute_notifications": "Desmututu @{name}(r)en jakinarazpenak",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Click to add a note",
|
||||
"admin.dashboard.daily_retention": "Erabiltzaile atxikitze-tasa izena eman ondorengo eguneko",
|
||||
"admin.dashboard.monthly_retention": "Erabiltzaile atxikitze-tasa izena eman ondorengo hilabeteko",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "پیگیرندگان",
|
||||
"account.followers.empty": "هنوز کسی این کاربر را پیگیری نمیکند.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} پیگیرنده} other {{counter} پیگیرنده}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {{counter} پیگرفته} other {{counter} پیگرفته}}",
|
||||
"account.follows.empty": "این کاربر هنوز پیگیر کسی نیست.",
|
||||
"account.follows_you": "پی میگیردتان",
|
||||
"account.hide_reblogs": "نهفتن تقویتهای @{name}",
|
||||
"account.joined": "پیوسته از {date}",
|
||||
"account.last_status": "آخرین فعّالیت",
|
||||
"account.link_verified_on": "مالکیت این پیوند در {date} بررسی شد",
|
||||
"account.locked_info": "این حساب خصوصی است. صاحبش تصمیم میگیرد که چه کسی پیگیرش باشد.",
|
||||
"account.media": "رسانه",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "خموشاندن @{name}",
|
||||
"account.mute_notifications": "خموشاندن آگاهیها از @{name}",
|
||||
"account.muted": "خموش",
|
||||
"account.never_active": "هرگز",
|
||||
"account.posts": "فرسته",
|
||||
"account.posts_with_replies": "فرستهها و پاسخها",
|
||||
"account.report": "گزارش @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} فرسته} other {{counter} فرسته}}",
|
||||
"account.unblock": "رفع مسدودیت @{name}",
|
||||
"account.unblock_domain": "رفع مسدودیت دامنهٔ {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "معرّفی نکردن در نمایه",
|
||||
"account.unfollow": "ناپیگیری",
|
||||
"account.unmute": "ناخموشی @{name}",
|
||||
"account.unmute_notifications": "ناخموشی آگاهیها از @{name}",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "برای افزودن یادداشت کلیک کنید",
|
||||
"admin.dashboard.daily_retention": "User retention rate by day after sign-up",
|
||||
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Seuraajat",
|
||||
"account.followers.empty": "Kukaan ei seuraa tätä käyttäjää vielä.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} seuraaja} other {{counter} seuraajat}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {{counter} seuraa} other {{counter} seuraa}}",
|
||||
"account.follows.empty": "Tämä käyttäjä ei vielä seuraa ketään.",
|
||||
"account.follows_you": "Seuraa sinua",
|
||||
"account.hide_reblogs": "Piilota buustaukset käyttäjältä @{name}",
|
||||
"account.joined": "Liittynyt {date}",
|
||||
"account.last_status": "Aktiivinen viimeksi",
|
||||
"account.link_verified_on": "Tämän linkin omistaja tarkistettiin {date}",
|
||||
"account.locked_info": "Tämän tilin yksityisyyden tila on asetettu lukituksi. Omistaja arvioi manuaalisesti, kuka voi seurata niitä.",
|
||||
"account.media": "Media",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "Mykistä @{name}",
|
||||
"account.mute_notifications": "Mykistä ilmoitukset käyttäjältä @{name}",
|
||||
"account.muted": "Mykistetty",
|
||||
"account.never_active": "Ei koskaan",
|
||||
"account.posts": "Viestit",
|
||||
"account.posts_with_replies": "Viestit ja vastaukset",
|
||||
"account.report": "Raportoi @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
|
||||
"account.unblock": "Salli @{name}",
|
||||
"account.unblock_domain": "Salli {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "Poista suosittelu profiilistasi",
|
||||
"account.unfollow": "Lopeta seuraaminen",
|
||||
"account.unmute": "Poista käyttäjän @{name} mykistys",
|
||||
"account.unmute_notifications": "Poista mykistys käyttäjän @{name} ilmoituksilta",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Lisää muistiinpano napsauttamalla",
|
||||
"admin.dashboard.daily_retention": "Käyttäjän säilyminen rekisteröitymisen jälkeiseen päivään mennessä",
|
||||
"admin.dashboard.monthly_retention": "Käyttäjän säilyminen rekisteröitymisen jälkeiseen kuukauteen mennessä",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Abonnés",
|
||||
"account.followers.empty": "Personne ne suit cet·te utilisateur·rice pour l’instant.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Abonné·e} other {{counter} Abonné·e·s}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, other {{counter} Abonnements}}",
|
||||
"account.follows.empty": "Cet·te utilisateur·rice ne suit personne pour l’instant.",
|
||||
"account.follows_you": "Vous suit",
|
||||
"account.hide_reblogs": "Masquer les partages de @{name}",
|
||||
"account.joined": "Ici depuis {date}",
|
||||
"account.last_status": "Dernière activité",
|
||||
"account.link_verified_on": "La propriété de ce lien a été vérifiée le {date}",
|
||||
"account.locked_info": "Ce compte est privé. Son ou sa propriétaire approuve manuellement qui peut le suivre.",
|
||||
"account.media": "Médias",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "Masquer @{name}",
|
||||
"account.mute_notifications": "Ignorer les notifications de @{name}",
|
||||
"account.muted": "Masqué·e",
|
||||
"account.never_active": "Jamais",
|
||||
"account.posts": "Messages",
|
||||
"account.posts_with_replies": "Messages et réponses",
|
||||
"account.report": "Signaler @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} Message} other {{counter} Messages}}",
|
||||
"account.unblock": "Débloquer @{name}",
|
||||
"account.unblock_domain": "Débloquer le domaine {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "Ne plus recommander sur le profil",
|
||||
"account.unfollow": "Ne plus suivre",
|
||||
"account.unmute": "Ne plus masquer @{name}",
|
||||
"account.unmute_notifications": "Ne plus masquer les notifications de @{name}",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Cliquez pour ajouter une note",
|
||||
"admin.dashboard.daily_retention": "Taux de maintien des utilisateur·rice·s par jour après inscription",
|
||||
"admin.dashboard.monthly_retention": "Brugerfastholdelsesrate efter måned efter tilmelding",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Followers",
|
||||
"account.followers.empty": "No one follows this user yet.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.follows.empty": "This user doesn't follow anyone yet.",
|
||||
"account.follows_you": "Follows you",
|
||||
"account.hide_reblogs": "Hide boosts from @{name}",
|
||||
"account.joined": "Joined {date}",
|
||||
"account.last_status": "Last active",
|
||||
"account.link_verified_on": "Ownership of this link was checked on {date}",
|
||||
"account.locked_info": "This account privacy status is set to locked. The owner manually reviews who can follow them.",
|
||||
"account.media": "Media",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "Mute @{name}",
|
||||
"account.mute_notifications": "Mute notifications from @{name}",
|
||||
"account.muted": "Muted",
|
||||
"account.never_active": "Never",
|
||||
"account.posts": "Toots",
|
||||
"account.posts_with_replies": "Toots and replies",
|
||||
"account.report": "Report @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
|
||||
"account.unblock": "Unblock @{name}",
|
||||
"account.unblock_domain": "Unhide {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "Don't feature on profile",
|
||||
"account.unfollow": "Unfollow",
|
||||
"account.unmute": "Unmute @{name}",
|
||||
"account.unmute_notifications": "Unmute notifications from @{name}",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "No comment provided",
|
||||
"admin.dashboard.daily_retention": "User retention rate by day after sign-up",
|
||||
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Luchd-leantainn",
|
||||
"account.followers.empty": "Chan eil neach sam bith a’ leantainn air a’ chleachdaiche seo fhathast.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} neach-leantainn} two {{counter} neach-leantainn} few {{counter} luchd-leantainn} other {{counter} luchd-leantainn}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {A’ leantainn air {counter}} two {A’ leantainn air {counter}} few {A’ leantainn air {counter}} other {A’ leantainn air {counter}}}",
|
||||
"account.follows.empty": "Chan eil an cleachdaiche seo a’ leantainn air neach sam bith fhathast.",
|
||||
"account.follows_you": "’Gad leantainn",
|
||||
"account.hide_reblogs": "Falaich na brosnachaidhean o @{name}",
|
||||
"account.joined": "Air ballrachd fhaighinn {date}",
|
||||
"account.last_status": "An gnìomh mu dheireadh",
|
||||
"account.link_verified_on": "Chaidh dearbhadh cò leis a tha an ceangal seo {date}",
|
||||
"account.locked_info": "Tha prìobhaideachd ghlaiste aig a’ chunntais seo. Nì an sealbhadair lèirmheas a làimh air cò dh’fhaodas leantainn orra.",
|
||||
"account.media": "Meadhanan",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "Mùch @{name}",
|
||||
"account.mute_notifications": "Mùch na brathan o @{name}",
|
||||
"account.muted": "’Ga mhùchadh",
|
||||
"account.never_active": "Chan ann idir",
|
||||
"account.posts": "Postaichean",
|
||||
"account.posts_with_replies": "Postaichean ’s freagairtean",
|
||||
"account.report": "Dèan gearan mu @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} phost} two {{counter} phost} few {{counter} postaichean} other {{counter} post}}",
|
||||
"account.unblock": "Dì-bhac @{name}",
|
||||
"account.unblock_domain": "Dì-bhac an àrainn {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "Na brosnaich air a’ phròifil",
|
||||
"account.unfollow": "Na lean tuilleadh",
|
||||
"account.unmute": "Dì-mhùch @{name}",
|
||||
"account.unmute_notifications": "Dì-mhùch na brathan o @{name}",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Briog airson nòta a chur ris",
|
||||
"admin.dashboard.daily_retention": "Reat glèidheadh nan cleachdaichean às dèidh an clàradh a-rèir latha",
|
||||
"admin.dashboard.monthly_retention": "Reat glèidheadh nan cleachdaichean às dèidh an clàradh a-rèir mìos",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Seguidoras",
|
||||
"account.followers.empty": "Aínda ninguén segue esta usuaria.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Seguidora} other {{counter} Seguidoras}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {{counter} Seguindo} other {{counter} Seguindo}}",
|
||||
"account.follows.empty": "Esta usuaria aínda non segue a ninguén.",
|
||||
"account.follows_you": "Séguete",
|
||||
"account.hide_reblogs": "Agochar repeticións de @{name}",
|
||||
"account.joined": "Uníuse {date}",
|
||||
"account.last_status": "Última actividade",
|
||||
"account.link_verified_on": "A propiedade desta ligazón foi verificada o {date}",
|
||||
"account.locked_info": "Esta é unha conta privada. A propietaria revisa de xeito manual quen pode seguila.",
|
||||
"account.media": "Multimedia",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "Acalar @{name}",
|
||||
"account.mute_notifications": "Acalar as notificacións de @{name}",
|
||||
"account.muted": "Acalada",
|
||||
"account.never_active": "Nunca",
|
||||
"account.posts": "Publicacións",
|
||||
"account.posts_with_replies": "Publicacións e respostas",
|
||||
"account.report": "Informar sobre @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} Publicación} other {{counter} Publicacións}}",
|
||||
"account.unblock": "Desbloquear @{name}",
|
||||
"account.unblock_domain": "Amosar {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "Non amosar no perfil",
|
||||
"account.unfollow": "Deixar de seguir",
|
||||
"account.unmute": "Deixar de silenciar a @{name}",
|
||||
"account.unmute_notifications": "Deixar de silenciar as notificacións de @{name}",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Preme para engadir nota",
|
||||
"admin.dashboard.daily_retention": "Ratio de retención de usuarias após rexistrarse",
|
||||
"admin.dashboard.monthly_retention": "Ratio de retención de usuarias após un mes do rexistro",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "עוקבים",
|
||||
"account.followers.empty": "אף אחד לא עוקב אחר המשתמש הזה עדיין.",
|
||||
"account.followers_counter": "{count, plural,one {עוקב אחד} other {{counter} עוקבים}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural,one {עוקב אחרי {counter}}other {עוקב אחרי {counter}}}",
|
||||
"account.follows.empty": "משתמש זה לא עוקב אחר אף אחד עדיין.",
|
||||
"account.follows_you": "במעקב אחריך",
|
||||
"account.hide_reblogs": "להסתיר הידהודים מאת @{name}",
|
||||
"account.joined": "הצטרפו ב{date}",
|
||||
"account.last_status": "פעילות אחרונה",
|
||||
"account.link_verified_on": "בעלות על הקישור הזה נבדקה לאחרונה ב{date}",
|
||||
"account.locked_info": "מצב הפרטיות של החשבון הנוכחי הוגדר כנעול. בעל החשבון קובע באופן פרטני מי יכול לעקוב אחריו.",
|
||||
"account.media": "מדיה",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "להשתיק את @{name}",
|
||||
"account.mute_notifications": "להסתיר התראות מאת @{name}",
|
||||
"account.muted": "מושתק",
|
||||
"account.never_active": "אף פעם",
|
||||
"account.posts": "הודעות",
|
||||
"account.posts_with_replies": "Toots with replies",
|
||||
"account.report": "לדווח על @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
|
||||
"account.unblock": "הסרת חסימה מעל @{name}",
|
||||
"account.unblock_domain": "הסר חסימה מקהילת {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "לא להציג בפרופיל",
|
||||
"account.unfollow": "הפסקת מעקב",
|
||||
"account.unmute": "הפסקת השתקת @{name}",
|
||||
"account.unmute_notifications": "להפסיק הסתרת הודעות מעם @{name}",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "ללא הערה",
|
||||
"admin.dashboard.daily_retention": "User retention rate by day after sign-up",
|
||||
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "फॉलोवर",
|
||||
"account.followers.empty": "कोई भी इस यूज़र् को फ़ॉलो नहीं करता है",
|
||||
"account.followers_counter": "{count, plural, one {{counter} अनुगामी} other {{counter} समर्थक}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {{counter} निम्नलिखित} other {{counter} निम्नलिखित}}",
|
||||
"account.follows.empty": "यह यूज़र् अभी तक किसी को फॉलो नहीं करता है।",
|
||||
"account.follows_you": "आपको फॉलो करता है",
|
||||
"account.hide_reblogs": "@{name} के बूस्ट छुपाएं",
|
||||
"account.joined": "Joined {date}",
|
||||
"account.last_status": "अंतिम सक्रिय",
|
||||
"account.link_verified_on": "इस लिंक का स्वामित्व {date} को चेक किया गया था",
|
||||
"account.locked_info": "यह खाता गोपनीयता स्थिति लॉक करने के लिए सेट है। मालिक मैन्युअल रूप से समीक्षा करता है कि कौन उनको फॉलो कर सकता है।",
|
||||
"account.media": "मीडिया",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "म्यूट @{name}",
|
||||
"account.mute_notifications": "@{name} के नोटिफिकेशन म्यूट करे",
|
||||
"account.muted": "म्यूट है",
|
||||
"account.never_active": "कभी नहीं दिखे",
|
||||
"account.posts": "टूट्स",
|
||||
"account.posts_with_replies": "टूट्स एवं जवाब",
|
||||
"account.report": "रिपोर्ट @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} भोंपू} other {{counter} भोंपू}}",
|
||||
"account.unblock": "@{name} को अनब्लॉक करें",
|
||||
"account.unblock_domain": "{domain} दिखाए",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "प्रोफ़ाइल पर न दिखाए",
|
||||
"account.unfollow": "अनफॉलो करें",
|
||||
"account.unmute": "अनम्यूट @{name}",
|
||||
"account.unmute_notifications": "@{name} के नोटिफिकेशन अनम्यूट करे",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "नोट्स जोड़ने के लिए क्लिक करें",
|
||||
"admin.dashboard.daily_retention": "User retention rate by day after sign-up",
|
||||
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Pratitelji",
|
||||
"account.followers.empty": "Nitko još ne prati korisnika/cu.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} pratitelj} other {{counter} pratitelja}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {{counter} praćeni} few{{counter} praćena} other {{counter} praćenih}}",
|
||||
"account.follows.empty": "Korisnik/ca još ne prati nikoga.",
|
||||
"account.follows_you": "Prati te",
|
||||
"account.hide_reblogs": "Sakrij boostove od @{name}",
|
||||
"account.joined": "Pridružio se {date}",
|
||||
"account.last_status": "Posljednja aktivnost",
|
||||
"account.link_verified_on": "Vlasništvo ove poveznice provjereno je {date}",
|
||||
"account.locked_info": "Status privatnosti ovog računa postavljen je na zaključano. Vlasnik ručno pregledava tko ih može pratiti.",
|
||||
"account.media": "Medijski sadržaj",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "Utišaj @{name}",
|
||||
"account.mute_notifications": "Utišaj obavijesti od @{name}",
|
||||
"account.muted": "Utišano",
|
||||
"account.never_active": "Nikad",
|
||||
"account.posts": "Tootovi",
|
||||
"account.posts_with_replies": "Tootovi i odgovori",
|
||||
"account.report": "Prijavi @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} toot} other {{counter} toota}}",
|
||||
"account.unblock": "Deblokiraj @{name}",
|
||||
"account.unblock_domain": "Deblokiraj domenu {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "Ne ističi na profilu",
|
||||
"account.unfollow": "Prestani pratiti",
|
||||
"account.unmute": "Poništi utišavanje @{name}",
|
||||
"account.unmute_notifications": "Ne utišavaj obavijesti od @{name}",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Kliknite za dodavanje bilješke",
|
||||
"admin.dashboard.daily_retention": "User retention rate by day after sign-up",
|
||||
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Követő",
|
||||
"account.followers.empty": "Ezt a felhasználót még senki sem követi.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Követő} other {{counter} Követő}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, other {{counter} Követett}}",
|
||||
"account.follows.empty": "Ez a felhasználó még senkit sem követ.",
|
||||
"account.follows_you": "Követ téged",
|
||||
"account.hide_reblogs": "@{name} megtolásainak elrejtése",
|
||||
"account.joined": "Csatlakozott {date}",
|
||||
"account.last_status": "Utoljára aktív",
|
||||
"account.link_verified_on": "A linket eredetiségét ebben az időpontban ellenőriztük: {date}",
|
||||
"account.locked_info": "Ennek a fióknak zárolt a láthatósága. A tulajdonos kézzel engedélyezi, hogy ki követheti őt.",
|
||||
"account.media": "Média",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "@{name} némítása",
|
||||
"account.mute_notifications": "@{name} értesítéseinek némítása",
|
||||
"account.muted": "Némítva",
|
||||
"account.never_active": "Soha",
|
||||
"account.posts": "Bejegyzések",
|
||||
"account.posts_with_replies": "Bejegyzések és válaszok",
|
||||
"account.report": "@{name} jelentése",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} Bejegyzés} other {{counter} Bejegyzés}}",
|
||||
"account.unblock": "@{name} letiltásának feloldása",
|
||||
"account.unblock_domain": "{domain} elrejtésének feloldása",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "Ne jelenjen meg a profilodon",
|
||||
"account.unfollow": "Követés megszüntetése",
|
||||
"account.unmute": "@{name} némítás feloldása",
|
||||
"account.unmute_notifications": "@{name} némított értesítéseinek feloldása",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Klikk a feljegyzéshez",
|
||||
"admin.dashboard.daily_retention": "Napi regisztráció utáni felhasználómegtartási arány",
|
||||
"admin.dashboard.monthly_retention": "Havi regisztráció utáni felhasználómegtartási arány",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Հետեւողներ",
|
||||
"account.followers.empty": "Այս օգտատիրոջը դեռ ոչ մէկ չի հետեւում։",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Հետեւորդ} other {{counter} Հետեւորդ}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {{counter} հետեւած} other {{counter} հետեւած}}",
|
||||
"account.follows.empty": "Այս օգտատէրը դեռ ոչ մէկի չի հետեւում։",
|
||||
"account.follows_you": "Հետեւում է քեզ",
|
||||
"account.hide_reblogs": "Թաքցնել @{name}֊ի տարածածները",
|
||||
"account.joined": "Միացել է {date}-ից",
|
||||
"account.last_status": "Վերջին այցը",
|
||||
"account.link_verified_on": "Սոյն յղման տիրապետումը ստուգուած է՝ {date}֊ին",
|
||||
"account.locked_info": "Սոյն հաշուի գաղտնիութեան մակարդակը նշուած է որպէս՝ փակ։ Հաշուի տէրն ընտրում է, թէ ով կարող է հետեւել իրեն։",
|
||||
"account.media": "Մեդիա",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "Լռեցնել @{name}֊ին",
|
||||
"account.mute_notifications": "Անջատել ծանուցումները @{name}֊ից",
|
||||
"account.muted": "Լռեցուած",
|
||||
"account.never_active": "Երբեք",
|
||||
"account.posts": "Գրառումներ",
|
||||
"account.posts_with_replies": "Գրառումներ եւ պատասխաններ",
|
||||
"account.report": "Բողոքել @{name}֊ի մասին",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} Գրառում} other {{counter} Գրառումներ}}",
|
||||
"account.unblock": "Ապաարգելափակել @{name}֊ին",
|
||||
"account.unblock_domain": "Ցուցադրել {domain} թաքցուած տիրոյթի գրառումները",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "Չցուցադրել անձնական էջում",
|
||||
"account.unfollow": "Ապահետեւել",
|
||||
"account.unmute": "Ապալռեցնել @{name}֊ին",
|
||||
"account.unmute_notifications": "Միացնել ծանուցումները @{name}֊ից",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Սեղմէ՛ք գրառելու համար\n",
|
||||
"admin.dashboard.daily_retention": "User retention rate by day after sign-up",
|
||||
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Pengikut",
|
||||
"account.followers.empty": "Pengguna ini belum ada pengikut.",
|
||||
"account.followers_counter": "{count, plural, other {{counter} Pengikut}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, other {{counter} Mengikuti}}",
|
||||
"account.follows.empty": "Pengguna ini belum mengikuti siapapun.",
|
||||
"account.follows_you": "Mengikuti anda",
|
||||
"account.hide_reblogs": "Sembunyikan boosts dari @{name}",
|
||||
"account.joined": "Bergabung {date}",
|
||||
"account.last_status": "Terakhir aktif",
|
||||
"account.link_verified_on": "Kepemilikan tautan ini telah dicek pada {date}",
|
||||
"account.locked_info": "Status privasi akun ini disetel untuk dikunci. Pemilik secara manual meninjau siapa yang dapat mengikutinya.",
|
||||
"account.media": "Media",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "Bisukan @{name}",
|
||||
"account.mute_notifications": "Bisukan pemberitahuan dari @{name}",
|
||||
"account.muted": "Dibisukan",
|
||||
"account.never_active": "Tak pernah",
|
||||
"account.posts": "Kiriman",
|
||||
"account.posts_with_replies": "Postingan dengan balasan",
|
||||
"account.report": "Laporkan @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, other {{counter} Toot}}",
|
||||
"account.unblock": "Hapus blokir @{name}",
|
||||
"account.unblock_domain": "Buka blokir domain {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "Jangan tampilkan di profil",
|
||||
"account.unfollow": "Berhenti mengikuti",
|
||||
"account.unmute": "Berhenti membisukan @{name}",
|
||||
"account.unmute_notifications": "Berhenti bisukan pemberitahuan dari @{name}",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Klik untuk menambah catatan",
|
||||
"admin.dashboard.daily_retention": "Tingkat retensi pengguna perhari setelah mendaftar",
|
||||
"admin.dashboard.monthly_retention": "Tingkat retensi pengguna perbulan setelah mendaftar",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Sequanti",
|
||||
"account.followers.empty": "No one follows this user yet.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.follows.empty": "This user doesn't follow anyone yet.",
|
||||
"account.follows_you": "Sequas tu",
|
||||
"account.hide_reblogs": "Hide boosts from @{name}",
|
||||
"account.joined": "Joined {date}",
|
||||
"account.last_status": "Last active",
|
||||
"account.link_verified_on": "Ownership of this link was checked on {date}",
|
||||
"account.locked_info": "This account privacy status is set to locked. The owner manually reviews who can follow them.",
|
||||
"account.media": "Media",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "Celar @{name}",
|
||||
"account.mute_notifications": "Mute notifications from @{name}",
|
||||
"account.muted": "Muted",
|
||||
"account.never_active": "Never",
|
||||
"account.posts": "Mesaji",
|
||||
"account.posts_with_replies": "Toots with replies",
|
||||
"account.report": "Denuncar @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
|
||||
"account.unblock": "Desblokusar @{name}",
|
||||
"account.unblock_domain": "Unhide {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "Don't feature on profile",
|
||||
"account.unfollow": "Ne plus sequar",
|
||||
"account.unmute": "Ne plus celar @{name}",
|
||||
"account.unmute_notifications": "Unmute notifications from @{name}",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Click to add a note",
|
||||
"admin.dashboard.daily_retention": "User retention rate by day after sign-up",
|
||||
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Fylgjendur",
|
||||
"account.followers.empty": "Ennþá fylgist enginn með þessum notanda.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} fylgjandi} other {{counter} fylgjendur}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {{counter} fylgist með} other {{counter} fylgjast með}}",
|
||||
"account.follows.empty": "Þessi notandi fylgist ennþá ekki með neinum.",
|
||||
"account.follows_you": "Fylgir þér",
|
||||
"account.hide_reblogs": "Fela endurbirtingar fyrir @{name}",
|
||||
"account.joined": "Gerðist þátttakandi {date}",
|
||||
"account.last_status": "Síðasta virkni",
|
||||
"account.link_verified_on": "Eignarhald á þessum tengli var athugað þann {date}",
|
||||
"account.locked_info": "Staða gagnaleyndar á þessum aðgangi er stillt á læsingu. Eigandinn yfirfer handvirkt hverjir geti fylgst með honum.",
|
||||
"account.media": "Myndskrár",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "Þagga niður í @{name}",
|
||||
"account.mute_notifications": "Þagga tilkynningar frá @{name}",
|
||||
"account.muted": "Þaggað",
|
||||
"account.never_active": "Aldrei",
|
||||
"account.posts": "Færslur",
|
||||
"account.posts_with_replies": "Færslur og svör",
|
||||
"account.report": "Kæra @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} færsla} other {{counter} færslur}}",
|
||||
"account.unblock": "Aflétta útilokun af @{name}",
|
||||
"account.unblock_domain": "Aflétta útilokun lénsins {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "Ekki birta á notandasniði",
|
||||
"account.unfollow": "Hætta að fylgja",
|
||||
"account.unmute": "Hætta að þagga niður í @{name}",
|
||||
"account.unmute_notifications": "Hætta að þagga tilkynningar frá @{name}",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Smelltu til að bæta við minnispunkti",
|
||||
"admin.dashboard.daily_retention": "Hlutfall virkra notenda eftir nýskráningu eftir dögum",
|
||||
"admin.dashboard.monthly_retention": "Hlutfall virkra notenda eftir nýskráningu eftir mánuðum",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Follower",
|
||||
"account.followers.empty": "Nessuno segue ancora questo utente.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Follower}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, other {{counter} Seguiti}}",
|
||||
"account.follows.empty": "Questo utente non segue nessuno ancora.",
|
||||
"account.follows_you": "Ti segue",
|
||||
"account.hide_reblogs": "Nascondi condivisioni da @{name}",
|
||||
"account.joined": "Su questa istanza dal {date}",
|
||||
"account.last_status": "Ultima attività",
|
||||
"account.link_verified_on": "La proprietà di questo link è stata controllata il {date}",
|
||||
"account.locked_info": "Questo è un account privato. Il proprietario approva manualmente chi può seguirlo.",
|
||||
"account.media": "Media",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "Silenzia @{name}",
|
||||
"account.mute_notifications": "Silenzia notifiche da @{name}",
|
||||
"account.muted": "Silenziato",
|
||||
"account.never_active": "Mai",
|
||||
"account.posts": "Post",
|
||||
"account.posts_with_replies": "Post e risposte",
|
||||
"account.report": "Segnala @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} Post} other {{counter} Post}}",
|
||||
"account.unblock": "Sblocca @{name}",
|
||||
"account.unblock_domain": "Sblocca il dominio {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "Non mostrare sul profilo",
|
||||
"account.unfollow": "Smetti di seguire",
|
||||
"account.unmute": "Riattiva @{name}",
|
||||
"account.unmute_notifications": "Riattiva le notifiche da @{name}",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Clicca per aggiungere una nota",
|
||||
"admin.dashboard.daily_retention": "Tasso di ritenzione utente per giorno dopo la registrazione",
|
||||
"admin.dashboard.monthly_retention": "Tasso di ritenzione utente per mese dopo la registrazione",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "フォロワー",
|
||||
"account.followers.empty": "まだ誰もフォローしていません。",
|
||||
"account.followers_counter": "{counter} フォロワー",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{counter} フォロー",
|
||||
"account.follows.empty": "まだ誰もフォローしていません。",
|
||||
"account.follows_you": "フォローされています",
|
||||
"account.hide_reblogs": "@{name}さんからのブーストを非表示",
|
||||
"account.joined": "{date} に登録",
|
||||
"account.last_status": "最後の活動",
|
||||
"account.link_verified_on": "このリンクの所有権は{date}に確認されました",
|
||||
"account.locked_info": "このアカウントは承認制アカウントです。相手が承認するまでフォローは完了しません。",
|
||||
"account.media": "メディア",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "@{name}さんをミュート",
|
||||
"account.mute_notifications": "@{name}さんからの通知を受け取らない",
|
||||
"account.muted": "ミュート済み",
|
||||
"account.never_active": "活動なし",
|
||||
"account.posts": "投稿",
|
||||
"account.posts_with_replies": "投稿と返信",
|
||||
"account.report": "@{name}さんを通報",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{counter} 投稿",
|
||||
"account.unblock": "@{name}さんのブロックを解除",
|
||||
"account.unblock_domain": "{domain}のブロックを解除",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "プロフィールから外す",
|
||||
"account.unfollow": "フォロー解除",
|
||||
"account.unmute": "@{name}さんのミュートを解除",
|
||||
"account.unmute_notifications": "@{name}さんからの通知を受け取るようにする",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "クリックしてメモを追加",
|
||||
"admin.dashboard.daily_retention": "サインアップ後の日ごとのユーザー継続率",
|
||||
"admin.dashboard.monthly_retention": "サインアップ後の月ごとのユーザー継続率",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "მიმდევრები",
|
||||
"account.followers.empty": "No one follows this user yet.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.follows.empty": "This user doesn't follow anyone yet.",
|
||||
"account.follows_you": "მოგყვებათ",
|
||||
"account.hide_reblogs": "დაიმალოს ბუსტები @{name}-სგან",
|
||||
"account.joined": "Joined {date}",
|
||||
"account.last_status": "Last active",
|
||||
"account.link_verified_on": "Ownership of this link was checked on {date}",
|
||||
"account.locked_info": "This account privacy status is set to locked. The owner manually reviews who can follow them.",
|
||||
"account.media": "მედია",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "გააჩუმე @{name}",
|
||||
"account.mute_notifications": "გააჩუმე შეტყობინებები @{name}-სგან",
|
||||
"account.muted": "გაჩუმებული",
|
||||
"account.never_active": "Never",
|
||||
"account.posts": "ტუტები",
|
||||
"account.posts_with_replies": "ტუტები და პასუხები",
|
||||
"account.report": "დაარეპორტე @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
|
||||
"account.unblock": "განბლოკე @{name}",
|
||||
"account.unblock_domain": "გამოაჩინე {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "არ გამოირჩეს პროფილზე",
|
||||
"account.unfollow": "ნუღარ მიჰყვები",
|
||||
"account.unmute": "ნუღარ აჩუმებ @{name}-ს",
|
||||
"account.unmute_notifications": "ნუღარ აჩუმებ შეტყობინებებს @{name}-სგან",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Click to add a note",
|
||||
"admin.dashboard.daily_retention": "User retention rate by day after sign-up",
|
||||
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Imeḍfaren",
|
||||
"account.followers.empty": "Ar tura, ulac yiwen i yeṭṭafaṛen amseqdac-agi.",
|
||||
"account.followers_counter": "{count, plural, one {{count} n umeḍfar} other {{count} n imeḍfaren}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {{counter} yeṭṭafaren} aḍfar {{counter} wayeḍ}}",
|
||||
"account.follows.empty": "Ar tura, amseqdac-agi ur yeṭṭafaṛ yiwen.",
|
||||
"account.follows_you": "Yeṭṭafaṛ-ik",
|
||||
"account.hide_reblogs": "Ffer ayen i ibeṭṭu @{name}",
|
||||
"account.joined": "Yerna-d {date}",
|
||||
"account.last_status": "Armud aneggaru",
|
||||
"account.link_verified_on": "Taɣara n useɣwen-a tettwasenqed ass n {date}",
|
||||
"account.locked_info": "Amiḍan-agi uslig isekweṛ. D bab-is kan i izemren ad yeǧǧ, s ufus-is, win ara t-iḍefṛen.",
|
||||
"account.media": "Amidya",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "Sgugem @{name}",
|
||||
"account.mute_notifications": "Sgugem tilɣa sγur @{name}",
|
||||
"account.muted": "Yettwasgugem",
|
||||
"account.never_active": "Werǧin",
|
||||
"account.posts": "Tijewwaqin",
|
||||
"account.posts_with_replies": "Tijewwaqin akked tririyin",
|
||||
"account.report": "Cetki ɣef @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} ajewwaq} other {{counter} ijewwaqen}}",
|
||||
"account.unblock": "Serreḥ i @{name}",
|
||||
"account.unblock_domain": "Ssken-d {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "Ur ttwellih ara fell-as deg umaɣnu-inek",
|
||||
"account.unfollow": "Ur ṭṭafaṛ ara",
|
||||
"account.unmute": "Kkes asgugem ɣef @{name}",
|
||||
"account.unmute_notifications": "Serreḥ ilɣa sɣur @{name}",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Ulac iwenniten",
|
||||
"admin.dashboard.daily_retention": "User retention rate by day after sign-up",
|
||||
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Оқырмандар",
|
||||
"account.followers.empty": "Әлі ешкім жазылмаған.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Оқырман} other {{counter} Оқырман}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {{counter} Жазылым} other {{counter} Жазылым}}",
|
||||
"account.follows.empty": "Ешкімге жазылмапты.",
|
||||
"account.follows_you": "Сізге жазылыпты",
|
||||
"account.hide_reblogs": "@{name} атты қолданушының әрекеттерін жасыру",
|
||||
"account.joined": "Joined {date}",
|
||||
"account.last_status": "Соңғы белсенділік",
|
||||
"account.link_verified_on": "Сілтеме меншігі расталған күн {date}",
|
||||
"account.locked_info": "Бұл қолданушы өзі туралы мәліметтерді жасырған. Тек жазылғандар ғана көре алады.",
|
||||
"account.media": "Медиа",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "Үнсіз қылу @{name}",
|
||||
"account.mute_notifications": "@{name} туралы ескертпелерді жасыру",
|
||||
"account.muted": "Үнсіз",
|
||||
"account.never_active": "Ешқашан",
|
||||
"account.posts": "Жазбалар",
|
||||
"account.posts_with_replies": "Жазбалар мен жауаптар",
|
||||
"account.report": "Шағымдану @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} Пост} other {{counter} Пост}}",
|
||||
"account.unblock": "Бұғаттан шығару @{name}",
|
||||
"account.unblock_domain": "Бұғаттан шығару {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "Профильде рекомендемеу",
|
||||
"account.unfollow": "Оқымау",
|
||||
"account.unmute": "@{name} ескертпелерін қосу",
|
||||
"account.unmute_notifications": "@{name} ескертпелерін көрсету",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Жазба қалдыру үшін бас",
|
||||
"admin.dashboard.daily_retention": "User retention rate by day after sign-up",
|
||||
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Şopîner",
|
||||
"account.followers.empty": "Kesekî hin ev bikarhêner neşopandiye.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {{counter} Dişopîne} other {{counter} Dişopîne}}",
|
||||
"account.follows.empty": "Ev bikarhêner hin kesekî heya niha neşopandiye.",
|
||||
"account.follows_you": "Te dişopîne",
|
||||
"account.hide_reblogs": "Bilindkirinên ji @{name} veşêre",
|
||||
"account.joined": "Tevlîbû di {date} de",
|
||||
"account.last_status": "Çalakiya dawî",
|
||||
"account.link_verified_on": "Xwedaniya li vê girêdanê di {date} de hatiye kontrolkirin",
|
||||
"account.locked_info": "Rewşa vê ajimêrê wek kilît kirî hatiye saz kirin. Xwedî yê ajimêrê, kesên vê bişopîne bi dest vekolin dike.",
|
||||
"account.media": "Medya",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "@{name} Bêdeng bike",
|
||||
"account.mute_notifications": "Agahdariyan ji @{name} bêdeng bike",
|
||||
"account.muted": "Bêdengkirî",
|
||||
"account.never_active": "Tu car",
|
||||
"account.posts": "Şandî",
|
||||
"account.posts_with_replies": "Şandî û bersiv",
|
||||
"account.report": "@{name} Ragihîne",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural,one {{counter} şandî}other {{counter} şandî}}",
|
||||
"account.unblock": "Astengê li ser @{name} rake",
|
||||
"account.unblock_domain": "Astengê li ser navperê {domain} rake",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "Li ser profîl nîşan neke",
|
||||
"account.unfollow": "Neşopîne",
|
||||
"account.unmute": "@{name} Bêdeng bike",
|
||||
"account.unmute_notifications": "Agahdariyan ji @{name} bêdeng bike",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Bitikîne bo nîşeyekê tevlî bikî",
|
||||
"admin.dashboard.daily_retention": "Rêjeya ragirtina bikarhêner bi roj piştî tomarkirinê",
|
||||
"admin.dashboard.monthly_retention": "Rêjeya ragirtina bikarhêner bi meh piştî tomarkirinê",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "ಹಿಂಬಾಲಕರು",
|
||||
"account.followers.empty": "No one follows this user yet.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.follows.empty": "This user doesn't follow anyone yet.",
|
||||
"account.follows_you": "Follows you",
|
||||
"account.hide_reblogs": "Hide boosts from @{name}",
|
||||
"account.joined": "Joined {date}",
|
||||
"account.last_status": "Last active",
|
||||
"account.link_verified_on": "Ownership of this link was checked on {date}",
|
||||
"account.locked_info": "This account privacy status is set to locked. The owner manually reviews who can follow them.",
|
||||
"account.media": "Media",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "Mute @{name}",
|
||||
"account.mute_notifications": "Mute notifications from @{name}",
|
||||
"account.muted": "Muted",
|
||||
"account.never_active": "Never",
|
||||
"account.posts": "ಟೂಟ್ಗಳು",
|
||||
"account.posts_with_replies": "Toots and replies",
|
||||
"account.report": "Report @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
|
||||
"account.unblock": "Unblock @{name}",
|
||||
"account.unblock_domain": "Unhide {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "Don't feature on profile",
|
||||
"account.unfollow": "Unfollow",
|
||||
"account.unmute": "Unmute @{name}",
|
||||
"account.unmute_notifications": "Unmute notifications from @{name}",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Click to add a note",
|
||||
"admin.dashboard.daily_retention": "User retention rate by day after sign-up",
|
||||
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "팔로워",
|
||||
"account.followers.empty": "아직 아무도 이 유저를 팔로우하고 있지 않습니다.",
|
||||
"account.followers_counter": "{counter} 팔로워",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{counter} 팔로잉",
|
||||
"account.follows.empty": "이 유저는 아직 아무도 팔로우하고 있지 않습니다.",
|
||||
"account.follows_you": "날 팔로우합니다",
|
||||
"account.hide_reblogs": "@{name}의 부스트를 숨기기",
|
||||
"account.joined": "{date}에 가입함",
|
||||
"account.last_status": "마지막 활동",
|
||||
"account.link_verified_on": "{date}에 이 링크의 소유권이 확인 됨",
|
||||
"account.locked_info": "이 계정의 프라이버시 설정은 잠금으로 설정되어 있습니다. 계정 소유자가 수동으로 팔로워를 승인합니다.",
|
||||
"account.media": "미디어",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "@{name} 뮤트",
|
||||
"account.mute_notifications": "@{name}의 알림을 뮤트",
|
||||
"account.muted": "뮤트 됨",
|
||||
"account.never_active": "없음",
|
||||
"account.posts": "게시물",
|
||||
"account.posts_with_replies": "게시물과 답장",
|
||||
"account.report": "@{name} 신고",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{counter} 게시물",
|
||||
"account.unblock": "차단 해제",
|
||||
"account.unblock_domain": "도메인 {domain} 차단 해제",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "프로필에 추천하지 않기",
|
||||
"account.unfollow": "팔로우 해제",
|
||||
"account.unmute": "@{name} 뮤트 해제",
|
||||
"account.unmute_notifications": "@{name}의 알림 뮤트 해제",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "클릭해서 노트 추가",
|
||||
"admin.dashboard.daily_retention": "가입 후 일별 사용자 유지율",
|
||||
"admin.dashboard.monthly_retention": "가입 후 월별 사용자 유지율",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "شوێنکەوتووان",
|
||||
"account.followers.empty": "کەسێک شوێن ئەم بەکارهێنەرە نەکەوتووە",
|
||||
"account.followers_counter": "{count, plural, one {{counter} شوێنکەوتوو} other {{counter} شوێنکەوتوو}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.follows.empty": "ئەم بەکارهێنەرە تا ئێستا شوێن کەس نەکەوتووە.",
|
||||
"account.follows_you": "شوێنکەوتووەکانت",
|
||||
"account.hide_reblogs": "داشاردنی بووستەکان لە @{name}",
|
||||
"account.joined": "Joined {date}",
|
||||
"account.last_status": "دوایین چالاکی",
|
||||
"account.link_verified_on": "خاوەنداریەتی ئەم لینکە لە {date} چێک کراوە",
|
||||
"account.locked_info": "تایبەتمەندی ئەم هەژمارەیە ڕیکخراوە بۆ قوفڵدراوە. خاوەنەکە بە دەستی پێداچوونەوە دەکات کە کێ دەتوانێت شوێنیان بکەوێت.",
|
||||
"account.media": "میدیا",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "بێدەنگکردن @{name}",
|
||||
"account.mute_notifications": "هۆشیارکەرەوەکان لاببە لە @{name}",
|
||||
"account.muted": "بێ دەنگ",
|
||||
"account.never_active": "هەرگیز",
|
||||
"account.posts": "توتس",
|
||||
"account.posts_with_replies": "توتس و وەڵامەکان",
|
||||
"account.report": "گوزارشت @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.unblock": "@{name} لاببە",
|
||||
"account.unblock_domain": "کردنەوەی دۆمەینی {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "تایبەتمەندی لەسەر پرۆفایلەکە نیە",
|
||||
"account.unfollow": "بەدوادانەچو",
|
||||
"account.unmute": "بێدەنگکردنی @{name}",
|
||||
"account.unmute_notifications": "بێدەنگکردنی هۆشیارییەکان لە @{name}",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "کرتەبکە بۆ زیادکردنی تێبینی",
|
||||
"admin.dashboard.daily_retention": "User retention rate by day after sign-up",
|
||||
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Holyoryon",
|
||||
"account.followers.empty": "Ny wra nagonan holya'n devnydhyer ma hwath.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Holyer} other {{counter} Holyer}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {Ow holya {counter}} other {Ow holya {counter}}}",
|
||||
"account.follows.empty": "Ny wra'n devnydhyer ma holya nagonan hwath.",
|
||||
"account.follows_you": "Y'th hol",
|
||||
"account.hide_reblogs": "Kudha kenerthow a @{name}",
|
||||
"account.joined": "Joined {date}",
|
||||
"account.last_status": "Bew diwettha",
|
||||
"account.link_verified_on": "Perghenogeth an kolm ma a veu checkys dhe {date}",
|
||||
"account.locked_info": "Studh privetter an akont ma yw alhwedhys. An perghen a wra dasweles dre leuv piw a yll aga holya.",
|
||||
"account.media": "Myski",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "Tawhe @{name}",
|
||||
"account.mute_notifications": "Tawhe gwarnyansow a @{name}",
|
||||
"account.muted": "Tawhes",
|
||||
"account.never_active": "Nevra",
|
||||
"account.posts": "Postow",
|
||||
"account.posts_with_replies": "Postow ha gorthebow",
|
||||
"account.report": "Reportya @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} Tout} other {{counter} Tout}}",
|
||||
"account.unblock": "Anlettya @{name}",
|
||||
"account.unblock_domain": "Anlettya gorfarth {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "Na wra diskwedhes yn profil",
|
||||
"account.unfollow": "Anholya",
|
||||
"account.unmute": "Antawhe @{name}",
|
||||
"account.unmute_notifications": "Antawhe gwarnyansow a @{name}",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Klyckya dhe geworra noten",
|
||||
"admin.dashboard.daily_retention": "User retention rate by day after sign-up",
|
||||
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Followers",
|
||||
"account.followers.empty": "No one follows this user yet.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.follows.empty": "This user doesn't follow anyone yet.",
|
||||
"account.follows_you": "Follows you",
|
||||
"account.hide_reblogs": "Hide boosts from @{name}",
|
||||
"account.joined": "Joined {date}",
|
||||
"account.last_status": "Last active",
|
||||
"account.link_verified_on": "Ownership of this link was checked on {date}",
|
||||
"account.locked_info": "This account privacy status is set to locked. The owner manually reviews who can follow them.",
|
||||
"account.media": "Media",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "Mute @{name}",
|
||||
"account.mute_notifications": "Mute notifications from @{name}",
|
||||
"account.muted": "Užtildytas",
|
||||
"account.never_active": "Niekada",
|
||||
"account.posts": "Toots",
|
||||
"account.posts_with_replies": "Toots and replies",
|
||||
"account.report": "Report @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
|
||||
"account.unblock": "Unblock @{name}",
|
||||
"account.unblock_domain": "Unhide {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "Don't feature on profile",
|
||||
"account.unfollow": "Nebesekti",
|
||||
"account.unmute": "Unmute @{name}",
|
||||
"account.unmute_notifications": "Unmute notifications from @{name}",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Click to add a note",
|
||||
"admin.dashboard.daily_retention": "User retention rate by day after sign-up",
|
||||
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Sekotāji",
|
||||
"account.followers.empty": "Šim lietotājam patreiz nav sekotāju.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Sekotājs} other {{counter} Sekotāji}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {{counter} Sekojošs} other {{counter} Sekojoši}}",
|
||||
"account.follows.empty": "Šis lietotājs pagaidām nevienam neseko.",
|
||||
"account.follows_you": "Seko tev",
|
||||
"account.hide_reblogs": "Paslēpt paceltos ierakstus no lietotāja @{name}",
|
||||
"account.joined": "Pievienojās {date}",
|
||||
"account.last_status": "Pēdējā aktivitāte",
|
||||
"account.link_verified_on": "Šīs saites piederība ir pārbaudīta {date}",
|
||||
"account.locked_info": "Šī konta privātuma statuss ir slēgts. Īpašnieks izskatīs, kurš viņam drīkst sekot.",
|
||||
"account.media": "Mediji",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "Apklusināt @{name}",
|
||||
"account.mute_notifications": "Nerādīt paziņojumus no @{name}",
|
||||
"account.muted": "Apklusināts",
|
||||
"account.never_active": "Nekad",
|
||||
"account.posts": "Ziņas",
|
||||
"account.posts_with_replies": "Ziņas un atbildes",
|
||||
"account.report": "Ziņot par lietotāju @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} ziņa} other {{counter} ziņas}}",
|
||||
"account.unblock": "Atbloķēt lietotāju @{name}",
|
||||
"account.unblock_domain": "Atbloķēt domēnu {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "Neattēlot profilā",
|
||||
"account.unfollow": "Pārstāt sekot",
|
||||
"account.unmute": "Noņemt apklusinājumu @{name}",
|
||||
"account.unmute_notifications": "Rādīt paziņojumus no lietotāja @{name}",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Noklikšķiniet, lai pievienotu piezīmi",
|
||||
"admin.dashboard.daily_retention": "Lietotāju saglabāšanas rādītājs dienā pēc reģistrēšanās",
|
||||
"admin.dashboard.monthly_retention": "Lietotāju saglabāšanas rādītājs mēnesī pēc reģistrēšanās",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Следбеници",
|
||||
"account.followers.empty": "Никој не го следи овој корисник сеуште.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.follows.empty": "Корисникот не следи никој сеуште.",
|
||||
"account.follows_you": "Те следи тебе",
|
||||
"account.hide_reblogs": "Сокриј буст од @{name}",
|
||||
"account.joined": "Joined {date}",
|
||||
"account.last_status": "Последно активен",
|
||||
"account.link_verified_on": "Сопстевноста на овај линк беше проверен на {date}",
|
||||
"account.locked_info": "Статусот на приватност на овај корисник е сетиран како заклучен. Корисникот одлучува кој можи да го следи него.",
|
||||
"account.media": "Медија",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "Зачути го @{name}",
|
||||
"account.mute_notifications": "Исклучи известувања од @{name}",
|
||||
"account.muted": "Зачутено",
|
||||
"account.never_active": "Никогаш",
|
||||
"account.posts": "Тутови",
|
||||
"account.posts_with_replies": "Тутови и реплики",
|
||||
"account.report": "Пријави @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
|
||||
"account.unblock": "Одблокирај @{name}",
|
||||
"account.unblock_domain": "Прикажи {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "Не прикажувај на профил",
|
||||
"account.unfollow": "Одследи",
|
||||
"account.unmute": "Зачути го @{name}",
|
||||
"account.unmute_notifications": "Исклучи известувања од @{name}",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Click to add a note",
|
||||
"admin.dashboard.daily_retention": "User retention rate by day after sign-up",
|
||||
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "പിന്തുടരുന്നവർ",
|
||||
"account.followers.empty": "ഈ ഉപയോക്താവിനെ ആരും ഇതുവരെ പിന്തുടരുന്നില്ല.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} പിന്തുടരുന്നവർ} other {{counter} പിന്തുടരുന്നവർ}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {{counter} പിന്തുടരുന്നു} other {{counter} പിന്തുടരുന്നു}}",
|
||||
"account.follows.empty": "ഈ ഉപയോക്താവ് ആരേയും ഇതുവരെ പിന്തുടരുന്നില്ല.",
|
||||
"account.follows_you": "നിങ്ങളെ പിന്തുടരുന്നു",
|
||||
"account.hide_reblogs": "@{name} ബൂസ്റ്റ് ചെയ്തവ മറയ്കുക",
|
||||
"account.joined": "{date} ൽ ചേർന്നു",
|
||||
"account.last_status": "അവസാനം കണ്ടത്",
|
||||
"account.link_verified_on": "ഈ ലിങ്കിന്റെ ഉടമസ്തത {date} ഇൽ ഉറപ്പാക്കിയതാണ്",
|
||||
"account.locked_info": "ഈ അംഗത്വത്തിന്റെ സ്വകാര്യതാ നിലപാട് അനുസരിച്ച് പിന്തുടരുന്നവരെ തിരഞ്ഞെടുക്കാനുള്ള വിവേചനാധികാരം ഉടമസ്ഥനിൽ നിഷിപ്തമായിരിക്കുന്നു.",
|
||||
"account.media": "മീഡിയ",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "@{name}-നെ(യെ) നിശ്ശബ്ദമാക്കൂ",
|
||||
"account.mute_notifications": "@{name} യിൽ നിന്നുള്ള അറിയിപ്പുകൾ നിശബ്ദമാക്കുക",
|
||||
"account.muted": "നിശ്ശബ്ദമാക്കിയിരിക്കുന്നു",
|
||||
"account.never_active": "ഒരിക്കലും ഇല്ല",
|
||||
"account.posts": "പോസ്റ്റുകൾ",
|
||||
"account.posts_with_replies": "പോസ്റ്റുകളും മറുപടികളും",
|
||||
"account.report": "റിപ്പോർട്ട് ചെയ്യുക @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} ടൂട്ട്} other {{counter} ടൂട്ടുകൾ}}",
|
||||
"account.unblock": "@{name} തടഞ്ഞത് മാറ്റുക",
|
||||
"account.unblock_domain": "{domain} എന്ന മേഖല വെളിപ്പെടുത്തുക",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "പ്രൊഫൈലിൽ പ്രകടമാക്കരുത്",
|
||||
"account.unfollow": "പിന്തുടരുന്നത് നിര്ത്തുക",
|
||||
"account.unmute": "നിശ്ശബ്ദമാക്കുന്നത് നിർത്തുക @{name}",
|
||||
"account.unmute_notifications": "@{name} യിൽ നിന്നുള്ള അറിയിപ്പുകൾ പ്രസിദ്ധപ്പെടുത്തുക",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "കുറിപ്പ് ചേർക്കാൻ ക്ലിക്കുചെയ്യുക",
|
||||
"admin.dashboard.daily_retention": "User retention rate by day after sign-up",
|
||||
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "अनुयायी",
|
||||
"account.followers.empty": "ह्या वापरकर्त्याचा आतापर्यंत कोणी अनुयायी नाही.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.follows.empty": "हा वापरकर्ता अजूनपर्यंत कोणाचा अनुयायी नाही.",
|
||||
"account.follows_you": "तुमचा अनुयायी आहे",
|
||||
"account.hide_reblogs": "@{name} पासून सर्व बूस्ट लपवा",
|
||||
"account.joined": "Joined {date}",
|
||||
"account.last_status": "शेवटचे सक्रिय",
|
||||
"account.link_verified_on": "Ownership of this link was checked on {date}",
|
||||
"account.locked_info": "This account privacy status is set to locked. The owner manually reviews who can follow them.",
|
||||
"account.media": "दृक्श्राव्य मजकूर",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "@{name} ला मूक कारा",
|
||||
"account.mute_notifications": "Mute notifications from @{name}",
|
||||
"account.muted": "Muted",
|
||||
"account.never_active": "Never",
|
||||
"account.posts": "Toots",
|
||||
"account.posts_with_replies": "Toots and replies",
|
||||
"account.report": "Report @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
|
||||
"account.unblock": "@{name} ला ब्लॉक करा",
|
||||
"account.unblock_domain": "उघड करा {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "Don't feature on profile",
|
||||
"account.unfollow": "अनुयायी असणे थांबवा",
|
||||
"account.unmute": "Unmute @{name}",
|
||||
"account.unmute_notifications": "Unmute notifications from @{name}",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Click to add a note",
|
||||
"admin.dashboard.daily_retention": "User retention rate by day after sign-up",
|
||||
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Pengikut",
|
||||
"account.followers.empty": "Belum ada yang mengikuti pengguna ini.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Pengikut} other {{counter} Pengikut}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {{counter} Diikuti} other {{counter} Diikuti}}",
|
||||
"account.follows.empty": "Pengguna ini belum mengikuti sesiapa.",
|
||||
"account.follows_you": "Mengikuti anda",
|
||||
"account.hide_reblogs": "Sembunyikan galakan daripada @{name}",
|
||||
"account.joined": "Sertai pada {date}",
|
||||
"account.last_status": "Terakhir aktif",
|
||||
"account.link_verified_on": "Pemilikan pautan ini telah disemak pada {date}",
|
||||
"account.locked_info": "Status privasi akaun ini dikunci. Pemiliknya menyaring sendiri siapa yang boleh mengikutinya.",
|
||||
"account.media": "Media",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "Bisukan @{name}",
|
||||
"account.mute_notifications": "Bisukan pemberitahuan daripada @{name}",
|
||||
"account.muted": "Dibisukan",
|
||||
"account.never_active": "Jangan sesekali",
|
||||
"account.posts": "Hantaran",
|
||||
"account.posts_with_replies": "Hantaran dan balasan",
|
||||
"account.report": "Laporkan @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} Hantaran} other {{counter} Hantaran}}",
|
||||
"account.unblock": "Nyahsekat @{name}",
|
||||
"account.unblock_domain": "Nyahsekat domain {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "Jangan tampilkan di profil",
|
||||
"account.unfollow": "Nyahikut",
|
||||
"account.unmute": "Nyahbisukan @{name}",
|
||||
"account.unmute_notifications": "Nyahbisukan pemberitahuan daripada @{name}",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Klik untuk tambah catatan",
|
||||
"admin.dashboard.daily_retention": "User retention rate by day after sign-up",
|
||||
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Volgers",
|
||||
"account.followers.empty": "Niemand volgt nog deze gebruiker.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} volger} other {{counter} volgers}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {{counter} volgend} other {{counter} volgend}}",
|
||||
"account.follows.empty": "Deze gebruiker volgt nog niemand.",
|
||||
"account.follows_you": "Volgt jou",
|
||||
"account.hide_reblogs": "Boosts van @{name} verbergen",
|
||||
"account.joined": "Geregistreerd in {date}",
|
||||
"account.last_status": "Laatst actief",
|
||||
"account.link_verified_on": "Eigendom van deze link is gecontroleerd op {date}",
|
||||
"account.locked_info": "De privacystatus van dit account is op besloten gezet. De eigenaar bepaalt handmatig wie hen kan volgen.",
|
||||
"account.media": "Media",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "@{name} negeren",
|
||||
"account.mute_notifications": "Meldingen van @{name} negeren",
|
||||
"account.muted": "Genegeerd",
|
||||
"account.never_active": "Nooit",
|
||||
"account.posts": "Toots",
|
||||
"account.posts_with_replies": "Toots en reacties",
|
||||
"account.report": "@{name} rapporteren",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} toot} other {{counter} toots}}",
|
||||
"account.unblock": "@{name} deblokkeren",
|
||||
"account.unblock_domain": "{domain} niet langer verbergen",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "Niet op profiel weergeven",
|
||||
"account.unfollow": "Ontvolgen",
|
||||
"account.unmute": "@{name} niet langer negeren",
|
||||
"account.unmute_notifications": "Meldingen van @{name} niet langer negeren",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Klik om een opmerking toe te voegen",
|
||||
"admin.dashboard.daily_retention": "User retention rate by day after sign-up",
|
||||
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Fylgjarar",
|
||||
"account.followers.empty": "Ingen fylgjer denne brukaren enno.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} fylgjar} other {{counter} fylgjarar}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {{counter} fylgjar} other {{counter} fylgjar}}",
|
||||
"account.follows.empty": "Denne brukaren fylgjer ikkje nokon enno.",
|
||||
"account.follows_you": "Fylgjer deg",
|
||||
"account.hide_reblogs": "Gøym fremhevingar frå @{name}",
|
||||
"account.joined": "Vart med {date}",
|
||||
"account.last_status": "Sist aktiv",
|
||||
"account.link_verified_on": "Eigarskap for denne lenkja vart sist sjekka {date}",
|
||||
"account.locked_info": "Denne kontoen er privat. Eigaren kan sjølv velja kven som kan fylgja han.",
|
||||
"account.media": "Media",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "Målbind @{name}",
|
||||
"account.mute_notifications": "Målbind varsel frå @{name}",
|
||||
"account.muted": "Målbunden",
|
||||
"account.never_active": "Aldri",
|
||||
"account.posts": "Tut",
|
||||
"account.posts_with_replies": "Tut og svar",
|
||||
"account.report": "Rapporter @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} tut} other {{counter} tut}}",
|
||||
"account.unblock": "Slutt å blokera @{name}",
|
||||
"account.unblock_domain": "Vis {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "Ikkje framhev på profil",
|
||||
"account.unfollow": "Slutt å fylgja",
|
||||
"account.unmute": "Av-demp @{name}",
|
||||
"account.unmute_notifications": "Vis varsel frå @{name}",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Klikk for å leggja til merknad",
|
||||
"admin.dashboard.daily_retention": "User retention rate by day after sign-up",
|
||||
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Følgere",
|
||||
"account.followers.empty": "Ingen følger denne brukeren ennå.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} følger} other {{counter} følgere}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {{counter} som følges} other {{counter} som følges}}",
|
||||
"account.follows.empty": "Denne brukeren følger ikke noen enda.",
|
||||
"account.follows_you": "Følger deg",
|
||||
"account.hide_reblogs": "Skjul fremhevinger fra @{name}",
|
||||
"account.joined": "Ble med den {date}",
|
||||
"account.last_status": "Sist aktiv",
|
||||
"account.link_verified_on": "Eierskap av denne lenken ble sjekket {date}",
|
||||
"account.locked_info": "Denne kontoens personvernstatus er satt til låst. Eieren vurderer manuelt hvem som kan følge dem.",
|
||||
"account.media": "Media",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "Demp @{name}",
|
||||
"account.mute_notifications": "Ignorer varsler fra @{name}",
|
||||
"account.muted": "Dempet",
|
||||
"account.never_active": "Aldri",
|
||||
"account.posts": "Innlegg",
|
||||
"account.posts_with_replies": "Toots with replies",
|
||||
"account.report": "Rapportér @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} tut} other {{counter} tuter}}",
|
||||
"account.unblock": "Avblokker @{name}",
|
||||
"account.unblock_domain": "Vis {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "Ikke vis frem på profilen",
|
||||
"account.unfollow": "Avfølg",
|
||||
"account.unmute": "Avdemp @{name}",
|
||||
"account.unmute_notifications": "Vis varsler fra @{name}",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Klikk for å legge til et notat",
|
||||
"admin.dashboard.daily_retention": "User retention rate by day after sign-up",
|
||||
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Seguidors",
|
||||
"account.followers.empty": "Degun sèc pas aqueste utilizaire pel moment.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Seguidor} other {{counter} Seguidors}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {{counter} Abonaments} other {{counter} Abonaments}}",
|
||||
"account.follows.empty": "Aqueste utilizaire sèc pas degun pel moment.",
|
||||
"account.follows_you": "Vos sèc",
|
||||
"account.hide_reblogs": "Rescondre los partatges de @{name}",
|
||||
"account.joined": "Arribèt en {date}",
|
||||
"account.last_status": "Darrièra activitat",
|
||||
"account.link_verified_on": "La proprietat d’aqueste ligam foguèt verificada lo {date}",
|
||||
"account.locked_info": "L’estatut de privacitat del compte es configurat sus clavat. Lo proprietari causís qual pòt sègre son compte.",
|
||||
"account.media": "Mèdias",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "Rescondre @{name}",
|
||||
"account.mute_notifications": "Rescondre las notificacions de @{name}",
|
||||
"account.muted": "Mes en silenci",
|
||||
"account.never_active": "Jamai",
|
||||
"account.posts": "Tuts",
|
||||
"account.posts_with_replies": "Tuts e responsas",
|
||||
"account.report": "Senhalar @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} Tut} other {{counter} Tuts}}",
|
||||
"account.unblock": "Desblocar @{name}",
|
||||
"account.unblock_domain": "Desblocar {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "Mostrar pas pel perfil",
|
||||
"account.unfollow": "Quitar de sègre",
|
||||
"account.unmute": "Quitar de rescondre @{name}",
|
||||
"account.unmute_notifications": "Mostrar las notificacions de @{name}",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Clicar per ajustar una nòta",
|
||||
"admin.dashboard.daily_retention": "User retention rate by day after sign-up",
|
||||
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Followers",
|
||||
"account.followers.empty": "No one follows this user yet.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.follows.empty": "This user doesn't follow anyone yet.",
|
||||
"account.follows_you": "Follows you",
|
||||
"account.hide_reblogs": "Hide boosts from @{name}",
|
||||
"account.joined": "Joined {date}",
|
||||
"account.last_status": "Last active",
|
||||
"account.link_verified_on": "Ownership of this link was checked on {date}",
|
||||
"account.locked_info": "This account privacy status is set to locked. The owner manually reviews who can follow them.",
|
||||
"account.media": "Media",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "Mute @{name}",
|
||||
"account.mute_notifications": "Mute notifications from @{name}",
|
||||
"account.muted": "Muted",
|
||||
"account.never_active": "Never",
|
||||
"account.posts": "Toots",
|
||||
"account.posts_with_replies": "Toots and replies",
|
||||
"account.report": "Report @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
|
||||
"account.unblock": "Unblock @{name}",
|
||||
"account.unblock_domain": "Unblock domain {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "Don't feature on profile",
|
||||
"account.unfollow": "Unfollow",
|
||||
"account.unmute": "Unmute @{name}",
|
||||
"account.unmute_notifications": "Unmute notifications from @{name}",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Click to add a note",
|
||||
"admin.dashboard.daily_retention": "User retention rate by day after sign-up",
|
||||
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Śledzący",
|
||||
"account.followers.empty": "Nikt jeszcze nie śledzi tego użytkownika.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} śledzący} few {{counter} śledzących} many {{counter} śledzących} other {{counter} śledzących}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {{counter} śledzony} few {{counter} śledzonych} many {{counter} śledzonych} other {{counter} śledzonych}}",
|
||||
"account.follows.empty": "Ten użytkownik nie śledzi jeszcze nikogo.",
|
||||
"account.follows_you": "Śledzi Cię",
|
||||
"account.hide_reblogs": "Ukryj podbicia od @{name}",
|
||||
"account.joined": "Dołączył(a) {date}",
|
||||
"account.last_status": "Ostatnia aktywność",
|
||||
"account.link_verified_on": "Własność tego odnośnika została potwierdzona {date}",
|
||||
"account.locked_info": "To konto jest prywatne. Właściciel ręcznie wybiera kto może go śledzić.",
|
||||
"account.media": "Zawartość multimedialna",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "Wycisz @{name}",
|
||||
"account.mute_notifications": "Wycisz powiadomienia o @{name}",
|
||||
"account.muted": "Wyciszony",
|
||||
"account.never_active": "Nigdy",
|
||||
"account.posts": "Wpisy",
|
||||
"account.posts_with_replies": "Wpisy i odpowiedzi",
|
||||
"account.report": "Zgłoś @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} wpis} few {{counter} wpisy} many {{counter} wpisów} other {{counter} wpisów}}",
|
||||
"account.unblock": "Odblokuj @{name}",
|
||||
"account.unblock_domain": "Odblokuj domenę {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "Przestań polecać",
|
||||
"account.unfollow": "Przestań śledzić",
|
||||
"account.unmute": "Cofnij wyciszenie @{name}",
|
||||
"account.unmute_notifications": "Cofnij wyciszenie powiadomień od @{name}",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Naciśnij aby dodać notatkę",
|
||||
"admin.dashboard.daily_retention": "User retention rate by day after sign-up",
|
||||
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Seguidores",
|
||||
"account.followers.empty": "Nada aqui.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} seguidor} other {{counter} seguidores}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {segue {counter}} other {segue {counter}}}",
|
||||
"account.follows.empty": "Nada aqui.",
|
||||
"account.follows_you": "te segue",
|
||||
"account.hide_reblogs": "Ocultar boosts de @{name}",
|
||||
"account.joined": "Entrou em {date}",
|
||||
"account.last_status": "Ativo pela última vez",
|
||||
"account.link_verified_on": "link verificado em {date}",
|
||||
"account.locked_info": "Trancado. Seguir requer aprovação manual do perfil.",
|
||||
"account.media": "Mídia",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "Silenciar @{name}",
|
||||
"account.mute_notifications": "Ocultar notificações de @{name}",
|
||||
"account.muted": "Silenciado",
|
||||
"account.never_active": "Nunca",
|
||||
"account.posts": "Toots",
|
||||
"account.posts_with_replies": "Com respostas",
|
||||
"account.report": "Denunciar @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
|
||||
"account.unblock": "Desbloquear @{name}",
|
||||
"account.unblock_domain": "Desbloquear domínio {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "Remover",
|
||||
"account.unfollow": "Deixar de seguir",
|
||||
"account.unmute": "Dessilenciar @{name}",
|
||||
"account.unmute_notifications": "Mostrar notificações de @{name}",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Nota pessoal sobre este perfil aqui",
|
||||
"admin.dashboard.daily_retention": "User retention rate by day after sign-up",
|
||||
"admin.dashboard.monthly_retention": "Taxa de retenção de usuários por mês, após a inscrição",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Seguidores",
|
||||
"account.followers.empty": "Ainda ninguém segue este utilizador.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Seguidor} other {{counter} Seguidores}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, other {A seguir {counter}}}",
|
||||
"account.follows.empty": "Este utilizador ainda não segue ninguém.",
|
||||
"account.follows_you": "Segue-te",
|
||||
"account.hide_reblogs": "Esconder partilhas de @{name}",
|
||||
"account.joined": "Ingressou em {date}",
|
||||
"account.last_status": "Última atividade",
|
||||
"account.link_verified_on": "A posse deste link foi verificada em {date}",
|
||||
"account.locked_info": "Esta conta é privada. O proprietário revê manualmente quem a pode seguir.",
|
||||
"account.media": "Média",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "Silenciar @{name}",
|
||||
"account.mute_notifications": "Silenciar notificações de @{name}",
|
||||
"account.muted": "Silenciada",
|
||||
"account.never_active": "Nunca",
|
||||
"account.posts": "Toots",
|
||||
"account.posts_with_replies": "Publicações e respostas",
|
||||
"account.report": "Denunciar @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
|
||||
"account.unblock": "Desbloquear @{name}",
|
||||
"account.unblock_domain": "Mostrar {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "Não mostrar no perfil",
|
||||
"account.unfollow": "Deixar de seguir",
|
||||
"account.unmute": "Não silenciar @{name}",
|
||||
"account.unmute_notifications": "Deixar de silenciar @{name}",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Clique para adicionar nota",
|
||||
"admin.dashboard.daily_retention": "Taxa de retenção de utilizadores por dia após a inscrição",
|
||||
"admin.dashboard.monthly_retention": "Taxa de retenção de utilizadores por mês após a inscrição",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Abonați",
|
||||
"account.followers.empty": "Acest utilizator încă nu are abonați.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Abonat} few {{counter} Abonați} other {{counter} Abonați}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {{counter} Abonament} few {{counter} Abonamente} other {{counter} Abonamente}}",
|
||||
"account.follows.empty": "Momentan acest utilizator nu are niciun abonament.",
|
||||
"account.follows_you": "Este abonat la tine",
|
||||
"account.hide_reblogs": "Ascunde distribuirile de la @{name}",
|
||||
"account.joined": "S-a înscris în {date}",
|
||||
"account.last_status": "Ultima activitate",
|
||||
"account.link_verified_on": "Proprietatea acestui link a fost verificată pe {date}",
|
||||
"account.locked_info": "Acest profil este privat. Această persoană aprobă manual conturile care se abonează la ea.",
|
||||
"account.media": "Media",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "Ignoră pe @{name}",
|
||||
"account.mute_notifications": "Ignoră notificările de la @{name}",
|
||||
"account.muted": "Ignorat",
|
||||
"account.never_active": "Niciodată",
|
||||
"account.posts": "Postări",
|
||||
"account.posts_with_replies": "Postări și răspunsuri",
|
||||
"account.report": "Raportează pe @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
|
||||
"account.unblock": "Deblochează pe @{name}",
|
||||
"account.unblock_domain": "Deblochează domeniul {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "Nu promova pe profil",
|
||||
"account.unfollow": "Nu mai urmări",
|
||||
"account.unmute": "Nu mai ignora pe @{name}",
|
||||
"account.unmute_notifications": "Activează notificările de la @{name}",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Click to add a note",
|
||||
"admin.dashboard.daily_retention": "User retention rate by day after sign-up",
|
||||
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Подписчики",
|
||||
"account.followers.empty": "На этого пользователя пока никто не подписан.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} подписчик} many {{counter} подписчиков} other {{counter} подписчика}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {{counter} подписка} many {{counter} подписок} other {{counter} подписки}}",
|
||||
"account.follows.empty": "Этот пользователь пока ни на кого не подписался.",
|
||||
"account.follows_you": "Подписан(а) на вас",
|
||||
"account.hide_reblogs": "Скрыть продвижения от @{name}",
|
||||
"account.joined": "Зарегистрирован(а) с {date}",
|
||||
"account.last_status": "Последняя активность",
|
||||
"account.link_verified_on": "Владение этой ссылкой было проверено {date}",
|
||||
"account.locked_info": "Это закрытый аккаунт. Его владелец вручную одобряет подписчиков.",
|
||||
"account.media": "Медиа",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "Игнорировать @{name}",
|
||||
"account.mute_notifications": "Скрыть уведомления от @{name}",
|
||||
"account.muted": "Игнорируется",
|
||||
"account.never_active": "Никогда",
|
||||
"account.posts": "Посты",
|
||||
"account.posts_with_replies": "Посты и ответы",
|
||||
"account.report": "Пожаловаться на @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} пост} many {{counter} постов} other {{counter} поста}}",
|
||||
"account.unblock": "Разблокировать @{name}",
|
||||
"account.unblock_domain": "Разблокировать {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "Не рекомендовать в профиле",
|
||||
"account.unfollow": "Отписаться",
|
||||
"account.unmute": "Убрать {name} из игнорируемых",
|
||||
"account.unmute_notifications": "Показывать уведомления от @{name}",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Текст заметки",
|
||||
"admin.dashboard.daily_retention": "Уровень удержания пользователей после регистрации, в днях",
|
||||
"admin.dashboard.monthly_retention": "Уровень удержания пользователей после регистрации, в месяцах",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "अनुसर्तारः",
|
||||
"account.followers.empty": "नाऽनुसर्तारो वर्तन्ते",
|
||||
"account.followers_counter": "{count, plural, one {{counter} अनुसर्ता} two {{counter} अनुसर्तारौ} other {{counter} अनुसर्तारः}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {{counter} अनुसृतः} two {{counter} अनुसृतौ} other {{counter} अनुसृताः}}",
|
||||
"account.follows.empty": "न कोऽप्यनुसृतो वर्तते",
|
||||
"account.follows_you": "त्वामनुसरति",
|
||||
"account.hide_reblogs": "@{name} मित्रस्य प्रकाशनानि छिद्यन्ताम्",
|
||||
"account.joined": "Joined {date}",
|
||||
"account.last_status": "गतसक्रियता",
|
||||
"account.link_verified_on": "अन्तर्जालस्थानस्यास्य स्वामित्वं परीक्षितमासीत् {date} दिने",
|
||||
"account.locked_info": "एतस्या लेखायाः गुह्यता \"निषिद्ध\"इति वर्तते । स्वामी स्वयञ्चिनोति कोऽनुसर्ता भवितुमर्हतीति ।",
|
||||
"account.media": "सामग्री",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "निःशब्दम् @{name}",
|
||||
"account.mute_notifications": "@{name} सूचनाः निष्क्रियन्ताम्",
|
||||
"account.muted": "निःशब्दम्",
|
||||
"account.never_active": "नैव कदापि",
|
||||
"account.posts": "दौत्यानि",
|
||||
"account.posts_with_replies": "दौत्यानि प्रत्युत्तराणि च",
|
||||
"account.report": "आविद्यताम् @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} दौत्यम्} two {{counter} दौत्ये} other {{counter} दौत्यानि}}",
|
||||
"account.unblock": "निषेधता नश्यताम् @{name}",
|
||||
"account.unblock_domain": "प्रदेशनिषेधता नश्यताम् {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "व्यक्तिगतविवरणे मा प्रकाश्यताम्",
|
||||
"account.unfollow": "नश्यतामनुसरणम्",
|
||||
"account.unmute": "सशब्दम् @{name}",
|
||||
"account.unmute_notifications": "@{name} सूचनाः सक्रियन्ताम्",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "टीकायोजनार्थं नुद्यताम्",
|
||||
"admin.dashboard.daily_retention": "User retention rate by day after sign-up",
|
||||
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Sighiduras",
|
||||
"account.followers.empty": "Nemos sighit ancora custa persone.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} sighidura} other {{counter} sighiduras}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {Sighende a {counter}} other {Sighende a {counter}}}",
|
||||
"account.follows.empty": "Custa persone non sighit ancora a nemos.",
|
||||
"account.follows_you": "Ti sighit",
|
||||
"account.hide_reblogs": "Cua is cumpartziduras de @{name}",
|
||||
"account.joined": "At aderidu su {date}",
|
||||
"account.last_status": "Ùrtima atividade",
|
||||
"account.link_verified_on": "Sa propiedade de custu ligòngiu est istada controllada su {date}",
|
||||
"account.locked_info": "S'istadu de riservadesa de custu contu est istadu cunfiguradu comente blocadu. Sa persone chi tenet sa propiedade revisionat a manu chie dda podet sighire.",
|
||||
"account.media": "Cuntenutu multimediale",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "Pone a @{name} a sa muda",
|
||||
"account.mute_notifications": "Disativa is notìficas de @{name}",
|
||||
"account.muted": "A sa muda",
|
||||
"account.never_active": "Mai",
|
||||
"account.posts": "Publicatziones",
|
||||
"account.posts_with_replies": "Publicatziones e rispostas",
|
||||
"account.report": "Signala @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} publicatzione} other {{counter} publicatziones}}",
|
||||
"account.unblock": "Isbloca a @{name}",
|
||||
"account.unblock_domain": "Isbloca su domìniu {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "Non cussiges in su profilu",
|
||||
"account.unfollow": "Non sigas prus",
|
||||
"account.unmute": "Torra a ativare a @{name}",
|
||||
"account.unmute_notifications": "Ativa notìficas pro @{name}",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Incarca pro agiùnghere una nota",
|
||||
"admin.dashboard.daily_retention": "User retention rate by day after sign-up",
|
||||
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Followers",
|
||||
"account.followers.empty": "No one follows this user yet.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.follows.empty": "This user doesn't follow anyone yet.",
|
||||
"account.follows_you": "Follows you",
|
||||
"account.hide_reblogs": "Hide boosts from @{name}",
|
||||
"account.joined": "{date} එක් වී ඇත",
|
||||
"account.last_status": "අවසන් වරට සක්රීය",
|
||||
"account.link_verified_on": "මෙම සබැඳියේ හිමිකාරිත්වය {date} දින පරීක්ෂා කරන ලදි",
|
||||
"account.locked_info": "This account privacy status is set to locked. The owner manually reviews who can follow them.",
|
||||
"account.media": "මාධ්යය",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "@{name} නිහඬ කරන්න",
|
||||
"account.mute_notifications": "Mute notifications from @{name}",
|
||||
"account.muted": "Muted",
|
||||
"account.never_active": "Never",
|
||||
"account.posts": "Toots",
|
||||
"account.posts_with_replies": "Toots and replies",
|
||||
"account.report": "@{name} වාර්තා කරන්න",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
|
||||
"account.unblock": "@{name} අනවහිර කරන්න",
|
||||
"account.unblock_domain": "{domain} වසම අනවහිර කරන්න",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "පැතිකඩෙහි විශේෂාංග නොකරන්න",
|
||||
"account.unfollow": "Unfollow",
|
||||
"account.unmute": "Unmute @{name}",
|
||||
"account.unmute_notifications": "Unmute notifications from @{name}",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "සටහන එකතු කිරීමට ක්ලික් කරන්න",
|
||||
"admin.dashboard.daily_retention": "User retention rate by day after sign-up",
|
||||
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Sledujúci",
|
||||
"account.followers.empty": "Tohto používateľa ešte nikto nenásleduje.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Sledujúci} few {{counter} Sledujúci} many {{counter} Sledujúci} other {{counter} Sledujúci}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.follows.empty": "Tento používateľ ešte nikoho nenasleduje.",
|
||||
"account.follows_you": "Nasleduje ťa",
|
||||
"account.hide_reblogs": "Skry vyzdvihnutia od @{name}",
|
||||
"account.joined": "Pridal/a sa v {date}",
|
||||
"account.last_status": "Naposledy aktívny",
|
||||
"account.link_verified_on": "Vlastníctvo tohto odkazu bolo skontrolované {date}",
|
||||
"account.locked_info": "Stav súkromia pre tento účet je nastavený na zamknutý. Jeho vlastník sám prehodnocuje, kto ho môže sledovať.",
|
||||
"account.media": "Médiá",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "Nevšímaj si @{name}",
|
||||
"account.mute_notifications": "Stĺm oboznámenia od @{name}",
|
||||
"account.muted": "Utíšený/á",
|
||||
"account.never_active": "Nikdy",
|
||||
"account.posts": "Príspevky",
|
||||
"account.posts_with_replies": "Príspevky, aj s odpoveďami",
|
||||
"account.report": "Nahlás @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
|
||||
"account.unblock": "Odblokuj @{name}",
|
||||
"account.unblock_domain": "Prestaň skrývať {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "Nezobrazuj na profile",
|
||||
"account.unfollow": "Prestaň následovať",
|
||||
"account.unmute": "Prestaň ignorovať @{name}",
|
||||
"account.unmute_notifications": "Zruš stĺmenie oboznámení od @{name}",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Klikni pre vloženie poznámky",
|
||||
"admin.dashboard.daily_retention": "User retention rate by day after sign-up",
|
||||
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Sledilci",
|
||||
"account.followers.empty": "Nihče ne sledi temu uporabniku.",
|
||||
"account.followers_counter": "{count, plural, one {ima {count} sledilca} two {ima {count} sledilca} few {ima {count} sledilcev} other {ima {count} sledilce}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {sledi {count} osebi} two {sledi {count} osebama} few {sledi {count} osebam} other {sledi {count} osebam}}",
|
||||
"account.follows.empty": "Ta uporabnik še ne sledi nikomur.",
|
||||
"account.follows_you": "Vam sledi",
|
||||
"account.hide_reblogs": "Skrij spodbude od @{name}",
|
||||
"account.joined": "Pridružen/a {date}",
|
||||
"account.last_status": "Zadnja dejavnost",
|
||||
"account.link_verified_on": "Lastništvo te povezave je bilo preverjeno {date}",
|
||||
"account.locked_info": "Stanje zasebnosti računa je nastavljeno na zaklenjeno. Lastnik ročno pregleda, kdo ga lahko spremlja.",
|
||||
"account.media": "Mediji",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "Utišaj @{name}",
|
||||
"account.mute_notifications": "Utišaj obvestila od @{name}",
|
||||
"account.muted": "Utišan",
|
||||
"account.never_active": "Nikoli",
|
||||
"account.posts": "Tuti",
|
||||
"account.posts_with_replies": "Tuti in odgovori",
|
||||
"account.report": "Prijavi @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
|
||||
"account.unblock": "Odblokiraj @{name}",
|
||||
"account.unblock_domain": "Razkrij {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "Ne vključi v profil",
|
||||
"account.unfollow": "Prenehaj slediti",
|
||||
"account.unmute": "Odtišaj @{name}",
|
||||
"account.unmute_notifications": "Vklopi obvestila od @{name}",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Click to add a note",
|
||||
"admin.dashboard.daily_retention": "User retention rate by day after sign-up",
|
||||
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Ndjekës",
|
||||
"account.followers.empty": "Këtë përdorues ende s’e ndjek kush.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Ndjekës} other {{counter} Ndjekës}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {{counter} i Ndjekur} other {{counter} të Ndjekur}}",
|
||||
"account.follows.empty": "Ky përdorues ende s’ndjek kënd.",
|
||||
"account.follows_you": "Ju ndjek",
|
||||
"account.hide_reblogs": "Fshih përforcime nga @{name}",
|
||||
"account.joined": "U bë pjesë më {date}",
|
||||
"account.last_status": "Aktiv së fundi më",
|
||||
"account.link_verified_on": "Pronësia e kësaj lidhjeje qe kontrolluar më {date}",
|
||||
"account.locked_info": "Gjendja e privatësisë së kësaj llogarie është caktuar si e kyçur. I zoti merr dorazi në shqyrtim cilët mund ta ndjekin.",
|
||||
"account.media": "Media",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "Heshtoni @{name}",
|
||||
"account.mute_notifications": "Heshtoji njoftimet prej @{name}",
|
||||
"account.muted": "Heshtuar",
|
||||
"account.never_active": "Kurrë",
|
||||
"account.posts": "Mesazhe",
|
||||
"account.posts_with_replies": "Mesazhe dhe përgjigje",
|
||||
"account.report": "Raportojeni @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} Mesazh} other {{counter} Mesazhe}}",
|
||||
"account.unblock": "Zhbllokoje @{name}",
|
||||
"account.unblock_domain": "Zhblloko përkatësinë {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "Mos e përfshi në profil",
|
||||
"account.unfollow": "Resht së ndjekuri",
|
||||
"account.unmute": "Ktheji zërin @{name}",
|
||||
"account.unmute_notifications": "Hiqua ndalimin e shfaqjes njoftimeve nga @{name}",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Klikoni për të shtuar shënim",
|
||||
"admin.dashboard.daily_retention": "Shkallë mbajtjeje përdoruesi, në ditë, pas regjistrimit",
|
||||
"admin.dashboard.monthly_retention": "Shkallë mbajtjeje përdoruesi, në muaj, pas regjistrimit",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Pratioca",
|
||||
"account.followers.empty": "No one follows this user yet.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.follows.empty": "This user doesn't follow anyone yet.",
|
||||
"account.follows_you": "Prati Vas",
|
||||
"account.hide_reblogs": "Sakrij podrške koje daje korisnika @{name}",
|
||||
"account.joined": "Joined {date}",
|
||||
"account.last_status": "Last active",
|
||||
"account.link_verified_on": "Ownership of this link was checked on {date}",
|
||||
"account.locked_info": "This account privacy status is set to locked. The owner manually reviews who can follow them.",
|
||||
"account.media": "Mediji",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "Ućutkaj korisnika @{name}",
|
||||
"account.mute_notifications": "Isključi obaveštenja od korisnika @{name}",
|
||||
"account.muted": "Muted",
|
||||
"account.never_active": "Never",
|
||||
"account.posts": "Statusa",
|
||||
"account.posts_with_replies": "Toots with replies",
|
||||
"account.report": "Prijavi @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
|
||||
"account.unblock": "Odblokiraj korisnika @{name}",
|
||||
"account.unblock_domain": "Odblokiraj domen {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "Don't feature on profile",
|
||||
"account.unfollow": "Otprati",
|
||||
"account.unmute": "Ukloni ućutkavanje korisniku @{name}",
|
||||
"account.unmute_notifications": "Uključi nazad obaveštenja od korisnika @{name}",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Click to add a note",
|
||||
"admin.dashboard.daily_retention": "User retention rate by day after sign-up",
|
||||
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Пратиоци",
|
||||
"account.followers.empty": "Тренутно нико не прати овог корисника.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} пратилац} few {{counter} пратиоца} other {{counter} пратилаца}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {{counter} прати} few {{counter} прати} other {{counter} прати}}",
|
||||
"account.follows.empty": "Корисник тренутно не прати никога.",
|
||||
"account.follows_you": "Прати Вас",
|
||||
"account.hide_reblogs": "Сакриј подршке које даје корисника @{name}",
|
||||
"account.joined": "Придружио/ла се {date}",
|
||||
"account.last_status": "Последњи пут активан/на",
|
||||
"account.link_verified_on": "Власништво над овом везом је проверено {date}",
|
||||
"account.locked_info": "Статус приватности овог налога је подешен на закључано. Власник ручно прегледа ко га може пратити.",
|
||||
"account.media": "Медији",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "Ућуткај корисника @{name}",
|
||||
"account.mute_notifications": "Искључи обавештења од корисника @{name}",
|
||||
"account.muted": "Ућуткан",
|
||||
"account.never_active": "Никада",
|
||||
"account.posts": "Трубе",
|
||||
"account.posts_with_replies": "Трубе и одговори",
|
||||
"account.report": "Пријави @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} објава} few {{counter} објаве} other {{counter} објава}}",
|
||||
"account.unblock": "Одблокирај корисника @{name}",
|
||||
"account.unblock_domain": "Одблокирај домен {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "Не истичи на налогу",
|
||||
"account.unfollow": "Отпрати",
|
||||
"account.unmute": "Уклони ућуткавање кориснику @{name}",
|
||||
"account.unmute_notifications": "Укључи назад обавештења од корисника @{name}",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Click to add a note",
|
||||
"admin.dashboard.daily_retention": "User retention rate by day after sign-up",
|
||||
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Följare",
|
||||
"account.followers.empty": "Ingen följer denna användare än.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Följare} other {{counter} Följare}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {{counter} Följer} other {{counter} Följer}}",
|
||||
"account.follows.empty": "Denna användare följer inte någon än.",
|
||||
"account.follows_you": "Följer dig",
|
||||
"account.hide_reblogs": "Dölj knuffar från @{name}",
|
||||
"account.joined": "Gick med {date}",
|
||||
"account.last_status": "Senast aktiv",
|
||||
"account.link_verified_on": "Ägarskap för detta konto kontrollerades den {date}",
|
||||
"account.locked_info": "Detta konto har låst integritetsstatus. Ägaren väljer manuellt vem som kan följa.",
|
||||
"account.media": "Media",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "Tysta @{name}",
|
||||
"account.mute_notifications": "Stäng av notifieringar från @{name}",
|
||||
"account.muted": "Tystad",
|
||||
"account.never_active": "Aldrig",
|
||||
"account.posts": "Tutningar",
|
||||
"account.posts_with_replies": "Tutningar och svar",
|
||||
"account.report": "Rapportera @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural,one {{counter} Tuta} other {{counter} Tutor}}",
|
||||
"account.unblock": "Avblockera @{name}",
|
||||
"account.unblock_domain": "Sluta dölja {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "Visa inte på profil",
|
||||
"account.unfollow": "Sluta följ",
|
||||
"account.unmute": "Sluta tysta @{name}",
|
||||
"account.unmute_notifications": "Återaktivera aviseringar från @{name}",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Klicka för att lägga till anteckning",
|
||||
"admin.dashboard.daily_retention": "Användarlojalitet per dag efter registrering",
|
||||
"admin.dashboard.monthly_retention": "Användarlojalitet per månad efter registrering",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Followers",
|
||||
"account.followers.empty": "No one follows this user yet.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.follows.empty": "This user doesn't follow anyone yet.",
|
||||
"account.follows_you": "Follows you",
|
||||
"account.hide_reblogs": "Hide boosts from @{name}",
|
||||
"account.joined": "Joined {date}",
|
||||
"account.last_status": "Last active",
|
||||
"account.link_verified_on": "Ownership of this link was checked on {date}",
|
||||
"account.locked_info": "This account privacy status is set to locked. The owner manually reviews who can follow them.",
|
||||
"account.media": "Media",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "Mute @{name}",
|
||||
"account.mute_notifications": "Mute notifications from @{name}",
|
||||
"account.muted": "Muted",
|
||||
"account.never_active": "Never",
|
||||
"account.posts": "Toots",
|
||||
"account.posts_with_replies": "Toots and replies",
|
||||
"account.report": "Report @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
|
||||
"account.unblock": "Unblock @{name}",
|
||||
"account.unblock_domain": "Unblock domain {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "Don't feature on profile",
|
||||
"account.unfollow": "Unfollow",
|
||||
"account.unmute": "Unmute @{name}",
|
||||
"account.unmute_notifications": "Unmute notifications from @{name}",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Click to add a note",
|
||||
"admin.dashboard.daily_retention": "User retention rate by day after sign-up",
|
||||
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "பின்தொடர்பவர்கள்",
|
||||
"account.followers.empty": "இதுவரை யாரும் இந்த பயனரைப் பின்தொடரவில்லை.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} வாசகர்} other {{counter} வாசகர்கள்}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural,one {{counter} சந்தா} other {{counter} சந்தாக்கள்}}",
|
||||
"account.follows.empty": "இந்த பயனர் இதுவரை யாரையும் பின்தொடரவில்லை.",
|
||||
"account.follows_you": "உங்களைப் பின்தொடர்கிறார்",
|
||||
"account.hide_reblogs": "இருந்து ஊக்கியாக மறை @{name}",
|
||||
"account.joined": "Joined {date}",
|
||||
"account.last_status": "கடைசி செயல்பாடு",
|
||||
"account.link_verified_on": "இந்த இணைப்பை உரிமையாளர் சரிபார்க்கப்பட்டது {date}",
|
||||
"account.locked_info": "இந்தக் கணக்கு தனியுரிமை நிலை பூட்டப்பட்டுள்ளது. அவர்களைப் பின்தொடர்பவர் யார் என்பதை உரிமையாளர் கைமுறையாக மதிப்பாய்வு செய்கிறார்.",
|
||||
"account.media": "ஊடகங்கள்",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "ஊமையான @{name}",
|
||||
"account.mute_notifications": "அறிவிப்புகளை முடக்கு @{name}",
|
||||
"account.muted": "முடக்கியது",
|
||||
"account.never_active": "எப்போதுமில்லை",
|
||||
"account.posts": "டூட்டுகள்",
|
||||
"account.posts_with_replies": "Toots மற்றும் பதில்கள்",
|
||||
"account.report": "@{name} -ஐப் புகாரளி",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} டூட்} other {{counter} டூட்டுகள்}}",
|
||||
"account.unblock": "@{name} மீது தடை நீக்குக",
|
||||
"account.unblock_domain": "{domain} ஐ காண்பி",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "சுயவிவரத்தில் இடம்பெற வேண்டாம்",
|
||||
"account.unfollow": "பின்தொடர்வதை நிறுத்துக",
|
||||
"account.unmute": "@{name} இன் மீது மௌனத் தடையை நீக்குக",
|
||||
"account.unmute_notifications": "@{name} இலிருந்து அறிவிப்புகளின் மீது மௌனத் தடையை நீக்குக",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "குறிப்பு ஒன்றை சேர்க்க சொடுக்கவும்",
|
||||
"admin.dashboard.daily_retention": "User retention rate by day after sign-up",
|
||||
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "Followers",
|
||||
"account.followers.empty": "No one follows this user yet.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.follows.empty": "This user doesn't follow anyone yet.",
|
||||
"account.follows_you": "Follows you",
|
||||
"account.hide_reblogs": "Hide boosts from @{name}",
|
||||
"account.joined": "Joined {date}",
|
||||
"account.last_status": "Last active",
|
||||
"account.link_verified_on": "Ownership of this link was checked on {date}",
|
||||
"account.locked_info": "This account privacy status is set to locked. The owner manually reviews who can follow them.",
|
||||
"account.media": "Mûi-thé",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "Mute @{name}",
|
||||
"account.mute_notifications": "Mute notifications from @{name}",
|
||||
"account.muted": "Muted",
|
||||
"account.never_active": "Never",
|
||||
"account.posts": "Toots",
|
||||
"account.posts_with_replies": "Toots and replies",
|
||||
"account.report": "Report @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
|
||||
"account.unblock": "Unblock @{name}",
|
||||
"account.unblock_domain": "Unblock domain {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "Don't feature on profile",
|
||||
"account.unfollow": "Unfollow",
|
||||
"account.unmute": "Unmute @{name}",
|
||||
"account.unmute_notifications": "Unmute notifications from @{name}",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Click to add a note",
|
||||
"admin.dashboard.daily_retention": "User retention rate by day after sign-up",
|
||||
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "అనుచరులు",
|
||||
"account.followers.empty": "ఈ వినియోగదారుడిని ఇంకా ఎవరూ అనుసరించడంలేదు.",
|
||||
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
|
||||
"account.follows.empty": "ఈ వినియోగదారి ఇంకా ఎవరినీ అనుసరించడంలేదు.",
|
||||
"account.follows_you": "మిమ్మల్ని అనుసరిస్తున్నారు",
|
||||
"account.hide_reblogs": "@{name} నుంచి బూస్ట్ లను దాచిపెట్టు",
|
||||
"account.joined": "Joined {date}",
|
||||
"account.last_status": "Last active",
|
||||
"account.link_verified_on": "ఈ లంకె యొక్క యాజమాన్యం {date}న పరీక్షించబడింది",
|
||||
"account.locked_info": "ఈ ఖాతా యొక్క గోప్యత స్థితి లాక్ చేయబడి వుంది. ఈ ఖాతాను ఎవరు అనుసరించవచ్చో యజమానే నిర్ణయం తీసుకుంటారు.",
|
||||
"account.media": "మీడియా",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "@{name}ను మ్యూట్ చెయ్యి",
|
||||
"account.mute_notifications": "@{name}నుంచి ప్రకటనలను మ్యూట్ చెయ్యి",
|
||||
"account.muted": "మ్యూట్ అయినవి",
|
||||
"account.never_active": "Never",
|
||||
"account.posts": "టూట్లు",
|
||||
"account.posts_with_replies": "టూట్లు మరియు ప్రత్యుత్తరములు",
|
||||
"account.report": "@{name}పై ఫిర్యాదుచేయు",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
|
||||
"account.unblock": "@{name}పై బ్లాక్ ను తొలగించు",
|
||||
"account.unblock_domain": "{domain}ను దాచవద్దు",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "ప్రొఫైల్లో చూపించవద్దు",
|
||||
"account.unfollow": "అనుసరించవద్దు",
|
||||
"account.unmute": "@{name}పై మ్యూట్ ని తొలగించు",
|
||||
"account.unmute_notifications": "@{name} నుంచి ప్రకటనలపై మ్యూట్ ని తొలగించు",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "Click to add a note",
|
||||
"admin.dashboard.daily_retention": "User retention rate by day after sign-up",
|
||||
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up",
|
||||
|
|
|
@ -18,12 +18,12 @@
|
|||
"account.followers": "ผู้ติดตาม",
|
||||
"account.followers.empty": "ยังไม่มีใครติดตามผู้ใช้นี้",
|
||||
"account.followers_counter": "{count, plural, other {{counter} ผู้ติดตาม}}",
|
||||
"account.following": "Following",
|
||||
"account.following_counter": "{count, plural, other {{counter} กำลังติดตาม}}",
|
||||
"account.follows.empty": "ผู้ใช้นี้ยังไม่ได้ติดตามใคร",
|
||||
"account.follows_you": "ติดตามคุณ",
|
||||
"account.hide_reblogs": "ซ่อนการดันจาก @{name}",
|
||||
"account.joined": "เข้าร่วมเมื่อ {date}",
|
||||
"account.last_status": "ใช้งานล่าสุด",
|
||||
"account.link_verified_on": "ตรวจสอบความเป็นเจ้าของของลิงก์นี้เมื่อ {date}",
|
||||
"account.locked_info": "มีการตั้งสถานะความเป็นส่วนตัวของบัญชีนี้เป็นล็อคอยู่ เจ้าของตรวจทานผู้ที่สามารถติดตามเขาด้วยตนเอง",
|
||||
"account.media": "สื่อ",
|
||||
|
@ -32,7 +32,6 @@
|
|||
"account.mute": "ซ่อน @{name}",
|
||||
"account.mute_notifications": "ซ่อนการแจ้งเตือนจาก @{name}",
|
||||
"account.muted": "ซ่อนอยู่",
|
||||
"account.never_active": "ไม่เลย",
|
||||
"account.posts": "โพสต์",
|
||||
"account.posts_with_replies": "โพสต์และการตอบกลับ",
|
||||
"account.report": "รายงาน @{name}",
|
||||
|
@ -42,10 +41,12 @@
|
|||
"account.statuses_counter": "{count, plural, other {{counter} โพสต์}}",
|
||||
"account.unblock": "เลิกปิดกั้น @{name}",
|
||||
"account.unblock_domain": "เลิกปิดกั้นโดเมน {domain}",
|
||||
"account.unblock_short": "Unblock",
|
||||
"account.unendorse": "ไม่แนะนำในโปรไฟล์",
|
||||
"account.unfollow": "เลิกติดตาม",
|
||||
"account.unmute": "เลิกซ่อน @{name}",
|
||||
"account.unmute_notifications": "เลิกซ่อนการแจ้งเตือนจาก @{name}",
|
||||
"account.unmute_short": "Unmute",
|
||||
"account_note.placeholder": "คลิกเพื่อเพิ่มหมายเหตุ",
|
||||
"admin.dashboard.daily_retention": "User retention rate by day after sign-up",
|
||||
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up",
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue