Merge branch 'main' into glitch-soc/merge-upstream

Conflicts:
- `app/models/status.rb`:
  Upstream updated media and edit-related code textually close to glitch-soc
  additions (local-only and content-type).
  Ported upstream changes.
- `app/models/status_edit.rb`:
  Upstream changes textually close to glitch-soc additions (content-type).
  Ported upstream changes.
- `app/serializers/activitypub/note_serializer.rb`:
  Upstream changed how media attachments are handled. Not really a conflict,
  but textually close to glitch-soc additions (directMessage attribute).
  Ported upstream changes.
- `app/services/remove_status_service.rb`:
  Upstream changed how media attachments are handled. Not really a conflict,
  but textually close to glitch-soc additions (DM timeline).
  Ported upstream changes.
- `app/services/update_status_service.rb`:
  Upstream fixed an issue with language selection. Not really a conflict,
  but textually close to glitch-soc additions (content-type).
  Ported upstream changes.
- `db/schema.rb`:
  Upstream added columns to the `status_edits` table, the conflict is because
  of an additional column (`content-type`) in glitch-soc.
  Ported upstream changes.
- `package.json`:
  Upstream dependency (express) textually adjacent to a glitch-soc-specific one
  (favico.js) got updated.
  Updated it as well.
This commit is contained in:
Claire 2022-03-10 09:52:45 +01:00
commit 24e83246f9
168 changed files with 1826 additions and 728 deletions

View File

@ -40,6 +40,7 @@ end
gem 'net-ldap', '~> 0.17' gem 'net-ldap', '~> 0.17'
gem 'omniauth-cas', '~> 2.0' gem 'omniauth-cas', '~> 2.0'
gem 'omniauth-saml', '~> 1.10' gem 'omniauth-saml', '~> 1.10'
gem 'gitlab-omniauth-openid-connect', '~>0.5.0', require: 'omniauth_openid_connect'
gem 'omniauth', '~> 1.9' gem 'omniauth', '~> 1.9'
gem 'omniauth-rails_csrf_protection', '~> 0.1' gem 'omniauth-rails_csrf_protection', '~> 0.1'
@ -115,7 +116,7 @@ end
group :test do group :test do
gem 'capybara', '~> 3.36' gem 'capybara', '~> 3.36'
gem 'climate_control', '~> 0.2' gem 'climate_control', '~> 0.2'
gem 'faker', '~> 2.19' gem 'faker', '~> 2.20'
gem 'microformats', '~> 4.2' gem 'microformats', '~> 4.2'
gem 'rails-controller-testing', '~> 1.0' gem 'rails-controller-testing', '~> 1.0'
gem 'rspec-sidekiq', '~> 3.1' gem 'rspec-sidekiq', '~> 3.1'

View File

@ -68,6 +68,7 @@ GEM
zeitwerk (~> 2.3) zeitwerk (~> 2.3)
addressable (2.8.0) addressable (2.8.0)
public_suffix (>= 2.0.2, < 5.0) public_suffix (>= 2.0.2, < 5.0)
aes_key_wrap (1.1.0)
airbrussh (1.4.0) airbrussh (1.4.0)
sshkit (>= 1.6.1, != 1.7.0) sshkit (>= 1.6.1, != 1.7.0)
android_key_attestation (0.3.0) android_key_attestation (0.3.0)
@ -77,6 +78,7 @@ GEM
ast (2.4.2) ast (2.4.2)
attr_encrypted (3.1.0) attr_encrypted (3.1.0)
encryptor (~> 3.0.0) encryptor (~> 3.0.0)
attr_required (1.0.1)
awrence (1.1.1) awrence (1.1.1)
aws-eventstream (1.2.0) aws-eventstream (1.2.0)
aws-partitions (1.558.0) aws-partitions (1.558.0)
@ -126,7 +128,7 @@ GEM
sshkit (>= 1.9.0) sshkit (>= 1.9.0)
capistrano-bundler (2.0.1) capistrano-bundler (2.0.1)
capistrano (~> 3.1) capistrano (~> 3.1)
capistrano-rails (1.6.1) capistrano-rails (1.6.2)
capistrano (~> 3.1) capistrano (~> 3.1)
capistrano-bundler (>= 1.1, < 3) capistrano-bundler (>= 1.1, < 3)
capistrano-rbenv (2.2.0) capistrano-rbenv (2.2.0)
@ -210,8 +212,8 @@ GEM
tzinfo tzinfo
excon (0.76.0) excon (0.76.0)
fabrication (2.27.0) fabrication (2.27.0)
faker (2.19.0) faker (2.20.0)
i18n (>= 1.6, < 2) i18n (>= 1.8.11, < 2)
faraday (1.9.3) faraday (1.9.3)
faraday-em_http (~> 1.0) faraday-em_http (~> 1.0)
faraday-em_synchrony (~> 1.0) faraday-em_synchrony (~> 1.0)
@ -260,6 +262,10 @@ GEM
fuubar (2.5.1) fuubar (2.5.1)
rspec-core (~> 3.0) rspec-core (~> 3.0)
ruby-progressbar (~> 1.4) 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) globalid (1.0.0)
activesupport (>= 5.0) activesupport (>= 5.0)
hamlit (2.13.0) hamlit (2.13.0)
@ -288,10 +294,11 @@ GEM
domain_name (~> 0.5) domain_name (~> 0.5)
http-form_data (2.3.0) http-form_data (2.3.0)
http_accept_language (2.1.1) http_accept_language (2.1.1)
httpclient (2.8.3)
httplog (1.5.0) httplog (1.5.0)
rack (>= 1.0) rack (>= 1.0)
rainbow (>= 2.0.0) rainbow (>= 2.0.0)
i18n (1.9.1) i18n (1.10.0)
concurrent-ruby (~> 1.0) concurrent-ruby (~> 1.0)
i18n-tasks (0.9.37) i18n-tasks (0.9.37)
activesupport (>= 4.0.2) activesupport (>= 4.0.2)
@ -308,6 +315,10 @@ GEM
jmespath (1.6.0) jmespath (1.6.0)
json (2.5.1) json (2.5.1)
json-canonicalization (0.3.0) json-canonicalization (0.3.0)
json-jwt (1.13.0)
activesupport (>= 4.2)
aes_key_wrap
bindata
json-ld (3.2.0) json-ld (3.2.0)
htmlentities (~> 4.3) htmlentities (~> 4.3)
json-canonicalization (~> 0.3) json-canonicalization (~> 0.3)
@ -408,6 +419,16 @@ GEM
omniauth-saml (1.10.3) omniauth-saml (1.10.3)
omniauth (~> 1.3, >= 1.3.2) omniauth (~> 1.3, >= 1.3.2)
ruby-saml (~> 1.9) 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 (2.2.0)
openssl-signature_algorithm (0.4.0) openssl-signature_algorithm (0.4.0)
orm_adapter (0.5.0) orm_adapter (0.5.0)
@ -451,6 +472,12 @@ GEM
rack (>= 1.0, < 3) rack (>= 1.0, < 3)
rack-cors (1.1.1) rack-cors (1.1.1)
rack (>= 2.0.0) 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-proxy (0.7.0)
rack rack
rack-test (1.1.0) rack-test (1.1.0)
@ -498,7 +525,7 @@ GEM
rdf (~> 3.2) rdf (~> 3.2)
redcarpet (3.5.1) redcarpet (3.5.1)
redis (4.5.1) redis (4.5.1)
redis-namespace (1.8.1) redis-namespace (1.8.2)
redis (>= 3.0.4) redis (>= 3.0.4)
regexp_parser (2.2.0) regexp_parser (2.2.0)
request_store (1.5.0) request_store (1.5.0)
@ -606,11 +633,15 @@ GEM
sshkit (1.21.2) sshkit (1.21.2)
net-scp (>= 1.1.2) net-scp (>= 1.1.2)
net-ssh (>= 2.8.0) net-ssh (>= 2.8.0)
stackprof (0.2.17) stackprof (0.2.19)
statsd-ruby (1.5.0) statsd-ruby (1.5.0)
stoplight (2.2.1) stoplight (2.2.1)
strong_migrations (0.7.9) strong_migrations (0.7.9)
activerecord (>= 5) activerecord (>= 5)
swd (1.2.0)
activesupport (>= 3)
attr_required (>= 0.0.5)
httpclient (>= 2.4)
temple (0.8.2) temple (0.8.2)
terminal-table (3.0.2) terminal-table (3.0.2)
unicode-display_width (>= 1.1.1, < 3) unicode-display_width (>= 1.1.1, < 3)
@ -645,6 +676,12 @@ GEM
unf_ext (0.0.8) unf_ext (0.0.8)
unicode-display_width (2.1.0) unicode-display_width (2.1.0)
uniform_notifier (1.14.2) 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) warden (1.2.9)
rack (>= 2.0.9) rack (>= 2.0.9)
webauthn (3.0.0.alpha1) webauthn (3.0.0.alpha1)
@ -657,6 +694,9 @@ GEM
safety_net_attestation (~> 0.4.0) safety_net_attestation (~> 0.4.0)
securecompare (~> 1.0) securecompare (~> 1.0)
tpm-key_attestation (~> 0.9.0) tpm-key_attestation (~> 0.9.0)
webfinger (1.1.0)
activesupport
httpclient (>= 2.4)
webmock (3.14.0) webmock (3.14.0)
addressable (>= 2.8.0) addressable (>= 2.8.0)
crack (>= 0.3.2) crack (>= 0.3.2)
@ -714,12 +754,13 @@ DEPENDENCIES
dotenv-rails (~> 2.7) dotenv-rails (~> 2.7)
ed25519 (~> 1.3) ed25519 (~> 1.3)
fabrication (~> 2.27) fabrication (~> 2.27)
faker (~> 2.19) faker (~> 2.20)
fast_blank (~> 1.0) fast_blank (~> 1.0)
fastimage fastimage
fog-core (<= 2.1.0) fog-core (<= 2.1.0)
fog-openstack (~> 0.3) fog-openstack (~> 0.3)
fuubar (~> 2.5) fuubar (~> 2.5)
gitlab-omniauth-openid-connect (~> 0.5.0)
hamlit-rails (~> 0.2) hamlit-rails (~> 0.2)
hcaptcha (~> 7.1) hcaptcha (~> 7.1)
hiredis (~> 0.6) hiredis (~> 0.6)

View File

@ -57,7 +57,7 @@ class StatusesIndex < Chewy::Index
field :id, type: 'long' field :id, type: 'long'
field :account_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' field :stemmed, type: 'text', analyzer: 'content'
end end

View File

@ -56,10 +56,6 @@ module Admin
end end
end end
def show
authorize @domain_block, :show?
end
def destroy def destroy
authorize @domain_block, :destroy? authorize @domain_block, :destroy?
UnblockDomainService.new.call(@domain_block) UnblockDomainService.new.call(@domain_block)

View File

@ -4,28 +4,26 @@ module Admin
class InstancesController < BaseController class InstancesController < BaseController
before_action :set_instances, only: :index before_action :set_instances, only: :index
before_action :set_instance, except: :index before_action :set_instance, except: :index
before_action :set_exhausted_deliveries_days, only: :show
def index def index
authorize :instance, :index? authorize :instance, :index?
preload_delivery_failures!
end end
def show def show
authorize :instance, :show? authorize :instance, :show?
@time_period = (6.days.ago.to_date...Time.now.utc.to_date)
end end
def destroy def destroy
authorize :instance, :destroy? authorize :instance, :destroy?
Admin::DomainPurgeWorker.perform_async(@instance.domain) Admin::DomainPurgeWorker.perform_async(@instance.domain)
log_action :destroy, @instance log_action :destroy, @instance
redirect_to admin_instances_path, notice: I18n.t('admin.instances.destroyed_msg', domain: @instance.domain) redirect_to admin_instances_path, notice: I18n.t('admin.instances.destroyed_msg', domain: @instance.domain)
end end
def clear_delivery_errors def clear_delivery_errors
authorize :delivery, :clear_delivery_errors? authorize :delivery, :clear_delivery_errors?
@instance.delivery_failure_tracker.clear_failures! @instance.delivery_failure_tracker.clear_failures!
redirect_to admin_instance_path(@instance.domain) redirect_to admin_instance_path(@instance.domain)
end end
@ -33,11 +31,9 @@ module Admin
def restart_delivery def restart_delivery
authorize :delivery, :restart_delivery? authorize :delivery, :restart_delivery?
last_unavailable_domain = unavailable_domain if @instance.unavailable?
if last_unavailable_domain.present?
@instance.delivery_failure_tracker.track_success! @instance.delivery_failure_tracker.track_success!
log_action :destroy, last_unavailable_domain log_action :destroy, @instance.unavailable_domain
end end
redirect_to admin_instance_path(@instance.domain) redirect_to admin_instance_path(@instance.domain)
@ -45,8 +41,7 @@ module Admin
def stop_delivery def stop_delivery
authorize :delivery, :stop_delivery? authorize :delivery, :stop_delivery?
unavailable_domain = UnavailableDomain.create!(domain: @instance.domain)
UnavailableDomain.create(domain: @instance.domain)
log_action :create, unavailable_domain log_action :create, unavailable_domain
redirect_to admin_instance_path(@instance.domain) redirect_to admin_instance_path(@instance.domain)
end end
@ -57,12 +52,11 @@ module Admin
@instance = Instance.find(params[:id]) @instance = Instance.find(params[:id])
end end
def set_exhausted_deliveries_days
@exhausted_deliveries_days = @instance.delivery_failure_tracker.exhausted_deliveries_days
end
def set_instances def set_instances
@instances = filtered_instances.page(params[:page]) @instances = filtered_instances.page(params[:page])
end
def preload_delivery_failures!
warning_domains_map = DeliveryFailureTracker.warning_domains_map warning_domains_map = DeliveryFailureTracker.warning_domains_map
@instances.each do |instance| @instances.each do |instance|
@ -70,10 +64,6 @@ module Admin
end end
end end
def unavailable_domain
UnavailableDomain.find_by(domain: @instance.domain)
end
def filtered_instances def filtered_instances
InstanceFilter.new(whitelist_mode? ? { allowed: true } : filter_params).results InstanceFilter.new(whitelist_mode? ? { allowed: true } : filter_params).results
end end

View File

@ -10,6 +10,7 @@ class Api::V1::StatusesController < Api::BaseController
before_action :set_thread, only: [:create] before_action :set_thread, only: [:create]
override_rate_limit_headers :create, family: :statuses override_rate_limit_headers :create, family: :statuses
override_rate_limit_headers :update, family: :statuses
# This API was originally unlimited, pagination cannot be introduced without # This API was originally unlimited, pagination cannot be introduced without
# breaking backwards-compatibility. Arbitrarily high number to cover most # breaking backwards-compatibility. Arbitrarily high number to cover most

View File

@ -4,8 +4,6 @@ class Auth::OmniauthCallbacksController < Devise::OmniauthCallbacksController
skip_before_action :verify_authenticity_token skip_before_action :verify_authenticity_token
def self.provides_callback_for(provider) def self.provides_callback_for(provider)
provider_id = provider.to_s.chomp '_oauth2'
define_method provider do define_method provider do
@user = User.find_for_oauth(request.env['omniauth.auth'], current_user) @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 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 else
session["devise.#{provider}_data"] = request.env['omniauth.auth'] session["devise.#{provider}_data"] = request.env['omniauth.auth']
redirect_to new_user_registration_url redirect_to new_user_registration_url
@ -33,7 +31,7 @@ class Auth::OmniauthCallbacksController < Devise::OmniauthCallbacksController
end end
def after_sign_in_path_for(resource) def after_sign_in_path_for(resource)
if resource.email_verified? if resource.email_present?
root_path root_path
else else
auth_setup_path(missing_email: '1') auth_setup_path(missing_email: '1')

View File

@ -241,6 +241,15 @@ module LanguagesHelper
code code
end 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) def valid_locale?(locale)
locale.present? && SUPPORTED_LOCALES.key?(locale.to_sym) locale.present? && SUPPORTED_LOCALES.key?(locale.to_sym)
end end

View File

@ -132,7 +132,7 @@ module StatusesHelper
end end
def render_video_component(status, **options) def render_video_component(status, **options)
video = status.media_attachments.first video = status.ordered_media_attachments.first
meta = video.file.meta || {} meta = video.file.meta || {}
@ -150,12 +150,12 @@ module StatusesHelper
}.merge(**options) }.merge(**options)
react_component :video, component_params do 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
end end
def render_audio_component(status, **options) def render_audio_component(status, **options)
audio = status.media_attachments.first audio = status.ordered_media_attachments.first
meta = audio.file.meta || {} meta = audio.file.meta || {}
@ -170,7 +170,7 @@ module StatusesHelper
}.merge(**options) }.merge(**options)
react_component :audio, component_params do 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
end end
@ -178,11 +178,11 @@ module StatusesHelper
component_params = { component_params = {
sensitive: sensitized?(status, current_account), sensitive: sensitized?(status, current_account),
autoplay: prefers_autoplay?, 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) }.merge(**options)
react_component :media_gallery, component_params do 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
end end

View File

@ -68,12 +68,12 @@ export default class Counter extends React.PureComponent {
); );
} else { } else {
const measure = data[0]; 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 = ( content = (
<React.Fragment> <React.Fragment>
<span className='sparkline__value__total'><FormattedNumber value={measure.total} /></span> <span className='sparkline__value__total'>{measure.human_value || <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> {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> </React.Fragment>
); );
} }

View 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>
);
}
}
}

View File

@ -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 = () => { onToggle = () => {
if (this.state.open && this.hasTags()) { if (this.state.open && this.hasTags()) {

View File

@ -1,14 +1,12 @@
import React from 'react'; import React from 'react';
import PropTypes from 'prop-types'; import PropTypes from 'prop-types';
import ImmutablePropTypes from 'react-immutable-proptypes'; import ImmutablePropTypes from 'react-immutable-proptypes';
import noop from 'lodash/noop';
import StatusContent from 'mastodon/components/status_content'; 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 Avatar from 'mastodon/components/avatar';
import DisplayName from 'mastodon/components/display_name'; import DisplayName from 'mastodon/components/display_name';
import RelativeTimestamp from 'mastodon/components/relative_timestamp'; import RelativeTimestamp from 'mastodon/components/relative_timestamp';
import Option from './option'; import Option from './option';
import MediaAttachments from 'mastodon/components/media_attachments';
export default class StatusCheckBox extends React.PureComponent { export default class StatusCheckBox extends React.PureComponent {
@ -27,51 +25,10 @@ export default class StatusCheckBox extends React.PureComponent {
render () { render () {
const { status, checked } = this.props; const { status, checked } = this.props;
let media = null;
if (status.get('reblog')) { if (status.get('reblog')) {
return null; 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 = ( const labelComponent = (
<div className='status-check-box__status poll__option__text'> <div className='status-check-box__status poll__option__text'>
<div className='detailed-status__display-name'> <div className='detailed-status__display-name'>
@ -79,12 +36,13 @@ export default class StatusCheckBox extends React.PureComponent {
<Avatar account={status.get('account')} size={46} /> <Avatar account={status.get('account')} size={46} />
</div> </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> </div>
<StatusContent status={status} /> <StatusContent status={status} />
<MediaAttachments status={status} />
{media}
</div> </div>
); );

View File

@ -9,6 +9,7 @@ import escapeTextContentForBrowser from 'escape-html';
import InlineAccount from 'mastodon/components/inline_account'; import InlineAccount from 'mastodon/components/inline_account';
import IconButton from 'mastodon/components/icon_button'; import IconButton from 'mastodon/components/icon_button';
import RelativeTimestamp from 'mastodon/components/relative_timestamp'; import RelativeTimestamp from 'mastodon/components/relative_timestamp';
import MediaAttachments from 'mastodon/components/media_attachments';
const mapStateToProps = (state, { statusId }) => ({ const mapStateToProps = (state, { statusId }) => ({
versions: state.getIn(['history', statusId, 'items']), 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} /> <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> </div>
</div> </div>

View File

@ -18,12 +18,12 @@
"account.followers": "Followers", "account.followers": "Followers",
"account.followers.empty": "No one follows this user yet.", "account.followers.empty": "No one follows this user yet.",
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}", "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.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
"account.follows.empty": "This user doesn't follow anyone yet.", "account.follows.empty": "This user doesn't follow anyone yet.",
"account.follows_you": "Follows you", "account.follows_you": "Follows you",
"account.hide_reblogs": "Hide boosts from @{name}", "account.hide_reblogs": "Hide boosts from @{name}",
"account.joined": "Joined {date}", "account.joined": "Joined {date}",
"account.last_status": "Last active",
"account.link_verified_on": "Ownership of this link was checked on {date}", "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.locked_info": "This account privacy status is set to locked. The owner manually reviews who can follow them.",
"account.media": "Media", "account.media": "Media",
@ -32,7 +32,6 @@
"account.mute": "Mute @{name}", "account.mute": "Mute @{name}",
"account.mute_notifications": "Mute notifications from @{name}", "account.mute_notifications": "Mute notifications from @{name}",
"account.muted": "Muted", "account.muted": "Muted",
"account.never_active": "Never",
"account.posts": "Toots", "account.posts": "Toots",
"account.posts_with_replies": "Toots and replies", "account.posts_with_replies": "Toots and replies",
"account.report": "Report @{name}", "account.report": "Report @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}", "account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
"account.unblock": "Unblock @{name}", "account.unblock": "Unblock @{name}",
"account.unblock_domain": "Unblock domain {domain}", "account.unblock_domain": "Unblock domain {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "Don't feature on profile", "account.unendorse": "Don't feature on profile",
"account.unfollow": "Unfollow", "account.unfollow": "Unfollow",
"account.unmute": "Unmute @{name}", "account.unmute": "Unmute @{name}",
"account.unmute_notifications": "Unmute notifications from @{name}", "account.unmute_notifications": "Unmute notifications from @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Click to add a note", "account_note.placeholder": "Click to add a note",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "المُتابِعون", "account.followers": "المُتابِعون",
"account.followers.empty": "لا أحدَ يُتابع هذا المُستخدم حتى الآن.", "account.followers.empty": "لا أحدَ يُتابع هذا المُستخدم حتى الآن.",
"account.followers_counter": "{count, plural, zero{لا مُتابع} one {مُتابعٌ واحِد} two{مُتابعانِ اِثنان} few{{counter} مُتابِعين} many{{counter} مُتابِعًا} other {{counter} مُتابع}}", "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.following_counter": "{count, plural, zero{لا يُتابِع} one {يُتابِعُ واحد} two{يُتابِعُ اِثنان} few{يُتابِعُ {counter}} many{يُتابِعُ {counter}} other {يُتابِعُ {counter}}}",
"account.follows.empty": "لا يُتابع هذا المُستخدمُ أيَّ أحدٍ حتى الآن.", "account.follows.empty": "لا يُتابع هذا المُستخدمُ أيَّ أحدٍ حتى الآن.",
"account.follows_you": "يُتابِعُك", "account.follows_you": "يُتابِعُك",
"account.hide_reblogs": "إخفاء مشاركات @{name}", "account.hide_reblogs": "إخفاء مشاركات @{name}",
"account.joined": "انضم في {date}", "account.joined": "انضم في {date}",
"account.last_status": "آخر نشاط",
"account.link_verified_on": "تمَّ التَّحقق مِن مِلْكيّة هذا الرابط بتاريخ {date}", "account.link_verified_on": "تمَّ التَّحقق مِن مِلْكيّة هذا الرابط بتاريخ {date}",
"account.locked_info": "تمَّ تعيين حالة خصوصية هذا الحساب إلى مُقفَل. يُراجع المالك يدويًا من يمكنه متابعته.", "account.locked_info": "تمَّ تعيين حالة خصوصية هذا الحساب إلى مُقفَل. يُراجع المالك يدويًا من يمكنه متابعته.",
"account.media": "وسائط", "account.media": "وسائط",
@ -32,7 +32,6 @@
"account.mute": "كَتم @{name}", "account.mute": "كَتم @{name}",
"account.mute_notifications": "كَتم الإشعارات من @{name}", "account.mute_notifications": "كَتم الإشعارات من @{name}",
"account.muted": "مَكتوم", "account.muted": "مَكتوم",
"account.never_active": "أبدًا",
"account.posts": "منشورات", "account.posts": "منشورات",
"account.posts_with_replies": "المنشورات والرُدود", "account.posts_with_replies": "المنشورات والرُدود",
"account.report": "الإبلاغ عن @{name}", "account.report": "الإبلاغ عن @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, zero {لَا تَبويقات} one {تَبويقةٌ واحدة} two {تَبويقَتانِ اِثنتان} few {{counter} تَبويقات} many {{counter} تَبويقتًا} other {{counter} تَبويقة}}", "account.statuses_counter": "{count, plural, zero {لَا تَبويقات} one {تَبويقةٌ واحدة} two {تَبويقَتانِ اِثنتان} few {{counter} تَبويقات} many {{counter} تَبويقتًا} other {{counter} تَبويقة}}",
"account.unblock": "إلغاء الحَظر عن @{name}", "account.unblock": "إلغاء الحَظر عن @{name}",
"account.unblock_domain": "إلغاء الحَظر عن النِّطاق {domain}", "account.unblock_domain": "إلغاء الحَظر عن النِّطاق {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "لا تُرَوِّج لهُ في الملف الشخصي", "account.unendorse": "لا تُرَوِّج لهُ في الملف الشخصي",
"account.unfollow": "إلغاء المُتابعة", "account.unfollow": "إلغاء المُتابعة",
"account.unmute": "إلغاء الكَتم عن @{name}", "account.unmute": "إلغاء الكَتم عن @{name}",
"account.unmute_notifications": "إلغاء كَتم الإشعارات عن @{name}", "account.unmute_notifications": "إلغاء كَتم الإشعارات عن @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "اضغط لإضافة مُلاحظة", "account_note.placeholder": "اضغط لإضافة مُلاحظة",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "Siguidores", "account.followers": "Siguidores",
"account.followers.empty": "Naide sigue a esti usuariu entá.", "account.followers.empty": "Naide sigue a esti usuariu entá.",
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}", "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.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
"account.follows.empty": "Esti usuariu entá nun sigue a naide.", "account.follows.empty": "Esti usuariu entá nun sigue a naide.",
"account.follows_you": "Síguete", "account.follows_you": "Síguete",
"account.hide_reblogs": "Anubrir les comparticiones de @{name}", "account.hide_reblogs": "Anubrir les comparticiones de @{name}",
"account.joined": "Joined {date}", "account.joined": "Joined {date}",
"account.last_status": "Cabera actividá",
"account.link_verified_on": "La propiedá d'esti enllaz foi comprobada'l {date}", "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.locked_info": "This account privacy status is set to locked. The owner manually reviews who can follow them.",
"account.media": "Media", "account.media": "Media",
@ -32,7 +32,6 @@
"account.mute": "Silenciar a @{name}", "account.mute": "Silenciar a @{name}",
"account.mute_notifications": "Mute notifications from @{name}", "account.mute_notifications": "Mute notifications from @{name}",
"account.muted": "Muted", "account.muted": "Muted",
"account.never_active": "Enxamás",
"account.posts": "Barritos", "account.posts": "Barritos",
"account.posts_with_replies": "Barritos y rempuestes", "account.posts_with_replies": "Barritos y rempuestes",
"account.report": "Report @{name}", "account.report": "Report @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}", "account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
"account.unblock": "Desbloquiar a @{name}", "account.unblock": "Desbloquiar a @{name}",
"account.unblock_domain": "Amosar {domain}", "account.unblock_domain": "Amosar {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "Nun destacar nel perfil", "account.unendorse": "Nun destacar nel perfil",
"account.unfollow": "Dexar de siguir", "account.unfollow": "Dexar de siguir",
"account.unmute": "Unmute @{name}", "account.unmute": "Unmute @{name}",
"account.unmute_notifications": "Unmute notifications from @{name}", "account.unmute_notifications": "Unmute notifications from @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Click to add a note", "account_note.placeholder": "Click to add a note",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "Последователи", "account.followers": "Последователи",
"account.followers.empty": "Все още никой не следва този потребител.", "account.followers.empty": "Все още никой не следва този потребител.",
"account.followers_counter": "{count, plural, one {{counter} Последовател} other {{counter} Последователи}}", "account.followers_counter": "{count, plural, one {{counter} Последовател} other {{counter} Последователи}}",
"account.following": "Following",
"account.following_counter": "{count, plural, one {{counter} Последван} other {{counter} Последвани}}", "account.following_counter": "{count, plural, one {{counter} Последван} other {{counter} Последвани}}",
"account.follows.empty": "Този потребител все още не следва никого.", "account.follows.empty": "Този потребител все още не следва никого.",
"account.follows_you": "Твой последовател", "account.follows_you": "Твой последовател",
"account.hide_reblogs": "Скриване на споделяния от @{name}", "account.hide_reblogs": "Скриване на споделяния от @{name}",
"account.joined": "Joined {date}", "account.joined": "Joined {date}",
"account.last_status": "Последно активен/а",
"account.link_verified_on": "Собствеността върху тази връзка е проверена на {date}", "account.link_verified_on": "Собствеността върху тази връзка е проверена на {date}",
"account.locked_info": "Този акаунт е поверително заключен. Собственикът преглежда ръчно кой може да го следва.", "account.locked_info": "Този акаунт е поверително заключен. Собственикът преглежда ръчно кой може да го следва.",
"account.media": "Мултимедия", "account.media": "Мултимедия",
@ -32,7 +32,6 @@
"account.mute": "Заглушаване на @{name}", "account.mute": "Заглушаване на @{name}",
"account.mute_notifications": "Заглушаване на известия от @{name}", "account.mute_notifications": "Заглушаване на известия от @{name}",
"account.muted": "Заглушено", "account.muted": "Заглушено",
"account.never_active": "Никога",
"account.posts": "Публикации", "account.posts": "Публикации",
"account.posts_with_replies": "Toots with replies", "account.posts_with_replies": "Toots with replies",
"account.report": "Докладване на @{name}", "account.report": "Докладване на @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Публикация} other {{counter} Публикации}}", "account.statuses_counter": "{count, plural, one {{counter} Публикация} other {{counter} Публикации}}",
"account.unblock": "Не блокирай", "account.unblock": "Не блокирай",
"account.unblock_domain": "Unhide {domain}", "account.unblock_domain": "Unhide {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "Не включвайте в профила", "account.unendorse": "Не включвайте в профила",
"account.unfollow": "Не следвай", "account.unfollow": "Не следвай",
"account.unmute": "Раззаглушаване на @{name}", "account.unmute": "Раззаглушаване на @{name}",
"account.unmute_notifications": "Раззаглушаване на известия от @{name}", "account.unmute_notifications": "Раззаглушаване на известия от @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Click to add a note", "account_note.placeholder": "Click to add a note",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "অনুসরণকারী", "account.followers": "অনুসরণকারী",
"account.followers.empty": "এই ব্যক্তিকে এখনো কেউ অনুসরণ করে না।", "account.followers.empty": "এই ব্যক্তিকে এখনো কেউ অনুসরণ করে না।",
"account.followers_counter": "{count, plural,one {{counter} জন অনুসরণকারী } other {{counter} জন অনুসরণকারী}}", "account.followers_counter": "{count, plural,one {{counter} জন অনুসরণকারী } other {{counter} জন অনুসরণকারী}}",
"account.following": "Following",
"account.following_counter": "{count, plural,one {{counter} জনকে অনুসরণ} other {{counter} জনকে অনুসরণ}}", "account.following_counter": "{count, plural,one {{counter} জনকে অনুসরণ} other {{counter} জনকে অনুসরণ}}",
"account.follows.empty": "এই সদস্য কাওকে এখনো অনুসরণ করেন না.", "account.follows.empty": "এই সদস্য কাওকে এখনো অনুসরণ করেন না.",
"account.follows_you": "তোমাকে অনুসরণ করে", "account.follows_you": "তোমাকে অনুসরণ করে",
"account.hide_reblogs": "@{name}'র সমর্থনগুলি লুকিয়ে ফেলুন", "account.hide_reblogs": "@{name}'র সমর্থনগুলি লুকিয়ে ফেলুন",
"account.joined": "Joined {date}", "account.joined": "Joined {date}",
"account.last_status": "শেষ সক্রিয় ছিল",
"account.link_verified_on": "এই লিংকের মালিকানা চেক করা হয়েছে {date} তারিখে", "account.link_verified_on": "এই লিংকের মালিকানা চেক করা হয়েছে {date} তারিখে",
"account.locked_info": "এই নিবন্ধনের গোপনীয়তার ক্ষেত্র তালা দেওয়া আছে। নিবন্ধনকারী অনুসরণ করার অনুমতি যাদেরকে দেবেন, শুধু তারাই অনুসরণ করতে পারবেন।", "account.locked_info": "এই নিবন্ধনের গোপনীয়তার ক্ষেত্র তালা দেওয়া আছে। নিবন্ধনকারী অনুসরণ করার অনুমতি যাদেরকে দেবেন, শুধু তারাই অনুসরণ করতে পারবেন।",
"account.media": "মিডিয়া", "account.media": "মিডিয়া",
@ -32,7 +32,6 @@
"account.mute": "@{name} কে নিঃশব্দ করুন", "account.mute": "@{name} কে নিঃশব্দ করুন",
"account.mute_notifications": "@{name} র প্রজ্ঞাপন আপনার কাছে নিঃশব্দ করুন", "account.mute_notifications": "@{name} র প্রজ্ঞাপন আপনার কাছে নিঃশব্দ করুন",
"account.muted": "নিঃশব্দ", "account.muted": "নিঃশব্দ",
"account.never_active": "কখনও নয়",
"account.posts": "টুট", "account.posts": "টুট",
"account.posts_with_replies": "টুট এবং মতামত", "account.posts_with_replies": "টুট এবং মতামত",
"account.report": "@{name} কে রিপোর্ট করুন", "account.report": "@{name} কে রিপোর্ট করুন",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural,one {{counter} টুট} other {{counter} টুট}}", "account.statuses_counter": "{count, plural,one {{counter} টুট} other {{counter} টুট}}",
"account.unblock": "@{name} র কার্যকলাপ দেখুন", "account.unblock": "@{name} র কার্যকলাপ দেখুন",
"account.unblock_domain": "{domain} কে আবার দেখুন", "account.unblock_domain": "{domain} কে আবার দেখুন",
"account.unblock_short": "Unblock",
"account.unendorse": "আপনার নিজের পাতায় এটা দেখবেন না", "account.unendorse": "আপনার নিজের পাতায় এটা দেখবেন না",
"account.unfollow": "অনুসরণ করো না", "account.unfollow": "অনুসরণ করো না",
"account.unmute": "@{name} র কার্যকলাপ আবার দেখুন", "account.unmute": "@{name} র কার্যকলাপ আবার দেখুন",
"account.unmute_notifications": "@{name} র প্রজ্ঞাপন দেখুন", "account.unmute_notifications": "@{name} র প্রজ্ঞাপন দেখুন",
"account.unmute_short": "Unmute",
"account_note.placeholder": "নোট যোগ করতে ক্লিক করুন", "account_note.placeholder": "নোট যোগ করতে ক্লিক করুন",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "Heulier·ezed·ien", "account.followers": "Heulier·ezed·ien",
"account.followers.empty": "Den na heul an implijer-mañ c'hoazh.", "account.followers.empty": "Den na heul an implijer-mañ c'hoazh.",
"account.followers_counter": "{count, plural, other{{counter} Heulier}}", "account.followers_counter": "{count, plural, other{{counter} Heulier}}",
"account.following": "Following",
"account.following_counter": "{count, plural, other {{counter} Heuliañ}}", "account.following_counter": "{count, plural, other {{counter} Heuliañ}}",
"account.follows.empty": "An implijer·ez-mañ na heul den ebet.", "account.follows.empty": "An implijer·ez-mañ na heul den ebet.",
"account.follows_you": "Ho heul", "account.follows_you": "Ho heul",
"account.hide_reblogs": "Kuzh toudoù rannet gant @{name}", "account.hide_reblogs": "Kuzh toudoù rannet gant @{name}",
"account.joined": "Amañ abaoe {date}", "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.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.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", "account.media": "Media",
@ -32,7 +32,6 @@
"account.mute": "Kuzhat @{name}", "account.mute": "Kuzhat @{name}",
"account.mute_notifications": "Kuzh kemennoù eus @{name}", "account.mute_notifications": "Kuzh kemennoù eus @{name}",
"account.muted": "Kuzhet", "account.muted": "Kuzhet",
"account.never_active": "Birviken",
"account.posts": "a doudoù", "account.posts": "a doudoù",
"account.posts_with_replies": "Toudoù ha respontoù", "account.posts_with_replies": "Toudoù ha respontoù",
"account.report": "Disklêriañ @{name}", "account.report": "Disklêriañ @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Toud} other {{counter} Toud}}", "account.statuses_counter": "{count, plural, one {{counter} Toud} other {{counter} Toud}}",
"account.unblock": "Diverzañ @{name}", "account.unblock": "Diverzañ @{name}",
"account.unblock_domain": "Diverzañ an domani {domain}", "account.unblock_domain": "Diverzañ an domani {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "Paouez da lakaat war-wel war ar profil", "account.unendorse": "Paouez da lakaat war-wel war ar profil",
"account.unfollow": "Diheuliañ", "account.unfollow": "Diheuliañ",
"account.unmute": "Diguzhat @{name}", "account.unmute": "Diguzhat @{name}",
"account.unmute_notifications": "Diguzhat kemennoù a @{name}", "account.unmute_notifications": "Diguzhat kemennoù a @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Klikit evit ouzhpenniñ un notenn", "account_note.placeholder": "Klikit evit ouzhpenniñ un notenn",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "Seguidors", "account.followers": "Seguidors",
"account.followers.empty": "Encara ningú no segueix aquest usuari.", "account.followers.empty": "Encara ningú no segueix aquest usuari.",
"account.followers_counter": "{count, plural, one {{counter} Seguidor} other {{counter} Seguidors}}", "account.followers_counter": "{count, plural, one {{counter} Seguidor} other {{counter} Seguidors}}",
"account.following": "Following",
"account.following_counter": "{count, plural, other {{counter} Seguint}}", "account.following_counter": "{count, plural, other {{counter} Seguint}}",
"account.follows.empty": "Aquest usuari encara no segueix a ningú.", "account.follows.empty": "Aquest usuari encara no segueix a ningú.",
"account.follows_you": "Et segueix", "account.follows_you": "Et segueix",
"account.hide_reblogs": "Amaga els impulsos de @{name}", "account.hide_reblogs": "Amaga els impulsos de @{name}",
"account.joined": "Unit des de {date}", "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.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.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", "account.media": "Mèdia",
@ -32,7 +32,6 @@
"account.mute": "Silencia @{name}", "account.mute": "Silencia @{name}",
"account.mute_notifications": "Notificacions desactivades de @{name}", "account.mute_notifications": "Notificacions desactivades de @{name}",
"account.muted": "Silenciat", "account.muted": "Silenciat",
"account.never_active": "Mai",
"account.posts": "Tuts", "account.posts": "Tuts",
"account.posts_with_replies": "Tuts i respostes", "account.posts_with_replies": "Tuts i respostes",
"account.report": "Informar sobre @{name}", "account.report": "Informar sobre @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Tut} other {{counter} Tuts}}", "account.statuses_counter": "{count, plural, one {{counter} Tut} other {{counter} Tuts}}",
"account.unblock": "Desbloqueja @{name}", "account.unblock": "Desbloqueja @{name}",
"account.unblock_domain": "Mostra {domain}", "account.unblock_domain": "Mostra {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "No recomanar en el perfil", "account.unendorse": "No recomanar en el perfil",
"account.unfollow": "Deixa de seguir", "account.unfollow": "Deixa de seguir",
"account.unmute": "Treure silenci de @{name}", "account.unmute": "Treure silenci de @{name}",
"account.unmute_notifications": "Activar notificacions de @{name}", "account.unmute_notifications": "Activar notificacions de @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Fes clic per afegir una nota", "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.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", "admin.dashboard.monthly_retention": "Ràtio de retenció per mes després del registre",

View File

@ -18,12 +18,12 @@
"account.followers": "Abbunati", "account.followers": "Abbunati",
"account.followers.empty": "Nisunu hè abbunatu à st'utilizatore.", "account.followers.empty": "Nisunu hè abbunatu à st'utilizatore.",
"account.followers_counter": "{count, plural, one {{counter} Abbunatu} other {{counter} Abbunati}}", "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.following_counter": "{count, plural, one {{counter} Abbunamentu} other {{counter} Abbunamenti}}",
"account.follows.empty": "St'utilizatore ùn seguita nisunu.", "account.follows.empty": "St'utilizatore ùn seguita nisunu.",
"account.follows_you": "Vi seguita", "account.follows_you": "Vi seguita",
"account.hide_reblogs": "Piattà spartere da @{name}", "account.hide_reblogs": "Piattà spartere da @{name}",
"account.joined": "Quì dapoi {date}", "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.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.locked_info": "U statutu di vita privata di u contu hè chjosu. U pruprietariu esamina manualmente e dumande d'abbunamentu.",
"account.media": "Media", "account.media": "Media",
@ -32,7 +32,6 @@
"account.mute": "Piattà @{name}", "account.mute": "Piattà @{name}",
"account.mute_notifications": "Piattà nutificazione da @{name}", "account.mute_notifications": "Piattà nutificazione da @{name}",
"account.muted": "Piattatu", "account.muted": "Piattatu",
"account.never_active": "Mai",
"account.posts": "Statuti", "account.posts": "Statuti",
"account.posts_with_replies": "Statuti è risposte", "account.posts_with_replies": "Statuti è risposte",
"account.report": "Palisà @{name}", "account.report": "Palisà @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Statutu} other {{counter} Statuti}}", "account.statuses_counter": "{count, plural, one {{counter} Statutu} other {{counter} Statuti}}",
"account.unblock": "Sbluccà @{name}", "account.unblock": "Sbluccà @{name}",
"account.unblock_domain": "Ùn piattà più {domain}", "account.unblock_domain": "Ùn piattà più {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "Ùn fà figurà nant'à u prufilu", "account.unendorse": "Ùn fà figurà nant'à u prufilu",
"account.unfollow": "Ùn siguità più", "account.unfollow": "Ùn siguità più",
"account.unmute": "Ùn piattà più @{name}", "account.unmute": "Ùn piattà più @{name}",
"account.unmute_notifications": "Ùn piattà più nutificazione da @{name}", "account.unmute_notifications": "Ùn piattà più nutificazione da @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Senza cummentariu", "account_note.placeholder": "Senza cummentariu",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "Sledující", "account.followers": "Sledující",
"account.followers.empty": "Tohoto uživatele ještě nikdo nesleduje.", "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.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.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.empty": "Tento uživatel ještě nikoho nesleduje.",
"account.follows_you": "Sleduje vás", "account.follows_you": "Sleduje vás",
"account.hide_reblogs": "Skrýt boosty od @{name}", "account.hide_reblogs": "Skrýt boosty od @{name}",
"account.joined": "Založen {date}", "account.joined": "Založen {date}",
"account.last_status": "Naposledy aktivní",
"account.link_verified_on": "Vlastnictví tohoto odkazu bylo zkontrolováno {date}", "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.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", "account.media": "Média",
@ -32,7 +32,6 @@
"account.mute": "Skrýt @{name}", "account.mute": "Skrýt @{name}",
"account.mute_notifications": "Skrýt oznámení od @{name}", "account.mute_notifications": "Skrýt oznámení od @{name}",
"account.muted": "Skryt", "account.muted": "Skryt",
"account.never_active": "Nikdy",
"account.posts": "Příspěvky", "account.posts": "Příspěvky",
"account.posts_with_replies": "Příspěvky a odpovědi", "account.posts_with_replies": "Příspěvky a odpovědi",
"account.report": "Nahlásit @{name}", "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.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": "Odblokovat @{name}",
"account.unblock_domain": "Odblokovat doménu {domain}", "account.unblock_domain": "Odblokovat doménu {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "Nezvýrazňovat na profilu", "account.unendorse": "Nezvýrazňovat na profilu",
"account.unfollow": "Přestat sledovat", "account.unfollow": "Přestat sledovat",
"account.unmute": "Zrušit skrytí @{name}", "account.unmute": "Zrušit skrytí @{name}",
"account.unmute_notifications": "Zrušit skrytí oznámení od @{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", "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.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "Dilynwyr", "account.followers": "Dilynwyr",
"account.followers.empty": "Nid oes neb yn dilyn y defnyddiwr hwn eto.", "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.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.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.empty": "Nid yw'r defnyddiwr hwn yn dilyn unrhyw un eto.",
"account.follows_you": "Yn eich dilyn chi", "account.follows_you": "Yn eich dilyn chi",
"account.hide_reblogs": "Cuddio bwstiau o @{name}", "account.hide_reblogs": "Cuddio bwstiau o @{name}",
"account.joined": "Joined {date}", "account.joined": "Joined {date}",
"account.last_status": "Gweithredol olaf",
"account.link_verified_on": "Gwiriwyd perchnogaeth y ddolen yma ar {date}", "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.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", "account.media": "Cyfryngau",
@ -32,7 +32,6 @@
"account.mute": "Tawelu @{name}", "account.mute": "Tawelu @{name}",
"account.mute_notifications": "Cuddio hysbysiadau o @{name}", "account.mute_notifications": "Cuddio hysbysiadau o @{name}",
"account.muted": "Distewyd", "account.muted": "Distewyd",
"account.never_active": "Byth",
"account.posts": "Tŵtiau", "account.posts": "Tŵtiau",
"account.posts_with_replies": "Tŵtiau ac atebion", "account.posts_with_replies": "Tŵtiau ac atebion",
"account.report": "Adrodd @{name}", "account.report": "Adrodd @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Dŵt} other {{counter} o Dŵtiau}}", "account.statuses_counter": "{count, plural, one {{counter} Dŵt} other {{counter} o Dŵtiau}}",
"account.unblock": "Dadflocio @{name}", "account.unblock": "Dadflocio @{name}",
"account.unblock_domain": "Dadguddio {domain}", "account.unblock_domain": "Dadguddio {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "Peidio a'i arddangos ar fy mhroffil", "account.unendorse": "Peidio a'i arddangos ar fy mhroffil",
"account.unfollow": "Dad-ddilyn", "account.unfollow": "Dad-ddilyn",
"account.unmute": "Dad-dawelu @{name}", "account.unmute": "Dad-dawelu @{name}",
"account.unmute_notifications": "Dad-dawelu hysbysiadau o @{name}", "account.unmute_notifications": "Dad-dawelu hysbysiadau o @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Clicio i ychwanegu nodyn", "account_note.placeholder": "Clicio i ychwanegu nodyn",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "Følgere", "account.followers": "Følgere",
"account.followers.empty": "Ingen følger brugeren endnu.", "account.followers.empty": "Ingen følger brugeren endnu.",
"account.followers_counter": "{count, plural, one {{counter} Følger} other {{counter} Følgere}}", "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.following_counter": "{count, plural, one {{counter} Følges} other {{counter} Følges}}",
"account.follows.empty": "Denne bruger følger ikke nogen endnu.", "account.follows.empty": "Denne bruger følger ikke nogen endnu.",
"account.follows_you": "Følger dig", "account.follows_you": "Følger dig",
"account.hide_reblogs": "Skjul fremhævelser fra @{name}", "account.hide_reblogs": "Skjul fremhævelser fra @{name}",
"account.joined": "Tilmeldt {date}", "account.joined": "Tilmeldt {date}",
"account.last_status": "Senest aktiv",
"account.link_verified_on": "Ejerskab af dette link blev tjekket {date}", "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.locked_info": "Denne kontos fortrolighedsstatus er sat til låst. Ejeren bedømmer manuelt, hvem der kan følge vedkommende.",
"account.media": "Medier", "account.media": "Medier",
@ -32,7 +32,6 @@
"account.mute": "Skjul @{name}", "account.mute": "Skjul @{name}",
"account.mute_notifications": "Skjul notifikationer fra @{name}", "account.mute_notifications": "Skjul notifikationer fra @{name}",
"account.muted": "Tystnet", "account.muted": "Tystnet",
"account.never_active": "Aldrig",
"account.posts": "Indlæg", "account.posts": "Indlæg",
"account.posts_with_replies": "Indlæg og svar", "account.posts_with_replies": "Indlæg og svar",
"account.report": "Anmeld @{name}", "account.report": "Anmeld @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Indlæg} other {{counter} Indlæg}}", "account.statuses_counter": "{count, plural, one {{counter} Indlæg} other {{counter} Indlæg}}",
"account.unblock": "Fjern blokeringen af @{name}", "account.unblock": "Fjern blokeringen af @{name}",
"account.unblock_domain": "Afblokér domænet {domain}", "account.unblock_domain": "Afblokér domænet {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "Fjern visning på din profil", "account.unendorse": "Fjern visning på din profil",
"account.unfollow": "Følg ikke længere", "account.unfollow": "Følg ikke længere",
"account.unmute": "Fjern tavsgjort for @{name}", "account.unmute": "Fjern tavsgjort for @{name}",
"account.unmute_notifications": "Slå notifikationer om @{name} til igen", "account.unmute_notifications": "Slå notifikationer om @{name} til igen",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Klik for at tilføje notat", "account_note.placeholder": "Klik for at tilføje notat",
"admin.dashboard.daily_retention": "Brugerfastholdelsesrate efter dag efter tilmelding", "admin.dashboard.daily_retention": "Brugerfastholdelsesrate efter dag efter tilmelding",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "Follower", "account.followers": "Follower",
"account.followers.empty": "Diesem Profil folgt noch niemand.", "account.followers.empty": "Diesem Profil folgt noch niemand.",
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Follower}}", "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.following_counter": "{count, plural, one {{counter} Folgender} other {{counter} Folgende}}",
"account.follows.empty": "Dieses Profil folgt noch niemandem.", "account.follows.empty": "Dieses Profil folgt noch niemandem.",
"account.follows_you": "Folgt dir", "account.follows_you": "Folgt dir",
"account.hide_reblogs": "Geteilte Beiträge von @{name} verbergen", "account.hide_reblogs": "Geteilte Beiträge von @{name} verbergen",
"account.joined": "Beigetreten am {date}", "account.joined": "Beigetreten am {date}",
"account.last_status": "Zuletzt aktiv",
"account.link_verified_on": "Besitz dieses Links wurde geprüft am {date}", "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.locked_info": "Der Privatsphärenstatus dieses Accounts wurde auf gesperrt gesetzt. Die Person bestimmt manuell wer ihm/ihr folgen darf.",
"account.media": "Medien", "account.media": "Medien",
@ -32,7 +32,6 @@
"account.mute": "@{name} stummschalten", "account.mute": "@{name} stummschalten",
"account.mute_notifications": "Benachrichtigungen von @{name} stummschalten", "account.mute_notifications": "Benachrichtigungen von @{name} stummschalten",
"account.muted": "Stummgeschaltet", "account.muted": "Stummgeschaltet",
"account.never_active": "Nie",
"account.posts": "Beiträge", "account.posts": "Beiträge",
"account.posts_with_replies": "Beiträge und Antworten", "account.posts_with_replies": "Beiträge und Antworten",
"account.report": "@{name} melden", "account.report": "@{name} melden",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Beitrag} other {{counter} Beiträge}}", "account.statuses_counter": "{count, plural, one {{counter} Beitrag} other {{counter} Beiträge}}",
"account.unblock": "@{name} entblocken", "account.unblock": "@{name} entblocken",
"account.unblock_domain": "{domain} wieder anzeigen", "account.unblock_domain": "{domain} wieder anzeigen",
"account.unblock_short": "Unblock",
"account.unendorse": "Nicht auf Profil hervorheben", "account.unendorse": "Nicht auf Profil hervorheben",
"account.unfollow": "Entfolgen", "account.unfollow": "Entfolgen",
"account.unmute": "@{name} nicht mehr stummschalten", "account.unmute": "@{name} nicht mehr stummschalten",
"account.unmute_notifications": "Benachrichtigungen von @{name} einschalten", "account.unmute_notifications": "Benachrichtigungen von @{name} einschalten",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Notiz durch Klicken hinzufügen", "account_note.placeholder": "Notiz durch Klicken hinzufügen",
"admin.dashboard.daily_retention": "Benutzerverbleibrate nach Tag nach Anmeldung", "admin.dashboard.daily_retention": "Benutzerverbleibrate nach Tag nach Anmeldung",
"admin.dashboard.monthly_retention": "Benutzerverbleibrate nach Monat nach Anmeldung", "admin.dashboard.monthly_retention": "Benutzerverbleibrate nach Monat nach Anmeldung",

View File

@ -1624,30 +1624,38 @@
}, },
{ {
"descriptors": [ "descriptors": [
{
"defaultMessage": "Follow",
"id": "account.follow"
},
{ {
"defaultMessage": "Unfollow", "defaultMessage": "Unfollow",
"id": "account.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" "id": "account.requested"
}, },
{ {
"defaultMessage": "Unblock @{name}", "defaultMessage": "Unblock",
"id": "account.unblock" "id": "account.unblock_short"
}, },
{ {
"defaultMessage": "Unmute @{name}", "defaultMessage": "Unmute",
"id": "account.unmute" "id": "account.unmute_short"
}, },
{ {
"defaultMessage": "Unfollow", "defaultMessage": "Unfollow",
"id": "confirmations.unfollow.confirm" "id": "confirmations.unfollow.confirm"
}, },
{
"defaultMessage": "Edit profile",
"id": "account.edit_profile"
},
{ {
"defaultMessage": "Are you sure you want to unfollow {name}?", "defaultMessage": "Are you sure you want to unfollow {name}?",
"id": "confirmations.unfollow.message" "id": "confirmations.unfollow.message"
@ -1661,12 +1669,8 @@
"id": "account.followers" "id": "account.followers"
}, },
{ {
"defaultMessage": "Never", "defaultMessage": "Following",
"id": "account.never_active" "id": "account.following"
},
{
"defaultMessage": "Last active",
"id": "account.last_status"
} }
], ],
"path": "app/javascript/mastodon/features/directory/components/account_card.json" "path": "app/javascript/mastodon/features/directory/components/account_card.json"
@ -2007,10 +2011,6 @@
{ {
"defaultMessage": "Getting started", "defaultMessage": "Getting started",
"id": "getting_started.heading" "id": "getting_started.heading"
},
{
"defaultMessage": "Profile directory",
"id": "getting_started.directory"
} }
], ],
"path": "app/javascript/mastodon/features/getting_started/index.json" "path": "app/javascript/mastodon/features/getting_started/index.json"
@ -2742,7 +2742,7 @@
"id": "report.reasons.spam" "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" "id": "report.reasons.spam_description"
}, },
{ {
@ -3402,6 +3402,10 @@
"defaultMessage": "About this server", "defaultMessage": "About this server",
"id": "navigation_bar.info" "id": "navigation_bar.info"
}, },
{
"defaultMessage": "Profile directory",
"id": "getting_started.directory"
},
{ {
"defaultMessage": "Mobile apps", "defaultMessage": "Mobile apps",
"id": "navigation_bar.apps" "id": "navigation_bar.apps"
@ -3529,10 +3533,6 @@
"defaultMessage": "Lists", "defaultMessage": "Lists",
"id": "navigation_bar.lists" "id": "navigation_bar.lists"
}, },
{
"defaultMessage": "Profile directory",
"id": "getting_started.directory"
},
{ {
"defaultMessage": "Preferences", "defaultMessage": "Preferences",
"id": "navigation_bar.preferences" "id": "navigation_bar.preferences"

View File

@ -18,12 +18,12 @@
"account.followers": "Ακόλουθοι", "account.followers": "Ακόλουθοι",
"account.followers.empty": "Κανείς δεν ακολουθεί αυτό τον χρήστη ακόμα.", "account.followers.empty": "Κανείς δεν ακολουθεί αυτό τον χρήστη ακόμα.",
"account.followers_counter": "{count, plural, one {{counter} Ακόλουθος} other {{counter} Ακόλουθοι}}", "account.followers_counter": "{count, plural, one {{counter} Ακόλουθος} other {{counter} Ακόλουθοι}}",
"account.following": "Following",
"account.following_counter": "{count, plural, other {{counter} Ακολουθεί}}", "account.following_counter": "{count, plural, other {{counter} Ακολουθεί}}",
"account.follows.empty": "Αυτός ο χρήστης δεν ακολουθεί κανέναν ακόμα.", "account.follows.empty": "Αυτός ο χρήστης δεν ακολουθεί κανέναν ακόμα.",
"account.follows_you": "Σε ακολουθεί", "account.follows_you": "Σε ακολουθεί",
"account.hide_reblogs": "Απόκρυψη προωθήσεων από @{name}", "account.hide_reblogs": "Απόκρυψη προωθήσεων από @{name}",
"account.joined": "Μέλος από τις {date}", "account.joined": "Μέλος από τις {date}",
"account.last_status": "Τελευταία δραστηριότητα",
"account.link_verified_on": "Η ιδιοκτησία αυτού του συνδέσμου ελέχθηκε την {date}", "account.link_verified_on": "Η ιδιοκτησία αυτού του συνδέσμου ελέχθηκε την {date}",
"account.locked_info": "Η κατάσταση απορρήτου αυτού του λογαριασμού είναι κλειδωμένη. Ο ιδιοκτήτης επιβεβαιώνει χειροκίνητα ποιος μπορεί να τον ακολουθήσει.", "account.locked_info": "Η κατάσταση απορρήτου αυτού του λογαριασμού είναι κλειδωμένη. Ο ιδιοκτήτης επιβεβαιώνει χειροκίνητα ποιος μπορεί να τον ακολουθήσει.",
"account.media": "Πολυμέσα", "account.media": "Πολυμέσα",
@ -32,7 +32,6 @@
"account.mute": "Σώπασε @{name}", "account.mute": "Σώπασε @{name}",
"account.mute_notifications": "Σώπασε τις ειδοποιήσεις από @{name}", "account.mute_notifications": "Σώπασε τις ειδοποιήσεις από @{name}",
"account.muted": "Αποσιωπημένος/η", "account.muted": "Αποσιωπημένος/η",
"account.never_active": "Ποτέ",
"account.posts": "Τουτ", "account.posts": "Τουτ",
"account.posts_with_replies": "Τουτ και απαντήσεις", "account.posts_with_replies": "Τουτ και απαντήσεις",
"account.report": "Κατάγγειλε @{name}", "account.report": "Κατάγγειλε @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Τουτ} other {{counter} Τουτ}}", "account.statuses_counter": "{count, plural, one {{counter} Τουτ} other {{counter} Τουτ}}",
"account.unblock": "Ξεμπλόκαρε @{name}", "account.unblock": "Ξεμπλόκαρε @{name}",
"account.unblock_domain": "Αποκάλυψε το {domain}", "account.unblock_domain": "Αποκάλυψε το {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "Άνευ προβολής στο προφίλ", "account.unendorse": "Άνευ προβολής στο προφίλ",
"account.unfollow": "Διακοπή παρακολούθησης", "account.unfollow": "Διακοπή παρακολούθησης",
"account.unmute": "Διακοπή αποσιώπησης @{name}", "account.unmute": "Διακοπή αποσιώπησης @{name}",
"account.unmute_notifications": "Διακοπή αποσιώπησης ειδοποιήσεων του/της @{name}", "account.unmute_notifications": "Διακοπή αποσιώπησης ειδοποιήσεων του/της @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Κλικ για να βάλεις σημείωση", "account_note.placeholder": "Κλικ για να βάλεις σημείωση",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "Followers", "account.followers": "Followers",
"account.followers.empty": "No one follows this user yet.", "account.followers.empty": "No one follows this user yet.",
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}", "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.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
"account.follows.empty": "This user doesn't follow anyone yet.", "account.follows.empty": "This user doesn't follow anyone yet.",
"account.follows_you": "Follows you", "account.follows_you": "Follows you",
"account.hide_reblogs": "Hide boosts from @{name}", "account.hide_reblogs": "Hide boosts from @{name}",
"account.joined": "Joined {date}", "account.joined": "Joined {date}",
"account.last_status": "Last active",
"account.link_verified_on": "Ownership of this link was checked on {date}", "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.locked_info": "This account privacy status is set to locked. The owner manually reviews who can follow them.",
"account.media": "Media", "account.media": "Media",
@ -32,7 +32,6 @@
"account.mute": "Mute @{name}", "account.mute": "Mute @{name}",
"account.mute_notifications": "Mute notifications from @{name}", "account.mute_notifications": "Mute notifications from @{name}",
"account.muted": "Muted", "account.muted": "Muted",
"account.never_active": "Never",
"account.posts": "Posts", "account.posts": "Posts",
"account.posts_with_replies": "Posts and replies", "account.posts_with_replies": "Posts and replies",
"account.report": "Report @{name}", "account.report": "Report @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Post} other {{counter} Posts}}", "account.statuses_counter": "{count, plural, one {{counter} Post} other {{counter} Posts}}",
"account.unblock": "Unblock @{name}", "account.unblock": "Unblock @{name}",
"account.unblock_domain": "Unblock domain {domain}", "account.unblock_domain": "Unblock domain {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "Don't feature on profile", "account.unendorse": "Don't feature on profile",
"account.unfollow": "Unfollow", "account.unfollow": "Unfollow",
"account.unmute": "Unmute @{name}", "account.unmute": "Unmute @{name}",
"account.unmute_notifications": "Unmute notifications from @{name}", "account.unmute_notifications": "Unmute notifications from @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Click to add note", "account_note.placeholder": "Click to add note",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "Sekvantoj", "account.followers": "Sekvantoj",
"account.followers.empty": "Ankoraŭ neniu sekvas tiun uzanton.", "account.followers.empty": "Ankoraŭ neniu sekvas tiun uzanton.",
"account.followers_counter": "{count, plural, one{{counter} Sekvanto} other {{counter} Sekvantoj}}", "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.following_counter": "{count, plural, one {{counter} Sekvato} other {{counter} Sekvatoj}}",
"account.follows.empty": "Tiu uzanto ankoraŭ ne sekvas iun.", "account.follows.empty": "Tiu uzanto ankoraŭ ne sekvas iun.",
"account.follows_you": "Sekvas vin", "account.follows_you": "Sekvas vin",
"account.hide_reblogs": "Kaŝi diskonigojn de @{name}", "account.hide_reblogs": "Kaŝi diskonigojn de @{name}",
"account.joined": "Kuniĝis {date}", "account.joined": "Kuniĝis {date}",
"account.last_status": "Laste aktiva",
"account.link_verified_on": "La posedanto de tiu ligilo estis kontrolita je {date}", "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.locked_info": "La privateco de tiu konto estas elektita kiel fermita. La posedanto povas mane akcepti tiun, kiu povas sekvi rin.",
"account.media": "Amaskomunikiloj", "account.media": "Amaskomunikiloj",
@ -32,7 +32,6 @@
"account.mute": "Silentigi @{name}", "account.mute": "Silentigi @{name}",
"account.mute_notifications": "Silentigi sciigojn de @{name}", "account.mute_notifications": "Silentigi sciigojn de @{name}",
"account.muted": "Silentigita", "account.muted": "Silentigita",
"account.never_active": "Neniam",
"account.posts": "Mesaĝoj", "account.posts": "Mesaĝoj",
"account.posts_with_replies": "Kun respondoj", "account.posts_with_replies": "Kun respondoj",
"account.report": "Signali @{name}", "account.report": "Signali @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Mesaĝo} other {{counter} Mesaĝoj}}", "account.statuses_counter": "{count, plural, one {{counter} Mesaĝo} other {{counter} Mesaĝoj}}",
"account.unblock": "Malbloki @{name}", "account.unblock": "Malbloki @{name}",
"account.unblock_domain": "Malbloki {domain}", "account.unblock_domain": "Malbloki {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "Ne montri en profilo", "account.unendorse": "Ne montri en profilo",
"account.unfollow": "Ne plu sekvi", "account.unfollow": "Ne plu sekvi",
"account.unmute": "Malsilentigi @{name}", "account.unmute": "Malsilentigi @{name}",
"account.unmute_notifications": "Malsilentigi sciigojn de @{name}", "account.unmute_notifications": "Malsilentigi sciigojn de @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Alklaku por aldoni noton", "account_note.placeholder": "Alklaku por aldoni noton",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "Seguidores", "account.followers": "Seguidores",
"account.followers.empty": "Todavía nadie sigue a este usuario.", "account.followers.empty": "Todavía nadie sigue a este usuario.",
"account.followers_counter": "{count, plural, one {{counter} Seguidor} other {{counter} Seguidores}}", "account.followers_counter": "{count, plural, one {{counter} Seguidor} other {{counter} Seguidores}}",
"account.following": "Following",
"account.following_counter": "{count, plural, other {{counter} Siguiendo}}", "account.following_counter": "{count, plural, other {{counter} Siguiendo}}",
"account.follows.empty": "Todavía este usuario no sigue a nadie.", "account.follows.empty": "Todavía este usuario no sigue a nadie.",
"account.follows_you": "Te sigue", "account.follows_you": "Te sigue",
"account.hide_reblogs": "Ocultar adhesiones de @{name}", "account.hide_reblogs": "Ocultar adhesiones de @{name}",
"account.joined": "En este servidor desde {date}", "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.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.locked_info": "Esta cuenta es privada. El propietario manualmente revisa quién puede seguirle.",
"account.media": "Medios", "account.media": "Medios",
@ -32,7 +32,6 @@
"account.mute": "Silenciar a @{name}", "account.mute": "Silenciar a @{name}",
"account.mute_notifications": "Silenciar notificaciones de @{name}", "account.mute_notifications": "Silenciar notificaciones de @{name}",
"account.muted": "Silenciado", "account.muted": "Silenciado",
"account.never_active": "Nunca",
"account.posts": "Mensajes", "account.posts": "Mensajes",
"account.posts_with_replies": "Mensajes y respuestas públicas", "account.posts_with_replies": "Mensajes y respuestas públicas",
"account.report": "Denunciar a @{name}", "account.report": "Denunciar a @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Mensaje} other {{counter} Mensajes}}", "account.statuses_counter": "{count, plural, one {{counter} Mensaje} other {{counter} Mensajes}}",
"account.unblock": "Desbloquear a @{name}", "account.unblock": "Desbloquear a @{name}",
"account.unblock_domain": "Desbloquear dominio {domain}", "account.unblock_domain": "Desbloquear dominio {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "No destacar en el perfil", "account.unendorse": "No destacar en el perfil",
"account.unfollow": "Dejar de seguir", "account.unfollow": "Dejar de seguir",
"account.unmute": "Dejar de silenciar a @{name}", "account.unmute": "Dejar de silenciar a @{name}",
"account.unmute_notifications": "Dejar de silenciar las notificaciones de @{name}", "account.unmute_notifications": "Dejar de silenciar las notificaciones de @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Hacé clic par agregar una nota", "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.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", "admin.dashboard.monthly_retention": "Tasa de retención de usuarios por mes, después del registro",

View File

@ -18,12 +18,12 @@
"account.followers": "Seguidores", "account.followers": "Seguidores",
"account.followers.empty": "Todavía nadie sigue a este usuario.", "account.followers.empty": "Todavía nadie sigue a este usuario.",
"account.followers_counter": "{count, plural, one {{counter} Seguidor} other {{counter} Seguidores}}", "account.followers_counter": "{count, plural, one {{counter} Seguidor} other {{counter} Seguidores}}",
"account.following": "Following",
"account.following_counter": "{count, plural, other {{counter} Siguiendo}}", "account.following_counter": "{count, plural, other {{counter} Siguiendo}}",
"account.follows.empty": "Este usuario todavía no sigue a nadie.", "account.follows.empty": "Este usuario todavía no sigue a nadie.",
"account.follows_you": "Te sigue", "account.follows_you": "Te sigue",
"account.hide_reblogs": "Ocultar retoots de @{name}", "account.hide_reblogs": "Ocultar retoots de @{name}",
"account.joined": "Se unió el {date}", "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.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.locked_info": "El estado de privacidad de esta cuenta està configurado como bloqueado. El proprietario debe revisar manualmente quien puede seguirle.",
"account.media": "Multimedia", "account.media": "Multimedia",
@ -32,7 +32,6 @@
"account.mute": "Silenciar a @{name}", "account.mute": "Silenciar a @{name}",
"account.mute_notifications": "Silenciar notificaciones de @{name}", "account.mute_notifications": "Silenciar notificaciones de @{name}",
"account.muted": "Silenciado", "account.muted": "Silenciado",
"account.never_active": "Nunca",
"account.posts": "Toots", "account.posts": "Toots",
"account.posts_with_replies": "Toots con respuestas", "account.posts_with_replies": "Toots con respuestas",
"account.report": "Reportar a @{name}", "account.report": "Reportar a @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}", "account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
"account.unblock": "Desbloquear a @{name}", "account.unblock": "Desbloquear a @{name}",
"account.unblock_domain": "Mostrar a {domain}", "account.unblock_domain": "Mostrar a {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "No mostrar en el perfil", "account.unendorse": "No mostrar en el perfil",
"account.unfollow": "Dejar de seguir", "account.unfollow": "Dejar de seguir",
"account.unmute": "Dejar de silenciar a @{name}", "account.unmute": "Dejar de silenciar a @{name}",
"account.unmute_notifications": "Dejar de silenciar las notificaciones de @{name}", "account.unmute_notifications": "Dejar de silenciar las notificaciones de @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Clic para añadir nota", "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.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", "admin.dashboard.monthly_retention": "Tasa de retención de usuarios por mes después del registro",

View File

@ -18,12 +18,12 @@
"account.followers": "Seguidores", "account.followers": "Seguidores",
"account.followers.empty": "Todavía nadie sigue a este usuario.", "account.followers.empty": "Todavía nadie sigue a este usuario.",
"account.followers_counter": "{count, plural, one {{counter} Seguidor} other {{counter} Seguidores}}", "account.followers_counter": "{count, plural, one {{counter} Seguidor} other {{counter} Seguidores}}",
"account.following": "Following",
"account.following_counter": "{count, plural, other {{counter} Siguiendo}}", "account.following_counter": "{count, plural, other {{counter} Siguiendo}}",
"account.follows.empty": "Este usuario todavía no sigue a nadie.", "account.follows.empty": "Este usuario todavía no sigue a nadie.",
"account.follows_you": "Te sigue", "account.follows_you": "Te sigue",
"account.hide_reblogs": "Ocultar retoots de @{name}", "account.hide_reblogs": "Ocultar retoots de @{name}",
"account.joined": "Se unió el {date}", "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.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.locked_info": "El estado de privacidad de esta cuenta està configurado como bloqueado. El proprietario debe revisar manualmente quien puede seguirle.",
"account.media": "Multimedia", "account.media": "Multimedia",
@ -32,7 +32,6 @@
"account.mute": "Silenciar a @{name}", "account.mute": "Silenciar a @{name}",
"account.mute_notifications": "Silenciar notificaciones de @{name}", "account.mute_notifications": "Silenciar notificaciones de @{name}",
"account.muted": "Silenciado", "account.muted": "Silenciado",
"account.never_active": "Nunca",
"account.posts": "Publicaciones", "account.posts": "Publicaciones",
"account.posts_with_replies": "Publicaciones y respuestas", "account.posts_with_replies": "Publicaciones y respuestas",
"account.report": "Reportar a @{name}", "account.report": "Reportar a @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Publicación} other {{counter} Publicaciones}}", "account.statuses_counter": "{count, plural, one {{counter} Publicación} other {{counter} Publicaciones}}",
"account.unblock": "Desbloquear a @{name}", "account.unblock": "Desbloquear a @{name}",
"account.unblock_domain": "Mostrar a {domain}", "account.unblock_domain": "Mostrar a {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "No mostrar en el perfil", "account.unendorse": "No mostrar en el perfil",
"account.unfollow": "Dejar de seguir", "account.unfollow": "Dejar de seguir",
"account.unmute": "Dejar de silenciar a @{name}", "account.unmute": "Dejar de silenciar a @{name}",
"account.unmute_notifications": "Dejar de silenciar las notificaciones de @{name}", "account.unmute_notifications": "Dejar de silenciar las notificaciones de @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Clic para añadir nota", "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.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", "admin.dashboard.monthly_retention": "Tasa de retención de usuarios por mes después del registro",

View File

@ -18,12 +18,12 @@
"account.followers": "Jälgijad", "account.followers": "Jälgijad",
"account.followers.empty": "Keegi ei jälgi seda kasutajat veel.", "account.followers.empty": "Keegi ei jälgi seda kasutajat veel.",
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}", "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.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
"account.follows.empty": "See kasutaja ei jälgi veel kedagi.", "account.follows.empty": "See kasutaja ei jälgi veel kedagi.",
"account.follows_you": "Jälgib Teid", "account.follows_you": "Jälgib Teid",
"account.hide_reblogs": "Peida upitused kasutajalt @{name}", "account.hide_reblogs": "Peida upitused kasutajalt @{name}",
"account.joined": "Joined {date}", "account.joined": "Joined {date}",
"account.last_status": "Viimati aktiivne",
"account.link_verified_on": "Selle lingi autorsust kontrolliti {date}", "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.locked_info": "Selle konto privaatsussätteks on lukustatud. Omanik vaatab manuaalselt üle, kes teda jägida saab.",
"account.media": "Meedia", "account.media": "Meedia",
@ -32,7 +32,6 @@
"account.mute": "Vaigista @{name}", "account.mute": "Vaigista @{name}",
"account.mute_notifications": "Vaigista teated kasutajalt @{name}", "account.mute_notifications": "Vaigista teated kasutajalt @{name}",
"account.muted": "Vaigistatud", "account.muted": "Vaigistatud",
"account.never_active": "Mitte kunagi",
"account.posts": "Tuututused", "account.posts": "Tuututused",
"account.posts_with_replies": "Tuututused ja vastused", "account.posts_with_replies": "Tuututused ja vastused",
"account.report": "Raporteeri @{name}", "account.report": "Raporteeri @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}", "account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
"account.unblock": "Eemalda blokeering @{name}", "account.unblock": "Eemalda blokeering @{name}",
"account.unblock_domain": "Tee {domain} nähtavaks", "account.unblock_domain": "Tee {domain} nähtavaks",
"account.unblock_short": "Unblock",
"account.unendorse": "Ära kuva profiilil", "account.unendorse": "Ära kuva profiilil",
"account.unfollow": "Ära jälgi", "account.unfollow": "Ära jälgi",
"account.unmute": "Ära vaigista @{name}", "account.unmute": "Ära vaigista @{name}",
"account.unmute_notifications": "Ära vaigista teateid kasutajalt @{name}", "account.unmute_notifications": "Ära vaigista teateid kasutajalt @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Click to add a note", "account_note.placeholder": "Click to add a note",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "Jarraitzaileak", "account.followers": "Jarraitzaileak",
"account.followers.empty": "Ez du inork erabiltzaile hau jarraitzen oraindik.", "account.followers.empty": "Ez du inork erabiltzaile hau jarraitzen oraindik.",
"account.followers_counter": "{count, plural, one {Jarraitzaile {counter}} other {{counter} jarraitzaile}}", "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.following_counter": "{count, plural, one {{counter} jarraitzen} other {{counter} jarraitzen}}",
"account.follows.empty": "Erabiltzaile honek ez du inor jarraitzen oraindik.", "account.follows.empty": "Erabiltzaile honek ez du inor jarraitzen oraindik.",
"account.follows_you": "Jarraitzen dizu", "account.follows_you": "Jarraitzen dizu",
"account.hide_reblogs": "Ezkutatu @{name}(r)en bultzadak", "account.hide_reblogs": "Ezkutatu @{name}(r)en bultzadak",
"account.joined": "{date}(e)an elkartua", "account.joined": "{date}(e)an elkartua",
"account.last_status": "Azkenekoz aktiboa",
"account.link_verified_on": "Esteka honen jabetzaren egiaztaketa data: {date}", "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.locked_info": "Kontu honen pribatutasun egoera blokeatuta gisa ezarri da. Jabeak eskuz erabakitzen du nork jarraitu diezaioken.",
"account.media": "Multimedia", "account.media": "Multimedia",
@ -32,7 +32,6 @@
"account.mute": "Mututu @{name}", "account.mute": "Mututu @{name}",
"account.mute_notifications": "Mututu @{name}(r)en jakinarazpenak", "account.mute_notifications": "Mututu @{name}(r)en jakinarazpenak",
"account.muted": "Mutututa", "account.muted": "Mutututa",
"account.never_active": "Inoiz ez",
"account.posts": "Bidalketa", "account.posts": "Bidalketa",
"account.posts_with_replies": "Bidalketak eta erantzunak", "account.posts_with_replies": "Bidalketak eta erantzunak",
"account.report": "Salatu @{name}", "account.report": "Salatu @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {Bidalketa {counter}} other {{counter} bidalketa}}", "account.statuses_counter": "{count, plural, one {Bidalketa {counter}} other {{counter} bidalketa}}",
"account.unblock": "Desblokeatu @{name}", "account.unblock": "Desblokeatu @{name}",
"account.unblock_domain": "Berriz erakutsi {domain}", "account.unblock_domain": "Berriz erakutsi {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "Ez nabarmendu profilean", "account.unendorse": "Ez nabarmendu profilean",
"account.unfollow": "Utzi jarraitzeari", "account.unfollow": "Utzi jarraitzeari",
"account.unmute": "Desmututu @{name}", "account.unmute": "Desmututu @{name}",
"account.unmute_notifications": "Desmututu @{name}(r)en jakinarazpenak", "account.unmute_notifications": "Desmututu @{name}(r)en jakinarazpenak",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Click to add a note", "account_note.placeholder": "Click to add a note",
"admin.dashboard.daily_retention": "Erabiltzaile atxikitze-tasa izena eman ondorengo eguneko", "admin.dashboard.daily_retention": "Erabiltzaile atxikitze-tasa izena eman ondorengo eguneko",
"admin.dashboard.monthly_retention": "Erabiltzaile atxikitze-tasa izena eman ondorengo hilabeteko", "admin.dashboard.monthly_retention": "Erabiltzaile atxikitze-tasa izena eman ondorengo hilabeteko",

View File

@ -18,12 +18,12 @@
"account.followers": "پی‌گیرندگان", "account.followers": "پی‌گیرندگان",
"account.followers.empty": "هنوز کسی این کاربر را پی‌گیری نمی‌کند.", "account.followers.empty": "هنوز کسی این کاربر را پی‌گیری نمی‌کند.",
"account.followers_counter": "{count, plural, one {{counter} پی‌گیرنده} other {{counter} پی‌گیرنده}}", "account.followers_counter": "{count, plural, one {{counter} پی‌گیرنده} other {{counter} پی‌گیرنده}}",
"account.following": "Following",
"account.following_counter": "{count, plural, one {{counter} پی‌گرفته} other {{counter} پی‌گرفته}}", "account.following_counter": "{count, plural, one {{counter} پی‌گرفته} other {{counter} پی‌گرفته}}",
"account.follows.empty": "این کاربر هنوز پی‌گیر کسی نیست.", "account.follows.empty": "این کاربر هنوز پی‌گیر کسی نیست.",
"account.follows_you": "پی می‌گیردتان", "account.follows_you": "پی می‌گیردتان",
"account.hide_reblogs": "نهفتن تقویت‌های @{name}", "account.hide_reblogs": "نهفتن تقویت‌های @{name}",
"account.joined": "پیوسته از {date}", "account.joined": "پیوسته از {date}",
"account.last_status": "آخرین فعّالیت",
"account.link_verified_on": "مالکیت این پیوند در {date} بررسی شد", "account.link_verified_on": "مالکیت این پیوند در {date} بررسی شد",
"account.locked_info": "این حساب خصوصی است. صاحبش تصمیم می‌گیرد که چه کسی پی‌گیرش باشد.", "account.locked_info": "این حساب خصوصی است. صاحبش تصمیم می‌گیرد که چه کسی پی‌گیرش باشد.",
"account.media": "رسانه", "account.media": "رسانه",
@ -32,7 +32,6 @@
"account.mute": "خموشاندن @{name}", "account.mute": "خموشاندن @{name}",
"account.mute_notifications": "خموشاندن آگاهی‌ها از @{name}", "account.mute_notifications": "خموشاندن آگاهی‌ها از @{name}",
"account.muted": "خموش", "account.muted": "خموش",
"account.never_active": "هرگز",
"account.posts": "فرسته", "account.posts": "فرسته",
"account.posts_with_replies": "فرسته‌ها و پاسخ‌ها", "account.posts_with_replies": "فرسته‌ها و پاسخ‌ها",
"account.report": "گزارش @{name}", "account.report": "گزارش @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} فرسته} other {{counter} فرسته}}", "account.statuses_counter": "{count, plural, one {{counter} فرسته} other {{counter} فرسته}}",
"account.unblock": "رفع مسدودیت @{name}", "account.unblock": "رفع مسدودیت @{name}",
"account.unblock_domain": "رفع مسدودیت دامنهٔ {domain}", "account.unblock_domain": "رفع مسدودیت دامنهٔ {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "معرّفی نکردن در نمایه", "account.unendorse": "معرّفی نکردن در نمایه",
"account.unfollow": "ناپی‌گیری", "account.unfollow": "ناپی‌گیری",
"account.unmute": "ناخموشی @{name}", "account.unmute": "ناخموشی @{name}",
"account.unmute_notifications": "ناخموشی آگاهی‌ها از @{name}", "account.unmute_notifications": "ناخموشی آگاهی‌ها از @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "برای افزودن یادداشت کلیک کنید", "account_note.placeholder": "برای افزودن یادداشت کلیک کنید",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "Seuraajat", "account.followers": "Seuraajat",
"account.followers.empty": "Kukaan ei seuraa tätä käyttäjää vielä.", "account.followers.empty": "Kukaan ei seuraa tätä käyttäjää vielä.",
"account.followers_counter": "{count, plural, one {{counter} seuraaja} other {{counter} seuraajat}}", "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.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.empty": "Tämä käyttäjä ei vielä seuraa ketään.",
"account.follows_you": "Seuraa sinua", "account.follows_you": "Seuraa sinua",
"account.hide_reblogs": "Piilota buustaukset käyttäjältä @{name}", "account.hide_reblogs": "Piilota buustaukset käyttäjältä @{name}",
"account.joined": "Liittynyt {date}", "account.joined": "Liittynyt {date}",
"account.last_status": "Aktiivinen viimeksi",
"account.link_verified_on": "Tämän linkin omistaja tarkistettiin {date}", "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.locked_info": "Tämän tilin yksityisyyden tila on asetettu lukituksi. Omistaja arvioi manuaalisesti, kuka voi seurata niitä.",
"account.media": "Media", "account.media": "Media",
@ -32,7 +32,6 @@
"account.mute": "Mykistä @{name}", "account.mute": "Mykistä @{name}",
"account.mute_notifications": "Mykistä ilmoitukset käyttäjältä @{name}", "account.mute_notifications": "Mykistä ilmoitukset käyttäjältä @{name}",
"account.muted": "Mykistetty", "account.muted": "Mykistetty",
"account.never_active": "Ei koskaan",
"account.posts": "Viestit", "account.posts": "Viestit",
"account.posts_with_replies": "Viestit ja vastaukset", "account.posts_with_replies": "Viestit ja vastaukset",
"account.report": "Raportoi @{name}", "account.report": "Raportoi @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}", "account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
"account.unblock": "Salli @{name}", "account.unblock": "Salli @{name}",
"account.unblock_domain": "Salli {domain}", "account.unblock_domain": "Salli {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "Poista suosittelu profiilistasi", "account.unendorse": "Poista suosittelu profiilistasi",
"account.unfollow": "Lopeta seuraaminen", "account.unfollow": "Lopeta seuraaminen",
"account.unmute": "Poista käyttäjän @{name} mykistys", "account.unmute": "Poista käyttäjän @{name} mykistys",
"account.unmute_notifications": "Poista mykistys käyttäjän @{name} ilmoituksilta", "account.unmute_notifications": "Poista mykistys käyttäjän @{name} ilmoituksilta",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Lisää muistiinpano napsauttamalla", "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.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ä", "admin.dashboard.monthly_retention": "Käyttäjän säilyminen rekisteröitymisen jälkeiseen kuukauteen mennessä",

View File

@ -18,12 +18,12 @@
"account.followers": "Abonnés", "account.followers": "Abonnés",
"account.followers.empty": "Personne ne suit cet·te utilisateur·rice pour linstant.", "account.followers.empty": "Personne ne suit cet·te utilisateur·rice pour linstant.",
"account.followers_counter": "{count, plural, one {{counter} Abonné·e} other {{counter} Abonné·e·s}}", "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.following_counter": "{count, plural, other {{counter} Abonnements}}",
"account.follows.empty": "Cet·te utilisateur·rice ne suit personne pour linstant.", "account.follows.empty": "Cet·te utilisateur·rice ne suit personne pour linstant.",
"account.follows_you": "Vous suit", "account.follows_you": "Vous suit",
"account.hide_reblogs": "Masquer les partages de @{name}", "account.hide_reblogs": "Masquer les partages de @{name}",
"account.joined": "Ici depuis {date}", "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.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.locked_info": "Ce compte est privé. Son ou sa propriétaire approuve manuellement qui peut le suivre.",
"account.media": "Médias", "account.media": "Médias",
@ -32,7 +32,6 @@
"account.mute": "Masquer @{name}", "account.mute": "Masquer @{name}",
"account.mute_notifications": "Ignorer les notifications de @{name}", "account.mute_notifications": "Ignorer les notifications de @{name}",
"account.muted": "Masqué·e", "account.muted": "Masqué·e",
"account.never_active": "Jamais",
"account.posts": "Messages", "account.posts": "Messages",
"account.posts_with_replies": "Messages et réponses", "account.posts_with_replies": "Messages et réponses",
"account.report": "Signaler @{name}", "account.report": "Signaler @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Message} other {{counter} Messages}}", "account.statuses_counter": "{count, plural, one {{counter} Message} other {{counter} Messages}}",
"account.unblock": "Débloquer @{name}", "account.unblock": "Débloquer @{name}",
"account.unblock_domain": "Débloquer le domaine {domain}", "account.unblock_domain": "Débloquer le domaine {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "Ne plus recommander sur le profil", "account.unendorse": "Ne plus recommander sur le profil",
"account.unfollow": "Ne plus suivre", "account.unfollow": "Ne plus suivre",
"account.unmute": "Ne plus masquer @{name}", "account.unmute": "Ne plus masquer @{name}",
"account.unmute_notifications": "Ne plus masquer les notifications de @{name}", "account.unmute_notifications": "Ne plus masquer les notifications de @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Cliquez pour ajouter une note", "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.daily_retention": "Taux de maintien des utilisateur·rice·s par jour après inscription",
"admin.dashboard.monthly_retention": "Brugerfastholdelsesrate efter måned efter tilmelding", "admin.dashboard.monthly_retention": "Brugerfastholdelsesrate efter måned efter tilmelding",

View File

@ -18,12 +18,12 @@
"account.followers": "Followers", "account.followers": "Followers",
"account.followers.empty": "No one follows this user yet.", "account.followers.empty": "No one follows this user yet.",
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}", "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.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
"account.follows.empty": "This user doesn't follow anyone yet.", "account.follows.empty": "This user doesn't follow anyone yet.",
"account.follows_you": "Follows you", "account.follows_you": "Follows you",
"account.hide_reblogs": "Hide boosts from @{name}", "account.hide_reblogs": "Hide boosts from @{name}",
"account.joined": "Joined {date}", "account.joined": "Joined {date}",
"account.last_status": "Last active",
"account.link_verified_on": "Ownership of this link was checked on {date}", "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.locked_info": "This account privacy status is set to locked. The owner manually reviews who can follow them.",
"account.media": "Media", "account.media": "Media",
@ -32,7 +32,6 @@
"account.mute": "Mute @{name}", "account.mute": "Mute @{name}",
"account.mute_notifications": "Mute notifications from @{name}", "account.mute_notifications": "Mute notifications from @{name}",
"account.muted": "Muted", "account.muted": "Muted",
"account.never_active": "Never",
"account.posts": "Toots", "account.posts": "Toots",
"account.posts_with_replies": "Toots and replies", "account.posts_with_replies": "Toots and replies",
"account.report": "Report @{name}", "account.report": "Report @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}", "account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
"account.unblock": "Unblock @{name}", "account.unblock": "Unblock @{name}",
"account.unblock_domain": "Unhide {domain}", "account.unblock_domain": "Unhide {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "Don't feature on profile", "account.unendorse": "Don't feature on profile",
"account.unfollow": "Unfollow", "account.unfollow": "Unfollow",
"account.unmute": "Unmute @{name}", "account.unmute": "Unmute @{name}",
"account.unmute_notifications": "Unmute notifications from @{name}", "account.unmute_notifications": "Unmute notifications from @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "No comment provided", "account_note.placeholder": "No comment provided",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "Luchd-leantainn", "account.followers": "Luchd-leantainn",
"account.followers.empty": "Chan eil neach sam bith a leantainn air a chleachdaiche seo fhathast.", "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.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.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.empty": "Chan eil an cleachdaiche seo a leantainn air neach sam bith fhathast.",
"account.follows_you": "Gad leantainn", "account.follows_you": "Gad leantainn",
"account.hide_reblogs": "Falaich na brosnachaidhean o @{name}", "account.hide_reblogs": "Falaich na brosnachaidhean o @{name}",
"account.joined": "Air ballrachd fhaighinn {date}", "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.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ò dhfhaodas leantainn orra.", "account.locked_info": "Tha prìobhaideachd ghlaiste aig a chunntais seo. Nì an sealbhadair lèirmheas a làimh air cò dhfhaodas leantainn orra.",
"account.media": "Meadhanan", "account.media": "Meadhanan",
@ -32,7 +32,6 @@
"account.mute": "Mùch @{name}", "account.mute": "Mùch @{name}",
"account.mute_notifications": "Mùch na brathan o @{name}", "account.mute_notifications": "Mùch na brathan o @{name}",
"account.muted": "Ga mhùchadh", "account.muted": "Ga mhùchadh",
"account.never_active": "Chan ann idir",
"account.posts": "Postaichean", "account.posts": "Postaichean",
"account.posts_with_replies": "Postaichean s freagairtean", "account.posts_with_replies": "Postaichean s freagairtean",
"account.report": "Dèan gearan mu @{name}", "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.statuses_counter": "{count, plural, one {{counter} phost} two {{counter} phost} few {{counter} postaichean} other {{counter} post}}",
"account.unblock": "Dì-bhac @{name}", "account.unblock": "Dì-bhac @{name}",
"account.unblock_domain": "Dì-bhac an àrainn {domain}", "account.unblock_domain": "Dì-bhac an àrainn {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "Na brosnaich air a phròifil", "account.unendorse": "Na brosnaich air a phròifil",
"account.unfollow": "Na lean tuilleadh", "account.unfollow": "Na lean tuilleadh",
"account.unmute": "Dì-mhùch @{name}", "account.unmute": "Dì-mhùch @{name}",
"account.unmute_notifications": "Dì-mhùch na brathan o @{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", "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.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", "admin.dashboard.monthly_retention": "Reat glèidheadh nan cleachdaichean às dèidh an clàradh a-rèir mìos",

View File

@ -18,12 +18,12 @@
"account.followers": "Seguidoras", "account.followers": "Seguidoras",
"account.followers.empty": "Aínda ninguén segue esta usuaria.", "account.followers.empty": "Aínda ninguén segue esta usuaria.",
"account.followers_counter": "{count, plural, one {{counter} Seguidora} other {{counter} Seguidoras}}", "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.following_counter": "{count, plural, one {{counter} Seguindo} other {{counter} Seguindo}}",
"account.follows.empty": "Esta usuaria aínda non segue a ninguén.", "account.follows.empty": "Esta usuaria aínda non segue a ninguén.",
"account.follows_you": "Séguete", "account.follows_you": "Séguete",
"account.hide_reblogs": "Agochar repeticións de @{name}", "account.hide_reblogs": "Agochar repeticións de @{name}",
"account.joined": "Uníuse {date}", "account.joined": "Uníuse {date}",
"account.last_status": "Última actividade",
"account.link_verified_on": "A propiedade desta ligazón foi verificada o {date}", "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.locked_info": "Esta é unha conta privada. A propietaria revisa de xeito manual quen pode seguila.",
"account.media": "Multimedia", "account.media": "Multimedia",
@ -32,7 +32,6 @@
"account.mute": "Acalar @{name}", "account.mute": "Acalar @{name}",
"account.mute_notifications": "Acalar as notificacións de @{name}", "account.mute_notifications": "Acalar as notificacións de @{name}",
"account.muted": "Acalada", "account.muted": "Acalada",
"account.never_active": "Nunca",
"account.posts": "Publicacións", "account.posts": "Publicacións",
"account.posts_with_replies": "Publicacións e respostas", "account.posts_with_replies": "Publicacións e respostas",
"account.report": "Informar sobre @{name}", "account.report": "Informar sobre @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Publicación} other {{counter} Publicacións}}", "account.statuses_counter": "{count, plural, one {{counter} Publicación} other {{counter} Publicacións}}",
"account.unblock": "Desbloquear @{name}", "account.unblock": "Desbloquear @{name}",
"account.unblock_domain": "Amosar {domain}", "account.unblock_domain": "Amosar {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "Non amosar no perfil", "account.unendorse": "Non amosar no perfil",
"account.unfollow": "Deixar de seguir", "account.unfollow": "Deixar de seguir",
"account.unmute": "Deixar de silenciar a @{name}", "account.unmute": "Deixar de silenciar a @{name}",
"account.unmute_notifications": "Deixar de silenciar as notificacións de @{name}", "account.unmute_notifications": "Deixar de silenciar as notificacións de @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Preme para engadir nota", "account_note.placeholder": "Preme para engadir nota",
"admin.dashboard.daily_retention": "Ratio de retención de usuarias após rexistrarse", "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", "admin.dashboard.monthly_retention": "Ratio de retención de usuarias após un mes do rexistro",

View File

@ -18,12 +18,12 @@
"account.followers": "עוקבים", "account.followers": "עוקבים",
"account.followers.empty": "אף אחד לא עוקב אחר המשתמש הזה עדיין.", "account.followers.empty": "אף אחד לא עוקב אחר המשתמש הזה עדיין.",
"account.followers_counter": "{count, plural,one {עוקב אחד} other {{counter} עוקבים}}", "account.followers_counter": "{count, plural,one {עוקב אחד} other {{counter} עוקבים}}",
"account.following": "Following",
"account.following_counter": "{count, plural,one {עוקב אחרי {counter}}other {עוקב אחרי {counter}}}", "account.following_counter": "{count, plural,one {עוקב אחרי {counter}}other {עוקב אחרי {counter}}}",
"account.follows.empty": "משתמש זה לא עוקב אחר אף אחד עדיין.", "account.follows.empty": "משתמש זה לא עוקב אחר אף אחד עדיין.",
"account.follows_you": "במעקב אחריך", "account.follows_you": "במעקב אחריך",
"account.hide_reblogs": "להסתיר הידהודים מאת @{name}", "account.hide_reblogs": "להסתיר הידהודים מאת @{name}",
"account.joined": "הצטרפו ב{date}", "account.joined": "הצטרפו ב{date}",
"account.last_status": "פעילות אחרונה",
"account.link_verified_on": "בעלות על הקישור הזה נבדקה לאחרונה ב{date}", "account.link_verified_on": "בעלות על הקישור הזה נבדקה לאחרונה ב{date}",
"account.locked_info": "מצב הפרטיות של החשבון הנוכחי הוגדר כנעול. בעל החשבון קובע באופן פרטני מי יכול לעקוב אחריו.", "account.locked_info": "מצב הפרטיות של החשבון הנוכחי הוגדר כנעול. בעל החשבון קובע באופן פרטני מי יכול לעקוב אחריו.",
"account.media": "מדיה", "account.media": "מדיה",
@ -32,7 +32,6 @@
"account.mute": "להשתיק את @{name}", "account.mute": "להשתיק את @{name}",
"account.mute_notifications": "להסתיר התראות מאת @{name}", "account.mute_notifications": "להסתיר התראות מאת @{name}",
"account.muted": "מושתק", "account.muted": "מושתק",
"account.never_active": "אף פעם",
"account.posts": "הודעות", "account.posts": "הודעות",
"account.posts_with_replies": "Toots with replies", "account.posts_with_replies": "Toots with replies",
"account.report": "לדווח על @{name}", "account.report": "לדווח על @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}", "account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
"account.unblock": "הסרת חסימה מעל @{name}", "account.unblock": "הסרת חסימה מעל @{name}",
"account.unblock_domain": "הסר חסימה מקהילת {domain}", "account.unblock_domain": "הסר חסימה מקהילת {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "לא להציג בפרופיל", "account.unendorse": "לא להציג בפרופיל",
"account.unfollow": "הפסקת מעקב", "account.unfollow": "הפסקת מעקב",
"account.unmute": "הפסקת השתקת @{name}", "account.unmute": "הפסקת השתקת @{name}",
"account.unmute_notifications": "להפסיק הסתרת הודעות מעם @{name}", "account.unmute_notifications": "להפסיק הסתרת הודעות מעם @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "ללא הערה", "account_note.placeholder": "ללא הערה",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "फॉलोवर", "account.followers": "फॉलोवर",
"account.followers.empty": "कोई भी इस यूज़र् को फ़ॉलो नहीं करता है", "account.followers.empty": "कोई भी इस यूज़र् को फ़ॉलो नहीं करता है",
"account.followers_counter": "{count, plural, one {{counter} अनुगामी} other {{counter} समर्थक}}", "account.followers_counter": "{count, plural, one {{counter} अनुगामी} other {{counter} समर्थक}}",
"account.following": "Following",
"account.following_counter": "{count, plural, one {{counter} निम्नलिखित} other {{counter} निम्नलिखित}}", "account.following_counter": "{count, plural, one {{counter} निम्नलिखित} other {{counter} निम्नलिखित}}",
"account.follows.empty": "यह यूज़र् अभी तक किसी को फॉलो नहीं करता है।", "account.follows.empty": "यह यूज़र् अभी तक किसी को फॉलो नहीं करता है।",
"account.follows_you": "आपको फॉलो करता है", "account.follows_you": "आपको फॉलो करता है",
"account.hide_reblogs": "@{name} के बूस्ट छुपाएं", "account.hide_reblogs": "@{name} के बूस्ट छुपाएं",
"account.joined": "Joined {date}", "account.joined": "Joined {date}",
"account.last_status": "अंतिम सक्रिय",
"account.link_verified_on": "इस लिंक का स्वामित्व {date} को चेक किया गया था", "account.link_verified_on": "इस लिंक का स्वामित्व {date} को चेक किया गया था",
"account.locked_info": "यह खाता गोपनीयता स्थिति लॉक करने के लिए सेट है। मालिक मैन्युअल रूप से समीक्षा करता है कि कौन उनको फॉलो कर सकता है।", "account.locked_info": "यह खाता गोपनीयता स्थिति लॉक करने के लिए सेट है। मालिक मैन्युअल रूप से समीक्षा करता है कि कौन उनको फॉलो कर सकता है।",
"account.media": "मीडिया", "account.media": "मीडिया",
@ -32,7 +32,6 @@
"account.mute": "म्यूट @{name}", "account.mute": "म्यूट @{name}",
"account.mute_notifications": "@{name} के नोटिफिकेशन म्यूट करे", "account.mute_notifications": "@{name} के नोटिफिकेशन म्यूट करे",
"account.muted": "म्यूट है", "account.muted": "म्यूट है",
"account.never_active": "कभी नहीं दिखे",
"account.posts": "टूट्स", "account.posts": "टूट्स",
"account.posts_with_replies": "टूट्स एवं जवाब", "account.posts_with_replies": "टूट्स एवं जवाब",
"account.report": "रिपोर्ट @{name}", "account.report": "रिपोर्ट @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} भोंपू} other {{counter} भोंपू}}", "account.statuses_counter": "{count, plural, one {{counter} भोंपू} other {{counter} भोंपू}}",
"account.unblock": "@{name} को अनब्लॉक करें", "account.unblock": "@{name} को अनब्लॉक करें",
"account.unblock_domain": "{domain} दिखाए", "account.unblock_domain": "{domain} दिखाए",
"account.unblock_short": "Unblock",
"account.unendorse": "प्रोफ़ाइल पर न दिखाए", "account.unendorse": "प्रोफ़ाइल पर न दिखाए",
"account.unfollow": "अनफॉलो करें", "account.unfollow": "अनफॉलो करें",
"account.unmute": "अनम्यूट @{name}", "account.unmute": "अनम्यूट @{name}",
"account.unmute_notifications": "@{name} के नोटिफिकेशन अनम्यूट करे", "account.unmute_notifications": "@{name} के नोटिफिकेशन अनम्यूट करे",
"account.unmute_short": "Unmute",
"account_note.placeholder": "नोट्स जोड़ने के लिए क्लिक करें", "account_note.placeholder": "नोट्स जोड़ने के लिए क्लिक करें",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "Pratitelji", "account.followers": "Pratitelji",
"account.followers.empty": "Nitko još ne prati korisnika/cu.", "account.followers.empty": "Nitko još ne prati korisnika/cu.",
"account.followers_counter": "{count, plural, one {{counter} pratitelj} other {{counter} pratitelja}}", "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.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.empty": "Korisnik/ca još ne prati nikoga.",
"account.follows_you": "Prati te", "account.follows_you": "Prati te",
"account.hide_reblogs": "Sakrij boostove od @{name}", "account.hide_reblogs": "Sakrij boostove od @{name}",
"account.joined": "Pridružio se {date}", "account.joined": "Pridružio se {date}",
"account.last_status": "Posljednja aktivnost",
"account.link_verified_on": "Vlasništvo ove poveznice provjereno je {date}", "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.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", "account.media": "Medijski sadržaj",
@ -32,7 +32,6 @@
"account.mute": "Utišaj @{name}", "account.mute": "Utišaj @{name}",
"account.mute_notifications": "Utišaj obavijesti od @{name}", "account.mute_notifications": "Utišaj obavijesti od @{name}",
"account.muted": "Utišano", "account.muted": "Utišano",
"account.never_active": "Nikad",
"account.posts": "Tootovi", "account.posts": "Tootovi",
"account.posts_with_replies": "Tootovi i odgovori", "account.posts_with_replies": "Tootovi i odgovori",
"account.report": "Prijavi @{name}", "account.report": "Prijavi @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} toot} other {{counter} toota}}", "account.statuses_counter": "{count, plural, one {{counter} toot} other {{counter} toota}}",
"account.unblock": "Deblokiraj @{name}", "account.unblock": "Deblokiraj @{name}",
"account.unblock_domain": "Deblokiraj domenu {domain}", "account.unblock_domain": "Deblokiraj domenu {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "Ne ističi na profilu", "account.unendorse": "Ne ističi na profilu",
"account.unfollow": "Prestani pratiti", "account.unfollow": "Prestani pratiti",
"account.unmute": "Poništi utišavanje @{name}", "account.unmute": "Poništi utišavanje @{name}",
"account.unmute_notifications": "Ne utišavaj obavijesti od @{name}", "account.unmute_notifications": "Ne utišavaj obavijesti od @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Kliknite za dodavanje bilješke", "account_note.placeholder": "Kliknite za dodavanje bilješke",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "Követő", "account.followers": "Követő",
"account.followers.empty": "Ezt a felhasználót még senki sem követi.", "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.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.following_counter": "{count, plural, other {{counter} Követett}}",
"account.follows.empty": "Ez a felhasználó még senkit sem követ.", "account.follows.empty": "Ez a felhasználó még senkit sem követ.",
"account.follows_you": "Követ téged", "account.follows_you": "Követ téged",
"account.hide_reblogs": "@{name} megtolásainak elrejtése", "account.hide_reblogs": "@{name} megtolásainak elrejtése",
"account.joined": "Csatlakozott {date}", "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.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.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", "account.media": "Média",
@ -32,7 +32,6 @@
"account.mute": "@{name} némítása", "account.mute": "@{name} némítása",
"account.mute_notifications": "@{name} értesítéseinek némítása", "account.mute_notifications": "@{name} értesítéseinek némítása",
"account.muted": "Némítva", "account.muted": "Némítva",
"account.never_active": "Soha",
"account.posts": "Bejegyzések", "account.posts": "Bejegyzések",
"account.posts_with_replies": "Bejegyzések és válaszok", "account.posts_with_replies": "Bejegyzések és válaszok",
"account.report": "@{name} jelentése", "account.report": "@{name} jelentése",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Bejegyzés} other {{counter} Bejegyzés}}", "account.statuses_counter": "{count, plural, one {{counter} Bejegyzés} other {{counter} Bejegyzés}}",
"account.unblock": "@{name} letiltásának feloldása", "account.unblock": "@{name} letiltásának feloldása",
"account.unblock_domain": "{domain} elrejtésének feloldása", "account.unblock_domain": "{domain} elrejtésének feloldása",
"account.unblock_short": "Unblock",
"account.unendorse": "Ne jelenjen meg a profilodon", "account.unendorse": "Ne jelenjen meg a profilodon",
"account.unfollow": "Követés megszüntetése", "account.unfollow": "Követés megszüntetése",
"account.unmute": "@{name} némítás feloldása", "account.unmute": "@{name} némítás feloldása",
"account.unmute_notifications": "@{name} némított értesítéseinek 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", "account_note.placeholder": "Klikk a feljegyzéshez",
"admin.dashboard.daily_retention": "Napi regisztráció utáni felhasználómegtartási arány", "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", "admin.dashboard.monthly_retention": "Havi regisztráció utáni felhasználómegtartási arány",

View File

@ -18,12 +18,12 @@
"account.followers": "Հետեւողներ", "account.followers": "Հետեւողներ",
"account.followers.empty": "Այս օգտատիրոջը դեռ ոչ մէկ չի հետեւում։", "account.followers.empty": "Այս օգտատիրոջը դեռ ոչ մէկ չի հետեւում։",
"account.followers_counter": "{count, plural, one {{counter} Հետեւորդ} other {{counter} Հետեւորդ}}", "account.followers_counter": "{count, plural, one {{counter} Հետեւորդ} other {{counter} Հետեւորդ}}",
"account.following": "Following",
"account.following_counter": "{count, plural, one {{counter} հետեւած} other {{counter} հետեւած}}", "account.following_counter": "{count, plural, one {{counter} հետեւած} other {{counter} հետեւած}}",
"account.follows.empty": "Այս օգտատէրը դեռ ոչ մէկի չի հետեւում։", "account.follows.empty": "Այս օգտատէրը դեռ ոչ մէկի չի հետեւում։",
"account.follows_you": "Հետեւում է քեզ", "account.follows_you": "Հետեւում է քեզ",
"account.hide_reblogs": "Թաքցնել @{name}֊ի տարածածները", "account.hide_reblogs": "Թաքցնել @{name}֊ի տարածածները",
"account.joined": "Միացել է {date}-ից", "account.joined": "Միացել է {date}-ից",
"account.last_status": "Վերջին այցը",
"account.link_verified_on": "Սոյն յղման տիրապետումը ստուգուած է՝ {date}֊ին", "account.link_verified_on": "Սոյն յղման տիրապետումը ստուգուած է՝ {date}֊ին",
"account.locked_info": "Սոյն հաշուի գաղտնիութեան մակարդակը նշուած է որպէս՝ փակ։ Հաշուի տէրն ընտրում է, թէ ով կարող է հետեւել իրեն։", "account.locked_info": "Սոյն հաշուի գաղտնիութեան մակարդակը նշուած է որպէս՝ փակ։ Հաշուի տէրն ընտրում է, թէ ով կարող է հետեւել իրեն։",
"account.media": "Մեդիա", "account.media": "Մեդիա",
@ -32,7 +32,6 @@
"account.mute": "Լռեցնել @{name}֊ին", "account.mute": "Լռեցնել @{name}֊ին",
"account.mute_notifications": "Անջատել ծանուցումները @{name}֊ից", "account.mute_notifications": "Անջատել ծանուցումները @{name}֊ից",
"account.muted": "Լռեցուած", "account.muted": "Լռեցուած",
"account.never_active": "Երբեք",
"account.posts": "Գրառումներ", "account.posts": "Գրառումներ",
"account.posts_with_replies": "Գրառումներ եւ պատասխաններ", "account.posts_with_replies": "Գրառումներ եւ պատասխաններ",
"account.report": "Բողոքել @{name}֊ի մասին", "account.report": "Բողոքել @{name}֊ի մասին",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Գրառում} other {{counter} Գրառումներ}}", "account.statuses_counter": "{count, plural, one {{counter} Գրառում} other {{counter} Գրառումներ}}",
"account.unblock": "Ապաարգելափակել @{name}֊ին", "account.unblock": "Ապաարգելափակել @{name}֊ին",
"account.unblock_domain": "Ցուցադրել {domain} թաքցուած տիրոյթի գրառումները", "account.unblock_domain": "Ցուցադրել {domain} թաքցուած տիրոյթի գրառումները",
"account.unblock_short": "Unblock",
"account.unendorse": "Չցուցադրել անձնական էջում", "account.unendorse": "Չցուցադրել անձնական էջում",
"account.unfollow": "Ապահետեւել", "account.unfollow": "Ապահետեւել",
"account.unmute": "Ապալռեցնել @{name}֊ին", "account.unmute": "Ապալռեցնել @{name}֊ին",
"account.unmute_notifications": "Միացնել ծանուցումները @{name}֊ից", "account.unmute_notifications": "Միացնել ծանուցումները @{name}֊ից",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Սեղմէ՛ք գրառելու համար\n", "account_note.placeholder": "Սեղմէ՛ք գրառելու համար\n",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "Pengikut", "account.followers": "Pengikut",
"account.followers.empty": "Pengguna ini belum ada pengikut.", "account.followers.empty": "Pengguna ini belum ada pengikut.",
"account.followers_counter": "{count, plural, other {{counter} Pengikut}}", "account.followers_counter": "{count, plural, other {{counter} Pengikut}}",
"account.following": "Following",
"account.following_counter": "{count, plural, other {{counter} Mengikuti}}", "account.following_counter": "{count, plural, other {{counter} Mengikuti}}",
"account.follows.empty": "Pengguna ini belum mengikuti siapapun.", "account.follows.empty": "Pengguna ini belum mengikuti siapapun.",
"account.follows_you": "Mengikuti anda", "account.follows_you": "Mengikuti anda",
"account.hide_reblogs": "Sembunyikan boosts dari @{name}", "account.hide_reblogs": "Sembunyikan boosts dari @{name}",
"account.joined": "Bergabung {date}", "account.joined": "Bergabung {date}",
"account.last_status": "Terakhir aktif",
"account.link_verified_on": "Kepemilikan tautan ini telah dicek pada {date}", "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.locked_info": "Status privasi akun ini disetel untuk dikunci. Pemilik secara manual meninjau siapa yang dapat mengikutinya.",
"account.media": "Media", "account.media": "Media",
@ -32,7 +32,6 @@
"account.mute": "Bisukan @{name}", "account.mute": "Bisukan @{name}",
"account.mute_notifications": "Bisukan pemberitahuan dari @{name}", "account.mute_notifications": "Bisukan pemberitahuan dari @{name}",
"account.muted": "Dibisukan", "account.muted": "Dibisukan",
"account.never_active": "Tak pernah",
"account.posts": "Kiriman", "account.posts": "Kiriman",
"account.posts_with_replies": "Postingan dengan balasan", "account.posts_with_replies": "Postingan dengan balasan",
"account.report": "Laporkan @{name}", "account.report": "Laporkan @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, other {{counter} Toot}}", "account.statuses_counter": "{count, plural, other {{counter} Toot}}",
"account.unblock": "Hapus blokir @{name}", "account.unblock": "Hapus blokir @{name}",
"account.unblock_domain": "Buka blokir domain {domain}", "account.unblock_domain": "Buka blokir domain {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "Jangan tampilkan di profil", "account.unendorse": "Jangan tampilkan di profil",
"account.unfollow": "Berhenti mengikuti", "account.unfollow": "Berhenti mengikuti",
"account.unmute": "Berhenti membisukan @{name}", "account.unmute": "Berhenti membisukan @{name}",
"account.unmute_notifications": "Berhenti bisukan pemberitahuan dari @{name}", "account.unmute_notifications": "Berhenti bisukan pemberitahuan dari @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Klik untuk menambah catatan", "account_note.placeholder": "Klik untuk menambah catatan",
"admin.dashboard.daily_retention": "Tingkat retensi pengguna perhari setelah mendaftar", "admin.dashboard.daily_retention": "Tingkat retensi pengguna perhari setelah mendaftar",
"admin.dashboard.monthly_retention": "Tingkat retensi pengguna perbulan setelah mendaftar", "admin.dashboard.monthly_retention": "Tingkat retensi pengguna perbulan setelah mendaftar",

View File

@ -18,12 +18,12 @@
"account.followers": "Sequanti", "account.followers": "Sequanti",
"account.followers.empty": "No one follows this user yet.", "account.followers.empty": "No one follows this user yet.",
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}", "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.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
"account.follows.empty": "This user doesn't follow anyone yet.", "account.follows.empty": "This user doesn't follow anyone yet.",
"account.follows_you": "Sequas tu", "account.follows_you": "Sequas tu",
"account.hide_reblogs": "Hide boosts from @{name}", "account.hide_reblogs": "Hide boosts from @{name}",
"account.joined": "Joined {date}", "account.joined": "Joined {date}",
"account.last_status": "Last active",
"account.link_verified_on": "Ownership of this link was checked on {date}", "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.locked_info": "This account privacy status is set to locked. The owner manually reviews who can follow them.",
"account.media": "Media", "account.media": "Media",
@ -32,7 +32,6 @@
"account.mute": "Celar @{name}", "account.mute": "Celar @{name}",
"account.mute_notifications": "Mute notifications from @{name}", "account.mute_notifications": "Mute notifications from @{name}",
"account.muted": "Muted", "account.muted": "Muted",
"account.never_active": "Never",
"account.posts": "Mesaji", "account.posts": "Mesaji",
"account.posts_with_replies": "Toots with replies", "account.posts_with_replies": "Toots with replies",
"account.report": "Denuncar @{name}", "account.report": "Denuncar @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}", "account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
"account.unblock": "Desblokusar @{name}", "account.unblock": "Desblokusar @{name}",
"account.unblock_domain": "Unhide {domain}", "account.unblock_domain": "Unhide {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "Don't feature on profile", "account.unendorse": "Don't feature on profile",
"account.unfollow": "Ne plus sequar", "account.unfollow": "Ne plus sequar",
"account.unmute": "Ne plus celar @{name}", "account.unmute": "Ne plus celar @{name}",
"account.unmute_notifications": "Unmute notifications from @{name}", "account.unmute_notifications": "Unmute notifications from @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Click to add a note", "account_note.placeholder": "Click to add a note",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "Fylgjendur", "account.followers": "Fylgjendur",
"account.followers.empty": "Ennþá fylgist enginn með þessum notanda.", "account.followers.empty": "Ennþá fylgist enginn með þessum notanda.",
"account.followers_counter": "{count, plural, one {{counter} fylgjandi} other {{counter} fylgjendur}}", "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.following_counter": "{count, plural, one {{counter} fylgist með} other {{counter} fylgjast með}}",
"account.follows.empty": "Þessi notandi fylgist ennþá ekki með neinum.", "account.follows.empty": "Þessi notandi fylgist ennþá ekki með neinum.",
"account.follows_you": "Fylgir þér", "account.follows_you": "Fylgir þér",
"account.hide_reblogs": "Fela endurbirtingar fyrir @{name}", "account.hide_reblogs": "Fela endurbirtingar fyrir @{name}",
"account.joined": "Gerðist þátttakandi {date}", "account.joined": "Gerðist þátttakandi {date}",
"account.last_status": "Síðasta virkni",
"account.link_verified_on": "Eignarhald á þessum tengli var athugað þann {date}", "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.locked_info": "Staða gagnaleyndar á þessum aðgangi er stillt á læsingu. Eigandinn yfirfer handvirkt hverjir geti fylgst með honum.",
"account.media": "Myndskrár", "account.media": "Myndskrár",
@ -32,7 +32,6 @@
"account.mute": "Þagga niður í @{name}", "account.mute": "Þagga niður í @{name}",
"account.mute_notifications": "Þagga tilkynningar frá @{name}", "account.mute_notifications": "Þagga tilkynningar frá @{name}",
"account.muted": "Þaggað", "account.muted": "Þaggað",
"account.never_active": "Aldrei",
"account.posts": "Færslur", "account.posts": "Færslur",
"account.posts_with_replies": "Færslur og svör", "account.posts_with_replies": "Færslur og svör",
"account.report": "Kæra @{name}", "account.report": "Kæra @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} færsla} other {{counter} færslur}}", "account.statuses_counter": "{count, plural, one {{counter} færsla} other {{counter} færslur}}",
"account.unblock": "Aflétta útilokun af @{name}", "account.unblock": "Aflétta útilokun af @{name}",
"account.unblock_domain": "Aflétta útilokun lénsins {domain}", "account.unblock_domain": "Aflétta útilokun lénsins {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "Ekki birta á notandasniði", "account.unendorse": "Ekki birta á notandasniði",
"account.unfollow": "Hætta að fylgja", "account.unfollow": "Hætta að fylgja",
"account.unmute": "Hætta að þagga niður í @{name}", "account.unmute": "Hætta að þagga niður í @{name}",
"account.unmute_notifications": "Hætta að þagga tilkynningar frá @{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", "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.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", "admin.dashboard.monthly_retention": "Hlutfall virkra notenda eftir nýskráningu eftir mánuðum",

View File

@ -18,12 +18,12 @@
"account.followers": "Follower", "account.followers": "Follower",
"account.followers.empty": "Nessuno segue ancora questo utente.", "account.followers.empty": "Nessuno segue ancora questo utente.",
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Follower}}", "account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Follower}}",
"account.following": "Following",
"account.following_counter": "{count, plural, other {{counter} Seguiti}}", "account.following_counter": "{count, plural, other {{counter} Seguiti}}",
"account.follows.empty": "Questo utente non segue nessuno ancora.", "account.follows.empty": "Questo utente non segue nessuno ancora.",
"account.follows_you": "Ti segue", "account.follows_you": "Ti segue",
"account.hide_reblogs": "Nascondi condivisioni da @{name}", "account.hide_reblogs": "Nascondi condivisioni da @{name}",
"account.joined": "Su questa istanza dal {date}", "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.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.locked_info": "Questo è un account privato. Il proprietario approva manualmente chi può seguirlo.",
"account.media": "Media", "account.media": "Media",
@ -32,7 +32,6 @@
"account.mute": "Silenzia @{name}", "account.mute": "Silenzia @{name}",
"account.mute_notifications": "Silenzia notifiche da @{name}", "account.mute_notifications": "Silenzia notifiche da @{name}",
"account.muted": "Silenziato", "account.muted": "Silenziato",
"account.never_active": "Mai",
"account.posts": "Post", "account.posts": "Post",
"account.posts_with_replies": "Post e risposte", "account.posts_with_replies": "Post e risposte",
"account.report": "Segnala @{name}", "account.report": "Segnala @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Post} other {{counter} Post}}", "account.statuses_counter": "{count, plural, one {{counter} Post} other {{counter} Post}}",
"account.unblock": "Sblocca @{name}", "account.unblock": "Sblocca @{name}",
"account.unblock_domain": "Sblocca il dominio {domain}", "account.unblock_domain": "Sblocca il dominio {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "Non mostrare sul profilo", "account.unendorse": "Non mostrare sul profilo",
"account.unfollow": "Smetti di seguire", "account.unfollow": "Smetti di seguire",
"account.unmute": "Riattiva @{name}", "account.unmute": "Riattiva @{name}",
"account.unmute_notifications": "Riattiva le notifiche da @{name}", "account.unmute_notifications": "Riattiva le notifiche da @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Clicca per aggiungere una nota", "account_note.placeholder": "Clicca per aggiungere una nota",
"admin.dashboard.daily_retention": "Tasso di ritenzione utente per giorno dopo la registrazione", "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", "admin.dashboard.monthly_retention": "Tasso di ritenzione utente per mese dopo la registrazione",

View File

@ -18,12 +18,12 @@
"account.followers": "フォロワー", "account.followers": "フォロワー",
"account.followers.empty": "まだ誰もフォローしていません。", "account.followers.empty": "まだ誰もフォローしていません。",
"account.followers_counter": "{counter} フォロワー", "account.followers_counter": "{counter} フォロワー",
"account.following": "Following",
"account.following_counter": "{counter} フォロー", "account.following_counter": "{counter} フォロー",
"account.follows.empty": "まだ誰もフォローしていません。", "account.follows.empty": "まだ誰もフォローしていません。",
"account.follows_you": "フォローされています", "account.follows_you": "フォローされています",
"account.hide_reblogs": "@{name}さんからのブーストを非表示", "account.hide_reblogs": "@{name}さんからのブーストを非表示",
"account.joined": "{date} に登録", "account.joined": "{date} に登録",
"account.last_status": "最後の活動",
"account.link_verified_on": "このリンクの所有権は{date}に確認されました", "account.link_verified_on": "このリンクの所有権は{date}に確認されました",
"account.locked_info": "このアカウントは承認制アカウントです。相手が承認するまでフォローは完了しません。", "account.locked_info": "このアカウントは承認制アカウントです。相手が承認するまでフォローは完了しません。",
"account.media": "メディア", "account.media": "メディア",
@ -32,7 +32,6 @@
"account.mute": "@{name}さんをミュート", "account.mute": "@{name}さんをミュート",
"account.mute_notifications": "@{name}さんからの通知を受け取らない", "account.mute_notifications": "@{name}さんからの通知を受け取らない",
"account.muted": "ミュート済み", "account.muted": "ミュート済み",
"account.never_active": "活動なし",
"account.posts": "投稿", "account.posts": "投稿",
"account.posts_with_replies": "投稿と返信", "account.posts_with_replies": "投稿と返信",
"account.report": "@{name}さんを通報", "account.report": "@{name}さんを通報",
@ -42,10 +41,12 @@
"account.statuses_counter": "{counter} 投稿", "account.statuses_counter": "{counter} 投稿",
"account.unblock": "@{name}さんのブロックを解除", "account.unblock": "@{name}さんのブロックを解除",
"account.unblock_domain": "{domain}のブロックを解除", "account.unblock_domain": "{domain}のブロックを解除",
"account.unblock_short": "Unblock",
"account.unendorse": "プロフィールから外す", "account.unendorse": "プロフィールから外す",
"account.unfollow": "フォロー解除", "account.unfollow": "フォロー解除",
"account.unmute": "@{name}さんのミュートを解除", "account.unmute": "@{name}さんのミュートを解除",
"account.unmute_notifications": "@{name}さんからの通知を受け取るようにする", "account.unmute_notifications": "@{name}さんからの通知を受け取るようにする",
"account.unmute_short": "Unmute",
"account_note.placeholder": "クリックしてメモを追加", "account_note.placeholder": "クリックしてメモを追加",
"admin.dashboard.daily_retention": "サインアップ後の日ごとのユーザー継続率", "admin.dashboard.daily_retention": "サインアップ後の日ごとのユーザー継続率",
"admin.dashboard.monthly_retention": "サインアップ後の月ごとのユーザー継続率", "admin.dashboard.monthly_retention": "サインアップ後の月ごとのユーザー継続率",

View File

@ -18,12 +18,12 @@
"account.followers": "მიმდევრები", "account.followers": "მიმდევრები",
"account.followers.empty": "No one follows this user yet.", "account.followers.empty": "No one follows this user yet.",
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}", "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.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
"account.follows.empty": "This user doesn't follow anyone yet.", "account.follows.empty": "This user doesn't follow anyone yet.",
"account.follows_you": "მოგყვებათ", "account.follows_you": "მოგყვებათ",
"account.hide_reblogs": "დაიმალოს ბუსტები @{name}-სგან", "account.hide_reblogs": "დაიმალოს ბუსტები @{name}-სგან",
"account.joined": "Joined {date}", "account.joined": "Joined {date}",
"account.last_status": "Last active",
"account.link_verified_on": "Ownership of this link was checked on {date}", "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.locked_info": "This account privacy status is set to locked. The owner manually reviews who can follow them.",
"account.media": "მედია", "account.media": "მედია",
@ -32,7 +32,6 @@
"account.mute": "გააჩუმე @{name}", "account.mute": "გააჩუმე @{name}",
"account.mute_notifications": "გააჩუმე შეტყობინებები @{name}-სგან", "account.mute_notifications": "გააჩუმე შეტყობინებები @{name}-სგან",
"account.muted": "გაჩუმებული", "account.muted": "გაჩუმებული",
"account.never_active": "Never",
"account.posts": "ტუტები", "account.posts": "ტუტები",
"account.posts_with_replies": "ტუტები და პასუხები", "account.posts_with_replies": "ტუტები და პასუხები",
"account.report": "დაარეპორტე @{name}", "account.report": "დაარეპორტე @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}", "account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
"account.unblock": "განბლოკე @{name}", "account.unblock": "განბლოკე @{name}",
"account.unblock_domain": "გამოაჩინე {domain}", "account.unblock_domain": "გამოაჩინე {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "არ გამოირჩეს პროფილზე", "account.unendorse": "არ გამოირჩეს პროფილზე",
"account.unfollow": "ნუღარ მიჰყვები", "account.unfollow": "ნუღარ მიჰყვები",
"account.unmute": "ნუღარ აჩუმებ @{name}-ს", "account.unmute": "ნუღარ აჩუმებ @{name}-ს",
"account.unmute_notifications": "ნუღარ აჩუმებ შეტყობინებებს @{name}-სგან", "account.unmute_notifications": "ნუღარ აჩუმებ შეტყობინებებს @{name}-სგან",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Click to add a note", "account_note.placeholder": "Click to add a note",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "Imeḍfaren", "account.followers": "Imeḍfaren",
"account.followers.empty": "Ar tura, ulac yiwen i yeṭṭafaṛen amseqdac-agi.", "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.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.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.empty": "Ar tura, amseqdac-agi ur yeṭṭafaṛ yiwen.",
"account.follows_you": "Yeṭṭafaṛ-ik", "account.follows_you": "Yeṭṭafaṛ-ik",
"account.hide_reblogs": "Ffer ayen i ibeṭṭu @{name}", "account.hide_reblogs": "Ffer ayen i ibeṭṭu @{name}",
"account.joined": "Yerna-d {date}", "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.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.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", "account.media": "Amidya",
@ -32,7 +32,6 @@
"account.mute": "Sgugem @{name}", "account.mute": "Sgugem @{name}",
"account.mute_notifications": "Sgugem tilɣa sγur @{name}", "account.mute_notifications": "Sgugem tilɣa sγur @{name}",
"account.muted": "Yettwasgugem", "account.muted": "Yettwasgugem",
"account.never_active": "Werǧin",
"account.posts": "Tijewwaqin", "account.posts": "Tijewwaqin",
"account.posts_with_replies": "Tijewwaqin akked tririyin", "account.posts_with_replies": "Tijewwaqin akked tririyin",
"account.report": "Cetki ɣef @{name}", "account.report": "Cetki ɣef @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} ajewwaq} other {{counter} ijewwaqen}}", "account.statuses_counter": "{count, plural, one {{counter} ajewwaq} other {{counter} ijewwaqen}}",
"account.unblock": "Serreḥ i @{name}", "account.unblock": "Serreḥ i @{name}",
"account.unblock_domain": "Ssken-d {domain}", "account.unblock_domain": "Ssken-d {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "Ur ttwellih ara fell-as deg umaɣnu-inek", "account.unendorse": "Ur ttwellih ara fell-as deg umaɣnu-inek",
"account.unfollow": "Ur ṭṭafaṛ ara", "account.unfollow": "Ur ṭṭafaṛ ara",
"account.unmute": "Kkes asgugem ɣef @{name}", "account.unmute": "Kkes asgugem ɣef @{name}",
"account.unmute_notifications": "Serreḥ ilɣa sɣur @{name}", "account.unmute_notifications": "Serreḥ ilɣa sɣur @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Ulac iwenniten", "account_note.placeholder": "Ulac iwenniten",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "Оқырмандар", "account.followers": "Оқырмандар",
"account.followers.empty": "Әлі ешкім жазылмаған.", "account.followers.empty": "Әлі ешкім жазылмаған.",
"account.followers_counter": "{count, plural, one {{counter} Оқырман} other {{counter} Оқырман}}", "account.followers_counter": "{count, plural, one {{counter} Оқырман} other {{counter} Оқырман}}",
"account.following": "Following",
"account.following_counter": "{count, plural, one {{counter} Жазылым} other {{counter} Жазылым}}", "account.following_counter": "{count, plural, one {{counter} Жазылым} other {{counter} Жазылым}}",
"account.follows.empty": "Ешкімге жазылмапты.", "account.follows.empty": "Ешкімге жазылмапты.",
"account.follows_you": "Сізге жазылыпты", "account.follows_you": "Сізге жазылыпты",
"account.hide_reblogs": "@{name} атты қолданушының әрекеттерін жасыру", "account.hide_reblogs": "@{name} атты қолданушының әрекеттерін жасыру",
"account.joined": "Joined {date}", "account.joined": "Joined {date}",
"account.last_status": "Соңғы белсенділік",
"account.link_verified_on": "Сілтеме меншігі расталған күн {date}", "account.link_verified_on": "Сілтеме меншігі расталған күн {date}",
"account.locked_info": "Бұл қолданушы өзі туралы мәліметтерді жасырған. Тек жазылғандар ғана көре алады.", "account.locked_info": "Бұл қолданушы өзі туралы мәліметтерді жасырған. Тек жазылғандар ғана көре алады.",
"account.media": "Медиа", "account.media": "Медиа",
@ -32,7 +32,6 @@
"account.mute": "Үнсіз қылу @{name}", "account.mute": "Үнсіз қылу @{name}",
"account.mute_notifications": "@{name} туралы ескертпелерді жасыру", "account.mute_notifications": "@{name} туралы ескертпелерді жасыру",
"account.muted": "Үнсіз", "account.muted": "Үнсіз",
"account.never_active": "Ешқашан",
"account.posts": "Жазбалар", "account.posts": "Жазбалар",
"account.posts_with_replies": "Жазбалар мен жауаптар", "account.posts_with_replies": "Жазбалар мен жауаптар",
"account.report": "Шағымдану @{name}", "account.report": "Шағымдану @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Пост} other {{counter} Пост}}", "account.statuses_counter": "{count, plural, one {{counter} Пост} other {{counter} Пост}}",
"account.unblock": "Бұғаттан шығару @{name}", "account.unblock": "Бұғаттан шығару @{name}",
"account.unblock_domain": "Бұғаттан шығару {domain}", "account.unblock_domain": "Бұғаттан шығару {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "Профильде рекомендемеу", "account.unendorse": "Профильде рекомендемеу",
"account.unfollow": "Оқымау", "account.unfollow": "Оқымау",
"account.unmute": "@{name} ескертпелерін қосу", "account.unmute": "@{name} ескертпелерін қосу",
"account.unmute_notifications": "@{name} ескертпелерін көрсету", "account.unmute_notifications": "@{name} ескертпелерін көрсету",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Жазба қалдыру үшін бас", "account_note.placeholder": "Жазба қалдыру үшін бас",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "Şopîner", "account.followers": "Şopîner",
"account.followers.empty": "Kesekî hin ev bikarhêner neşopandiye.", "account.followers.empty": "Kesekî hin ev bikarhêner neşopandiye.",
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}", "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.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.empty": "Ev bikarhêner hin kesekî heya niha neşopandiye.",
"account.follows_you": "Te dişopîne", "account.follows_you": "Te dişopîne",
"account.hide_reblogs": "Bilindkirinên ji @{name} veşêre", "account.hide_reblogs": "Bilindkirinên ji @{name} veşêre",
"account.joined": "Tevlîbû di {date} de", "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.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.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", "account.media": "Medya",
@ -32,7 +32,6 @@
"account.mute": "@{name} Bêdeng bike", "account.mute": "@{name} Bêdeng bike",
"account.mute_notifications": "Agahdariyan ji @{name} bêdeng bike", "account.mute_notifications": "Agahdariyan ji @{name} bêdeng bike",
"account.muted": "Bêdengkirî", "account.muted": "Bêdengkirî",
"account.never_active": "Tu car",
"account.posts": "Şandî", "account.posts": "Şandî",
"account.posts_with_replies": "Şandî û bersiv", "account.posts_with_replies": "Şandî û bersiv",
"account.report": "@{name} Ragihîne", "account.report": "@{name} Ragihîne",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural,one {{counter} şandî}other {{counter} şandî}}", "account.statuses_counter": "{count, plural,one {{counter} şandî}other {{counter} şandî}}",
"account.unblock": "Astengê li ser @{name} rake", "account.unblock": "Astengê li ser @{name} rake",
"account.unblock_domain": "Astengê li ser navperê {domain} rake", "account.unblock_domain": "Astengê li ser navperê {domain} rake",
"account.unblock_short": "Unblock",
"account.unendorse": "Li ser profîl nîşan neke", "account.unendorse": "Li ser profîl nîşan neke",
"account.unfollow": "Neşopîne", "account.unfollow": "Neşopîne",
"account.unmute": "@{name} Bêdeng bike", "account.unmute": "@{name} Bêdeng bike",
"account.unmute_notifications": "Agahdariyan ji @{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î", "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.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ê", "admin.dashboard.monthly_retention": "Rêjeya ragirtina bikarhêner bi meh piştî tomarkirinê",

View File

@ -18,12 +18,12 @@
"account.followers": "ಹಿಂಬಾಲಕರು", "account.followers": "ಹಿಂಬಾಲಕರು",
"account.followers.empty": "No one follows this user yet.", "account.followers.empty": "No one follows this user yet.",
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}", "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.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
"account.follows.empty": "This user doesn't follow anyone yet.", "account.follows.empty": "This user doesn't follow anyone yet.",
"account.follows_you": "Follows you", "account.follows_you": "Follows you",
"account.hide_reblogs": "Hide boosts from @{name}", "account.hide_reblogs": "Hide boosts from @{name}",
"account.joined": "Joined {date}", "account.joined": "Joined {date}",
"account.last_status": "Last active",
"account.link_verified_on": "Ownership of this link was checked on {date}", "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.locked_info": "This account privacy status is set to locked. The owner manually reviews who can follow them.",
"account.media": "Media", "account.media": "Media",
@ -32,7 +32,6 @@
"account.mute": "Mute @{name}", "account.mute": "Mute @{name}",
"account.mute_notifications": "Mute notifications from @{name}", "account.mute_notifications": "Mute notifications from @{name}",
"account.muted": "Muted", "account.muted": "Muted",
"account.never_active": "Never",
"account.posts": "ಟೂಟ್‌ಗಳು", "account.posts": "ಟೂಟ್‌ಗಳು",
"account.posts_with_replies": "Toots and replies", "account.posts_with_replies": "Toots and replies",
"account.report": "Report @{name}", "account.report": "Report @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}", "account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
"account.unblock": "Unblock @{name}", "account.unblock": "Unblock @{name}",
"account.unblock_domain": "Unhide {domain}", "account.unblock_domain": "Unhide {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "Don't feature on profile", "account.unendorse": "Don't feature on profile",
"account.unfollow": "Unfollow", "account.unfollow": "Unfollow",
"account.unmute": "Unmute @{name}", "account.unmute": "Unmute @{name}",
"account.unmute_notifications": "Unmute notifications from @{name}", "account.unmute_notifications": "Unmute notifications from @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Click to add a note", "account_note.placeholder": "Click to add a note",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "팔로워", "account.followers": "팔로워",
"account.followers.empty": "아직 아무도 이 유저를 팔로우하고 있지 않습니다.", "account.followers.empty": "아직 아무도 이 유저를 팔로우하고 있지 않습니다.",
"account.followers_counter": "{counter} 팔로워", "account.followers_counter": "{counter} 팔로워",
"account.following": "Following",
"account.following_counter": "{counter} 팔로잉", "account.following_counter": "{counter} 팔로잉",
"account.follows.empty": "이 유저는 아직 아무도 팔로우하고 있지 않습니다.", "account.follows.empty": "이 유저는 아직 아무도 팔로우하고 있지 않습니다.",
"account.follows_you": "날 팔로우합니다", "account.follows_you": "날 팔로우합니다",
"account.hide_reblogs": "@{name}의 부스트를 숨기기", "account.hide_reblogs": "@{name}의 부스트를 숨기기",
"account.joined": "{date}에 가입함", "account.joined": "{date}에 가입함",
"account.last_status": "마지막 활동",
"account.link_verified_on": "{date}에 이 링크의 소유권이 확인 됨", "account.link_verified_on": "{date}에 이 링크의 소유권이 확인 됨",
"account.locked_info": "이 계정의 프라이버시 설정은 잠금으로 설정되어 있습니다. 계정 소유자가 수동으로 팔로워를 승인합니다.", "account.locked_info": "이 계정의 프라이버시 설정은 잠금으로 설정되어 있습니다. 계정 소유자가 수동으로 팔로워를 승인합니다.",
"account.media": "미디어", "account.media": "미디어",
@ -32,7 +32,6 @@
"account.mute": "@{name} 뮤트", "account.mute": "@{name} 뮤트",
"account.mute_notifications": "@{name}의 알림을 뮤트", "account.mute_notifications": "@{name}의 알림을 뮤트",
"account.muted": "뮤트 됨", "account.muted": "뮤트 됨",
"account.never_active": "없음",
"account.posts": "게시물", "account.posts": "게시물",
"account.posts_with_replies": "게시물과 답장", "account.posts_with_replies": "게시물과 답장",
"account.report": "@{name} 신고", "account.report": "@{name} 신고",
@ -42,10 +41,12 @@
"account.statuses_counter": "{counter} 게시물", "account.statuses_counter": "{counter} 게시물",
"account.unblock": "차단 해제", "account.unblock": "차단 해제",
"account.unblock_domain": "도메인 {domain} 차단 해제", "account.unblock_domain": "도메인 {domain} 차단 해제",
"account.unblock_short": "Unblock",
"account.unendorse": "프로필에 추천하지 않기", "account.unendorse": "프로필에 추천하지 않기",
"account.unfollow": "팔로우 해제", "account.unfollow": "팔로우 해제",
"account.unmute": "@{name} 뮤트 해제", "account.unmute": "@{name} 뮤트 해제",
"account.unmute_notifications": "@{name}의 알림 뮤트 해제", "account.unmute_notifications": "@{name}의 알림 뮤트 해제",
"account.unmute_short": "Unmute",
"account_note.placeholder": "클릭해서 노트 추가", "account_note.placeholder": "클릭해서 노트 추가",
"admin.dashboard.daily_retention": "가입 후 일별 사용자 유지율", "admin.dashboard.daily_retention": "가입 후 일별 사용자 유지율",
"admin.dashboard.monthly_retention": "가입 후 월별 사용자 유지율", "admin.dashboard.monthly_retention": "가입 후 월별 사용자 유지율",

View File

@ -18,12 +18,12 @@
"account.followers": "شوێنکەوتووان", "account.followers": "شوێنکەوتووان",
"account.followers.empty": "کەسێک شوێن ئەم بەکارهێنەرە نەکەوتووە", "account.followers.empty": "کەسێک شوێن ئەم بەکارهێنەرە نەکەوتووە",
"account.followers_counter": "{count, plural, one {{counter} شوێنکەوتوو} other {{counter} شوێنکەوتوو}}", "account.followers_counter": "{count, plural, one {{counter} شوێنکەوتوو} other {{counter} شوێنکەوتوو}}",
"account.following": "Following",
"account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}", "account.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
"account.follows.empty": "ئەم بەکارهێنەرە تا ئێستا شوێن کەس نەکەوتووە.", "account.follows.empty": "ئەم بەکارهێنەرە تا ئێستا شوێن کەس نەکەوتووە.",
"account.follows_you": "شوێنکەوتووەکانت", "account.follows_you": "شوێنکەوتووەکانت",
"account.hide_reblogs": "داشاردنی بووستەکان لە @{name}", "account.hide_reblogs": "داشاردنی بووستەکان لە @{name}",
"account.joined": "Joined {date}", "account.joined": "Joined {date}",
"account.last_status": "دوایین چالاکی",
"account.link_verified_on": "خاوەنداریەتی ئەم لینکە لە {date} چێک کراوە", "account.link_verified_on": "خاوەنداریەتی ئەم لینکە لە {date} چێک کراوە",
"account.locked_info": "تایبەتمەندی ئەم هەژمارەیە ڕیکخراوە بۆ قوفڵدراوە. خاوەنەکە بە دەستی پێداچوونەوە دەکات کە کێ دەتوانێت شوێنیان بکەوێت.", "account.locked_info": "تایبەتمەندی ئەم هەژمارەیە ڕیکخراوە بۆ قوفڵدراوە. خاوەنەکە بە دەستی پێداچوونەوە دەکات کە کێ دەتوانێت شوێنیان بکەوێت.",
"account.media": "میدیا", "account.media": "میدیا",
@ -32,7 +32,6 @@
"account.mute": "بێدەنگکردن @{name}", "account.mute": "بێدەنگکردن @{name}",
"account.mute_notifications": "هۆشیارکەرەوەکان لاببە لە @{name}", "account.mute_notifications": "هۆشیارکەرەوەکان لاببە لە @{name}",
"account.muted": "بێ دەنگ", "account.muted": "بێ دەنگ",
"account.never_active": "هەرگیز",
"account.posts": "توتس", "account.posts": "توتس",
"account.posts_with_replies": "توتس و وەڵامەکان", "account.posts_with_replies": "توتس و وەڵامەکان",
"account.report": "گوزارشت @{name}", "account.report": "گوزارشت @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}", "account.statuses_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
"account.unblock": "@{name} لاببە", "account.unblock": "@{name} لاببە",
"account.unblock_domain": "کردنەوەی دۆمەینی {domain}", "account.unblock_domain": "کردنەوەی دۆمەینی {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "تایبەتمەندی لەسەر پرۆفایلەکە نیە", "account.unendorse": "تایبەتمەندی لەسەر پرۆفایلەکە نیە",
"account.unfollow": "بەدوادانەچو", "account.unfollow": "بەدوادانەچو",
"account.unmute": "بێدەنگکردنی @{name}", "account.unmute": "بێدەنگکردنی @{name}",
"account.unmute_notifications": "بێدەنگکردنی هۆشیارییەکان لە @{name}", "account.unmute_notifications": "بێدەنگکردنی هۆشیارییەکان لە @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "کرتەبکە بۆ زیادکردنی تێبینی", "account_note.placeholder": "کرتەبکە بۆ زیادکردنی تێبینی",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "Holyoryon", "account.followers": "Holyoryon",
"account.followers.empty": "Ny wra nagonan holya'n devnydhyer ma hwath.", "account.followers.empty": "Ny wra nagonan holya'n devnydhyer ma hwath.",
"account.followers_counter": "{count, plural, one {{counter} Holyer} other {{counter} Holyer}}", "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.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.empty": "Ny wra'n devnydhyer ma holya nagonan hwath.",
"account.follows_you": "Y'th hol", "account.follows_you": "Y'th hol",
"account.hide_reblogs": "Kudha kenerthow a @{name}", "account.hide_reblogs": "Kudha kenerthow a @{name}",
"account.joined": "Joined {date}", "account.joined": "Joined {date}",
"account.last_status": "Bew diwettha",
"account.link_verified_on": "Perghenogeth an kolm ma a veu checkys dhe {date}", "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.locked_info": "Studh privetter an akont ma yw alhwedhys. An perghen a wra dasweles dre leuv piw a yll aga holya.",
"account.media": "Myski", "account.media": "Myski",
@ -32,7 +32,6 @@
"account.mute": "Tawhe @{name}", "account.mute": "Tawhe @{name}",
"account.mute_notifications": "Tawhe gwarnyansow a @{name}", "account.mute_notifications": "Tawhe gwarnyansow a @{name}",
"account.muted": "Tawhes", "account.muted": "Tawhes",
"account.never_active": "Nevra",
"account.posts": "Postow", "account.posts": "Postow",
"account.posts_with_replies": "Postow ha gorthebow", "account.posts_with_replies": "Postow ha gorthebow",
"account.report": "Reportya @{name}", "account.report": "Reportya @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Tout} other {{counter} Tout}}", "account.statuses_counter": "{count, plural, one {{counter} Tout} other {{counter} Tout}}",
"account.unblock": "Anlettya @{name}", "account.unblock": "Anlettya @{name}",
"account.unblock_domain": "Anlettya gorfarth {domain}", "account.unblock_domain": "Anlettya gorfarth {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "Na wra diskwedhes yn profil", "account.unendorse": "Na wra diskwedhes yn profil",
"account.unfollow": "Anholya", "account.unfollow": "Anholya",
"account.unmute": "Antawhe @{name}", "account.unmute": "Antawhe @{name}",
"account.unmute_notifications": "Antawhe gwarnyansow a @{name}", "account.unmute_notifications": "Antawhe gwarnyansow a @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Klyckya dhe geworra noten", "account_note.placeholder": "Klyckya dhe geworra noten",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "Followers", "account.followers": "Followers",
"account.followers.empty": "No one follows this user yet.", "account.followers.empty": "No one follows this user yet.",
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}", "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.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
"account.follows.empty": "This user doesn't follow anyone yet.", "account.follows.empty": "This user doesn't follow anyone yet.",
"account.follows_you": "Follows you", "account.follows_you": "Follows you",
"account.hide_reblogs": "Hide boosts from @{name}", "account.hide_reblogs": "Hide boosts from @{name}",
"account.joined": "Joined {date}", "account.joined": "Joined {date}",
"account.last_status": "Last active",
"account.link_verified_on": "Ownership of this link was checked on {date}", "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.locked_info": "This account privacy status is set to locked. The owner manually reviews who can follow them.",
"account.media": "Media", "account.media": "Media",
@ -32,7 +32,6 @@
"account.mute": "Mute @{name}", "account.mute": "Mute @{name}",
"account.mute_notifications": "Mute notifications from @{name}", "account.mute_notifications": "Mute notifications from @{name}",
"account.muted": "Užtildytas", "account.muted": "Užtildytas",
"account.never_active": "Niekada",
"account.posts": "Toots", "account.posts": "Toots",
"account.posts_with_replies": "Toots and replies", "account.posts_with_replies": "Toots and replies",
"account.report": "Report @{name}", "account.report": "Report @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}", "account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
"account.unblock": "Unblock @{name}", "account.unblock": "Unblock @{name}",
"account.unblock_domain": "Unhide {domain}", "account.unblock_domain": "Unhide {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "Don't feature on profile", "account.unendorse": "Don't feature on profile",
"account.unfollow": "Nebesekti", "account.unfollow": "Nebesekti",
"account.unmute": "Unmute @{name}", "account.unmute": "Unmute @{name}",
"account.unmute_notifications": "Unmute notifications from @{name}", "account.unmute_notifications": "Unmute notifications from @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Click to add a note", "account_note.placeholder": "Click to add a note",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "Sekotāji", "account.followers": "Sekotāji",
"account.followers.empty": "Šim lietotājam patreiz nav sekotāju.", "account.followers.empty": "Šim lietotājam patreiz nav sekotāju.",
"account.followers_counter": "{count, plural, one {{counter} Sekotājs} other {{counter} Sekotāji}}", "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.following_counter": "{count, plural, one {{counter} Sekojošs} other {{counter} Sekojoši}}",
"account.follows.empty": "Šis lietotājs pagaidām nevienam neseko.", "account.follows.empty": "Šis lietotājs pagaidām nevienam neseko.",
"account.follows_you": "Seko tev", "account.follows_you": "Seko tev",
"account.hide_reblogs": "Paslēpt paceltos ierakstus no lietotāja @{name}", "account.hide_reblogs": "Paslēpt paceltos ierakstus no lietotāja @{name}",
"account.joined": "Pievienojās {date}", "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.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.locked_info": "Šī konta privātuma statuss ir slēgts. Īpašnieks izskatīs, kurš viņam drīkst sekot.",
"account.media": "Mediji", "account.media": "Mediji",
@ -32,7 +32,6 @@
"account.mute": "Apklusināt @{name}", "account.mute": "Apklusināt @{name}",
"account.mute_notifications": "Nerādīt paziņojumus no @{name}", "account.mute_notifications": "Nerādīt paziņojumus no @{name}",
"account.muted": "Apklusināts", "account.muted": "Apklusināts",
"account.never_active": "Nekad",
"account.posts": "Ziņas", "account.posts": "Ziņas",
"account.posts_with_replies": "Ziņas un atbildes", "account.posts_with_replies": "Ziņas un atbildes",
"account.report": "Ziņot par lietotāju @{name}", "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.statuses_counter": "{count, plural, one {{counter} ziņa} other {{counter} ziņas}}",
"account.unblock": "Atbloķēt lietotāju @{name}", "account.unblock": "Atbloķēt lietotāju @{name}",
"account.unblock_domain": "Atbloķēt domēnu {domain}", "account.unblock_domain": "Atbloķēt domēnu {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "Neattēlot profilā", "account.unendorse": "Neattēlot profilā",
"account.unfollow": "Pārstāt sekot", "account.unfollow": "Pārstāt sekot",
"account.unmute": "Noņemt apklusinājumu @{name}", "account.unmute": "Noņemt apklusinājumu @{name}",
"account.unmute_notifications": "Rādīt paziņojumus no lietotāja @{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", "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.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", "admin.dashboard.monthly_retention": "Lietotāju saglabāšanas rādītājs mēnesī pēc reģistrēšanās",

View File

@ -18,12 +18,12 @@
"account.followers": "Следбеници", "account.followers": "Следбеници",
"account.followers.empty": "Никој не го следи овој корисник сеуште.", "account.followers.empty": "Никој не го следи овој корисник сеуште.",
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}", "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.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
"account.follows.empty": "Корисникот не следи никој сеуште.", "account.follows.empty": "Корисникот не следи никој сеуште.",
"account.follows_you": "Те следи тебе", "account.follows_you": "Те следи тебе",
"account.hide_reblogs": "Сокриј буст од @{name}", "account.hide_reblogs": "Сокриј буст од @{name}",
"account.joined": "Joined {date}", "account.joined": "Joined {date}",
"account.last_status": "Последно активен",
"account.link_verified_on": "Сопстевноста на овај линк беше проверен на {date}", "account.link_verified_on": "Сопстевноста на овај линк беше проверен на {date}",
"account.locked_info": "Статусот на приватност на овај корисник е сетиран како заклучен. Корисникот одлучува кој можи да го следи него.", "account.locked_info": "Статусот на приватност на овај корисник е сетиран како заклучен. Корисникот одлучува кој можи да го следи него.",
"account.media": "Медија", "account.media": "Медија",
@ -32,7 +32,6 @@
"account.mute": "Зачути го @{name}", "account.mute": "Зачути го @{name}",
"account.mute_notifications": "Исклучи известувања од @{name}", "account.mute_notifications": "Исклучи известувања од @{name}",
"account.muted": "Зачутено", "account.muted": "Зачутено",
"account.never_active": "Никогаш",
"account.posts": "Тутови", "account.posts": "Тутови",
"account.posts_with_replies": "Тутови и реплики", "account.posts_with_replies": "Тутови и реплики",
"account.report": "Пријави @{name}", "account.report": "Пријави @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}", "account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
"account.unblock": "Одблокирај @{name}", "account.unblock": "Одблокирај @{name}",
"account.unblock_domain": "Прикажи {domain}", "account.unblock_domain": "Прикажи {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "Не прикажувај на профил", "account.unendorse": "Не прикажувај на профил",
"account.unfollow": "Одследи", "account.unfollow": "Одследи",
"account.unmute": "Зачути го @{name}", "account.unmute": "Зачути го @{name}",
"account.unmute_notifications": "Исклучи известувања од @{name}", "account.unmute_notifications": "Исклучи известувања од @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Click to add a note", "account_note.placeholder": "Click to add a note",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "പിന്തുടരുന്നവർ", "account.followers": "പിന്തുടരുന്നവർ",
"account.followers.empty": "ഈ ഉപയോക്താവിനെ ആരും ഇതുവരെ പിന്തുടരുന്നില്ല.", "account.followers.empty": "ഈ ഉപയോക്താവിനെ ആരും ഇതുവരെ പിന്തുടരുന്നില്ല.",
"account.followers_counter": "{count, plural, one {{counter} പിന്തുടരുന്നവർ} other {{counter} പിന്തുടരുന്നവർ}}", "account.followers_counter": "{count, plural, one {{counter} പിന്തുടരുന്നവർ} other {{counter} പിന്തുടരുന്നവർ}}",
"account.following": "Following",
"account.following_counter": "{count, plural, one {{counter} പിന്തുടരുന്നു} other {{counter} പിന്തുടരുന്നു}}", "account.following_counter": "{count, plural, one {{counter} പിന്തുടരുന്നു} other {{counter} പിന്തുടരുന്നു}}",
"account.follows.empty": "ഈ ഉപയോക്താവ് ആരേയും ഇതുവരെ പിന്തുടരുന്നില്ല.", "account.follows.empty": "ഈ ഉപയോക്താവ് ആരേയും ഇതുവരെ പിന്തുടരുന്നില്ല.",
"account.follows_you": "നിങ്ങളെ പിന്തുടരുന്നു", "account.follows_you": "നിങ്ങളെ പിന്തുടരുന്നു",
"account.hide_reblogs": "@{name} ബൂസ്റ്റ് ചെയ്തവ മറയ്കുക", "account.hide_reblogs": "@{name} ബൂസ്റ്റ് ചെയ്തവ മറയ്കുക",
"account.joined": "{date} ൽ ചേർന്നു", "account.joined": "{date} ൽ ചേർന്നു",
"account.last_status": "അവസാനം കണ്ടത്",
"account.link_verified_on": "ഈ ലിങ്കിന്റെ ഉടമസ്തത {date} ഇൽ ഉറപ്പാക്കിയതാണ്", "account.link_verified_on": "ഈ ലിങ്കിന്റെ ഉടമസ്തത {date} ഇൽ ഉറപ്പാക്കിയതാണ്",
"account.locked_info": "ഈ അംഗത്വത്തിന്റെ സ്വകാര്യതാ നിലപാട് അനുസരിച്ച് പിന്തുടരുന്നവരെ തിരഞ്ഞെടുക്കാനുള്ള വിവേചനാധികാരം ഉടമസ്ഥനിൽ നിഷിപ്തമായിരിക്കുന്നു.", "account.locked_info": "ഈ അംഗത്വത്തിന്റെ സ്വകാര്യതാ നിലപാട് അനുസരിച്ച് പിന്തുടരുന്നവരെ തിരഞ്ഞെടുക്കാനുള്ള വിവേചനാധികാരം ഉടമസ്ഥനിൽ നിഷിപ്തമായിരിക്കുന്നു.",
"account.media": "മീഡിയ", "account.media": "മീഡിയ",
@ -32,7 +32,6 @@
"account.mute": "@{name}-നെ(യെ) നിശ്ശബ്ദമാക്കൂ", "account.mute": "@{name}-നെ(യെ) നിശ്ശബ്ദമാക്കൂ",
"account.mute_notifications": "@{name} യിൽ നിന്നുള്ള അറിയിപ്പുകൾ നിശബ്ദമാക്കുക", "account.mute_notifications": "@{name} യിൽ നിന്നുള്ള അറിയിപ്പുകൾ നിശബ്ദമാക്കുക",
"account.muted": "നിശ്ശബ്ദമാക്കിയിരിക്കുന്നു", "account.muted": "നിശ്ശബ്ദമാക്കിയിരിക്കുന്നു",
"account.never_active": "ഒരിക്കലും ഇല്ല",
"account.posts": "പോസ്റ്റുകൾ", "account.posts": "പോസ്റ്റുകൾ",
"account.posts_with_replies": "പോസ്റ്റുകളും മറുപടികളും", "account.posts_with_replies": "പോസ്റ്റുകളും മറുപടികളും",
"account.report": "റിപ്പോർട്ട് ചെയ്യുക @{name}", "account.report": "റിപ്പോർട്ട് ചെയ്യുക @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} ടൂട്ട്} other {{counter} ടൂട്ടുകൾ}}", "account.statuses_counter": "{count, plural, one {{counter} ടൂട്ട്} other {{counter} ടൂട്ടുകൾ}}",
"account.unblock": "@{name} തടഞ്ഞത് മാറ്റുക", "account.unblock": "@{name} തടഞ്ഞത് മാറ്റുക",
"account.unblock_domain": "{domain} എന്ന മേഖല വെളിപ്പെടുത്തുക", "account.unblock_domain": "{domain} എന്ന മേഖല വെളിപ്പെടുത്തുക",
"account.unblock_short": "Unblock",
"account.unendorse": "പ്രൊഫൈലിൽ പ്രകടമാക്കരുത്", "account.unendorse": "പ്രൊഫൈലിൽ പ്രകടമാക്കരുത്",
"account.unfollow": "പിന്തുടരുന്നത് നിര്‍ത്തുക", "account.unfollow": "പിന്തുടരുന്നത് നിര്‍ത്തുക",
"account.unmute": "നിശ്ശബ്ദമാക്കുന്നത് നിർത്തുക @{name}", "account.unmute": "നിശ്ശബ്ദമാക്കുന്നത് നിർത്തുക @{name}",
"account.unmute_notifications": "@{name} യിൽ നിന്നുള്ള അറിയിപ്പുകൾ പ്രസിദ്ധപ്പെടുത്തുക", "account.unmute_notifications": "@{name} യിൽ നിന്നുള്ള അറിയിപ്പുകൾ പ്രസിദ്ധപ്പെടുത്തുക",
"account.unmute_short": "Unmute",
"account_note.placeholder": "കുറിപ്പ് ചേർക്കാൻ ക്ലിക്കുചെയ്യുക", "account_note.placeholder": "കുറിപ്പ് ചേർക്കാൻ ക്ലിക്കുചെയ്യുക",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "अनुयायी", "account.followers": "अनुयायी",
"account.followers.empty": "ह्या वापरकर्त्याचा आतापर्यंत कोणी अनुयायी नाही.", "account.followers.empty": "ह्या वापरकर्त्याचा आतापर्यंत कोणी अनुयायी नाही.",
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}", "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.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
"account.follows.empty": "हा वापरकर्ता अजूनपर्यंत कोणाचा अनुयायी नाही.", "account.follows.empty": "हा वापरकर्ता अजूनपर्यंत कोणाचा अनुयायी नाही.",
"account.follows_you": "तुमचा अनुयायी आहे", "account.follows_you": "तुमचा अनुयायी आहे",
"account.hide_reblogs": "@{name} पासून सर्व बूस्ट लपवा", "account.hide_reblogs": "@{name} पासून सर्व बूस्ट लपवा",
"account.joined": "Joined {date}", "account.joined": "Joined {date}",
"account.last_status": "शेवटचे सक्रिय",
"account.link_verified_on": "Ownership of this link was checked on {date}", "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.locked_info": "This account privacy status is set to locked. The owner manually reviews who can follow them.",
"account.media": "दृक्‌‌श्राव्य मजकूर", "account.media": "दृक्‌‌श्राव्य मजकूर",
@ -32,7 +32,6 @@
"account.mute": "@{name} ला मूक कारा", "account.mute": "@{name} ला मूक कारा",
"account.mute_notifications": "Mute notifications from @{name}", "account.mute_notifications": "Mute notifications from @{name}",
"account.muted": "Muted", "account.muted": "Muted",
"account.never_active": "Never",
"account.posts": "Toots", "account.posts": "Toots",
"account.posts_with_replies": "Toots and replies", "account.posts_with_replies": "Toots and replies",
"account.report": "Report @{name}", "account.report": "Report @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}", "account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
"account.unblock": "@{name} ला ब्लॉक करा", "account.unblock": "@{name} ला ब्लॉक करा",
"account.unblock_domain": "उघड करा {domain}", "account.unblock_domain": "उघड करा {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "Don't feature on profile", "account.unendorse": "Don't feature on profile",
"account.unfollow": "अनुयायी असणे थांबवा", "account.unfollow": "अनुयायी असणे थांबवा",
"account.unmute": "Unmute @{name}", "account.unmute": "Unmute @{name}",
"account.unmute_notifications": "Unmute notifications from @{name}", "account.unmute_notifications": "Unmute notifications from @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Click to add a note", "account_note.placeholder": "Click to add a note",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "Pengikut", "account.followers": "Pengikut",
"account.followers.empty": "Belum ada yang mengikuti pengguna ini.", "account.followers.empty": "Belum ada yang mengikuti pengguna ini.",
"account.followers_counter": "{count, plural, one {{counter} Pengikut} other {{counter} Pengikut}}", "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.following_counter": "{count, plural, one {{counter} Diikuti} other {{counter} Diikuti}}",
"account.follows.empty": "Pengguna ini belum mengikuti sesiapa.", "account.follows.empty": "Pengguna ini belum mengikuti sesiapa.",
"account.follows_you": "Mengikuti anda", "account.follows_you": "Mengikuti anda",
"account.hide_reblogs": "Sembunyikan galakan daripada @{name}", "account.hide_reblogs": "Sembunyikan galakan daripada @{name}",
"account.joined": "Sertai pada {date}", "account.joined": "Sertai pada {date}",
"account.last_status": "Terakhir aktif",
"account.link_verified_on": "Pemilikan pautan ini telah disemak pada {date}", "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.locked_info": "Status privasi akaun ini dikunci. Pemiliknya menyaring sendiri siapa yang boleh mengikutinya.",
"account.media": "Media", "account.media": "Media",
@ -32,7 +32,6 @@
"account.mute": "Bisukan @{name}", "account.mute": "Bisukan @{name}",
"account.mute_notifications": "Bisukan pemberitahuan daripada @{name}", "account.mute_notifications": "Bisukan pemberitahuan daripada @{name}",
"account.muted": "Dibisukan", "account.muted": "Dibisukan",
"account.never_active": "Jangan sesekali",
"account.posts": "Hantaran", "account.posts": "Hantaran",
"account.posts_with_replies": "Hantaran dan balasan", "account.posts_with_replies": "Hantaran dan balasan",
"account.report": "Laporkan @{name}", "account.report": "Laporkan @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Hantaran} other {{counter} Hantaran}}", "account.statuses_counter": "{count, plural, one {{counter} Hantaran} other {{counter} Hantaran}}",
"account.unblock": "Nyahsekat @{name}", "account.unblock": "Nyahsekat @{name}",
"account.unblock_domain": "Nyahsekat domain {domain}", "account.unblock_domain": "Nyahsekat domain {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "Jangan tampilkan di profil", "account.unendorse": "Jangan tampilkan di profil",
"account.unfollow": "Nyahikut", "account.unfollow": "Nyahikut",
"account.unmute": "Nyahbisukan @{name}", "account.unmute": "Nyahbisukan @{name}",
"account.unmute_notifications": "Nyahbisukan pemberitahuan daripada @{name}", "account.unmute_notifications": "Nyahbisukan pemberitahuan daripada @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Klik untuk tambah catatan", "account_note.placeholder": "Klik untuk tambah catatan",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "Volgers", "account.followers": "Volgers",
"account.followers.empty": "Niemand volgt nog deze gebruiker.", "account.followers.empty": "Niemand volgt nog deze gebruiker.",
"account.followers_counter": "{count, plural, one {{counter} volger} other {{counter} volgers}}", "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.following_counter": "{count, plural, one {{counter} volgend} other {{counter} volgend}}",
"account.follows.empty": "Deze gebruiker volgt nog niemand.", "account.follows.empty": "Deze gebruiker volgt nog niemand.",
"account.follows_you": "Volgt jou", "account.follows_you": "Volgt jou",
"account.hide_reblogs": "Boosts van @{name} verbergen", "account.hide_reblogs": "Boosts van @{name} verbergen",
"account.joined": "Geregistreerd in {date}", "account.joined": "Geregistreerd in {date}",
"account.last_status": "Laatst actief",
"account.link_verified_on": "Eigendom van deze link is gecontroleerd op {date}", "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.locked_info": "De privacystatus van dit account is op besloten gezet. De eigenaar bepaalt handmatig wie hen kan volgen.",
"account.media": "Media", "account.media": "Media",
@ -32,7 +32,6 @@
"account.mute": "@{name} negeren", "account.mute": "@{name} negeren",
"account.mute_notifications": "Meldingen van @{name} negeren", "account.mute_notifications": "Meldingen van @{name} negeren",
"account.muted": "Genegeerd", "account.muted": "Genegeerd",
"account.never_active": "Nooit",
"account.posts": "Toots", "account.posts": "Toots",
"account.posts_with_replies": "Toots en reacties", "account.posts_with_replies": "Toots en reacties",
"account.report": "@{name} rapporteren", "account.report": "@{name} rapporteren",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} toot} other {{counter} toots}}", "account.statuses_counter": "{count, plural, one {{counter} toot} other {{counter} toots}}",
"account.unblock": "@{name} deblokkeren", "account.unblock": "@{name} deblokkeren",
"account.unblock_domain": "{domain} niet langer verbergen", "account.unblock_domain": "{domain} niet langer verbergen",
"account.unblock_short": "Unblock",
"account.unendorse": "Niet op profiel weergeven", "account.unendorse": "Niet op profiel weergeven",
"account.unfollow": "Ontvolgen", "account.unfollow": "Ontvolgen",
"account.unmute": "@{name} niet langer negeren", "account.unmute": "@{name} niet langer negeren",
"account.unmute_notifications": "Meldingen van @{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", "account_note.placeholder": "Klik om een opmerking toe te voegen",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "Fylgjarar", "account.followers": "Fylgjarar",
"account.followers.empty": "Ingen fylgjer denne brukaren enno.", "account.followers.empty": "Ingen fylgjer denne brukaren enno.",
"account.followers_counter": "{count, plural, one {{counter} fylgjar} other {{counter} fylgjarar}}", "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.following_counter": "{count, plural, one {{counter} fylgjar} other {{counter} fylgjar}}",
"account.follows.empty": "Denne brukaren fylgjer ikkje nokon enno.", "account.follows.empty": "Denne brukaren fylgjer ikkje nokon enno.",
"account.follows_you": "Fylgjer deg", "account.follows_you": "Fylgjer deg",
"account.hide_reblogs": "Gøym fremhevingar frå @{name}", "account.hide_reblogs": "Gøym fremhevingar frå @{name}",
"account.joined": "Vart med {date}", "account.joined": "Vart med {date}",
"account.last_status": "Sist aktiv",
"account.link_verified_on": "Eigarskap for denne lenkja vart sist sjekka {date}", "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.locked_info": "Denne kontoen er privat. Eigaren kan sjølv velja kven som kan fylgja han.",
"account.media": "Media", "account.media": "Media",
@ -32,7 +32,6 @@
"account.mute": "Målbind @{name}", "account.mute": "Målbind @{name}",
"account.mute_notifications": "Målbind varsel frå @{name}", "account.mute_notifications": "Målbind varsel frå @{name}",
"account.muted": "Målbunden", "account.muted": "Målbunden",
"account.never_active": "Aldri",
"account.posts": "Tut", "account.posts": "Tut",
"account.posts_with_replies": "Tut og svar", "account.posts_with_replies": "Tut og svar",
"account.report": "Rapporter @{name}", "account.report": "Rapporter @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} tut} other {{counter} tut}}", "account.statuses_counter": "{count, plural, one {{counter} tut} other {{counter} tut}}",
"account.unblock": "Slutt å blokera @{name}", "account.unblock": "Slutt å blokera @{name}",
"account.unblock_domain": "Vis {domain}", "account.unblock_domain": "Vis {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "Ikkje framhev på profil", "account.unendorse": "Ikkje framhev på profil",
"account.unfollow": "Slutt å fylgja", "account.unfollow": "Slutt å fylgja",
"account.unmute": "Av-demp @{name}", "account.unmute": "Av-demp @{name}",
"account.unmute_notifications": "Vis varsel frå @{name}", "account.unmute_notifications": "Vis varsel frå @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Klikk for å leggja til merknad", "account_note.placeholder": "Klikk for å leggja til merknad",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "Følgere", "account.followers": "Følgere",
"account.followers.empty": "Ingen følger denne brukeren ennå.", "account.followers.empty": "Ingen følger denne brukeren ennå.",
"account.followers_counter": "{count, plural, one {{counter} følger} other {{counter} følgere}}", "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.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.empty": "Denne brukeren følger ikke noen enda.",
"account.follows_you": "Følger deg", "account.follows_you": "Følger deg",
"account.hide_reblogs": "Skjul fremhevinger fra @{name}", "account.hide_reblogs": "Skjul fremhevinger fra @{name}",
"account.joined": "Ble med den {date}", "account.joined": "Ble med den {date}",
"account.last_status": "Sist aktiv",
"account.link_verified_on": "Eierskap av denne lenken ble sjekket {date}", "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.locked_info": "Denne kontoens personvernstatus er satt til låst. Eieren vurderer manuelt hvem som kan følge dem.",
"account.media": "Media", "account.media": "Media",
@ -32,7 +32,6 @@
"account.mute": "Demp @{name}", "account.mute": "Demp @{name}",
"account.mute_notifications": "Ignorer varsler fra @{name}", "account.mute_notifications": "Ignorer varsler fra @{name}",
"account.muted": "Dempet", "account.muted": "Dempet",
"account.never_active": "Aldri",
"account.posts": "Innlegg", "account.posts": "Innlegg",
"account.posts_with_replies": "Toots with replies", "account.posts_with_replies": "Toots with replies",
"account.report": "Rapportér @{name}", "account.report": "Rapportér @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} tut} other {{counter} tuter}}", "account.statuses_counter": "{count, plural, one {{counter} tut} other {{counter} tuter}}",
"account.unblock": "Avblokker @{name}", "account.unblock": "Avblokker @{name}",
"account.unblock_domain": "Vis {domain}", "account.unblock_domain": "Vis {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "Ikke vis frem på profilen", "account.unendorse": "Ikke vis frem på profilen",
"account.unfollow": "Avfølg", "account.unfollow": "Avfølg",
"account.unmute": "Avdemp @{name}", "account.unmute": "Avdemp @{name}",
"account.unmute_notifications": "Vis varsler fra @{name}", "account.unmute_notifications": "Vis varsler fra @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Klikk for å legge til et notat", "account_note.placeholder": "Klikk for å legge til et notat",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "Seguidors", "account.followers": "Seguidors",
"account.followers.empty": "Degun sèc pas aqueste utilizaire pel moment.", "account.followers.empty": "Degun sèc pas aqueste utilizaire pel moment.",
"account.followers_counter": "{count, plural, one {{counter} Seguidor} other {{counter} Seguidors}}", "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.following_counter": "{count, plural, one {{counter} Abonaments} other {{counter} Abonaments}}",
"account.follows.empty": "Aqueste utilizaire sèc pas degun pel moment.", "account.follows.empty": "Aqueste utilizaire sèc pas degun pel moment.",
"account.follows_you": "Vos sèc", "account.follows_you": "Vos sèc",
"account.hide_reblogs": "Rescondre los partatges de @{name}", "account.hide_reblogs": "Rescondre los partatges de @{name}",
"account.joined": "Arribèt en {date}", "account.joined": "Arribèt en {date}",
"account.last_status": "Darrièra activitat",
"account.link_verified_on": "La proprietat daqueste ligam foguèt verificada lo {date}", "account.link_verified_on": "La proprietat daqueste ligam foguèt verificada lo {date}",
"account.locked_info": "Lestatut de privacitat del compte es configurat sus clavat. Lo proprietari causís qual pòt sègre son compte.", "account.locked_info": "Lestatut de privacitat del compte es configurat sus clavat. Lo proprietari causís qual pòt sègre son compte.",
"account.media": "Mèdias", "account.media": "Mèdias",
@ -32,7 +32,6 @@
"account.mute": "Rescondre @{name}", "account.mute": "Rescondre @{name}",
"account.mute_notifications": "Rescondre las notificacions de @{name}", "account.mute_notifications": "Rescondre las notificacions de @{name}",
"account.muted": "Mes en silenci", "account.muted": "Mes en silenci",
"account.never_active": "Jamai",
"account.posts": "Tuts", "account.posts": "Tuts",
"account.posts_with_replies": "Tuts e responsas", "account.posts_with_replies": "Tuts e responsas",
"account.report": "Senhalar @{name}", "account.report": "Senhalar @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Tut} other {{counter} Tuts}}", "account.statuses_counter": "{count, plural, one {{counter} Tut} other {{counter} Tuts}}",
"account.unblock": "Desblocar @{name}", "account.unblock": "Desblocar @{name}",
"account.unblock_domain": "Desblocar {domain}", "account.unblock_domain": "Desblocar {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "Mostrar pas pel perfil", "account.unendorse": "Mostrar pas pel perfil",
"account.unfollow": "Quitar de sègre", "account.unfollow": "Quitar de sègre",
"account.unmute": "Quitar de rescondre @{name}", "account.unmute": "Quitar de rescondre @{name}",
"account.unmute_notifications": "Mostrar las notificacions de @{name}", "account.unmute_notifications": "Mostrar las notificacions de @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Clicar per ajustar una nòta", "account_note.placeholder": "Clicar per ajustar una nòta",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "Followers", "account.followers": "Followers",
"account.followers.empty": "No one follows this user yet.", "account.followers.empty": "No one follows this user yet.",
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}", "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.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
"account.follows.empty": "This user doesn't follow anyone yet.", "account.follows.empty": "This user doesn't follow anyone yet.",
"account.follows_you": "Follows you", "account.follows_you": "Follows you",
"account.hide_reblogs": "Hide boosts from @{name}", "account.hide_reblogs": "Hide boosts from @{name}",
"account.joined": "Joined {date}", "account.joined": "Joined {date}",
"account.last_status": "Last active",
"account.link_verified_on": "Ownership of this link was checked on {date}", "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.locked_info": "This account privacy status is set to locked. The owner manually reviews who can follow them.",
"account.media": "Media", "account.media": "Media",
@ -32,7 +32,6 @@
"account.mute": "Mute @{name}", "account.mute": "Mute @{name}",
"account.mute_notifications": "Mute notifications from @{name}", "account.mute_notifications": "Mute notifications from @{name}",
"account.muted": "Muted", "account.muted": "Muted",
"account.never_active": "Never",
"account.posts": "Toots", "account.posts": "Toots",
"account.posts_with_replies": "Toots and replies", "account.posts_with_replies": "Toots and replies",
"account.report": "Report @{name}", "account.report": "Report @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}", "account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
"account.unblock": "Unblock @{name}", "account.unblock": "Unblock @{name}",
"account.unblock_domain": "Unblock domain {domain}", "account.unblock_domain": "Unblock domain {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "Don't feature on profile", "account.unendorse": "Don't feature on profile",
"account.unfollow": "Unfollow", "account.unfollow": "Unfollow",
"account.unmute": "Unmute @{name}", "account.unmute": "Unmute @{name}",
"account.unmute_notifications": "Unmute notifications from @{name}", "account.unmute_notifications": "Unmute notifications from @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Click to add a note", "account_note.placeholder": "Click to add a note",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "Śledzący", "account.followers": "Śledzący",
"account.followers.empty": "Nikt jeszcze nie śledzi tego użytkownika.", "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.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.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.empty": "Ten użytkownik nie śledzi jeszcze nikogo.",
"account.follows_you": "Śledzi Cię", "account.follows_you": "Śledzi Cię",
"account.hide_reblogs": "Ukryj podbicia od @{name}", "account.hide_reblogs": "Ukryj podbicia od @{name}",
"account.joined": "Dołączył(a) {date}", "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.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.locked_info": "To konto jest prywatne. Właściciel ręcznie wybiera kto może go śledzić.",
"account.media": "Zawartość multimedialna", "account.media": "Zawartość multimedialna",
@ -32,7 +32,6 @@
"account.mute": "Wycisz @{name}", "account.mute": "Wycisz @{name}",
"account.mute_notifications": "Wycisz powiadomienia o @{name}", "account.mute_notifications": "Wycisz powiadomienia o @{name}",
"account.muted": "Wyciszony", "account.muted": "Wyciszony",
"account.never_active": "Nigdy",
"account.posts": "Wpisy", "account.posts": "Wpisy",
"account.posts_with_replies": "Wpisy i odpowiedzi", "account.posts_with_replies": "Wpisy i odpowiedzi",
"account.report": "Zgłoś @{name}", "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.statuses_counter": "{count, plural, one {{counter} wpis} few {{counter} wpisy} many {{counter} wpisów} other {{counter} wpisów}}",
"account.unblock": "Odblokuj @{name}", "account.unblock": "Odblokuj @{name}",
"account.unblock_domain": "Odblokuj domenę {domain}", "account.unblock_domain": "Odblokuj domenę {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "Przestań polecać", "account.unendorse": "Przestań polecać",
"account.unfollow": "Przestań śledzić", "account.unfollow": "Przestań śledzić",
"account.unmute": "Cofnij wyciszenie @{name}", "account.unmute": "Cofnij wyciszenie @{name}",
"account.unmute_notifications": "Cofnij wyciszenie powiadomień od @{name}", "account.unmute_notifications": "Cofnij wyciszenie powiadomień od @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Naciśnij aby dodać notatkę", "account_note.placeholder": "Naciśnij aby dodać notatkę",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "Seguidores", "account.followers": "Seguidores",
"account.followers.empty": "Nada aqui.", "account.followers.empty": "Nada aqui.",
"account.followers_counter": "{count, plural, one {{counter} seguidor} other {{counter} seguidores}}", "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.following_counter": "{count, plural, one {segue {counter}} other {segue {counter}}}",
"account.follows.empty": "Nada aqui.", "account.follows.empty": "Nada aqui.",
"account.follows_you": "te segue", "account.follows_you": "te segue",
"account.hide_reblogs": "Ocultar boosts de @{name}", "account.hide_reblogs": "Ocultar boosts de @{name}",
"account.joined": "Entrou em {date}", "account.joined": "Entrou em {date}",
"account.last_status": "Ativo pela última vez",
"account.link_verified_on": "link verificado em {date}", "account.link_verified_on": "link verificado em {date}",
"account.locked_info": "Trancado. Seguir requer aprovação manual do perfil.", "account.locked_info": "Trancado. Seguir requer aprovação manual do perfil.",
"account.media": "Mídia", "account.media": "Mídia",
@ -32,7 +32,6 @@
"account.mute": "Silenciar @{name}", "account.mute": "Silenciar @{name}",
"account.mute_notifications": "Ocultar notificações de @{name}", "account.mute_notifications": "Ocultar notificações de @{name}",
"account.muted": "Silenciado", "account.muted": "Silenciado",
"account.never_active": "Nunca",
"account.posts": "Toots", "account.posts": "Toots",
"account.posts_with_replies": "Com respostas", "account.posts_with_replies": "Com respostas",
"account.report": "Denunciar @{name}", "account.report": "Denunciar @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}", "account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
"account.unblock": "Desbloquear @{name}", "account.unblock": "Desbloquear @{name}",
"account.unblock_domain": "Desbloquear domínio {domain}", "account.unblock_domain": "Desbloquear domínio {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "Remover", "account.unendorse": "Remover",
"account.unfollow": "Deixar de seguir", "account.unfollow": "Deixar de seguir",
"account.unmute": "Dessilenciar @{name}", "account.unmute": "Dessilenciar @{name}",
"account.unmute_notifications": "Mostrar notificações de @{name}", "account.unmute_notifications": "Mostrar notificações de @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Nota pessoal sobre este perfil aqui", "account_note.placeholder": "Nota pessoal sobre este perfil aqui",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "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", "admin.dashboard.monthly_retention": "Taxa de retenção de usuários por mês, após a inscrição",

View File

@ -18,12 +18,12 @@
"account.followers": "Seguidores", "account.followers": "Seguidores",
"account.followers.empty": "Ainda ninguém segue este utilizador.", "account.followers.empty": "Ainda ninguém segue este utilizador.",
"account.followers_counter": "{count, plural, one {{counter} Seguidor} other {{counter} Seguidores}}", "account.followers_counter": "{count, plural, one {{counter} Seguidor} other {{counter} Seguidores}}",
"account.following": "Following",
"account.following_counter": "{count, plural, other {A seguir {counter}}}", "account.following_counter": "{count, plural, other {A seguir {counter}}}",
"account.follows.empty": "Este utilizador ainda não segue ninguém.", "account.follows.empty": "Este utilizador ainda não segue ninguém.",
"account.follows_you": "Segue-te", "account.follows_you": "Segue-te",
"account.hide_reblogs": "Esconder partilhas de @{name}", "account.hide_reblogs": "Esconder partilhas de @{name}",
"account.joined": "Ingressou em {date}", "account.joined": "Ingressou em {date}",
"account.last_status": "Última atividade",
"account.link_verified_on": "A posse deste link foi verificada em {date}", "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.locked_info": "Esta conta é privada. O proprietário revê manualmente quem a pode seguir.",
"account.media": "Média", "account.media": "Média",
@ -32,7 +32,6 @@
"account.mute": "Silenciar @{name}", "account.mute": "Silenciar @{name}",
"account.mute_notifications": "Silenciar notificações de @{name}", "account.mute_notifications": "Silenciar notificações de @{name}",
"account.muted": "Silenciada", "account.muted": "Silenciada",
"account.never_active": "Nunca",
"account.posts": "Toots", "account.posts": "Toots",
"account.posts_with_replies": "Publicações e respostas", "account.posts_with_replies": "Publicações e respostas",
"account.report": "Denunciar @{name}", "account.report": "Denunciar @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}", "account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
"account.unblock": "Desbloquear @{name}", "account.unblock": "Desbloquear @{name}",
"account.unblock_domain": "Mostrar {domain}", "account.unblock_domain": "Mostrar {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "Não mostrar no perfil", "account.unendorse": "Não mostrar no perfil",
"account.unfollow": "Deixar de seguir", "account.unfollow": "Deixar de seguir",
"account.unmute": "Não silenciar @{name}", "account.unmute": "Não silenciar @{name}",
"account.unmute_notifications": "Deixar de silenciar @{name}", "account.unmute_notifications": "Deixar de silenciar @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Clique para adicionar nota", "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.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", "admin.dashboard.monthly_retention": "Taxa de retenção de utilizadores por mês após a inscrição",

View File

@ -18,12 +18,12 @@
"account.followers": "Abonați", "account.followers": "Abonați",
"account.followers.empty": "Acest utilizator încă nu are 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.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.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.empty": "Momentan acest utilizator nu are niciun abonament.",
"account.follows_you": "Este abonat la tine", "account.follows_you": "Este abonat la tine",
"account.hide_reblogs": "Ascunde distribuirile de la @{name}", "account.hide_reblogs": "Ascunde distribuirile de la @{name}",
"account.joined": "S-a înscris în {date}", "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.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.locked_info": "Acest profil este privat. Această persoană aprobă manual conturile care se abonează la ea.",
"account.media": "Media", "account.media": "Media",
@ -32,7 +32,6 @@
"account.mute": "Ignoră pe @{name}", "account.mute": "Ignoră pe @{name}",
"account.mute_notifications": "Ignoră notificările de la @{name}", "account.mute_notifications": "Ignoră notificările de la @{name}",
"account.muted": "Ignorat", "account.muted": "Ignorat",
"account.never_active": "Niciodată",
"account.posts": "Postări", "account.posts": "Postări",
"account.posts_with_replies": "Postări și răspunsuri", "account.posts_with_replies": "Postări și răspunsuri",
"account.report": "Raportează pe @{name}", "account.report": "Raportează pe @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}", "account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
"account.unblock": "Deblochează pe @{name}", "account.unblock": "Deblochează pe @{name}",
"account.unblock_domain": "Deblochează domeniul {domain}", "account.unblock_domain": "Deblochează domeniul {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "Nu promova pe profil", "account.unendorse": "Nu promova pe profil",
"account.unfollow": "Nu mai urmări", "account.unfollow": "Nu mai urmări",
"account.unmute": "Nu mai ignora pe @{name}", "account.unmute": "Nu mai ignora pe @{name}",
"account.unmute_notifications": "Activează notificările de la @{name}", "account.unmute_notifications": "Activează notificările de la @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Click to add a note", "account_note.placeholder": "Click to add a note",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "Подписчики", "account.followers": "Подписчики",
"account.followers.empty": "На этого пользователя пока никто не подписан.", "account.followers.empty": "На этого пользователя пока никто не подписан.",
"account.followers_counter": "{count, plural, one {{counter} подписчик} many {{counter} подписчиков} other {{counter} подписчика}}", "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.following_counter": "{count, plural, one {{counter} подписка} many {{counter} подписок} other {{counter} подписки}}",
"account.follows.empty": "Этот пользователь пока ни на кого не подписался.", "account.follows.empty": "Этот пользователь пока ни на кого не подписался.",
"account.follows_you": "Подписан(а) на вас", "account.follows_you": "Подписан(а) на вас",
"account.hide_reblogs": "Скрыть продвижения от @{name}", "account.hide_reblogs": "Скрыть продвижения от @{name}",
"account.joined": "Зарегистрирован(а) с {date}", "account.joined": "Зарегистрирован(а) с {date}",
"account.last_status": "Последняя активность",
"account.link_verified_on": "Владение этой ссылкой было проверено {date}", "account.link_verified_on": "Владение этой ссылкой было проверено {date}",
"account.locked_info": "Это закрытый аккаунт. Его владелец вручную одобряет подписчиков.", "account.locked_info": "Это закрытый аккаунт. Его владелец вручную одобряет подписчиков.",
"account.media": "Медиа", "account.media": "Медиа",
@ -32,7 +32,6 @@
"account.mute": "Игнорировать @{name}", "account.mute": "Игнорировать @{name}",
"account.mute_notifications": "Скрыть уведомления от @{name}", "account.mute_notifications": "Скрыть уведомления от @{name}",
"account.muted": "Игнорируется", "account.muted": "Игнорируется",
"account.never_active": "Никогда",
"account.posts": "Посты", "account.posts": "Посты",
"account.posts_with_replies": "Посты и ответы", "account.posts_with_replies": "Посты и ответы",
"account.report": "Пожаловаться на @{name}", "account.report": "Пожаловаться на @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} пост} many {{counter} постов} other {{counter} поста}}", "account.statuses_counter": "{count, plural, one {{counter} пост} many {{counter} постов} other {{counter} поста}}",
"account.unblock": "Разблокировать @{name}", "account.unblock": "Разблокировать @{name}",
"account.unblock_domain": "Разблокировать {domain}", "account.unblock_domain": "Разблокировать {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "Не рекомендовать в профиле", "account.unendorse": "Не рекомендовать в профиле",
"account.unfollow": "Отписаться", "account.unfollow": "Отписаться",
"account.unmute": "Убрать {name} из игнорируемых", "account.unmute": "Убрать {name} из игнорируемых",
"account.unmute_notifications": "Показывать уведомления от @{name}", "account.unmute_notifications": "Показывать уведомления от @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Текст заметки", "account_note.placeholder": "Текст заметки",
"admin.dashboard.daily_retention": "Уровень удержания пользователей после регистрации, в днях", "admin.dashboard.daily_retention": "Уровень удержания пользователей после регистрации, в днях",
"admin.dashboard.monthly_retention": "Уровень удержания пользователей после регистрации, в месяцах", "admin.dashboard.monthly_retention": "Уровень удержания пользователей после регистрации, в месяцах",

View File

@ -18,12 +18,12 @@
"account.followers": "अनुसर्तारः", "account.followers": "अनुसर्तारः",
"account.followers.empty": "नाऽनुसर्तारो वर्तन्ते", "account.followers.empty": "नाऽनुसर्तारो वर्तन्ते",
"account.followers_counter": "{count, plural, one {{counter} अनुसर्ता} two {{counter} अनुसर्तारौ} other {{counter} अनुसर्तारः}}", "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.following_counter": "{count, plural, one {{counter} अनुसृतः} two {{counter} अनुसृतौ} other {{counter} अनुसृताः}}",
"account.follows.empty": "न कोऽप्यनुसृतो वर्तते", "account.follows.empty": "न कोऽप्यनुसृतो वर्तते",
"account.follows_you": "त्वामनुसरति", "account.follows_you": "त्वामनुसरति",
"account.hide_reblogs": "@{name} मित्रस्य प्रकाशनानि छिद्यन्ताम्", "account.hide_reblogs": "@{name} मित्रस्य प्रकाशनानि छिद्यन्ताम्",
"account.joined": "Joined {date}", "account.joined": "Joined {date}",
"account.last_status": "गतसक्रियता",
"account.link_verified_on": "अन्तर्जालस्थानस्यास्य स्वामित्वं परीक्षितमासीत् {date} दिने", "account.link_verified_on": "अन्तर्जालस्थानस्यास्य स्वामित्वं परीक्षितमासीत् {date} दिने",
"account.locked_info": "एतस्या लेखायाः गुह्यता \"निषिद्ध\"इति वर्तते । स्वामी स्वयञ्चिनोति कोऽनुसर्ता भवितुमर्हतीति ।", "account.locked_info": "एतस्या लेखायाः गुह्यता \"निषिद्ध\"इति वर्तते । स्वामी स्वयञ्चिनोति कोऽनुसर्ता भवितुमर्हतीति ।",
"account.media": "सामग्री", "account.media": "सामग्री",
@ -32,7 +32,6 @@
"account.mute": "निःशब्दम् @{name}", "account.mute": "निःशब्दम् @{name}",
"account.mute_notifications": "@{name} सूचनाः निष्क्रियन्ताम्", "account.mute_notifications": "@{name} सूचनाः निष्क्रियन्ताम्",
"account.muted": "निःशब्दम्", "account.muted": "निःशब्दम्",
"account.never_active": "नैव कदापि",
"account.posts": "दौत्यानि", "account.posts": "दौत्यानि",
"account.posts_with_replies": "दौत्यानि प्रत्युत्तराणि च", "account.posts_with_replies": "दौत्यानि प्रत्युत्तराणि च",
"account.report": "आविद्यताम् @{name}", "account.report": "आविद्यताम् @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} दौत्यम्} two {{counter} दौत्ये} other {{counter} दौत्यानि}}", "account.statuses_counter": "{count, plural, one {{counter} दौत्यम्} two {{counter} दौत्ये} other {{counter} दौत्यानि}}",
"account.unblock": "निषेधता नश्यताम् @{name}", "account.unblock": "निषेधता नश्यताम् @{name}",
"account.unblock_domain": "प्रदेशनिषेधता नश्यताम् {domain}", "account.unblock_domain": "प्रदेशनिषेधता नश्यताम् {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "व्यक्तिगतविवरणे मा प्रकाश्यताम्", "account.unendorse": "व्यक्तिगतविवरणे मा प्रकाश्यताम्",
"account.unfollow": "नश्यतामनुसरणम्", "account.unfollow": "नश्यतामनुसरणम्",
"account.unmute": "सशब्दम् @{name}", "account.unmute": "सशब्दम् @{name}",
"account.unmute_notifications": "@{name} सूचनाः सक्रियन्ताम्", "account.unmute_notifications": "@{name} सूचनाः सक्रियन्ताम्",
"account.unmute_short": "Unmute",
"account_note.placeholder": "टीकायोजनार्थं नुद्यताम्", "account_note.placeholder": "टीकायोजनार्थं नुद्यताम्",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "Sighiduras", "account.followers": "Sighiduras",
"account.followers.empty": "Nemos sighit ancora custa persone.", "account.followers.empty": "Nemos sighit ancora custa persone.",
"account.followers_counter": "{count, plural, one {{counter} sighidura} other {{counter} sighiduras}}", "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.following_counter": "{count, plural, one {Sighende a {counter}} other {Sighende a {counter}}}",
"account.follows.empty": "Custa persone non sighit ancora a nemos.", "account.follows.empty": "Custa persone non sighit ancora a nemos.",
"account.follows_you": "Ti sighit", "account.follows_you": "Ti sighit",
"account.hide_reblogs": "Cua is cumpartziduras de @{name}", "account.hide_reblogs": "Cua is cumpartziduras de @{name}",
"account.joined": "At aderidu su {date}", "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.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.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", "account.media": "Cuntenutu multimediale",
@ -32,7 +32,6 @@
"account.mute": "Pone a @{name} a sa muda", "account.mute": "Pone a @{name} a sa muda",
"account.mute_notifications": "Disativa is notìficas de @{name}", "account.mute_notifications": "Disativa is notìficas de @{name}",
"account.muted": "A sa muda", "account.muted": "A sa muda",
"account.never_active": "Mai",
"account.posts": "Publicatziones", "account.posts": "Publicatziones",
"account.posts_with_replies": "Publicatziones e rispostas", "account.posts_with_replies": "Publicatziones e rispostas",
"account.report": "Signala @{name}", "account.report": "Signala @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} publicatzione} other {{counter} publicatziones}}", "account.statuses_counter": "{count, plural, one {{counter} publicatzione} other {{counter} publicatziones}}",
"account.unblock": "Isbloca a @{name}", "account.unblock": "Isbloca a @{name}",
"account.unblock_domain": "Isbloca su domìniu {domain}", "account.unblock_domain": "Isbloca su domìniu {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "Non cussiges in su profilu", "account.unendorse": "Non cussiges in su profilu",
"account.unfollow": "Non sigas prus", "account.unfollow": "Non sigas prus",
"account.unmute": "Torra a ativare a @{name}", "account.unmute": "Torra a ativare a @{name}",
"account.unmute_notifications": "Ativa notìficas pro @{name}", "account.unmute_notifications": "Ativa notìficas pro @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Incarca pro agiùnghere una nota", "account_note.placeholder": "Incarca pro agiùnghere una nota",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "Followers", "account.followers": "Followers",
"account.followers.empty": "No one follows this user yet.", "account.followers.empty": "No one follows this user yet.",
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}", "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.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
"account.follows.empty": "This user doesn't follow anyone yet.", "account.follows.empty": "This user doesn't follow anyone yet.",
"account.follows_you": "Follows you", "account.follows_you": "Follows you",
"account.hide_reblogs": "Hide boosts from @{name}", "account.hide_reblogs": "Hide boosts from @{name}",
"account.joined": "{date} එක් වී ඇත", "account.joined": "{date} එක් වී ඇත",
"account.last_status": "අවසන් වරට සක්‍රීය",
"account.link_verified_on": "මෙම සබැඳියේ හිමිකාරිත්වය {date} දින පරීක්ෂා කරන ලදි", "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.locked_info": "This account privacy status is set to locked. The owner manually reviews who can follow them.",
"account.media": "මාධ්‍යය", "account.media": "මාධ්‍යය",
@ -32,7 +32,6 @@
"account.mute": "@{name} නිහඬ කරන්න", "account.mute": "@{name} නිහඬ කරන්න",
"account.mute_notifications": "Mute notifications from @{name}", "account.mute_notifications": "Mute notifications from @{name}",
"account.muted": "Muted", "account.muted": "Muted",
"account.never_active": "Never",
"account.posts": "Toots", "account.posts": "Toots",
"account.posts_with_replies": "Toots and replies", "account.posts_with_replies": "Toots and replies",
"account.report": "@{name} වාර්තා කරන්න", "account.report": "@{name} වාර්තා කරන්න",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}", "account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
"account.unblock": "@{name} අනවහිර කරන්න", "account.unblock": "@{name} අනවහිර කරන්න",
"account.unblock_domain": "{domain} වසම අනවහිර කරන්න", "account.unblock_domain": "{domain} වසම අනවහිර කරන්න",
"account.unblock_short": "Unblock",
"account.unendorse": "පැතිකඩෙහි විශේෂාංග නොකරන්න", "account.unendorse": "පැතිකඩෙහි විශේෂාංග නොකරන්න",
"account.unfollow": "Unfollow", "account.unfollow": "Unfollow",
"account.unmute": "Unmute @{name}", "account.unmute": "Unmute @{name}",
"account.unmute_notifications": "Unmute notifications from @{name}", "account.unmute_notifications": "Unmute notifications from @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "සටහන එකතු කිරීමට ක්ලික් කරන්න", "account_note.placeholder": "සටහන එකතු කිරීමට ක්ලික් කරන්න",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "Sledujúci", "account.followers": "Sledujúci",
"account.followers.empty": "Tohto používateľa ešte nikto nenásleduje.", "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.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.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
"account.follows.empty": "Tento používateľ ešte nikoho nenasleduje.", "account.follows.empty": "Tento používateľ ešte nikoho nenasleduje.",
"account.follows_you": "Nasleduje ťa", "account.follows_you": "Nasleduje ťa",
"account.hide_reblogs": "Skry vyzdvihnutia od @{name}", "account.hide_reblogs": "Skry vyzdvihnutia od @{name}",
"account.joined": "Pridal/a sa v {date}", "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.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.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á", "account.media": "Médiá",
@ -32,7 +32,6 @@
"account.mute": "Nevšímaj si @{name}", "account.mute": "Nevšímaj si @{name}",
"account.mute_notifications": "Stĺm oboznámenia od @{name}", "account.mute_notifications": "Stĺm oboznámenia od @{name}",
"account.muted": "Utíšený/á", "account.muted": "Utíšený/á",
"account.never_active": "Nikdy",
"account.posts": "Príspevky", "account.posts": "Príspevky",
"account.posts_with_replies": "Príspevky, aj s odpoveďami", "account.posts_with_replies": "Príspevky, aj s odpoveďami",
"account.report": "Nahlás @{name}", "account.report": "Nahlás @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}", "account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
"account.unblock": "Odblokuj @{name}", "account.unblock": "Odblokuj @{name}",
"account.unblock_domain": "Prestaň skrývať {domain}", "account.unblock_domain": "Prestaň skrývať {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "Nezobrazuj na profile", "account.unendorse": "Nezobrazuj na profile",
"account.unfollow": "Prestaň následovať", "account.unfollow": "Prestaň následovať",
"account.unmute": "Prestaň ignorovať @{name}", "account.unmute": "Prestaň ignorovať @{name}",
"account.unmute_notifications": "Zruš stĺmenie oboznámení od @{name}", "account.unmute_notifications": "Zruš stĺmenie oboznámení od @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Klikni pre vloženie poznámky", "account_note.placeholder": "Klikni pre vloženie poznámky",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "Sledilci", "account.followers": "Sledilci",
"account.followers.empty": "Nihče ne sledi temu uporabniku.", "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.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.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.empty": "Ta uporabnik še ne sledi nikomur.",
"account.follows_you": "Vam sledi", "account.follows_you": "Vam sledi",
"account.hide_reblogs": "Skrij spodbude od @{name}", "account.hide_reblogs": "Skrij spodbude od @{name}",
"account.joined": "Pridružen/a {date}", "account.joined": "Pridružen/a {date}",
"account.last_status": "Zadnja dejavnost",
"account.link_verified_on": "Lastništvo te povezave je bilo preverjeno {date}", "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.locked_info": "Stanje zasebnosti računa je nastavljeno na zaklenjeno. Lastnik ročno pregleda, kdo ga lahko spremlja.",
"account.media": "Mediji", "account.media": "Mediji",
@ -32,7 +32,6 @@
"account.mute": "Utišaj @{name}", "account.mute": "Utišaj @{name}",
"account.mute_notifications": "Utišaj obvestila od @{name}", "account.mute_notifications": "Utišaj obvestila od @{name}",
"account.muted": "Utišan", "account.muted": "Utišan",
"account.never_active": "Nikoli",
"account.posts": "Tuti", "account.posts": "Tuti",
"account.posts_with_replies": "Tuti in odgovori", "account.posts_with_replies": "Tuti in odgovori",
"account.report": "Prijavi @{name}", "account.report": "Prijavi @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}", "account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
"account.unblock": "Odblokiraj @{name}", "account.unblock": "Odblokiraj @{name}",
"account.unblock_domain": "Razkrij {domain}", "account.unblock_domain": "Razkrij {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "Ne vključi v profil", "account.unendorse": "Ne vključi v profil",
"account.unfollow": "Prenehaj slediti", "account.unfollow": "Prenehaj slediti",
"account.unmute": "Odtišaj @{name}", "account.unmute": "Odtišaj @{name}",
"account.unmute_notifications": "Vklopi obvestila od @{name}", "account.unmute_notifications": "Vklopi obvestila od @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Click to add a note", "account_note.placeholder": "Click to add a note",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "Ndjekës", "account.followers": "Ndjekës",
"account.followers.empty": "Këtë përdorues ende se ndjek kush.", "account.followers.empty": "Këtë përdorues ende se ndjek kush.",
"account.followers_counter": "{count, plural, one {{counter} Ndjekës} other {{counter} Ndjekës}}", "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.following_counter": "{count, plural, one {{counter} i Ndjekur} other {{counter} të Ndjekur}}",
"account.follows.empty": "Ky përdorues ende sndjek kënd.", "account.follows.empty": "Ky përdorues ende sndjek kënd.",
"account.follows_you": "Ju ndjek", "account.follows_you": "Ju ndjek",
"account.hide_reblogs": "Fshih përforcime nga @{name}", "account.hide_reblogs": "Fshih përforcime nga @{name}",
"account.joined": "U bë pjesë më {date}", "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.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.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", "account.media": "Media",
@ -32,7 +32,6 @@
"account.mute": "Heshtoni @{name}", "account.mute": "Heshtoni @{name}",
"account.mute_notifications": "Heshtoji njoftimet prej @{name}", "account.mute_notifications": "Heshtoji njoftimet prej @{name}",
"account.muted": "Heshtuar", "account.muted": "Heshtuar",
"account.never_active": "Kurrë",
"account.posts": "Mesazhe", "account.posts": "Mesazhe",
"account.posts_with_replies": "Mesazhe dhe përgjigje", "account.posts_with_replies": "Mesazhe dhe përgjigje",
"account.report": "Raportojeni @{name}", "account.report": "Raportojeni @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Mesazh} other {{counter} Mesazhe}}", "account.statuses_counter": "{count, plural, one {{counter} Mesazh} other {{counter} Mesazhe}}",
"account.unblock": "Zhbllokoje @{name}", "account.unblock": "Zhbllokoje @{name}",
"account.unblock_domain": "Zhblloko përkatësinë {domain}", "account.unblock_domain": "Zhblloko përkatësinë {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "Mos e përfshi në profil", "account.unendorse": "Mos e përfshi në profil",
"account.unfollow": "Resht së ndjekuri", "account.unfollow": "Resht së ndjekuri",
"account.unmute": "Ktheji zërin @{name}", "account.unmute": "Ktheji zërin @{name}",
"account.unmute_notifications": "Hiqua ndalimin e shfaqjes njoftimeve nga @{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", "account_note.placeholder": "Klikoni për të shtuar shënim",
"admin.dashboard.daily_retention": "Shkallë mbajtjeje përdoruesi, në ditë, pas regjistrimit", "admin.dashboard.daily_retention": "Shkallë mbajtjeje përdoruesi, në ditë, pas regjistrimit",
"admin.dashboard.monthly_retention": "Shkallë mbajtjeje përdoruesi, në muaj, pas regjistrimit", "admin.dashboard.monthly_retention": "Shkallë mbajtjeje përdoruesi, në muaj, pas regjistrimit",

View File

@ -18,12 +18,12 @@
"account.followers": "Pratioca", "account.followers": "Pratioca",
"account.followers.empty": "No one follows this user yet.", "account.followers.empty": "No one follows this user yet.",
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}", "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.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
"account.follows.empty": "This user doesn't follow anyone yet.", "account.follows.empty": "This user doesn't follow anyone yet.",
"account.follows_you": "Prati Vas", "account.follows_you": "Prati Vas",
"account.hide_reblogs": "Sakrij podrške koje daje korisnika @{name}", "account.hide_reblogs": "Sakrij podrške koje daje korisnika @{name}",
"account.joined": "Joined {date}", "account.joined": "Joined {date}",
"account.last_status": "Last active",
"account.link_verified_on": "Ownership of this link was checked on {date}", "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.locked_info": "This account privacy status is set to locked. The owner manually reviews who can follow them.",
"account.media": "Mediji", "account.media": "Mediji",
@ -32,7 +32,6 @@
"account.mute": "Ućutkaj korisnika @{name}", "account.mute": "Ućutkaj korisnika @{name}",
"account.mute_notifications": "Isključi obaveštenja od korisnika @{name}", "account.mute_notifications": "Isključi obaveštenja od korisnika @{name}",
"account.muted": "Muted", "account.muted": "Muted",
"account.never_active": "Never",
"account.posts": "Statusa", "account.posts": "Statusa",
"account.posts_with_replies": "Toots with replies", "account.posts_with_replies": "Toots with replies",
"account.report": "Prijavi @{name}", "account.report": "Prijavi @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}", "account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
"account.unblock": "Odblokiraj korisnika @{name}", "account.unblock": "Odblokiraj korisnika @{name}",
"account.unblock_domain": "Odblokiraj domen {domain}", "account.unblock_domain": "Odblokiraj domen {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "Don't feature on profile", "account.unendorse": "Don't feature on profile",
"account.unfollow": "Otprati", "account.unfollow": "Otprati",
"account.unmute": "Ukloni ućutkavanje korisniku @{name}", "account.unmute": "Ukloni ućutkavanje korisniku @{name}",
"account.unmute_notifications": "Uključi nazad obaveštenja od korisnika @{name}", "account.unmute_notifications": "Uključi nazad obaveštenja od korisnika @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Click to add a note", "account_note.placeholder": "Click to add a note",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "Пратиоци", "account.followers": "Пратиоци",
"account.followers.empty": "Тренутно нико не прати овог корисника.", "account.followers.empty": "Тренутно нико не прати овог корисника.",
"account.followers_counter": "{count, plural, one {{counter} пратилац} few {{counter} пратиоца} other {{counter} пратилаца}}", "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.following_counter": "{count, plural, one {{counter} прати} few {{counter} прати} other {{counter} прати}}",
"account.follows.empty": "Корисник тренутно не прати никога.", "account.follows.empty": "Корисник тренутно не прати никога.",
"account.follows_you": "Прати Вас", "account.follows_you": "Прати Вас",
"account.hide_reblogs": "Сакриј подршке које даје корисника @{name}", "account.hide_reblogs": "Сакриј подршке које даје корисника @{name}",
"account.joined": "Придружио/ла се {date}", "account.joined": "Придружио/ла се {date}",
"account.last_status": "Последњи пут активан/на",
"account.link_verified_on": "Власништво над овом везом је проверено {date}", "account.link_verified_on": "Власништво над овом везом је проверено {date}",
"account.locked_info": "Статус приватности овог налога је подешен на закључано. Власник ручно прегледа ко га може пратити.", "account.locked_info": "Статус приватности овог налога је подешен на закључано. Власник ручно прегледа ко га може пратити.",
"account.media": "Медији", "account.media": "Медији",
@ -32,7 +32,6 @@
"account.mute": "Ућуткај корисника @{name}", "account.mute": "Ућуткај корисника @{name}",
"account.mute_notifications": "Искључи обавештења од корисника @{name}", "account.mute_notifications": "Искључи обавештења од корисника @{name}",
"account.muted": "Ућуткан", "account.muted": "Ућуткан",
"account.never_active": "Никада",
"account.posts": "Трубе", "account.posts": "Трубе",
"account.posts_with_replies": "Трубе и одговори", "account.posts_with_replies": "Трубе и одговори",
"account.report": "Пријави @{name}", "account.report": "Пријави @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} објава} few {{counter} објаве} other {{counter} објава}}", "account.statuses_counter": "{count, plural, one {{counter} објава} few {{counter} објаве} other {{counter} објава}}",
"account.unblock": "Одблокирај корисника @{name}", "account.unblock": "Одблокирај корисника @{name}",
"account.unblock_domain": "Одблокирај домен {domain}", "account.unblock_domain": "Одблокирај домен {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "Не истичи на налогу", "account.unendorse": "Не истичи на налогу",
"account.unfollow": "Отпрати", "account.unfollow": "Отпрати",
"account.unmute": "Уклони ућуткавање кориснику @{name}", "account.unmute": "Уклони ућуткавање кориснику @{name}",
"account.unmute_notifications": "Укључи назад обавештења од корисника @{name}", "account.unmute_notifications": "Укључи назад обавештења од корисника @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Click to add a note", "account_note.placeholder": "Click to add a note",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "Följare", "account.followers": "Följare",
"account.followers.empty": "Ingen följer denna användare än.", "account.followers.empty": "Ingen följer denna användare än.",
"account.followers_counter": "{count, plural, one {{counter} Följare} other {{counter} Följare}}", "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.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.empty": "Denna användare följer inte någon än.",
"account.follows_you": "Följer dig", "account.follows_you": "Följer dig",
"account.hide_reblogs": "Dölj knuffar från @{name}", "account.hide_reblogs": "Dölj knuffar från @{name}",
"account.joined": "Gick med {date}", "account.joined": "Gick med {date}",
"account.last_status": "Senast aktiv",
"account.link_verified_on": "Ägarskap för detta konto kontrollerades den {date}", "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.locked_info": "Detta konto har låst integritetsstatus. Ägaren väljer manuellt vem som kan följa.",
"account.media": "Media", "account.media": "Media",
@ -32,7 +32,6 @@
"account.mute": "Tysta @{name}", "account.mute": "Tysta @{name}",
"account.mute_notifications": "Stäng av notifieringar från @{name}", "account.mute_notifications": "Stäng av notifieringar från @{name}",
"account.muted": "Tystad", "account.muted": "Tystad",
"account.never_active": "Aldrig",
"account.posts": "Tutningar", "account.posts": "Tutningar",
"account.posts_with_replies": "Tutningar och svar", "account.posts_with_replies": "Tutningar och svar",
"account.report": "Rapportera @{name}", "account.report": "Rapportera @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural,one {{counter} Tuta} other {{counter} Tutor}}", "account.statuses_counter": "{count, plural,one {{counter} Tuta} other {{counter} Tutor}}",
"account.unblock": "Avblockera @{name}", "account.unblock": "Avblockera @{name}",
"account.unblock_domain": "Sluta dölja {domain}", "account.unblock_domain": "Sluta dölja {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "Visa inte på profil", "account.unendorse": "Visa inte på profil",
"account.unfollow": "Sluta följ", "account.unfollow": "Sluta följ",
"account.unmute": "Sluta tysta @{name}", "account.unmute": "Sluta tysta @{name}",
"account.unmute_notifications": "Återaktivera aviseringar från @{name}", "account.unmute_notifications": "Återaktivera aviseringar från @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Klicka för att lägga till anteckning", "account_note.placeholder": "Klicka för att lägga till anteckning",
"admin.dashboard.daily_retention": "Användarlojalitet per dag efter registrering", "admin.dashboard.daily_retention": "Användarlojalitet per dag efter registrering",
"admin.dashboard.monthly_retention": "Användarlojalitet per månad efter registrering", "admin.dashboard.monthly_retention": "Användarlojalitet per månad efter registrering",

View File

@ -18,12 +18,12 @@
"account.followers": "Followers", "account.followers": "Followers",
"account.followers.empty": "No one follows this user yet.", "account.followers.empty": "No one follows this user yet.",
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}", "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.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
"account.follows.empty": "This user doesn't follow anyone yet.", "account.follows.empty": "This user doesn't follow anyone yet.",
"account.follows_you": "Follows you", "account.follows_you": "Follows you",
"account.hide_reblogs": "Hide boosts from @{name}", "account.hide_reblogs": "Hide boosts from @{name}",
"account.joined": "Joined {date}", "account.joined": "Joined {date}",
"account.last_status": "Last active",
"account.link_verified_on": "Ownership of this link was checked on {date}", "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.locked_info": "This account privacy status is set to locked. The owner manually reviews who can follow them.",
"account.media": "Media", "account.media": "Media",
@ -32,7 +32,6 @@
"account.mute": "Mute @{name}", "account.mute": "Mute @{name}",
"account.mute_notifications": "Mute notifications from @{name}", "account.mute_notifications": "Mute notifications from @{name}",
"account.muted": "Muted", "account.muted": "Muted",
"account.never_active": "Never",
"account.posts": "Toots", "account.posts": "Toots",
"account.posts_with_replies": "Toots and replies", "account.posts_with_replies": "Toots and replies",
"account.report": "Report @{name}", "account.report": "Report @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}", "account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
"account.unblock": "Unblock @{name}", "account.unblock": "Unblock @{name}",
"account.unblock_domain": "Unblock domain {domain}", "account.unblock_domain": "Unblock domain {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "Don't feature on profile", "account.unendorse": "Don't feature on profile",
"account.unfollow": "Unfollow", "account.unfollow": "Unfollow",
"account.unmute": "Unmute @{name}", "account.unmute": "Unmute @{name}",
"account.unmute_notifications": "Unmute notifications from @{name}", "account.unmute_notifications": "Unmute notifications from @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Click to add a note", "account_note.placeholder": "Click to add a note",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "பின்தொடர்பவர்கள்", "account.followers": "பின்தொடர்பவர்கள்",
"account.followers.empty": "இதுவரை யாரும் இந்த பயனரைப் பின்தொடரவில்லை.", "account.followers.empty": "இதுவரை யாரும் இந்த பயனரைப் பின்தொடரவில்லை.",
"account.followers_counter": "{count, plural, one {{counter} வாசகர்} other {{counter} வாசகர்கள்}}", "account.followers_counter": "{count, plural, one {{counter} வாசகர்} other {{counter} வாசகர்கள்}}",
"account.following": "Following",
"account.following_counter": "{count, plural,one {{counter} சந்தா} other {{counter} சந்தாக்கள்}}", "account.following_counter": "{count, plural,one {{counter} சந்தா} other {{counter} சந்தாக்கள்}}",
"account.follows.empty": "இந்த பயனர் இதுவரை யாரையும் பின்தொடரவில்லை.", "account.follows.empty": "இந்த பயனர் இதுவரை யாரையும் பின்தொடரவில்லை.",
"account.follows_you": "உங்களைப் பின்தொடர்கிறார்", "account.follows_you": "உங்களைப் பின்தொடர்கிறார்",
"account.hide_reblogs": "இருந்து ஊக்கியாக மறை @{name}", "account.hide_reblogs": "இருந்து ஊக்கியாக மறை @{name}",
"account.joined": "Joined {date}", "account.joined": "Joined {date}",
"account.last_status": "கடைசி செயல்பாடு",
"account.link_verified_on": "இந்த இணைப்பை உரிமையாளர் சரிபார்க்கப்பட்டது {date}", "account.link_verified_on": "இந்த இணைப்பை உரிமையாளர் சரிபார்க்கப்பட்டது {date}",
"account.locked_info": "இந்தக் கணக்கு தனியுரிமை நிலை பூட்டப்பட்டுள்ளது. அவர்களைப் பின்தொடர்பவர் யார் என்பதை உரிமையாளர் கைமுறையாக மதிப்பாய்வு செய்கிறார்.", "account.locked_info": "இந்தக் கணக்கு தனியுரிமை நிலை பூட்டப்பட்டுள்ளது. அவர்களைப் பின்தொடர்பவர் யார் என்பதை உரிமையாளர் கைமுறையாக மதிப்பாய்வு செய்கிறார்.",
"account.media": "ஊடகங்கள்", "account.media": "ஊடகங்கள்",
@ -32,7 +32,6 @@
"account.mute": "ஊமையான @{name}", "account.mute": "ஊமையான @{name}",
"account.mute_notifications": "அறிவிப்புகளை முடக்கு @{name}", "account.mute_notifications": "அறிவிப்புகளை முடக்கு @{name}",
"account.muted": "முடக்கியது", "account.muted": "முடக்கியது",
"account.never_active": "எப்போதுமில்லை",
"account.posts": "டூட்டுகள்", "account.posts": "டூட்டுகள்",
"account.posts_with_replies": "Toots மற்றும் பதில்கள்", "account.posts_with_replies": "Toots மற்றும் பதில்கள்",
"account.report": "@{name} -ஐப் புகாரளி", "account.report": "@{name} -ஐப் புகாரளி",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} டூட்} other {{counter} டூட்டுகள்}}", "account.statuses_counter": "{count, plural, one {{counter} டூட்} other {{counter} டூட்டுகள்}}",
"account.unblock": "@{name} மீது தடை நீக்குக", "account.unblock": "@{name} மீது தடை நீக்குக",
"account.unblock_domain": "{domain} ஐ காண்பி", "account.unblock_domain": "{domain} ஐ காண்பி",
"account.unblock_short": "Unblock",
"account.unendorse": "சுயவிவரத்தில் இடம்பெற வேண்டாம்", "account.unendorse": "சுயவிவரத்தில் இடம்பெற வேண்டாம்",
"account.unfollow": "பின்தொடர்வதை நிறுத்துக", "account.unfollow": "பின்தொடர்வதை நிறுத்துக",
"account.unmute": "@{name} இன் மீது மௌனத் தடையை நீக்குக", "account.unmute": "@{name} இன் மீது மௌனத் தடையை நீக்குக",
"account.unmute_notifications": "@{name} இலிருந்து அறிவிப்புகளின் மீது மௌனத் தடையை நீக்குக", "account.unmute_notifications": "@{name} இலிருந்து அறிவிப்புகளின் மீது மௌனத் தடையை நீக்குக",
"account.unmute_short": "Unmute",
"account_note.placeholder": "குறிப்பு ஒன்றை சேர்க்க சொடுக்கவும்", "account_note.placeholder": "குறிப்பு ஒன்றை சேர்க்க சொடுக்கவும்",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "Followers", "account.followers": "Followers",
"account.followers.empty": "No one follows this user yet.", "account.followers.empty": "No one follows this user yet.",
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}", "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.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
"account.follows.empty": "This user doesn't follow anyone yet.", "account.follows.empty": "This user doesn't follow anyone yet.",
"account.follows_you": "Follows you", "account.follows_you": "Follows you",
"account.hide_reblogs": "Hide boosts from @{name}", "account.hide_reblogs": "Hide boosts from @{name}",
"account.joined": "Joined {date}", "account.joined": "Joined {date}",
"account.last_status": "Last active",
"account.link_verified_on": "Ownership of this link was checked on {date}", "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.locked_info": "This account privacy status is set to locked. The owner manually reviews who can follow them.",
"account.media": "Mûi-thé", "account.media": "Mûi-thé",
@ -32,7 +32,6 @@
"account.mute": "Mute @{name}", "account.mute": "Mute @{name}",
"account.mute_notifications": "Mute notifications from @{name}", "account.mute_notifications": "Mute notifications from @{name}",
"account.muted": "Muted", "account.muted": "Muted",
"account.never_active": "Never",
"account.posts": "Toots", "account.posts": "Toots",
"account.posts_with_replies": "Toots and replies", "account.posts_with_replies": "Toots and replies",
"account.report": "Report @{name}", "account.report": "Report @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}", "account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
"account.unblock": "Unblock @{name}", "account.unblock": "Unblock @{name}",
"account.unblock_domain": "Unblock domain {domain}", "account.unblock_domain": "Unblock domain {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "Don't feature on profile", "account.unendorse": "Don't feature on profile",
"account.unfollow": "Unfollow", "account.unfollow": "Unfollow",
"account.unmute": "Unmute @{name}", "account.unmute": "Unmute @{name}",
"account.unmute_notifications": "Unmute notifications from @{name}", "account.unmute_notifications": "Unmute notifications from @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Click to add a note", "account_note.placeholder": "Click to add a note",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "అనుచరులు", "account.followers": "అనుచరులు",
"account.followers.empty": "ఈ వినియోగదారుడిని ఇంకా ఎవరూ అనుసరించడంలేదు.", "account.followers.empty": "ఈ వినియోగదారుడిని ఇంకా ఎవరూ అనుసరించడంలేదు.",
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}", "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.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
"account.follows.empty": "ఈ వినియోగదారి ఇంకా ఎవరినీ అనుసరించడంలేదు.", "account.follows.empty": "ఈ వినియోగదారి ఇంకా ఎవరినీ అనుసరించడంలేదు.",
"account.follows_you": "మిమ్మల్ని అనుసరిస్తున్నారు", "account.follows_you": "మిమ్మల్ని అనుసరిస్తున్నారు",
"account.hide_reblogs": "@{name} నుంచి బూస్ట్ లను దాచిపెట్టు", "account.hide_reblogs": "@{name} నుంచి బూస్ట్ లను దాచిపెట్టు",
"account.joined": "Joined {date}", "account.joined": "Joined {date}",
"account.last_status": "Last active",
"account.link_verified_on": "ఈ లంకె యొక్క యాజమాన్యం {date}న పరీక్షించబడింది", "account.link_verified_on": "ఈ లంకె యొక్క యాజమాన్యం {date}న పరీక్షించబడింది",
"account.locked_info": "ఈ ఖాతా యొక్క గోప్యత స్థితి లాక్ చేయబడి వుంది. ఈ ఖాతాను ఎవరు అనుసరించవచ్చో యజమానే నిర్ణయం తీసుకుంటారు.", "account.locked_info": "ఈ ఖాతా యొక్క గోప్యత స్థితి లాక్ చేయబడి వుంది. ఈ ఖాతాను ఎవరు అనుసరించవచ్చో యజమానే నిర్ణయం తీసుకుంటారు.",
"account.media": "మీడియా", "account.media": "మీడియా",
@ -32,7 +32,6 @@
"account.mute": "@{name}ను మ్యూట్ చెయ్యి", "account.mute": "@{name}ను మ్యూట్ చెయ్యి",
"account.mute_notifications": "@{name}నుంచి ప్రకటనలను మ్యూట్ చెయ్యి", "account.mute_notifications": "@{name}నుంచి ప్రకటనలను మ్యూట్ చెయ్యి",
"account.muted": "మ్యూట్ అయినవి", "account.muted": "మ్యూట్ అయినవి",
"account.never_active": "Never",
"account.posts": "టూట్లు", "account.posts": "టూట్లు",
"account.posts_with_replies": "టూట్లు మరియు ప్రత్యుత్తరములు", "account.posts_with_replies": "టూట్లు మరియు ప్రత్యుత్తరములు",
"account.report": "@{name}పై ఫిర్యాదుచేయు", "account.report": "@{name}పై ఫిర్యాదుచేయు",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}", "account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
"account.unblock": "@{name}పై బ్లాక్ ను తొలగించు", "account.unblock": "@{name}పై బ్లాక్ ను తొలగించు",
"account.unblock_domain": "{domain}ను దాచవద్దు", "account.unblock_domain": "{domain}ను దాచవద్దు",
"account.unblock_short": "Unblock",
"account.unendorse": "ప్రొఫైల్లో చూపించవద్దు", "account.unendorse": "ప్రొఫైల్లో చూపించవద్దు",
"account.unfollow": "అనుసరించవద్దు", "account.unfollow": "అనుసరించవద్దు",
"account.unmute": "@{name}పై మ్యూట్ ని తొలగించు", "account.unmute": "@{name}పై మ్యూట్ ని తొలగించు",
"account.unmute_notifications": "@{name} నుంచి ప్రకటనలపై మ్యూట్ ని తొలగించు", "account.unmute_notifications": "@{name} నుంచి ప్రకటనలపై మ్యూట్ ని తొలగించు",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Click to add a note", "account_note.placeholder": "Click to add a note",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "ผู้ติดตาม", "account.followers": "ผู้ติดตาม",
"account.followers.empty": "ยังไม่มีใครติดตามผู้ใช้นี้", "account.followers.empty": "ยังไม่มีใครติดตามผู้ใช้นี้",
"account.followers_counter": "{count, plural, other {{counter} ผู้ติดตาม}}", "account.followers_counter": "{count, plural, other {{counter} ผู้ติดตาม}}",
"account.following": "Following",
"account.following_counter": "{count, plural, other {{counter} กำลังติดตาม}}", "account.following_counter": "{count, plural, other {{counter} กำลังติดตาม}}",
"account.follows.empty": "ผู้ใช้นี้ยังไม่ได้ติดตามใคร", "account.follows.empty": "ผู้ใช้นี้ยังไม่ได้ติดตามใคร",
"account.follows_you": "ติดตามคุณ", "account.follows_you": "ติดตามคุณ",
"account.hide_reblogs": "ซ่อนการดันจาก @{name}", "account.hide_reblogs": "ซ่อนการดันจาก @{name}",
"account.joined": "เข้าร่วมเมื่อ {date}", "account.joined": "เข้าร่วมเมื่อ {date}",
"account.last_status": "ใช้งานล่าสุด",
"account.link_verified_on": "ตรวจสอบความเป็นเจ้าของของลิงก์นี้เมื่อ {date}", "account.link_verified_on": "ตรวจสอบความเป็นเจ้าของของลิงก์นี้เมื่อ {date}",
"account.locked_info": "มีการตั้งสถานะความเป็นส่วนตัวของบัญชีนี้เป็นล็อคอยู่ เจ้าของตรวจทานผู้ที่สามารถติดตามเขาด้วยตนเอง", "account.locked_info": "มีการตั้งสถานะความเป็นส่วนตัวของบัญชีนี้เป็นล็อคอยู่ เจ้าของตรวจทานผู้ที่สามารถติดตามเขาด้วยตนเอง",
"account.media": "สื่อ", "account.media": "สื่อ",
@ -32,7 +32,6 @@
"account.mute": "ซ่อน @{name}", "account.mute": "ซ่อน @{name}",
"account.mute_notifications": "ซ่อนการแจ้งเตือนจาก @{name}", "account.mute_notifications": "ซ่อนการแจ้งเตือนจาก @{name}",
"account.muted": "ซ่อนอยู่", "account.muted": "ซ่อนอยู่",
"account.never_active": "ไม่เลย",
"account.posts": "โพสต์", "account.posts": "โพสต์",
"account.posts_with_replies": "โพสต์และการตอบกลับ", "account.posts_with_replies": "โพสต์และการตอบกลับ",
"account.report": "รายงาน @{name}", "account.report": "รายงาน @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, other {{counter} โพสต์}}", "account.statuses_counter": "{count, plural, other {{counter} โพสต์}}",
"account.unblock": "เลิกปิดกั้น @{name}", "account.unblock": "เลิกปิดกั้น @{name}",
"account.unblock_domain": "เลิกปิดกั้นโดเมน {domain}", "account.unblock_domain": "เลิกปิดกั้นโดเมน {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "ไม่แนะนำในโปรไฟล์", "account.unendorse": "ไม่แนะนำในโปรไฟล์",
"account.unfollow": "เลิกติดตาม", "account.unfollow": "เลิกติดตาม",
"account.unmute": "เลิกซ่อน @{name}", "account.unmute": "เลิกซ่อน @{name}",
"account.unmute_notifications": "เลิกซ่อนการแจ้งเตือนจาก @{name}", "account.unmute_notifications": "เลิกซ่อนการแจ้งเตือนจาก @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "คลิกเพื่อเพิ่มหมายเหตุ", "account_note.placeholder": "คลิกเพื่อเพิ่มหมายเหตุ",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "Takipçi", "account.followers": "Takipçi",
"account.followers.empty": "Henüz kimse bu kullanıcıyı takip etmiyor.", "account.followers.empty": "Henüz kimse bu kullanıcıyı takip etmiyor.",
"account.followers_counter": "{count, plural, one {{counter} Takipçi} other {{counter} Takipçi}}", "account.followers_counter": "{count, plural, one {{counter} Takipçi} other {{counter} Takipçi}}",
"account.following": "Following",
"account.following_counter": "{count, plural, one {{counter} Takip Edilen} other {{counter} Takip Edilen}}", "account.following_counter": "{count, plural, one {{counter} Takip Edilen} other {{counter} Takip Edilen}}",
"account.follows.empty": "Bu kullanıcı henüz kimseyi takip etmiyor.", "account.follows.empty": "Bu kullanıcı henüz kimseyi takip etmiyor.",
"account.follows_you": "Seni takip ediyor", "account.follows_you": "Seni takip ediyor",
"account.hide_reblogs": "@{name} kişisinin boostlarını gizle", "account.hide_reblogs": "@{name} kişisinin boostlarını gizle",
"account.joined": "{date} tarihinde katıldı", "account.joined": "{date} tarihinde katıldı",
"account.last_status": "Son etkinlik",
"account.link_verified_on": "Bu bağlantının sahipliği {date} tarihinde kontrol edildi", "account.link_verified_on": "Bu bağlantının sahipliği {date} tarihinde kontrol edildi",
"account.locked_info": "Bu hesabın gizlilik durumu kilitli olarak ayarlanmış. Sahibi, onu kimin takip edebileceğini elle inceliyor.", "account.locked_info": "Bu hesabın gizlilik durumu kilitli olarak ayarlanmış. Sahibi, onu kimin takip edebileceğini elle inceliyor.",
"account.media": "Medya", "account.media": "Medya",
@ -32,7 +32,6 @@
"account.mute": "@{name} adlı kişiyi sessize al", "account.mute": "@{name} adlı kişiyi sessize al",
"account.mute_notifications": "@{name} adlı kişinin bildirimlerini kapat", "account.mute_notifications": "@{name} adlı kişinin bildirimlerini kapat",
"account.muted": "Susturuldu", "account.muted": "Susturuldu",
"account.never_active": "Asla",
"account.posts": "Gönderiler", "account.posts": "Gönderiler",
"account.posts_with_replies": "Gönderiler ve yanıtlar", "account.posts_with_replies": "Gönderiler ve yanıtlar",
"account.report": "@{name} adlı kişiyi bildir", "account.report": "@{name} adlı kişiyi bildir",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Gönderi} other {{counter} Gönderi}}", "account.statuses_counter": "{count, plural, one {{counter} Gönderi} other {{counter} Gönderi}}",
"account.unblock": "@{name} adlı kişinin engelini kaldır", "account.unblock": "@{name} adlı kişinin engelini kaldır",
"account.unblock_domain": "{domain} alan adının engelini kaldır", "account.unblock_domain": "{domain} alan adının engelini kaldır",
"account.unblock_short": "Unblock",
"account.unendorse": "Profilde gösterme", "account.unendorse": "Profilde gösterme",
"account.unfollow": "Takibi bırak", "account.unfollow": "Takibi bırak",
"account.unmute": "@{name} adlı kişinin sesini aç", "account.unmute": "@{name} adlı kişinin sesini aç",
"account.unmute_notifications": "@{name} adlı kişinin bildirimlerini aç", "account.unmute_notifications": "@{name} adlı kişinin bildirimlerini aç",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Not eklemek için tıklayın", "account_note.placeholder": "Not eklemek için tıklayın",
"admin.dashboard.daily_retention": "Kayıttan sonra günlük kullanıcı saklama oranı", "admin.dashboard.daily_retention": "Kayıttan sonra günlük kullanıcı saklama oranı",
"admin.dashboard.monthly_retention": "Kayıttan sonra aylık kullanıcı saklama oranı", "admin.dashboard.monthly_retention": "Kayıttan sonra aylık kullanıcı saklama oranı",

View File

@ -18,12 +18,12 @@
"account.followers": "Followers", "account.followers": "Followers",
"account.followers.empty": "No one follows this user yet.", "account.followers.empty": "No one follows this user yet.",
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}", "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.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
"account.follows.empty": "This user doesn't follow anyone yet.", "account.follows.empty": "This user doesn't follow anyone yet.",
"account.follows_you": "Сезгә язылган", "account.follows_you": "Сезгә язылган",
"account.hide_reblogs": "Hide boosts from @{name}", "account.hide_reblogs": "Hide boosts from @{name}",
"account.joined": "Joined {date}", "account.joined": "Joined {date}",
"account.last_status": "Last active",
"account.link_verified_on": "Ownership of this link was checked on {date}", "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.locked_info": "This account privacy status is set to locked. The owner manually reviews who can follow them.",
"account.media": "Медиа", "account.media": "Медиа",
@ -32,7 +32,6 @@
"account.mute": "Mute @{name}", "account.mute": "Mute @{name}",
"account.mute_notifications": "Mute notifications from @{name}", "account.mute_notifications": "Mute notifications from @{name}",
"account.muted": "Muted", "account.muted": "Muted",
"account.never_active": "Беркайчан да",
"account.posts": "Toots", "account.posts": "Toots",
"account.posts_with_replies": "Toots and replies", "account.posts_with_replies": "Toots and replies",
"account.report": "Report @{name}", "account.report": "Report @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}", "account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
"account.unblock": "Unblock @{name}", "account.unblock": "Unblock @{name}",
"account.unblock_domain": "Unblock domain {domain}", "account.unblock_domain": "Unblock domain {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "Don't feature on profile", "account.unendorse": "Don't feature on profile",
"account.unfollow": "Язылынмау", "account.unfollow": "Язылынмау",
"account.unmute": "Unmute @{name}", "account.unmute": "Unmute @{name}",
"account.unmute_notifications": "Unmute notifications from @{name}", "account.unmute_notifications": "Unmute notifications from @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Click to add a note", "account_note.placeholder": "Click to add a note",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "Followers", "account.followers": "Followers",
"account.followers.empty": "No one follows this user yet.", "account.followers.empty": "No one follows this user yet.",
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}", "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.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
"account.follows.empty": "This user doesn't follow anyone yet.", "account.follows.empty": "This user doesn't follow anyone yet.",
"account.follows_you": "Follows you", "account.follows_you": "Follows you",
"account.hide_reblogs": "Hide boosts from @{name}", "account.hide_reblogs": "Hide boosts from @{name}",
"account.joined": "Joined {date}", "account.joined": "Joined {date}",
"account.last_status": "Last active",
"account.link_verified_on": "Ownership of this link was checked on {date}", "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.locked_info": "This account privacy status is set to locked. The owner manually reviews who can follow them.",
"account.media": "Media", "account.media": "Media",
@ -32,7 +32,6 @@
"account.mute": "Mute @{name}", "account.mute": "Mute @{name}",
"account.mute_notifications": "Mute notifications from @{name}", "account.mute_notifications": "Mute notifications from @{name}",
"account.muted": "Muted", "account.muted": "Muted",
"account.never_active": "Never",
"account.posts": "Toots", "account.posts": "Toots",
"account.posts_with_replies": "Toots and replies", "account.posts_with_replies": "Toots and replies",
"account.report": "Report @{name}", "account.report": "Report @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}", "account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
"account.unblock": "Unblock @{name}", "account.unblock": "Unblock @{name}",
"account.unblock_domain": "Unblock domain {domain}", "account.unblock_domain": "Unblock domain {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "Don't feature on profile", "account.unendorse": "Don't feature on profile",
"account.unfollow": "Unfollow", "account.unfollow": "Unfollow",
"account.unmute": "Unmute @{name}", "account.unmute": "Unmute @{name}",
"account.unmute_notifications": "Unmute notifications from @{name}", "account.unmute_notifications": "Unmute notifications from @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Click to add a note", "account_note.placeholder": "Click to add a note",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "Підписники", "account.followers": "Підписники",
"account.followers.empty": "Ніхто ще не підписався на цього користувача.", "account.followers.empty": "Ніхто ще не підписався на цього користувача.",
"account.followers_counter": "{count, plural, one {{counter} Підписник} few {{counter} Підписники} many {{counter} Підписників} other {{counter} Підписники}}", "account.followers_counter": "{count, plural, one {{counter} Підписник} few {{counter} Підписники} many {{counter} Підписників} other {{counter} Підписники}}",
"account.following": "Following",
"account.following_counter": "{count, plural, one {{counter} Підписка} few {{counter} Підписки} many {{counter} Підписок} other {{counter} Підписки}}", "account.following_counter": "{count, plural, one {{counter} Підписка} few {{counter} Підписки} many {{counter} Підписок} other {{counter} Підписки}}",
"account.follows.empty": "Цей користувач ще ні на кого не підписався.", "account.follows.empty": "Цей користувач ще ні на кого не підписався.",
"account.follows_you": "Підписаний(-а) на вас", "account.follows_you": "Підписаний(-а) на вас",
"account.hide_reblogs": "Сховати передмухи від @{name}", "account.hide_reblogs": "Сховати передмухи від @{name}",
"account.joined": "Долучення {date}", "account.joined": "Долучення {date}",
"account.last_status": "Крайня активність",
"account.link_verified_on": "Права власності на це посилання були перевірені {date}", "account.link_verified_on": "Права власності на це посилання були перевірені {date}",
"account.locked_info": "Статус конфіденційності цього облікового запису встановлено у заблокований. Власник вручну переглядає, хто може за ним стежити.", "account.locked_info": "Статус конфіденційності цього облікового запису встановлено у заблокований. Власник вручну переглядає, хто може за ним стежити.",
"account.media": "Медіа", "account.media": "Медіа",
@ -32,7 +32,6 @@
"account.mute": "Заглушити @{name}", "account.mute": "Заглушити @{name}",
"account.mute_notifications": "Не показувати сповіщення від @{name}", "account.mute_notifications": "Не показувати сповіщення від @{name}",
"account.muted": "Заглушений", "account.muted": "Заглушений",
"account.never_active": "Ніколи",
"account.posts": "Дмухи", "account.posts": "Дмухи",
"account.posts_with_replies": "Дмухи й відповіді", "account.posts_with_replies": "Дмухи й відповіді",
"account.report": "Поскаржитися на @{name}", "account.report": "Поскаржитися на @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Пост} few {{counter} Пости} many {{counter} Постів} other {{counter} Пости}}", "account.statuses_counter": "{count, plural, one {{counter} Пост} few {{counter} Пости} many {{counter} Постів} other {{counter} Пости}}",
"account.unblock": "Розблокувати @{name}", "account.unblock": "Розблокувати @{name}",
"account.unblock_domain": "Розблокувати {domain}", "account.unblock_domain": "Розблокувати {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "Не публікувати у профілі", "account.unendorse": "Не публікувати у профілі",
"account.unfollow": "Відписатися", "account.unfollow": "Відписатися",
"account.unmute": "Зняти глушення з @{name}", "account.unmute": "Зняти глушення з @{name}",
"account.unmute_notifications": "Показувати сповіщення від @{name}", "account.unmute_notifications": "Показувати сповіщення від @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Коментарі відсутні", "account_note.placeholder": "Коментарі відсутні",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "پیروکار", "account.followers": "پیروکار",
"account.followers.empty": "\"ہنوز اس صارف کی کوئی پیروی نہیں کرتا\".", "account.followers.empty": "\"ہنوز اس صارف کی کوئی پیروی نہیں کرتا\".",
"account.followers_counter": "{count, plural,one {{counter} پیروکار} other {{counter} پیروکار}}", "account.followers_counter": "{count, plural,one {{counter} پیروکار} other {{counter} پیروکار}}",
"account.following": "Following",
"account.following_counter": "{count, plural, one {{counter} پیروی کر رہے ہیں} other {{counter} پیروی کر رہے ہیں}}", "account.following_counter": "{count, plural, one {{counter} پیروی کر رہے ہیں} other {{counter} پیروی کر رہے ہیں}}",
"account.follows.empty": "\"یہ صارف ہنوز کسی کی پیروی نہیں کرتا ہے\".", "account.follows.empty": "\"یہ صارف ہنوز کسی کی پیروی نہیں کرتا ہے\".",
"account.follows_you": "آپ کا پیروکار ہے", "account.follows_you": "آپ کا پیروکار ہے",
"account.hide_reblogs": "@{name} سے فروغ چھپائیں", "account.hide_reblogs": "@{name} سے فروغ چھپائیں",
"account.joined": "{date} شامل ہوئے", "account.joined": "{date} شامل ہوئے",
"account.last_status": "آخری فعال",
"account.link_verified_on": "اس لنک کی ملکیت کی توثیق {date} پر کی گئی تھی", "account.link_verified_on": "اس لنک کی ملکیت کی توثیق {date} پر کی گئی تھی",
"account.locked_info": "اس اکاونٹ کا اخفائی ضابطہ مقفل ہے۔ صارف کی پیروی کون کر سکتا ہے اس کا جائزہ وہ خود لیتا ہے.", "account.locked_info": "اس اکاونٹ کا اخفائی ضابطہ مقفل ہے۔ صارف کی پیروی کون کر سکتا ہے اس کا جائزہ وہ خود لیتا ہے.",
"account.media": "وسائل", "account.media": "وسائل",
@ -32,7 +32,6 @@
"account.mute": "خاموش @{name}", "account.mute": "خاموش @{name}",
"account.mute_notifications": "@{name} سے اطلاعات خاموش کریں", "account.mute_notifications": "@{name} سے اطلاعات خاموش کریں",
"account.muted": "خاموش کردہ", "account.muted": "خاموش کردہ",
"account.never_active": "کبھی نہیں",
"account.posts": "ٹوٹ", "account.posts": "ٹوٹ",
"account.posts_with_replies": "ٹوٹ اور جوابات", "account.posts_with_replies": "ٹوٹ اور جوابات",
"account.report": "@{name} اطلاع کریں", "account.report": "@{name} اطلاع کریں",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}", "account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
"account.unblock": "@{name} کو بحال کریں", "account.unblock": "@{name} کو بحال کریں",
"account.unblock_domain": "{domain} کو نہ چھپائیں", "account.unblock_domain": "{domain} کو نہ چھپائیں",
"account.unblock_short": "Unblock",
"account.unendorse": "مشخص پر نمایاں نہ کریں", "account.unendorse": "مشخص پر نمایاں نہ کریں",
"account.unfollow": "پیروی ترک کریں", "account.unfollow": "پیروی ترک کریں",
"account.unmute": "@{name} کو با آواز کریں", "account.unmute": "@{name} کو با آواز کریں",
"account.unmute_notifications": "@{name} سے اطلاعات کو با آواز کریں", "account.unmute_notifications": "@{name} سے اطلاعات کو با آواز کریں",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Click to add a note", "account_note.placeholder": "Click to add a note",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "Người theo dõi", "account.followers": "Người theo dõi",
"account.followers.empty": "Chưa có người theo dõi nào.", "account.followers.empty": "Chưa có người theo dõi nào.",
"account.followers_counter": "{count, plural, one {{counter} Người theo dõi} other {{counter} Người theo dõi}}", "account.followers_counter": "{count, plural, one {{counter} Người theo dõi} other {{counter} Người theo dõi}}",
"account.following": "Following",
"account.following_counter": "{count, plural, one {{counter} Theo dõi} other {{counter} Theo dõi}}", "account.following_counter": "{count, plural, one {{counter} Theo dõi} other {{counter} Theo dõi}}",
"account.follows.empty": "Người này chưa theo dõi ai.", "account.follows.empty": "Người này chưa theo dõi ai.",
"account.follows_you": "Đang theo dõi bạn", "account.follows_you": "Đang theo dõi bạn",
"account.hide_reblogs": "Ẩn chia sẻ từ @{name}", "account.hide_reblogs": "Ẩn chia sẻ từ @{name}",
"account.joined": "Đã tham gia {date}", "account.joined": "Đã tham gia {date}",
"account.last_status": "Online",
"account.link_verified_on": "Liên kết này đã được xác thực vào {date}", "account.link_verified_on": "Liên kết này đã được xác thực vào {date}",
"account.locked_info": "Đây là tài khoản riêng tư. Họ sẽ tự mình xét duyệt các yêu cầu theo dõi.", "account.locked_info": "Đây là tài khoản riêng tư. Họ sẽ tự mình xét duyệt các yêu cầu theo dõi.",
"account.media": "Media", "account.media": "Media",
@ -32,7 +32,6 @@
"account.mute": "Ẩn @{name}", "account.mute": "Ẩn @{name}",
"account.mute_notifications": "Tắt thông báo từ @{name}", "account.mute_notifications": "Tắt thông báo từ @{name}",
"account.muted": "Đã ẩn", "account.muted": "Đã ẩn",
"account.never_active": "Chưa có bất cứ hoạt động nào",
"account.posts": "Tút", "account.posts": "Tút",
"account.posts_with_replies": "Trả lời", "account.posts_with_replies": "Trả lời",
"account.report": "Báo cáo @{name}", "account.report": "Báo cáo @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Tút} other {{counter} Tút}}", "account.statuses_counter": "{count, plural, one {{counter} Tút} other {{counter} Tút}}",
"account.unblock": "Bỏ chặn @{name}", "account.unblock": "Bỏ chặn @{name}",
"account.unblock_domain": "Bỏ ẩn {domain}", "account.unblock_domain": "Bỏ ẩn {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "Ngưng tôn vinh người này", "account.unendorse": "Ngưng tôn vinh người này",
"account.unfollow": "Ngưng theo dõi", "account.unfollow": "Ngưng theo dõi",
"account.unmute": "Bỏ ẩn @{name}", "account.unmute": "Bỏ ẩn @{name}",
"account.unmute_notifications": "Mở lại thông báo từ @{name}", "account.unmute_notifications": "Mở lại thông báo từ @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Nhấn để thêm", "account_note.placeholder": "Nhấn để thêm",
"admin.dashboard.daily_retention": "Tỉ lệ người dùng sau đăng ký ở lại theo ngày", "admin.dashboard.daily_retention": "Tỉ lệ người dùng sau đăng ký ở lại theo ngày",
"admin.dashboard.monthly_retention": "Tỉ lệ người dùng sau đăng ký ở lại theo tháng", "admin.dashboard.monthly_retention": "Tỉ lệ người dùng sau đăng ký ở lại theo tháng",

View File

@ -18,12 +18,12 @@
"account.followers": "ⵉⵎⴹⴼⴰⵕⵏ", "account.followers": "ⵉⵎⴹⴼⴰⵕⵏ",
"account.followers.empty": "No one follows this user yet.", "account.followers.empty": "No one follows this user yet.",
"account.followers_counter": "{count, plural, one {{counter} Follower} other {{counter} Followers}}", "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.following_counter": "{count, plural, one {{counter} Following} other {{counter} Following}}",
"account.follows.empty": "This user doesn't follow anyone yet.", "account.follows.empty": "This user doesn't follow anyone yet.",
"account.follows_you": "ⴹⴼⵕⵏ ⴽⵯⵏ", "account.follows_you": "ⴹⴼⵕⵏ ⴽⵯⵏ",
"account.hide_reblogs": "Hide boosts from @{name}", "account.hide_reblogs": "Hide boosts from @{name}",
"account.joined": "Joined {date}", "account.joined": "Joined {date}",
"account.last_status": "Last active",
"account.link_verified_on": "Ownership of this link was checked on {date}", "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.locked_info": "This account privacy status is set to locked. The owner manually reviews who can follow them.",
"account.media": "ⴰⵙⵏⵖⵎⵉⵙ", "account.media": "ⴰⵙⵏⵖⵎⵉⵙ",
@ -32,7 +32,6 @@
"account.mute": "ⵥⵥⵉⵥⵏ @{name}", "account.mute": "ⵥⵥⵉⵥⵏ @{name}",
"account.mute_notifications": "ⵥⵥⵉⵥⵏ ⵜⵉⵏⵖⵎⵉⵙⵉⵏ ⵙⴳ @{name}", "account.mute_notifications": "ⵥⵥⵉⵥⵏ ⵜⵉⵏⵖⵎⵉⵙⵉⵏ ⵙⴳ @{name}",
"account.muted": "ⵉⵜⵜⵓⵥⵉⵥⵏ", "account.muted": "ⵉⵜⵜⵓⵥⵉⵥⵏ",
"account.never_active": "ⵓⵙⴰⵔ",
"account.posts": "Toots", "account.posts": "Toots",
"account.posts_with_replies": "Toots and replies", "account.posts_with_replies": "Toots and replies",
"account.report": "Report @{name}", "account.report": "Report @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}", "account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
"account.unblock": "Unblock @{name}", "account.unblock": "Unblock @{name}",
"account.unblock_domain": "Unblock domain {domain}", "account.unblock_domain": "Unblock domain {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "Don't feature on profile", "account.unendorse": "Don't feature on profile",
"account.unfollow": "ⴽⴽⵙ ⴰⴹⴼⴼⵓⵕ", "account.unfollow": "ⴽⴽⵙ ⴰⴹⴼⴼⵓⵕ",
"account.unmute": "Unmute @{name}", "account.unmute": "Unmute @{name}",
"account.unmute_notifications": "Unmute notifications from @{name}", "account.unmute_notifications": "Unmute notifications from @{name}",
"account.unmute_short": "Unmute",
"account_note.placeholder": "Click to add a note", "account_note.placeholder": "Click to add a note",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "关注者", "account.followers": "关注者",
"account.followers.empty": "目前无人关注此用户。", "account.followers.empty": "目前无人关注此用户。",
"account.followers_counter": "被 {counter} 人关注", "account.followers_counter": "被 {counter} 人关注",
"account.following": "Following",
"account.following_counter": "正在关注 {counter} 人", "account.following_counter": "正在关注 {counter} 人",
"account.follows.empty": "此用户目前尚未关注任何人。", "account.follows.empty": "此用户目前尚未关注任何人。",
"account.follows_you": "关注了你", "account.follows_you": "关注了你",
"account.hide_reblogs": "隐藏来自 @{name} 的转嘟", "account.hide_reblogs": "隐藏来自 @{name} 的转嘟",
"account.joined": "加入于 {date}", "account.joined": "加入于 {date}",
"account.last_status": "最近活动",
"account.link_verified_on": "此链接的所有权已在 {date} 检查", "account.link_verified_on": "此链接的所有权已在 {date} 检查",
"account.locked_info": "此账户已锁嘟。账户的主人会手动审核关注者。", "account.locked_info": "此账户已锁嘟。账户的主人会手动审核关注者。",
"account.media": "媒体", "account.media": "媒体",
@ -32,7 +32,6 @@
"account.mute": "隐藏 @{name}", "account.mute": "隐藏 @{name}",
"account.mute_notifications": "隐藏来自 @{name} 的通知", "account.mute_notifications": "隐藏来自 @{name} 的通知",
"account.muted": "已隐藏", "account.muted": "已隐藏",
"account.never_active": "从未活跃",
"account.posts": "嘟文", "account.posts": "嘟文",
"account.posts_with_replies": "嘟文和回复", "account.posts_with_replies": "嘟文和回复",
"account.report": "举报 @{name}", "account.report": "举报 @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{counter} 条嘟文", "account.statuses_counter": "{counter} 条嘟文",
"account.unblock": "解除屏蔽 @{name}", "account.unblock": "解除屏蔽 @{name}",
"account.unblock_domain": "不再屏蔽 {domain} 实例", "account.unblock_domain": "不再屏蔽 {domain} 实例",
"account.unblock_short": "Unblock",
"account.unendorse": "不在个人资料中推荐此用户", "account.unendorse": "不在个人资料中推荐此用户",
"account.unfollow": "取消关注", "account.unfollow": "取消关注",
"account.unmute": "不再隐藏 @{name}", "account.unmute": "不再隐藏 @{name}",
"account.unmute_notifications": "不再隐藏来自 @{name} 的通知", "account.unmute_notifications": "不再隐藏来自 @{name} 的通知",
"account.unmute_short": "Unmute",
"account_note.placeholder": "点击添加备注", "account_note.placeholder": "点击添加备注",
"admin.dashboard.daily_retention": "注册后用户留存率(按日计算)", "admin.dashboard.daily_retention": "注册后用户留存率(按日计算)",
"admin.dashboard.monthly_retention": "注册后用户留存率(按月计算)", "admin.dashboard.monthly_retention": "注册后用户留存率(按月计算)",

View File

@ -18,12 +18,12 @@
"account.followers": "關注者", "account.followers": "關注者",
"account.followers.empty": "尚未有人關注這位使用者。", "account.followers.empty": "尚未有人關注這位使用者。",
"account.followers_counter": "有 {count, plural,one {{counter} 個} other {{counter} 個}}關注者", "account.followers_counter": "有 {count, plural,one {{counter} 個} other {{counter} 個}}關注者",
"account.following": "Following",
"account.following_counter": "正在關注 {count, plural,one {{counter}}other {{counter} 人}}", "account.following_counter": "正在關注 {count, plural,one {{counter}}other {{counter} 人}}",
"account.follows.empty": "這位使用者尚未關注任何人。", "account.follows.empty": "這位使用者尚未關注任何人。",
"account.follows_you": "關注你", "account.follows_you": "關注你",
"account.hide_reblogs": "隱藏 @{name} 的轉推", "account.hide_reblogs": "隱藏 @{name} 的轉推",
"account.joined": "於 {date} 加入", "account.joined": "於 {date} 加入",
"account.last_status": "上次活躍時間",
"account.link_verified_on": "此連結的所有權已在 {date} 檢查過", "account.link_verified_on": "此連結的所有權已在 {date} 檢查過",
"account.locked_info": "這位使用者將私隱設定為「不公開」,會手動審批誰能關注他/她。", "account.locked_info": "這位使用者將私隱設定為「不公開」,會手動審批誰能關注他/她。",
"account.media": "媒體", "account.media": "媒體",
@ -32,7 +32,6 @@
"account.mute": "將 @{name} 靜音", "account.mute": "將 @{name} 靜音",
"account.mute_notifications": "將來自 @{name} 的通知靜音", "account.mute_notifications": "將來自 @{name} 的通知靜音",
"account.muted": "靜音", "account.muted": "靜音",
"account.never_active": "永不",
"account.posts": "文章", "account.posts": "文章",
"account.posts_with_replies": "包含回覆的文章", "account.posts_with_replies": "包含回覆的文章",
"account.report": "舉報 @{name}", "account.report": "舉報 @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural,one {{counter} 篇}other {{counter} 篇}}文章", "account.statuses_counter": "{count, plural,one {{counter} 篇}other {{counter} 篇}}文章",
"account.unblock": "解除對 @{name} 的封鎖", "account.unblock": "解除對 @{name} 的封鎖",
"account.unblock_domain": "解除對域名 {domain} 的封鎖", "account.unblock_domain": "解除對域名 {domain} 的封鎖",
"account.unblock_short": "Unblock",
"account.unendorse": "不再於個人資料頁面推薦對方", "account.unendorse": "不再於個人資料頁面推薦對方",
"account.unfollow": "取消關注", "account.unfollow": "取消關注",
"account.unmute": "取消 @{name} 的靜音", "account.unmute": "取消 @{name} 的靜音",
"account.unmute_notifications": "取消來自 @{name} 通知的靜音", "account.unmute_notifications": "取消來自 @{name} 通知的靜音",
"account.unmute_short": "Unmute",
"account_note.placeholder": "按此添加備注", "account_note.placeholder": "按此添加備注",
"admin.dashboard.daily_retention": "User retention rate by day after sign-up", "admin.dashboard.daily_retention": "User retention rate by day after sign-up",
"admin.dashboard.monthly_retention": "User retention rate by month after sign-up", "admin.dashboard.monthly_retention": "User retention rate by month after sign-up",

View File

@ -18,12 +18,12 @@
"account.followers": "跟隨者", "account.followers": "跟隨者",
"account.followers.empty": "尚未有人跟隨這位使用者。", "account.followers.empty": "尚未有人跟隨這位使用者。",
"account.followers_counter": "被 {count, plural,one {{counter} 人}other {{counter} 人}} 跟隨", "account.followers_counter": "被 {count, plural,one {{counter} 人}other {{counter} 人}} 跟隨",
"account.following": "Following",
"account.following_counter": "正在跟隨 {count, plural,one {{counter}}other {{counter} 人}}", "account.following_counter": "正在跟隨 {count, plural,one {{counter}}other {{counter} 人}}",
"account.follows.empty": "這位使用者尚未跟隨任何人。", "account.follows.empty": "這位使用者尚未跟隨任何人。",
"account.follows_you": "跟隨了您", "account.follows_you": "跟隨了您",
"account.hide_reblogs": "隱藏來自 @{name} 的轉嘟", "account.hide_reblogs": "隱藏來自 @{name} 的轉嘟",
"account.joined": "加入於 {date}", "account.joined": "加入於 {date}",
"account.last_status": "上次活躍時間",
"account.link_verified_on": "已在 {date} 檢查此連結的擁有者權限", "account.link_verified_on": "已在 {date} 檢查此連結的擁有者權限",
"account.locked_info": "此帳戶的隱私狀態被設為鎖定。該擁有者會手動審核能跟隨此帳戶的人。", "account.locked_info": "此帳戶的隱私狀態被設為鎖定。該擁有者會手動審核能跟隨此帳戶的人。",
"account.media": "媒體", "account.media": "媒體",
@ -32,7 +32,6 @@
"account.mute": "靜音 @{name}", "account.mute": "靜音 @{name}",
"account.mute_notifications": "靜音來自 @{name} 的通知", "account.mute_notifications": "靜音來自 @{name} 的通知",
"account.muted": "已靜音", "account.muted": "已靜音",
"account.never_active": "永不",
"account.posts": "嘟文", "account.posts": "嘟文",
"account.posts_with_replies": "嘟文與回覆", "account.posts_with_replies": "嘟文與回覆",
"account.report": "檢舉 @{name}", "account.report": "檢舉 @{name}",
@ -42,10 +41,12 @@
"account.statuses_counter": "{count, plural,one {{counter} 則}other {{counter} 則}}嘟文", "account.statuses_counter": "{count, plural,one {{counter} 則}other {{counter} 則}}嘟文",
"account.unblock": "取消封鎖 @{name}", "account.unblock": "取消封鎖 @{name}",
"account.unblock_domain": "取消封鎖域名 {domain}", "account.unblock_domain": "取消封鎖域名 {domain}",
"account.unblock_short": "Unblock",
"account.unendorse": "不再於個人資料頁面推薦對方", "account.unendorse": "不再於個人資料頁面推薦對方",
"account.unfollow": "取消跟隨", "account.unfollow": "取消跟隨",
"account.unmute": "取消靜音 @{name}", "account.unmute": "取消靜音 @{name}",
"account.unmute_notifications": "重新接收來自 @{name} 的通知", "account.unmute_notifications": "重新接收來自 @{name} 的通知",
"account.unmute_short": "Unmute",
"account_note.placeholder": "按此添加備注", "account_note.placeholder": "按此添加備注",
"admin.dashboard.daily_retention": "註冊後使用者存留率(日)", "admin.dashboard.daily_retention": "註冊後使用者存留率(日)",
"admin.dashboard.monthly_retention": "註冊後使用者存留率(月)", "admin.dashboard.monthly_retention": "註冊後使用者存留率(月)",

View File

@ -143,10 +143,15 @@ html {
.box-widget input[type="password"], .box-widget input[type="password"],
.box-widget textarea, .box-widget textarea,
.statuses-grid .detailed-status, .statuses-grid .detailed-status,
.report-dialog-modal__textarea,
.audio-player { .audio-player {
border: 1px solid lighten($ui-base-color, 8%); border: 1px solid lighten($ui-base-color, 8%);
} }
.report-dialog-modal .dialog-option .poll__input {
color: $white;
}
.search__input { .search__input {
@media screen and (max-width: $no-gap-breakpoint) { @media screen and (max-width: $no-gap-breakpoint) {
border-top: 0; border-top: 0;
@ -342,6 +347,7 @@ html {
.mute-modal, .mute-modal,
.block-modal, .block-modal,
.report-modal, .report-modal,
.report-dialog-modal,
.embed-modal, .embed-modal,
.error-modal, .error-modal,
.onboarding-modal, .onboarding-modal,

Some files were not shown because too many files have changed in this diff Show More