Merge commit 'c1f398ae93
' into kb-draft-15.9-lts
This commit is contained in:
commit
3eead356e7
207 changed files with 6055 additions and 3148 deletions
|
@ -50,7 +50,7 @@ OTP_SECRET=
|
||||||
# Must be available (and set to same values) for all server processes
|
# Must be available (and set to same values) for all server processes
|
||||||
# These are private/secret values, do not share outside hosting environment
|
# These are private/secret values, do not share outside hosting environment
|
||||||
# Use `bin/rails db:encryption:init` to generate fresh secrets
|
# Use `bin/rails db:encryption:init` to generate fresh secrets
|
||||||
# Do not change these secrets once in use, as this would cause data loss and other issues
|
# Do NOT change these secrets once in use, as this would cause data loss and other issues
|
||||||
# ------------------
|
# ------------------
|
||||||
# ACTIVE_RECORD_ENCRYPTION_DETERMINISTIC_KEY=
|
# ACTIVE_RECORD_ENCRYPTION_DETERMINISTIC_KEY=
|
||||||
# ACTIVE_RECORD_ENCRYPTION_KEY_DERIVATION_SALT=
|
# ACTIVE_RECORD_ENCRYPTION_KEY_DERIVATION_SALT=
|
||||||
|
|
4
.github/workflows/build-security.yml
vendored
4
.github/workflows/build-security.yml
vendored
|
@ -24,8 +24,6 @@ jobs:
|
||||||
uses: ./.github/workflows/build-container-image.yml
|
uses: ./.github/workflows/build-container-image.yml
|
||||||
with:
|
with:
|
||||||
file_to_build: Dockerfile
|
file_to_build: Dockerfile
|
||||||
platforms: linux/amd64,linux/arm64
|
|
||||||
use_native_arm64_builder: true
|
|
||||||
cache: false
|
cache: false
|
||||||
push_to_images: |
|
push_to_images: |
|
||||||
tootsuite/mastodon
|
tootsuite/mastodon
|
||||||
|
@ -46,8 +44,6 @@ jobs:
|
||||||
uses: ./.github/workflows/build-container-image.yml
|
uses: ./.github/workflows/build-container-image.yml
|
||||||
with:
|
with:
|
||||||
file_to_build: streaming/Dockerfile
|
file_to_build: streaming/Dockerfile
|
||||||
platforms: linux/amd64,linux/arm64
|
|
||||||
use_native_arm64_builder: true
|
|
||||||
cache: false
|
cache: false
|
||||||
push_to_images: |
|
push_to_images: |
|
||||||
tootsuite/mastodon-streaming
|
tootsuite/mastodon-streaming
|
||||||
|
|
35
CHANGELOG.md
35
CHANGELOG.md
|
@ -2,6 +2,41 @@
|
||||||
|
|
||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
|
## [4.3.4] - 2025-02-27
|
||||||
|
|
||||||
|
### Security
|
||||||
|
|
||||||
|
- Update dependencies
|
||||||
|
- Change HTML sanitization to remove unusable and unused `embed` tag (#34021 by @ClearlyClaire, [GHSA-mq2m-hr29-8gqf](https://github.com/mastodon/mastodon/security/advisories/GHSA-mq2m-hr29-8gqf))
|
||||||
|
- Fix rate-limit on sign-up email verification ([GHSA-v39f-c9jj-8w7h](https://github.com/mastodon/mastodon/security/advisories/GHSA-v39f-c9jj-8w7h))
|
||||||
|
- Fix improper disclosure of domain blocks to unverified users ([GHSA-94h4-fj37-c825](https://github.com/mastodon/mastodon/security/advisories/GHSA-94h4-fj37-c825))
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Change preview cards to be shown when Content Warnings are expanded (#33827 by @ClearlyClaire)
|
||||||
|
- Change warnings against changing encryption secrets to be even more noticeable (#33631 by @ClearlyClaire)
|
||||||
|
- Change `mastodon:setup` to prevent overwriting already-configured servers (#33603, #33616, and #33684 by @ClearlyClaire and @mjankowski)
|
||||||
|
- Change notifications from moderators to not be filtered (#32974 and #33654 by @ClearlyClaire and @mjankowski)
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Fix `GET /api/v2/notifications/:id` and `POST /api/v2/notifications/:id/dismiss` for ungrouped notifications (#33990 by @ClearlyClaire)
|
||||||
|
- Fix issue with some versions of libvips on some systems (#33853 by @kleisauke)
|
||||||
|
- Fix handling of duplicate mentions in incoming status `Update` (#33911 by @ClearlyClaire)
|
||||||
|
- Fix inefficiencies in timeline generation (#33839 and #33842 by @ClearlyClaire)
|
||||||
|
- Fix emoji rewrite adding unnecessary curft to the DOM for most emoji (#33818 by @ClearlyClaire)
|
||||||
|
- Fix `tootctl feeds build` not building list timelines (#33783 by @ClearlyClaire)
|
||||||
|
- Fix flaky test in `/api/v2/notifications` tests (#33773 by @ClearlyClaire)
|
||||||
|
- Fix incorrect signature after HTTP redirect (#33757 and #33769 by @ClearlyClaire)
|
||||||
|
- Fix polls not being validated on edition (#33755 by @ClearlyClaire)
|
||||||
|
- Fix media preview height in compose form when 3 or more images are attached (#33571 by @ClearlyClaire)
|
||||||
|
- Fix preview card sizing in “Author attribution” in profile settings (#33482 by @ClearlyClaire)
|
||||||
|
- Fix processing of incoming notifications for unfilterable types (#33429 by @ClearlyClaire)
|
||||||
|
- Fix featured tags for remote accounts not being kept up to date (#33372, #33406, and #33425 by @ClearlyClaire and @mjankowski)
|
||||||
|
- Fix notification polling showing a loading bar in web UI (#32960 by @Gargron)
|
||||||
|
- Fix accounts table long display name (#29316 by @WebCoder49)
|
||||||
|
- Fix exclusive lists interfering with notifications (#28162 by @ShadowJonathan)
|
||||||
|
|
||||||
## [4.3.3] - 2025-01-16
|
## [4.3.3] - 2025-01-16
|
||||||
|
|
||||||
### Security
|
### Security
|
||||||
|
|
20
Gemfile.lock
20
Gemfile.lock
|
@ -266,7 +266,7 @@ GEM
|
||||||
faraday (~> 1.0)
|
faraday (~> 1.0)
|
||||||
fast_blank (1.0.1)
|
fast_blank (1.0.1)
|
||||||
fastimage (2.3.1)
|
fastimage (2.3.1)
|
||||||
ffi (1.16.3)
|
ffi (1.17.1)
|
||||||
ffi-compiler (1.3.2)
|
ffi-compiler (1.3.2)
|
||||||
ffi (>= 1.15.5)
|
ffi (>= 1.15.5)
|
||||||
rake
|
rake
|
||||||
|
@ -410,7 +410,7 @@ GEM
|
||||||
llhttp-ffi (0.5.0)
|
llhttp-ffi (0.5.0)
|
||||||
ffi-compiler (~> 1.0)
|
ffi-compiler (~> 1.0)
|
||||||
rake (~> 13.0)
|
rake (~> 13.0)
|
||||||
logger (1.6.1)
|
logger (1.6.6)
|
||||||
lograge (0.14.0)
|
lograge (0.14.0)
|
||||||
actionpack (>= 4)
|
actionpack (>= 4)
|
||||||
activesupport (>= 4)
|
activesupport (>= 4)
|
||||||
|
@ -437,7 +437,7 @@ GEM
|
||||||
mime-types-data (~> 3.2015)
|
mime-types-data (~> 3.2015)
|
||||||
mime-types-data (3.2024.0820)
|
mime-types-data (3.2024.0820)
|
||||||
mini_mime (1.1.5)
|
mini_mime (1.1.5)
|
||||||
mini_portile2 (2.8.7)
|
mini_portile2 (2.8.8)
|
||||||
minitest (5.25.1)
|
minitest (5.25.1)
|
||||||
msgpack (1.7.2)
|
msgpack (1.7.2)
|
||||||
multi_json (1.15.0)
|
multi_json (1.15.0)
|
||||||
|
@ -447,7 +447,7 @@ GEM
|
||||||
uri
|
uri
|
||||||
net-http-persistent (4.0.2)
|
net-http-persistent (4.0.2)
|
||||||
connection_pool (~> 2.2)
|
connection_pool (~> 2.2)
|
||||||
net-imap (0.4.15)
|
net-imap (0.4.19)
|
||||||
date
|
date
|
||||||
net-protocol
|
net-protocol
|
||||||
net-ldap (0.19.0)
|
net-ldap (0.19.0)
|
||||||
|
@ -455,10 +455,10 @@ GEM
|
||||||
net-protocol
|
net-protocol
|
||||||
net-protocol (0.2.2)
|
net-protocol (0.2.2)
|
||||||
timeout
|
timeout
|
||||||
net-smtp (0.5.0)
|
net-smtp (0.5.1)
|
||||||
net-protocol
|
net-protocol
|
||||||
nio4r (2.7.3)
|
nio4r (2.7.3)
|
||||||
nokogiri (1.16.8)
|
nokogiri (1.18.3)
|
||||||
mini_portile2 (~> 2.8.2)
|
mini_portile2 (~> 2.8.2)
|
||||||
racc (~> 1.4)
|
racc (~> 1.4)
|
||||||
oj (3.16.6)
|
oj (3.16.6)
|
||||||
|
@ -619,7 +619,7 @@ GEM
|
||||||
activesupport (>= 3.0.0)
|
activesupport (>= 3.0.0)
|
||||||
raabro (1.4.0)
|
raabro (1.4.0)
|
||||||
racc (1.8.1)
|
racc (1.8.1)
|
||||||
rack (2.2.9)
|
rack (2.2.11)
|
||||||
rack-attack (6.7.0)
|
rack-attack (6.7.0)
|
||||||
rack (>= 1.0, < 4)
|
rack (>= 1.0, < 4)
|
||||||
rack-cors (2.0.2)
|
rack-cors (2.0.2)
|
||||||
|
@ -770,7 +770,7 @@ GEM
|
||||||
ruby-saml (1.17.0)
|
ruby-saml (1.17.0)
|
||||||
nokogiri (>= 1.13.10)
|
nokogiri (>= 1.13.10)
|
||||||
rexml
|
rexml
|
||||||
ruby-vips (2.2.2)
|
ruby-vips (2.2.3)
|
||||||
ffi (~> 1.12)
|
ffi (~> 1.12)
|
||||||
logger
|
logger
|
||||||
ruby2_keywords (0.0.5)
|
ruby2_keywords (0.0.5)
|
||||||
|
@ -842,7 +842,7 @@ GEM
|
||||||
test-prof (1.4.2)
|
test-prof (1.4.2)
|
||||||
thor (1.3.2)
|
thor (1.3.2)
|
||||||
tilt (2.4.0)
|
tilt (2.4.0)
|
||||||
timeout (0.4.1)
|
timeout (0.4.3)
|
||||||
tpm-key_attestation (0.12.1)
|
tpm-key_attestation (0.12.1)
|
||||||
bindata (~> 2.4)
|
bindata (~> 2.4)
|
||||||
openssl (> 2.0)
|
openssl (> 2.0)
|
||||||
|
@ -868,7 +868,7 @@ GEM
|
||||||
unf_ext
|
unf_ext
|
||||||
unf_ext (0.0.9.1)
|
unf_ext (0.0.9.1)
|
||||||
unicode-display_width (2.5.0)
|
unicode-display_width (2.5.0)
|
||||||
uri (0.13.1)
|
uri (0.13.2)
|
||||||
validate_email (0.1.6)
|
validate_email (0.1.6)
|
||||||
activemodel (>= 3.0)
|
activemodel (>= 3.0)
|
||||||
mail (>= 2.2.5)
|
mail (>= 2.2.5)
|
||||||
|
|
|
@ -31,7 +31,7 @@ class Api::V1::Instances::DomainBlocksController < Api::V1::Instances::BaseContr
|
||||||
end
|
end
|
||||||
|
|
||||||
def show_domain_blocks_to_user?
|
def show_domain_blocks_to_user?
|
||||||
Setting.show_domain_blocks == 'users' && user_signed_in?
|
Setting.show_domain_blocks == 'users' && user_signed_in? && current_user.functional_or_moved?
|
||||||
end
|
end
|
||||||
|
|
||||||
def set_domain_blocks
|
def set_domain_blocks
|
||||||
|
@ -47,6 +47,6 @@ class Api::V1::Instances::DomainBlocksController < Api::V1::Instances::BaseContr
|
||||||
end
|
end
|
||||||
|
|
||||||
def show_rationale_for_user?
|
def show_rationale_for_user?
|
||||||
Setting.show_domain_blocks_rationale == 'users' && user_signed_in?
|
Setting.show_domain_blocks_rationale == 'users' && user_signed_in? && current_user.functional_or_moved?
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -46,7 +46,7 @@ class Api::V2::NotificationsController < Api::BaseController
|
||||||
end
|
end
|
||||||
|
|
||||||
def show
|
def show
|
||||||
@notification = current_account.notifications.without_suspended.find_by!(group_key: params[:group_key])
|
@notification = current_account.notifications.without_suspended.by_group_key(params[:group_key]).take!
|
||||||
presenter = GroupedNotificationsPresenter.new(NotificationGroup.from_notifications([@notification]))
|
presenter = GroupedNotificationsPresenter.new(NotificationGroup.from_notifications([@notification]))
|
||||||
render json: presenter, serializer: REST::DedupNotificationGroupSerializer
|
render json: presenter, serializer: REST::DedupNotificationGroupSerializer
|
||||||
end
|
end
|
||||||
|
@ -57,7 +57,7 @@ class Api::V2::NotificationsController < Api::BaseController
|
||||||
end
|
end
|
||||||
|
|
||||||
def dismiss
|
def dismiss
|
||||||
current_account.notifications.where(group_key: params[:group_key]).destroy_all
|
current_account.notifications.by_group_key(params[:group_key]).destroy_all
|
||||||
render_empty
|
render_empty
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -117,7 +117,7 @@ module SignatureVerification
|
||||||
|
|
||||||
def verify_signature_strength!
|
def verify_signature_strength!
|
||||||
raise SignatureVerificationError, 'Mastodon requires the Date header or (created) pseudo-header to be signed' unless signed_headers.include?('date') || signed_headers.include?('(created)')
|
raise SignatureVerificationError, 'Mastodon requires the Date header or (created) pseudo-header to be signed' unless signed_headers.include?('date') || signed_headers.include?('(created)')
|
||||||
raise SignatureVerificationError, 'Mastodon requires the Digest header or (request-target) pseudo-header to be signed' unless signed_headers.include?(Request::REQUEST_TARGET) || signed_headers.include?('digest')
|
raise SignatureVerificationError, 'Mastodon requires the Digest header or (request-target) pseudo-header to be signed' unless signed_headers.include?(HttpSignatureDraft::REQUEST_TARGET) || signed_headers.include?('digest')
|
||||||
raise SignatureVerificationError, 'Mastodon requires the Host header to be signed when doing a GET request' if request.get? && !signed_headers.include?('host')
|
raise SignatureVerificationError, 'Mastodon requires the Host header to be signed when doing a GET request' if request.get? && !signed_headers.include?('host')
|
||||||
raise SignatureVerificationError, 'Mastodon requires the Digest header to be signed when doing a POST request' if request.post? && !signed_headers.include?('digest')
|
raise SignatureVerificationError, 'Mastodon requires the Digest header to be signed when doing a POST request' if request.post? && !signed_headers.include?('digest')
|
||||||
end
|
end
|
||||||
|
@ -155,14 +155,14 @@ module SignatureVerification
|
||||||
def build_signed_string(include_query_string: true)
|
def build_signed_string(include_query_string: true)
|
||||||
signed_headers.map do |signed_header|
|
signed_headers.map do |signed_header|
|
||||||
case signed_header
|
case signed_header
|
||||||
when Request::REQUEST_TARGET
|
when HttpSignatureDraft::REQUEST_TARGET
|
||||||
if include_query_string
|
if include_query_string
|
||||||
"#{Request::REQUEST_TARGET}: #{request.method.downcase} #{request.original_fullpath}"
|
"#{HttpSignatureDraft::REQUEST_TARGET}: #{request.method.downcase} #{request.original_fullpath}"
|
||||||
else
|
else
|
||||||
# Current versions of Mastodon incorrectly omit the query string from the (request-target) pseudo-header.
|
# Current versions of Mastodon incorrectly omit the query string from the (request-target) pseudo-header.
|
||||||
# Therefore, temporarily support such incorrect signatures for compatibility.
|
# Therefore, temporarily support such incorrect signatures for compatibility.
|
||||||
# TODO: remove eventually some time after release of the fixed version
|
# TODO: remove eventually some time after release of the fixed version
|
||||||
"#{Request::REQUEST_TARGET}: #{request.method.downcase} #{request.path}"
|
"#{HttpSignatureDraft::REQUEST_TARGET}: #{request.method.downcase} #{request.path}"
|
||||||
end
|
end
|
||||||
when '(created)'
|
when '(created)'
|
||||||
raise SignatureVerificationError, 'Invalid pseudo-header (created) for rsa-sha256' unless signature_algorithm == 'hs2019'
|
raise SignatureVerificationError, 'Invalid pseudo-header (created) for rsa-sha256' unless signature_algorithm == 'hs2019'
|
||||||
|
|
|
@ -141,6 +141,9 @@ export const pollRecentNotifications = createDataLoadingThunk(
|
||||||
|
|
||||||
return { notifications };
|
return { notifications };
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
useLoadingBar: false,
|
||||||
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
export const processNewNotificationForGroups = createAppAsyncThunk(
|
export const processNewNotificationForGroups = createAppAsyncThunk(
|
||||||
|
@ -152,7 +155,7 @@ export const processNewNotificationForGroups = createAppAsyncThunk(
|
||||||
|
|
||||||
const showInColumn =
|
const showInColumn =
|
||||||
activeFilter === 'all'
|
activeFilter === 'all'
|
||||||
? notificationShows[notification.type]
|
? notificationShows[notification.type] !== false
|
||||||
: activeFilter === notification.type;
|
: activeFilter === notification.type;
|
||||||
|
|
||||||
if (!showInColumn) return;
|
if (!showInColumn) return;
|
||||||
|
|
|
@ -22,23 +22,23 @@ describe('emoji', () => {
|
||||||
|
|
||||||
it('does unicode', () => {
|
it('does unicode', () => {
|
||||||
expect(emojify('\uD83D\uDC69\u200D\uD83D\uDC69\u200D\uD83D\uDC66\u200D\uD83D\uDC66')).toEqual(
|
expect(emojify('\uD83D\uDC69\u200D\uD83D\uDC69\u200D\uD83D\uDC66\u200D\uD83D\uDC66')).toEqual(
|
||||||
'<picture><img draggable="false" class="emojione" alt="👩👩👦👦" title=":woman-woman-boy-boy:" src="/emoji/1f469-200d-1f469-200d-1f466-200d-1f466.svg"></picture>');
|
'<img draggable="false" class="emojione" alt="👩👩👦👦" title=":woman-woman-boy-boy:" src="/emoji/1f469-200d-1f469-200d-1f466-200d-1f466.svg">');
|
||||||
expect(emojify('👨👩👧👧')).toEqual(
|
expect(emojify('👨👩👧👧')).toEqual(
|
||||||
'<picture><img draggable="false" class="emojione" alt="👨👩👧👧" title=":man-woman-girl-girl:" src="/emoji/1f468-200d-1f469-200d-1f467-200d-1f467.svg"></picture>');
|
'<img draggable="false" class="emojione" alt="👨👩👧👧" title=":man-woman-girl-girl:" src="/emoji/1f468-200d-1f469-200d-1f467-200d-1f467.svg">');
|
||||||
expect(emojify('👩👩👦')).toEqual('<picture><img draggable="false" class="emojione" alt="👩👩👦" title=":woman-woman-boy:" src="/emoji/1f469-200d-1f469-200d-1f466.svg"></picture>');
|
expect(emojify('👩👩👦')).toEqual('<img draggable="false" class="emojione" alt="👩👩👦" title=":woman-woman-boy:" src="/emoji/1f469-200d-1f469-200d-1f466.svg">');
|
||||||
expect(emojify('\u2757')).toEqual(
|
expect(emojify('\u2757')).toEqual(
|
||||||
'<picture><img draggable="false" class="emojione" alt="❗" title=":exclamation:" src="/emoji/2757.svg"></picture>');
|
'<img draggable="false" class="emojione" alt="❗" title=":exclamation:" src="/emoji/2757.svg">');
|
||||||
});
|
});
|
||||||
|
|
||||||
it('does multiple unicode', () => {
|
it('does multiple unicode', () => {
|
||||||
expect(emojify('\u2757 #\uFE0F\u20E3')).toEqual(
|
expect(emojify('\u2757 #\uFE0F\u20E3')).toEqual(
|
||||||
'<picture><img draggable="false" class="emojione" alt="❗" title=":exclamation:" src="/emoji/2757.svg"></picture> <picture><img draggable="false" class="emojione" alt="#️⃣" title=":hash:" src="/emoji/23-20e3.svg"></picture>');
|
'<img draggable="false" class="emojione" alt="❗" title=":exclamation:" src="/emoji/2757.svg"> <img draggable="false" class="emojione" alt="#️⃣" title=":hash:" src="/emoji/23-20e3.svg">');
|
||||||
expect(emojify('\u2757#\uFE0F\u20E3')).toEqual(
|
expect(emojify('\u2757#\uFE0F\u20E3')).toEqual(
|
||||||
'<picture><img draggable="false" class="emojione" alt="❗" title=":exclamation:" src="/emoji/2757.svg"></picture><picture><img draggable="false" class="emojione" alt="#️⃣" title=":hash:" src="/emoji/23-20e3.svg"></picture>');
|
'<img draggable="false" class="emojione" alt="❗" title=":exclamation:" src="/emoji/2757.svg"><img draggable="false" class="emojione" alt="#️⃣" title=":hash:" src="/emoji/23-20e3.svg">');
|
||||||
expect(emojify('\u2757 #\uFE0F\u20E3 \u2757')).toEqual(
|
expect(emojify('\u2757 #\uFE0F\u20E3 \u2757')).toEqual(
|
||||||
'<picture><img draggable="false" class="emojione" alt="❗" title=":exclamation:" src="/emoji/2757.svg"></picture> <picture><img draggable="false" class="emojione" alt="#️⃣" title=":hash:" src="/emoji/23-20e3.svg"></picture> <picture><img draggable="false" class="emojione" alt="❗" title=":exclamation:" src="/emoji/2757.svg"></picture>');
|
'<img draggable="false" class="emojione" alt="❗" title=":exclamation:" src="/emoji/2757.svg"> <img draggable="false" class="emojione" alt="#️⃣" title=":hash:" src="/emoji/23-20e3.svg"> <img draggable="false" class="emojione" alt="❗" title=":exclamation:" src="/emoji/2757.svg">');
|
||||||
expect(emojify('foo \u2757 #\uFE0F\u20E3 bar')).toEqual(
|
expect(emojify('foo \u2757 #\uFE0F\u20E3 bar')).toEqual(
|
||||||
'foo <picture><img draggable="false" class="emojione" alt="❗" title=":exclamation:" src="/emoji/2757.svg"></picture> <picture><img draggable="false" class="emojione" alt="#️⃣" title=":hash:" src="/emoji/23-20e3.svg"></picture> bar');
|
'foo <img draggable="false" class="emojione" alt="❗" title=":exclamation:" src="/emoji/2757.svg"> <img draggable="false" class="emojione" alt="#️⃣" title=":hash:" src="/emoji/23-20e3.svg"> bar');
|
||||||
});
|
});
|
||||||
|
|
||||||
it('ignores unicode inside of tags', () => {
|
it('ignores unicode inside of tags', () => {
|
||||||
|
@ -46,16 +46,16 @@ describe('emoji', () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
it('does multiple emoji properly (issue 5188)', () => {
|
it('does multiple emoji properly (issue 5188)', () => {
|
||||||
expect(emojify('👌🌈💕')).toEqual('<picture><img draggable="false" class="emojione" alt="👌" title=":ok_hand:" src="/emoji/1f44c.svg"></picture><picture><img draggable="false" class="emojione" alt="🌈" title=":rainbow:" src="/emoji/1f308.svg"></picture><picture><img draggable="false" class="emojione" alt="💕" title=":two_hearts:" src="/emoji/1f495.svg"></picture>');
|
expect(emojify('👌🌈💕')).toEqual('<img draggable="false" class="emojione" alt="👌" title=":ok_hand:" src="/emoji/1f44c.svg"><img draggable="false" class="emojione" alt="🌈" title=":rainbow:" src="/emoji/1f308.svg"><img draggable="false" class="emojione" alt="💕" title=":two_hearts:" src="/emoji/1f495.svg">');
|
||||||
expect(emojify('👌 🌈 💕')).toEqual('<picture><img draggable="false" class="emojione" alt="👌" title=":ok_hand:" src="/emoji/1f44c.svg"></picture> <picture><img draggable="false" class="emojione" alt="🌈" title=":rainbow:" src="/emoji/1f308.svg"></picture> <picture><img draggable="false" class="emojione" alt="💕" title=":two_hearts:" src="/emoji/1f495.svg"></picture>');
|
expect(emojify('👌 🌈 💕')).toEqual('<img draggable="false" class="emojione" alt="👌" title=":ok_hand:" src="/emoji/1f44c.svg"> <img draggable="false" class="emojione" alt="🌈" title=":rainbow:" src="/emoji/1f308.svg"> <img draggable="false" class="emojione" alt="💕" title=":two_hearts:" src="/emoji/1f495.svg">');
|
||||||
});
|
});
|
||||||
|
|
||||||
it('does an emoji that has no shortcode', () => {
|
it('does an emoji that has no shortcode', () => {
|
||||||
expect(emojify('👁🗨')).toEqual('<picture><img draggable="false" class="emojione" alt="👁🗨" title="" src="/emoji/1f441-200d-1f5e8.svg"></picture>');
|
expect(emojify('👁🗨')).toEqual('<img draggable="false" class="emojione" alt="👁🗨" title="" src="/emoji/1f441-200d-1f5e8.svg">');
|
||||||
});
|
});
|
||||||
|
|
||||||
it('does an emoji whose filename is irregular', () => {
|
it('does an emoji whose filename is irregular', () => {
|
||||||
expect(emojify('↙️')).toEqual('<picture><img draggable="false" class="emojione" alt="↙️" title=":arrow_lower_left:" src="/emoji/2199.svg"></picture>');
|
expect(emojify('↙️')).toEqual('<img draggable="false" class="emojione" alt="↙️" title=":arrow_lower_left:" src="/emoji/2199.svg">');
|
||||||
});
|
});
|
||||||
|
|
||||||
it('avoid emojifying on invisible text', () => {
|
it('avoid emojifying on invisible text', () => {
|
||||||
|
@ -67,11 +67,11 @@ describe('emoji', () => {
|
||||||
|
|
||||||
it('avoid emojifying on invisible text with nested tags', () => {
|
it('avoid emojifying on invisible text with nested tags', () => {
|
||||||
expect(emojify('<span class="invisible">😄<span class="foo">bar</span>😴</span>😇'))
|
expect(emojify('<span class="invisible">😄<span class="foo">bar</span>😴</span>😇'))
|
||||||
.toEqual('<span class="invisible">😄<span class="foo">bar</span>😴</span><picture><img draggable="false" class="emojione" alt="😇" title=":innocent:" src="/emoji/1f607.svg"></picture>');
|
.toEqual('<span class="invisible">😄<span class="foo">bar</span>😴</span><img draggable="false" class="emojione" alt="😇" title=":innocent:" src="/emoji/1f607.svg">');
|
||||||
expect(emojify('<span class="invisible">😄<span class="invisible">😕</span>😴</span>😇'))
|
expect(emojify('<span class="invisible">😄<span class="invisible">😕</span>😴</span>😇'))
|
||||||
.toEqual('<span class="invisible">😄<span class="invisible">😕</span>😴</span><picture><img draggable="false" class="emojione" alt="😇" title=":innocent:" src="/emoji/1f607.svg"></picture>');
|
.toEqual('<span class="invisible">😄<span class="invisible">😕</span>😴</span><img draggable="false" class="emojione" alt="😇" title=":innocent:" src="/emoji/1f607.svg">');
|
||||||
expect(emojify('<span class="invisible">😄<br>😴</span>😇'))
|
expect(emojify('<span class="invisible">😄<br>😴</span>😇'))
|
||||||
.toEqual('<span class="invisible">😄<br>😴</span><picture><img draggable="false" class="emojione" alt="😇" title=":innocent:" src="/emoji/1f607.svg"></picture>');
|
.toEqual('<span class="invisible">😄<br>😴</span><img draggable="false" class="emojione" alt="😇" title=":innocent:" src="/emoji/1f607.svg">');
|
||||||
});
|
});
|
||||||
|
|
||||||
it('does not emojify emojis with textual presentation VS15 character', () => {
|
it('does not emojify emojis with textual presentation VS15 character', () => {
|
||||||
|
@ -81,17 +81,17 @@ describe('emoji', () => {
|
||||||
|
|
||||||
it('does a simple emoji properly', () => {
|
it('does a simple emoji properly', () => {
|
||||||
expect(emojify('♀♂'))
|
expect(emojify('♀♂'))
|
||||||
.toEqual('<picture><img draggable="false" class="emojione" alt="♀" title=":female_sign:" src="/emoji/2640.svg"></picture><picture><img draggable="false" class="emojione" alt="♂" title=":male_sign:" src="/emoji/2642.svg"></picture>');
|
.toEqual('<img draggable="false" class="emojione" alt="♀" title=":female_sign:" src="/emoji/2640.svg"><img draggable="false" class="emojione" alt="♂" title=":male_sign:" src="/emoji/2642.svg">');
|
||||||
});
|
});
|
||||||
|
|
||||||
it('does an emoji containing ZWJ properly', () => {
|
it('does an emoji containing ZWJ properly', () => {
|
||||||
expect(emojify('💂♀️💂♂️'))
|
expect(emojify('💂♀️💂♂️'))
|
||||||
.toEqual('<picture><img draggable="false" class="emojione" alt="💂\u200D♀️" title=":female-guard:" src="/emoji/1f482-200d-2640-fe0f_border.svg"></picture><picture><img draggable="false" class="emojione" alt="💂\u200D♂️" title=":male-guard:" src="/emoji/1f482-200d-2642-fe0f_border.svg"></picture>');
|
.toEqual('<img draggable="false" class="emojione" alt="💂\u200D♀️" title=":female-guard:" src="/emoji/1f482-200d-2640-fe0f_border.svg"><img draggable="false" class="emojione" alt="💂\u200D♂️" title=":male-guard:" src="/emoji/1f482-200d-2642-fe0f_border.svg">');
|
||||||
});
|
});
|
||||||
|
|
||||||
it('keeps ordering as expected (issue fixed by PR 20677)', () => {
|
it('keeps ordering as expected (issue fixed by PR 20677)', () => {
|
||||||
expect(emojify('<p>💕 <a class="hashtag" href="https://example.com/tags/foo" rel="nofollow noopener noreferrer" target="_blank">#<span>foo</span></a> test: foo.</p>'))
|
expect(emojify('<p>💕 <a class="hashtag" href="https://example.com/tags/foo" rel="nofollow noopener" target="_blank">#<span>foo</span></a> test: foo.</p>'))
|
||||||
.toEqual('<p><picture><img draggable="false" class="emojione" alt="💕" title=":two_hearts:" src="/emoji/1f495.svg"></picture> <a class="hashtag" href="https://example.com/tags/foo" rel="nofollow noopener noreferrer" target="_blank">#<span>foo</span></a> test: foo.</p>');
|
.toEqual('<p><img draggable="false" class="emojione" alt="💕" title=":two_hearts:" src="/emoji/1f495.svg"> <a class="hashtag" href="https://example.com/tags/foo" rel="nofollow noopener" target="_blank">#<span>foo</span></a> test: foo.</p>');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
@ -97,30 +97,30 @@ const emojifyTextNode = (node, customEmojis) => {
|
||||||
const { filename, shortCode } = unicodeMapping[unicode_emoji];
|
const { filename, shortCode } = unicodeMapping[unicode_emoji];
|
||||||
const title = shortCode ? `:${shortCode}:` : '';
|
const title = shortCode ? `:${shortCode}:` : '';
|
||||||
|
|
||||||
replacement = document.createElement('picture');
|
|
||||||
|
|
||||||
const isSystemTheme = !!document.body?.classList.contains('theme-system');
|
const isSystemTheme = !!document.body?.classList.contains('theme-system');
|
||||||
|
|
||||||
if(isSystemTheme) {
|
const theme = (isSystemTheme || document.body?.classList.contains('theme-mastodon-light')) ? 'light' : 'dark';
|
||||||
let source = document.createElement('source');
|
|
||||||
source.setAttribute('media', '(prefers-color-scheme: dark)');
|
|
||||||
source.setAttribute('srcset', `${assetHost}/emoji/${emojiFilename(filename, "dark")}.svg`);
|
|
||||||
replacement.appendChild(source);
|
|
||||||
}
|
|
||||||
|
|
||||||
let img = document.createElement('img');
|
const imageFilename = emojiFilename(filename, theme);
|
||||||
|
|
||||||
|
const img = document.createElement('img');
|
||||||
img.setAttribute('draggable', 'false');
|
img.setAttribute('draggable', 'false');
|
||||||
img.setAttribute('class', 'emojione');
|
img.setAttribute('class', 'emojione');
|
||||||
img.setAttribute('alt', unicode_emoji);
|
img.setAttribute('alt', unicode_emoji);
|
||||||
img.setAttribute('title', title);
|
img.setAttribute('title', title);
|
||||||
|
img.setAttribute('src', `${assetHost}/emoji/${imageFilename}.svg`);
|
||||||
|
|
||||||
let theme = "light";
|
if (isSystemTheme && imageFilename !== emojiFilename(filename, 'dark')) {
|
||||||
|
replacement = document.createElement('picture');
|
||||||
|
|
||||||
if(!isSystemTheme && !document.body?.classList.contains('theme-mastodon-light'))
|
const source = document.createElement('source');
|
||||||
theme = "dark";
|
source.setAttribute('media', '(prefers-color-scheme: dark)');
|
||||||
|
source.setAttribute('srcset', `${assetHost}/emoji/${emojiFilename(filename, 'dark')}.svg`);
|
||||||
img.setAttribute('src', `${assetHost}/emoji/${emojiFilename(filename, theme)}.svg`);
|
replacement.appendChild(source);
|
||||||
replacement.appendChild(img);
|
replacement.appendChild(img);
|
||||||
|
} else {
|
||||||
|
replacement = img;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Add the processed-up-to-now string and the emoji replacement
|
// Add the processed-up-to-now string and the emoji replacement
|
||||||
|
@ -135,7 +135,7 @@ const emojifyTextNode = (node, customEmojis) => {
|
||||||
};
|
};
|
||||||
|
|
||||||
const emojifyNode = (node, customEmojis) => {
|
const emojifyNode = (node, customEmojis) => {
|
||||||
for (const child of node.childNodes) {
|
for (const child of Array.from(node.childNodes)) {
|
||||||
switch(child.nodeType) {
|
switch(child.nodeType) {
|
||||||
case Node.TEXT_NODE:
|
case Node.TEXT_NODE:
|
||||||
emojifyTextNode(child, customEmojis);
|
emojifyTextNode(child, customEmojis);
|
||||||
|
|
|
@ -196,6 +196,7 @@
|
||||||
"confirmations.unfollow.title": "إلغاء متابعة المستخدم؟",
|
"confirmations.unfollow.title": "إلغاء متابعة المستخدم؟",
|
||||||
"content_warning.hide": "إخفاء المنشور",
|
"content_warning.hide": "إخفاء المنشور",
|
||||||
"content_warning.show": "إظهار على أي حال",
|
"content_warning.show": "إظهار على أي حال",
|
||||||
|
"content_warning.show_more": "إظهار المزيد",
|
||||||
"conversation.delete": "احذف المحادثة",
|
"conversation.delete": "احذف المحادثة",
|
||||||
"conversation.mark_as_read": "اعتبرها كمقروءة",
|
"conversation.mark_as_read": "اعتبرها كمقروءة",
|
||||||
"conversation.open": "اعرض المحادثة",
|
"conversation.open": "اعرض المحادثة",
|
||||||
|
@ -490,7 +491,7 @@
|
||||||
"notification.label.private_reply": "رد خاص",
|
"notification.label.private_reply": "رد خاص",
|
||||||
"notification.label.reply": "ردّ",
|
"notification.label.reply": "ردّ",
|
||||||
"notification.mention": "إشارة",
|
"notification.mention": "إشارة",
|
||||||
"notification.mentioned_you": "{name} mentioned you",
|
"notification.mentioned_you": "أشارَ إليك {name}",
|
||||||
"notification.moderation-warning.learn_more": "اعرف المزيد",
|
"notification.moderation-warning.learn_more": "اعرف المزيد",
|
||||||
"notification.moderation_warning": "لقد تلقيت تحذيرًا بالإشراف",
|
"notification.moderation_warning": "لقد تلقيت تحذيرًا بالإشراف",
|
||||||
"notification.moderation_warning.action_delete_statuses": "تم حذف بعض من منشوراتك.",
|
"notification.moderation_warning.action_delete_statuses": "تم حذف بعض من منشوراتك.",
|
||||||
|
|
|
@ -4,31 +4,37 @@
|
||||||
"about.disclaimer": "Mastodon ye software gratuito y de códigu llibre, y una marca rexistrada de Mastodon gGmbH.",
|
"about.disclaimer": "Mastodon ye software gratuito y de códigu llibre, y una marca rexistrada de Mastodon gGmbH.",
|
||||||
"about.domain_blocks.no_reason_available": "El motivu nun ta disponible",
|
"about.domain_blocks.no_reason_available": "El motivu nun ta disponible",
|
||||||
"about.domain_blocks.preamble": "Polo xeneral, Mastodon permítete ver el conteníu ya interactuar colos perfiles d'otros sirvidores nel fediversu. Estes son les esceiciones que se ficieron nesti sirvidor.",
|
"about.domain_blocks.preamble": "Polo xeneral, Mastodon permítete ver el conteníu ya interactuar colos perfiles d'otros sirvidores nel fediversu. Estes son les esceiciones que se ficieron nesti sirvidor.",
|
||||||
"about.domain_blocks.silenced.explanation": "Polo xeneral, nun ves los perfiles ya'l conteníu d'esti sirvidor sacante que los busques o decidas siguilos.",
|
"about.domain_blocks.silenced.explanation": "Polo xeneral, nun ves los perfiles y el conteníu d'esti sirvidor sacante que los busques o decidas siguilos.",
|
||||||
"about.domain_blocks.silenced.title": "Llendóse",
|
"about.domain_blocks.silenced.title": "Llendóse",
|
||||||
"about.domain_blocks.suspended.explanation": "Nun se procesa, atroxa nin intercambia nengún datu d'esti sirvidor, lo que fai que cualesquier interaición o comunicación colos sos perfiles seya imposible.",
|
"about.domain_blocks.suspended.explanation": "Nun se procesa, atroxa nin intercambia nengún datu d'esti sirvidor, lo que fai imposible cualesquier interaición o comunicación colos sos perfiles.",
|
||||||
"about.domain_blocks.suspended.title": "Suspendióse",
|
"about.domain_blocks.suspended.title": "Suspendióse",
|
||||||
"about.not_available": "Esta información nun ta disponible nesti sirvidor.",
|
"about.not_available": "Esta información nun ta disponible nesti sirvidor.",
|
||||||
"about.powered_by": "Una rede social descentralizada que tien la teunoloxía de {mastodon}",
|
"about.powered_by": "Una rede social descentralizada que tien la teunoloxía de {mastodon}",
|
||||||
"about.rules": "Normes del sirvidor",
|
"about.rules": "Normes del sirvidor",
|
||||||
"account.account_note_header": "Nota personal",
|
"account.account_note_header": "Nota personal",
|
||||||
"account.add_or_remove_from_list": "Amestar o quitar de les llistes",
|
"account.add_or_remove_from_list": "Amestar o quitar de les llistes",
|
||||||
|
"account.badges.bot": "Automatizóse",
|
||||||
"account.badges.group": "Grupu",
|
"account.badges.group": "Grupu",
|
||||||
"account.block": "Bloquiar a @{name}",
|
"account.block": "Bloquiar a @{name}",
|
||||||
"account.block_domain": "Bloquiar el dominiu {domain}",
|
"account.block_domain": "Bloquiar el dominiu {domain}",
|
||||||
|
"account.block_short": "Bloquiar",
|
||||||
"account.blocked": "Perfil bloquiáu",
|
"account.blocked": "Perfil bloquiáu",
|
||||||
|
"account.copy": "Copiar l'enlllaz al perfil",
|
||||||
"account.direct": "Mentar a @{name} per privao",
|
"account.direct": "Mentar a @{name} per privao",
|
||||||
"account.disable_notifications": "Dexar d'avisame cuando @{name} espublice artículos",
|
"account.disable_notifications": "Dexar d'avisame cuando @{name} espublice artículos",
|
||||||
"account.domain_blocked": "Dominiu bloquiáu",
|
"account.domain_blocked": "Dominiu bloquiáu",
|
||||||
"account.edit_profile": "Editar el perfil",
|
"account.edit_profile": "Editar el perfil",
|
||||||
"account.enable_notifications": "Avisame cuando @{name} espublice artículos",
|
"account.enable_notifications": "Avisame cuando @{name} espublice artículos",
|
||||||
"account.endorse": "Destacar nel perfil",
|
"account.endorse": "Destacar nel perfil",
|
||||||
"account.featured_tags.last_status_never": "Nun hai nengún artículu",
|
"account.featured_tags.last_status_never": "Nun hai nenguna publicación",
|
||||||
"account.featured_tags.title": "Etiquetes destacaes de: {name}",
|
"account.featured_tags.title": "Etiquetes destacaes de: {name}",
|
||||||
"account.follow": "Siguir",
|
"account.follow": "Siguir",
|
||||||
|
"account.follow_back": "Siguir tamién",
|
||||||
"account.followers": "Siguidores",
|
"account.followers": "Siguidores",
|
||||||
"account.followers.empty": "Naide sigue a esti perfil.",
|
"account.followers.empty": "Naide sigue a esti perfil.",
|
||||||
|
"account.following": "Siguiendo",
|
||||||
"account.follows.empty": "Esti perfil nun sigue a naide.",
|
"account.follows.empty": "Esti perfil nun sigue a naide.",
|
||||||
|
"account.go_to_profile": "Dir al perfil",
|
||||||
"account.hide_reblogs": "Esconder los artículos compartíos de @{name}",
|
"account.hide_reblogs": "Esconder los artículos compartíos de @{name}",
|
||||||
"account.in_memoriam": "N'alcordanza.",
|
"account.in_memoriam": "N'alcordanza.",
|
||||||
"account.joined_short": "Data de xunión",
|
"account.joined_short": "Data de xunión",
|
||||||
|
@ -37,6 +43,8 @@
|
||||||
"account.mention": "Mentar a @{name}",
|
"account.mention": "Mentar a @{name}",
|
||||||
"account.moved_to": "{name} indicó qu'agora la so cuenta nueva ye:",
|
"account.moved_to": "{name} indicó qu'agora la so cuenta nueva ye:",
|
||||||
"account.mute": "Desactivar los avisos de @{name}",
|
"account.mute": "Desactivar los avisos de @{name}",
|
||||||
|
"account.mute_notifications_short": "Silenciar avisos",
|
||||||
|
"account.mute_short": "Silenciar",
|
||||||
"account.no_bio": "Nun se fornió nenguna descripción.",
|
"account.no_bio": "Nun se fornió nenguna descripción.",
|
||||||
"account.open_original_page": "Abrir la páxina orixinal",
|
"account.open_original_page": "Abrir la páxina orixinal",
|
||||||
"account.posts": "Artículos",
|
"account.posts": "Artículos",
|
||||||
|
@ -47,9 +55,11 @@
|
||||||
"account.show_reblogs": "Amosar los artículos compartíos de @{name}",
|
"account.show_reblogs": "Amosar los artículos compartíos de @{name}",
|
||||||
"account.unblock": "Desbloquiar a @{name}",
|
"account.unblock": "Desbloquiar a @{name}",
|
||||||
"account.unblock_domain": "Desbloquiar el dominiu «{domain}»",
|
"account.unblock_domain": "Desbloquiar el dominiu «{domain}»",
|
||||||
|
"account.unblock_short": "Desbloquiar",
|
||||||
"account.unendorse": "Dexar de destacar nel perfil",
|
"account.unendorse": "Dexar de destacar nel perfil",
|
||||||
"account.unfollow": "Dexar de siguir",
|
"account.unfollow": "Dexar de siguir",
|
||||||
"account.unmute": "Activar los avisos de @{name}",
|
"account.unmute": "Activar los avisos de @{name}",
|
||||||
|
"account.unmute_notifications_short": "Dexar de silenciar notificaciones",
|
||||||
"account.unmute_short": "Activar los avisos",
|
"account.unmute_short": "Activar los avisos",
|
||||||
"account_note.placeholder": "Calca equí p'amestar una nota",
|
"account_note.placeholder": "Calca equí p'amestar una nota",
|
||||||
"admin.dashboard.retention.average": "Media",
|
"admin.dashboard.retention.average": "Media",
|
||||||
|
@ -58,15 +68,25 @@
|
||||||
"alert.rate_limited.message": "Volvi tentalo dempués de la hora: {retry_time, time, medium}.",
|
"alert.rate_limited.message": "Volvi tentalo dempués de la hora: {retry_time, time, medium}.",
|
||||||
"alert.unexpected.message": "Prodúxose un error inesperáu.",
|
"alert.unexpected.message": "Prodúxose un error inesperáu.",
|
||||||
"alert.unexpected.title": "¡Meca!",
|
"alert.unexpected.title": "¡Meca!",
|
||||||
|
"alt_text_badge.title": "Testu alternativu",
|
||||||
"announcement.announcement": "Anunciu",
|
"announcement.announcement": "Anunciu",
|
||||||
"attachments_list.unprocessed": "(ensin procesar)",
|
"attachments_list.unprocessed": "(ensin procesar)",
|
||||||
|
"block_modal.show_less": "Amosar menos",
|
||||||
|
"block_modal.show_more": "Amosar más",
|
||||||
|
"block_modal.they_cant_mention": "Nun van poder mencionate o siguite.",
|
||||||
|
"block_modal.they_cant_see_posts": "Nun pueden ver les tos espublizaciones y tu nun podrás ver les suyes.",
|
||||||
|
"block_modal.you_wont_see_mentions": "Nun verás espublizaciones que-yos mencionen.",
|
||||||
"bundle_column_error.error.body": "La páxina solicitada nun se pudo renderizar. Ye posible que seya pola mor d'un fallu nel códigu o por un problema de compatibilidá del restolador.",
|
"bundle_column_error.error.body": "La páxina solicitada nun se pudo renderizar. Ye posible que seya pola mor d'un fallu nel códigu o por un problema de compatibilidá del restolador.",
|
||||||
"bundle_column_error.error.title": "¡Oh, non!",
|
"bundle_column_error.error.title": "¡Oh, non!",
|
||||||
"bundle_column_error.network.body": "Hebo un error al tentar de cargar esta páxina. Esto pudo ser pola mor d'un problema temporal cola conexón a internet o con esti sirvidor.",
|
"bundle_column_error.network.body": "Hebo un error al tentar de cargar esta páxina. Esto pudo ser pola mor d'un problema temporal cola conexón a internet o con esti sirvidor.",
|
||||||
|
"bundle_column_error.network.title": "Fallu de rede",
|
||||||
|
"bundle_column_error.retry": "Retentar",
|
||||||
"bundle_column_error.return": "Volver al aniciu",
|
"bundle_column_error.return": "Volver al aniciu",
|
||||||
"bundle_column_error.routing.body": "Nun se pudo atopar la páxina solicitada. ¿De xuru que la URL de la barra de direiciones ta bien escrita?",
|
"bundle_column_error.routing.body": "Nun se pudo atopar la páxina solicitada. ¿De xuru que la URL de la barra de direiciones ta bien escrita?",
|
||||||
"bundle_column_error.routing.title": "404",
|
"bundle_column_error.routing.title": "404",
|
||||||
|
"bundle_modal_error.close": "Zarrar",
|
||||||
"bundle_modal_error.message": "Asocedió daqué malo mentanto se cargaba esti componente.",
|
"bundle_modal_error.message": "Asocedió daqué malo mentanto se cargaba esti componente.",
|
||||||
|
"bundle_modal_error.retry": "Retentar",
|
||||||
"closed_registrations.other_server_instructions": "Darréu que Mastodon ye una rede social descentralizada, pues crear una cuenta n'otru sirvidor y siguir interactuando con esti.",
|
"closed_registrations.other_server_instructions": "Darréu que Mastodon ye una rede social descentralizada, pues crear una cuenta n'otru sirvidor y siguir interactuando con esti.",
|
||||||
"closed_registrations_modal.description": "Anguaño nun ye posible crear cuentes en {domain}, mas ten en cuenta que nun precises una cuenta nesti sirvidor pa usar Mastodon.",
|
"closed_registrations_modal.description": "Anguaño nun ye posible crear cuentes en {domain}, mas ten en cuenta que nun precises una cuenta nesti sirvidor pa usar Mastodon.",
|
||||||
"closed_registrations_modal.find_another_server": "Atopar otru sirvidor",
|
"closed_registrations_modal.find_another_server": "Atopar otru sirvidor",
|
||||||
|
@ -78,6 +98,8 @@
|
||||||
"column.community": "Llinia de tiempu llocal",
|
"column.community": "Llinia de tiempu llocal",
|
||||||
"column.direct": "Menciones privaes",
|
"column.direct": "Menciones privaes",
|
||||||
"column.domain_blocks": "Dominios bloquiaos",
|
"column.domain_blocks": "Dominios bloquiaos",
|
||||||
|
"column.favourites": "Favoritos",
|
||||||
|
"column.firehose": "Feed en direuto",
|
||||||
"column.follow_requests": "Solicitúes de siguimientu",
|
"column.follow_requests": "Solicitúes de siguimientu",
|
||||||
"column.home": "Aniciu",
|
"column.home": "Aniciu",
|
||||||
"column.lists": "Llistes",
|
"column.lists": "Llistes",
|
||||||
|
@ -96,7 +118,9 @@
|
||||||
"community.column_settings.remote_only": "Namás lo remoto",
|
"community.column_settings.remote_only": "Namás lo remoto",
|
||||||
"compose.language.change": "Camudar la llingua",
|
"compose.language.change": "Camudar la llingua",
|
||||||
"compose.language.search": "Buscar llingües…",
|
"compose.language.search": "Buscar llingües…",
|
||||||
"compose.published.body": "Espublizóse l'artículu.",
|
"compose.published.body": "Publicóse la publicación.",
|
||||||
|
"compose.published.open": "Abrir",
|
||||||
|
"compose.saved.body": "Guardóse la publicación.",
|
||||||
"compose_form.direct_message_warning_learn_more": "Saber más",
|
"compose_form.direct_message_warning_learn_more": "Saber más",
|
||||||
"compose_form.encryption_warning": "Los artículos de Mastodon nun tán cifraos de puntu a puntu. Nun compartas nengún tipu d'información sensible per Mastodon.",
|
"compose_form.encryption_warning": "Los artículos de Mastodon nun tán cifraos de puntu a puntu. Nun compartas nengún tipu d'información sensible per Mastodon.",
|
||||||
"compose_form.lock_disclaimer": "La to cuenta nun ye {locked}. Cualesquier perfil pue siguite pa ver los artículos que son namás pa siguidores.",
|
"compose_form.lock_disclaimer": "La to cuenta nun ye {locked}. Cualesquier perfil pue siguite pa ver los artículos que son namás pa siguidores.",
|
||||||
|
@ -104,34 +128,55 @@
|
||||||
"compose_form.placeholder": "¿En qué pienses?",
|
"compose_form.placeholder": "¿En qué pienses?",
|
||||||
"compose_form.poll.option_placeholder": "Opción {number}",
|
"compose_form.poll.option_placeholder": "Opción {number}",
|
||||||
"compose_form.poll.type": "Tipu",
|
"compose_form.poll.type": "Tipu",
|
||||||
"compose_form.publish_form": "Artículu nuevu",
|
"compose_form.publish": "Espublizar",
|
||||||
|
"compose_form.publish_form": "Publicación nueva",
|
||||||
|
"compose_form.reply": "Responder",
|
||||||
"confirmation_modal.cancel": "Encaboxar",
|
"confirmation_modal.cancel": "Encaboxar",
|
||||||
"confirmations.block.confirm": "Bloquiar",
|
"confirmations.block.confirm": "Bloquiar",
|
||||||
"confirmations.delete.confirm": "Desaniciar",
|
"confirmations.delete.confirm": "Desaniciar",
|
||||||
"confirmations.delete.message": "¿De xuru que quies desaniciar esti artículu?",
|
"confirmations.delete.message": "¿De xuru que quies desaniciar esta publicación?",
|
||||||
|
"confirmations.delete.title": "¿Quies desaniciar esta publicación?",
|
||||||
"confirmations.delete_list.confirm": "Desaniciar",
|
"confirmations.delete_list.confirm": "Desaniciar",
|
||||||
|
"confirmations.delete_list.message": "¿De xuru que quies desaniciar permanentemente esta llista?",
|
||||||
|
"confirmations.delete_list.title": "¿Quies desaniciar la llista?",
|
||||||
"confirmations.discard_edit_media.confirm": "Escartar",
|
"confirmations.discard_edit_media.confirm": "Escartar",
|
||||||
|
"confirmations.edit.confirm": "Editar",
|
||||||
"confirmations.edit.message": "La edición va sobrescribir el mensaxe que tas escribiendo. ¿De xuru que quies siguir?",
|
"confirmations.edit.message": "La edición va sobrescribir el mensaxe que tas escribiendo. ¿De xuru que quies siguir?",
|
||||||
"confirmations.logout.confirm": "Zarrar la sesión",
|
"confirmations.logout.confirm": "Zarrar la sesión",
|
||||||
"confirmations.logout.message": "¿De xuru que quies zarrar la sesión?",
|
"confirmations.logout.message": "¿De xuru que quies zarrar la sesión?",
|
||||||
|
"confirmations.logout.title": "¿Quies zarrar la sesión?",
|
||||||
"confirmations.redraft.confirm": "Desaniciar y reeditar",
|
"confirmations.redraft.confirm": "Desaniciar y reeditar",
|
||||||
|
"confirmations.redraft.title": "¿Desaniciar y reeditar la publicación?",
|
||||||
"confirmations.reply.confirm": "Responder",
|
"confirmations.reply.confirm": "Responder",
|
||||||
|
"confirmations.reply.message": "Responder agora va sobrescribir el mensaxe que tas componiendo anguaño. ¿De xuru que quies siguir?",
|
||||||
"confirmations.unfollow.confirm": "Dexar de siguir",
|
"confirmations.unfollow.confirm": "Dexar de siguir",
|
||||||
"confirmations.unfollow.message": "¿De xuru que quies dexar de siguir a {name}?",
|
"confirmations.unfollow.message": "¿De xuru que quies dexar de siguir a {name}?",
|
||||||
|
"confirmations.unfollow.title": "¿Dexar de siguir al usuariu?",
|
||||||
|
"content_warning.hide": "Esconder la publicación",
|
||||||
|
"content_warning.show": "Amosar de toes toes",
|
||||||
|
"content_warning.show_more": "Amosar más",
|
||||||
"conversation.delete": "Desaniciar la conversación",
|
"conversation.delete": "Desaniciar la conversación",
|
||||||
|
"conversation.mark_as_read": "Marcar como lleíu",
|
||||||
"conversation.open": "Ver la conversación",
|
"conversation.open": "Ver la conversación",
|
||||||
"conversation.with": "Con {names}",
|
"conversation.with": "Con {names}",
|
||||||
|
"copy_icon_button.copied": "Copiáu nel cartafueyu",
|
||||||
"copypaste.copied": "Copióse",
|
"copypaste.copied": "Copióse",
|
||||||
"copypaste.copy_to_clipboard": "Copiar nel cartafueyu",
|
"copypaste.copy_to_clipboard": "Copiar nel cartafueyu",
|
||||||
"directory.federated": "Del fediversu conocíu",
|
"directory.federated": "Del fediversu conocíu",
|
||||||
"directory.local": "De «{domain}» namás",
|
"directory.local": "De «{domain}» namás",
|
||||||
"directory.new_arrivals": "Cuentes nueves",
|
"directory.new_arrivals": "Cuentes nueves",
|
||||||
"directory.recently_active": "Con actividá recién",
|
"directory.recently_active": "Con actividá recién",
|
||||||
|
"disabled_account_banner.account_settings": "Axustes de la cuenta",
|
||||||
"dismissable_banner.community_timeline": "Esta seición contién los artículos públicos más actuales de los perfiles agospiaos nel dominiu {domain}.",
|
"dismissable_banner.community_timeline": "Esta seición contién los artículos públicos más actuales de los perfiles agospiaos nel dominiu {domain}.",
|
||||||
"dismissable_banner.dismiss": "Escartar",
|
"dismissable_banner.dismiss": "Escartar",
|
||||||
"dismissable_banner.explore_tags": "Esta seición contién les etiquetes del fediversu que tán ganando popularidá güei. Les etiquetes más usaes polos perfiles apaecen no cimero.",
|
"dismissable_banner.explore_tags": "Esta seición contién les etiquetes del fediversu que tán ganando popularidá güei. Les etiquetes más usaes polos perfiles apaecen no cimero.",
|
||||||
"dismissable_banner.public_timeline": "Esta seición contién los artículos más nuevos de les persones na web social que les persones de {domain} siguen.",
|
"dismissable_banner.public_timeline": "Esta seición contién los artículos más nuevos de les persones na web social que les persones de {domain} siguen.",
|
||||||
"embed.instructions": "Empotra esti artículu nel to sitiu web copiando'l códigu d'abaxo.",
|
"domain_block_modal.block": "Bloquiar el sirvidor",
|
||||||
|
"domain_block_modal.they_cant_follow": "Naide d'esti sirvidor pue siguite.",
|
||||||
|
"domain_block_modal.title": "Bloquiar el dominiu?",
|
||||||
|
"domain_pill.server": "Sirvidor",
|
||||||
|
"domain_pill.username": "Nome d'usuariu",
|
||||||
|
"embed.instructions": "Empotra esta publicación nel to sitiu web copiando'l códigu d'abaxo.",
|
||||||
"embed.preview": "Va apaecer asina:",
|
"embed.preview": "Va apaecer asina:",
|
||||||
"emoji_button.activity": "Actividá",
|
"emoji_button.activity": "Actividá",
|
||||||
"emoji_button.flags": "Banderes",
|
"emoji_button.flags": "Banderes",
|
||||||
|
@ -145,9 +190,10 @@
|
||||||
"emoji_button.search_results": "Resultaos de la busca",
|
"emoji_button.search_results": "Resultaos de la busca",
|
||||||
"emoji_button.symbols": "Símbolos",
|
"emoji_button.symbols": "Símbolos",
|
||||||
"emoji_button.travel": "Viaxes y llugares",
|
"emoji_button.travel": "Viaxes y llugares",
|
||||||
"empty_column.account_timeline": "¡Equí nun hai nengún artículu!",
|
"empty_column.account_suspended": "Cuenta suspendida",
|
||||||
|
"empty_column.account_timeline": "¡Equí nun hai nenguna publicación!",
|
||||||
"empty_column.blocks": "Nun bloquiesti a nengún perfil.",
|
"empty_column.blocks": "Nun bloquiesti a nengún perfil.",
|
||||||
"empty_column.bookmarked_statuses": "Nun tienes nengún artículu en Marcadores. Cuando amiestes dalgún, apaez equí.",
|
"empty_column.bookmarked_statuses": "Nun tienes nenguna publicación en Marcadores. Cuando amiestes dalguna, va apaecer equí.",
|
||||||
"empty_column.direct": "Nun tienes nenguna mención privada. Cuando unvies o recibas dalguna, apaez equí.",
|
"empty_column.direct": "Nun tienes nenguna mención privada. Cuando unvies o recibas dalguna, apaez equí.",
|
||||||
"empty_column.domain_blocks": "Nun hai nengún dominiu bloquiáu.",
|
"empty_column.domain_blocks": "Nun hai nengún dominiu bloquiáu.",
|
||||||
"empty_column.explore_statuses": "Agora nun hai nada en tendencia. ¡Volvi equí dempués!",
|
"empty_column.explore_statuses": "Agora nun hai nada en tendencia. ¡Volvi equí dempués!",
|
||||||
|
@ -169,20 +215,21 @@
|
||||||
"explore.trending_links": "Noticies",
|
"explore.trending_links": "Noticies",
|
||||||
"explore.trending_statuses": "Artículos",
|
"explore.trending_statuses": "Artículos",
|
||||||
"explore.trending_tags": "Etiquetes",
|
"explore.trending_tags": "Etiquetes",
|
||||||
"filter_modal.added.context_mismatch_explanation": "Esta categoría de peñera nun s'aplica al contestu nel qu'accediesti a esti artículu. Si tamién quies que se peñere l'artículu nesti contestu, tienes d'editar la peñera.",
|
"filter_modal.added.context_mismatch_explanation": "Esta categoría de peñera nun s'aplica al contestu nel qu'accediesti a esta publicación. Si tamién quies que se peñere la publicación nesti contestu, tienes d'editar la peñera.",
|
||||||
"filter_modal.added.context_mismatch_title": "¡El contestu nun coincide!",
|
"filter_modal.added.context_mismatch_title": "¡El contestu nun coincide!",
|
||||||
"filter_modal.added.expired_explanation": "Esta categoría de peñera caducó, tienes de camudar la so data de caducidá p'aplicala.",
|
"filter_modal.added.expired_explanation": "Esta categoría de peñera caducó, tienes de camudar la so data de caducidá p'aplicala.",
|
||||||
"filter_modal.added.expired_title": "¡La peñera caducó!",
|
"filter_modal.added.expired_title": "¡La peñera caducó!",
|
||||||
"filter_modal.added.review_and_configure": "Pa revisar y configurar a fondu esta categoría de peñera, vete a la {settings_link}.",
|
"filter_modal.added.review_and_configure": "Pa revisar y configurar a fondu esta categoría de peñera, vete a la {settings_link}.",
|
||||||
"filter_modal.added.review_and_configure_title": "Configuración de la peñera",
|
"filter_modal.added.review_and_configure_title": "Configuración de la peñera",
|
||||||
"filter_modal.added.settings_link": "páxina de configuración",
|
"filter_modal.added.settings_link": "páxina de configuración",
|
||||||
"filter_modal.added.short_explanation": "Esti artículu amestóse a la categoría de peñera siguiente: {title}.",
|
"filter_modal.added.short_explanation": "Esta publicación amestóse a la categoría de peñera siguiente: {title}.",
|
||||||
"filter_modal.added.title": "¡Amestóse la peñera!",
|
"filter_modal.added.title": "¡Amestóse la peñera!",
|
||||||
|
"filter_modal.select_filter.expired": "caducó",
|
||||||
"filter_modal.select_filter.prompt_new": "Categoría nueva: {name}",
|
"filter_modal.select_filter.prompt_new": "Categoría nueva: {name}",
|
||||||
"filter_modal.select_filter.search": "Buscar o crear",
|
"filter_modal.select_filter.search": "Buscar o crear",
|
||||||
"filter_modal.select_filter.subtitle": "Usa una categoría esistente o créala",
|
"filter_modal.select_filter.subtitle": "Usa una categoría esistente o créala",
|
||||||
"filter_modal.select_filter.title": "Peñerar esti artículu",
|
"filter_modal.select_filter.title": "Peñerar esta publicación",
|
||||||
"filter_modal.title.status": "Peñera d'un artículu",
|
"filter_modal.title.status": "Peñera d'una publicación",
|
||||||
"firehose.all": "Tolos sirvidores",
|
"firehose.all": "Tolos sirvidores",
|
||||||
"firehose.local": "Esti sirvidor",
|
"firehose.local": "Esti sirvidor",
|
||||||
"firehose.remote": "Otros sirvidores",
|
"firehose.remote": "Otros sirvidores",
|
||||||
|
@ -197,6 +244,7 @@
|
||||||
"follow_suggestions.similar_to_recently_followed_longer": "Aseméyase a los perfiles que siguiesti apocayá",
|
"follow_suggestions.similar_to_recently_followed_longer": "Aseméyase a los perfiles que siguiesti apocayá",
|
||||||
"follow_suggestions.view_all": "Ver too",
|
"follow_suggestions.view_all": "Ver too",
|
||||||
"follow_suggestions.who_to_follow": "A quién siguir",
|
"follow_suggestions.who_to_follow": "A quién siguir",
|
||||||
|
"followed_tags": "Etiquetes siguíes",
|
||||||
"footer.about": "Tocante a",
|
"footer.about": "Tocante a",
|
||||||
"footer.directory": "Direutoriu de perfiles",
|
"footer.directory": "Direutoriu de perfiles",
|
||||||
"footer.get_app": "Consiguir l'aplicación",
|
"footer.get_app": "Consiguir l'aplicación",
|
||||||
|
@ -211,6 +259,10 @@
|
||||||
"hashtag.column_header.tag_mode.any": "o {additional}",
|
"hashtag.column_header.tag_mode.any": "o {additional}",
|
||||||
"hashtag.column_header.tag_mode.none": "ensin {additional}",
|
"hashtag.column_header.tag_mode.none": "ensin {additional}",
|
||||||
"hashtag.column_settings.select.no_options_message": "Nun s'atopó nenguna suxerencia",
|
"hashtag.column_settings.select.no_options_message": "Nun s'atopó nenguna suxerencia",
|
||||||
|
"hashtag.column_settings.select.placeholder": "Introduz etiquetes…",
|
||||||
|
"hashtag.column_settings.tag_mode.all": "Toes estes",
|
||||||
|
"hashtag.column_settings.tag_mode.any": "Cualesquiera d'estes",
|
||||||
|
"hashtag.column_settings.tag_mode.none": "Nenguna d'estes",
|
||||||
"hashtag.counter_by_accounts": "{count, plural, one {{counter} participante} other {{counter} participantes}}",
|
"hashtag.counter_by_accounts": "{count, plural, one {{counter} participante} other {{counter} participantes}}",
|
||||||
"hashtag.follow": "Siguir a la etiqueta",
|
"hashtag.follow": "Siguir a la etiqueta",
|
||||||
"hashtag.unfollow": "Dexar de siguir a la etiqueta",
|
"hashtag.unfollow": "Dexar de siguir a la etiqueta",
|
||||||
|
@ -218,24 +270,26 @@
|
||||||
"home.column_settings.show_reblogs": "Amosar los artículos compartíos",
|
"home.column_settings.show_reblogs": "Amosar los artículos compartíos",
|
||||||
"home.column_settings.show_replies": "Amosar les rempuestes",
|
"home.column_settings.show_replies": "Amosar les rempuestes",
|
||||||
"home.pending_critical_update.body": "¡Anueva'l sirvidor de Mastodon namás que puedas!",
|
"home.pending_critical_update.body": "¡Anueva'l sirvidor de Mastodon namás que puedas!",
|
||||||
|
"home.show_announcements": "Amosar anuncios",
|
||||||
"interaction_modal.description.follow": "Con una cuenta de Mastodon, pues siguir a {name} pa recibir los artículos de so nel to feed d'aniciu.",
|
"interaction_modal.description.follow": "Con una cuenta de Mastodon, pues siguir a {name} pa recibir los artículos de so nel to feed d'aniciu.",
|
||||||
"interaction_modal.description.reblog": "Con una cuenta de Mastodon, pues compartir esti artículu colos perfiles que te sigan.",
|
"interaction_modal.description.reblog": "Con una cuenta de Mastodon, pues compartir esta publicación colos perfiles que te sigan.",
|
||||||
"interaction_modal.description.reply": "Con una cuenta de Mastodon, pues responder a esti artículu.",
|
"interaction_modal.description.reply": "Con una cuenta de Mastodon, pues responder a esta publicación.",
|
||||||
"interaction_modal.on_another_server": "N'otru sirvidor",
|
"interaction_modal.on_another_server": "N'otru sirvidor",
|
||||||
"interaction_modal.on_this_server": "Nesti sirvidor",
|
"interaction_modal.on_this_server": "Nesti sirvidor",
|
||||||
"interaction_modal.title.reply": "Rempuesta al artículu de: {name}",
|
"interaction_modal.title.follow": "Siguir a {name}",
|
||||||
|
"interaction_modal.title.reply": "Rempuesta a la publicación de: {name}",
|
||||||
"intervals.full.days": "{number, plural, one {# día} other {# díes}}",
|
"intervals.full.days": "{number, plural, one {# día} other {# díes}}",
|
||||||
"intervals.full.hours": "{number, plural, one {# hora} other {# hores}}",
|
"intervals.full.hours": "{number, plural, one {# hora} other {# hores}}",
|
||||||
"intervals.full.minutes": "{number, plural, one {# minutu} other {# minutos}}",
|
"intervals.full.minutes": "{number, plural, one {# minutu} other {# minutos}}",
|
||||||
"keyboard_shortcuts.back": "Dir p'atrás",
|
"keyboard_shortcuts.back": "Dir p'atrás",
|
||||||
"keyboard_shortcuts.blocked": "Abrir la llista de perfiles bloquiaos",
|
"keyboard_shortcuts.blocked": "Abrir la llista de perfiles bloquiaos",
|
||||||
"keyboard_shortcuts.boost": "Compartir un artículu",
|
"keyboard_shortcuts.boost": "Compartir una publicación",
|
||||||
"keyboard_shortcuts.column": "Enfocar una columna",
|
"keyboard_shortcuts.column": "Enfocar una columna",
|
||||||
"keyboard_shortcuts.compose": "Enfocar l'área de composición",
|
"keyboard_shortcuts.compose": "Enfocar l'área de composición",
|
||||||
"keyboard_shortcuts.description": "Descripción",
|
"keyboard_shortcuts.description": "Descripción",
|
||||||
"keyboard_shortcuts.direct": "p'abrir la columna de les menciones privaes",
|
"keyboard_shortcuts.direct": "p'abrir la columna de les menciones privaes",
|
||||||
"keyboard_shortcuts.down": "Baxar na llista",
|
"keyboard_shortcuts.down": "Baxar na llista",
|
||||||
"keyboard_shortcuts.enter": "Abrir un artículu",
|
"keyboard_shortcuts.enter": "Abrir una publicación",
|
||||||
"keyboard_shortcuts.federated": "Abrir la llinia de tiempu federada",
|
"keyboard_shortcuts.federated": "Abrir la llinia de tiempu federada",
|
||||||
"keyboard_shortcuts.heading": "Atayos del tecláu",
|
"keyboard_shortcuts.heading": "Atayos del tecláu",
|
||||||
"keyboard_shortcuts.home": "Abrir la llinia de tiempu del aniciu",
|
"keyboard_shortcuts.home": "Abrir la llinia de tiempu del aniciu",
|
||||||
|
@ -249,15 +303,21 @@
|
||||||
"keyboard_shortcuts.open_media": "Abrir el conteníu mutimedia",
|
"keyboard_shortcuts.open_media": "Abrir el conteníu mutimedia",
|
||||||
"keyboard_shortcuts.pinned": "Abrir la llista d'artículos fixaos",
|
"keyboard_shortcuts.pinned": "Abrir la llista d'artículos fixaos",
|
||||||
"keyboard_shortcuts.profile": "Abrir el perfil del autor/a",
|
"keyboard_shortcuts.profile": "Abrir el perfil del autor/a",
|
||||||
"keyboard_shortcuts.reply": "Responder a un artículu",
|
"keyboard_shortcuts.reply": "Responder a una publicación",
|
||||||
"keyboard_shortcuts.requests": "Abrir la llista de solicitúes de siguimientu",
|
"keyboard_shortcuts.requests": "Abrir la llista de solicitúes de siguimientu",
|
||||||
"keyboard_shortcuts.search": "Enfocar la barra de busca",
|
"keyboard_shortcuts.search": "Enfocar la barra de busca",
|
||||||
"keyboard_shortcuts.start": "Abrir la columna «Entamar»",
|
"keyboard_shortcuts.start": "Abrir la columna «Entamar»",
|
||||||
"keyboard_shortcuts.toggle_sensitivity": "Amosar/esconder el conteníu multimedia",
|
"keyboard_shortcuts.toggle_sensitivity": "Amosar/esconder el conteníu multimedia",
|
||||||
"keyboard_shortcuts.toot": "Comenzar un artículu nuevu",
|
"keyboard_shortcuts.toot": "Escribir una publicación nueva",
|
||||||
"keyboard_shortcuts.unfocus": "Desenfocar l'área de composición/busca",
|
"keyboard_shortcuts.unfocus": "Desenfocar l'área de composición/busca",
|
||||||
"keyboard_shortcuts.up": "Xubir na llista",
|
"keyboard_shortcuts.up": "Xubir na llista",
|
||||||
|
"lightbox.close": "Zarrar",
|
||||||
|
"lightbox.next": "Siguiente",
|
||||||
"limited_account_hint.action": "Amosar el perfil de toes toes",
|
"limited_account_hint.action": "Amosar el perfil de toes toes",
|
||||||
|
"link_preview.author": "Por {name}",
|
||||||
|
"link_preview.more_from_author": "Más de {name}",
|
||||||
|
"lists.account.add": "Amestar a la llista",
|
||||||
|
"lists.account.remove": "Desaniciar de la llista",
|
||||||
"lists.delete": "Desaniciar la llista",
|
"lists.delete": "Desaniciar la llista",
|
||||||
"lists.edit": "Editar la llista",
|
"lists.edit": "Editar la llista",
|
||||||
"lists.edit.submit": "Camudar el títulu",
|
"lists.edit.submit": "Camudar el títulu",
|
||||||
|
@ -270,6 +330,7 @@
|
||||||
"lists.search": "Buscar ente los perfiles que sigues",
|
"lists.search": "Buscar ente los perfiles que sigues",
|
||||||
"lists.subheading": "Les tos llistes",
|
"lists.subheading": "Les tos llistes",
|
||||||
"load_pending": "{count, plural, one {# elementu nuevu} other {# elementos nuevos}}",
|
"load_pending": "{count, plural, one {# elementu nuevu} other {# elementos nuevos}}",
|
||||||
|
"loading_indicator.label": "Cargando…",
|
||||||
"navigation_bar.about": "Tocante a",
|
"navigation_bar.about": "Tocante a",
|
||||||
"navigation_bar.blocks": "Perfiles bloquiaos",
|
"navigation_bar.blocks": "Perfiles bloquiaos",
|
||||||
"navigation_bar.bookmarks": "Marcadores",
|
"navigation_bar.bookmarks": "Marcadores",
|
||||||
|
@ -277,13 +338,17 @@
|
||||||
"navigation_bar.direct": "Menciones privaes",
|
"navigation_bar.direct": "Menciones privaes",
|
||||||
"navigation_bar.domain_blocks": "Dominios bloquiaos",
|
"navigation_bar.domain_blocks": "Dominios bloquiaos",
|
||||||
"navigation_bar.explore": "Esploración",
|
"navigation_bar.explore": "Esploración",
|
||||||
|
"navigation_bar.favourites": "Favoritos",
|
||||||
"navigation_bar.filters": "Pallabres desactivaes",
|
"navigation_bar.filters": "Pallabres desactivaes",
|
||||||
"navigation_bar.follow_requests": "Solicitúes de siguimientu",
|
"navigation_bar.follow_requests": "Solicitúes de siguimientu",
|
||||||
|
"navigation_bar.followed_tags": "Etiquetes siguíes",
|
||||||
"navigation_bar.follows_and_followers": "Perfiles que sigues y te siguen",
|
"navigation_bar.follows_and_followers": "Perfiles que sigues y te siguen",
|
||||||
"navigation_bar.lists": "Llistes",
|
"navigation_bar.lists": "Llistes",
|
||||||
"navigation_bar.logout": "Zarrar la sesión",
|
"navigation_bar.logout": "Zarrar la sesión",
|
||||||
|
"navigation_bar.moderation": "Moderación",
|
||||||
"navigation_bar.mutes": "Perfiles colos avisos desactivaos",
|
"navigation_bar.mutes": "Perfiles colos avisos desactivaos",
|
||||||
"navigation_bar.opened_in_classic_interface": "Los artículos, les cuentes y otres páxines específiques ábrense por defeutu na interfaz web clásica.",
|
"navigation_bar.opened_in_classic_interface": "Los artículos, les cuentes y otres páxines específiques ábrense por defeutu na interfaz web clásica.",
|
||||||
|
"navigation_bar.personal": "Personal",
|
||||||
"navigation_bar.pins": "Artículos fixaos",
|
"navigation_bar.pins": "Artículos fixaos",
|
||||||
"navigation_bar.preferences": "Preferencies",
|
"navigation_bar.preferences": "Preferencies",
|
||||||
"navigation_bar.public_timeline": "Llinia de tiempu federada",
|
"navigation_bar.public_timeline": "Llinia de tiempu federada",
|
||||||
|
@ -293,12 +358,24 @@
|
||||||
"notification.admin.sign_up": "{name} rexistróse",
|
"notification.admin.sign_up": "{name} rexistróse",
|
||||||
"notification.follow": "{name} siguióte",
|
"notification.follow": "{name} siguióte",
|
||||||
"notification.follow_request": "{name} solicitó siguite",
|
"notification.follow_request": "{name} solicitó siguite",
|
||||||
"notification.reblog": "{name} compartió'l to artículu",
|
"notification.label.mention": "Mención",
|
||||||
|
"notification.label.private_mention": "Mención privada",
|
||||||
|
"notification.label.private_reply": "Rempuesta privada",
|
||||||
|
"notification.label.reply": "Responder",
|
||||||
|
"notification.mention": "Mención",
|
||||||
|
"notification.mentioned_you": "{name} mentóte",
|
||||||
|
"notification.moderation-warning.learn_more": "Deprender más",
|
||||||
|
"notification.poll": "Finó una encuesta na que votesti",
|
||||||
|
"notification.reblog": "{name} compartió la to publicación",
|
||||||
"notification.status": "{name} ta acabante d'espublizar",
|
"notification.status": "{name} ta acabante d'espublizar",
|
||||||
"notification.update": "{name} editó un artículu",
|
"notification.update": "{name} editó una publicación",
|
||||||
|
"notification_requests.edit_selection": "Editar",
|
||||||
|
"notification_requests.exit_selection": "Fecho",
|
||||||
"notifications.clear": "Borrar los avisos",
|
"notifications.clear": "Borrar los avisos",
|
||||||
"notifications.column_settings.admin.report": "Informes nuevos:",
|
"notifications.column_settings.admin.report": "Informes nuevos:",
|
||||||
"notifications.column_settings.admin.sign_up": "Rexistros nuevos:",
|
"notifications.column_settings.admin.sign_up": "Rexistros nuevos:",
|
||||||
|
"notifications.column_settings.favourite": "Favoritos:",
|
||||||
|
"notifications.column_settings.filter_bar.advanced": "Amosar toles categoríes",
|
||||||
"notifications.column_settings.follow": "Siguidores nuevos:",
|
"notifications.column_settings.follow": "Siguidores nuevos:",
|
||||||
"notifications.column_settings.follow_request": "Solicitúes de siguimientu nueves:",
|
"notifications.column_settings.follow_request": "Solicitúes de siguimientu nueves:",
|
||||||
"notifications.column_settings.group": "Agrupar",
|
"notifications.column_settings.group": "Agrupar",
|
||||||
|
@ -311,10 +388,16 @@
|
||||||
"notifications.column_settings.unread_notifications.category": "Avisos ensin lleer",
|
"notifications.column_settings.unread_notifications.category": "Avisos ensin lleer",
|
||||||
"notifications.column_settings.unread_notifications.highlight": "Rescamplar los avisos ensin lleer",
|
"notifications.column_settings.unread_notifications.highlight": "Rescamplar los avisos ensin lleer",
|
||||||
"notifications.column_settings.update": "Ediciones:",
|
"notifications.column_settings.update": "Ediciones:",
|
||||||
|
"notifications.filter.all": "Too",
|
||||||
|
"notifications.filter.favourites": "Favoritos",
|
||||||
"notifications.filter.mentions": "Menciones",
|
"notifications.filter.mentions": "Menciones",
|
||||||
|
"notifications.filter.polls": "Resultaos de la encuesta",
|
||||||
"notifications.group": "{count} avisos",
|
"notifications.group": "{count} avisos",
|
||||||
"notifications.mark_as_read": "Marcar tolos avisos como lleíos",
|
"notifications.mark_as_read": "Marcar tolos avisos como lleíos",
|
||||||
"notifications.permission_required": "Los avisos d'escritoriu nun tán disponibles porque nun se concedió'l permisu riquíu.",
|
"notifications.permission_required": "Los avisos d'escritoriu nun tán disponibles porque nun se concedió'l permisu riquíu.",
|
||||||
|
"notifications.policy.accept": "Aceptar",
|
||||||
|
"notifications.policy.accept_hint": "Amosar n'avisos",
|
||||||
|
"onboarding.profile.note": "Biografía",
|
||||||
"onboarding.profile.note_hint": "Pues @mentar a otros perfiles o poner #etiquetes…",
|
"onboarding.profile.note_hint": "Pues @mentar a otros perfiles o poner #etiquetes…",
|
||||||
"onboarding.start.lead": "Yá yes parte de Mastodon, una plataforma social multimedia descentralizada onde tu y non un algoritmu, personalices la to esperiencia. Vamos presentate esti llugar social nuevu:",
|
"onboarding.start.lead": "Yá yes parte de Mastodon, una plataforma social multimedia descentralizada onde tu y non un algoritmu, personalices la to esperiencia. Vamos presentate esti llugar social nuevu:",
|
||||||
"onboarding.start.skip": "¿Nun precises ayuda pa comenzar?",
|
"onboarding.start.skip": "¿Nun precises ayuda pa comenzar?",
|
||||||
|
@ -330,10 +413,10 @@
|
||||||
"poll.votes": "{votes, plural, one {# votu} other {# votos}}",
|
"poll.votes": "{votes, plural, one {# votu} other {# votos}}",
|
||||||
"poll_button.add_poll": "Amestar una encuesta",
|
"poll_button.add_poll": "Amestar una encuesta",
|
||||||
"poll_button.remove_poll": "Quitar la encuesta",
|
"poll_button.remove_poll": "Quitar la encuesta",
|
||||||
"privacy.change": "Configurar la privacidá del artículu",
|
"privacy.change": "Configurar la privacidá de la publicación",
|
||||||
"privacy.direct.short": "Perfiles específicos",
|
"privacy.direct.short": "Perfiles específicos",
|
||||||
"privacy.private.short": "Siguidores",
|
"privacy.private.short": "Siguidores",
|
||||||
"privacy.public.short": "Artículu públicu",
|
"privacy.public.short": "Publicación pública",
|
||||||
"privacy_policy.last_updated": "Data del últimu anovamientu: {date}",
|
"privacy_policy.last_updated": "Data del últimu anovamientu: {date}",
|
||||||
"privacy_policy.title": "Política de privacidá",
|
"privacy_policy.title": "Política de privacidá",
|
||||||
"refresh": "Anovar",
|
"refresh": "Anovar",
|
||||||
|
@ -350,13 +433,15 @@
|
||||||
"relative_time.seconds": "{number} s",
|
"relative_time.seconds": "{number} s",
|
||||||
"relative_time.today": "güei",
|
"relative_time.today": "güei",
|
||||||
"reply_indicator.cancel": "Encaboxar",
|
"reply_indicator.cancel": "Encaboxar",
|
||||||
|
"reply_indicator.poll": "Encuesta",
|
||||||
"report.block": "Bloquiar",
|
"report.block": "Bloquiar",
|
||||||
|
"report.categories.legal": "Llegal",
|
||||||
"report.categories.spam": "Spam",
|
"report.categories.spam": "Spam",
|
||||||
"report.categories.violation": "El conteníu incumple una o más normes del sirvidor",
|
"report.categories.violation": "El conteníu incumple una o más normes del sirvidor",
|
||||||
"report.category.subtitle": "Escueyi la meyor opción",
|
"report.category.subtitle": "Escueyi la meyor opción",
|
||||||
"report.category.title": "Dinos qué pasa con esti {type}",
|
"report.category.title": "Dinos qué pasa con esti {type}",
|
||||||
"report.category.title_account": "perfil",
|
"report.category.title_account": "perfil",
|
||||||
"report.category.title_status": "artículu",
|
"report.category.title_status": "publicación",
|
||||||
"report.close": "Fecho",
|
"report.close": "Fecho",
|
||||||
"report.comment.title": "¿Hai daqué más qu'habríemos saber?",
|
"report.comment.title": "¿Hai daqué más qu'habríemos saber?",
|
||||||
"report.forward": "Reunviar a {target}",
|
"report.forward": "Reunviar a {target}",
|
||||||
|
@ -366,6 +451,7 @@
|
||||||
"report.placeholder": "Comentarios adicionales",
|
"report.placeholder": "Comentarios adicionales",
|
||||||
"report.reasons.dislike": "Nun me presta",
|
"report.reasons.dislike": "Nun me presta",
|
||||||
"report.reasons.dislike_description": "Nun ye daqué que quiera ver",
|
"report.reasons.dislike_description": "Nun ye daqué que quiera ver",
|
||||||
|
"report.reasons.legal": "Ye illegal",
|
||||||
"report.reasons.other": "Ye daqué más",
|
"report.reasons.other": "Ye daqué más",
|
||||||
"report.reasons.other_description": "La incidencia nun s'axusta a les demás categoríes",
|
"report.reasons.other_description": "La incidencia nun s'axusta a les demás categoríes",
|
||||||
"report.reasons.spam": "Ye spam",
|
"report.reasons.spam": "Ye spam",
|
||||||
|
@ -375,7 +461,7 @@
|
||||||
"report.rules.subtitle": "Seleiciona tolo que s'axuste",
|
"report.rules.subtitle": "Seleiciona tolo que s'axuste",
|
||||||
"report.rules.title": "¿Qué normes s'incumplen?",
|
"report.rules.title": "¿Qué normes s'incumplen?",
|
||||||
"report.statuses.subtitle": "Seleiciona tolo que s'axuste",
|
"report.statuses.subtitle": "Seleiciona tolo que s'axuste",
|
||||||
"report.statuses.title": "¿Hai dalgún artículu qu'apoye esti informe?",
|
"report.statuses.title": "¿Hai dalguna publicación qu'apoye esti informe?",
|
||||||
"report.submit": "Unviar",
|
"report.submit": "Unviar",
|
||||||
"report.target": "Informe de: {target}",
|
"report.target": "Informe de: {target}",
|
||||||
"report.thanks.take_action": "Equí tienes les opciones pa controlar qué ves en Mastodon:",
|
"report.thanks.take_action": "Equí tienes les opciones pa controlar qué ves en Mastodon:",
|
||||||
|
@ -384,8 +470,11 @@
|
||||||
"report.thanks.title_actionable": "Gracies pol informe, el casu yá ta n'investigación.",
|
"report.thanks.title_actionable": "Gracies pol informe, el casu yá ta n'investigación.",
|
||||||
"report.unfollow": "Dexar de siguir a @{name}",
|
"report.unfollow": "Dexar de siguir a @{name}",
|
||||||
"report.unfollow_explanation": "Sigues a esta cuenta. Pa dexar de ver los sos artículos nel to feed d'aniciu, dexa de siguila.",
|
"report.unfollow_explanation": "Sigues a esta cuenta. Pa dexar de ver los sos artículos nel to feed d'aniciu, dexa de siguila.",
|
||||||
"report_notification.attached_statuses": "{count, plural, one {Axuntóse {count} artículu} other {Axuntáronse {count} artículos}}",
|
"report_notification.attached_statuses": "{count, plural, one {Axuntóse {count} publicación} other {Axuntáronse {count} publicaciones}}",
|
||||||
|
"report_notification.categories.legal": "Llegal",
|
||||||
"report_notification.categories.legal_sentence": "conteníu illegal",
|
"report_notification.categories.legal_sentence": "conteníu illegal",
|
||||||
|
"report_notification.categories.spam": "Spam",
|
||||||
|
"report_notification.categories.spam_sentence": "spam",
|
||||||
"report_notification.open": "Abrir l'informe",
|
"report_notification.open": "Abrir l'informe",
|
||||||
"search.no_recent_searches": "Nun hai nenguna busca recién",
|
"search.no_recent_searches": "Nun hai nenguna busca recién",
|
||||||
"search.placeholder": "Buscar",
|
"search.placeholder": "Buscar",
|
||||||
|
@ -394,6 +483,7 @@
|
||||||
"search.quick_action.go_to_hashtag": "Dir a la etiqueta {x}",
|
"search.quick_action.go_to_hashtag": "Dir a la etiqueta {x}",
|
||||||
"search.quick_action.status_search": "Artículos que concasen con {x}",
|
"search.quick_action.status_search": "Artículos que concasen con {x}",
|
||||||
"search.search_or_paste": "Busca o apiega una URL",
|
"search.search_or_paste": "Busca o apiega una URL",
|
||||||
|
"search_popout.full_text_search_disabled_message": "Nun ta disponible nel dominiu {domain}.",
|
||||||
"search_popout.language_code": "códigu de llingua ISO",
|
"search_popout.language_code": "códigu de llingua ISO",
|
||||||
"search_popout.options": "Opciones de busca",
|
"search_popout.options": "Opciones de busca",
|
||||||
"search_popout.quick_actions": "Aiciones rápides",
|
"search_popout.quick_actions": "Aiciones rápides",
|
||||||
|
@ -407,22 +497,25 @@
|
||||||
"search_results.see_all": "Ver too",
|
"search_results.see_all": "Ver too",
|
||||||
"search_results.statuses": "Artículos",
|
"search_results.statuses": "Artículos",
|
||||||
"search_results.title": "Busca de: {q}",
|
"search_results.title": "Busca de: {q}",
|
||||||
|
"server_banner.is_one_of_many": "{domain} ye unu de los munchos sirvidores independientes de Mastodon que pues usar pa participar nel fediversu.",
|
||||||
"server_banner.server_stats": "Estadístiques del sirvidor:",
|
"server_banner.server_stats": "Estadístiques del sirvidor:",
|
||||||
"sign_in_banner.create_account": "Crear una cuenta",
|
"sign_in_banner.create_account": "Crear una cuenta",
|
||||||
|
"sign_in_banner.mastodon_is": "Mastodon ye la meyor manera de siguir al momentu qué pasa.",
|
||||||
|
"sign_in_banner.sign_in": "Aniciar la sesión",
|
||||||
"sign_in_banner.sso_redirect": "Aniciar la sesión o rexistrase",
|
"sign_in_banner.sso_redirect": "Aniciar la sesión o rexistrase",
|
||||||
"status.admin_account": "Abrir la interfaz de moderación pa @{name}",
|
"status.admin_account": "Abrir la interfaz de moderación pa @{name}",
|
||||||
"status.admin_domain": "Abrir la interfaz de moderación pa «{domain}»",
|
"status.admin_domain": "Abrir la interfaz de moderación pa «{domain}»",
|
||||||
"status.admin_status": "Abrir esti artículu na interfaz de moderación",
|
"status.admin_status": "Abrir esta publicación na interfaz de moderación",
|
||||||
"status.block": "Bloquiar a @{name}",
|
"status.block": "Bloquiar a @{name}",
|
||||||
"status.bookmark": "Meter en Marcadores",
|
"status.bookmark": "Meter en Marcadores",
|
||||||
"status.cannot_reblog": "Esti artículu nun se pue compartir",
|
"status.cannot_reblog": "Esta publicación nun se pue compartir",
|
||||||
"status.copy": "Copiar l'enllaz al artículu",
|
"status.copy": "Copiar l'enllaz a la publicación",
|
||||||
"status.delete": "Desaniciar",
|
"status.delete": "Desaniciar",
|
||||||
"status.direct": "Mentar a @{name} per privao",
|
"status.direct": "Mentar a @{name} per privao",
|
||||||
"status.direct_indicator": "Mención privada",
|
"status.direct_indicator": "Mención privada",
|
||||||
"status.edited_x_times": "Editóse {count, plural, one {{count} vegada} other {{count} vegaes}}",
|
"status.edited_x_times": "Editóse {count, plural, one {{count} vegada} other {{count} vegaes}}",
|
||||||
"status.embed": "Consiguir el códigu pa empotrar",
|
"status.embed": "Consiguir el códigu pa empotrar",
|
||||||
"status.filter": "Peñerar esti artículu",
|
"status.filter": "Peñerar esta publicación",
|
||||||
"status.history.created": "{name} creó {date}",
|
"status.history.created": "{name} creó {date}",
|
||||||
"status.history.edited": "{name} editó {date}",
|
"status.history.edited": "{name} editó {date}",
|
||||||
"status.load_more": "Cargar más",
|
"status.load_more": "Cargar más",
|
||||||
|
@ -431,14 +524,15 @@
|
||||||
"status.more": "Más",
|
"status.more": "Más",
|
||||||
"status.mute": "Desactivar los avisos de @{name}",
|
"status.mute": "Desactivar los avisos de @{name}",
|
||||||
"status.mute_conversation": "Desactivar los avisos de la conversación",
|
"status.mute_conversation": "Desactivar los avisos de la conversación",
|
||||||
"status.open": "Espander esti artículu",
|
"status.open": "Espander esta publicación",
|
||||||
"status.pin": "Fixar nel perfil",
|
"status.pin": "Fixar nel perfil",
|
||||||
"status.pinned": "Artículu fixáu",
|
"status.pinned": "Publicación fixada",
|
||||||
"status.read_more": "Lleer más",
|
"status.read_more": "Lleer más",
|
||||||
"status.reblog": "Compartir",
|
"status.reblog": "Compartir",
|
||||||
"status.reblogged_by": "{name} compartió",
|
"status.reblogged_by": "{name} compartió",
|
||||||
"status.reblogs.empty": "Naide nun compartió esti artículu. Cuando daquién lo faiga, apaez equí.",
|
"status.reblogs.empty": "Naide nun compartió esta publicación. Cuando daquién lo faiga, va apaecer equí.",
|
||||||
"status.redraft": "Desaniciar y reeditar",
|
"status.redraft": "Desaniciar y reeditar",
|
||||||
|
"status.remove_bookmark": "Desaniciar el marcador",
|
||||||
"status.replied_to": "En rempuesta a {name}",
|
"status.replied_to": "En rempuesta a {name}",
|
||||||
"status.reply": "Responder",
|
"status.reply": "Responder",
|
||||||
"status.replyAll": "Responder al filu",
|
"status.replyAll": "Responder al filu",
|
||||||
|
@ -451,6 +545,7 @@
|
||||||
"status.uncached_media_warning": "La previsualización nun ta disponible",
|
"status.uncached_media_warning": "La previsualización nun ta disponible",
|
||||||
"status.unmute_conversation": "Activar los avisos de la conversación",
|
"status.unmute_conversation": "Activar los avisos de la conversación",
|
||||||
"status.unpin": "Lliberar del perfil",
|
"status.unpin": "Lliberar del perfil",
|
||||||
|
"subscribed_languages.save": "Guardar los cambeos",
|
||||||
"tabs_bar.home": "Aniciu",
|
"tabs_bar.home": "Aniciu",
|
||||||
"tabs_bar.notifications": "Avisos",
|
"tabs_bar.notifications": "Avisos",
|
||||||
"time_remaining.days": "{number, plural, one {Queda # día} other {Queden # díes}}",
|
"time_remaining.days": "{number, plural, one {Queda # día} other {Queden # díes}}",
|
||||||
|
@ -463,6 +558,7 @@
|
||||||
"units.short.billion": "{count} MM",
|
"units.short.billion": "{count} MM",
|
||||||
"units.short.million": "{count} M",
|
"units.short.million": "{count} M",
|
||||||
"units.short.thousand": "{count} mil",
|
"units.short.thousand": "{count} mil",
|
||||||
|
"upload_area.title": "Arrastra y suelta pa xubir",
|
||||||
"upload_button.label": "Amestar ficheros multimedia",
|
"upload_button.label": "Amestar ficheros multimedia",
|
||||||
"upload_error.poll": "La xuba de ficheros nun ta permitida coles encuestes.",
|
"upload_error.poll": "La xuba de ficheros nun ta permitida coles encuestes.",
|
||||||
"upload_form.audio_description": "Describi'l conteníu pa persones sordes y/o ciegues",
|
"upload_form.audio_description": "Describi'l conteníu pa persones sordes y/o ciegues",
|
||||||
|
@ -477,6 +573,7 @@
|
||||||
"upload_progress.processing": "Procesando…",
|
"upload_progress.processing": "Procesando…",
|
||||||
"video.close": "Zarrar el videu",
|
"video.close": "Zarrar el videu",
|
||||||
"video.download": "Baxar el ficheru",
|
"video.download": "Baxar el ficheru",
|
||||||
|
"video.exit_fullscreen": "Colar de la pantalla completa",
|
||||||
"video.expand": "Espander el videu",
|
"video.expand": "Espander el videu",
|
||||||
"video.fullscreen": "Pantalla completa",
|
"video.fullscreen": "Pantalla completa",
|
||||||
"video.hide": "Esconder el videu",
|
"video.hide": "Esconder el videu",
|
||||||
|
|
270
app/javascript/mastodon/locales/az.json
Normal file
270
app/javascript/mastodon/locales/az.json
Normal file
|
@ -0,0 +1,270 @@
|
||||||
|
{
|
||||||
|
"about.blocks": "Moderasiya olunan serverlər",
|
||||||
|
"about.contact": "Əlaqə:",
|
||||||
|
"about.disclaimer": "Mastodon pulsuz, açıq-mənbəli proqram təminatıdır və Mastodon gGmbH-nin əmtəə nişanıdır.",
|
||||||
|
"about.domain_blocks.no_reason_available": "Səbəb naməlumdur",
|
||||||
|
"about.domain_blocks.preamble": "Mastodon adətən fediversedəki hər hansısa bir serverdən olan məzmuna baxmaq və istifadəçilərlə qarşılıqlı əlaqədə olmaq imkanı verir. Bunlar bu serverdə edilmiş istisnalardır.",
|
||||||
|
"about.domain_blocks.silenced.explanation": "Siz bu serverdəki profilləri və məzmunu xüsusi olaraq axtarmasanız və ya izləməsəniz ümumiyyətlə görməyəcəksiniz.",
|
||||||
|
"about.domain_blocks.silenced.title": "Məhdudlaşdırılmış",
|
||||||
|
"about.domain_blocks.suspended.explanation": "Bu serverdən heç bir data emal edilməyəcək, saxlanılmayacaq və ya mübadilə edilməyəcək və bu serverdən olan istifadəçilərlə hər hansı qarşılıqlı əlaqə qeyri-mümkün olacaq.",
|
||||||
|
"about.domain_blocks.suspended.title": "Qadağa qoyulub",
|
||||||
|
"about.not_available": "Bu məlumat bu serverdə əlçatan edilməyib.",
|
||||||
|
"about.powered_by": "{mastodon} tərəfindən təchiz edilən desentralizasiya edilmiş sosial media",
|
||||||
|
"about.rules": "Server qaydaları",
|
||||||
|
"account.account_note_header": "Şəxsi qeyd",
|
||||||
|
"account.add_or_remove_from_list": "Siyahılara əlavə et və ya sil",
|
||||||
|
"account.badges.bot": "Avtomatlaşdırılmış",
|
||||||
|
"account.badges.group": "Qrup",
|
||||||
|
"account.block": "@{name} istifadəçisini blokla",
|
||||||
|
"account.block_domain": "{domain} domenini blokla",
|
||||||
|
"account.block_short": "Blok",
|
||||||
|
"account.blocked": "Bloklanıb",
|
||||||
|
"account.cancel_follow_request": "İzləməni ləğv et",
|
||||||
|
"account.copy": "Profil linkini kopyala",
|
||||||
|
"account.direct": "@{name} istifadəçisini fərdi olaraq etiketlə",
|
||||||
|
"account.disable_notifications": "@{name} paylaşım edəndə mənə bildiriş göndərməyi dayandır",
|
||||||
|
"account.domain_blocked": "Domen bloklanıb",
|
||||||
|
"account.edit_profile": "Profili redaktə et",
|
||||||
|
"account.enable_notifications": "@{name} paylaşım edəndə mənə bildiriş göndər",
|
||||||
|
"account.endorse": "Profildə seçilmişlərə əlavə et",
|
||||||
|
"account.featured_tags.last_status_at": "Son paylaşım {date} tarixində olub",
|
||||||
|
"account.featured_tags.last_status_never": "Paylaşım yoxdur",
|
||||||
|
"account.featured_tags.title": "{name} istifadəçisinin seçilmiş heşteqləri",
|
||||||
|
"account.follow": "İzlə",
|
||||||
|
"account.follow_back": "Sən də izlə",
|
||||||
|
"account.followers": "İzləyicilər",
|
||||||
|
"account.followers.empty": "Bu istifadəçini hələ ki, heç kim izləmir.",
|
||||||
|
"account.followers_counter": "{count, plural, one {{counter} izləyici} other {{counter} izləyici}}",
|
||||||
|
"account.following": "İzləyir",
|
||||||
|
"account.following_counter": "{count, plural, one {{counter} izləyir} other {{counter} izləyir}}",
|
||||||
|
"account.follows.empty": "Bu istifadəçi hələ ki, heç kimi izləmir.",
|
||||||
|
"account.go_to_profile": "Profilə get",
|
||||||
|
"account.hide_reblogs": "@{name} istifadəçisindən olan gücləndirmələri gizlət",
|
||||||
|
"account.in_memoriam": "Xatirə.",
|
||||||
|
"account.joined_short": "Qoşulub",
|
||||||
|
"account.languages": "Abunə olunmuş dilləri dəyiş",
|
||||||
|
"account.link_verified_on": "Bu linkin dəqiqliyi {date} tarixində yoxlanılıb",
|
||||||
|
"account.locked_info": "Bu hesabın məxfilik statusu kilidlənib. Hesabın sahibi onu kimin izləyə biləcəyini manual olaraq təyin edir.",
|
||||||
|
"account.media": "Media",
|
||||||
|
"account.mention": "@{name} istifadəçisini teq et",
|
||||||
|
"account.moved_to": "{name} onun yeni hesabının artıq bu olduğunu bildirdi:",
|
||||||
|
"account.mute": "@{name} istifadəçisini susdur",
|
||||||
|
"account.mute_notifications_short": "Bildirişləri səssizləşdir",
|
||||||
|
"account.mute_short": "Səssizləşdir",
|
||||||
|
"account.muted": "Səssizləşdirilib",
|
||||||
|
"account.mutual": "Ortaq",
|
||||||
|
"account.no_bio": "Təsvir göstərilməyib.",
|
||||||
|
"account.open_original_page": "Orijinal səhifəni aç",
|
||||||
|
"account.posts": "Paylaşım",
|
||||||
|
"account.posts_with_replies": "Paylaşım və cavablar",
|
||||||
|
"account.report": "@{name} istifadəçisini şikayət et",
|
||||||
|
"account.requested": "Təsdiq edilməsi gözlənilir. İzləmə sorğusunu ləğv etmək üçün kliklə",
|
||||||
|
"account.requested_follow": "{name} sizi izləmək sorğusu göndərib",
|
||||||
|
"account.share": "@{name} profilini paylaş",
|
||||||
|
"account.show_reblogs": "@{name} istifadəçisindən olan gücləndirmələri göstər",
|
||||||
|
"account.statuses_counter": "{count, plural, one {{counter} paylaşım} other {{counter} paylaşım}}",
|
||||||
|
"account.unblock": "@{name} blokunu aç",
|
||||||
|
"account.unblock_domain": "{domain} domeninin blokunu aç",
|
||||||
|
"account.unblock_short": "Bloku aç",
|
||||||
|
"account.unendorse": "Profildə seçilmişlərə əlavə etmə",
|
||||||
|
"account.unfollow": "İzləmədən çıxar",
|
||||||
|
"account.unmute": "@{name} səssizləşdirmədən çıxart",
|
||||||
|
"account.unmute_notifications_short": "Bildirişlərin səsini aç",
|
||||||
|
"account.unmute_short": "Səssizləşdirmədən çıxart",
|
||||||
|
"account_note.placeholder": "Qeyd əlavə etmək üçün kliklə",
|
||||||
|
"admin.dashboard.daily_retention": "Qeydiyyatdan sonrakı günə görə istifadəçi qalma dərəcəsi",
|
||||||
|
"admin.dashboard.monthly_retention": "Qeydiyyatdan sonrakı aya görə istifadəçi qalma dərəcəsi",
|
||||||
|
"admin.dashboard.retention.average": "Orta",
|
||||||
|
"admin.dashboard.retention.cohort": "Qeydiyyatdan keçmə ayı",
|
||||||
|
"admin.dashboard.retention.cohort_size": "Yeni istifadəçilər",
|
||||||
|
"admin.impact_report.instance_accounts": "Bunun siləcəyi istifadəçi hesabları",
|
||||||
|
"admin.impact_report.instance_followers": "İstifadəçilərimizin itirəcəyi izləyici sayı",
|
||||||
|
"admin.impact_report.instance_follows": "Onların istifadəçilərinin itirəcəyi izləyici sayı",
|
||||||
|
"admin.impact_report.title": "Təsirin xülasəsi",
|
||||||
|
"alert.rate_limited.message": "Zəhmət olmasa, {retry_time, time, medium} sonra yenidən cəhd edin.",
|
||||||
|
"alert.rate_limited.title": "Sürət limiti",
|
||||||
|
"alert.unexpected.message": "Bilinməyən bir xəta baş verdi.",
|
||||||
|
"alert.unexpected.title": "Ah!",
|
||||||
|
"alt_text_badge.title": "Alternativ mətn",
|
||||||
|
"announcement.announcement": "Elan",
|
||||||
|
"attachments_list.unprocessed": "(emal edilməyib)",
|
||||||
|
"audio.hide": "Audionu gizlət",
|
||||||
|
"block_modal.remote_users_caveat": "Biz {domain} serverindən qərarınıza hörmət etməsini xahiş edəcəyik. Bununla belə, bəzi serverlər blokları fərqli şəkildə idarə edə bildiyi üçün uyğunluğa zəmanət verilmir. İctimai paylaşımlar hələ də daxil olmayan istifadəçilərə görünə bilər.",
|
||||||
|
"block_modal.show_less": "Daha az göstər",
|
||||||
|
"block_modal.show_more": "Daha çox göstər",
|
||||||
|
"block_modal.they_cant_mention": "O səni teq edə bilməz və ya izləyə bilməz.",
|
||||||
|
"block_modal.they_cant_see_posts": "O sənin paylaşımlarını görməyəcək, sən də onun paylaşımlarını görməyəcəksən.",
|
||||||
|
"block_modal.they_will_know": "O sənin onu blokladığını görə biləcək.",
|
||||||
|
"block_modal.title": "İstifadəçi bloklansın?",
|
||||||
|
"block_modal.you_wont_see_mentions": "Onu teq edən postları görməyəcəksən.",
|
||||||
|
"boost_modal.combo": "Növbəti dəfə bunu atlamaq üçün {combo} klikləyə bilərsən",
|
||||||
|
"boost_modal.reblog": "Paylaşım gücləndirilsin?",
|
||||||
|
"boost_modal.undo_reblog": "Paylaşımın gücləndirilməsi ləğv edilsin?",
|
||||||
|
"bundle_column_error.copy_stacktrace": "Xəta hesabatını kopyala",
|
||||||
|
"bundle_column_error.error.body": "Tələb olunan səhifəni göstərmək mümkün olmadı. Bu, kodumuzdakı səhv və ya brauzer uyğunluğu problemi ilə bağlı ola bilər.",
|
||||||
|
"bundle_column_error.error.title": "Ah, yox!",
|
||||||
|
"bundle_column_error.network.body": "Bu səhifəni yükləməyə çalışarkən xəta baş verdi. Bu, internet bağlantınız və ya bu serverlə bağlı müvəqqəti problemlə əlaqədar ola bilər.",
|
||||||
|
"bundle_column_error.network.title": "Şəbəkə xətası",
|
||||||
|
"bundle_column_error.retry": "Yenidən cəhd et",
|
||||||
|
"bundle_column_error.return": "Ana səhifəyə qayıt",
|
||||||
|
"bundle_column_error.routing.body": "Tələb olunan səhifəni tapmaq mümkün olmadı. Ünvan çubuğundakı URL-nin düzgün olduğuna əminsiniz?",
|
||||||
|
"bundle_column_error.routing.title": "404",
|
||||||
|
"bundle_modal_error.close": "Bağla",
|
||||||
|
"bundle_modal_error.retry": "Yenidən cəhd et",
|
||||||
|
"closed_registrations.other_server_instructions": "Mastodon desentralizasiya edilmiş olduğu üçün başqa bir serverdə hesab yarada və hələ də bu serverdən istifadə edə bilərsiniz.",
|
||||||
|
"closed_registrations_modal.description": "{domain} serverində hesab yaratmaq hazırda mümkün deyil, lakin nəzərə alın ki, Mastodondan istifadə etmək üçün xüsusi olaraq {domain} serverində hesaba ehtiyacınız yoxdur.",
|
||||||
|
"closed_registrations_modal.find_another_server": "Başqa server tap",
|
||||||
|
"closed_registrations_modal.preamble": "Mastodon desentralizasiya edilib, ona görə də hesabınızı harada yaratmağınızdan asılı olmayaraq, siz bu serverdə hər kəsi izləyə və onunla əlaqə saxlaya biləcəksiniz. Siz hətta özünüz server aça bilərsiniz!",
|
||||||
|
"closed_registrations_modal.title": "Mastodonda qeydiyyatdan keçmək",
|
||||||
|
"column.about": "Haqqında",
|
||||||
|
"column.blocks": "Bloklanmış istifadəçilər",
|
||||||
|
"column.bookmarks": "Əlfəcinlər",
|
||||||
|
"column.community": "Lokal zaman qrafiki",
|
||||||
|
"column.direct": "Fərdi teqlər",
|
||||||
|
"column.directory": "Profillər arasında gəz",
|
||||||
|
"column.domain_blocks": "Bloklanmış domenlər",
|
||||||
|
"column.favourites": "Sevimlilər",
|
||||||
|
"column.firehose": "Canlı lentlər",
|
||||||
|
"column.follow_requests": "İzləyici sorğuları",
|
||||||
|
"column.home": "Ana səhifə",
|
||||||
|
"column.lists": "Siyahılar",
|
||||||
|
"column.mutes": "Səssizləşdirilmiş istifadəçilər",
|
||||||
|
"column.notifications": "Bildirişlər",
|
||||||
|
"column.pins": "Bərkidilmiş paylaşımlar",
|
||||||
|
"column.public": "Federasiya zaman qrafiki",
|
||||||
|
"column_back_button.label": "Geriyə",
|
||||||
|
"column_header.hide_settings": "Parametrləri gizlət",
|
||||||
|
"column_header.moveLeft_settings": "Sütunu sola köçür",
|
||||||
|
"column_header.moveRight_settings": "Sütunu sağa köçür",
|
||||||
|
"column_header.pin": "Bərkit",
|
||||||
|
"column_header.show_settings": "Parametrləri göstər",
|
||||||
|
"column_header.unpin": "Bərkitmə",
|
||||||
|
"column_subheading.settings": "Parametrlər",
|
||||||
|
"community.column_settings.local_only": "Sadəcə lokalda",
|
||||||
|
"community.column_settings.media_only": "Sadəcə media",
|
||||||
|
"community.column_settings.remote_only": "Sadəcə uzaq serverlər",
|
||||||
|
"compose.language.change": "Dili dəyiş",
|
||||||
|
"compose.language.search": "Dil axtar...",
|
||||||
|
"compose.published.body": "Paylaşıldı.",
|
||||||
|
"compose.published.open": "Bax",
|
||||||
|
"compose.saved.body": "Paylaşım yadda saxlandı.",
|
||||||
|
"compose_form.direct_message_warning_learn_more": "Ətraflı öyrən",
|
||||||
|
"compose_form.encryption_warning": "Mastodondakı paylaşımlar ucdan-uca şifrələnmir. Mastodonda heç bir həssas məlumat paylaşmayın.",
|
||||||
|
"compose_form.hashtag_warning": "Bu yazı ictimai olmadığı üçün heç bir heşteqdə göstərilməyəcək. Yalnız açıq yazılar heşteq ilə axtarıla bilər.",
|
||||||
|
"compose_form.lock_disclaimer": "Hesabınız {locked} deyil. Sadəcə izləyicilər üçün paylaşımlarınıza baxmaq üçün hər kəs sizi izləyə bilər.",
|
||||||
|
"compose_form.lock_disclaimer.lock": "kilidli",
|
||||||
|
"compose_form.placeholder": "Ağlınızdan nə keçir?",
|
||||||
|
"compose_form.poll.duration": "Sorğunun müddəti",
|
||||||
|
"compose_form.poll.multiple": "Çoxlu cavab",
|
||||||
|
"compose_form.poll.option_placeholder": "Seçim {number}",
|
||||||
|
"compose_form.poll.switch_to_multiple": "Çoxsaylı cavablara icazə vermək üçün sorğunu redaktə et",
|
||||||
|
"compose_form.poll.switch_to_single": "Tək cavaba icazə vermək üçün sorğunu redaktə et",
|
||||||
|
"compose_form.poll.type": "Stil",
|
||||||
|
"compose_form.publish": "Paylaş",
|
||||||
|
"compose_form.publish_form": "Yeni paylaşım",
|
||||||
|
"compose_form.reply": "Cavabla",
|
||||||
|
"compose_form.save_changes": "Yenilə",
|
||||||
|
"compose_form.spoiler.marked": "Məzmun xəbərdarlığını sil",
|
||||||
|
"compose_form.spoiler.unmarked": "Məzmun xəbərdarlığı əlavə et",
|
||||||
|
"compose_form.spoiler_placeholder": "Məzmun xəbərdarlığı (məcburi deyil)",
|
||||||
|
"confirmation_modal.cancel": "İmtina",
|
||||||
|
"confirmations.block.confirm": "Blokla",
|
||||||
|
"confirmations.delete.confirm": "Sil",
|
||||||
|
"confirmations.delete.message": "Bu paylaşımı silmək istədiyinizə əminsiniz?",
|
||||||
|
"confirmations.delete.title": "Paylaşım silinsin?",
|
||||||
|
"confirmations.delete_list.confirm": "Sil",
|
||||||
|
"confirmations.delete_list.message": "Bu siyahını həmişəlik silmək istədiyinizə əminsiniz?",
|
||||||
|
"confirmations.delete_list.title": "Siyahı silinsin?",
|
||||||
|
"confirmations.discard_edit_media.confirm": "Ləğv et",
|
||||||
|
"confirmations.discard_edit_media.message": "Media təsvirində və ya önizləmədə yadda saxlanmamış dəyişiklikləriniz var, ləğv edilsin?",
|
||||||
|
"confirmations.edit.confirm": "Redaktə et",
|
||||||
|
"confirmations.edit.message": "Redaktə etmək hazırda tərtib etdiyiniz mesajın üzərinə yazacaq. Davam etmək istədiyinizə əminsiniz?",
|
||||||
|
"confirmations.edit.title": "Paylaşım yenidə yazılsın?",
|
||||||
|
"confirmations.logout.confirm": "Çıxış et",
|
||||||
|
"confirmations.logout.message": "Çıxmaq istədiyinizə əminsiniz?",
|
||||||
|
"confirmations.logout.title": "Çıxış edilsin?",
|
||||||
|
"confirmations.mute.confirm": "Səssizləşdir",
|
||||||
|
"confirmations.redraft.confirm": "Sil və qaralamaya köçür",
|
||||||
|
"confirmations.redraft.message": "Bu paylaşımı silmək və qaralamaya köçürmək istədiyinizə əminsiniz? Bəyənmələr və gücləndirmələr itəcək və orijinal paylaşıma olan cavablar tənha qalacaq.",
|
||||||
|
"confirmations.redraft.title": "Paylaşım silinsin & qaralamaya köçürülsün?",
|
||||||
|
"confirmations.reply.confirm": "Cavabla",
|
||||||
|
"confirmations.reply.message": "İndi cavab vermək hal-hazırda yazdığınız mesajın üzərinə yazacaq. Davam etmək istədiyinizə əminsiniz?",
|
||||||
|
"confirmations.reply.title": "Paylaşım yenidən yazılsın?",
|
||||||
|
"confirmations.unfollow.confirm": "İzləmədən çıxar",
|
||||||
|
"confirmations.unfollow.message": "{name} izləmədən çıxmaq istədiyinizə əminsiniz?",
|
||||||
|
"confirmations.unfollow.title": "İstifadəçi izləmədən çıxarılsın?",
|
||||||
|
"content_warning.hide": "Paylaşımı gizlət",
|
||||||
|
"content_warning.show": "Yenə də göstər",
|
||||||
|
"content_warning.show_more": "Daha çox göstər",
|
||||||
|
"conversation.delete": "Söhbəti sil",
|
||||||
|
"conversation.mark_as_read": "Oxunmuş kimi qeyd et",
|
||||||
|
"conversation.open": "Söhbətə bax",
|
||||||
|
"conversation.with": "{names} ilə",
|
||||||
|
"copy_icon_button.copied": "Mübadilə buferinə köçürüldü",
|
||||||
|
"copypaste.copied": "Kopyalandı",
|
||||||
|
"copypaste.copy_to_clipboard": "Kopyala",
|
||||||
|
"directory.federated": "Bilinən fediversedən",
|
||||||
|
"directory.local": "Sadəcə {domain}",
|
||||||
|
"directory.new_arrivals": "Yeni gələnlər",
|
||||||
|
"directory.recently_active": "Bayaq aktiv olanlar",
|
||||||
|
"disabled_account_banner.account_settings": "Hesab parametrləri",
|
||||||
|
"disabled_account_banner.text": "Sizin hesabınız {disabledAccount} hal-hazırda deaktiv edilib.",
|
||||||
|
"dismissable_banner.community_timeline": "Bunlar, hesabları {domain} serverində yerləşən insanların ən son ictimai paylaşımlarıdır.",
|
||||||
|
"dismissable_banner.dismiss": "Bağla",
|
||||||
|
"domain_block_modal.block": "Serveri blokla",
|
||||||
|
"domain_block_modal.block_account_instead": "@{name} istifadəçisini blokla",
|
||||||
|
"domain_block_modal.they_can_interact_with_old_posts": "Bu serverdən olan insanlar köhnə paylaşımlarınızla əlaqə qura bilər.",
|
||||||
|
"domain_block_modal.they_cant_follow": "Bu serverdən heç kim sizi izləyə bilməz.",
|
||||||
|
"domain_block_modal.they_wont_know": "Onlar bloklandıqlarını bilməyəcəklər.",
|
||||||
|
"domain_block_modal.title": "Domen bloklansın?",
|
||||||
|
"domain_block_modal.you_will_lose_num_followers": "Siz {followersCount, plural, one {{followersCountDisplay} follower} other {{followersCountDisplay} izləyici}} və izlədiyiniz {followingCount, plural, one {{followingCountDisplay} istifadəçini} other {{followingCountDisplay} istifadəçini}} itirəcəksiniz.",
|
||||||
|
"domain_block_modal.you_will_lose_relationships": "Bu serverdən olan bütün izləyicilərinizi və izlədiklərinizi itirəcəksiniz.",
|
||||||
|
"domain_block_modal.you_wont_see_posts": "Bu serverdən olan paylaşımları və istifadəçilərdən olan bildirişləri görməyəcəksiniz.",
|
||||||
|
"domain_pill.activitypub_lets_connect": "Bu, təkcə Mastodonda deyil, həm də müxtəlif sosial tətbiqlərdə insanlarla əlaqə saxlamağa və onlarla ünsiyyət qurmağa imkan verir.",
|
||||||
|
"domain_pill.activitypub_like_language": "ActivityPub-ı Mastodonun digər sosial şəbəkələrlə danışdığı dil kimi düşünə bilərsiniz.",
|
||||||
|
"domain_pill.server": "Server",
|
||||||
|
"domain_pill.their_handle": "Tanıdıcısı:",
|
||||||
|
"domain_pill.their_server": "Onların bütün paylaşımlarının yaşadığı rəqəmsal ev.",
|
||||||
|
"domain_pill.their_username": "Serverdəki unikal identifikator. Fərqli serverlərdə eyni istifadəçi adı ilə istifadəçilər tapmaq mümkündür.",
|
||||||
|
"domain_pill.username": "İstifadəçi adı",
|
||||||
|
"domain_pill.whats_in_a_handle": "Tanıdıcı nədir?",
|
||||||
|
"domain_pill.who_they_are": "Tanıdıcılar kimin kim olduğunu və harada olduğunu bildirdiyi üçün siz <button>ActivityPub tərəfindən dəstəklənən platformaların</button> sosial şəbəkəsindəki bütün insanlarla əlaqə saxlaya bilərsiniz.",
|
||||||
|
"domain_pill.who_you_are": "Tanıdıcılar sizin kim olduğunuzu və harada olduğunuzu bildirdiyi üçün <button>ActivityPub tərəfindən dəstəklənən platformaların</button> sosial şəbəkəsindəki bütün insanlar sizlə əlaqə saxlaya bilər.",
|
||||||
|
"domain_pill.your_handle": "Tanıdıcınız:",
|
||||||
|
"domain_pill.your_server": "Bütün paylaşımlarınızın yaşadığı rəqəmsal ev. Buranı bəyənmirsiniz? İstədiyiniz vaxt serverdən köçün və izləyicilərinizi də aparın.",
|
||||||
|
"domain_pill.your_username": "Serverdəki unikal identifikatoruz. Fərqli serverlərdə eyni istifadəçi adı ilə istifadəçilər tapmaq mümkündür.",
|
||||||
|
"embed.instructions": "Aşağıdakı kodu kopyalayaraq bu postu veb-saytınıza yerləşdirin.",
|
||||||
|
"embed.preview": "Belə görünəcək:",
|
||||||
|
"emoji_button.activity": "Aktivlik",
|
||||||
|
"emoji_button.clear": "Təmizlə",
|
||||||
|
"emoji_button.custom": "Özəl",
|
||||||
|
"emoji_button.flags": "Bayraqlar",
|
||||||
|
"emoji_button.food": "Yemək və içki",
|
||||||
|
"emoji_button.label": "Emoji daxil et",
|
||||||
|
"emoji_button.nature": "Təbiət",
|
||||||
|
"emoji_button.not_found": "Uyğun emoji tapılmadı",
|
||||||
|
"emoji_button.objects": "Obyektlər",
|
||||||
|
"emoji_button.people": "İnsanlar",
|
||||||
|
"emoji_button.recent": "Tez-tez istifadə edilən",
|
||||||
|
"emoji_button.search": "Axtar...",
|
||||||
|
"emoji_button.search_results": "Axtarış nəticələri",
|
||||||
|
"emoji_button.symbols": "Simvollar",
|
||||||
|
"emoji_button.travel": "Səyahət və məkanlar",
|
||||||
|
"empty_column.account_hides_collections": "Bu istifadəçi bu məlumatı əlçatan etməməyi seçib",
|
||||||
|
"empty_column.account_suspended": "Hesab silinib",
|
||||||
|
"empty_column.account_timeline": "Heç bir paylaşım yoxdur!",
|
||||||
|
"empty_column.account_unavailable": "Profil əlçatan deyil",
|
||||||
|
"empty_column.blocks": "Hələ ki, heç bir istifadəçini bloklamamasınız.",
|
||||||
|
"empty_column.bookmarked_statuses": "Hələ ki, heç bir paylaşımı yadda saxlamamısınız. Yadda saxlayanda burada görünəcək.",
|
||||||
|
"empty_column.community": "Lokal zaman qrafiki boşdur. Topun yuvarlanmağa başlaması üçün ictimai bir şey paylaşın!",
|
||||||
|
"empty_column.direct": "Gizli etiketiniz yoxdur. Göndərdikdə və ya qəbul etdikdə burada görəcəksiniz.",
|
||||||
|
"empty_column.domain_blocks": "Hələ ki, bloklanmış domen yoxdur.",
|
||||||
|
"empty_column.explore_statuses": "Hal-hazırda trenddə heç yoxdur. Daha sonra yenidən yoxlayın!",
|
||||||
|
"empty_column.favourited_statuses": "Bəyəndiyiniz paylaşımlar yoxdur. Birini bəyəndikdə burada görünəcək.",
|
||||||
|
"empty_column.favourites": "Bu paylaşımı hələ ki, heç kim bəyənməyib. Bəyənildikdə burada görünəcək.",
|
||||||
|
"empty_column.follow_requests": "İzləmə sorğularınız yoxdur. Qəbul etdikdə burada görəcəksiniz.",
|
||||||
|
"empty_column.followed_tags": "Heç bir heşteq izləmirsiniz. İzlədikdə burada görünəcək.",
|
||||||
|
"empty_column.hashtag": "Bu heşteqdə hələ ki, heç nə yoxdur.",
|
||||||
|
"follow_suggestions.hints.friends_of_friends": "Bu profil izlədiyiniz insanlar arasında populyardır.",
|
||||||
|
"follow_suggestions.hints.most_followed": "Bu profil {domain} serverində ən çox izlənilənlərdən biridir."
|
||||||
|
}
|
|
@ -85,7 +85,7 @@
|
||||||
"alert.rate_limited.title": "Ліміт перавышаны",
|
"alert.rate_limited.title": "Ліміт перавышаны",
|
||||||
"alert.unexpected.message": "Узнікла нечаканая памылка.",
|
"alert.unexpected.message": "Узнікла нечаканая памылка.",
|
||||||
"alert.unexpected.title": "Вой!",
|
"alert.unexpected.title": "Вой!",
|
||||||
"alt_text_badge.title": "Альтернативный текст",
|
"alt_text_badge.title": "Альтэрнатыўны тэкст",
|
||||||
"announcement.announcement": "Аб'ява",
|
"announcement.announcement": "Аб'ява",
|
||||||
"attachments_list.unprocessed": "(неапрацаваны)",
|
"attachments_list.unprocessed": "(неапрацаваны)",
|
||||||
"audio.hide": "Схаваць аўдыя",
|
"audio.hide": "Схаваць аўдыя",
|
||||||
|
@ -224,7 +224,7 @@
|
||||||
"domain_block_modal.they_wont_know": "Карыстальнік не будзе ведаць пра блакіроўку.",
|
"domain_block_modal.they_wont_know": "Карыстальнік не будзе ведаць пра блакіроўку.",
|
||||||
"domain_block_modal.title": "Заблакіраваць дамен?",
|
"domain_block_modal.title": "Заблакіраваць дамен?",
|
||||||
"domain_block_modal.you_will_lose_num_followers": "Вы страціце {followersCount, plural, one {{followersCountDisplay} падпісчыка} other {{followersCountDisplay} падпісчыкаў}} і {followingCount, plural, one {{followingCountDisplay} чалавека, на якога падпісаны} other {{followingCountDisplay} людзей, на якіх падпісаны}}.",
|
"domain_block_modal.you_will_lose_num_followers": "Вы страціце {followersCount, plural, one {{followersCountDisplay} падпісчыка} other {{followersCountDisplay} падпісчыкаў}} і {followingCount, plural, one {{followingCountDisplay} чалавека, на якога падпісаны} other {{followingCountDisplay} людзей, на якіх падпісаны}}.",
|
||||||
"domain_block_modal.you_will_lose_relationships": "Вы страціце ўсех падпісчыкаў і людзей на якіх падпісаны на гэтым.",
|
"domain_block_modal.you_will_lose_relationships": "Вы страціце ўсіх падпісчыкаў і людзей на якіх падпісаны на гэтым серверы.",
|
||||||
"domain_block_modal.you_wont_see_posts": "Вы не ўбачыце допісаў і апавяшчэнняў ад карыстальнікаў з гэтага сервера.",
|
"domain_block_modal.you_wont_see_posts": "Вы не ўбачыце допісаў і апавяшчэнняў ад карыстальнікаў з гэтага сервера.",
|
||||||
"domain_pill.activitypub_lets_connect": "Ён дазваляе вам узаемадзейнічаць не толькі з карыстальнікамі Mastodon, але і розных іншых сацыяльных платформ.",
|
"domain_pill.activitypub_lets_connect": "Ён дазваляе вам узаемадзейнічаць не толькі з карыстальнікамі Mastodon, але і розных іншых сацыяльных платформ.",
|
||||||
"domain_pill.activitypub_like_language": "ActivityPub — гэта мова, на якой Mastodon размаўляе з іншымі сацыяльнымі сеткамі.",
|
"domain_pill.activitypub_like_language": "ActivityPub — гэта мова, на якой Mastodon размаўляе з іншымі сацыяльнымі сеткамі.",
|
||||||
|
@ -359,6 +359,11 @@
|
||||||
"hints.profiles.followers_may_be_missing": "Падпісчыкі гэтага профілю могуць адсутнічаць.",
|
"hints.profiles.followers_may_be_missing": "Падпісчыкі гэтага профілю могуць адсутнічаць.",
|
||||||
"hints.profiles.follows_may_be_missing": "Падпіскі гэтага профілю могуць адсутнічаць.",
|
"hints.profiles.follows_may_be_missing": "Падпіскі гэтага профілю могуць адсутнічаць.",
|
||||||
"hints.profiles.posts_may_be_missing": "Некаторыя допісы гэтага профілю могуць адсутнічаць.",
|
"hints.profiles.posts_may_be_missing": "Некаторыя допісы гэтага профілю могуць адсутнічаць.",
|
||||||
|
"hints.profiles.see_more_followers": "Глядзець больш падпісаных на {domain}",
|
||||||
|
"hints.profiles.see_more_follows": "Глядзець больш падпісак на {domain}",
|
||||||
|
"hints.profiles.see_more_posts": "Глядзець больш допісаў на {domain}",
|
||||||
|
"hints.threads.replies_may_be_missing": "Адказы зь іншых сэрвэраў могуць адсутнічаць.",
|
||||||
|
"hints.threads.see_more": "Глядзіце больш адказаў на {domain}",
|
||||||
"home.column_settings.show_reblogs": "Паказваць пашырэнні",
|
"home.column_settings.show_reblogs": "Паказваць пашырэнні",
|
||||||
"home.column_settings.show_replies": "Паказваць адказы",
|
"home.column_settings.show_replies": "Паказваць адказы",
|
||||||
"home.hide_announcements": "Схаваць аб'явы",
|
"home.hide_announcements": "Схаваць аб'явы",
|
||||||
|
@ -366,7 +371,17 @@
|
||||||
"home.pending_critical_update.link": "Прагледзець абнаўленні",
|
"home.pending_critical_update.link": "Прагледзець абнаўленні",
|
||||||
"home.pending_critical_update.title": "Даступна крытычнае абнаўленне бяспекі!",
|
"home.pending_critical_update.title": "Даступна крытычнае абнаўленне бяспекі!",
|
||||||
"home.show_announcements": "Паказаць аб'явы",
|
"home.show_announcements": "Паказаць аб'явы",
|
||||||
|
"ignore_notifications_modal.disclaimer": "Mastodon ня можа йнфармаваць карыстальнікаў аб тым, што вы прайігнаравалі йх паведамленьні. Ігнараваньне паведамленьняў не спыніць іх адпраўку.",
|
||||||
|
"ignore_notifications_modal.filter_instead": "Замест гэтага адфільтраваць",
|
||||||
|
"ignore_notifications_modal.filter_to_act_users": "Вы па-ранейшаму зможаце прымаць, адхіляць ці скардзіцца на карыстальнікаў",
|
||||||
|
"ignore_notifications_modal.filter_to_avoid_confusion": "Фільтраваньне дапамагае пазьбегнуць патэнцыйнай блытаніны",
|
||||||
|
"ignore_notifications_modal.filter_to_review_separately": "Вы можаце прагледзець адфільтраваныя паведамленьні асобна",
|
||||||
|
"ignore_notifications_modal.ignore": "Ігнараваць паведамленьні",
|
||||||
|
"ignore_notifications_modal.limited_accounts_title": "Ігнараваць паведамленьні ад абмежаваных уліковых запісаў?",
|
||||||
|
"ignore_notifications_modal.new_accounts_title": "Ігнараваць паведамленьні ад новых уліковых запісаў?",
|
||||||
|
"ignore_notifications_modal.not_followers_title": "Ігнараваць паведамленьні ад людзей, якія ня падпісаныя на вас?",
|
||||||
"ignore_notifications_modal.not_following_title": "Ігнараваць апавяшчэнні ад людзей на якіх вы не падпісаны?",
|
"ignore_notifications_modal.not_following_title": "Ігнараваць апавяшчэнні ад людзей на якіх вы не падпісаны?",
|
||||||
|
"ignore_notifications_modal.private_mentions_title": "Ігнараваць паведамленьні аб непажаданых прыватных згадках?",
|
||||||
"interaction_modal.description.favourite": "Маючы ўліковы запіс Mastodon, вы можаце ўпадабаць гэты допіс, каб паведаміць аўтару, што ён вам падабаецца, і захаваць яго на будучыню.",
|
"interaction_modal.description.favourite": "Маючы ўліковы запіс Mastodon, вы можаце ўпадабаць гэты допіс, каб паведаміць аўтару, што ён вам падабаецца, і захаваць яго на будучыню.",
|
||||||
"interaction_modal.description.follow": "Маючы акаўнт у Mastodon, вы можаце падпісацца на {name}, каб бачыць яго/яе допісы ў сваёй хатняй стужцы.",
|
"interaction_modal.description.follow": "Маючы акаўнт у Mastodon, вы можаце падпісацца на {name}, каб бачыць яго/яе допісы ў сваёй хатняй стужцы.",
|
||||||
"interaction_modal.description.reblog": "З уліковым запісам Mastodon, вы можаце пашырыць гэты пост, каб падзяліцца ім са сваімі падпісчыкамі.",
|
"interaction_modal.description.reblog": "З уліковым запісам Mastodon, вы можаце пашырыць гэты пост, каб падзяліцца ім са сваімі падпісчыкамі.",
|
||||||
|
@ -566,6 +581,7 @@
|
||||||
"notifications.policy.accept_hint": "Паказваць у апавяшчэннях",
|
"notifications.policy.accept_hint": "Паказваць у апавяшчэннях",
|
||||||
"notifications.policy.drop": "Iгнараваць",
|
"notifications.policy.drop": "Iгнараваць",
|
||||||
"notifications.policy.filter": "Фільтраваць",
|
"notifications.policy.filter": "Фільтраваць",
|
||||||
|
"notifications.policy.filter_limited_accounts_title": "Абмежаваныя ўліковыя запісы",
|
||||||
"notifications.policy.filter_new_accounts.hint": "Створаныя на працягу {days, plural, one {апошняга # дня} few {апошніх # дзён} many {апошніх # дзён} other {апошняй # дня}}",
|
"notifications.policy.filter_new_accounts.hint": "Створаныя на працягу {days, plural, one {апошняга # дня} few {апошніх # дзён} many {апошніх # дзён} other {апошняй # дня}}",
|
||||||
"notifications.policy.filter_new_accounts_title": "Новыя ўліковыя запісы",
|
"notifications.policy.filter_new_accounts_title": "Новыя ўліковыя запісы",
|
||||||
"notifications.policy.filter_not_followers_hint": "Уключаючы людзей, якія падпісаны на вас менш, чым {days, plural, one {# дзень} few {# дні} many {# дзён} other {# дня}}",
|
"notifications.policy.filter_not_followers_hint": "Уключаючы людзей, якія падпісаны на вас менш, чым {days, plural, one {# дзень} few {# дні} many {# дзён} other {# дня}}",
|
||||||
|
@ -749,6 +765,7 @@
|
||||||
"status.bookmark": "Дадаць закладку",
|
"status.bookmark": "Дадаць закладку",
|
||||||
"status.cancel_reblog_private": "Прыбраць",
|
"status.cancel_reblog_private": "Прыбраць",
|
||||||
"status.cannot_reblog": "Гэты пост нельга пашырыць",
|
"status.cannot_reblog": "Гэты пост нельга пашырыць",
|
||||||
|
"status.continued_thread": "Працяг тэмы",
|
||||||
"status.copy": "Скапіраваць спасылку на допіс",
|
"status.copy": "Скапіраваць спасылку на допіс",
|
||||||
"status.delete": "Выдаліць",
|
"status.delete": "Выдаліць",
|
||||||
"status.detailed_status": "Дэтальны агляд размовы",
|
"status.detailed_status": "Дэтальны агляд размовы",
|
||||||
|
@ -782,6 +799,7 @@
|
||||||
"status.reblogs.empty": "Гэты допіс яшчэ ніхто не пашырыў. Калі гэта адбудзецца, гэтых людзей будзе бачна тут.",
|
"status.reblogs.empty": "Гэты допіс яшчэ ніхто не пашырыў. Калі гэта адбудзецца, гэтых людзей будзе бачна тут.",
|
||||||
"status.redraft": "Выдаліць і паправіць",
|
"status.redraft": "Выдаліць і паправіць",
|
||||||
"status.remove_bookmark": "Выдаліць закладку",
|
"status.remove_bookmark": "Выдаліць закладку",
|
||||||
|
"status.replied_in_thread": "Адказаў у тэме",
|
||||||
"status.replied_to": "Адказаў {name}",
|
"status.replied_to": "Адказаў {name}",
|
||||||
"status.reply": "Адказаць",
|
"status.reply": "Адказаць",
|
||||||
"status.replyAll": "Адказаць у ланцугу",
|
"status.replyAll": "Адказаць у ланцугу",
|
||||||
|
|
|
@ -89,7 +89,7 @@
|
||||||
"announcement.announcement": "Оповестяване",
|
"announcement.announcement": "Оповестяване",
|
||||||
"attachments_list.unprocessed": "(необработено)",
|
"attachments_list.unprocessed": "(необработено)",
|
||||||
"audio.hide": "Скриване на звука",
|
"audio.hide": "Скриване на звука",
|
||||||
"block_modal.remote_users_caveat": "Ще поискаме сървърът {domain} да почита решението ви. Съгласието обаче не се гарантира откак някои сървъри могат да боравят с блоковете по различен начин. Обществените публикации още може да се виждат от невлезли в системата потребители.",
|
"block_modal.remote_users_caveat": "Ще приканим сървъра {domain} да уважава решението ви. За съжаление не можем да гарантираме това защото някои сървъри могат да третират блокиранията по различен начин. Публичните постове може да продължат да бъдат видими за потребители, които не са се регистрирали.",
|
||||||
"block_modal.show_less": "Повече на показ",
|
"block_modal.show_less": "Повече на показ",
|
||||||
"block_modal.show_more": "По-малко на показ",
|
"block_modal.show_more": "По-малко на показ",
|
||||||
"block_modal.they_cant_mention": "Те не могат да ви споменават или последват.",
|
"block_modal.they_cant_mention": "Те не могат да ви споменават или последват.",
|
||||||
|
@ -229,14 +229,14 @@
|
||||||
"domain_pill.activitypub_lets_connect": "Позволява ви да се свързвате и взаимодействате с хора не само в Mastodon, но и през различни социални приложения.",
|
"domain_pill.activitypub_lets_connect": "Позволява ви да се свързвате и взаимодействате с хора не само в Mastodon, но и през различни социални приложения.",
|
||||||
"domain_pill.activitypub_like_language": "ActivityPub е като език на Mastodon, говорещ с други социални мрежи.",
|
"domain_pill.activitypub_like_language": "ActivityPub е като език на Mastodon, говорещ с други социални мрежи.",
|
||||||
"domain_pill.server": "Сървър",
|
"domain_pill.server": "Сървър",
|
||||||
"domain_pill.their_handle": "Тяхната ръчка:",
|
"domain_pill.their_handle": "Техният адрес:",
|
||||||
"domain_pill.their_server": "Цифровият им дом, където живеят всичките им публикации.",
|
"domain_pill.their_server": "Цифровият им дом, където живеят всичките им публикации.",
|
||||||
"domain_pill.their_username": "Неповторимият им идентификатор на сървъра им. Възможно е да се намерят потребители със същото потребителско име на други сървъри.",
|
"domain_pill.their_username": "Неповторимият им идентификатор на сървъра им. Възможно е да се намерят потребители със същото потребителско име на други сървъри.",
|
||||||
"domain_pill.username": "Потребителско име",
|
"domain_pill.username": "Потребителско име",
|
||||||
"domain_pill.whats_in_a_handle": "Какво е в ръчката?",
|
"domain_pill.whats_in_a_handle": "Как се съставя адресът?",
|
||||||
"domain_pill.who_they_are": "Откак ръчките казват кой кой е и къде е, то може да взаимодействате с хора през социаното уебпространство на <button>захранваните платформи от ActivityPub</button>.",
|
"domain_pill.who_they_are": "Адресът показва за някой кой е той и къде се намира. Това ви позволява да общувате с всички в социалната мрежа от <button>платформите поддържащи ActivityPub</button>.",
|
||||||
"domain_pill.who_you_are": "Тъй като вашата ръчка казва кои сте и къде сте, то може да взаимодействате с хора през социаното уебпространство на <button>захранваните платформи от ActivityPub</button>.",
|
"domain_pill.who_you_are": "Адресът ви показва кой сте и къде се намирате. Това ви позволява да общувате с всички в социалната мрежа от <button>платформите поддържащи ActivityPub</button>.",
|
||||||
"domain_pill.your_handle": "Вашата ръчка:",
|
"domain_pill.your_handle": "Вашият адрес:",
|
||||||
"domain_pill.your_server": "Цифровият ви дом, където живеят всичките ви публикации. Не харесвате ли този? Прехвърляте се на сървъри по всяко време и докарвате последователите си също.",
|
"domain_pill.your_server": "Цифровият ви дом, където живеят всичките ви публикации. Не харесвате ли този? Прехвърляте се на сървъри по всяко време и докарвате последователите си също.",
|
||||||
"domain_pill.your_username": "Неповторимият ви идентификатор на този сървър. Възможно е да се намерят потребители със същото потребителско име на други сървъри.",
|
"domain_pill.your_username": "Неповторимият ви идентификатор на този сървър. Възможно е да се намерят потребители със същото потребителско име на други сървъри.",
|
||||||
"embed.instructions": "Вградете публикацията в уебсайта си, копирайки кода долу.",
|
"embed.instructions": "Вградете публикацията в уебсайта си, копирайки кода долу.",
|
||||||
|
@ -372,6 +372,7 @@
|
||||||
"home.pending_critical_update.title": "Налично критично обновяване на сигурността!",
|
"home.pending_critical_update.title": "Налично критично обновяване на сигурността!",
|
||||||
"home.show_announcements": "Показване на оповестяванията",
|
"home.show_announcements": "Показване на оповестяванията",
|
||||||
"ignore_notifications_modal.disclaimer": "Mastodon не може да осведоми потребители, че сте пренебрегнали известията им. Пренебрегването на известията няма да спре самите съобщения да не бъдат изпращани.",
|
"ignore_notifications_modal.disclaimer": "Mastodon не може да осведоми потребители, че сте пренебрегнали известията им. Пренебрегването на известията няма да спре самите съобщения да не бъдат изпращани.",
|
||||||
|
"ignore_notifications_modal.filter_instead": "Вместо това филтриране",
|
||||||
"ignore_notifications_modal.filter_to_act_users": "Вие все още ще може да приемате, отхвърляте или докладвате потребители",
|
"ignore_notifications_modal.filter_to_act_users": "Вие все още ще може да приемате, отхвърляте или докладвате потребители",
|
||||||
"ignore_notifications_modal.filter_to_avoid_confusion": "Прецеждането помага за избягване на възможно объркване",
|
"ignore_notifications_modal.filter_to_avoid_confusion": "Прецеждането помага за избягване на възможно объркване",
|
||||||
"ignore_notifications_modal.filter_to_review_separately": "Може да разгледате отделно филтрираните известия",
|
"ignore_notifications_modal.filter_to_review_separately": "Може да разгледате отделно филтрираните известия",
|
||||||
|
@ -596,6 +597,7 @@
|
||||||
"notifications.policy.drop": "Пренебрегване",
|
"notifications.policy.drop": "Пренебрегване",
|
||||||
"notifications.policy.drop_hint": "Изпращане в празнотата, за да не се видим никога пак",
|
"notifications.policy.drop_hint": "Изпращане в празнотата, за да не се видим никога пак",
|
||||||
"notifications.policy.filter": "Филтър",
|
"notifications.policy.filter": "Филтър",
|
||||||
|
"notifications.policy.filter_hint": "Изпращане до филтрираните входящи за известия",
|
||||||
"notifications.policy.filter_limited_accounts_hint": "Ограничено от модераторите на сървъра",
|
"notifications.policy.filter_limited_accounts_hint": "Ограничено от модераторите на сървъра",
|
||||||
"notifications.policy.filter_limited_accounts_title": "Модерирани акаунти",
|
"notifications.policy.filter_limited_accounts_title": "Модерирани акаунти",
|
||||||
"notifications.policy.filter_new_accounts.hint": "Сътворено през {days, plural, one {последния ден} other {последните # дена}}",
|
"notifications.policy.filter_new_accounts.hint": "Сътворено през {days, plural, one {последния ден} other {последните # дена}}",
|
||||||
|
|
|
@ -11,6 +11,7 @@
|
||||||
"about.not_available": "এই তথ্য এই সার্ভারে উন্মুক্ত করা হয়নি.",
|
"about.not_available": "এই তথ্য এই সার্ভারে উন্মুক্ত করা হয়নি.",
|
||||||
"about.powered_by": "{mastodon} দ্বারা তৈরি বিকেন্দ্রীভূত সামাজিক মিডিয়া।",
|
"about.powered_by": "{mastodon} দ্বারা তৈরি বিকেন্দ্রীভূত সামাজিক মিডিয়া।",
|
||||||
"about.rules": "সার্ভারের নিয়মাবলী",
|
"about.rules": "সার্ভারের নিয়মাবলী",
|
||||||
|
"account.account_note_header": "ব্যক্তিগত টীকা",
|
||||||
"account.add_or_remove_from_list": "তালিকাতে যোগ বা অপসারণ করো",
|
"account.add_or_remove_from_list": "তালিকাতে যোগ বা অপসারণ করো",
|
||||||
"account.badges.bot": "বট",
|
"account.badges.bot": "বট",
|
||||||
"account.badges.group": "দল",
|
"account.badges.group": "দল",
|
||||||
|
@ -19,6 +20,7 @@
|
||||||
"account.block_short": "ব্লক",
|
"account.block_short": "ব্লক",
|
||||||
"account.blocked": "অবরুদ্ধ",
|
"account.blocked": "অবরুদ্ধ",
|
||||||
"account.cancel_follow_request": "অনুসরণ অনুরোধ প্রত্যাহার করুন",
|
"account.cancel_follow_request": "অনুসরণ অনুরোধ প্রত্যাহার করুন",
|
||||||
|
"account.copy": "অবতারের সংযোগ অনুলিপি করো",
|
||||||
"account.direct": "গোপনে মেনশন করুন @{name}",
|
"account.direct": "গোপনে মেনশন করুন @{name}",
|
||||||
"account.disable_notifications": "আমাকে জানানো বন্ধ করো যখন @{name} পোস্ট করবে",
|
"account.disable_notifications": "আমাকে জানানো বন্ধ করো যখন @{name} পোস্ট করবে",
|
||||||
"account.domain_blocked": "ডোমেইন ব্লক করা",
|
"account.domain_blocked": "ডোমেইন ব্লক করা",
|
||||||
|
@ -29,6 +31,7 @@
|
||||||
"account.featured_tags.last_status_never": "কোনো পোস্ট নেই",
|
"account.featured_tags.last_status_never": "কোনো পোস্ট নেই",
|
||||||
"account.featured_tags.title": "{name} এর ফিচার করা Hashtag সমূহ",
|
"account.featured_tags.title": "{name} এর ফিচার করা Hashtag সমূহ",
|
||||||
"account.follow": "অনুসরণ",
|
"account.follow": "অনুসরণ",
|
||||||
|
"account.follow_back": "তাকে অনুসরণ করো",
|
||||||
"account.followers": "অনুসরণকারী",
|
"account.followers": "অনুসরণকারী",
|
||||||
"account.followers.empty": "এই ব্যক্তিকে এখনো কেউ অনুসরণ করে না.",
|
"account.followers.empty": "এই ব্যক্তিকে এখনো কেউ অনুসরণ করে না.",
|
||||||
"account.following": "অনুসরণ করা হচ্ছে",
|
"account.following": "অনুসরণ করা হচ্ছে",
|
||||||
|
|
|
@ -150,7 +150,7 @@
|
||||||
"compose.published.open": "Obre",
|
"compose.published.open": "Obre",
|
||||||
"compose.saved.body": "Tut desat.",
|
"compose.saved.body": "Tut desat.",
|
||||||
"compose_form.direct_message_warning_learn_more": "Més informació",
|
"compose_form.direct_message_warning_learn_more": "Més informació",
|
||||||
"compose_form.encryption_warning": "Les publicacions a Mastodon no estant xifrades punt a punt. No comparteixis informació sensible mitjançant Mastodon.",
|
"compose_form.encryption_warning": "Els tuts a Mastodon no estan xifrats punt a punt. No compartiu informació confidencial mitjançant Mastodon.",
|
||||||
"compose_form.hashtag_warning": "Aquest tut no apareixerà a les llistes d'etiquetes perquè no és públic. Només els tuts públics apareixen a les cerques per etiqueta.",
|
"compose_form.hashtag_warning": "Aquest tut no apareixerà a les llistes d'etiquetes perquè no és públic. Només els tuts públics apareixen a les cerques per etiqueta.",
|
||||||
"compose_form.lock_disclaimer": "El teu compte no està {locked}. Tothom pot seguir-te i veure els tuts de només per a seguidors.",
|
"compose_form.lock_disclaimer": "El teu compte no està {locked}. Tothom pot seguir-te i veure els tuts de només per a seguidors.",
|
||||||
"compose_form.lock_disclaimer.lock": "blocat",
|
"compose_form.lock_disclaimer.lock": "blocat",
|
||||||
|
@ -674,7 +674,7 @@
|
||||||
"privacy.unlisted.long": "Menys fanfàrries algorísmiques",
|
"privacy.unlisted.long": "Menys fanfàrries algorísmiques",
|
||||||
"privacy.unlisted.short": "Públic silenciós",
|
"privacy.unlisted.short": "Públic silenciós",
|
||||||
"privacy_policy.last_updated": "Darrera actualització {date}",
|
"privacy_policy.last_updated": "Darrera actualització {date}",
|
||||||
"privacy_policy.title": "Política de Privacitat",
|
"privacy_policy.title": "Política de privadesa",
|
||||||
"recommended": "Recomanat",
|
"recommended": "Recomanat",
|
||||||
"refresh": "Actualitza",
|
"refresh": "Actualitza",
|
||||||
"regeneration_indicator.label": "Es carrega…",
|
"regeneration_indicator.label": "Es carrega…",
|
||||||
|
|
|
@ -85,10 +85,11 @@
|
||||||
"alert.rate_limited.title": "Spojení omezena",
|
"alert.rate_limited.title": "Spojení omezena",
|
||||||
"alert.unexpected.message": "Objevila se neočekávaná chyba.",
|
"alert.unexpected.message": "Objevila se neočekávaná chyba.",
|
||||||
"alert.unexpected.title": "Jejda!",
|
"alert.unexpected.title": "Jejda!",
|
||||||
|
"alt_text_badge.title": "Popisek",
|
||||||
"announcement.announcement": "Oznámení",
|
"announcement.announcement": "Oznámení",
|
||||||
"attachments_list.unprocessed": "(nezpracováno)",
|
"attachments_list.unprocessed": "(nezpracováno)",
|
||||||
"audio.hide": "Skrýt zvuk",
|
"audio.hide": "Skrýt zvuk",
|
||||||
"block_modal.remote_users_caveat": "Požádáme server {domain}, aby respektoval vaše rozhodnutí. Úplné dodržování nastavení však není zaručeno, protože některé servery mohou řešit blokování různě. Veřejné příspěvky mohou stále být viditelné pro nepřihlášené uživatele.",
|
"block_modal.remote_users_caveat": "Požádáme server {domain}, aby respektoval vaše rozhodnutí. Úplné dodržování nastavení však není zaručeno, protože některé servery mohou řešit blokování různě. Veřejné příspěvky mohou být stále viditelné pro nepřihlášené uživatele.",
|
||||||
"block_modal.show_less": "Zobrazit méně",
|
"block_modal.show_less": "Zobrazit méně",
|
||||||
"block_modal.show_more": "Zobrazit více",
|
"block_modal.show_more": "Zobrazit více",
|
||||||
"block_modal.they_cant_mention": "Nemůže vás zmiňovat ani sledovat.",
|
"block_modal.they_cant_mention": "Nemůže vás zmiňovat ani sledovat.",
|
||||||
|
@ -195,6 +196,8 @@
|
||||||
"confirmations.unfollow.message": "Opravdu chcete {name} přestat sledovat?",
|
"confirmations.unfollow.message": "Opravdu chcete {name} přestat sledovat?",
|
||||||
"confirmations.unfollow.title": "Přestat sledovat uživatele?",
|
"confirmations.unfollow.title": "Přestat sledovat uživatele?",
|
||||||
"content_warning.hide": "Skrýt příspěvek",
|
"content_warning.hide": "Skrýt příspěvek",
|
||||||
|
"content_warning.show": "Přesto zobrazit",
|
||||||
|
"content_warning.show_more": "Zobrazit více",
|
||||||
"conversation.delete": "Smazat konverzaci",
|
"conversation.delete": "Smazat konverzaci",
|
||||||
"conversation.mark_as_read": "Označit jako přečtené",
|
"conversation.mark_as_read": "Označit jako přečtené",
|
||||||
"conversation.open": "Zobrazit konverzaci",
|
"conversation.open": "Zobrazit konverzaci",
|
||||||
|
@ -220,13 +223,15 @@
|
||||||
"domain_block_modal.they_cant_follow": "Nikdo z tohoto serveru vás nemůže sledovat.",
|
"domain_block_modal.they_cant_follow": "Nikdo z tohoto serveru vás nemůže sledovat.",
|
||||||
"domain_block_modal.they_wont_know": "Nebude vědět, že je zablokován*a.",
|
"domain_block_modal.they_wont_know": "Nebude vědět, že je zablokován*a.",
|
||||||
"domain_block_modal.title": "Blokovat doménu?",
|
"domain_block_modal.title": "Blokovat doménu?",
|
||||||
|
"domain_block_modal.you_will_lose_num_followers": "Ztratíte {followersCount, plural, one {{followersCountDisplay} sledujícího} few {{followersCountDisplay} sledující} many {{followersCountDisplay} sledujících} other {{followersCountDisplay} sledujících}} a {followingCount, plural, one {{followingCountDisplay} sledovaného} few {{followingCountDisplay} sledované} many {{followingCountDisplay} sledovaných} other {{followingCountDisplay} sledovaných}}.",
|
||||||
|
"domain_block_modal.you_will_lose_relationships": "Ztratíte všechny sledující a lidi, které sledujete z tohoto serveru.",
|
||||||
"domain_block_modal.you_wont_see_posts": "Neuvidíte příspěvky ani upozornění od uživatelů z tohoto serveru.",
|
"domain_block_modal.you_wont_see_posts": "Neuvidíte příspěvky ani upozornění od uživatelů z tohoto serveru.",
|
||||||
"domain_pill.activitypub_lets_connect": "Umožňuje vám spojit se a komunikovat s lidmi nejen na Mastodonu, ale i s dalšími sociálními aplikacemi.",
|
"domain_pill.activitypub_lets_connect": "Umožňuje vám spojit se a komunikovat s lidmi nejen na Mastodonu, ale i s dalšími sociálními aplikacemi.",
|
||||||
"domain_pill.activitypub_like_language": "ActivityPub je jako jazyk, kterým Mastodon mluví s jinými sociálními sítěmi.",
|
"domain_pill.activitypub_like_language": "ActivityPub je jako jazyk, kterým Mastodon mluví s jinými sociálními sítěmi.",
|
||||||
"domain_pill.server": "Server",
|
"domain_pill.server": "Server",
|
||||||
"domain_pill.their_handle": "Handle:",
|
"domain_pill.their_handle": "Handle:",
|
||||||
"domain_pill.their_server": "Digitální domov, kde žijí všechny příspěvky.",
|
"domain_pill.their_server": "Jejich digitální domov, kde žijí jejich všechny příspěvky.",
|
||||||
"domain_pill.their_username": "Jedinečný identikátor na serveru. Je možné najít uživatele se stejným uživatelským jménem na různých serverech.",
|
"domain_pill.their_username": "Jejich jedinečný identikátor na jejich serveru. Je možné najít uživatele se stejným uživatelským jménem na jiných serverech.",
|
||||||
"domain_pill.username": "Uživatelské jméno",
|
"domain_pill.username": "Uživatelské jméno",
|
||||||
"domain_pill.whats_in_a_handle": "Co obsahuje handle?",
|
"domain_pill.whats_in_a_handle": "Co obsahuje handle?",
|
||||||
"domain_pill.who_they_are": "Protože handle říkají kdo je kdo a také kde, je možné interagovat s lidmi napříč sociálními weby <button>platforem postavených na ActivityPub</button>.",
|
"domain_pill.who_they_are": "Protože handle říkají kdo je kdo a také kde, je možné interagovat s lidmi napříč sociálními weby <button>platforem postavených na ActivityPub</button>.",
|
||||||
|
@ -301,6 +306,8 @@
|
||||||
"filter_modal.select_filter.subtitle": "Použít existující kategorii nebo vytvořit novou kategorii",
|
"filter_modal.select_filter.subtitle": "Použít existující kategorii nebo vytvořit novou kategorii",
|
||||||
"filter_modal.select_filter.title": "Filtrovat tento příspěvek",
|
"filter_modal.select_filter.title": "Filtrovat tento příspěvek",
|
||||||
"filter_modal.title.status": "Filtrovat příspěvek",
|
"filter_modal.title.status": "Filtrovat příspěvek",
|
||||||
|
"filter_warning.matches_filter": "Odpovídá filtru “<span>{title}</span>”",
|
||||||
|
"filtered_notifications_banner.pending_requests": "Od {count, plural, =0 {nikoho, koho možná znáte} one {člověka, kterého možná znáte} few {#, které možná znáte} many {#, které možná znáte} other {#, které možná znáte}}",
|
||||||
"filtered_notifications_banner.title": "Filtrovaná oznámení",
|
"filtered_notifications_banner.title": "Filtrovaná oznámení",
|
||||||
"firehose.all": "Vše",
|
"firehose.all": "Vše",
|
||||||
"firehose.local": "Tento server",
|
"firehose.local": "Tento server",
|
||||||
|
@ -308,14 +315,14 @@
|
||||||
"follow_request.authorize": "Autorizovat",
|
"follow_request.authorize": "Autorizovat",
|
||||||
"follow_request.reject": "Zamítnout",
|
"follow_request.reject": "Zamítnout",
|
||||||
"follow_requests.unlocked_explanation": "Přestože váš účet není uzamčen, personál {domain} usoudil, že byste mohli chtít tyto požadavky na sledování zkontrolovat ručně.",
|
"follow_requests.unlocked_explanation": "Přestože váš účet není uzamčen, personál {domain} usoudil, že byste mohli chtít tyto požadavky na sledování zkontrolovat ručně.",
|
||||||
"follow_suggestions.curated_suggestion": "Výběr personálů",
|
"follow_suggestions.curated_suggestion": "Výběr personálu",
|
||||||
"follow_suggestions.dismiss": "Znovu nezobrazovat",
|
"follow_suggestions.dismiss": "Znovu nezobrazovat",
|
||||||
"follow_suggestions.featured_longer": "Ručně vybráno týmem {domain}",
|
"follow_suggestions.featured_longer": "Ručně vybráno týmem {domain}",
|
||||||
"follow_suggestions.friends_of_friends_longer": "Populární mezi lidmi, které sledujete",
|
"follow_suggestions.friends_of_friends_longer": "Populární mezi lidmi, které sledujete",
|
||||||
"follow_suggestions.hints.featured": "Tento profil byl ručně vybrán týmem {domain}.",
|
"follow_suggestions.hints.featured": "Tento profil byl ručně vybrán týmem {domain}.",
|
||||||
"follow_suggestions.hints.friends_of_friends": "Tento profil je populární mezi lidmi, které sledujete.",
|
"follow_suggestions.hints.friends_of_friends": "Tento profil je populární mezi lidmi, které sledujete.",
|
||||||
"follow_suggestions.hints.most_followed": "Tento profil je jedním z nejvíce sledovaných na {domain}.",
|
"follow_suggestions.hints.most_followed": "Tento profil je jedním z nejsledovanějších na {domain}.",
|
||||||
"follow_suggestions.hints.most_interactions": "Tento profil nedávno dostalo velkou pozornost na {domain}.",
|
"follow_suggestions.hints.most_interactions": "Tomuto profilu se nedávno dostalo velké pozornosti na {domain}.",
|
||||||
"follow_suggestions.hints.similar_to_recently_followed": "Tento profil je podobný profilům, které jste nedávno sledovali.",
|
"follow_suggestions.hints.similar_to_recently_followed": "Tento profil je podobný profilům, které jste nedávno sledovali.",
|
||||||
"follow_suggestions.personalized_suggestion": "Přizpůsobený návrh",
|
"follow_suggestions.personalized_suggestion": "Přizpůsobený návrh",
|
||||||
"follow_suggestions.popular_suggestion": "Populární návrh",
|
"follow_suggestions.popular_suggestion": "Populární návrh",
|
||||||
|
@ -349,6 +356,14 @@
|
||||||
"hashtag.follow": "Sledovat hashtag",
|
"hashtag.follow": "Sledovat hashtag",
|
||||||
"hashtag.unfollow": "Přestat sledovat hashtag",
|
"hashtag.unfollow": "Přestat sledovat hashtag",
|
||||||
"hashtags.and_other": "…a {count, plural, one {# další} few {# další} other {# dalších}}",
|
"hashtags.and_other": "…a {count, plural, one {# další} few {# další} other {# dalších}}",
|
||||||
|
"hints.profiles.followers_may_be_missing": "Sledující mohou pro tento profil chybět.",
|
||||||
|
"hints.profiles.follows_may_be_missing": "Sledování mohou pro tento profil chybět.",
|
||||||
|
"hints.profiles.posts_may_be_missing": "Některé příspěvky z tohoto profilu mohou chybět.",
|
||||||
|
"hints.profiles.see_more_followers": "Zobrazit více sledujících na {domain}",
|
||||||
|
"hints.profiles.see_more_follows": "Zobrazit další sledování na {domain}",
|
||||||
|
"hints.profiles.see_more_posts": "Zobrazit další příspěvky na {domain}",
|
||||||
|
"hints.threads.replies_may_be_missing": "Odpovědi z jiných serverů mohou chybět.",
|
||||||
|
"hints.threads.see_more": "Zobrazit další odpovědi na {domain}",
|
||||||
"home.column_settings.show_reblogs": "Zobrazit boosty",
|
"home.column_settings.show_reblogs": "Zobrazit boosty",
|
||||||
"home.column_settings.show_replies": "Zobrazit odpovědi",
|
"home.column_settings.show_replies": "Zobrazit odpovědi",
|
||||||
"home.hide_announcements": "Skrýt oznámení",
|
"home.hide_announcements": "Skrýt oznámení",
|
||||||
|
@ -356,6 +371,17 @@
|
||||||
"home.pending_critical_update.link": "Zobrazit aktualizace",
|
"home.pending_critical_update.link": "Zobrazit aktualizace",
|
||||||
"home.pending_critical_update.title": "K dispozici je kritická bezpečnostní aktualizace!",
|
"home.pending_critical_update.title": "K dispozici je kritická bezpečnostní aktualizace!",
|
||||||
"home.show_announcements": "Zobrazit oznámení",
|
"home.show_announcements": "Zobrazit oznámení",
|
||||||
|
"ignore_notifications_modal.disclaimer": "Mastodon nemůže informovat uživatele, že jste ignorovali jejich oznámení. Ignorování oznámení nezabrání odesílání zpráv samotných.",
|
||||||
|
"ignore_notifications_modal.filter_instead": "Místo toho filtrovat",
|
||||||
|
"ignore_notifications_modal.filter_to_act_users": "Stále budete moci přijmout, odmítnout nebo nahlásit uživatele",
|
||||||
|
"ignore_notifications_modal.filter_to_avoid_confusion": "Filtrování pomáhá vyhnout se možným nejasnostem",
|
||||||
|
"ignore_notifications_modal.filter_to_review_separately": "Filtrovaná oznámení můžete zkontrolovat samostatně",
|
||||||
|
"ignore_notifications_modal.ignore": "Ignorovat oznámení",
|
||||||
|
"ignore_notifications_modal.limited_accounts_title": "Ignorovat oznámení z moderovaných účtů?",
|
||||||
|
"ignore_notifications_modal.new_accounts_title": "Ignorovat oznámení z nových účtů?",
|
||||||
|
"ignore_notifications_modal.not_followers_title": "Ignorovat oznámení od lidí, kteří vás nesledují?",
|
||||||
|
"ignore_notifications_modal.not_following_title": "Ignorovat oznámení od lidí, které nesledujete?",
|
||||||
|
"ignore_notifications_modal.private_mentions_title": "Ignorovat oznámení z nevyžádaných soukromých zmínek?",
|
||||||
"interaction_modal.description.favourite": "Pokud máte účet na Mastodonu, můžete tento příspěvek označit jako oblíbený a dát tak autorovi najevo, že si ho vážíte, a uložit si ho na později.",
|
"interaction_modal.description.favourite": "Pokud máte účet na Mastodonu, můžete tento příspěvek označit jako oblíbený a dát tak autorovi najevo, že si ho vážíte, a uložit si ho na později.",
|
||||||
"interaction_modal.description.follow": "S účtem na Mastodonu můžete sledovat uživatele {name} a přijímat příspěvky ve vašem domovském kanálu.",
|
"interaction_modal.description.follow": "S účtem na Mastodonu můžete sledovat uživatele {name} a přijímat příspěvky ve vašem domovském kanálu.",
|
||||||
"interaction_modal.description.reblog": "S účtem na Mastodonu můžete boostnout tento příspěvek a sdílet jej s vlastními sledujícími.",
|
"interaction_modal.description.reblog": "S účtem na Mastodonu můžete boostnout tento příspěvek a sdílet jej s vlastními sledujícími.",
|
||||||
|
@ -411,6 +437,8 @@
|
||||||
"lightbox.close": "Zavřít",
|
"lightbox.close": "Zavřít",
|
||||||
"lightbox.next": "Další",
|
"lightbox.next": "Další",
|
||||||
"lightbox.previous": "Předchozí",
|
"lightbox.previous": "Předchozí",
|
||||||
|
"lightbox.zoom_in": "Přiblížit na skutečnou velikost",
|
||||||
|
"lightbox.zoom_out": "Přizpůsobit velikost",
|
||||||
"limited_account_hint.action": "Přesto profil zobrazit",
|
"limited_account_hint.action": "Přesto profil zobrazit",
|
||||||
"limited_account_hint.title": "Tento profil byl skryt moderátory {domain}.",
|
"limited_account_hint.title": "Tento profil byl skryt moderátory {domain}.",
|
||||||
"link_preview.author": "Podle {name}",
|
"link_preview.author": "Podle {name}",
|
||||||
|
@ -432,6 +460,7 @@
|
||||||
"lists.subheading": "Vaše seznamy",
|
"lists.subheading": "Vaše seznamy",
|
||||||
"load_pending": "{count, plural, one {# nová položka} few {# nové položky} many {# nových položek} other {# nových položek}}",
|
"load_pending": "{count, plural, one {# nová položka} few {# nové položky} many {# nových položek} other {# nových položek}}",
|
||||||
"loading_indicator.label": "Načítání…",
|
"loading_indicator.label": "Načítání…",
|
||||||
|
"media_gallery.hide": "Skrýt",
|
||||||
"moved_to_account_banner.text": "Váš účet {disabledAccount} je momentálně deaktivován, protože jste se přesunul/a na {movedToAccount}.",
|
"moved_to_account_banner.text": "Váš účet {disabledAccount} je momentálně deaktivován, protože jste se přesunul/a na {movedToAccount}.",
|
||||||
"mute_modal.hide_from_notifications": "Skrýt z notifikací",
|
"mute_modal.hide_from_notifications": "Skrýt z notifikací",
|
||||||
"mute_modal.hide_options": "Skrýt možnosti",
|
"mute_modal.hide_options": "Skrýt možnosti",
|
||||||
|
@ -443,6 +472,7 @@
|
||||||
"mute_modal.you_wont_see_mentions": "Neuvidíte příspěvky, které je zmiňují.",
|
"mute_modal.you_wont_see_mentions": "Neuvidíte příspěvky, které je zmiňují.",
|
||||||
"mute_modal.you_wont_see_posts": "Stále budou moci vidět vaše příspěvky, ale vy jejich neuvidíte.",
|
"mute_modal.you_wont_see_posts": "Stále budou moci vidět vaše příspěvky, ale vy jejich neuvidíte.",
|
||||||
"navigation_bar.about": "O aplikaci",
|
"navigation_bar.about": "O aplikaci",
|
||||||
|
"navigation_bar.administration": "Administrace",
|
||||||
"navigation_bar.advanced_interface": "Otevřít pokročilé webové rozhraní",
|
"navigation_bar.advanced_interface": "Otevřít pokročilé webové rozhraní",
|
||||||
"navigation_bar.blocks": "Blokovaní uživatelé",
|
"navigation_bar.blocks": "Blokovaní uživatelé",
|
||||||
"navigation_bar.bookmarks": "Záložky",
|
"navigation_bar.bookmarks": "Záložky",
|
||||||
|
@ -459,6 +489,7 @@
|
||||||
"navigation_bar.follows_and_followers": "Sledovaní a sledující",
|
"navigation_bar.follows_and_followers": "Sledovaní a sledující",
|
||||||
"navigation_bar.lists": "Seznamy",
|
"navigation_bar.lists": "Seznamy",
|
||||||
"navigation_bar.logout": "Odhlásit se",
|
"navigation_bar.logout": "Odhlásit se",
|
||||||
|
"navigation_bar.moderation": "Moderace",
|
||||||
"navigation_bar.mutes": "Skrytí uživatelé",
|
"navigation_bar.mutes": "Skrytí uživatelé",
|
||||||
"navigation_bar.opened_in_classic_interface": "Příspěvky, účty a další specifické stránky jsou ve výchozím nastavení otevřeny v klasickém webovém rozhraní.",
|
"navigation_bar.opened_in_classic_interface": "Příspěvky, účty a další specifické stránky jsou ve výchozím nastavení otevřeny v klasickém webovém rozhraní.",
|
||||||
"navigation_bar.personal": "Osobní",
|
"navigation_bar.personal": "Osobní",
|
||||||
|
@ -469,12 +500,24 @@
|
||||||
"navigation_bar.security": "Zabezpečení",
|
"navigation_bar.security": "Zabezpečení",
|
||||||
"not_signed_in_indicator.not_signed_in": "Pro přístup k tomuto zdroji se musíte přihlásit.",
|
"not_signed_in_indicator.not_signed_in": "Pro přístup k tomuto zdroji se musíte přihlásit.",
|
||||||
"notification.admin.report": "Uživatel {name} nahlásil {target}",
|
"notification.admin.report": "Uživatel {name} nahlásil {target}",
|
||||||
|
"notification.admin.report_account": "{name} nahlásil {count, plural, one {jeden příspěvek} few {# příspěvky} many {# příspěvků} other {# příspěvků}} od {target} za {category}",
|
||||||
|
"notification.admin.report_account_other": "{name} nahlásil {count, plural, one {jeden příspěvek} few {# příspěvky} many {# příspěvků} other {# příspěvků}} od {target}",
|
||||||
"notification.admin.report_statuses": "{name} nahlásil {target} za {category}",
|
"notification.admin.report_statuses": "{name} nahlásil {target} za {category}",
|
||||||
"notification.admin.report_statuses_other": "{name} nahlásil {target}",
|
"notification.admin.report_statuses_other": "{name} nahlásil {target}",
|
||||||
"notification.admin.sign_up": "Uživatel {name} se zaregistroval",
|
"notification.admin.sign_up": "Uživatel {name} se zaregistroval",
|
||||||
|
"notification.admin.sign_up.name_and_others": "{name} a {count, plural, one {# další} few {# další} many {# dalších} other {# dalších}} se zaregistrovali",
|
||||||
"notification.favourite": "Uživatel {name} si oblíbil váš příspěvek",
|
"notification.favourite": "Uživatel {name} si oblíbil váš příspěvek",
|
||||||
|
"notification.favourite.name_and_others_with_link": "{name} a {count, plural, one {<a># další</a> si oblíbil} few {<a># další</a> si oblíbili} other {<a># dalších</a> si oblíbilo}} Váš příspěvek",
|
||||||
"notification.follow": "Uživatel {name} vás začal sledovat",
|
"notification.follow": "Uživatel {name} vás začal sledovat",
|
||||||
|
"notification.follow.name_and_others": "{name} a {count, plural, one {<a># další</a> Vás začal sledovat} few {<a># další</a> Vás začali sledovat} other {<a># dalších</a> Vás začalo sledovat}}",
|
||||||
"notification.follow_request": "Uživatel {name} požádal o povolení vás sledovat",
|
"notification.follow_request": "Uživatel {name} požádal o povolení vás sledovat",
|
||||||
|
"notification.follow_request.name_and_others": "{name} a {count, plural, one {# další Vám poslal žádost o sledování} few {# další Vám poslali žádost o sledování} other {# dalších Vám poslalo žádost o sledování}}",
|
||||||
|
"notification.label.mention": "Zmínka",
|
||||||
|
"notification.label.private_mention": "Soukromá zmínka",
|
||||||
|
"notification.label.private_reply": "Privátní odpověď",
|
||||||
|
"notification.label.reply": "Odpověď",
|
||||||
|
"notification.mention": "Zmínka",
|
||||||
|
"notification.mentioned_you": "{name} vás zmínil",
|
||||||
"notification.moderation-warning.learn_more": "Zjistit více",
|
"notification.moderation-warning.learn_more": "Zjistit více",
|
||||||
"notification.moderation_warning": "Obdrželi jste moderační varování",
|
"notification.moderation_warning": "Obdrželi jste moderační varování",
|
||||||
"notification.moderation_warning.action_delete_statuses": "Některé z vašich příspěvků byly odstraněny.",
|
"notification.moderation_warning.action_delete_statuses": "Některé z vašich příspěvků byly odstraněny.",
|
||||||
|
@ -487,6 +530,7 @@
|
||||||
"notification.own_poll": "Vaše anketa skončila",
|
"notification.own_poll": "Vaše anketa skončila",
|
||||||
"notification.poll": "Anketa, ve které jste hlasovali, skončila",
|
"notification.poll": "Anketa, ve které jste hlasovali, skončila",
|
||||||
"notification.reblog": "Uživatel {name} boostnul váš příspěvek",
|
"notification.reblog": "Uživatel {name} boostnul váš příspěvek",
|
||||||
|
"notification.reblog.name_and_others_with_link": "{name} a {count, plural, one {<a># další</a> boostnul} few {<a># další</a> boostnuli} other {<a># dalších</a> boostnulo}} Váš příspěvek",
|
||||||
"notification.relationships_severance_event": "Kontakt ztracen s {name}",
|
"notification.relationships_severance_event": "Kontakt ztracen s {name}",
|
||||||
"notification.relationships_severance_event.account_suspension": "Administrátor z {from} pozastavil {target}, což znamená, že již od nich nemůžete přijímat aktualizace nebo s nimi interagovat.",
|
"notification.relationships_severance_event.account_suspension": "Administrátor z {from} pozastavil {target}, což znamená, že již od nich nemůžete přijímat aktualizace nebo s nimi interagovat.",
|
||||||
"notification.relationships_severance_event.domain_block": "Administrátor z {from} pozastavil {target}, včetně {followersCount} z vašich sledujících a {followingCount, plural, one {# účet, který sledujete} few {# účty, které sledujete} many {# účtů, které sledujete} other {# účtů, které sledujete}}.",
|
"notification.relationships_severance_event.domain_block": "Administrátor z {from} pozastavil {target}, včetně {followersCount} z vašich sledujících a {followingCount, plural, one {# účet, který sledujete} few {# účty, které sledujete} many {# účtů, které sledujete} other {# účtů, které sledujete}}.",
|
||||||
|
@ -495,11 +539,24 @@
|
||||||
"notification.status": "Uživatel {name} právě přidal příspěvek",
|
"notification.status": "Uživatel {name} právě přidal příspěvek",
|
||||||
"notification.update": "Uživatel {name} upravil příspěvek",
|
"notification.update": "Uživatel {name} upravil příspěvek",
|
||||||
"notification_requests.accept": "Přijmout",
|
"notification_requests.accept": "Přijmout",
|
||||||
|
"notification_requests.accept_multiple": "{count, plural, one {Schválit # požadavek…} few {Schválit # požadavky…} other {Schválit # požadavků…}}",
|
||||||
|
"notification_requests.confirm_accept_multiple.button": "{count, plural, one {Schválit požadavek} other {Schválit požadavky}}",
|
||||||
|
"notification_requests.confirm_accept_multiple.message": "Chystáte se schválit {count, plural, one {jeden požadavek} few {# požadavky} other {# požadavků}} na oznámení. Opravdu chcete pokračovat?",
|
||||||
|
"notification_requests.confirm_accept_multiple.title": "Přijmout žádosti o oznámení?",
|
||||||
|
"notification_requests.confirm_dismiss_multiple.button": "{count, plural, one {Zamítnout požadavek} other {Zamítnout požadavky}}",
|
||||||
|
"notification_requests.confirm_dismiss_multiple.message": "Chystáte se zamítnout {count, plural, one {jeden požadavek} few {# požadavky} many {# požadavků} other {# požadavků}} na oznámení. Poté k {count, plural, one {němu} other {něm}} již nebudete mít snadný přístup. Opravdu chcete pokračovat?",
|
||||||
|
"notification_requests.confirm_dismiss_multiple.title": "Zamítnout požadavky na oznámení?",
|
||||||
"notification_requests.dismiss": "Zamítnout",
|
"notification_requests.dismiss": "Zamítnout",
|
||||||
|
"notification_requests.dismiss_multiple": "Zamítnout {count, plural, one {# požadavek} few {# požadavky} many {# požadavků} other {# požadavků}}…",
|
||||||
|
"notification_requests.edit_selection": "Upravit",
|
||||||
|
"notification_requests.exit_selection": "Hotovo",
|
||||||
|
"notification_requests.explainer_for_limited_account": "Oznámení z tohoto účtu byla filtrována, protože tento účet byl omezen moderátorem.",
|
||||||
|
"notification_requests.explainer_for_limited_remote_account": "Oznámení z tohoto účtu byla filtrována, protože tento účet nebo jeho server byl omezen moderátorem.",
|
||||||
"notification_requests.maximize": "Maximalizovat",
|
"notification_requests.maximize": "Maximalizovat",
|
||||||
"notification_requests.minimize_banner": "Minimalizovat banner filtrovaných oznámení",
|
"notification_requests.minimize_banner": "Minimalizovat banner filtrovaných oznámení",
|
||||||
"notification_requests.notifications_from": "Oznámení od {name}",
|
"notification_requests.notifications_from": "Oznámení od {name}",
|
||||||
"notification_requests.title": "Vyfiltrovaná oznámení",
|
"notification_requests.title": "Vyfiltrovaná oznámení",
|
||||||
|
"notification_requests.view": "Zobrazit oznámení",
|
||||||
"notifications.clear": "Vyčistit oznámení",
|
"notifications.clear": "Vyčistit oznámení",
|
||||||
"notifications.clear_confirmation": "Opravdu chcete trvale smazat všechna vaše oznámení?",
|
"notifications.clear_confirmation": "Opravdu chcete trvale smazat všechna vaše oznámení?",
|
||||||
"notifications.clear_title": "Vyčistit oznámení?",
|
"notifications.clear_title": "Vyčistit oznámení?",
|
||||||
|
@ -511,6 +568,7 @@
|
||||||
"notifications.column_settings.filter_bar.category": "Panel rychlého filtrování",
|
"notifications.column_settings.filter_bar.category": "Panel rychlého filtrování",
|
||||||
"notifications.column_settings.follow": "Noví sledující:",
|
"notifications.column_settings.follow": "Noví sledující:",
|
||||||
"notifications.column_settings.follow_request": "Nové žádosti o sledování:",
|
"notifications.column_settings.follow_request": "Nové žádosti o sledování:",
|
||||||
|
"notifications.column_settings.group": "Skupina",
|
||||||
"notifications.column_settings.mention": "Zmínky:",
|
"notifications.column_settings.mention": "Zmínky:",
|
||||||
"notifications.column_settings.poll": "Výsledky anket:",
|
"notifications.column_settings.poll": "Výsledky anket:",
|
||||||
"notifications.column_settings.push": "Push oznámení",
|
"notifications.column_settings.push": "Push oznámení",
|
||||||
|
@ -534,6 +592,14 @@
|
||||||
"notifications.permission_denied": "Oznámení na ploše nejsou k dispozici, protože byla zamítnuta žádost o oprávnění je zobrazovat",
|
"notifications.permission_denied": "Oznámení na ploše nejsou k dispozici, protože byla zamítnuta žádost o oprávnění je zobrazovat",
|
||||||
"notifications.permission_denied_alert": "Oznámení na ploše není možné zapnout, protože oprávnění bylo v minulosti zamítnuto",
|
"notifications.permission_denied_alert": "Oznámení na ploše není možné zapnout, protože oprávnění bylo v minulosti zamítnuto",
|
||||||
"notifications.permission_required": "Oznámení na ploše nejsou k dispozici, protože nebylo uděleno potřebné oprávnění.",
|
"notifications.permission_required": "Oznámení na ploše nejsou k dispozici, protože nebylo uděleno potřebné oprávnění.",
|
||||||
|
"notifications.policy.accept": "Přijmout",
|
||||||
|
"notifications.policy.accept_hint": "Zobrazit v oznámeních",
|
||||||
|
"notifications.policy.drop": "Ignorovat",
|
||||||
|
"notifications.policy.drop_hint": "Permanentně odstranit, aby již nikdy nespatřil světlo světa",
|
||||||
|
"notifications.policy.filter": "Filtrovat",
|
||||||
|
"notifications.policy.filter_hint": "Odeslat do filtrované schránky oznámení",
|
||||||
|
"notifications.policy.filter_limited_accounts_hint": "Omezeno moderátory serveru",
|
||||||
|
"notifications.policy.filter_limited_accounts_title": "Moderované účty",
|
||||||
"notifications.policy.filter_new_accounts.hint": "Vytvořeno během {days, plural, one {včerejška} few {posledních # dnů} many {posledních # dní} other {posledních # dní}}",
|
"notifications.policy.filter_new_accounts.hint": "Vytvořeno během {days, plural, one {včerejška} few {posledních # dnů} many {posledních # dní} other {posledních # dní}}",
|
||||||
"notifications.policy.filter_new_accounts_title": "Nové účty",
|
"notifications.policy.filter_new_accounts_title": "Nové účty",
|
||||||
"notifications.policy.filter_not_followers_hint": "Včetně lidí, kteří vás sledovali méně než {days, plural, one {jeden den} few {# dny} many {# dní} other {# dní}}",
|
"notifications.policy.filter_not_followers_hint": "Včetně lidí, kteří vás sledovali méně než {days, plural, one {jeden den} few {# dny} many {# dní} other {# dní}}",
|
||||||
|
@ -542,6 +608,7 @@
|
||||||
"notifications.policy.filter_not_following_title": "Lidé, které nesledujete",
|
"notifications.policy.filter_not_following_title": "Lidé, které nesledujete",
|
||||||
"notifications.policy.filter_private_mentions_hint": "Vyfiltrováno, pokud to není odpověď na vaši zmínku nebo pokud sledujete odesílatele",
|
"notifications.policy.filter_private_mentions_hint": "Vyfiltrováno, pokud to není odpověď na vaši zmínku nebo pokud sledujete odesílatele",
|
||||||
"notifications.policy.filter_private_mentions_title": "Nevyžádané soukromé zmínky",
|
"notifications.policy.filter_private_mentions_title": "Nevyžádané soukromé zmínky",
|
||||||
|
"notifications.policy.title": "Spravovat oznámení od…",
|
||||||
"notifications_permission_banner.enable": "Povolit oznámení na ploše",
|
"notifications_permission_banner.enable": "Povolit oznámení na ploše",
|
||||||
"notifications_permission_banner.how_to_control": "Chcete-li dostávat oznámení, i když nemáte Mastodon otevřený, povolte oznámení na ploše. Můžete si zvolit, o kterých druzích interakcí chcete být oznámením na ploše informování pod tlačítkem {icon} výše.",
|
"notifications_permission_banner.how_to_control": "Chcete-li dostávat oznámení, i když nemáte Mastodon otevřený, povolte oznámení na ploše. Můžete si zvolit, o kterých druzích interakcí chcete být oznámením na ploše informování pod tlačítkem {icon} výše.",
|
||||||
"notifications_permission_banner.title": "Nenechte si nic uniknout",
|
"notifications_permission_banner.title": "Nenechte si nic uniknout",
|
||||||
|
@ -716,6 +783,7 @@
|
||||||
"status.bookmark": "Přidat do záložek",
|
"status.bookmark": "Přidat do záložek",
|
||||||
"status.cancel_reblog_private": "Zrušit boostnutí",
|
"status.cancel_reblog_private": "Zrušit boostnutí",
|
||||||
"status.cannot_reblog": "Tento příspěvek nemůže být boostnutý",
|
"status.cannot_reblog": "Tento příspěvek nemůže být boostnutý",
|
||||||
|
"status.continued_thread": "Pokračuje ve vlákně",
|
||||||
"status.copy": "Zkopírovat odkaz na příspěvek",
|
"status.copy": "Zkopírovat odkaz na příspěvek",
|
||||||
"status.delete": "Smazat",
|
"status.delete": "Smazat",
|
||||||
"status.detailed_status": "Podrobné zobrazení konverzace",
|
"status.detailed_status": "Podrobné zobrazení konverzace",
|
||||||
|
@ -724,6 +792,7 @@
|
||||||
"status.edit": "Upravit",
|
"status.edit": "Upravit",
|
||||||
"status.edited": "Naposledy upraveno {date}",
|
"status.edited": "Naposledy upraveno {date}",
|
||||||
"status.edited_x_times": "Upraveno {count, plural, one {{count}krát} few {{count}krát} many {{count}krát} other {{count}krát}}",
|
"status.edited_x_times": "Upraveno {count, plural, one {{count}krát} few {{count}krát} many {{count}krát} other {{count}krát}}",
|
||||||
|
"status.embed": "Získejte kód pro vložení",
|
||||||
"status.favourite": "Oblíbit",
|
"status.favourite": "Oblíbit",
|
||||||
"status.favourites": "{count, plural, one {oblíbený} few {oblíbené} many {oblíbených} other {oblíbených}}",
|
"status.favourites": "{count, plural, one {oblíbený} few {oblíbené} many {oblíbených} other {oblíbených}}",
|
||||||
"status.filter": "Filtrovat tento příspěvek",
|
"status.filter": "Filtrovat tento příspěvek",
|
||||||
|
@ -748,6 +817,7 @@
|
||||||
"status.reblogs.empty": "Tento příspěvek ještě nikdo neboostnul. Pokud to někdo udělá, zobrazí se zde.",
|
"status.reblogs.empty": "Tento příspěvek ještě nikdo neboostnul. Pokud to někdo udělá, zobrazí se zde.",
|
||||||
"status.redraft": "Smazat a přepsat",
|
"status.redraft": "Smazat a přepsat",
|
||||||
"status.remove_bookmark": "Odstranit ze záložek",
|
"status.remove_bookmark": "Odstranit ze záložek",
|
||||||
|
"status.replied_in_thread": "Odpověděli ve vlákně",
|
||||||
"status.replied_to": "Odpověděl/a uživateli {name}",
|
"status.replied_to": "Odpověděl/a uživateli {name}",
|
||||||
"status.reply": "Odpovědět",
|
"status.reply": "Odpovědět",
|
||||||
"status.replyAll": "Odpovědět na vlákno",
|
"status.replyAll": "Odpovědět na vlákno",
|
||||||
|
@ -785,6 +855,11 @@
|
||||||
"upload_error.poll": "Nahrávání souborů není povoleno s anketami.",
|
"upload_error.poll": "Nahrávání souborů není povoleno s anketami.",
|
||||||
"upload_form.audio_description": "Popis pro sluchově postižené",
|
"upload_form.audio_description": "Popis pro sluchově postižené",
|
||||||
"upload_form.description": "Popis pro zrakově postižené",
|
"upload_form.description": "Popis pro zrakově postižené",
|
||||||
|
"upload_form.drag_and_drop.instructions": "Chcete-li zvednout přílohu, stiskněte mezerník nebo enter. Při přetažení použijte klávesnicové šipky k přesunutí mediální přílohy v libovolném směru. Stiskněte mezerník nebo enter pro vložení přílohy do nové pozice, nebo stiskněte Esc pro ukončení.",
|
||||||
|
"upload_form.drag_and_drop.on_drag_cancel": "Přetažení bylo zrušeno. Příloha {item} byla vrácena.",
|
||||||
|
"upload_form.drag_and_drop.on_drag_end": "Příloha {item} byla vrácena.",
|
||||||
|
"upload_form.drag_and_drop.on_drag_over": "Příloha {item} byla přesunuta.",
|
||||||
|
"upload_form.drag_and_drop.on_drag_start": "Zvednuta příloha {item}.",
|
||||||
"upload_form.edit": "Upravit",
|
"upload_form.edit": "Upravit",
|
||||||
"upload_form.thumbnail": "Změnit miniaturu",
|
"upload_form.thumbnail": "Změnit miniaturu",
|
||||||
"upload_form.video_description": "Popis pro sluchově či zrakově postižené",
|
"upload_form.video_description": "Popis pro sluchově či zrakově postižené",
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"about.blocks": "Gweinyddion gyda chymedrolwyr",
|
"about.blocks": "Gweinyddion wedi'u cymedroli",
|
||||||
"about.contact": "Cysylltwch â:",
|
"about.contact": "Cysylltwch â:",
|
||||||
"about.disclaimer": "Mae Mastodon yn feddalwedd cod agored rhydd ac o dan hawlfraint Mastodon gGmbH.",
|
"about.disclaimer": "Mae Mastodon yn feddalwedd cod agored rhydd ac o dan hawlfraint Mastodon gGmbH.",
|
||||||
"about.domain_blocks.no_reason_available": "Nid yw'r rheswm ar gael",
|
"about.domain_blocks.no_reason_available": "Nid yw'r rheswm ar gael",
|
||||||
|
|
|
@ -29,7 +29,7 @@
|
||||||
"account.endorse": "Fremhæv på profil",
|
"account.endorse": "Fremhæv på profil",
|
||||||
"account.featured_tags.last_status_at": "Seneste indlæg {date}",
|
"account.featured_tags.last_status_at": "Seneste indlæg {date}",
|
||||||
"account.featured_tags.last_status_never": "Ingen indlæg",
|
"account.featured_tags.last_status_never": "Ingen indlæg",
|
||||||
"account.featured_tags.title": "{name}s fremhævede hashtags",
|
"account.featured_tags.title": "{name}s fremhævede etiketter",
|
||||||
"account.follow": "Følg",
|
"account.follow": "Følg",
|
||||||
"account.follow_back": "Følg tilbage",
|
"account.follow_back": "Følg tilbage",
|
||||||
"account.followers": "Følgere",
|
"account.followers": "Følgere",
|
||||||
|
@ -39,7 +39,7 @@
|
||||||
"account.following_counter": "{count, plural, one {{counter} følger} other {{counter} følger}}",
|
"account.following_counter": "{count, plural, one {{counter} følger} other {{counter} følger}}",
|
||||||
"account.follows.empty": "Denne bruger følger ikke nogen endnu.",
|
"account.follows.empty": "Denne bruger følger ikke nogen endnu.",
|
||||||
"account.go_to_profile": "Gå til profil",
|
"account.go_to_profile": "Gå til profil",
|
||||||
"account.hide_reblogs": "Skjul boosts fra @{name}",
|
"account.hide_reblogs": "Skjul fremhævelser fra @{name}",
|
||||||
"account.in_memoriam": "Til minde om.",
|
"account.in_memoriam": "Til minde om.",
|
||||||
"account.joined_short": "Oprettet",
|
"account.joined_short": "Oprettet",
|
||||||
"account.languages": "Skift abonnementssprog",
|
"account.languages": "Skift abonnementssprog",
|
||||||
|
@ -49,9 +49,9 @@
|
||||||
"account.mention": "Nævn @{name}",
|
"account.mention": "Nævn @{name}",
|
||||||
"account.moved_to": "{name} har angivet, at vedkommendes nye konto nu er:",
|
"account.moved_to": "{name} har angivet, at vedkommendes nye konto nu er:",
|
||||||
"account.mute": "Skjul @{name}",
|
"account.mute": "Skjul @{name}",
|
||||||
"account.mute_notifications_short": "Slå lyden fra for notifikationer",
|
"account.mute_notifications_short": "Sluk for notifikationer",
|
||||||
"account.mute_short": "Skjul (mute)",
|
"account.mute_short": "Skjul",
|
||||||
"account.muted": "Skjult (muted)",
|
"account.muted": "Skjult",
|
||||||
"account.mutual": "Fælles",
|
"account.mutual": "Fælles",
|
||||||
"account.no_bio": "Ingen beskrivelse til rådighed.",
|
"account.no_bio": "Ingen beskrivelse til rådighed.",
|
||||||
"account.open_original_page": "Åbn oprindelig side",
|
"account.open_original_page": "Åbn oprindelig side",
|
||||||
|
@ -63,14 +63,14 @@
|
||||||
"account.share": "Del @{name}s profil",
|
"account.share": "Del @{name}s profil",
|
||||||
"account.show_reblogs": "Vis fremhævelser fra @{name}",
|
"account.show_reblogs": "Vis fremhævelser fra @{name}",
|
||||||
"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": "Afblokér @{name}",
|
"account.unblock": "Fjern blokering af @{name}",
|
||||||
"account.unblock_domain": "Afblokér domænet {domain}",
|
"account.unblock_domain": "Fjern blokering af domænet {domain}",
|
||||||
"account.unblock_short": "Afblokér",
|
"account.unblock_short": "Fjern blokering",
|
||||||
"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": "Vis @{name} igen (unmute)",
|
"account.unmute": "Vis @{name} igen",
|
||||||
"account.unmute_notifications_short": "Slå lyden fra for notifikationer",
|
"account.unmute_notifications_short": "Tænd for notifikationer",
|
||||||
"account.unmute_short": "Vis igen (unmute)",
|
"account.unmute_short": "Vis igen",
|
||||||
"account_note.placeholder": "Klik for at tilføje notat",
|
"account_note.placeholder": "Klik for at tilføje notat",
|
||||||
"admin.dashboard.daily_retention": "Brugerfastholdelsesrate per dag efter tilmelding",
|
"admin.dashboard.daily_retention": "Brugerfastholdelsesrate per dag efter tilmelding",
|
||||||
"admin.dashboard.monthly_retention": "Brugerfastholdelsesrate per måned efter tilmelding",
|
"admin.dashboard.monthly_retention": "Brugerfastholdelsesrate per måned efter tilmelding",
|
||||||
|
@ -90,16 +90,16 @@
|
||||||
"attachments_list.unprocessed": "(ubehandlet)",
|
"attachments_list.unprocessed": "(ubehandlet)",
|
||||||
"audio.hide": "Skjul lyd",
|
"audio.hide": "Skjul lyd",
|
||||||
"block_modal.remote_users_caveat": "Serveren {domain} vil blive bedt om at respektere din beslutning. Overholdelse er dog ikke garanteret, da nogle servere kan håndtere blokke forskelligt. Offentlige indlæg kan stadig være synlige for ikke-indloggede brugere.",
|
"block_modal.remote_users_caveat": "Serveren {domain} vil blive bedt om at respektere din beslutning. Overholdelse er dog ikke garanteret, da nogle servere kan håndtere blokke forskelligt. Offentlige indlæg kan stadig være synlige for ikke-indloggede brugere.",
|
||||||
"block_modal.show_less": "Vis mindre",
|
"block_modal.show_less": "Vis færre",
|
||||||
"block_modal.show_more": "Vis flere",
|
"block_modal.show_more": "Vis flere",
|
||||||
"block_modal.they_cant_mention": "Vedkommende kan ikke nævne eller følge dig.",
|
"block_modal.they_cant_mention": "Vedkommende kan ikke omtale eller følge dig.",
|
||||||
"block_modal.they_cant_see_posts": "Vedkommende kan ikke se dine indlæg, og du vil ikke se vedkommendes.",
|
"block_modal.they_cant_see_posts": "Vedkommende kan ikke se dine indlæg, og du vil ikke se vedkommendes.",
|
||||||
"block_modal.they_will_know": "Vedkommende kan se den aktive blokering.",
|
"block_modal.they_will_know": "Vedkommende kan se den aktive blokering.",
|
||||||
"block_modal.title": "Blokér bruger?",
|
"block_modal.title": "Blokér bruger?",
|
||||||
"block_modal.you_wont_see_mentions": "Du vil ikke se indlæg, som nævner vedkommende.",
|
"block_modal.you_wont_see_mentions": "Du vil ikke se indlæg, som omtaler vedkommende.",
|
||||||
"boost_modal.combo": "Du kan trykke {combo} for at springe dette over næste gang",
|
"boost_modal.combo": "Du kan trykke {combo} for at springe dette over næste gang",
|
||||||
"boost_modal.reblog": "Boost indlæg?",
|
"boost_modal.reblog": "Fremhæv indlæg?",
|
||||||
"boost_modal.undo_reblog": "Fjern boost af indlæg?",
|
"boost_modal.undo_reblog": "Fjern fremhævning af indlæg?",
|
||||||
"bundle_column_error.copy_stacktrace": "Kopiér fejlrapport",
|
"bundle_column_error.copy_stacktrace": "Kopiér fejlrapport",
|
||||||
"bundle_column_error.error.body": "Den anmodede side kunne ikke gengives. Dette kan skyldes flere typer fejl.",
|
"bundle_column_error.error.body": "Den anmodede side kunne ikke gengives. Dette kan skyldes flere typer fejl.",
|
||||||
"bundle_column_error.error.title": "Åh nej!",
|
"bundle_column_error.error.title": "Åh nej!",
|
||||||
|
@ -125,11 +125,11 @@
|
||||||
"column.directory": "Tjek profiler",
|
"column.directory": "Tjek profiler",
|
||||||
"column.domain_blocks": "Blokerede domæner",
|
"column.domain_blocks": "Blokerede domæner",
|
||||||
"column.favourites": "Favoritter",
|
"column.favourites": "Favoritter",
|
||||||
"column.firehose": "Live feeds",
|
"column.firehose": "Realtids-strømme",
|
||||||
"column.follow_requests": "Følgeanmodninger",
|
"column.follow_requests": "Følgeanmodninger",
|
||||||
"column.home": "Hjem",
|
"column.home": "Hjem",
|
||||||
"column.lists": "Lister",
|
"column.lists": "Lister",
|
||||||
"column.mutes": "Skjulte brugere (mutede)",
|
"column.mutes": "Skjulte brugere",
|
||||||
"column.notifications": "Notifikationer",
|
"column.notifications": "Notifikationer",
|
||||||
"column.pins": "Fastgjorte indlæg",
|
"column.pins": "Fastgjorte indlæg",
|
||||||
"column.public": "Fælles tidslinje",
|
"column.public": "Fælles tidslinje",
|
||||||
|
@ -139,7 +139,7 @@
|
||||||
"column_header.moveRight_settings": "Flyt kolonne til højre",
|
"column_header.moveRight_settings": "Flyt kolonne til højre",
|
||||||
"column_header.pin": "Fastgør",
|
"column_header.pin": "Fastgør",
|
||||||
"column_header.show_settings": "Vis indstillinger",
|
"column_header.show_settings": "Vis indstillinger",
|
||||||
"column_header.unpin": "Løsgør",
|
"column_header.unpin": "Frigør",
|
||||||
"column_subheading.settings": "Indstillinger",
|
"column_subheading.settings": "Indstillinger",
|
||||||
"community.column_settings.local_only": "Kun lokalt",
|
"community.column_settings.local_only": "Kun lokalt",
|
||||||
"community.column_settings.media_only": "Kun medier",
|
"community.column_settings.media_only": "Kun medier",
|
||||||
|
@ -151,7 +151,7 @@
|
||||||
"compose.saved.body": "Indlæg gemt.",
|
"compose.saved.body": "Indlæg gemt.",
|
||||||
"compose_form.direct_message_warning_learn_more": "Få mere at vide",
|
"compose_form.direct_message_warning_learn_more": "Få mere at vide",
|
||||||
"compose_form.encryption_warning": "Indlæg på Mastodon er ikke ende-til-ende-krypteret. Del derfor ikke sensitiv information via Mastodon.",
|
"compose_form.encryption_warning": "Indlæg på Mastodon er ikke ende-til-ende-krypteret. Del derfor ikke sensitiv information via Mastodon.",
|
||||||
"compose_form.hashtag_warning": "Da indlægget ikke er offentligt, vises det ikke under noget hashtag, da kun offentlige indlæg er søgbare via hashtags.",
|
"compose_form.hashtag_warning": "Da indlægget ikke er offentligt, vises det ikke under nogen etiket, da kun offentlige indlæg er søgbare via etiketter.",
|
||||||
"compose_form.lock_disclaimer": "Din konto er ikke {locked}. Enhver kan følge dig og se indlæg kun beregnet for følgere.",
|
"compose_form.lock_disclaimer": "Din konto er ikke {locked}. Enhver kan følge dig og se indlæg kun beregnet for følgere.",
|
||||||
"compose_form.lock_disclaimer.lock": "låst",
|
"compose_form.lock_disclaimer.lock": "låst",
|
||||||
"compose_form.placeholder": "Hvad tænker du på?",
|
"compose_form.placeholder": "Hvad tænker du på?",
|
||||||
|
@ -166,9 +166,9 @@
|
||||||
"compose_form.publish_form": "Publicér",
|
"compose_form.publish_form": "Publicér",
|
||||||
"compose_form.reply": "Svar",
|
"compose_form.reply": "Svar",
|
||||||
"compose_form.save_changes": "Opdatér",
|
"compose_form.save_changes": "Opdatér",
|
||||||
"compose_form.spoiler.marked": "Fjern indholdsadvarsel",
|
"compose_form.spoiler.marked": "Fjern emnefelt",
|
||||||
"compose_form.spoiler.unmarked": "Tilføj indholdsadvarsel",
|
"compose_form.spoiler.unmarked": "Tilføj emnefelt",
|
||||||
"compose_form.spoiler_placeholder": "Indholdsadvarsel (valgfri)",
|
"compose_form.spoiler_placeholder": "Emnefelt (valgfrit)",
|
||||||
"confirmation_modal.cancel": "Afbryd",
|
"confirmation_modal.cancel": "Afbryd",
|
||||||
"confirmations.block.confirm": "Blokér",
|
"confirmations.block.confirm": "Blokér",
|
||||||
"confirmations.delete.confirm": "Slet",
|
"confirmations.delete.confirm": "Slet",
|
||||||
|
@ -185,9 +185,9 @@
|
||||||
"confirmations.logout.confirm": "Log ud",
|
"confirmations.logout.confirm": "Log ud",
|
||||||
"confirmations.logout.message": "Er du sikker på, at du vil logge ud?",
|
"confirmations.logout.message": "Er du sikker på, at du vil logge ud?",
|
||||||
"confirmations.logout.title": "Log ud?",
|
"confirmations.logout.title": "Log ud?",
|
||||||
"confirmations.mute.confirm": "Skjul (mute)",
|
"confirmations.mute.confirm": "Skjul",
|
||||||
"confirmations.redraft.confirm": "Slet og omformulér",
|
"confirmations.redraft.confirm": "Slet og omformulér",
|
||||||
"confirmations.redraft.message": "Sikker på, at dette indlæg skal slettes og omskrives? Favoritter og boosts går tabt, og svar til det oprindelige indlæg mister tilknytningen.",
|
"confirmations.redraft.message": "Sikker på, at dette indlæg skal slettes og omskrives? Favoritter og fremhævelser går tabt, og svar til det oprindelige indlæg mister tilknytningen.",
|
||||||
"confirmations.redraft.title": "Slet og omformulér indlæg?",
|
"confirmations.redraft.title": "Slet og omformulér indlæg?",
|
||||||
"confirmations.reply.confirm": "Svar",
|
"confirmations.reply.confirm": "Svar",
|
||||||
"confirmations.reply.message": "Hvis du svarer nu, vil det overskrive den besked, du er ved at skrive. Fortsæt alligevel?",
|
"confirmations.reply.message": "Hvis du svarer nu, vil det overskrive den besked, du er ved at skrive. Fortsæt alligevel?",
|
||||||
|
@ -205,7 +205,7 @@
|
||||||
"copy_icon_button.copied": "Kopieret til udklipsholderen",
|
"copy_icon_button.copied": "Kopieret til udklipsholderen",
|
||||||
"copypaste.copied": "Kopieret",
|
"copypaste.copied": "Kopieret",
|
||||||
"copypaste.copy_to_clipboard": "Kopiér til udklipsholder",
|
"copypaste.copy_to_clipboard": "Kopiér til udklipsholder",
|
||||||
"directory.federated": "Fra kendt fedivers",
|
"directory.federated": "Fra kendt fødivers",
|
||||||
"directory.local": "Kun fra {domain}",
|
"directory.local": "Kun fra {domain}",
|
||||||
"directory.new_arrivals": "Nye ankomster",
|
"directory.new_arrivals": "Nye ankomster",
|
||||||
"directory.recently_active": "Aktive for nyligt",
|
"directory.recently_active": "Aktive for nyligt",
|
||||||
|
@ -214,32 +214,32 @@
|
||||||
"dismissable_banner.community_timeline": "Disse er de seneste offentlige indlæg fra personer med konti hostet af {domain}.",
|
"dismissable_banner.community_timeline": "Disse er de seneste offentlige indlæg fra personer med konti hostet af {domain}.",
|
||||||
"dismissable_banner.dismiss": "Afvis",
|
"dismissable_banner.dismiss": "Afvis",
|
||||||
"dismissable_banner.explore_links": "Der tales lige nu om disse nyhedshistorier af folk på denne og andre servere i det decentraliserede netværk.",
|
"dismissable_banner.explore_links": "Der tales lige nu om disse nyhedshistorier af folk på denne og andre servere i det decentraliserede netværk.",
|
||||||
"dismissable_banner.explore_statuses": "Disse indlæg fra diverse sociale netværk vinder fodfæste i dag. Nyere indlæg med flere boosts og favoritter rangeres højere.",
|
"dismissable_banner.explore_statuses": "Disse indlæg fra diverse sociale netværk vinder fodfæste i dag. Nyere indlæg med flere fremhævelser og favoritter rangeres højere.",
|
||||||
"dismissable_banner.explore_tags": "Disse hashtages vinder lige nu fodfæste blandt folk på denne og andre servere i det decentraliserede netværk.",
|
"dismissable_banner.explore_tags": "Disse etiketter vinder lige nu fodfæste blandt folk på denne og andre servere i det decentraliserede netværk.",
|
||||||
"dismissable_banner.public_timeline": "Dette er de seneste offentlige indlæg fra folk på det sociale netværk, som folk på {domain} følger.",
|
"dismissable_banner.public_timeline": "Dette er de seneste offentlige indlæg fra folk på det sociale netværk, som folk på {domain} følger.",
|
||||||
"domain_block_modal.block": "Blokér server",
|
"domain_block_modal.block": "Blokér server",
|
||||||
"domain_block_modal.block_account_instead": "Blokér i stedet @{name}",
|
"domain_block_modal.block_account_instead": "Blokér i stedet @{name}",
|
||||||
"domain_block_modal.they_can_interact_with_old_posts": "Folk fra denne server kan interagere med de gamle indlæg.",
|
"domain_block_modal.they_can_interact_with_old_posts": "Folk fra denne server kan interagere med de gamle indlæg.",
|
||||||
"domain_block_modal.they_cant_follow": "Ingen fra denne server kan følge dig.",
|
"domain_block_modal.they_cant_follow": "Ingen fra denne server kan følge dig.",
|
||||||
"domain_block_modal.they_wont_know": "Vedkommende ser ikke den aktive blokering.",
|
"domain_block_modal.they_wont_know": "De ser ikke den aktive blokering.",
|
||||||
"domain_block_modal.title": "Blokér domæne?",
|
"domain_block_modal.title": "Blokér domæne?",
|
||||||
"domain_block_modal.you_will_lose_num_followers": "Man vil miste {followersCount, plural, one {{followersCountDisplay} følger} other {{followersCountDisplay} følgere}} og {followingCount, plural, one {{followingCountDisplay} person, man følger} other {{followingCountDisplay} personer, man følger}}.",
|
"domain_block_modal.you_will_lose_num_followers": "Man vil miste {followersCount, plural, one {{followersCountDisplay} følger} other {{followersCountDisplay} følgere}} og {followingCount, plural, one {{followingCountDisplay} person, man følger} other {{followingCountDisplay} personer, man følger}}.",
|
||||||
"domain_block_modal.you_will_lose_relationships": "Alle følgere og personer som følges på denne server mistes.",
|
"domain_block_modal.you_will_lose_relationships": "Alle følgere og personer som følges på denne server mistes.",
|
||||||
"domain_block_modal.you_wont_see_posts": "Indlæg eller notifikationer fra brugere på denne server vises ikke.",
|
"domain_block_modal.you_wont_see_posts": "Indlæg eller notifikationer fra brugere på denne server vises ikke.",
|
||||||
"domain_pill.activitypub_lets_connect": "Det muliggør at komme i forbindelse og interagere med folk ikke kun på Mastodon, men også på tværs af forskellige sociale apps.",
|
"domain_pill.activitypub_lets_connect": "Det muliggører at forbinde og interagere med folk, ikke kun på Mastodon, men også på tværs af forskellige sociale apps.",
|
||||||
"domain_pill.activitypub_like_language": "ActivityPub er \"sproget\", Mastodon taler med andre sociale netværk.",
|
"domain_pill.activitypub_like_language": "ActivityPub er \"sproget\", som Mastodon taler med andre sociale netværk.",
|
||||||
"domain_pill.server": "Server",
|
"domain_pill.server": "Server",
|
||||||
"domain_pill.their_handle": "Vedkommendes handle:",
|
"domain_pill.their_handle": "Deres greb:",
|
||||||
"domain_pill.their_server": "Det digitale hjem, hvor alle indlæggene findes.",
|
"domain_pill.their_server": "Det digitale hjem, hvor alle indlæggene findes.",
|
||||||
"domain_pill.their_username": "Entydig identifikator på denne server. Det er muligt at finde brugere med samme brugernavn på forskellige servere.",
|
"domain_pill.their_username": "Entydig identifikator på denne server. Det er muligt at finde brugere med samme brugernavn på forskellige servere.",
|
||||||
"domain_pill.username": "Brugernavn",
|
"domain_pill.username": "Brugernavn",
|
||||||
"domain_pill.whats_in_a_handle": "Hvad er der i et handle (@brugernavn)?",
|
"domain_pill.whats_in_a_handle": "Hvad er der i et greb?",
|
||||||
"domain_pill.who_they_are": "Da et handle fortæller, hvem nogen er, og hvor de er, kan man interagere med folk på tværs af det sociale net af <button>ActivityPub-drevne platforme</button>.",
|
"domain_pill.who_they_are": "Da et greb fortæller, hvem nogen er, og hvor de er, kan man interagere med folk på tværs af det sociale net af <button>ActivityPub-drevne platforme</button>.",
|
||||||
"domain_pill.who_you_are": "Da et handle fortæller, hvem man er, og hvor man er, kan man interagere med folk på tværs af det sociale net af <button>ActivityPub-drevne platforme</button>.",
|
"domain_pill.who_you_are": "Da et greb fortæller, hvem man er, og hvor man er, kan man interagere med folk på tværs af det sociale net af <button>ActivityPub-drevne platforme</button>.",
|
||||||
"domain_pill.your_handle": "Dit handle:",
|
"domain_pill.your_handle": "Dit greb:",
|
||||||
"domain_pill.your_server": "Dit digitale hjem, hvor alle dine indlæg lever. Synes ikke om denne? Overfør til enhver tid servere samt tilhængere også.",
|
"domain_pill.your_server": "Dit digitale hjem, hvor alle dine indlæg lever. Synes ikke om den her server? Du kan til enhver tid rykke over på en anden server og beholde dine følgere.",
|
||||||
"domain_pill.your_username": "Din entydige identifikator på denne server. Det er muligt at finde brugere med samme brugernavn på forskellige servere.",
|
"domain_pill.your_username": "Din entydige identifikator på denne server. Det er muligt at finde brugere med samme brugernavn på forskellige servere.",
|
||||||
"embed.instructions": "Indlejr dette indlæg på dit websted ved at kopiere nedenstående kode.",
|
"embed.instructions": "Indlejr dette indlæg på din hjemmeside ved at kopiere nedenstående kode.",
|
||||||
"embed.preview": "Sådan kommer det til at se ud:",
|
"embed.preview": "Sådan kommer det til at se ud:",
|
||||||
"emoji_button.activity": "Aktivitet",
|
"emoji_button.activity": "Aktivitet",
|
||||||
"emoji_button.clear": "Ryd",
|
"emoji_button.clear": "Ryd",
|
||||||
|
@ -258,30 +258,30 @@
|
||||||
"emoji_button.travel": "Rejser og steder",
|
"emoji_button.travel": "Rejser og steder",
|
||||||
"empty_column.account_hides_collections": "Brugeren har valgt ikke at gøre denne information tilgængelig",
|
"empty_column.account_hides_collections": "Brugeren har valgt ikke at gøre denne information tilgængelig",
|
||||||
"empty_column.account_suspended": "Konto suspenderet",
|
"empty_column.account_suspended": "Konto suspenderet",
|
||||||
"empty_column.account_timeline": "Ingen indlæg hér!",
|
"empty_column.account_timeline": "Ingen indlæg her!",
|
||||||
"empty_column.account_unavailable": "Profil utilgængelig",
|
"empty_column.account_unavailable": "Profil utilgængelig",
|
||||||
"empty_column.blocks": "Ingen brugere blokeret endnu.",
|
"empty_column.blocks": "Ingen brugere blokeret endnu.",
|
||||||
"empty_column.bookmarked_statuses": "Du har ingen bogmærkede indlæg endnu. Når du bogmærker ét, vil det dukke op hér.",
|
"empty_column.bookmarked_statuses": "Du har ingen bogmærkede indlæg endnu. Når du bogmærker ét, vil det dukke op hér.",
|
||||||
"empty_column.community": "Den lokale tidslinje er tom. Skriv noget offentligt for at sætte tingene i gang!",
|
"empty_column.community": "Den lokale tidslinje er tom. Skriv noget offentligt for at sætte tingene i gang!",
|
||||||
"empty_column.direct": "Der er endnu ingen private omtaler. Når en sendes eller modtages, dukker den op hér.",
|
"empty_column.direct": "Der er endnu ingen private omtaler. Når en sendes eller modtages, dukker den op her.",
|
||||||
"empty_column.domain_blocks": "Ingen blokerede domæner endnu.",
|
"empty_column.domain_blocks": "Ingen blokerede domæner endnu.",
|
||||||
"empty_column.explore_statuses": "Ingen nye tendenser lige nu. Tjek igen senere!",
|
"empty_column.explore_statuses": "Ingen nye tendenser lige nu. Tjek igen senere!",
|
||||||
"empty_column.favourited_statuses": "Du har endnu ingen favoritindlæg. Når du favoritmarkerer ét, vil det dukke op hér.",
|
"empty_column.favourited_statuses": "Du har endnu ingen favoritindlæg. Når du føjer et opslag til favoritter, vil det dukke op her.",
|
||||||
"empty_column.favourites": "Ingen har endnu gjort dette indlæg til favorit. Når nogen gør dét, vil det dukke op hér.",
|
"empty_column.favourites": "Ingen har endnu føjet dette indlæg til favoritter. Når nogen gør det, vil det dukke op her.",
|
||||||
"empty_column.follow_requests": "Du har endnu ingen følgeanmodninger. Når du modtager én, vil den dukke op hér.",
|
"empty_column.follow_requests": "Du har endnu ingen følgeanmodninger. Når du modtager én, vil den dukke op her.",
|
||||||
"empty_column.followed_tags": "Ingen hashtags følges endnu. Når det sker, vil de fremgå hér.",
|
"empty_column.followed_tags": "Ingen etiketter følges endnu. Når det sker, vil de fremgå her.",
|
||||||
"empty_column.hashtag": "Der er intet med dette hashtag endnu.",
|
"empty_column.hashtag": "Der er intet med denne etiket endnu.",
|
||||||
"empty_column.home": "Din hjemmetidslinje er tom! Følg nogle personer, for at udfylde den. {suggestions}",
|
"empty_column.home": "Din hjemmetidslinje er tom! Følg nogle personer, for at fylde den op.",
|
||||||
"empty_column.list": "Der er ikke noget på denne liste endnu. Når medlemmer af listen udgiver nye indlæg vil de fremgå hér.",
|
"empty_column.list": "Der er ikke noget på denne liste endnu. Når medlemmer af listen udgiver nye indlæg vil de fremgå her.",
|
||||||
"empty_column.lists": "Du har endnu ingen lister. Når du opretter én, vil den fremgå hér.",
|
"empty_column.lists": "Du har endnu ingen lister. Når du opretter én, vil den fremgå hér.",
|
||||||
"empty_column.mutes": "Du har endnu ikke skjult (muted) nogle brugere.",
|
"empty_column.mutes": "Du har endnu ikke skjult nogle brugere.",
|
||||||
"empty_column.notification_requests": "Alt er klar! Der er intet her. Når der modtages nye notifikationer, fremgår de her jf. dine indstillinger.",
|
"empty_column.notification_requests": "Alt er klar! Der er intet her. Når der modtages nye notifikationer, fremgår de her jævnfør dine indstillinger.",
|
||||||
"empty_column.notifications": "Du har endnu ingen notifikationer. Når andre interagerer med dig, vil det fremgå hér.",
|
"empty_column.notifications": "Du har endnu ingen notifikationer. Når andre interagerer med dig, vil det fremgå her.",
|
||||||
"empty_column.public": "Der er intet hér! Skriv noget offentligt eller følg manuelt brugere fra andre servere for at se indhold",
|
"empty_column.public": "Der er intet her! Skriv noget offentligt eller følg manuelt brugere fra andre servere for at se indhold",
|
||||||
"error.unexpected_crash.explanation": "Grundet en fejl i vores kode, eller en browser-kompatibilitetsfejl, kunne siden ikke vises korrekt.",
|
"error.unexpected_crash.explanation": "Grundet en fejl i vores kode, eller en netlæser-kompatibilitetsfejl, kunne siden ikke vises korrekt.",
|
||||||
"error.unexpected_crash.explanation_addons": "Denne side kunne ikke vises korrekt. Fejlen skyldes sandsynligvis en browsertilføjelse eller automatiske oversættelsesværktøjer.",
|
"error.unexpected_crash.explanation_addons": "Denne side kunne ikke vises korrekt. Fejlen skyldes sandsynligvis en browsertilføjelse eller automatiske oversættelsesværktøjer.",
|
||||||
"error.unexpected_crash.next_steps": "Prøv at opfriske siden. Hjælper dette ikke, kan Mastodon muligvis stadig bruges via en anden browser eller app.",
|
"error.unexpected_crash.next_steps": "Prøv at opfriske siden. Hjælper dette ikke, kan Mastodon muligvis stadig bruges via en anden netlæser eller app.",
|
||||||
"error.unexpected_crash.next_steps_addons": "Prøv at deaktivere dem og genindlæse siden. Hvis det ikke hjælper, kan Mastodon muligvis stadig bruges via en anden browser eller app.",
|
"error.unexpected_crash.next_steps_addons": "Prøv at deaktivere dem og genindlæse siden. Hvis det ikke hjælper, kan Mastodon muligvis stadig bruges via en anden netlæser eller app.",
|
||||||
"errors.unexpected_crash.copy_stacktrace": "Kopiér stacktrace til udklipsholderen",
|
"errors.unexpected_crash.copy_stacktrace": "Kopiér stacktrace til udklipsholderen",
|
||||||
"errors.unexpected_crash.report_issue": "Anmeld problem",
|
"errors.unexpected_crash.report_issue": "Anmeld problem",
|
||||||
"explore.search_results": "Søgeresultater",
|
"explore.search_results": "Søgeresultater",
|
||||||
|
@ -289,7 +289,7 @@
|
||||||
"explore.title": "Udforsk",
|
"explore.title": "Udforsk",
|
||||||
"explore.trending_links": "Nyheder",
|
"explore.trending_links": "Nyheder",
|
||||||
"explore.trending_statuses": "Indlæg",
|
"explore.trending_statuses": "Indlæg",
|
||||||
"explore.trending_tags": "Hashtags",
|
"explore.trending_tags": "Etiketter",
|
||||||
"filter_modal.added.context_mismatch_explanation": "Denne filterkategori omfatter ikke konteksten, hvorunder dette indlæg er tilgået. Redigér filteret, hvis indlægget også ønskes filtreret i denne kontekst.",
|
"filter_modal.added.context_mismatch_explanation": "Denne filterkategori omfatter ikke konteksten, hvorunder dette indlæg er tilgået. Redigér filteret, hvis indlægget også ønskes filtreret i denne kontekst.",
|
||||||
"filter_modal.added.context_mismatch_title": "Kontekstmisforhold!",
|
"filter_modal.added.context_mismatch_title": "Kontekstmisforhold!",
|
||||||
"filter_modal.added.expired_explanation": "Denne filterkategori er udløbet. Ændr dens udløbsdato, for at anvende den.",
|
"filter_modal.added.expired_explanation": "Denne filterkategori er udløbet. Ændr dens udløbsdato, for at anvende den.",
|
||||||
|
@ -297,7 +297,7 @@
|
||||||
"filter_modal.added.review_and_configure": "Gå til {settings_link} for at gennemse og yderligere opsætte denne filterkategori.",
|
"filter_modal.added.review_and_configure": "Gå til {settings_link} for at gennemse og yderligere opsætte denne filterkategori.",
|
||||||
"filter_modal.added.review_and_configure_title": "Filterindstillinger",
|
"filter_modal.added.review_and_configure_title": "Filterindstillinger",
|
||||||
"filter_modal.added.settings_link": "indstillingsside",
|
"filter_modal.added.settings_link": "indstillingsside",
|
||||||
"filter_modal.added.short_explanation": "Dette indlæg er nu føjet til flg. filterkategori: {title}.",
|
"filter_modal.added.short_explanation": "Dette indlæg er nu føjet til følgende filterkategori: {title}.",
|
||||||
"filter_modal.added.title": "Filter tilføjet!",
|
"filter_modal.added.title": "Filter tilføjet!",
|
||||||
"filter_modal.select_filter.context_mismatch": "gælder ikke for denne kontekst",
|
"filter_modal.select_filter.context_mismatch": "gælder ikke for denne kontekst",
|
||||||
"filter_modal.select_filter.expired": "udløbet",
|
"filter_modal.select_filter.expired": "udløbet",
|
||||||
|
@ -330,7 +330,7 @@
|
||||||
"follow_suggestions.similar_to_recently_followed_longer": "Svarende til profiler, som for nylig er fulgt",
|
"follow_suggestions.similar_to_recently_followed_longer": "Svarende til profiler, som for nylig er fulgt",
|
||||||
"follow_suggestions.view_all": "Vis alle",
|
"follow_suggestions.view_all": "Vis alle",
|
||||||
"follow_suggestions.who_to_follow": "Hvem, som skal følges",
|
"follow_suggestions.who_to_follow": "Hvem, som skal følges",
|
||||||
"followed_tags": "Hashtag, som følges",
|
"followed_tags": "Etiketter, som følges",
|
||||||
"footer.about": "Om",
|
"footer.about": "Om",
|
||||||
"footer.directory": "Profiloversigt",
|
"footer.directory": "Profiloversigt",
|
||||||
"footer.get_app": "Hent appen",
|
"footer.get_app": "Hent appen",
|
||||||
|
@ -345,7 +345,7 @@
|
||||||
"hashtag.column_header.tag_mode.any": "eller {additional}",
|
"hashtag.column_header.tag_mode.any": "eller {additional}",
|
||||||
"hashtag.column_header.tag_mode.none": "uden {additional}",
|
"hashtag.column_header.tag_mode.none": "uden {additional}",
|
||||||
"hashtag.column_settings.select.no_options_message": "Ingen forslag fundet",
|
"hashtag.column_settings.select.no_options_message": "Ingen forslag fundet",
|
||||||
"hashtag.column_settings.select.placeholder": "Angiv hashtags…",
|
"hashtag.column_settings.select.placeholder": "Angiv etiketter…",
|
||||||
"hashtag.column_settings.tag_mode.all": "Alle disse",
|
"hashtag.column_settings.tag_mode.all": "Alle disse",
|
||||||
"hashtag.column_settings.tag_mode.any": "Nogle af disse",
|
"hashtag.column_settings.tag_mode.any": "Nogle af disse",
|
||||||
"hashtag.column_settings.tag_mode.none": "Ingen af disse",
|
"hashtag.column_settings.tag_mode.none": "Ingen af disse",
|
||||||
|
@ -353,8 +353,8 @@
|
||||||
"hashtag.counter_by_accounts": "{count, plural, one {{counter} deltager} other {{counter} deltagere}}",
|
"hashtag.counter_by_accounts": "{count, plural, one {{counter} deltager} other {{counter} deltagere}}",
|
||||||
"hashtag.counter_by_uses": "{count, plural, one {{counter} indlæg} other {{counter} indlæg}}",
|
"hashtag.counter_by_uses": "{count, plural, one {{counter} indlæg} other {{counter} indlæg}}",
|
||||||
"hashtag.counter_by_uses_today": "{count, plural, one {{counter} indlæg} other {{counter} indlæg}} i dag",
|
"hashtag.counter_by_uses_today": "{count, plural, one {{counter} indlæg} other {{counter} indlæg}} i dag",
|
||||||
"hashtag.follow": "Følg hashtag",
|
"hashtag.follow": "Følg etiket",
|
||||||
"hashtag.unfollow": "Stop med at følge hashtag",
|
"hashtag.unfollow": "Stop med at følge etiket",
|
||||||
"hashtags.and_other": "…og {count, plural, one {}other {# flere}}",
|
"hashtags.and_other": "…og {count, plural, one {}other {# flere}}",
|
||||||
"hints.profiles.followers_may_be_missing": "Der kan mangle følgere for denne profil.",
|
"hints.profiles.followers_may_be_missing": "Der kan mangle følgere for denne profil.",
|
||||||
"hints.profiles.follows_may_be_missing": "Fulgte kan mangle for denne profil.",
|
"hints.profiles.follows_may_be_missing": "Fulgte kan mangle for denne profil.",
|
||||||
|
@ -364,15 +364,15 @@
|
||||||
"hints.profiles.see_more_posts": "Se flere indlæg på {domain}",
|
"hints.profiles.see_more_posts": "Se flere indlæg på {domain}",
|
||||||
"hints.threads.replies_may_be_missing": "Der kan mangle svar fra andre servere.",
|
"hints.threads.replies_may_be_missing": "Der kan mangle svar fra andre servere.",
|
||||||
"hints.threads.see_more": "Se flere svar på {domain}",
|
"hints.threads.see_more": "Se flere svar på {domain}",
|
||||||
"home.column_settings.show_reblogs": "Vis boosts",
|
"home.column_settings.show_reblogs": "Vis fremhævelser",
|
||||||
"home.column_settings.show_replies": "Vis svar",
|
"home.column_settings.show_replies": "Vis svar",
|
||||||
"home.hide_announcements": "Skjul bekendtgørelser",
|
"home.hide_announcements": "Skjul bekendtgørelser",
|
||||||
"home.pending_critical_update.body": "Opdater din Mastodon-server snarest muligt!",
|
"home.pending_critical_update.body": "Opdatér venligst din Mastodon-server snarest muligt!",
|
||||||
"home.pending_critical_update.link": "Se opdateringer",
|
"home.pending_critical_update.link": "Se opdateringer",
|
||||||
"home.pending_critical_update.title": "Kritisk sikkerhedsopdatering tilgængelig!",
|
"home.pending_critical_update.title": "Kritisk sikkerhedsopdatering tilgængelig!",
|
||||||
"home.show_announcements": "Vis bekendtgørelser",
|
"home.show_announcements": "Vis bekendtgørelser",
|
||||||
"ignore_notifications_modal.disclaimer": "Mastodon kan ikke informere brugere om, at man har ignoreret deres notifikationer. Ignorerer man notifikationer, forhindrer det ikke selve beskedafsendelsen.",
|
"ignore_notifications_modal.disclaimer": "Mastodon kan ikke informere brugere om, at man har ignoreret deres notifikationer. Ignorerer man notifikationer, forhindrer det ikke selve beskedafsendelsen.",
|
||||||
"ignore_notifications_modal.filter_instead": "Filtrer i stedet",
|
"ignore_notifications_modal.filter_instead": "Filtrér i stedet",
|
||||||
"ignore_notifications_modal.filter_to_act_users": "Man vil stadig kunne acceptere, afvise eller anmelde brugere",
|
"ignore_notifications_modal.filter_to_act_users": "Man vil stadig kunne acceptere, afvise eller anmelde brugere",
|
||||||
"ignore_notifications_modal.filter_to_avoid_confusion": "Filtrering medvirker til at undgå potentiel forvirring",
|
"ignore_notifications_modal.filter_to_avoid_confusion": "Filtrering medvirker til at undgå potentiel forvirring",
|
||||||
"ignore_notifications_modal.filter_to_review_separately": "Man kan gennemgå filtrerede notifikationer separat",
|
"ignore_notifications_modal.filter_to_review_separately": "Man kan gennemgå filtrerede notifikationer separat",
|
||||||
|
@ -393,32 +393,32 @@
|
||||||
"interaction_modal.on_this_server": "På denne server",
|
"interaction_modal.on_this_server": "På denne server",
|
||||||
"interaction_modal.sign_in": "Du er ikke logget ind på denne server. Hvor hostes din konto?",
|
"interaction_modal.sign_in": "Du er ikke logget ind på denne server. Hvor hostes din konto?",
|
||||||
"interaction_modal.sign_in_hint": "Tip: Det er webstedet, hvor du tilmeldte dig. Har du glemt det, så kig efter velkomstmailen i indbakken. Du kan også angive dit fulde brugernavn! (f.eks. @Mastodon@mastodon.social)",
|
"interaction_modal.sign_in_hint": "Tip: Det er webstedet, hvor du tilmeldte dig. Har du glemt det, så kig efter velkomstmailen i indbakken. Du kan også angive dit fulde brugernavn! (f.eks. @Mastodon@mastodon.social)",
|
||||||
"interaction_modal.title.favourite": "Gør {name}s indlæg til favorit",
|
"interaction_modal.title.favourite": "Føj {name}s indlæg til favoritter",
|
||||||
"interaction_modal.title.follow": "Følg {name}",
|
"interaction_modal.title.follow": "Følg {name}",
|
||||||
"interaction_modal.title.reblog": "Boost {name}s indlæg",
|
"interaction_modal.title.reblog": "Fremhæv {name}s indlæg",
|
||||||
"interaction_modal.title.reply": "Besvar {name}s indlæg",
|
"interaction_modal.title.reply": "Besvar {name}s indlæg",
|
||||||
"intervals.full.days": "{number, plural, one {# dag} other {# dage}}",
|
"intervals.full.days": "{number, plural, one {# dag} other {# dage}}",
|
||||||
"intervals.full.hours": "{number, plural, one {# time} other {# timer}}",
|
"intervals.full.hours": "{number, plural, one {# time} other {# timer}}",
|
||||||
"intervals.full.minutes": "{number, plural, one {# minut} other {# minutter}}",
|
"intervals.full.minutes": "{number, plural, one {# minut} other {# minutter}}",
|
||||||
"keyboard_shortcuts.back": "Gå tilbage",
|
"keyboard_shortcuts.back": "Gå tilbage",
|
||||||
"keyboard_shortcuts.blocked": "Åbn listen over blokerede brugere",
|
"keyboard_shortcuts.blocked": "Åbn listen over blokerede brugere",
|
||||||
"keyboard_shortcuts.boost": "Boost indlæg",
|
"keyboard_shortcuts.boost": "Fremhæv indlæg",
|
||||||
"keyboard_shortcuts.column": "Fokusér kolonne",
|
"keyboard_shortcuts.column": "Fokusér kolonne",
|
||||||
"keyboard_shortcuts.compose": "Fokusér skriveområdet",
|
"keyboard_shortcuts.compose": "Fokusér skriveområdet",
|
||||||
"keyboard_shortcuts.description": "Beskrivelse",
|
"keyboard_shortcuts.description": "Beskrivelse",
|
||||||
"keyboard_shortcuts.direct": "for at åbne kolonnen private omtaler",
|
"keyboard_shortcuts.direct": "for at åbne kolonnen private omtaler",
|
||||||
"keyboard_shortcuts.down": "Flyt nedad på listen",
|
"keyboard_shortcuts.down": "Flyt nedad på listen",
|
||||||
"keyboard_shortcuts.enter": "Åbn indlæg",
|
"keyboard_shortcuts.enter": "Åbn indlæg",
|
||||||
"keyboard_shortcuts.favourite": "Favoritmarkér indlæg",
|
"keyboard_shortcuts.favourite": "Føj indlæg til favoritter",
|
||||||
"keyboard_shortcuts.favourites": "Åbn favoritlisten",
|
"keyboard_shortcuts.favourites": "Åbn favoritlisten",
|
||||||
"keyboard_shortcuts.federated": "Åbn fælles tidslinje",
|
"keyboard_shortcuts.federated": "Åbn fødereret tidslinje",
|
||||||
"keyboard_shortcuts.heading": "Tastaturgenveje",
|
"keyboard_shortcuts.heading": "Tastaturgenveje",
|
||||||
"keyboard_shortcuts.home": "Åbn hjemmetidslinje",
|
"keyboard_shortcuts.home": "Åbn hjemmetidslinje",
|
||||||
"keyboard_shortcuts.hotkey": "Hurtigtast",
|
"keyboard_shortcuts.hotkey": "Hurtigtast",
|
||||||
"keyboard_shortcuts.legend": "Vis dette symbol",
|
"keyboard_shortcuts.legend": "Vis dette symbol",
|
||||||
"keyboard_shortcuts.local": "Åbn lokal tidslinje",
|
"keyboard_shortcuts.local": "Åbn lokal tidslinje",
|
||||||
"keyboard_shortcuts.mention": "Omtal forfatter",
|
"keyboard_shortcuts.mention": "Omtal forfatter",
|
||||||
"keyboard_shortcuts.muted": "Åbn listen over skjulte (mutede) brugere",
|
"keyboard_shortcuts.muted": "Åbn listen over skjulte brugere",
|
||||||
"keyboard_shortcuts.my_profile": "Åbn din profil",
|
"keyboard_shortcuts.my_profile": "Åbn din profil",
|
||||||
"keyboard_shortcuts.notifications": "for at åbne notifikationskolonnen",
|
"keyboard_shortcuts.notifications": "for at åbne notifikationskolonnen",
|
||||||
"keyboard_shortcuts.open_media": "Åbn medier",
|
"keyboard_shortcuts.open_media": "Åbn medier",
|
||||||
|
@ -427,9 +427,9 @@
|
||||||
"keyboard_shortcuts.reply": "Besvar indlægget",
|
"keyboard_shortcuts.reply": "Besvar indlægget",
|
||||||
"keyboard_shortcuts.requests": "Åbn liste over følgeanmodninger",
|
"keyboard_shortcuts.requests": "Åbn liste over følgeanmodninger",
|
||||||
"keyboard_shortcuts.search": "Fokusér søgebjælke",
|
"keyboard_shortcuts.search": "Fokusér søgebjælke",
|
||||||
"keyboard_shortcuts.spoilers": "Vis/skjul CW-felt",
|
"keyboard_shortcuts.spoilers": "Vis/skjul emnefelt",
|
||||||
"keyboard_shortcuts.start": "Åbn \"komme i gang\"-kolonne",
|
"keyboard_shortcuts.start": "Åbn \"komme i gang\"-kolonne",
|
||||||
"keyboard_shortcuts.toggle_hidden": "Vis/skjul tekst bag CW",
|
"keyboard_shortcuts.toggle_hidden": "Vis/skjul tekst bag emnefelt",
|
||||||
"keyboard_shortcuts.toggle_sensitivity": "Vis/skjul medier",
|
"keyboard_shortcuts.toggle_sensitivity": "Vis/skjul medier",
|
||||||
"keyboard_shortcuts.toot": "Påbegynd nyt indlæg",
|
"keyboard_shortcuts.toot": "Påbegynd nyt indlæg",
|
||||||
"keyboard_shortcuts.unfocus": "Fjern fokus fra tekstskrivningsområde/søgning",
|
"keyboard_shortcuts.unfocus": "Fjern fokus fra tekstskrivningsområde/søgning",
|
||||||
|
@ -464,16 +464,16 @@
|
||||||
"moved_to_account_banner.text": "Din konto {disabledAccount} er pt. deaktiveret, da du flyttede til {movedToAccount}.",
|
"moved_to_account_banner.text": "Din konto {disabledAccount} er pt. deaktiveret, da du flyttede til {movedToAccount}.",
|
||||||
"mute_modal.hide_from_notifications": "Skjul fra notifikationer",
|
"mute_modal.hide_from_notifications": "Skjul fra notifikationer",
|
||||||
"mute_modal.hide_options": "Skjul valgmuligheder",
|
"mute_modal.hide_options": "Skjul valgmuligheder",
|
||||||
"mute_modal.indefinite": "Indtil jeg fjerner tavsgørelsen",
|
"mute_modal.indefinite": "Indtil jeg vælger at se dem igen",
|
||||||
"mute_modal.show_options": "Vis valgmuligheder",
|
"mute_modal.show_options": "Vis valgmuligheder",
|
||||||
"mute_modal.they_can_mention_and_follow": "Vedkommende kan nævne og følge dig, men vil ikke blive vist.",
|
"mute_modal.they_can_mention_and_follow": "De kan omtale og følge dig, men du vil ikke se dem.",
|
||||||
"mute_modal.they_wont_know": "Vedkommende ser ikke den aktive tavsgørelse.",
|
"mute_modal.they_wont_know": "De vil ikke vide, at de er blevet skjult.",
|
||||||
"mute_modal.title": "Tavsgør bruger?",
|
"mute_modal.title": "Skjul bruger?",
|
||||||
"mute_modal.you_wont_see_mentions": "Indlæg, som nævner vedkommende, vises ikke.",
|
"mute_modal.you_wont_see_mentions": "Du vil ikke se indlæg som omtaler dem.",
|
||||||
"mute_modal.you_wont_see_posts": "Vedkommende kan stadig se dine indlæg, med vedkommendes vise ikke.",
|
"mute_modal.you_wont_see_posts": "De kan stadig se dine indlæg, men du vil ikke se deres.",
|
||||||
"navigation_bar.about": "Om",
|
"navigation_bar.about": "Om",
|
||||||
"navigation_bar.administration": "Håndtering",
|
"navigation_bar.administration": "Administration",
|
||||||
"navigation_bar.advanced_interface": "Åbn i avanceret webgrænseflade",
|
"navigation_bar.advanced_interface": "Åbn i avanceret netgrænseflade",
|
||||||
"navigation_bar.blocks": "Blokerede brugere",
|
"navigation_bar.blocks": "Blokerede brugere",
|
||||||
"navigation_bar.bookmarks": "Bogmærker",
|
"navigation_bar.bookmarks": "Bogmærker",
|
||||||
"navigation_bar.community_timeline": "Lokal tidslinje",
|
"navigation_bar.community_timeline": "Lokal tidslinje",
|
||||||
|
@ -483,14 +483,14 @@
|
||||||
"navigation_bar.domain_blocks": "Blokerede domæner",
|
"navigation_bar.domain_blocks": "Blokerede domæner",
|
||||||
"navigation_bar.explore": "Udforsk",
|
"navigation_bar.explore": "Udforsk",
|
||||||
"navigation_bar.favourites": "Favoritter",
|
"navigation_bar.favourites": "Favoritter",
|
||||||
"navigation_bar.filters": "Skjulte ord (mutede)",
|
"navigation_bar.filters": "Skjulte ord",
|
||||||
"navigation_bar.follow_requests": "Følgeanmodninger",
|
"navigation_bar.follow_requests": "Følgeanmodninger",
|
||||||
"navigation_bar.followed_tags": "Hashtag, som følges",
|
"navigation_bar.followed_tags": "Etiketter, som følges",
|
||||||
"navigation_bar.follows_and_followers": "Følges og følgere",
|
"navigation_bar.follows_and_followers": "Følges og følgere",
|
||||||
"navigation_bar.lists": "Lister",
|
"navigation_bar.lists": "Lister",
|
||||||
"navigation_bar.logout": "Log af",
|
"navigation_bar.logout": "Log af",
|
||||||
"navigation_bar.moderation": "Moderering",
|
"navigation_bar.moderation": "Moderering",
|
||||||
"navigation_bar.mutes": "Skjulte brugere (mutede)",
|
"navigation_bar.mutes": "Skjulte brugere",
|
||||||
"navigation_bar.opened_in_classic_interface": "Indlæg, konti og visse andre sider åbnes som standard i den klassiske webgrænseflade.",
|
"navigation_bar.opened_in_classic_interface": "Indlæg, konti og visse andre sider åbnes som standard i den klassiske webgrænseflade.",
|
||||||
"navigation_bar.personal": "Personlig",
|
"navigation_bar.personal": "Personlig",
|
||||||
"navigation_bar.pins": "Fastgjorte indlæg",
|
"navigation_bar.pins": "Fastgjorte indlæg",
|
||||||
|
@ -506,8 +506,8 @@
|
||||||
"notification.admin.report_statuses_other": "{name} anmeldte {target}",
|
"notification.admin.report_statuses_other": "{name} anmeldte {target}",
|
||||||
"notification.admin.sign_up": "{name} tilmeldte sig",
|
"notification.admin.sign_up": "{name} tilmeldte sig",
|
||||||
"notification.admin.sign_up.name_and_others": "{name} og {count, plural, one {# anden} other {# andre}} tilmeldte sig",
|
"notification.admin.sign_up.name_and_others": "{name} og {count, plural, one {# anden} other {# andre}} tilmeldte sig",
|
||||||
"notification.favourite": "{name} favoritmarkerede dit indlæg",
|
"notification.favourite": "{name} føjede dit indlæg til favoritter",
|
||||||
"notification.favourite.name_and_others_with_link": "{name} og <a>{count, plural, one {# anden} other {# andre}}</a> gjorde dit indlæg til favorit",
|
"notification.favourite.name_and_others_with_link": "{name} og <a>{count, plural, one {# anden} other {# andre}}</a> føjede dit indlæg til favoritter",
|
||||||
"notification.follow": "{name} begyndte at følge dig",
|
"notification.follow": "{name} begyndte at følge dig",
|
||||||
"notification.follow.name_and_others": "{name} og <a>{count, plural, one {# andre} other {# andre}}</a> begyndte at følge dig",
|
"notification.follow.name_and_others": "{name} og <a>{count, plural, one {# andre} other {# andre}}</a> begyndte at følge dig",
|
||||||
"notification.follow_request": "{name} har anmodet om at følge dig",
|
"notification.follow_request": "{name} har anmodet om at følge dig",
|
||||||
|
@ -515,36 +515,36 @@
|
||||||
"notification.label.mention": "Omtale",
|
"notification.label.mention": "Omtale",
|
||||||
"notification.label.private_mention": "Privat omtale",
|
"notification.label.private_mention": "Privat omtale",
|
||||||
"notification.label.private_reply": "Privat svar",
|
"notification.label.private_reply": "Privat svar",
|
||||||
"notification.label.reply": "Besvar",
|
"notification.label.reply": "Svar",
|
||||||
"notification.mention": "Omtale",
|
"notification.mention": "Omtale",
|
||||||
"notification.mentioned_you": "{name} nævnte dig",
|
"notification.mentioned_you": "{name} omtalte dig",
|
||||||
"notification.moderation-warning.learn_more": "Læs mere",
|
"notification.moderation-warning.learn_more": "Læs mere",
|
||||||
"notification.moderation_warning": "Du er tildelt en moderationsadvarsel",
|
"notification.moderation_warning": "Du har fået en moderationsadvarsel",
|
||||||
"notification.moderation_warning.action_delete_statuses": "Nogle af dine indlæg er blevet fjernet.",
|
"notification.moderation_warning.action_delete_statuses": "Nogle af dine indlæg er blevet fjernet.",
|
||||||
"notification.moderation_warning.action_disable": "Din konto er blevet deaktiveret.",
|
"notification.moderation_warning.action_disable": "Din konto er blevet deaktiveret.",
|
||||||
"notification.moderation_warning.action_mark_statuses_as_sensitive": "Nogle af dine indlæg er blevet markeret som sensitive.",
|
"notification.moderation_warning.action_mark_statuses_as_sensitive": "Nogle af dine indlæg er blevet markeret som følsomme.",
|
||||||
"notification.moderation_warning.action_none": "Din konto er tildelt en moderationsadvarsel.",
|
"notification.moderation_warning.action_none": "Din konto har fået en moderationsadvarsel.",
|
||||||
"notification.moderation_warning.action_sensitive": "Dine indlæg markeres fra nu af som sensitive.",
|
"notification.moderation_warning.action_sensitive": "Dine indlæg markeres fra nu af som følsomme.",
|
||||||
"notification.moderation_warning.action_silence": "Din konto er blevet begrænset.",
|
"notification.moderation_warning.action_silence": "Din konto er blevet begrænset.",
|
||||||
"notification.moderation_warning.action_suspend": "Din konto er suspenderet.",
|
"notification.moderation_warning.action_suspend": "Din konto er suspenderet.",
|
||||||
"notification.own_poll": "Din afstemning er afsluttet",
|
"notification.own_poll": "Din afstemning er afsluttet",
|
||||||
"notification.poll": "En afstemning, hvori du har stemt, er slut",
|
"notification.poll": "En afstemning, hvori du har stemt, er slut",
|
||||||
"notification.reblog": "{name} boostede dit indlæg",
|
"notification.reblog": "{name} fremhævede dit indlæg",
|
||||||
"notification.reblog.name_and_others_with_link": "{name} og <a>{count, plural, one {# anden} other {# andre}}</a> boostede dit indlæg",
|
"notification.reblog.name_and_others_with_link": "{name} og <a>{count, plural, one {# anden} other {# andre}}</a> fremhævede dit indlæg",
|
||||||
"notification.relationships_severance_event": "Mistede forbindelser med {name}",
|
"notification.relationships_severance_event": "Mistede forbindelser med {name}",
|
||||||
"notification.relationships_severance_event.account_suspension": "En admin fra {from} har suspenderet {target}, hvofor opdateringer herfra eller interaktion hermed ikke længer er mulig.",
|
"notification.relationships_severance_event.account_suspension": "En admin fra {from} har suspenderet {target}, så du kan ikke længere få opdateringer fra eller interagere med dem.",
|
||||||
"notification.relationships_severance_event.domain_block": "En admin fra {from} har blokeret {target}, herunder {followersCount} tilhængere og {followingCount, plural, one {# konto, der} other {# konti, som}} følges.",
|
"notification.relationships_severance_event.domain_block": "En admin fra {from} har blokeret {target}, herunder {followersCount} følgere og {followingCount, plural, one {# konto, der} other {# konti, som}} som du følger.",
|
||||||
"notification.relationships_severance_event.learn_more": "Læs mere",
|
"notification.relationships_severance_event.learn_more": "Læs mere",
|
||||||
"notification.relationships_severance_event.user_domain_block": "{target} er blevet blokeret, og {followersCount} tilhængere samt {followingCount, plural, one {# konto, der} other {# konti, som}} følges, er hermed fjernet.",
|
"notification.relationships_severance_event.user_domain_block": "Du har blokeret {target}. {followersCount} af dine følgere samt {followingCount, plural, one {# konto, der} other {# konti, som}} du følger, er hermed fjernet.",
|
||||||
"notification.status": "{name} har netop postet",
|
"notification.status": "{name} har netop slået noget op",
|
||||||
"notification.update": "{name} redigerede et indlæg",
|
"notification.update": "{name} redigerede et indlæg",
|
||||||
"notification_requests.accept": "Acceptér",
|
"notification_requests.accept": "Acceptér",
|
||||||
"notification_requests.accept_multiple": "{count, plural, one {Acceptér # anmodning…} other {Acceptér # anmodninger…}}",
|
"notification_requests.accept_multiple": "{count, plural, one {Acceptér # anmodning…} other {Acceptér # anmodninger…}}",
|
||||||
"notification_requests.confirm_accept_multiple.button": "{count, plural, one {Acceptér anmodning} other {Acceptér anmodninger}}",
|
"notification_requests.confirm_accept_multiple.button": "{count, plural, one {Acceptér anmodning} other {Acceptér anmodninger}}",
|
||||||
"notification_requests.confirm_accept_multiple.message": "{count, plural, one {En notifikationsanmodning} other {# notifikationsanmodninger}} er ved at blive accepteret. Fortsæt, sikker?",
|
"notification_requests.confirm_accept_multiple.message": "{count, plural, one {En notifikationsanmodning} other {# notifikationsanmodninger}} er ved at blive accepteret. Er du sikker på, at du vil fortsætte?",
|
||||||
"notification_requests.confirm_accept_multiple.title": "Acceptér notifikationsanmodninger?",
|
"notification_requests.confirm_accept_multiple.title": "Acceptér notifikationsanmodninger?",
|
||||||
"notification_requests.confirm_dismiss_multiple.button": "{count, plural, one {Afvis anmodning} other {Afvis anmodninger}}",
|
"notification_requests.confirm_dismiss_multiple.button": "{count, plural, one {Afvis anmodning} other {Afvis anmodninger}}",
|
||||||
"notification_requests.confirm_dismiss_multiple.message": "{count, plural, one {En notifikationsanmodning} other {# notifikationsanmodninger}} er ved at blive afvist, hvorfor man ikke nemt vil kunne tilgå {count, plural, one {den} other {dem}} igen. Fortsæt, sikker?",
|
"notification_requests.confirm_dismiss_multiple.message": "{count, plural, one {En notifikationsanmodning} other {# notifikationsanmodninger}} er ved at blive afvist, hvorfor man ikke nemt vil kunne tilgå {count, plural, one {den} other {dem}} igen. Er du sikker på, at du vil fortsætte?",
|
||||||
"notification_requests.confirm_dismiss_multiple.title": "Afvis notifikationsanmodninger?",
|
"notification_requests.confirm_dismiss_multiple.title": "Afvis notifikationsanmodninger?",
|
||||||
"notification_requests.dismiss": "Afvis",
|
"notification_requests.dismiss": "Afvis",
|
||||||
"notification_requests.dismiss_multiple": "{count, plural, one {Afvis # anmodning…} other {Afvis # anmodninger…}}",
|
"notification_requests.dismiss_multiple": "{count, plural, one {Afvis # anmodning…} other {Afvis # anmodninger…}}",
|
||||||
|
@ -560,7 +560,7 @@
|
||||||
"notifications.clear": "Ryd notifikationer",
|
"notifications.clear": "Ryd notifikationer",
|
||||||
"notifications.clear_confirmation": "Er du sikker på, at du vil rydde alle dine notifikationer permanent?",
|
"notifications.clear_confirmation": "Er du sikker på, at du vil rydde alle dine notifikationer permanent?",
|
||||||
"notifications.clear_title": "Ryd notifikationer?",
|
"notifications.clear_title": "Ryd notifikationer?",
|
||||||
"notifications.column_settings.admin.report": "Nye anmeldelser:",
|
"notifications.column_settings.admin.report": "Nye rapporteringer:",
|
||||||
"notifications.column_settings.admin.sign_up": "Nye tilmeldinger:",
|
"notifications.column_settings.admin.sign_up": "Nye tilmeldinger:",
|
||||||
"notifications.column_settings.alert": "Computernotifikationer",
|
"notifications.column_settings.alert": "Computernotifikationer",
|
||||||
"notifications.column_settings.favourite": "Favoritter:",
|
"notifications.column_settings.favourite": "Favoritter:",
|
||||||
|
@ -572,7 +572,7 @@
|
||||||
"notifications.column_settings.mention": "Omtaler:",
|
"notifications.column_settings.mention": "Omtaler:",
|
||||||
"notifications.column_settings.poll": "Afstemningsresultater:",
|
"notifications.column_settings.poll": "Afstemningsresultater:",
|
||||||
"notifications.column_settings.push": "Push-notifikationer",
|
"notifications.column_settings.push": "Push-notifikationer",
|
||||||
"notifications.column_settings.reblog": "Boosts:",
|
"notifications.column_settings.reblog": "Fremhævelser:",
|
||||||
"notifications.column_settings.show": "Vis i kolonne",
|
"notifications.column_settings.show": "Vis i kolonne",
|
||||||
"notifications.column_settings.sound": "Afspil lyd",
|
"notifications.column_settings.sound": "Afspil lyd",
|
||||||
"notifications.column_settings.status": "Nye indlæg:",
|
"notifications.column_settings.status": "Nye indlæg:",
|
||||||
|
@ -580,7 +580,7 @@
|
||||||
"notifications.column_settings.unread_notifications.highlight": "Fremhæv ulæste notifikationer",
|
"notifications.column_settings.unread_notifications.highlight": "Fremhæv ulæste notifikationer",
|
||||||
"notifications.column_settings.update": "Redigeringer:",
|
"notifications.column_settings.update": "Redigeringer:",
|
||||||
"notifications.filter.all": "Alle",
|
"notifications.filter.all": "Alle",
|
||||||
"notifications.filter.boosts": "Boosts",
|
"notifications.filter.boosts": "Fremhævelser",
|
||||||
"notifications.filter.favourites": "Favoritter",
|
"notifications.filter.favourites": "Favoritter",
|
||||||
"notifications.filter.follows": "Følger",
|
"notifications.filter.follows": "Følger",
|
||||||
"notifications.filter.mentions": "Omtaler",
|
"notifications.filter.mentions": "Omtaler",
|
||||||
|
@ -589,8 +589,8 @@
|
||||||
"notifications.grant_permission": "Tildel tilladelse.",
|
"notifications.grant_permission": "Tildel tilladelse.",
|
||||||
"notifications.group": "{count} notifikationer",
|
"notifications.group": "{count} notifikationer",
|
||||||
"notifications.mark_as_read": "Markér alle notifikationer som læst",
|
"notifications.mark_as_read": "Markér alle notifikationer som læst",
|
||||||
"notifications.permission_denied": "Computernotifikationer er utilgængelige grundet tidligere afvist browsertilladelsesanmodning",
|
"notifications.permission_denied": "Computernotifikationer er utilgængelige grundet tidligere afvist netlæser-tilladelsesanmodning",
|
||||||
"notifications.permission_denied_alert": "Computernotifikationer kan ikke aktiveres, da browsertilladelse tidligere blev nægtet",
|
"notifications.permission_denied_alert": "Computernotifikationer kan ikke aktiveres, da netlæser-tilladelse tidligere blev nægtet",
|
||||||
"notifications.permission_required": "Computernotifikationer er utilgængelige, da den krævede tilladelse ikke er tildelt.",
|
"notifications.permission_required": "Computernotifikationer er utilgængelige, da den krævede tilladelse ikke er tildelt.",
|
||||||
"notifications.policy.accept": "Acceptér",
|
"notifications.policy.accept": "Acceptér",
|
||||||
"notifications.policy.accept_hint": "Vis notifikationer",
|
"notifications.policy.accept_hint": "Vis notifikationer",
|
||||||
|
@ -622,15 +622,15 @@
|
||||||
"onboarding.follows.title": "Populært på Mastodon",
|
"onboarding.follows.title": "Populært på Mastodon",
|
||||||
"onboarding.profile.discoverable": "Gør min profil synlig",
|
"onboarding.profile.discoverable": "Gør min profil synlig",
|
||||||
"onboarding.profile.discoverable_hint": "Når man vælger at være synlig på Mastodon, kan ens indlæg fremgå i søgeresultater og tendenser, og profilen kan blive foreslået til andre med tilsvarende interesse.",
|
"onboarding.profile.discoverable_hint": "Når man vælger at være synlig på Mastodon, kan ens indlæg fremgå i søgeresultater og tendenser, og profilen kan blive foreslået til andre med tilsvarende interesse.",
|
||||||
"onboarding.profile.display_name": "Visningsnavn",
|
"onboarding.profile.display_name": "Vist navn",
|
||||||
"onboarding.profile.display_name_hint": "Fulde navn eller dit sjove navn…",
|
"onboarding.profile.display_name_hint": "Dit fulde navn eller dit sjove navn…",
|
||||||
"onboarding.profile.lead": "Dette kan altid færdiggøres senere i indstillingerne, hvor endnu flere tilpasningsmuligheder forefindes.",
|
"onboarding.profile.lead": "Dette kan altid færdiggøres senere i indstillingerne, hvor endnu flere tilpasningsmuligheder forefindes.",
|
||||||
"onboarding.profile.note": "Bio",
|
"onboarding.profile.note": "Bio",
|
||||||
"onboarding.profile.note_hint": "Man kan @omtale andre personer eller #hashtags…",
|
"onboarding.profile.note_hint": "Man kan @omtale andre personer eller #etiketter…",
|
||||||
"onboarding.profile.save_and_continue": "Gem og fortsæt",
|
"onboarding.profile.save_and_continue": "Gem og fortsæt",
|
||||||
"onboarding.profile.title": "Profilopsætning",
|
"onboarding.profile.title": "Profilopsætning",
|
||||||
"onboarding.profile.upload_avatar": "Upload profilbillede",
|
"onboarding.profile.upload_avatar": "Upload profilbillede",
|
||||||
"onboarding.profile.upload_header": "Upload profiloverskrift",
|
"onboarding.profile.upload_header": "Upload profilbanner",
|
||||||
"onboarding.share.lead": "Lad folk vide, hvordan de kan finde dig på Mastodon!",
|
"onboarding.share.lead": "Lad folk vide, hvordan de kan finde dig på Mastodon!",
|
||||||
"onboarding.share.message": "Jeg er {username} på #Mastodon! Følg mig på {url}",
|
"onboarding.share.message": "Jeg er {username} på #Mastodon! Følg mig på {url}",
|
||||||
"onboarding.share.next_steps": "Mulige næste trin:",
|
"onboarding.share.next_steps": "Mulige næste trin:",
|
||||||
|
@ -664,15 +664,15 @@
|
||||||
"poll_button.add_poll": "Tilføj en afstemning",
|
"poll_button.add_poll": "Tilføj en afstemning",
|
||||||
"poll_button.remove_poll": "Fjern afstemning",
|
"poll_button.remove_poll": "Fjern afstemning",
|
||||||
"privacy.change": "Tilpas indlægsfortrolighed",
|
"privacy.change": "Tilpas indlægsfortrolighed",
|
||||||
"privacy.direct.long": "Alle nævnt i indlægget",
|
"privacy.direct.long": "Alle omtalt i indlægget",
|
||||||
"privacy.direct.short": "Bestemte personer",
|
"privacy.direct.short": "Bestemte personer",
|
||||||
"privacy.private.long": "Kun dine følgere",
|
"privacy.private.long": "Kun dine følgere",
|
||||||
"privacy.private.short": "Følgere",
|
"privacy.private.short": "Følgere",
|
||||||
"privacy.public.long": "Alle på og udenfor Mastodon",
|
"privacy.public.long": "Alle på og udenfor Mastodon",
|
||||||
"privacy.public.short": "Offentlig",
|
"privacy.public.short": "Offentlig",
|
||||||
"privacy.unlisted.additional": "Dette er præcis som offentlig adfærd, dog vises indlægget ikke i live feeds/hashtags, udforsk eller Mastodon-søgning, selv hvis valget gælder hele kontoen.",
|
"privacy.unlisted.additional": "Dette er præcis som offentlig adfærd, dog vises indlægget ikke i tidslinjer, under etiketter, udforsk eller Mastodon-søgning, selv hvis du ellers har sagt at dine opslag godt må være søgbare.",
|
||||||
"privacy.unlisted.long": "Færre algoritmiske fanfarer",
|
"privacy.unlisted.long": "Færre algoritmiske fanfarer",
|
||||||
"privacy.unlisted.short": "Tavsgøre offentligt",
|
"privacy.unlisted.short": "Stille offentligt",
|
||||||
"privacy_policy.last_updated": "Senest opdateret {date}",
|
"privacy_policy.last_updated": "Senest opdateret {date}",
|
||||||
"privacy_policy.title": "Privatlivspolitik",
|
"privacy_policy.title": "Privatlivspolitik",
|
||||||
"recommended": "Anbefalet",
|
"recommended": "Anbefalet",
|
||||||
|
@ -707,12 +707,12 @@
|
||||||
"report.comment.title": "Er der andet, som vi bør vide?",
|
"report.comment.title": "Er der andet, som vi bør vide?",
|
||||||
"report.forward": "Videresend til {target}",
|
"report.forward": "Videresend til {target}",
|
||||||
"report.forward_hint": "Kontoen er fra en anden server. Send også en anonymiseret kopi af anmeldelsen dertil?",
|
"report.forward_hint": "Kontoen er fra en anden server. Send også en anonymiseret kopi af anmeldelsen dertil?",
|
||||||
"report.mute": "Skjul (mute)",
|
"report.mute": "Skjul",
|
||||||
"report.mute_explanation": "Du vil ikke se vedkommendes indlæg. Vedkommende kan stadig se dine indlæg og følge dig. Vedkommende vil ikke kunne se, at de er blevet skjult.",
|
"report.mute_explanation": "Du vil ikke se deres indlæg. De kan stadig se dine indlæg og følge dig. De vil ikke kunne se, at de er blevet skjult.",
|
||||||
"report.next": "Næste",
|
"report.next": "Næste",
|
||||||
"report.placeholder": "Yderligere kommentarer",
|
"report.placeholder": "Yderligere kommentarer",
|
||||||
"report.reasons.dislike": "Jeg bryder mig ikke om det",
|
"report.reasons.dislike": "Jeg bryder mig ikke om det",
|
||||||
"report.reasons.dislike_description": "Det er ikke noget, man ønsker at se",
|
"report.reasons.dislike_description": "Det er ikke noget, du ønsker at se",
|
||||||
"report.reasons.legal": "Det er ulovligt",
|
"report.reasons.legal": "Det er ulovligt",
|
||||||
"report.reasons.legal_description": "Du mener, at det er i strid med lovgivningen i dit eller serverens land",
|
"report.reasons.legal_description": "Du mener, at det er i strid med lovgivningen i dit eller serverens land",
|
||||||
"report.reasons.other": "Det er noget andet",
|
"report.reasons.other": "Det er noget andet",
|
||||||
|
@ -732,7 +732,7 @@
|
||||||
"report.thanks.title": "Ønsker ikke at se dette?",
|
"report.thanks.title": "Ønsker ikke at se dette?",
|
||||||
"report.thanks.title_actionable": "Tak for anmeldelsen, der vil blive set nærmere på dette.",
|
"report.thanks.title_actionable": "Tak for anmeldelsen, der vil blive set nærmere på dette.",
|
||||||
"report.unfollow": "Følg ikke længere @{name}",
|
"report.unfollow": "Følg ikke længere @{name}",
|
||||||
"report.unfollow_explanation": "Du følger denne konto. For ikke længere at se vedkommendes indlæg i dit hjemmefeed, kan du stoppe med at følge dem.",
|
"report.unfollow_explanation": "Du følger denne konto. For ikke længere at se vedkommendes indlæg i din hjemmestrøm, kan du stoppe med at følge dem.",
|
||||||
"report_notification.attached_statuses": "{count, plural, one {{count} post} other {{count} poster}} vedhæftet",
|
"report_notification.attached_statuses": "{count, plural, one {{count} post} other {{count} poster}} vedhæftet",
|
||||||
"report_notification.categories.legal": "Juridisk",
|
"report_notification.categories.legal": "Juridisk",
|
||||||
"report_notification.categories.legal_sentence": "ikke-tilladt indhold",
|
"report_notification.categories.legal_sentence": "ikke-tilladt indhold",
|
||||||
|
@ -747,7 +747,7 @@
|
||||||
"search.placeholder": "Søg",
|
"search.placeholder": "Søg",
|
||||||
"search.quick_action.account_search": "Profiler matchende {x}",
|
"search.quick_action.account_search": "Profiler matchende {x}",
|
||||||
"search.quick_action.go_to_account": "Gå til profilen {x}",
|
"search.quick_action.go_to_account": "Gå til profilen {x}",
|
||||||
"search.quick_action.go_to_hashtag": "Gå til hashtagget {x}",
|
"search.quick_action.go_to_hashtag": "Gå til etiketten {x}",
|
||||||
"search.quick_action.open_url": "Åbn URL i Mastodon",
|
"search.quick_action.open_url": "Åbn URL i Mastodon",
|
||||||
"search.quick_action.status_search": "Indlæg matchende {x}",
|
"search.quick_action.status_search": "Indlæg matchende {x}",
|
||||||
"search.search_or_paste": "Søg efter eller angiv URL",
|
"search.search_or_paste": "Søg efter eller angiv URL",
|
||||||
|
@ -761,7 +761,7 @@
|
||||||
"search_popout.user": "bruger",
|
"search_popout.user": "bruger",
|
||||||
"search_results.accounts": "Profiler",
|
"search_results.accounts": "Profiler",
|
||||||
"search_results.all": "Alle",
|
"search_results.all": "Alle",
|
||||||
"search_results.hashtags": "Hashtags",
|
"search_results.hashtags": "Etiketter",
|
||||||
"search_results.nothing_found": "Ingen resultater for disse søgeord",
|
"search_results.nothing_found": "Ingen resultater for disse søgeord",
|
||||||
"search_results.see_all": "Vis alle",
|
"search_results.see_all": "Vis alle",
|
||||||
"search_results.statuses": "Indlæg",
|
"search_results.statuses": "Indlæg",
|
||||||
|
@ -769,10 +769,10 @@
|
||||||
"server_banner.about_active_users": "Folk, som brugte denne server de seneste 30 dage (månedlige aktive brugere)",
|
"server_banner.about_active_users": "Folk, som brugte denne server de seneste 30 dage (månedlige aktive brugere)",
|
||||||
"server_banner.active_users": "aktive brugere",
|
"server_banner.active_users": "aktive brugere",
|
||||||
"server_banner.administered_by": "Håndteres af:",
|
"server_banner.administered_by": "Håndteres af:",
|
||||||
"server_banner.is_one_of_many": "{domain} er en af de mange uafhængige Mastodon-servere, man kan bruge for at deltage i fediverset.",
|
"server_banner.is_one_of_many": "{domain} er en af de mange uafhængige Mastodon-servere, man kan bruge for at deltage i fødiverset.",
|
||||||
"server_banner.server_stats": "Serverstatstik:",
|
"server_banner.server_stats": "Serverstatstik:",
|
||||||
"sign_in_banner.create_account": "Opret konto",
|
"sign_in_banner.create_account": "Opret konto",
|
||||||
"sign_in_banner.follow_anyone": "Følg alle på tværs af fediverset og se alt i kronologisk rækkefølge. Ingen algoritmer, annoncer eller clickbait i syne.",
|
"sign_in_banner.follow_anyone": "Følg alle på tværs af fødiverset og se alt i kronologisk rækkefølge. Ingen algoritmer, annoncer eller clickbait i syne.",
|
||||||
"sign_in_banner.mastodon_is": "Mastodon er den bedste måde at holde sig ajour med, hvad der sker.",
|
"sign_in_banner.mastodon_is": "Mastodon er den bedste måde at holde sig ajour med, hvad der sker.",
|
||||||
"sign_in_banner.sign_in": "Log ind",
|
"sign_in_banner.sign_in": "Log ind",
|
||||||
"sign_in_banner.sso_redirect": "Log ind eller Tilmeld",
|
"sign_in_banner.sso_redirect": "Log ind eller Tilmeld",
|
||||||
|
@ -781,7 +781,7 @@
|
||||||
"status.admin_status": "Åbn dette indlæg i modereringsbrugerfladen",
|
"status.admin_status": "Åbn dette indlæg i modereringsbrugerfladen",
|
||||||
"status.block": "Blokér @{name}",
|
"status.block": "Blokér @{name}",
|
||||||
"status.bookmark": "Bogmærk",
|
"status.bookmark": "Bogmærk",
|
||||||
"status.cancel_reblog_private": "Fjern boost",
|
"status.cancel_reblog_private": "Fjern fremhævelse",
|
||||||
"status.cannot_reblog": "Dette indlæg kan ikke fremhæves",
|
"status.cannot_reblog": "Dette indlæg kan ikke fremhæves",
|
||||||
"status.continued_thread": "Fortsat tråd",
|
"status.continued_thread": "Fortsat tråd",
|
||||||
"status.copy": "Kopiér link til indlæg",
|
"status.copy": "Kopiér link til indlæg",
|
||||||
|
@ -804,23 +804,23 @@
|
||||||
"status.media_hidden": "Medie skjult",
|
"status.media_hidden": "Medie skjult",
|
||||||
"status.mention": "Nævn @{name}",
|
"status.mention": "Nævn @{name}",
|
||||||
"status.more": "Mere",
|
"status.more": "Mere",
|
||||||
"status.mute": "Skjul @{name} (mute)",
|
"status.mute": "Skjul @{name}",
|
||||||
"status.mute_conversation": "Skjul samtale (mute)",
|
"status.mute_conversation": "Skjul samtale",
|
||||||
"status.open": "Udvid dette indlæg",
|
"status.open": "Udvid dette indlæg",
|
||||||
"status.pin": "Fastgør til profil",
|
"status.pin": "Fastgør til profil",
|
||||||
"status.pinned": "Fastgjort indlæg",
|
"status.pinned": "Fastgjort indlæg",
|
||||||
"status.read_more": "Læs mere",
|
"status.read_more": "Læs mere",
|
||||||
"status.reblog": "Fremhæv",
|
"status.reblog": "Fremhæv",
|
||||||
"status.reblog_private": "Boost med oprindelig synlighed",
|
"status.reblog_private": "Fremhæv med oprindelig synlighed",
|
||||||
"status.reblogged_by": "{name} fremhævede",
|
"status.reblogged_by": "{name} fremhævede",
|
||||||
"status.reblogs": "{count, plural, one {# boost} other {# boosts}}",
|
"status.reblogs": "{count, plural, one {# fremhævelse} other {# fremhævelser}}",
|
||||||
"status.reblogs.empty": "Ingen har endnu fremhævet dette indlæg. Når nogen gør, vil det fremgå hér.",
|
"status.reblogs.empty": "Ingen har endnu fremhævet dette indlæg. Når nogen gør, vil det fremgå hér.",
|
||||||
"status.redraft": "Slet og omformulér",
|
"status.redraft": "Slet og omformulér",
|
||||||
"status.remove_bookmark": "Fjern bogmærke",
|
"status.remove_bookmark": "Fjern bogmærke",
|
||||||
"status.replied_in_thread": "Svaret i tråd",
|
"status.replied_in_thread": "Svaret i tråd",
|
||||||
"status.replied_to": "Besvarede {name}",
|
"status.replied_to": "Svarede {name}",
|
||||||
"status.reply": "Besvar",
|
"status.reply": "Besvar",
|
||||||
"status.replyAll": "Besvar alle",
|
"status.replyAll": "Svar alle",
|
||||||
"status.report": "Anmeld @{name}",
|
"status.report": "Anmeld @{name}",
|
||||||
"status.sensitive_warning": "Følsomt indhold",
|
"status.sensitive_warning": "Følsomt indhold",
|
||||||
"status.share": "Del",
|
"status.share": "Del",
|
||||||
|
@ -882,8 +882,8 @@
|
||||||
"video.expand": "Udvid video",
|
"video.expand": "Udvid video",
|
||||||
"video.fullscreen": "Fuldskærm",
|
"video.fullscreen": "Fuldskærm",
|
||||||
"video.hide": "Skjul video",
|
"video.hide": "Skjul video",
|
||||||
"video.mute": "Sluk lyden",
|
"video.mute": "Sluk for lyden",
|
||||||
"video.pause": "Pausér",
|
"video.pause": "Sæt på pause",
|
||||||
"video.play": "Afspil",
|
"video.play": "Afspil",
|
||||||
"video.unmute": "Tænd for lyden"
|
"video.unmute": "Tænd for lyden"
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
"about.disclaimer": "Mastodon ist eine freie, quelloffene Software und eine Marke der Mastodon gGmbH.",
|
"about.disclaimer": "Mastodon ist eine freie, quelloffene Software und eine Marke der Mastodon gGmbH.",
|
||||||
"about.domain_blocks.no_reason_available": "Grund unbekannt",
|
"about.domain_blocks.no_reason_available": "Grund unbekannt",
|
||||||
"about.domain_blocks.preamble": "Mastodon erlaubt es dir grundsätzlich, alle Inhalte von allen Nutzer*innen auf allen Servern im Fediverse zu sehen und mit ihnen zu interagieren. Für diesen Server gibt es aber ein paar Ausnahmen.",
|
"about.domain_blocks.preamble": "Mastodon erlaubt es dir grundsätzlich, alle Inhalte von allen Nutzer*innen auf allen Servern im Fediverse zu sehen und mit ihnen zu interagieren. Für diesen Server gibt es aber ein paar Ausnahmen.",
|
||||||
"about.domain_blocks.silenced.explanation": "Alle Inhalte und Profile dieses Servers werden zunächst nicht angezeigt. Du kannst die Profile und Inhalte aber dennoch sehen, wenn du explizit nach diesen suchst oder diesen folgst.",
|
"about.domain_blocks.silenced.explanation": "Standardmäßig werden von diesem Server keine Inhalte oder Profile angezeigt. Du kannst die Profile und Inhalte aber dennoch sehen, wenn du explizit nach diesen suchst oder diesen folgst.",
|
||||||
"about.domain_blocks.silenced.title": "Stummgeschaltet",
|
"about.domain_blocks.silenced.title": "Stummgeschaltet",
|
||||||
"about.domain_blocks.suspended.explanation": "Es werden keine Daten von diesem Server verarbeitet, gespeichert oder ausgetauscht, sodass eine Interaktion oder Kommunikation mit Nutzer*innen dieses Servers nicht möglich ist.",
|
"about.domain_blocks.suspended.explanation": "Es werden keine Daten von diesem Server verarbeitet, gespeichert oder ausgetauscht, sodass eine Interaktion oder Kommunikation mit Nutzer*innen dieses Servers nicht möglich ist.",
|
||||||
"about.domain_blocks.suspended.title": "Gesperrt",
|
"about.domain_blocks.suspended.title": "Gesperrt",
|
||||||
|
@ -42,8 +42,8 @@
|
||||||
"account.hide_reblogs": "Geteilte Beiträge von @{name} ausblenden",
|
"account.hide_reblogs": "Geteilte Beiträge von @{name} ausblenden",
|
||||||
"account.in_memoriam": "Zum Andenken.",
|
"account.in_memoriam": "Zum Andenken.",
|
||||||
"account.joined_short": "Mitglied seit",
|
"account.joined_short": "Mitglied seit",
|
||||||
"account.languages": "Ausgewählte Sprachen ändern",
|
"account.languages": "Sprache ändern.",
|
||||||
"account.link_verified_on": "Das Profil mit dieser E-Mail-Adresse wurde bereits am {date} bestätigt",
|
"account.link_verified_on": "Das Profil mit dieser E-Mail-Adresse wurde bereits am {date} verifiziert",
|
||||||
"account.locked_info": "Die Privatsphäre dieses Kontos wurde auf „geschützt“ gesetzt. Die Person bestimmt manuell, wer ihrem Profil folgen darf.",
|
"account.locked_info": "Die Privatsphäre dieses Kontos wurde auf „geschützt“ gesetzt. Die Person bestimmt manuell, wer ihrem Profil folgen darf.",
|
||||||
"account.media": "Medien",
|
"account.media": "Medien",
|
||||||
"account.mention": "@{name} erwähnen",
|
"account.mention": "@{name} erwähnen",
|
||||||
|
@ -63,7 +63,7 @@
|
||||||
"account.share": "Profil von @{name} teilen",
|
"account.share": "Profil von @{name} teilen",
|
||||||
"account.show_reblogs": "Geteilte Beiträge von @{name} anzeigen",
|
"account.show_reblogs": "Geteilte Beiträge von @{name} anzeigen",
|
||||||
"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": "Blockierung von @{name} aufheben",
|
"account.unblock": "{name} nicht mehr blockieren",
|
||||||
"account.unblock_domain": "Blockierung von {domain} aufheben",
|
"account.unblock_domain": "Blockierung von {domain} aufheben",
|
||||||
"account.unblock_short": "Blockierung aufheben",
|
"account.unblock_short": "Blockierung aufheben",
|
||||||
"account.unendorse": "Im Profil nicht mehr empfehlen",
|
"account.unendorse": "Im Profil nicht mehr empfehlen",
|
||||||
|
@ -71,13 +71,13 @@
|
||||||
"account.unmute": "Stummschaltung von @{name} aufheben",
|
"account.unmute": "Stummschaltung von @{name} aufheben",
|
||||||
"account.unmute_notifications_short": "Stummschaltung der Benachrichtigungen aufheben",
|
"account.unmute_notifications_short": "Stummschaltung der Benachrichtigungen aufheben",
|
||||||
"account.unmute_short": "Stummschaltung aufheben",
|
"account.unmute_short": "Stummschaltung aufheben",
|
||||||
"account_note.placeholder": "Notiz durch Klicken hinzufügen",
|
"account_note.placeholder": "Klicken, um Notiz hinzuzufügen",
|
||||||
"admin.dashboard.daily_retention": "Verweildauer der Benutzer*innen pro Tag nach der Registrierung",
|
"admin.dashboard.daily_retention": "Verweildauer der Nutzer*innen pro Tag nach der Registrierung",
|
||||||
"admin.dashboard.monthly_retention": "Verweildauer der Benutzer*innen pro Monat nach der Registrierung",
|
"admin.dashboard.monthly_retention": "Verweildauer der Nutzer*innen pro Monat nach der Registrierung",
|
||||||
"admin.dashboard.retention.average": "Durchschnitt",
|
"admin.dashboard.retention.average": "Durchschnitt",
|
||||||
"admin.dashboard.retention.cohort": "Monat der Registrierung",
|
"admin.dashboard.retention.cohort": "Monat der Registrierung",
|
||||||
"admin.dashboard.retention.cohort_size": "Neue Konten",
|
"admin.dashboard.retention.cohort_size": "Neue Konten",
|
||||||
"admin.impact_report.instance_accounts": "Kontenprofile, die dadurch gelöscht würden",
|
"admin.impact_report.instance_accounts": "Profilkonten, die dadurch gelöscht würden",
|
||||||
"admin.impact_report.instance_followers": "Follower, die unsere Nutzer*innen verlieren würden",
|
"admin.impact_report.instance_followers": "Follower, die unsere Nutzer*innen verlieren würden",
|
||||||
"admin.impact_report.instance_follows": "Follower, die deren Nutzer*innen verlieren würden",
|
"admin.impact_report.instance_follows": "Follower, die deren Nutzer*innen verlieren würden",
|
||||||
"admin.impact_report.title": "Zusammenfassung der Auswirkung",
|
"admin.impact_report.title": "Zusammenfassung der Auswirkung",
|
||||||
|
@ -154,7 +154,7 @@
|
||||||
"compose_form.hashtag_warning": "Dieser Beitrag wird unter keinem Hashtag sichtbar sein, weil er nicht öffentlich ist. Nur öffentliche Beiträge können nach Hashtags durchsucht werden.",
|
"compose_form.hashtag_warning": "Dieser Beitrag wird unter keinem Hashtag sichtbar sein, weil er nicht öffentlich ist. Nur öffentliche Beiträge können nach Hashtags durchsucht werden.",
|
||||||
"compose_form.lock_disclaimer": "Dein Profil ist nicht {locked}. Andere können dir folgen und deine Beiträge sehen, die nur für Follower bestimmt sind.",
|
"compose_form.lock_disclaimer": "Dein Profil ist nicht {locked}. Andere können dir folgen und deine Beiträge sehen, die nur für Follower bestimmt sind.",
|
||||||
"compose_form.lock_disclaimer.lock": "geschützt",
|
"compose_form.lock_disclaimer.lock": "geschützt",
|
||||||
"compose_form.placeholder": "Was gibt’s Neues?",
|
"compose_form.placeholder": "Was gibts Neues?",
|
||||||
"compose_form.poll.duration": "Umfragedauer",
|
"compose_form.poll.duration": "Umfragedauer",
|
||||||
"compose_form.poll.multiple": "Mehrfachauswahl",
|
"compose_form.poll.multiple": "Mehrfachauswahl",
|
||||||
"compose_form.poll.option_placeholder": "{number}. Auswahl",
|
"compose_form.poll.option_placeholder": "{number}. Auswahl",
|
||||||
|
@ -197,7 +197,7 @@
|
||||||
"confirmations.unfollow.title": "Profil entfolgen?",
|
"confirmations.unfollow.title": "Profil entfolgen?",
|
||||||
"content_warning.hide": "Beitrag ausblenden",
|
"content_warning.hide": "Beitrag ausblenden",
|
||||||
"content_warning.show": "Trotzdem anzeigen",
|
"content_warning.show": "Trotzdem anzeigen",
|
||||||
"content_warning.show_more": "Mehr anzeigen",
|
"content_warning.show_more": "Beitrag anzeigen",
|
||||||
"conversation.delete": "Unterhaltung löschen",
|
"conversation.delete": "Unterhaltung löschen",
|
||||||
"conversation.mark_as_read": "Als gelesen markieren",
|
"conversation.mark_as_read": "Als gelesen markieren",
|
||||||
"conversation.open": "Unterhaltung anzeigen",
|
"conversation.open": "Unterhaltung anzeigen",
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"about.blocks": "Συντονισμένοι διακομιστές",
|
"about.blocks": "Συντονιζόμενοι διακομιστές",
|
||||||
"about.contact": "Επικοινωνία:",
|
"about.contact": "Επικοινωνία:",
|
||||||
"about.disclaimer": "Το Mastodon είναι ελεύθερο λογισμικό ανοιχτού κώδικα και εμπορικό σήμα της Mastodon gGmbH.",
|
"about.disclaimer": "Το Mastodon είναι ελεύθερο λογισμικό ανοιχτού κώδικα και εμπορικό σήμα της Mastodon gGmbH.",
|
||||||
"about.domain_blocks.no_reason_available": "Αιτιολογία μη διαθέσιμη",
|
"about.domain_blocks.no_reason_available": "Αιτιολογία μη διαθέσιμη",
|
||||||
|
@ -843,7 +843,7 @@
|
||||||
"time_remaining.minutes": "απομένουν {number, plural, one {# λεπτό} other {# λεπτά}}",
|
"time_remaining.minutes": "απομένουν {number, plural, one {# λεπτό} other {# λεπτά}}",
|
||||||
"time_remaining.moments": "Στιγμές που απομένουν",
|
"time_remaining.moments": "Στιγμές που απομένουν",
|
||||||
"time_remaining.seconds": "απομένουν {number, plural, one {# δευτερόλεπτο} other {# δευτερόλεπτα}}",
|
"time_remaining.seconds": "απομένουν {number, plural, one {# δευτερόλεπτο} other {# δευτερόλεπτα}}",
|
||||||
"trends.counter_by_accounts": "{count, plural, one {{counter} άτομο} other {{counter} άτομα} }{days, plural, one { την τελευταία ημέρα} other { τις τελευταίες {days} ημέρες}}",
|
"trends.counter_by_accounts": "{count, plural, one {{counter} άτομο} other {{counter} άτομα}} {days, plural, one {την τελευταία ημέρα} other {τις τελευταίες {days} ημέρες}}",
|
||||||
"trends.trending_now": "Δημοφιλή τώρα",
|
"trends.trending_now": "Δημοφιλή τώρα",
|
||||||
"ui.beforeunload": "Το προσχέδιό σου θα χαθεί αν φύγεις από το Mastodon.",
|
"ui.beforeunload": "Το προσχέδιό σου θα χαθεί αν φύγεις από το Mastodon.",
|
||||||
"units.short.billion": "{count}Δις",
|
"units.short.billion": "{count}Δις",
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"about.blocks": "Administritaj serviloj",
|
"about.blocks": "Reguligitaj serviloj",
|
||||||
"about.contact": "Kontakto:",
|
"about.contact": "Kontakto:",
|
||||||
"about.disclaimer": "Mastodon estas libera, malfermitkoda programo kaj varmarko de la firmao Mastodon gGmbH.",
|
"about.disclaimer": "Mastodon estas libera, malfermitkoda programo kaj varmarko de la firmao Mastodon gGmbH.",
|
||||||
"about.domain_blocks.no_reason_available": "Kialo ne disponeblas",
|
"about.domain_blocks.no_reason_available": "Kialo ne disponeblas",
|
||||||
|
@ -10,7 +10,7 @@
|
||||||
"about.domain_blocks.suspended.title": "Suspendita",
|
"about.domain_blocks.suspended.title": "Suspendita",
|
||||||
"about.not_available": "Ĉi tiu informo ne estas disponebla ĉe ĉi tiu servilo.",
|
"about.not_available": "Ĉi tiu informo ne estas disponebla ĉe ĉi tiu servilo.",
|
||||||
"about.powered_by": "Malcentrigita socia retejo pere de {mastodon}",
|
"about.powered_by": "Malcentrigita socia retejo pere de {mastodon}",
|
||||||
"about.rules": "Regularo de la servilo",
|
"about.rules": "Reguloj de la servilo",
|
||||||
"account.account_note_header": "Personaj notoj",
|
"account.account_note_header": "Personaj notoj",
|
||||||
"account.add_or_remove_from_list": "Aldoni al aŭ forigi el listoj",
|
"account.add_or_remove_from_list": "Aldoni al aŭ forigi el listoj",
|
||||||
"account.badges.bot": "Aŭtomata",
|
"account.badges.bot": "Aŭtomata",
|
||||||
|
@ -26,7 +26,7 @@
|
||||||
"account.domain_blocked": "Domajno blokita",
|
"account.domain_blocked": "Domajno blokita",
|
||||||
"account.edit_profile": "Redakti la profilon",
|
"account.edit_profile": "Redakti la profilon",
|
||||||
"account.enable_notifications": "Sciigu min kiam @{name} afiŝos",
|
"account.enable_notifications": "Sciigu min kiam @{name} afiŝos",
|
||||||
"account.endorse": "Rekomendi ĉe via profilo",
|
"account.endorse": "Prezenti ĉe via profilo",
|
||||||
"account.featured_tags.last_status_at": "Lasta afîŝo je {date}",
|
"account.featured_tags.last_status_at": "Lasta afîŝo je {date}",
|
||||||
"account.featured_tags.last_status_never": "Neniu afiŝo",
|
"account.featured_tags.last_status_never": "Neniu afiŝo",
|
||||||
"account.featured_tags.title": "Rekomendataj kradvortoj de {name}",
|
"account.featured_tags.title": "Rekomendataj kradvortoj de {name}",
|
||||||
|
@ -45,7 +45,7 @@
|
||||||
"account.languages": "Ŝanĝi la abonitajn lingvojn",
|
"account.languages": "Ŝanĝi la abonitajn lingvojn",
|
||||||
"account.link_verified_on": "Propreco de tiu ligilo estis konfirmita je {date}",
|
"account.link_verified_on": "Propreco de tiu ligilo estis konfirmita je {date}",
|
||||||
"account.locked_info": "Tiu konto estas privatigita. La posedanto mane akceptas tiun, kiu povas sekvi rin.",
|
"account.locked_info": "Tiu konto estas privatigita. La posedanto mane akceptas tiun, kiu povas sekvi rin.",
|
||||||
"account.media": "Plurmedio",
|
"account.media": "Aŭdovidaĵoj",
|
||||||
"account.mention": "Mencii @{name}",
|
"account.mention": "Mencii @{name}",
|
||||||
"account.moved_to": "{name} indikis, ke ria nova konto estas nun:",
|
"account.moved_to": "{name} indikis, ke ria nova konto estas nun:",
|
||||||
"account.mute": "Silentigi @{name}",
|
"account.mute": "Silentigi @{name}",
|
||||||
|
@ -142,7 +142,7 @@
|
||||||
"column_header.unpin": "Malfiksi",
|
"column_header.unpin": "Malfiksi",
|
||||||
"column_subheading.settings": "Agordoj",
|
"column_subheading.settings": "Agordoj",
|
||||||
"community.column_settings.local_only": "Nur loka",
|
"community.column_settings.local_only": "Nur loka",
|
||||||
"community.column_settings.media_only": "Nur plurmedio",
|
"community.column_settings.media_only": "Nur vidaŭdaĵoj",
|
||||||
"community.column_settings.remote_only": "Nur fora",
|
"community.column_settings.remote_only": "Nur fora",
|
||||||
"compose.language.change": "Ŝanĝi lingvon",
|
"compose.language.change": "Ŝanĝi lingvon",
|
||||||
"compose.language.search": "Serĉi lingvojn...",
|
"compose.language.search": "Serĉi lingvojn...",
|
||||||
|
@ -178,7 +178,7 @@
|
||||||
"confirmations.delete_list.message": "Ĉu vi certas, ke vi volas porĉiame forigi ĉi tiun liston?",
|
"confirmations.delete_list.message": "Ĉu vi certas, ke vi volas porĉiame forigi ĉi tiun liston?",
|
||||||
"confirmations.delete_list.title": "Ĉu forigi liston?",
|
"confirmations.delete_list.title": "Ĉu forigi liston?",
|
||||||
"confirmations.discard_edit_media.confirm": "Forĵeti",
|
"confirmations.discard_edit_media.confirm": "Forĵeti",
|
||||||
"confirmations.discard_edit_media.message": "Vi havas nekonservitajn ŝanĝojn de la priskribo aŭ la antaŭmontro de la plurmedio, ĉu vi forĵetu ilin malgraŭe?",
|
"confirmations.discard_edit_media.message": "Vi havas nekonservitajn ŝanĝojn de la priskribo aŭ la antaŭvidigo de la vidaŭdaĵo, ĉu vi forĵetu ilin malgraŭe?",
|
||||||
"confirmations.edit.confirm": "Redakti",
|
"confirmations.edit.confirm": "Redakti",
|
||||||
"confirmations.edit.message": "Redakti nun anstataŭigos la skribatan afiŝon. Ĉu vi certas, ke vi volas daŭrigi?",
|
"confirmations.edit.message": "Redakti nun anstataŭigos la skribatan afiŝon. Ĉu vi certas, ke vi volas daŭrigi?",
|
||||||
"confirmations.edit.title": "Ĉu superskribi afiŝon?",
|
"confirmations.edit.title": "Ĉu superskribi afiŝon?",
|
||||||
|
@ -421,16 +421,16 @@
|
||||||
"keyboard_shortcuts.muted": "Malfermu la liston de silentigitaj uzantoj",
|
"keyboard_shortcuts.muted": "Malfermu la liston de silentigitaj uzantoj",
|
||||||
"keyboard_shortcuts.my_profile": "Malfermu vian profilon",
|
"keyboard_shortcuts.my_profile": "Malfermu vian profilon",
|
||||||
"keyboard_shortcuts.notifications": "Malfermu la sciigajn kolumnon",
|
"keyboard_shortcuts.notifications": "Malfermu la sciigajn kolumnon",
|
||||||
"keyboard_shortcuts.open_media": "Malfermu plurmedion",
|
"keyboard_shortcuts.open_media": "Malfermi vidaŭdaĵon",
|
||||||
"keyboard_shortcuts.pinned": "Malfermu alpinglitajn afiŝojn-liston",
|
"keyboard_shortcuts.pinned": "Malfermu alpinglitajn afiŝojn-liston",
|
||||||
"keyboard_shortcuts.profile": "Malfermu la profilon de aŭtoro",
|
"keyboard_shortcuts.profile": "Malfermu la profilon de aŭtoroprofilo",
|
||||||
"keyboard_shortcuts.reply": "Respondu al afiŝo",
|
"keyboard_shortcuts.reply": "Respondu al afiŝo",
|
||||||
"keyboard_shortcuts.requests": "Malfermi la liston de petoj por sekvado",
|
"keyboard_shortcuts.requests": "Malfermi la liston de petoj por sekvado",
|
||||||
"keyboard_shortcuts.search": "Enfokusigi la serĉbreton",
|
"keyboard_shortcuts.search": "Enfokusigi la serĉbreton",
|
||||||
"keyboard_shortcuts.spoilers": "Montri/kaŝi CW-kampon",
|
"keyboard_shortcuts.spoilers": "Montri/kaŝi CW-kampon",
|
||||||
"keyboard_shortcuts.start": "Malfermu \"por komenci\" kolumnon",
|
"keyboard_shortcuts.start": "Malfermu \"por komenci\" kolumnon",
|
||||||
"keyboard_shortcuts.toggle_hidden": "Montri/kaŝi tekston malantaŭ CW",
|
"keyboard_shortcuts.toggle_hidden": "Montri/kaŝi tekston malantaŭ CW",
|
||||||
"keyboard_shortcuts.toggle_sensitivity": "Montri/kaŝi plurmedion",
|
"keyboard_shortcuts.toggle_sensitivity": "Montri/kaŝi vidaŭdaĵojn",
|
||||||
"keyboard_shortcuts.toot": "Komencu novan afiŝon",
|
"keyboard_shortcuts.toot": "Komencu novan afiŝon",
|
||||||
"keyboard_shortcuts.unfocus": "Senfokusigi verki tekstareon/serĉon",
|
"keyboard_shortcuts.unfocus": "Senfokusigi verki tekstareon/serĉon",
|
||||||
"keyboard_shortcuts.up": "Movu supren en la listo",
|
"keyboard_shortcuts.up": "Movu supren en la listo",
|
||||||
|
@ -506,7 +506,7 @@
|
||||||
"notification.admin.report_statuses_other": "{name} raportis {target}",
|
"notification.admin.report_statuses_other": "{name} raportis {target}",
|
||||||
"notification.admin.sign_up": "{name} kreis konton",
|
"notification.admin.sign_up": "{name} kreis konton",
|
||||||
"notification.admin.sign_up.name_and_others": "{name} kaj {count, plural, one {# alia} other {# aliaj}} kreis konton",
|
"notification.admin.sign_up.name_and_others": "{name} kaj {count, plural, one {# alia} other {# aliaj}} kreis konton",
|
||||||
"notification.favourite": "{name} stelumis vian afiŝon",
|
"notification.favourite": "{name} ŝatis vian afiŝon",
|
||||||
"notification.favourite.name_and_others_with_link": "{name} kaj <a>{count, plural, one {# alia} other {# aliaj}}</a> ŝatis vian afiŝon",
|
"notification.favourite.name_and_others_with_link": "{name} kaj <a>{count, plural, one {# alia} other {# aliaj}}</a> ŝatis vian afiŝon",
|
||||||
"notification.follow": "{name} eksekvis vin",
|
"notification.follow": "{name} eksekvis vin",
|
||||||
"notification.follow.name_and_others": "{name} kaj <a>{count, plural, one {# alia} other {# aliaj}}</a> sekvis vin",
|
"notification.follow.name_and_others": "{name} kaj <a>{count, plural, one {# alia} other {# aliaj}}</a> sekvis vin",
|
||||||
|
@ -519,11 +519,11 @@
|
||||||
"notification.mention": "Mencii",
|
"notification.mention": "Mencii",
|
||||||
"notification.mentioned_you": "{name} menciis vin",
|
"notification.mentioned_you": "{name} menciis vin",
|
||||||
"notification.moderation-warning.learn_more": "Lerni pli",
|
"notification.moderation-warning.learn_more": "Lerni pli",
|
||||||
"notification.moderation_warning": "Vi ricevis moderigan averton",
|
"notification.moderation_warning": "Vi ricevis reguligan averton",
|
||||||
"notification.moderation_warning.action_delete_statuses": "Kelkaj el viaj afiŝoj estis forigitaj.",
|
"notification.moderation_warning.action_delete_statuses": "Kelkaj el viaj afiŝoj estis forigitaj.",
|
||||||
"notification.moderation_warning.action_disable": "Via konto estas malŝaltita.",
|
"notification.moderation_warning.action_disable": "Via konto estas malŝaltita.",
|
||||||
"notification.moderation_warning.action_mark_statuses_as_sensitive": "Kelkaj el viaj afiŝoj estis markitaj kiel sentemaj.",
|
"notification.moderation_warning.action_mark_statuses_as_sensitive": "Kelkaj el viaj afiŝoj estis markitaj kiel sentemaj.",
|
||||||
"notification.moderation_warning.action_none": "Via konto ricevis moderigan averton.",
|
"notification.moderation_warning.action_none": "Via konto ricevis reguligan averton.",
|
||||||
"notification.moderation_warning.action_sensitive": "Viaj afiŝoj estos markitaj kiel sentemaj ekde nun.",
|
"notification.moderation_warning.action_sensitive": "Viaj afiŝoj estos markitaj kiel sentemaj ekde nun.",
|
||||||
"notification.moderation_warning.action_silence": "Via konto estis limigita.",
|
"notification.moderation_warning.action_silence": "Via konto estis limigita.",
|
||||||
"notification.moderation_warning.action_suspend": "Via konto estas malakceptita.",
|
"notification.moderation_warning.action_suspend": "Via konto estas malakceptita.",
|
||||||
|
@ -550,8 +550,8 @@
|
||||||
"notification_requests.dismiss_multiple": "{count, plural, one {Malakcepti # peton…} other {# Malakcepti # petojn…}}",
|
"notification_requests.dismiss_multiple": "{count, plural, one {Malakcepti # peton…} other {# Malakcepti # petojn…}}",
|
||||||
"notification_requests.edit_selection": "Redakti",
|
"notification_requests.edit_selection": "Redakti",
|
||||||
"notification_requests.exit_selection": "Farita",
|
"notification_requests.exit_selection": "Farita",
|
||||||
"notification_requests.explainer_for_limited_account": "Sciigoj de ĉi tiu konto estis filtritaj ĉar la konto estis limigita de moderanto.",
|
"notification_requests.explainer_for_limited_account": "Sciigoj de ĉi tiu konto estis filtritaj ĉar la konto estis limigita de reguligisto.",
|
||||||
"notification_requests.explainer_for_limited_remote_account": "Sciigoj de ĉi tiu konto estis filtritaj ĉar la konto aŭ ĝia servilo estis limigitaj de moderanto.",
|
"notification_requests.explainer_for_limited_remote_account": "Sciigoj de ĉi tiu konto estis filtritaj ĉar la konto aŭ ĝia servilo estis limigitaj de reguligisto.",
|
||||||
"notification_requests.maximize": "Maksimumigi",
|
"notification_requests.maximize": "Maksimumigi",
|
||||||
"notification_requests.minimize_banner": "Minimumigi filtritajn sciigojn-rubandon",
|
"notification_requests.minimize_banner": "Minimumigi filtritajn sciigojn-rubandon",
|
||||||
"notification_requests.notifications_from": "Sciigoj de {name}",
|
"notification_requests.notifications_from": "Sciigoj de {name}",
|
||||||
|
@ -598,8 +598,8 @@
|
||||||
"notifications.policy.drop_hint": "Sendi al la malpleno, por neniam esti vidita denove",
|
"notifications.policy.drop_hint": "Sendi al la malpleno, por neniam esti vidita denove",
|
||||||
"notifications.policy.filter": "Filtri",
|
"notifications.policy.filter": "Filtri",
|
||||||
"notifications.policy.filter_hint": "Sendi al filtritaj sciigoj-enirkesto",
|
"notifications.policy.filter_hint": "Sendi al filtritaj sciigoj-enirkesto",
|
||||||
"notifications.policy.filter_limited_accounts_hint": "Limigita de servilaj moderigantoj",
|
"notifications.policy.filter_limited_accounts_hint": "Limigita de servilaj reguligistoj",
|
||||||
"notifications.policy.filter_limited_accounts_title": "Moderigitaj kontoj",
|
"notifications.policy.filter_limited_accounts_title": "Reguligitaj kontoj",
|
||||||
"notifications.policy.filter_new_accounts.hint": "Kreite en la {days, plural, one {lasta tago} other {# lastaj tagoj}}",
|
"notifications.policy.filter_new_accounts.hint": "Kreite en la {days, plural, one {lasta tago} other {# lastaj tagoj}}",
|
||||||
"notifications.policy.filter_new_accounts_title": "Novaj kontoj",
|
"notifications.policy.filter_new_accounts_title": "Novaj kontoj",
|
||||||
"notifications.policy.filter_not_followers_hint": "Inkluzive de homoj, kiuj sekvis vin malpli ol {days, plural, one {unu tago} other {# tagoj}}",
|
"notifications.policy.filter_not_followers_hint": "Inkluzive de homoj, kiuj sekvis vin malpli ol {days, plural, one {unu tago} other {# tagoj}}",
|
||||||
|
@ -749,7 +749,7 @@
|
||||||
"search.quick_action.go_to_account": "Iri al profilo {x}",
|
"search.quick_action.go_to_account": "Iri al profilo {x}",
|
||||||
"search.quick_action.go_to_hashtag": "Iri al kradvorto {x}",
|
"search.quick_action.go_to_hashtag": "Iri al kradvorto {x}",
|
||||||
"search.quick_action.open_url": "Malfermi URL en Mastodono",
|
"search.quick_action.open_url": "Malfermi URL en Mastodono",
|
||||||
"search.quick_action.status_search": "Afiŝoj kiuj kongruas kun {x}",
|
"search.quick_action.status_search": "Afiŝoj kiuj konformas kun {x}",
|
||||||
"search.search_or_paste": "Serĉu aŭ algluu URL-on",
|
"search.search_or_paste": "Serĉu aŭ algluu URL-on",
|
||||||
"search_popout.full_text_search_disabled_message": "Ne havebla sur {domain}.",
|
"search_popout.full_text_search_disabled_message": "Ne havebla sur {domain}.",
|
||||||
"search_popout.full_text_search_logged_out_message": "Disponebla nur kiam ensalutinte.",
|
"search_popout.full_text_search_logged_out_message": "Disponebla nur kiam ensalutinte.",
|
||||||
|
@ -763,7 +763,7 @@
|
||||||
"search_results.all": "Ĉiuj",
|
"search_results.all": "Ĉiuj",
|
||||||
"search_results.hashtags": "Kradvortoj",
|
"search_results.hashtags": "Kradvortoj",
|
||||||
"search_results.nothing_found": "Povis trovi nenion por ĉi tiuj serĉaj terminoj",
|
"search_results.nothing_found": "Povis trovi nenion por ĉi tiuj serĉaj terminoj",
|
||||||
"search_results.see_all": "Vidu ĉiujn",
|
"search_results.see_all": "Vidi ĉiujn",
|
||||||
"search_results.statuses": "Afiŝoj",
|
"search_results.statuses": "Afiŝoj",
|
||||||
"search_results.title": "Serĉ-rezultoj por {q}",
|
"search_results.title": "Serĉ-rezultoj por {q}",
|
||||||
"server_banner.about_active_users": "Personoj uzantaj ĉi tiun servilon dum la lastaj 30 tagoj (Aktivaj Uzantoj Monate)",
|
"server_banner.about_active_users": "Personoj uzantaj ĉi tiun servilon dum la lastaj 30 tagoj (Aktivaj Uzantoj Monate)",
|
||||||
|
@ -776,9 +776,9 @@
|
||||||
"sign_in_banner.mastodon_is": "Mastodon estas la plej bona maniero resti ĝisdata pri aktualaĵoj.",
|
"sign_in_banner.mastodon_is": "Mastodon estas la plej bona maniero resti ĝisdata pri aktualaĵoj.",
|
||||||
"sign_in_banner.sign_in": "Ensaluti",
|
"sign_in_banner.sign_in": "Ensaluti",
|
||||||
"sign_in_banner.sso_redirect": "Ensalutu aŭ Registriĝi",
|
"sign_in_banner.sso_redirect": "Ensalutu aŭ Registriĝi",
|
||||||
"status.admin_account": "Malfermi fasadon de moderigado por @{name}",
|
"status.admin_account": "Malfermi fasadon de la reguligado por @{name}",
|
||||||
"status.admin_domain": "Malfermu moderigan interfacon por {domain}",
|
"status.admin_domain": "Malfermi fasadon de la reguligado por {domain}",
|
||||||
"status.admin_status": "Malfermi ĉi tiun afiŝon en la kontrola interfaco",
|
"status.admin_status": "Malfermi ĉi tiun afiŝon en la fasado de la reguligado",
|
||||||
"status.block": "Bloki @{name}",
|
"status.block": "Bloki @{name}",
|
||||||
"status.bookmark": "Aldoni al la legosignoj",
|
"status.bookmark": "Aldoni al la legosignoj",
|
||||||
"status.cancel_reblog_private": "Ne plu diskonigi",
|
"status.cancel_reblog_private": "Ne plu diskonigi",
|
||||||
|
@ -801,7 +801,7 @@
|
||||||
"status.load_more": "Ŝargi pli",
|
"status.load_more": "Ŝargi pli",
|
||||||
"status.media.open": "Alklaki por malfermi",
|
"status.media.open": "Alklaki por malfermi",
|
||||||
"status.media.show": "Alklaki por montri",
|
"status.media.show": "Alklaki por montri",
|
||||||
"status.media_hidden": "Plurmedio kaŝita",
|
"status.media_hidden": "Vidaŭdaĵo kaŝita",
|
||||||
"status.mention": "Mencii @{name}",
|
"status.mention": "Mencii @{name}",
|
||||||
"status.more": "Pli",
|
"status.more": "Pli",
|
||||||
"status.mute": "Silentigi @{name}",
|
"status.mute": "Silentigi @{name}",
|
||||||
|
@ -869,7 +869,7 @@
|
||||||
"upload_modal.choose_image": "Elekti bildon",
|
"upload_modal.choose_image": "Elekti bildon",
|
||||||
"upload_modal.description_placeholder": "Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj",
|
"upload_modal.description_placeholder": "Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj",
|
||||||
"upload_modal.detect_text": "Detekti tekston de la bildo",
|
"upload_modal.detect_text": "Detekti tekston de la bildo",
|
||||||
"upload_modal.edit_media": "Redakti la plurmedion",
|
"upload_modal.edit_media": "Redakti la vidaŭdaĵojn",
|
||||||
"upload_modal.hint": "Klaku aŭ trenu la cirklon en la antaŭvidilo por elekti la fokuspunkton kiu ĉiam videblos en ĉiuj etigitaj bildoj.",
|
"upload_modal.hint": "Klaku aŭ trenu la cirklon en la antaŭvidilo por elekti la fokuspunkton kiu ĉiam videblos en ĉiuj etigitaj bildoj.",
|
||||||
"upload_modal.preparing_ocr": "Preparante OSR…",
|
"upload_modal.preparing_ocr": "Preparante OSR…",
|
||||||
"upload_modal.preview_label": "Antaŭvido ({ratio})",
|
"upload_modal.preview_label": "Antaŭvido ({ratio})",
|
||||||
|
|
|
@ -794,7 +794,7 @@
|
||||||
"status.edited_x_times": "Editado {count, plural, one {{count} vez} other {{count} veces}}",
|
"status.edited_x_times": "Editado {count, plural, one {{count} vez} other {{count} veces}}",
|
||||||
"status.embed": "Obtener código para insertar",
|
"status.embed": "Obtener código para insertar",
|
||||||
"status.favourite": "Marcar como favorito",
|
"status.favourite": "Marcar como favorito",
|
||||||
"status.favourites": "{count, plural, one {# voto} other {# votos}}",
|
"status.favourites": "{count, plural, one {# vez marcado como favorito} other {# veces marcado como favorito}}",
|
||||||
"status.filter": "Filtrar este mensaje",
|
"status.filter": "Filtrar este mensaje",
|
||||||
"status.history.created": "Creado por {name}, {date}",
|
"status.history.created": "Creado por {name}, {date}",
|
||||||
"status.history.edited": "Editado por {name}, {date}",
|
"status.history.edited": "Editado por {name}, {date}",
|
||||||
|
|
|
@ -13,13 +13,13 @@
|
||||||
"about.rules": "Reglas del servidor",
|
"about.rules": "Reglas del servidor",
|
||||||
"account.account_note_header": "Nota personal",
|
"account.account_note_header": "Nota personal",
|
||||||
"account.add_or_remove_from_list": "Agregar o eliminar de las listas",
|
"account.add_or_remove_from_list": "Agregar o eliminar de las listas",
|
||||||
"account.badges.bot": "Bot",
|
"account.badges.bot": "Automatizada",
|
||||||
"account.badges.group": "Grupo",
|
"account.badges.group": "Grupo",
|
||||||
"account.block": "Bloquear a @{name}",
|
"account.block": "Bloquear a @{name}",
|
||||||
"account.block_domain": "Bloquear dominio {domain}",
|
"account.block_domain": "Bloquear dominio {domain}",
|
||||||
"account.block_short": "Bloquear",
|
"account.block_short": "Bloquear",
|
||||||
"account.blocked": "Bloqueado",
|
"account.blocked": "Bloqueado",
|
||||||
"account.cancel_follow_request": "Retirar solicitud de seguimiento",
|
"account.cancel_follow_request": "Cancelar seguimiento",
|
||||||
"account.copy": "Copiar enlace al perfil",
|
"account.copy": "Copiar enlace al perfil",
|
||||||
"account.direct": "Mención privada @{name}",
|
"account.direct": "Mención privada @{name}",
|
||||||
"account.disable_notifications": "Dejar de notificarme cuando @{name} publique algo",
|
"account.disable_notifications": "Dejar de notificarme cuando @{name} publique algo",
|
||||||
|
@ -33,11 +33,11 @@
|
||||||
"account.follow": "Seguir",
|
"account.follow": "Seguir",
|
||||||
"account.follow_back": "Seguir también",
|
"account.follow_back": "Seguir también",
|
||||||
"account.followers": "Seguidores",
|
"account.followers": "Seguidores",
|
||||||
"account.followers.empty": "Todavía nadie sigue a este usuario.",
|
"account.followers.empty": "Nadie sigue a este usuario todavía.",
|
||||||
"account.followers_counter": "{count, plural, one {{counter} seguidor} other {{counter} seguidores}}",
|
"account.followers_counter": "{count, plural, one {{counter} seguidor} other {{counter} seguidores}}",
|
||||||
"account.following": "Siguiendo",
|
"account.following": "Siguiendo",
|
||||||
"account.following_counter": "{count, plural, one {{counter} siguiendo} other {{counter} siguiendo}}",
|
"account.following_counter": "{count, plural, one {{counter} siguiendo} other {{counter} siguiendo}}",
|
||||||
"account.follows.empty": "Este usuario todavía no sigue a nadie.",
|
"account.follows.empty": "Este usuario no sigue a nadie todavía.",
|
||||||
"account.go_to_profile": "Ir al perfil",
|
"account.go_to_profile": "Ir al perfil",
|
||||||
"account.hide_reblogs": "Ocultar impulsos de @{name}",
|
"account.hide_reblogs": "Ocultar impulsos de @{name}",
|
||||||
"account.in_memoriam": "En memoria.",
|
"account.in_memoriam": "En memoria.",
|
||||||
|
@ -58,7 +58,7 @@
|
||||||
"account.posts": "Publicaciones",
|
"account.posts": "Publicaciones",
|
||||||
"account.posts_with_replies": "Publicaciones y respuestas",
|
"account.posts_with_replies": "Publicaciones y respuestas",
|
||||||
"account.report": "Denunciar a @{name}",
|
"account.report": "Denunciar a @{name}",
|
||||||
"account.requested": "Esperando aprobación. Haga clic para cancelar la solicitud de seguimiento",
|
"account.requested": "Esperando aprobación. Haz clic para cancelar la solicitud de seguimiento",
|
||||||
"account.requested_follow": "{name} ha solicitado seguirte",
|
"account.requested_follow": "{name} ha solicitado seguirte",
|
||||||
"account.share": "Compartir el perfil de @{name}",
|
"account.share": "Compartir el perfil de @{name}",
|
||||||
"account.show_reblogs": "Mostrar impulsos de @{name}",
|
"account.show_reblogs": "Mostrar impulsos de @{name}",
|
||||||
|
@ -81,15 +81,15 @@
|
||||||
"admin.impact_report.instance_followers": "Seguidores que nuestros usuarios perderían",
|
"admin.impact_report.instance_followers": "Seguidores que nuestros usuarios perderían",
|
||||||
"admin.impact_report.instance_follows": "Seguidores que perderían sus usuarios",
|
"admin.impact_report.instance_follows": "Seguidores que perderían sus usuarios",
|
||||||
"admin.impact_report.title": "Resumen de impacto",
|
"admin.impact_report.title": "Resumen de impacto",
|
||||||
"alert.rate_limited.message": "Por favor reintente después de {retry_time, time, medium}.",
|
"alert.rate_limited.message": "Por favor, intenta después de las {retry_time, time, medium}.",
|
||||||
"alert.rate_limited.title": "Tarifa limitada",
|
"alert.rate_limited.title": "Tarifa limitada",
|
||||||
"alert.unexpected.message": "Hubo un error inesperado.",
|
"alert.unexpected.message": "Hubo un error inesperado.",
|
||||||
"alert.unexpected.title": "¡Ups!",
|
"alert.unexpected.title": "¡Uy!",
|
||||||
"alt_text_badge.title": "Texto alternativo",
|
"alt_text_badge.title": "Texto alternativo",
|
||||||
"announcement.announcement": "Anuncio",
|
"announcement.announcement": "Anuncio",
|
||||||
"attachments_list.unprocessed": "(sin procesar)",
|
"attachments_list.unprocessed": "(sin procesar)",
|
||||||
"audio.hide": "Ocultar audio",
|
"audio.hide": "Ocultar audio",
|
||||||
"block_modal.remote_users_caveat": "Le pediremos al servidor {domain} que respete tu decisión. Sin embargo, el cumplimiento no está garantizado ya que algunos servidores pueden manejar bloques de forma diferente. Las publicaciones públicas pueden ser todavía visibles para los usuarios no conectados.",
|
"block_modal.remote_users_caveat": "Le pediremos al servidor {domain} que respete tu decisión. Sin embargo, el cumplimiento no está garantizado, ya que algunos servidores pueden manejar bloques de forma diferente. Las publicaciones públicas pueden ser todavía visibles para los usuarios no conectados.",
|
||||||
"block_modal.show_less": "Mostrar menos",
|
"block_modal.show_less": "Mostrar menos",
|
||||||
"block_modal.show_more": "Mostrar más",
|
"block_modal.show_more": "Mostrar más",
|
||||||
"block_modal.they_cant_mention": "No pueden mencionarte ni seguirte.",
|
"block_modal.they_cant_mention": "No pueden mencionarte ni seguirte.",
|
||||||
|
@ -120,7 +120,7 @@
|
||||||
"column.about": "Acerca de",
|
"column.about": "Acerca de",
|
||||||
"column.blocks": "Usuarios bloqueados",
|
"column.blocks": "Usuarios bloqueados",
|
||||||
"column.bookmarks": "Marcadores",
|
"column.bookmarks": "Marcadores",
|
||||||
"column.community": "Línea de tiempo local",
|
"column.community": "Cronología local",
|
||||||
"column.direct": "Menciones privadas",
|
"column.direct": "Menciones privadas",
|
||||||
"column.directory": "Buscar perfiles",
|
"column.directory": "Buscar perfiles",
|
||||||
"column.domain_blocks": "Dominios ocultados",
|
"column.domain_blocks": "Dominios ocultados",
|
||||||
|
@ -163,7 +163,7 @@
|
||||||
"compose_form.poll.switch_to_single": "Cambiar la encuesta para permitir una única opción",
|
"compose_form.poll.switch_to_single": "Cambiar la encuesta para permitir una única opción",
|
||||||
"compose_form.poll.type": "Estilo",
|
"compose_form.poll.type": "Estilo",
|
||||||
"compose_form.publish": "Publicación",
|
"compose_form.publish": "Publicación",
|
||||||
"compose_form.publish_form": "Publicar",
|
"compose_form.publish_form": "Nueva publicación",
|
||||||
"compose_form.reply": "Respuesta",
|
"compose_form.reply": "Respuesta",
|
||||||
"compose_form.save_changes": "Actualización",
|
"compose_form.save_changes": "Actualización",
|
||||||
"compose_form.spoiler.marked": "Quitar advertencia de contenido",
|
"compose_form.spoiler.marked": "Quitar advertencia de contenido",
|
||||||
|
@ -248,7 +248,7 @@
|
||||||
"emoji_button.food": "Comida y bebida",
|
"emoji_button.food": "Comida y bebida",
|
||||||
"emoji_button.label": "Insertar emoji",
|
"emoji_button.label": "Insertar emoji",
|
||||||
"emoji_button.nature": "Naturaleza",
|
"emoji_button.nature": "Naturaleza",
|
||||||
"emoji_button.not_found": "Sin emojis coincidentes",
|
"emoji_button.not_found": "No se han encontrado emojis que coincidan",
|
||||||
"emoji_button.objects": "Objetos",
|
"emoji_button.objects": "Objetos",
|
||||||
"emoji_button.people": "Gente",
|
"emoji_button.people": "Gente",
|
||||||
"emoji_button.recent": "Usados frecuentemente",
|
"emoji_button.recent": "Usados frecuentemente",
|
||||||
|
@ -271,8 +271,8 @@
|
||||||
"empty_column.follow_requests": "No tienes ninguna petición de seguidor. Cuando recibas una, se mostrará aquí.",
|
"empty_column.follow_requests": "No tienes ninguna petición de seguidor. Cuando recibas una, se mostrará aquí.",
|
||||||
"empty_column.followed_tags": "No estás siguiendo ninguna etiqueta todavía. Cuando lo hagas, aparecerá aquí.",
|
"empty_column.followed_tags": "No estás siguiendo ninguna etiqueta todavía. Cuando lo hagas, aparecerá aquí.",
|
||||||
"empty_column.hashtag": "No hay nada en esta etiqueta aún.",
|
"empty_column.hashtag": "No hay nada en esta etiqueta aún.",
|
||||||
"empty_column.home": "No estás siguiendo a nadie aún. Visita {public} o haz búsquedas para empezar y conocer gente nueva.",
|
"empty_column.home": "¡Tu cronología está vacía! Sigue a más gente para llenarla.",
|
||||||
"empty_column.list": "No hay nada en esta lista aún. Cuando miembros de esta lista publiquen nuevos estatus, estos aparecerán qui.",
|
"empty_column.list": "Aún no hay nada en esta lista. Cuando los miembros de esta lista publiquen nuevos contenidos, aparecerán aquí.",
|
||||||
"empty_column.lists": "No tienes ninguna lista. cuando crees una, se mostrará aquí.",
|
"empty_column.lists": "No tienes ninguna lista. cuando crees una, se mostrará aquí.",
|
||||||
"empty_column.mutes": "Aún no has silenciado a ningún usuario.",
|
"empty_column.mutes": "Aún no has silenciado a ningún usuario.",
|
||||||
"empty_column.notification_requests": "¡Todo limpio! No hay nada aquí. Cuando recibas nuevas notificaciones, aparecerán aquí conforme a tu configuración.",
|
"empty_column.notification_requests": "¡Todo limpio! No hay nada aquí. Cuando recibas nuevas notificaciones, aparecerán aquí conforme a tu configuración.",
|
||||||
|
@ -400,40 +400,40 @@
|
||||||
"intervals.full.days": "{number, plural, one {# día} other {# días}}",
|
"intervals.full.days": "{number, plural, one {# día} other {# días}}",
|
||||||
"intervals.full.hours": "{number, plural, one {# hora} other {# horas}}",
|
"intervals.full.hours": "{number, plural, one {# hora} other {# horas}}",
|
||||||
"intervals.full.minutes": "{number, plural, one {# minuto} other {# minutos}}",
|
"intervals.full.minutes": "{number, plural, one {# minuto} other {# minutos}}",
|
||||||
"keyboard_shortcuts.back": "volver atrás",
|
"keyboard_shortcuts.back": "Volver atrás",
|
||||||
"keyboard_shortcuts.blocked": "abrir una lista de usuarios bloqueados",
|
"keyboard_shortcuts.blocked": "Abrir la lista de usuarios bloqueados",
|
||||||
"keyboard_shortcuts.boost": "Impulsar publicación",
|
"keyboard_shortcuts.boost": "Impulsar publicación",
|
||||||
"keyboard_shortcuts.column": "enfocar un estado en una de las columnas",
|
"keyboard_shortcuts.column": "Enfocar columna",
|
||||||
"keyboard_shortcuts.compose": "enfocar el área de texto de redacción",
|
"keyboard_shortcuts.compose": "Enfocar el área de texto de redacción",
|
||||||
"keyboard_shortcuts.description": "Descripción",
|
"keyboard_shortcuts.description": "Descripción",
|
||||||
"keyboard_shortcuts.direct": "para abrir la columna de menciones privadas",
|
"keyboard_shortcuts.direct": "para abrir la columna de menciones privadas",
|
||||||
"keyboard_shortcuts.down": "mover hacia abajo en la lista",
|
"keyboard_shortcuts.down": "Descender en la lista",
|
||||||
"keyboard_shortcuts.enter": "Abrir publicación",
|
"keyboard_shortcuts.enter": "Abrir publicación",
|
||||||
"keyboard_shortcuts.favourite": "Marcar como favorita la publicación",
|
"keyboard_shortcuts.favourite": "Marcar como favorita la publicación",
|
||||||
"keyboard_shortcuts.favourites": "Abrir lista de favoritos",
|
"keyboard_shortcuts.favourites": "Abrir lista de favoritos",
|
||||||
"keyboard_shortcuts.federated": "abrir el timeline federado",
|
"keyboard_shortcuts.federated": "Abrir cronología federada",
|
||||||
"keyboard_shortcuts.heading": "Keyboard Shortcuts",
|
"keyboard_shortcuts.heading": "Atajos de teclado",
|
||||||
"keyboard_shortcuts.home": "abrir el timeline propio",
|
"keyboard_shortcuts.home": "Abrir cronología principal",
|
||||||
"keyboard_shortcuts.hotkey": "Tecla caliente",
|
"keyboard_shortcuts.hotkey": "Tecla de acceso rápido",
|
||||||
"keyboard_shortcuts.legend": "para mostrar esta leyenda",
|
"keyboard_shortcuts.legend": "Mostrar esta leyenda",
|
||||||
"keyboard_shortcuts.local": "abrir el timeline local",
|
"keyboard_shortcuts.local": "Abrir cronología local",
|
||||||
"keyboard_shortcuts.mention": "para mencionar al autor",
|
"keyboard_shortcuts.mention": "Mencionar al autor",
|
||||||
"keyboard_shortcuts.muted": "abrir la lista de usuarios silenciados",
|
"keyboard_shortcuts.muted": "Abrir la lista de usuarios silenciados",
|
||||||
"keyboard_shortcuts.my_profile": "abrir tu perfil",
|
"keyboard_shortcuts.my_profile": "Abrir tu perfil",
|
||||||
"keyboard_shortcuts.notifications": "abrir la columna de notificaciones",
|
"keyboard_shortcuts.notifications": "Abrir la columna de notificaciones",
|
||||||
"keyboard_shortcuts.open_media": "para abrir archivos multimedia",
|
"keyboard_shortcuts.open_media": "Abrir multimedia",
|
||||||
"keyboard_shortcuts.pinned": "Abrir la lista de publicaciones fijadas",
|
"keyboard_shortcuts.pinned": "Abrir la lista de publicaciones fijadas",
|
||||||
"keyboard_shortcuts.profile": "abrir el perfil del autor",
|
"keyboard_shortcuts.profile": "Abrir perfil del autor",
|
||||||
"keyboard_shortcuts.reply": "Responder a la publicación",
|
"keyboard_shortcuts.reply": "Responder a la publicación",
|
||||||
"keyboard_shortcuts.requests": "abrir la lista de peticiones de seguidores",
|
"keyboard_shortcuts.requests": "Abrir lista de solicitudes de seguimiento",
|
||||||
"keyboard_shortcuts.search": "para poner el foco en la búsqueda",
|
"keyboard_shortcuts.search": "Enfocar la barra de búsqueda",
|
||||||
"keyboard_shortcuts.spoilers": "para mostrar/ocultar el campo CW",
|
"keyboard_shortcuts.spoilers": "Mostrar/ocultar el campo AC",
|
||||||
"keyboard_shortcuts.start": "abrir la columna \"comenzar\"",
|
"keyboard_shortcuts.start": "Abrir la columna “empezar”",
|
||||||
"keyboard_shortcuts.toggle_hidden": "mostrar/ocultar texto tras aviso de contenido (CW)",
|
"keyboard_shortcuts.toggle_hidden": "Mostrar/ocultar texto detrás de AC",
|
||||||
"keyboard_shortcuts.toggle_sensitivity": "mostrar/ocultar medios",
|
"keyboard_shortcuts.toggle_sensitivity": "Mostrar/ocultar multimedia",
|
||||||
"keyboard_shortcuts.toot": "Comenzar una nueva publicación",
|
"keyboard_shortcuts.toot": "Comenzar una nueva publicación",
|
||||||
"keyboard_shortcuts.unfocus": "para retirar el foco de la caja de redacción/búsqueda",
|
"keyboard_shortcuts.unfocus": "Desenfocar área de redacción/búsqueda",
|
||||||
"keyboard_shortcuts.up": "para ir hacia arriba en la lista",
|
"keyboard_shortcuts.up": "Ascender en la lista",
|
||||||
"lightbox.close": "Cerrar",
|
"lightbox.close": "Cerrar",
|
||||||
"lightbox.next": "Siguiente",
|
"lightbox.next": "Siguiente",
|
||||||
"lightbox.previous": "Anterior",
|
"lightbox.previous": "Anterior",
|
||||||
|
@ -589,7 +589,7 @@
|
||||||
"notifications.grant_permission": "Conceder permiso.",
|
"notifications.grant_permission": "Conceder permiso.",
|
||||||
"notifications.group": "{count} notificaciones",
|
"notifications.group": "{count} notificaciones",
|
||||||
"notifications.mark_as_read": "Marcar todas las notificaciones como leídas",
|
"notifications.mark_as_read": "Marcar todas las notificaciones como leídas",
|
||||||
"notifications.permission_denied": "No se pueden habilitar las notificaciones de escritorio ya que se denegó el permiso.",
|
"notifications.permission_denied": "No se pueden habilitar las notificaciones de escritorio, ya que se denegó el permiso",
|
||||||
"notifications.permission_denied_alert": "No se pueden habilitar las notificaciones de escritorio, ya que el permiso del navegador fue denegado anteriormente",
|
"notifications.permission_denied_alert": "No se pueden habilitar las notificaciones de escritorio, ya que el permiso del navegador fue denegado anteriormente",
|
||||||
"notifications.permission_required": "Las notificaciones de escritorio no están disponibles porque no se ha concedido el permiso requerido.",
|
"notifications.permission_required": "Las notificaciones de escritorio no están disponibles porque no se ha concedido el permiso requerido.",
|
||||||
"notifications.policy.accept": "Aceptar",
|
"notifications.policy.accept": "Aceptar",
|
||||||
|
@ -802,7 +802,7 @@
|
||||||
"status.media.open": "Click para abrir",
|
"status.media.open": "Click para abrir",
|
||||||
"status.media.show": "Click para mostrar",
|
"status.media.show": "Click para mostrar",
|
||||||
"status.media_hidden": "Contenido multimedia oculto",
|
"status.media_hidden": "Contenido multimedia oculto",
|
||||||
"status.mention": "Mencionar",
|
"status.mention": "Mencionar @{name}",
|
||||||
"status.more": "Más",
|
"status.more": "Más",
|
||||||
"status.mute": "Silenciar @{name}",
|
"status.mute": "Silenciar @{name}",
|
||||||
"status.mute_conversation": "Silenciar conversación",
|
"status.mute_conversation": "Silenciar conversación",
|
||||||
|
@ -821,7 +821,7 @@
|
||||||
"status.replied_to": "Respondió a {name}",
|
"status.replied_to": "Respondió a {name}",
|
||||||
"status.reply": "Responder",
|
"status.reply": "Responder",
|
||||||
"status.replyAll": "Responder al hilo",
|
"status.replyAll": "Responder al hilo",
|
||||||
"status.report": "Reportar",
|
"status.report": "Reportar @{name}",
|
||||||
"status.sensitive_warning": "Contenido sensible",
|
"status.sensitive_warning": "Contenido sensible",
|
||||||
"status.share": "Compartir",
|
"status.share": "Compartir",
|
||||||
"status.show_less_all": "Mostrar menos para todo",
|
"status.show_less_all": "Mostrar menos para todo",
|
||||||
|
@ -845,14 +845,14 @@
|
||||||
"time_remaining.seconds": "{number, plural, one {# segundo restante} other {# segundos restantes}}",
|
"time_remaining.seconds": "{number, plural, one {# segundo restante} other {# segundos restantes}}",
|
||||||
"trends.counter_by_accounts": "{count, plural, one {{counter} persona} other {{counter} personas}} en los últimos {days, plural, one {días} other {{days} días}}",
|
"trends.counter_by_accounts": "{count, plural, one {{counter} persona} other {{counter} personas}} en los últimos {days, plural, one {días} other {{days} días}}",
|
||||||
"trends.trending_now": "Tendencia ahora",
|
"trends.trending_now": "Tendencia ahora",
|
||||||
"ui.beforeunload": "Tu borrador se perderá si sales de Mastodon.",
|
"ui.beforeunload": "Tu borrador se perderá si abandonas Mastodon.",
|
||||||
"units.short.billion": "{count} MM",
|
"units.short.billion": "{count} MM",
|
||||||
"units.short.million": "{count} M",
|
"units.short.million": "{count} M",
|
||||||
"units.short.thousand": "{count} K",
|
"units.short.thousand": "{count} K",
|
||||||
"upload_area.title": "Arrastra y suelta para subir",
|
"upload_area.title": "Arrastra y suelta para subir",
|
||||||
"upload_button.label": "Subir multimedia (JPEG, PNG, GIF, WebM, MP4, MOV)",
|
"upload_button.label": "Subir multimedia (JPEG, PNG, GIF, WebM, MP4, MOV)",
|
||||||
"upload_error.limit": "Límite de subida de archivos excedido.",
|
"upload_error.limit": "Límite de subida de archivos excedido.",
|
||||||
"upload_error.poll": "Subida de archivos no permitida con encuestas.",
|
"upload_error.poll": "No se permite subir archivos con las encuestas.",
|
||||||
"upload_form.audio_description": "Describir para personas con problemas auditivos",
|
"upload_form.audio_description": "Describir para personas con problemas auditivos",
|
||||||
"upload_form.description": "Describir para los usuarios con dificultad visual",
|
"upload_form.description": "Describir para los usuarios con dificultad visual",
|
||||||
"upload_form.drag_and_drop.instructions": "Para recoger un archivo adjunto, pulsa la barra espaciadora o la tecla Intro. Mientras arrastras, usa las teclas de flecha para mover el archivo adjunto en cualquier dirección. Vuelve a pulsar la barra espaciadora o la tecla Intro para soltar el archivo adjunto en su nueva posición, o pulsa la tecla Escape para cancelar.",
|
"upload_form.drag_and_drop.instructions": "Para recoger un archivo adjunto, pulsa la barra espaciadora o la tecla Intro. Mientras arrastras, usa las teclas de flecha para mover el archivo adjunto en cualquier dirección. Vuelve a pulsar la barra espaciadora o la tecla Intro para soltar el archivo adjunto en su nueva posición, o pulsa la tecla Escape para cancelar.",
|
||||||
|
@ -873,7 +873,7 @@
|
||||||
"upload_modal.hint": "Haga clic o arrastre el círculo en la vista previa para elegir el punto focal que siempre estará a la vista en todas las miniaturas.",
|
"upload_modal.hint": "Haga clic o arrastre el círculo en la vista previa para elegir el punto focal que siempre estará a la vista en todas las miniaturas.",
|
||||||
"upload_modal.preparing_ocr": "Preparando OCR…",
|
"upload_modal.preparing_ocr": "Preparando OCR…",
|
||||||
"upload_modal.preview_label": "Vista previa ({ratio})",
|
"upload_modal.preview_label": "Vista previa ({ratio})",
|
||||||
"upload_progress.label": "Subiendo…",
|
"upload_progress.label": "Subiendo...",
|
||||||
"upload_progress.processing": "Procesando…",
|
"upload_progress.processing": "Procesando…",
|
||||||
"username.taken": "Ese nombre de usuario está ocupado. Prueba con otro",
|
"username.taken": "Ese nombre de usuario está ocupado. Prueba con otro",
|
||||||
"video.close": "Cerrar video",
|
"video.close": "Cerrar video",
|
||||||
|
|
|
@ -56,9 +56,9 @@
|
||||||
"account.no_bio": "Sin biografía.",
|
"account.no_bio": "Sin biografía.",
|
||||||
"account.open_original_page": "Abrir página original",
|
"account.open_original_page": "Abrir página original",
|
||||||
"account.posts": "Publicaciones",
|
"account.posts": "Publicaciones",
|
||||||
"account.posts_with_replies": "Pub. y respuestas",
|
"account.posts_with_replies": "Publicaciones y respuestas",
|
||||||
"account.report": "Reportar a @{name}",
|
"account.report": "Reportar a @{name}",
|
||||||
"account.requested": "Esperando aprobación. Clica para cancelar la solicitud de seguimiento",
|
"account.requested": "Esperando aprobación. Haz clic para cancelar la solicitud de seguimiento",
|
||||||
"account.requested_follow": "{name} ha solicitado seguirte",
|
"account.requested_follow": "{name} ha solicitado seguirte",
|
||||||
"account.share": "Compartir el perfil de @{name}",
|
"account.share": "Compartir el perfil de @{name}",
|
||||||
"account.show_reblogs": "Mostrar impulsos de @{name}",
|
"account.show_reblogs": "Mostrar impulsos de @{name}",
|
||||||
|
@ -71,7 +71,7 @@
|
||||||
"account.unmute": "Dejar de silenciar a @{name}",
|
"account.unmute": "Dejar de silenciar a @{name}",
|
||||||
"account.unmute_notifications_short": "Dejar de silenciar notificaciones",
|
"account.unmute_notifications_short": "Dejar de silenciar notificaciones",
|
||||||
"account.unmute_short": "Dejar de silenciar",
|
"account.unmute_short": "Dejar de silenciar",
|
||||||
"account_note.placeholder": "Clic para añadir nota",
|
"account_note.placeholder": "Haz 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",
|
||||||
"admin.dashboard.retention.average": "Media",
|
"admin.dashboard.retention.average": "Media",
|
||||||
|
@ -81,12 +81,12 @@
|
||||||
"admin.impact_report.instance_followers": "Seguidores que nuestros usuarios perderían",
|
"admin.impact_report.instance_followers": "Seguidores que nuestros usuarios perderían",
|
||||||
"admin.impact_report.instance_follows": "Seguidores que perderían sus usuarios",
|
"admin.impact_report.instance_follows": "Seguidores que perderían sus usuarios",
|
||||||
"admin.impact_report.title": "Resumen de impacto",
|
"admin.impact_report.title": "Resumen de impacto",
|
||||||
"alert.rate_limited.message": "Por favor, vuelve a intentarlo después de la(s) {retry_time, time, medium}.",
|
"alert.rate_limited.message": "Por favor, vuelve a intentarlo después de {retry_time, time, medium}.",
|
||||||
"alert.rate_limited.title": "Tráfico limitado",
|
"alert.rate_limited.title": "Tráfico limitado",
|
||||||
"alert.unexpected.message": "Hubo un error inesperado.",
|
"alert.unexpected.message": "Hubo un error inesperado.",
|
||||||
"alert.unexpected.title": "¡Ups!",
|
"alert.unexpected.title": "¡Ups!",
|
||||||
"alt_text_badge.title": "Texto alternativo",
|
"alt_text_badge.title": "Texto alternativo",
|
||||||
"announcement.announcement": "Anuncio",
|
"announcement.announcement": "Comunicación",
|
||||||
"attachments_list.unprocessed": "(sin procesar)",
|
"attachments_list.unprocessed": "(sin procesar)",
|
||||||
"audio.hide": "Ocultar audio",
|
"audio.hide": "Ocultar audio",
|
||||||
"block_modal.remote_users_caveat": "Le pediremos al servidor {domain} que respete tu decisión. Sin embargo, el cumplimiento no está garantizado, ya que algunos servidores pueden manejar bloqueos de forma distinta. Los mensajes públicos pueden ser todavía visibles para los usuarios que no hayan iniciado sesión.",
|
"block_modal.remote_users_caveat": "Le pediremos al servidor {domain} que respete tu decisión. Sin embargo, el cumplimiento no está garantizado, ya que algunos servidores pueden manejar bloqueos de forma distinta. Los mensajes públicos pueden ser todavía visibles para los usuarios que no hayan iniciado sesión.",
|
||||||
|
@ -206,7 +206,7 @@
|
||||||
"copypaste.copied": "Copiado",
|
"copypaste.copied": "Copiado",
|
||||||
"copypaste.copy_to_clipboard": "Copiar al portapapeles",
|
"copypaste.copy_to_clipboard": "Copiar al portapapeles",
|
||||||
"directory.federated": "Desde el fediverso conocido",
|
"directory.federated": "Desde el fediverso conocido",
|
||||||
"directory.local": "Solo de {domain}",
|
"directory.local": "Solo desde {domain}",
|
||||||
"directory.new_arrivals": "Recién llegados",
|
"directory.new_arrivals": "Recién llegados",
|
||||||
"directory.recently_active": "Recientemente activo",
|
"directory.recently_active": "Recientemente activo",
|
||||||
"disabled_account_banner.account_settings": "Ajustes de la cuenta",
|
"disabled_account_banner.account_settings": "Ajustes de la cuenta",
|
||||||
|
@ -248,7 +248,7 @@
|
||||||
"emoji_button.food": "Comida y bebida",
|
"emoji_button.food": "Comida y bebida",
|
||||||
"emoji_button.label": "Insertar emoji",
|
"emoji_button.label": "Insertar emoji",
|
||||||
"emoji_button.nature": "Naturaleza",
|
"emoji_button.nature": "Naturaleza",
|
||||||
"emoji_button.not_found": "No se encontró ningún emoji coincidente",
|
"emoji_button.not_found": "No se encontró ningún emoji que coincida",
|
||||||
"emoji_button.objects": "Objetos",
|
"emoji_button.objects": "Objetos",
|
||||||
"emoji_button.people": "Personas",
|
"emoji_button.people": "Personas",
|
||||||
"emoji_button.recent": "Usados frecuentemente",
|
"emoji_button.recent": "Usados frecuentemente",
|
||||||
|
@ -280,7 +280,7 @@
|
||||||
"empty_column.public": "¡No hay nada aquí! Escribe algo públicamente, o sigue usuarios de otras instancias manualmente para llenarlo",
|
"empty_column.public": "¡No hay nada aquí! Escribe algo públicamente, o sigue usuarios de otras instancias manualmente para llenarlo",
|
||||||
"error.unexpected_crash.explanation": "Debido a un error en nuestro código o a un problema de compatibilidad con el navegador, esta página no se ha podido mostrar correctamente.",
|
"error.unexpected_crash.explanation": "Debido a un error en nuestro código o a un problema de compatibilidad con el navegador, esta página no se ha podido mostrar correctamente.",
|
||||||
"error.unexpected_crash.explanation_addons": "No se pudo mostrar correctamente esta página. Este error probablemente fue causado por un complemento del navegador web o por herramientas de traducción automática.",
|
"error.unexpected_crash.explanation_addons": "No se pudo mostrar correctamente esta página. Este error probablemente fue causado por un complemento del navegador web o por herramientas de traducción automática.",
|
||||||
"error.unexpected_crash.next_steps": "Intenta actualizar la página. Si eso no ayuda, es posible que puedas usar Mastodon a través de otro navegador o aplicación nativa.",
|
"error.unexpected_crash.next_steps": "Intenta actualizar la página. Si eso no ayuda, quizás puedas usar Mastodon desde otro navegador o aplicación nativa.",
|
||||||
"error.unexpected_crash.next_steps_addons": "Intenta deshabilitarlos y recarga la página. Si eso no ayuda, podrías usar Mastodon a través de un navegador web diferente o aplicación nativa.",
|
"error.unexpected_crash.next_steps_addons": "Intenta deshabilitarlos y recarga la página. Si eso no ayuda, podrías usar Mastodon a través de un navegador web diferente o aplicación nativa.",
|
||||||
"errors.unexpected_crash.copy_stacktrace": "Copiar el seguimiento de pila en el portapapeles",
|
"errors.unexpected_crash.copy_stacktrace": "Copiar el seguimiento de pila en el portapapeles",
|
||||||
"errors.unexpected_crash.report_issue": "Informar de un problema/error",
|
"errors.unexpected_crash.report_issue": "Informar de un problema/error",
|
||||||
|
@ -295,7 +295,7 @@
|
||||||
"filter_modal.added.expired_explanation": "Esta categoría de filtro ha caducado, tendrás que cambiar la fecha de caducidad para que se aplique.",
|
"filter_modal.added.expired_explanation": "Esta categoría de filtro ha caducado, tendrás que cambiar la fecha de caducidad para que se aplique.",
|
||||||
"filter_modal.added.expired_title": "¡Filtro caducado!",
|
"filter_modal.added.expired_title": "¡Filtro caducado!",
|
||||||
"filter_modal.added.review_and_configure": "Para revisar y configurar esta categoría de filtros, vaya a {settings_link}.",
|
"filter_modal.added.review_and_configure": "Para revisar y configurar esta categoría de filtros, vaya a {settings_link}.",
|
||||||
"filter_modal.added.review_and_configure_title": "Ajustes de filtro",
|
"filter_modal.added.review_and_configure_title": "Ajustes de filtros",
|
||||||
"filter_modal.added.settings_link": "página de ajustes",
|
"filter_modal.added.settings_link": "página de ajustes",
|
||||||
"filter_modal.added.short_explanation": "Esta publicación ha sido añadida a la siguiente categoría de filtros: {title}.",
|
"filter_modal.added.short_explanation": "Esta publicación ha sido añadida a la siguiente categoría de filtros: {title}.",
|
||||||
"filter_modal.added.title": "¡Filtro añadido!",
|
"filter_modal.added.title": "¡Filtro añadido!",
|
||||||
|
@ -317,7 +317,7 @@
|
||||||
"follow_requests.unlocked_explanation": "A pesar de que tu cuenta no es privada, el personal de {domain} ha pensado que quizás deberías revisar manualmente las solicitudes de seguimiento de estas cuentas.",
|
"follow_requests.unlocked_explanation": "A pesar de que tu cuenta no es privada, el personal de {domain} ha pensado que quizás deberías revisar manualmente las solicitudes de seguimiento de estas cuentas.",
|
||||||
"follow_suggestions.curated_suggestion": "Recomendaciones del equipo",
|
"follow_suggestions.curated_suggestion": "Recomendaciones del equipo",
|
||||||
"follow_suggestions.dismiss": "No mostrar de nuevo",
|
"follow_suggestions.dismiss": "No mostrar de nuevo",
|
||||||
"follow_suggestions.featured_longer": "Escogidos por el equipo de {domain}",
|
"follow_suggestions.featured_longer": "Sugerencias del equipo de {domain}",
|
||||||
"follow_suggestions.friends_of_friends_longer": "Populares entre las personas a las que sigues",
|
"follow_suggestions.friends_of_friends_longer": "Populares entre las personas a las que sigues",
|
||||||
"follow_suggestions.hints.featured": "Este perfil ha sido elegido a mano por el equipo de {domain}.",
|
"follow_suggestions.hints.featured": "Este perfil ha sido elegido a mano por el equipo de {domain}.",
|
||||||
"follow_suggestions.hints.friends_of_friends": "Este perfil es popular entre las personas que sigues.",
|
"follow_suggestions.hints.friends_of_friends": "Este perfil es popular entre las personas que sigues.",
|
||||||
|
@ -344,11 +344,11 @@
|
||||||
"hashtag.column_header.tag_mode.all": "y {additional}",
|
"hashtag.column_header.tag_mode.all": "y {additional}",
|
||||||
"hashtag.column_header.tag_mode.any": "o {additional}",
|
"hashtag.column_header.tag_mode.any": "o {additional}",
|
||||||
"hashtag.column_header.tag_mode.none": "sin {additional}",
|
"hashtag.column_header.tag_mode.none": "sin {additional}",
|
||||||
"hashtag.column_settings.select.no_options_message": "No se encontraron sugerencias",
|
"hashtag.column_settings.select.no_options_message": "No se han encontrado sugerencias",
|
||||||
"hashtag.column_settings.select.placeholder": "Introduce etiquetas…",
|
"hashtag.column_settings.select.placeholder": "Introduce etiquetas…",
|
||||||
"hashtag.column_settings.tag_mode.all": "Todos estos",
|
"hashtag.column_settings.tag_mode.all": "Todas estas",
|
||||||
"hashtag.column_settings.tag_mode.any": "Cualquiera de estos",
|
"hashtag.column_settings.tag_mode.any": "Cualquiera de estas",
|
||||||
"hashtag.column_settings.tag_mode.none": "Ninguno de estos",
|
"hashtag.column_settings.tag_mode.none": "Ninguna de estas",
|
||||||
"hashtag.column_settings.tag_toggle": "Incluir etiquetas adicionales en esta columna",
|
"hashtag.column_settings.tag_toggle": "Incluir etiquetas adicionales en esta columna",
|
||||||
"hashtag.counter_by_accounts": "{count, plural, one {{counter} participante} other {{counter} participantes}}",
|
"hashtag.counter_by_accounts": "{count, plural, one {{counter} participante} other {{counter} participantes}}",
|
||||||
"hashtag.counter_by_uses": "{count, plural, one {{counter} publicación} other {{counter} publicaciones}}",
|
"hashtag.counter_by_uses": "{count, plural, one {{counter} publicación} other {{counter} publicaciones}}",
|
||||||
|
@ -366,12 +366,12 @@
|
||||||
"hints.threads.see_more": "Ver más respuestas en {domain}",
|
"hints.threads.see_more": "Ver más respuestas en {domain}",
|
||||||
"home.column_settings.show_reblogs": "Mostrar impulsos",
|
"home.column_settings.show_reblogs": "Mostrar impulsos",
|
||||||
"home.column_settings.show_replies": "Mostrar respuestas",
|
"home.column_settings.show_replies": "Mostrar respuestas",
|
||||||
"home.hide_announcements": "Ocultar anuncios",
|
"home.hide_announcements": "Ocultar comunicaciones",
|
||||||
"home.pending_critical_update.body": "Por favor, ¡actualiza tu servidor Mastodon lo antes posible!",
|
"home.pending_critical_update.body": "Por favor, ¡actualiza tu servidor Mastodon lo antes posible!",
|
||||||
"home.pending_critical_update.link": "Ver actualizaciones",
|
"home.pending_critical_update.link": "Ver actualizaciones",
|
||||||
"home.pending_critical_update.title": "¡Actualización de seguridad crítica disponible!",
|
"home.pending_critical_update.title": "¡Actualización de seguridad crítica disponible!",
|
||||||
"home.show_announcements": "Mostrar anuncios",
|
"home.show_announcements": "Mostrar comunicaciones",
|
||||||
"ignore_notifications_modal.disclaimer": "Mastodon no puede informar a los usuarios que has ignorado sus notificaciones. Ignorar notificaciones no impedirá que se sigan enviando los mensajes.",
|
"ignore_notifications_modal.disclaimer": "Mastodon no puede informar a los usuarios de que has ignorado sus notificaciones. Ignorar notificaciones no impedirá que se sigan enviando los mensajes.",
|
||||||
"ignore_notifications_modal.filter_instead": "Filtrar en vez de ignorar",
|
"ignore_notifications_modal.filter_instead": "Filtrar en vez de ignorar",
|
||||||
"ignore_notifications_modal.filter_to_act_users": "Aún podrás aceptar, rechazar o reportar usuarios",
|
"ignore_notifications_modal.filter_to_act_users": "Aún podrás aceptar, rechazar o reportar usuarios",
|
||||||
"ignore_notifications_modal.filter_to_avoid_confusion": "Filtrar ayuda a evitar confusiones potenciales",
|
"ignore_notifications_modal.filter_to_avoid_confusion": "Filtrar ayuda a evitar confusiones potenciales",
|
||||||
|
@ -400,14 +400,14 @@
|
||||||
"intervals.full.days": "{number, plural, one {# día} other {# días}}",
|
"intervals.full.days": "{number, plural, one {# día} other {# días}}",
|
||||||
"intervals.full.hours": "{number, plural, one {# hora} other {# horas}}",
|
"intervals.full.hours": "{number, plural, one {# hora} other {# horas}}",
|
||||||
"intervals.full.minutes": "{number, plural, one {# minuto} other {# minutos}}",
|
"intervals.full.minutes": "{number, plural, one {# minuto} other {# minutos}}",
|
||||||
"keyboard_shortcuts.back": "volver atrás",
|
"keyboard_shortcuts.back": "Navegar hacia atrás",
|
||||||
"keyboard_shortcuts.blocked": "abrir una lista de usuarios bloqueados",
|
"keyboard_shortcuts.blocked": "Abrir lista de usuarios bloqueados",
|
||||||
"keyboard_shortcuts.boost": "Impulsar",
|
"keyboard_shortcuts.boost": "Impulsar",
|
||||||
"keyboard_shortcuts.column": "Enfocar columna",
|
"keyboard_shortcuts.column": "Enfocar columna",
|
||||||
"keyboard_shortcuts.compose": "enfocar el área de texto de redacción",
|
"keyboard_shortcuts.compose": "Focalizar el área de texto de redacción",
|
||||||
"keyboard_shortcuts.description": "Descripción",
|
"keyboard_shortcuts.description": "Descripción",
|
||||||
"keyboard_shortcuts.direct": "para abrir la columna de menciones privadas",
|
"keyboard_shortcuts.direct": "para abrir la columna de menciones privadas",
|
||||||
"keyboard_shortcuts.down": "mover hacia abajo en la lista",
|
"keyboard_shortcuts.down": "Moverse hacia abajo en la lista",
|
||||||
"keyboard_shortcuts.enter": "Abrir publicación",
|
"keyboard_shortcuts.enter": "Abrir publicación",
|
||||||
"keyboard_shortcuts.favourite": "Marcar como favorita la publicación",
|
"keyboard_shortcuts.favourite": "Marcar como favorita la publicación",
|
||||||
"keyboard_shortcuts.favourites": "Abrir lista de favoritos",
|
"keyboard_shortcuts.favourites": "Abrir lista de favoritos",
|
||||||
|
@ -417,23 +417,23 @@
|
||||||
"keyboard_shortcuts.hotkey": "Tecla rápida",
|
"keyboard_shortcuts.hotkey": "Tecla rápida",
|
||||||
"keyboard_shortcuts.legend": "Mostrar esta leyenda",
|
"keyboard_shortcuts.legend": "Mostrar esta leyenda",
|
||||||
"keyboard_shortcuts.local": "Abrir cronología local",
|
"keyboard_shortcuts.local": "Abrir cronología local",
|
||||||
"keyboard_shortcuts.mention": "mencionar al autor",
|
"keyboard_shortcuts.mention": "Mencionar autor",
|
||||||
"keyboard_shortcuts.muted": "abrir la lista de usuarios silenciados",
|
"keyboard_shortcuts.muted": "Abrir lista de usuarios silenciados",
|
||||||
"keyboard_shortcuts.my_profile": "abrir tu perfil",
|
"keyboard_shortcuts.my_profile": "Abrir tu perfil",
|
||||||
"keyboard_shortcuts.notifications": "abrir la columna de notificaciones",
|
"keyboard_shortcuts.notifications": "Abrir columna de notificaciones",
|
||||||
"keyboard_shortcuts.open_media": "para abrir archivos multimedia",
|
"keyboard_shortcuts.open_media": "Abrir multimedia",
|
||||||
"keyboard_shortcuts.pinned": "Abrir la lista de publicaciones destacadas",
|
"keyboard_shortcuts.pinned": "Abrir la lista de publicaciones destacadas",
|
||||||
"keyboard_shortcuts.profile": "abrir el perfil del autor",
|
"keyboard_shortcuts.profile": "Abrir perfil del autor",
|
||||||
"keyboard_shortcuts.reply": "para responder",
|
"keyboard_shortcuts.reply": "Responder a una publicación",
|
||||||
"keyboard_shortcuts.requests": "abrir la lista de peticiones de seguidores",
|
"keyboard_shortcuts.requests": "Abrir lista de solicitudes de seguimiento",
|
||||||
"keyboard_shortcuts.search": "para poner el foco en la búsqueda",
|
"keyboard_shortcuts.search": "Focalizar barra de búsqueda",
|
||||||
"keyboard_shortcuts.spoilers": "para mostrar/ocultar el campo CW",
|
"keyboard_shortcuts.spoilers": "Mostrar/ocultar el campo de CW",
|
||||||
"keyboard_shortcuts.start": "abrir la columna \"comenzar\"",
|
"keyboard_shortcuts.start": "Abrir la columna \"comenzar\"",
|
||||||
"keyboard_shortcuts.toggle_hidden": "mostrar/ocultar texto tras aviso de contenido (CW)",
|
"keyboard_shortcuts.toggle_hidden": "Mostrar/ocultar texto tras aviso de contenido (CW)",
|
||||||
"keyboard_shortcuts.toggle_sensitivity": "mostrar/ocultar medios",
|
"keyboard_shortcuts.toggle_sensitivity": "Mostrar/ocultar multimedia",
|
||||||
"keyboard_shortcuts.toot": "Comienza una nueva publicación",
|
"keyboard_shortcuts.toot": "Comenzar una nueva publicación",
|
||||||
"keyboard_shortcuts.unfocus": "para retirar el foco de la caja de redacción/búsqueda",
|
"keyboard_shortcuts.unfocus": "Quitar el foco de la caja de redacción/búsqueda",
|
||||||
"keyboard_shortcuts.up": "para ir hacia arriba en la lista",
|
"keyboard_shortcuts.up": "Moverse hacia arriba en la lista",
|
||||||
"lightbox.close": "Cerrar",
|
"lightbox.close": "Cerrar",
|
||||||
"lightbox.next": "Siguiente",
|
"lightbox.next": "Siguiente",
|
||||||
"lightbox.previous": "Anterior",
|
"lightbox.previous": "Anterior",
|
||||||
|
@ -589,7 +589,7 @@
|
||||||
"notifications.grant_permission": "Conceder permiso.",
|
"notifications.grant_permission": "Conceder permiso.",
|
||||||
"notifications.group": "{count} notificaciones",
|
"notifications.group": "{count} notificaciones",
|
||||||
"notifications.mark_as_read": "Marcar todas las notificaciones como leídas",
|
"notifications.mark_as_read": "Marcar todas las notificaciones como leídas",
|
||||||
"notifications.permission_denied": "No se pueden habilitar las notificaciones de escritorio ya que se denegó el permiso.",
|
"notifications.permission_denied": "Las notificaciones de escritorio no están disponibles porque se denegó el permiso del navegador previamente",
|
||||||
"notifications.permission_denied_alert": "No se pueden habilitar las notificaciones de escritorio, ya que el permiso del navegador fue denegado anteriormente",
|
"notifications.permission_denied_alert": "No se pueden habilitar las notificaciones de escritorio, ya que el permiso del navegador fue denegado anteriormente",
|
||||||
"notifications.permission_required": "Las notificaciones de escritorio no están disponibles porque no se ha concedido el permiso requerido.",
|
"notifications.permission_required": "Las notificaciones de escritorio no están disponibles porque no se ha concedido el permiso requerido.",
|
||||||
"notifications.policy.accept": "Aceptar",
|
"notifications.policy.accept": "Aceptar",
|
||||||
|
@ -802,7 +802,7 @@
|
||||||
"status.media.open": "Pulsa para abrir",
|
"status.media.open": "Pulsa para abrir",
|
||||||
"status.media.show": "Pulsa para mostrar",
|
"status.media.show": "Pulsa para mostrar",
|
||||||
"status.media_hidden": "Contenido multimedia oculto",
|
"status.media_hidden": "Contenido multimedia oculto",
|
||||||
"status.mention": "Mencionar",
|
"status.mention": "Mencionar a @{name}",
|
||||||
"status.more": "Más",
|
"status.more": "Más",
|
||||||
"status.mute": "Silenciar @{name}",
|
"status.mute": "Silenciar @{name}",
|
||||||
"status.mute_conversation": "Silenciar conversación",
|
"status.mute_conversation": "Silenciar conversación",
|
||||||
|
@ -821,7 +821,7 @@
|
||||||
"status.replied_to": "Respondió a {name}",
|
"status.replied_to": "Respondió a {name}",
|
||||||
"status.reply": "Responder",
|
"status.reply": "Responder",
|
||||||
"status.replyAll": "Responder al hilo",
|
"status.replyAll": "Responder al hilo",
|
||||||
"status.report": "Reportar",
|
"status.report": "Reportar a @{name}",
|
||||||
"status.sensitive_warning": "Contenido sensible",
|
"status.sensitive_warning": "Contenido sensible",
|
||||||
"status.share": "Compartir",
|
"status.share": "Compartir",
|
||||||
"status.show_less_all": "Mostrar menos para todo",
|
"status.show_less_all": "Mostrar menos para todo",
|
||||||
|
@ -850,7 +850,7 @@
|
||||||
"units.short.million": "{count} M",
|
"units.short.million": "{count} M",
|
||||||
"units.short.thousand": "{count} K",
|
"units.short.thousand": "{count} K",
|
||||||
"upload_area.title": "Arrastra y suelta para subir",
|
"upload_area.title": "Arrastra y suelta para subir",
|
||||||
"upload_button.label": "Subir multimedia (JPEG, PNG, GIF, WebM, MP4, MOV)",
|
"upload_button.label": "Añadir imágenes, un fichero de vídeo o de audio",
|
||||||
"upload_error.limit": "Límite de subida de archivos excedido.",
|
"upload_error.limit": "Límite de subida de archivos excedido.",
|
||||||
"upload_error.poll": "No se permite la subida de archivos con encuestas.",
|
"upload_error.poll": "No se permite la subida de archivos con encuestas.",
|
||||||
"upload_form.audio_description": "Describir para personas con problemas auditivos",
|
"upload_form.audio_description": "Describir para personas con problemas auditivos",
|
||||||
|
@ -873,7 +873,7 @@
|
||||||
"upload_modal.hint": "Haga clic o arrastre el círculo en la vista previa para elegir el punto focal que siempre estará a la vista en todas las miniaturas.",
|
"upload_modal.hint": "Haga clic o arrastre el círculo en la vista previa para elegir el punto focal que siempre estará a la vista en todas las miniaturas.",
|
||||||
"upload_modal.preparing_ocr": "Preparando OCR…",
|
"upload_modal.preparing_ocr": "Preparando OCR…",
|
||||||
"upload_modal.preview_label": "Vista previa ({ratio})",
|
"upload_modal.preview_label": "Vista previa ({ratio})",
|
||||||
"upload_progress.label": "Subiendo…",
|
"upload_progress.label": "Subiendo...",
|
||||||
"upload_progress.processing": "Procesando…",
|
"upload_progress.processing": "Procesando…",
|
||||||
"username.taken": "Ese nombre de usuario ya está en uso. Prueba con otro",
|
"username.taken": "Ese nombre de usuario ya está en uso. Prueba con otro",
|
||||||
"video.close": "Cerrar video",
|
"video.close": "Cerrar video",
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
"about.powered_by": "Hajutatud sotsiaalmeedia, mille taga on {mastodon}",
|
"about.powered_by": "Hajutatud sotsiaalmeedia, mille taga on {mastodon}",
|
||||||
"about.rules": "Serveri reeglid",
|
"about.rules": "Serveri reeglid",
|
||||||
"account.account_note_header": "Isiklik märge",
|
"account.account_note_header": "Isiklik märge",
|
||||||
"account.add_or_remove_from_list": "Lisa või Eemalda nimekirjadest",
|
"account.add_or_remove_from_list": "Lisa või Eemalda loeteludest",
|
||||||
"account.badges.bot": "Robot",
|
"account.badges.bot": "Robot",
|
||||||
"account.badges.group": "Grupp",
|
"account.badges.group": "Grupp",
|
||||||
"account.block": "Blokeeri @{name}",
|
"account.block": "Blokeeri @{name}",
|
||||||
|
@ -52,7 +52,7 @@
|
||||||
"account.mute_notifications_short": "Vaigista teavitused",
|
"account.mute_notifications_short": "Vaigista teavitused",
|
||||||
"account.mute_short": "Vaigista",
|
"account.mute_short": "Vaigista",
|
||||||
"account.muted": "Vaigistatud",
|
"account.muted": "Vaigistatud",
|
||||||
"account.mutual": "Ühine",
|
"account.mutual": "Jälgite",
|
||||||
"account.no_bio": "Kirjeldust pole lisatud.",
|
"account.no_bio": "Kirjeldust pole lisatud.",
|
||||||
"account.open_original_page": "Ava algne leht",
|
"account.open_original_page": "Ava algne leht",
|
||||||
"account.posts": "Postitused",
|
"account.posts": "Postitused",
|
||||||
|
@ -128,7 +128,7 @@
|
||||||
"column.firehose": "Laiv lõimed",
|
"column.firehose": "Laiv lõimed",
|
||||||
"column.follow_requests": "Jälgimistaotlused",
|
"column.follow_requests": "Jälgimistaotlused",
|
||||||
"column.home": "Kodu",
|
"column.home": "Kodu",
|
||||||
"column.lists": "Nimekirjad",
|
"column.lists": "Loetelud",
|
||||||
"column.mutes": "Vaigistatud kasutajad",
|
"column.mutes": "Vaigistatud kasutajad",
|
||||||
"column.notifications": "Teated",
|
"column.notifications": "Teated",
|
||||||
"column.pins": "Kinnitatud postitused",
|
"column.pins": "Kinnitatud postitused",
|
||||||
|
@ -146,7 +146,7 @@
|
||||||
"community.column_settings.remote_only": "Ainult kaug",
|
"community.column_settings.remote_only": "Ainult kaug",
|
||||||
"compose.language.change": "Muuda keelt",
|
"compose.language.change": "Muuda keelt",
|
||||||
"compose.language.search": "Otsi keeli...",
|
"compose.language.search": "Otsi keeli...",
|
||||||
"compose.published.body": "Postitus avaldatud.",
|
"compose.published.body": "Postitus tehtud.",
|
||||||
"compose.published.open": "Ava",
|
"compose.published.open": "Ava",
|
||||||
"compose.saved.body": "Postitus salvestatud.",
|
"compose.saved.body": "Postitus salvestatud.",
|
||||||
"compose_form.direct_message_warning_learn_more": "Vaata lisa",
|
"compose_form.direct_message_warning_learn_more": "Vaata lisa",
|
||||||
|
@ -273,7 +273,7 @@
|
||||||
"empty_column.hashtag": "Selle sildi all ei ole ühtegi postitust.",
|
"empty_column.hashtag": "Selle sildi all ei ole ühtegi postitust.",
|
||||||
"empty_column.home": "Su koduajajoon on tühi. Jälgi rohkemaid inimesi, et seda täita {suggestions}",
|
"empty_column.home": "Su koduajajoon on tühi. Jälgi rohkemaid inimesi, et seda täita {suggestions}",
|
||||||
"empty_column.list": "Siin loetelus pole veel midagi. Kui loetelu liikmed teevad uusi postitusi, näed neid siin.",
|
"empty_column.list": "Siin loetelus pole veel midagi. Kui loetelu liikmed teevad uusi postitusi, näed neid siin.",
|
||||||
"empty_column.lists": "Pole veel ühtegi nimekirja. Kui lood mõne, näed neid siin.",
|
"empty_column.lists": "Pole veel ühtegi loetelu. Kui lood mõne, näed neid siin.",
|
||||||
"empty_column.mutes": "Sa pole veel ühtegi kasutajat vaigistanud.",
|
"empty_column.mutes": "Sa pole veel ühtegi kasutajat vaigistanud.",
|
||||||
"empty_column.notification_requests": "Kõik tühi! Siin pole mitte midagi. Kui saad uusi teavitusi, ilmuvad need siin vastavalt sinu seadistustele.",
|
"empty_column.notification_requests": "Kõik tühi! Siin pole mitte midagi. Kui saad uusi teavitusi, ilmuvad need siin vastavalt sinu seadistustele.",
|
||||||
"empty_column.notifications": "Ei ole veel teateid. Kui keegi suhtleb sinuga, näed seda siin.",
|
"empty_column.notifications": "Ei ole veel teateid. Kui keegi suhtleb sinuga, näed seda siin.",
|
||||||
|
@ -401,7 +401,7 @@
|
||||||
"intervals.full.hours": "{number, plural, one {# tund} other {# tundi}}",
|
"intervals.full.hours": "{number, plural, one {# tund} other {# tundi}}",
|
||||||
"intervals.full.minutes": "{number, plural, one {# minut} other {# minutit}}",
|
"intervals.full.minutes": "{number, plural, one {# minut} other {# minutit}}",
|
||||||
"keyboard_shortcuts.back": "Liigu tagasi",
|
"keyboard_shortcuts.back": "Liigu tagasi",
|
||||||
"keyboard_shortcuts.blocked": "avamaks blokeeritud kasutajate nimistut",
|
"keyboard_shortcuts.blocked": "Ava blokeeritud kasutajate nimistu",
|
||||||
"keyboard_shortcuts.boost": "Jaga",
|
"keyboard_shortcuts.boost": "Jaga",
|
||||||
"keyboard_shortcuts.column": "Fookus veerule",
|
"keyboard_shortcuts.column": "Fookus veerule",
|
||||||
"keyboard_shortcuts.compose": "Fookus teksti koostamise alale",
|
"keyboard_shortcuts.compose": "Fookus teksti koostamise alale",
|
||||||
|
@ -444,20 +444,20 @@
|
||||||
"link_preview.author": "{name} poolt",
|
"link_preview.author": "{name} poolt",
|
||||||
"link_preview.more_from_author": "Veel kasutajalt {name}",
|
"link_preview.more_from_author": "Veel kasutajalt {name}",
|
||||||
"link_preview.shares": "{count, plural, one {{counter} postitus} other {{counter} postitust}}",
|
"link_preview.shares": "{count, plural, one {{counter} postitus} other {{counter} postitust}}",
|
||||||
"lists.account.add": "Lisa nimekirja",
|
"lists.account.add": "Lisa loetellu",
|
||||||
"lists.account.remove": "Eemalda nimekirjast",
|
"lists.account.remove": "Eemalda loetelust",
|
||||||
"lists.delete": "Kustuta nimekiri",
|
"lists.delete": "Kustuta loetelu",
|
||||||
"lists.edit": "Muuda nimekirja",
|
"lists.edit": "Muuda loetelu",
|
||||||
"lists.edit.submit": "Pealkirja muutmine",
|
"lists.edit.submit": "Pealkirja muutmine",
|
||||||
"lists.exclusive": "Peida koduvaatest need postitused",
|
"lists.exclusive": "Peida koduvaatest need postitused",
|
||||||
"lists.new.create": "Lisa nimekiri",
|
"lists.new.create": "Lisa loetelu",
|
||||||
"lists.new.title_placeholder": "Uue nimekirja pealkiri",
|
"lists.new.title_placeholder": "Uue loetelu pealkiri",
|
||||||
"lists.replies_policy.followed": "Igalt jälgitud kasutajalt",
|
"lists.replies_policy.followed": "Igalt jälgitud kasutajalt",
|
||||||
"lists.replies_policy.list": "Listi liikmetelt",
|
"lists.replies_policy.list": "Loetelu liikmetelt",
|
||||||
"lists.replies_policy.none": "Mitte kelleltki",
|
"lists.replies_policy.none": "Mitte kelleltki",
|
||||||
"lists.replies_policy.title": "Näita vastuseid nendele:",
|
"lists.replies_policy.title": "Näita vastuseid nendele:",
|
||||||
"lists.search": "Otsi enda jälgitavate inimeste hulgast",
|
"lists.search": "Otsi enda jälgitavate inimeste hulgast",
|
||||||
"lists.subheading": "Sinu nimekirjad",
|
"lists.subheading": "Sinu loetelud",
|
||||||
"load_pending": "{count, plural, one {# uus kirje} other {# uut kirjet}}",
|
"load_pending": "{count, plural, one {# uus kirje} other {# uut kirjet}}",
|
||||||
"loading_indicator.label": "Laadimine…",
|
"loading_indicator.label": "Laadimine…",
|
||||||
"media_gallery.hide": "Peida",
|
"media_gallery.hide": "Peida",
|
||||||
|
@ -487,7 +487,7 @@
|
||||||
"navigation_bar.follow_requests": "Jälgimistaotlused",
|
"navigation_bar.follow_requests": "Jälgimistaotlused",
|
||||||
"navigation_bar.followed_tags": "Jälgitavad märksõnad",
|
"navigation_bar.followed_tags": "Jälgitavad märksõnad",
|
||||||
"navigation_bar.follows_and_followers": "Jälgitavad ja jälgijad",
|
"navigation_bar.follows_and_followers": "Jälgitavad ja jälgijad",
|
||||||
"navigation_bar.lists": "Nimekirjad",
|
"navigation_bar.lists": "Loetelud",
|
||||||
"navigation_bar.logout": "Logi välja",
|
"navigation_bar.logout": "Logi välja",
|
||||||
"navigation_bar.moderation": "Modereerimine",
|
"navigation_bar.moderation": "Modereerimine",
|
||||||
"navigation_bar.mutes": "Vaigistatud kasutajad",
|
"navigation_bar.mutes": "Vaigistatud kasutajad",
|
||||||
|
|
|
@ -197,6 +197,7 @@
|
||||||
"confirmations.unfollow.title": "Erabiltzailea jarraitzeari utzi?",
|
"confirmations.unfollow.title": "Erabiltzailea jarraitzeari utzi?",
|
||||||
"content_warning.hide": "Tuta ezkutatu",
|
"content_warning.hide": "Tuta ezkutatu",
|
||||||
"content_warning.show": "Erakutsi hala ere",
|
"content_warning.show": "Erakutsi hala ere",
|
||||||
|
"content_warning.show_more": "Erakutsi gehiago",
|
||||||
"conversation.delete": "Ezabatu elkarrizketa",
|
"conversation.delete": "Ezabatu elkarrizketa",
|
||||||
"conversation.mark_as_read": "Markatu irakurrita bezala",
|
"conversation.mark_as_read": "Markatu irakurrita bezala",
|
||||||
"conversation.open": "Ikusi elkarrizketa",
|
"conversation.open": "Ikusi elkarrizketa",
|
||||||
|
@ -303,6 +304,7 @@
|
||||||
"filter_modal.select_filter.subtitle": "Hautatu lehendik dagoen kategoria bat edo sortu berria",
|
"filter_modal.select_filter.subtitle": "Hautatu lehendik dagoen kategoria bat edo sortu berria",
|
||||||
"filter_modal.select_filter.title": "Iragazi bidalketa hau",
|
"filter_modal.select_filter.title": "Iragazi bidalketa hau",
|
||||||
"filter_modal.title.status": "Iragazi bidalketa bat",
|
"filter_modal.title.status": "Iragazi bidalketa bat",
|
||||||
|
"filter_warning.matches_filter": "“<span>{title}</span>” iragazkiarekin bat dator",
|
||||||
"filtered_notifications_banner.pending_requests": "Ezagutu dezakezun {count, plural, =0 {inoren} one {pertsona baten} other {# pertsonen}}",
|
"filtered_notifications_banner.pending_requests": "Ezagutu dezakezun {count, plural, =0 {inoren} one {pertsona baten} other {# pertsonen}}",
|
||||||
"filtered_notifications_banner.title": "Iragazitako jakinarazpenak",
|
"filtered_notifications_banner.title": "Iragazitako jakinarazpenak",
|
||||||
"firehose.all": "Guztiak",
|
"firehose.all": "Guztiak",
|
||||||
|
|
|
@ -145,7 +145,7 @@
|
||||||
"community.column_settings.media_only": "فقط رسانه",
|
"community.column_settings.media_only": "فقط رسانه",
|
||||||
"community.column_settings.remote_only": "تنها دوردست",
|
"community.column_settings.remote_only": "تنها دوردست",
|
||||||
"compose.language.change": "تغییر زبان",
|
"compose.language.change": "تغییر زبان",
|
||||||
"compose.language.search": "جستوجوی زبانها…",
|
"compose.language.search": "جستوجوی زبانها...",
|
||||||
"compose.published.body": "فرسته منتشر شد.",
|
"compose.published.body": "فرسته منتشر شد.",
|
||||||
"compose.published.open": "گشودن",
|
"compose.published.open": "گشودن",
|
||||||
"compose.saved.body": "فرسته ذخیره شد.",
|
"compose.saved.body": "فرسته ذخیره شد.",
|
||||||
|
@ -197,6 +197,7 @@
|
||||||
"confirmations.unfollow.title": "ناپیگیری کاربر؟",
|
"confirmations.unfollow.title": "ناپیگیری کاربر؟",
|
||||||
"content_warning.hide": "نهفتن فرسته",
|
"content_warning.hide": "نهفتن فرسته",
|
||||||
"content_warning.show": "در هر صورت نشان داده شود",
|
"content_warning.show": "در هر صورت نشان داده شود",
|
||||||
|
"content_warning.show_more": "نمایش بیشتر",
|
||||||
"conversation.delete": "حذف گفتگو",
|
"conversation.delete": "حذف گفتگو",
|
||||||
"conversation.mark_as_read": "علامتگذاری به عنوان خوانده شده",
|
"conversation.mark_as_read": "علامتگذاری به عنوان خوانده شده",
|
||||||
"conversation.open": "دیدن گفتگو",
|
"conversation.open": "دیدن گفتگو",
|
||||||
|
@ -222,7 +223,7 @@
|
||||||
"domain_block_modal.they_cant_follow": "هیچکسی از این کارساز نمیتواند پیتان بگیرد.",
|
"domain_block_modal.they_cant_follow": "هیچکسی از این کارساز نمیتواند پیتان بگیرد.",
|
||||||
"domain_block_modal.they_wont_know": "نخواهند دانست که مسدود شدهاند.",
|
"domain_block_modal.they_wont_know": "نخواهند دانست که مسدود شدهاند.",
|
||||||
"domain_block_modal.title": "انسداد دامنه؟",
|
"domain_block_modal.title": "انسداد دامنه؟",
|
||||||
"domain_block_modal.you_will_lose_num_followers": "تعداد {followersCount, plural,other {{followersCount}}} پیگیرنده و {followingCount, plural,other {{followingCount}}} شخص پیگرفته شده را از دست خواهید داد.",
|
"domain_block_modal.you_will_lose_num_followers": "شما {followersCount, plural, one {{followersCountDisplay} پیگیرنده} other {{followersCountDisplay} پیگیرنده}} و {followingCount, plural, one {{followingCountDisplay} فرد پیگرفتهشده} other {{followingCountDisplay} فرد پیگرفتهشده}} را از دست خواهید داد.",
|
||||||
"domain_block_modal.you_will_lose_relationships": "شما تمام پیگیرکنندگان و افرادی که از این کارساز پیگیری میکنید را از دست خواهید داد.",
|
"domain_block_modal.you_will_lose_relationships": "شما تمام پیگیرکنندگان و افرادی که از این کارساز پیگیری میکنید را از دست خواهید داد.",
|
||||||
"domain_block_modal.you_wont_see_posts": "فرستهها یا آگاهیها از کاربران روی این کارساز را نخواهید دید.",
|
"domain_block_modal.you_wont_see_posts": "فرستهها یا آگاهیها از کاربران روی این کارساز را نخواهید دید.",
|
||||||
"domain_pill.activitypub_lets_connect": "این به شما اجازه میدهد تا نه تنها در ماستودون، بلکه در برنامههای اجتماعی مختلف نیز با افراد ارتباط برقرار کرده و تعامل داشته باشید.",
|
"domain_pill.activitypub_lets_connect": "این به شما اجازه میدهد تا نه تنها در ماستودون، بلکه در برنامههای اجتماعی مختلف نیز با افراد ارتباط برقرار کرده و تعامل داشته باشید.",
|
||||||
|
@ -270,10 +271,11 @@
|
||||||
"empty_column.follow_requests": "شما هنوز هیچ درخواست پیگیریای ندارید. هنگامی که چنین درخواستی بگیرید، اینجا نشان داده خواهد شد.",
|
"empty_column.follow_requests": "شما هنوز هیچ درخواست پیگیریای ندارید. هنگامی که چنین درخواستی بگیرید، اینجا نشان داده خواهد شد.",
|
||||||
"empty_column.followed_tags": "شما هیچ برچسبی را پینگرفتید. هنگامی که برچسبی را پیگیری کنید اینجا نمایان میشوند.",
|
"empty_column.followed_tags": "شما هیچ برچسبی را پینگرفتید. هنگامی که برچسبی را پیگیری کنید اینجا نمایان میشوند.",
|
||||||
"empty_column.hashtag": "هنوز هیچ چیزی در این برچسب نیست.",
|
"empty_column.hashtag": "هنوز هیچ چیزی در این برچسب نیست.",
|
||||||
"empty_column.home": "خط زمانی خانگیتان خالی است! برای پر کردنش، افراد بیشتری را پی بگیرید. {suggestions}",
|
"empty_column.home": "خط زمانی خانگیتان خالی است! برای پر کردنش، افراد بیشتری را پی بگیرید.",
|
||||||
"empty_column.list": "هنوز چیزی در این سیاهه نیست. هنگامی که اعضایش فرستههای جدیدی بفرستند، اینجا ظاهر خواهند شد.",
|
"empty_column.list": "هنوز چیزی در این سیاهه نیست. هنگامی که اعضایش فرستههای جدیدی بفرستند، اینجا ظاهر خواهند شد.",
|
||||||
"empty_column.lists": "هنوز هیچ سیاههای ندارید. هنگامی که یکی بسازید، اینجا نشان داده خواهد شد.",
|
"empty_column.lists": "هنوز هیچ سیاههای ندارید. هنگامی که یکی بسازید، اینجا نشان داده خواهد شد.",
|
||||||
"empty_column.mutes": "هنوز هیچ کاربری را خموش نکردهاید.",
|
"empty_column.mutes": "هنوز هیچ کاربری را خموش نکردهاید.",
|
||||||
|
"empty_column.notification_requests": "همه چیز تمیز است! هیچچیزی اینجا نیست. هنگامی که آگاهیهای جدیدی دریافت کنید، بسته به تنظیماتتان اینجا ظاهر خواهند شد.",
|
||||||
"empty_column.notifications": "هنوز هیچ آگاهیآی ندارید. هنگامی که دیگران با شما برهمکنش داشته باشند،اینحا خواهید دیدش.",
|
"empty_column.notifications": "هنوز هیچ آگاهیآی ندارید. هنگامی که دیگران با شما برهمکنش داشته باشند،اینحا خواهید دیدش.",
|
||||||
"empty_column.public": "اینجا هنوز چیزی نیست! خودتان چیزی بنویسید یا کاربران کارسازهای دیگر را پیگیری کنید تا اینجا پُر شود",
|
"empty_column.public": "اینجا هنوز چیزی نیست! خودتان چیزی بنویسید یا کاربران کارسازهای دیگر را پیگیری کنید تا اینجا پُر شود",
|
||||||
"error.unexpected_crash.explanation": "به خاطر اشکالی در کدهای ما یا ناسازگاری با مرورگر شما، این صفحه به درستی نمایش نیافت.",
|
"error.unexpected_crash.explanation": "به خاطر اشکالی در کدهای ما یا ناسازگاری با مرورگر شما، این صفحه به درستی نمایش نیافت.",
|
||||||
|
@ -304,6 +306,7 @@
|
||||||
"filter_modal.select_filter.subtitle": "استفاده از یک دستهً موجود یا ایجاد دستهای جدید",
|
"filter_modal.select_filter.subtitle": "استفاده از یک دستهً موجود یا ایجاد دستهای جدید",
|
||||||
"filter_modal.select_filter.title": "پالایش این فرسته",
|
"filter_modal.select_filter.title": "پالایش این فرسته",
|
||||||
"filter_modal.title.status": "پالایش یک فرسته",
|
"filter_modal.title.status": "پالایش یک فرسته",
|
||||||
|
"filter_warning.matches_filter": "مطابق با پالایهٔ «<span>{title}</span>»",
|
||||||
"filtered_notifications_banner.pending_requests": "از {count, plural, =0 {هیچکسی} one {فردی} other {# نفر}} که ممکن است بشناسید",
|
"filtered_notifications_banner.pending_requests": "از {count, plural, =0 {هیچکسی} one {فردی} other {# نفر}} که ممکن است بشناسید",
|
||||||
"filtered_notifications_banner.title": "آگاهیهای پالوده",
|
"filtered_notifications_banner.title": "آگاهیهای پالوده",
|
||||||
"firehose.all": "همه",
|
"firehose.all": "همه",
|
||||||
|
@ -368,7 +371,11 @@
|
||||||
"home.pending_critical_update.link": "دیدن بهروز رسانیها",
|
"home.pending_critical_update.link": "دیدن بهروز رسانیها",
|
||||||
"home.pending_critical_update.title": "بهروز رسانی امنیتی بحرانی موجود است!",
|
"home.pending_critical_update.title": "بهروز رسانی امنیتی بحرانی موجود است!",
|
||||||
"home.show_announcements": "نمایش اعلامیهها",
|
"home.show_announcements": "نمایش اعلامیهها",
|
||||||
|
"ignore_notifications_modal.disclaimer": "ماستودون نمی تواند به کاربران اطلاع دهد که اعلان های آنها را نادیده گرفته اید. نادیده گرفتن اعلان ها مانع از ارسال خود پیام ها نمی شود.",
|
||||||
"ignore_notifications_modal.filter_instead": "به جایش پالوده شود",
|
"ignore_notifications_modal.filter_instead": "به جایش پالوده شود",
|
||||||
|
"ignore_notifications_modal.filter_to_act_users": "همچنان میتوانید کاربران را بپذیرید، رد کنید یا گزارش دهید",
|
||||||
|
"ignore_notifications_modal.filter_to_avoid_confusion": "فیلتر کردن به جلوگیری از سردرگمی احتمالی کمک می کند",
|
||||||
|
"ignore_notifications_modal.filter_to_review_separately": "می توانید اعلان های فیلتر شده را به طور جداگانه بررسی کنید",
|
||||||
"ignore_notifications_modal.ignore": "چشمپوشی از آگاهیها",
|
"ignore_notifications_modal.ignore": "چشمپوشی از آگاهیها",
|
||||||
"ignore_notifications_modal.limited_accounts_title": "چشمپوشی از آگاهیهای حسابهای نظارت شده؟",
|
"ignore_notifications_modal.limited_accounts_title": "چشمپوشی از آگاهیهای حسابهای نظارت شده؟",
|
||||||
"ignore_notifications_modal.new_accounts_title": "چشمپوشی از آگاهیهای حسابهای جدید؟",
|
"ignore_notifications_modal.new_accounts_title": "چشمپوشی از آگاهیهای حسابهای جدید؟",
|
||||||
|
@ -385,7 +392,7 @@
|
||||||
"interaction_modal.on_another_server": "روی کارسازی دیگر",
|
"interaction_modal.on_another_server": "روی کارسازی دیگر",
|
||||||
"interaction_modal.on_this_server": "روی این کارساز",
|
"interaction_modal.on_this_server": "روی این کارساز",
|
||||||
"interaction_modal.sign_in": "شما در این کارساز وارد نشدهاید. حسابتان کجا میزبانی شده؟",
|
"interaction_modal.sign_in": "شما در این کارساز وارد نشدهاید. حسابتان کجا میزبانی شده؟",
|
||||||
"interaction_modal.sign_in_hint": "نکته: میزبانتان، پایگاه وبیست که رویش ثبتنام کردهاید. اگر به خاطر نمیآورید، به رایانامهٔ خوشآمد در صندوق ورودیتان بنگرید. همچنین میتوانید نام کاربری کاملتان (چون @Mastodon@mastodon.social) را وارد کنید!",
|
"interaction_modal.sign_in_hint": "نکته: میزبانتان، پایگاه وبیست که رویش ثبتنام کردهاید. اگر به خاطر نمیآورید، به رایانامهٔ خوشآمد در صندوق ورودیتان بنگرید. همچنین میتوانید نام کاربری کاملتان را وارد کنید! (مانند @Mastodon@mastodon.social)",
|
||||||
"interaction_modal.title.favourite": "فرستههای برگزیدهٔ {name}",
|
"interaction_modal.title.favourite": "فرستههای برگزیدهٔ {name}",
|
||||||
"interaction_modal.title.follow": "پیگیری {name}",
|
"interaction_modal.title.follow": "پیگیری {name}",
|
||||||
"interaction_modal.title.reblog": "تقویت فرستهٔ {name}",
|
"interaction_modal.title.reblog": "تقویت فرستهٔ {name}",
|
||||||
|
@ -493,6 +500,9 @@
|
||||||
"navigation_bar.security": "امنیت",
|
"navigation_bar.security": "امنیت",
|
||||||
"not_signed_in_indicator.not_signed_in": "برای دسترسی به این منبع باید وارد شوید.",
|
"not_signed_in_indicator.not_signed_in": "برای دسترسی به این منبع باید وارد شوید.",
|
||||||
"notification.admin.report": "{name}، {target} را گزارش داد",
|
"notification.admin.report": "{name}، {target} را گزارش داد",
|
||||||
|
"notification.admin.report_account": "{name} {count, plural, one {یک پست} other {پست}} از {target} برای {category} را گزارش داد",
|
||||||
|
"notification.admin.report_account_other": "{name} {count, plural, one {یک پست} other {پست}} از {target} را گزارش داد",
|
||||||
|
"notification.admin.report_statuses": "{name} {target} برای {category} را گزارش داد",
|
||||||
"notification.admin.report_statuses_other": "{name}، {target} را گزارش داد",
|
"notification.admin.report_statuses_other": "{name}، {target} را گزارش داد",
|
||||||
"notification.admin.sign_up": "{name} ثبت نام کرد",
|
"notification.admin.sign_up": "{name} ثبت نام کرد",
|
||||||
"notification.admin.sign_up.name_and_others": "{name} و {count, plural, one {# نفر دیگر} other {# نفر دیگر}} ثبتنام کردند",
|
"notification.admin.sign_up.name_and_others": "{name} و {count, plural, one {# نفر دیگر} other {# نفر دیگر}} ثبتنام کردند",
|
||||||
|
@ -522,18 +532,26 @@
|
||||||
"notification.reblog": "{name} فرستهتان را تقویت کرد",
|
"notification.reblog": "{name} فرستهتان را تقویت کرد",
|
||||||
"notification.reblog.name_and_others_with_link": "{name} و <a>{count, plural, one {# نفر دیگر} other {# نفر دیگر}}</a> فرستهتان را تقویت کردند",
|
"notification.reblog.name_and_others_with_link": "{name} و <a>{count, plural, one {# نفر دیگر} other {# نفر دیگر}}</a> فرستهتان را تقویت کردند",
|
||||||
"notification.relationships_severance_event": "قطع ارتباط با {name}",
|
"notification.relationships_severance_event": "قطع ارتباط با {name}",
|
||||||
|
"notification.relationships_severance_event.account_suspension": "یک سرپرست از {from} {target} را به حالت تعلیق درآورده است، به این معنی که دیگر نمیتوانید بهروزرسانیها را از آنها دریافت کنید یا با آنها تعامل داشته باشید.",
|
||||||
|
"notification.relationships_severance_event.domain_block": "یک سرپرست از {from} {target} را مسدود کرده است، از جمله {followersCount} از دنبالکنندگان شما و {followingCount, plural, one {حساب} other {حساب}} که دنبال میکنید.",
|
||||||
"notification.relationships_severance_event.learn_more": "بیشتر بدانید",
|
"notification.relationships_severance_event.learn_more": "بیشتر بدانید",
|
||||||
|
"notification.relationships_severance_event.user_domain_block": "شما {target} را مسدود کردهاید، {followersCount} از دنبالکنندگان خود و {followingCount, plural, one {حساب} other {حساب}} که دنبال میکنید را حذف کردهاید.",
|
||||||
"notification.status": "{name} چیزی فرستاد",
|
"notification.status": "{name} چیزی فرستاد",
|
||||||
"notification.update": "{name} فرستهای را ویرایش کرد",
|
"notification.update": "{name} فرستهای را ویرایش کرد",
|
||||||
"notification_requests.accept": "پذیرش",
|
"notification_requests.accept": "پذیرش",
|
||||||
|
"notification_requests.accept_multiple": "{count, plural, one {پذیرش درخواست…} other {پذیرش درخواستها…}}",
|
||||||
"notification_requests.confirm_accept_multiple.button": "پذیرش {count, plural,one {درخواست} other {درخواستها}}",
|
"notification_requests.confirm_accept_multiple.button": "پذیرش {count, plural,one {درخواست} other {درخواستها}}",
|
||||||
"notification_requests.confirm_accept_multiple.message": "در حال پذیرش {count, plural,one {یک}other {#}} درخواست آگاهی هستید. مطمئنید که میخواهید ادامه دهید؟",
|
"notification_requests.confirm_accept_multiple.message": "در حال پذیرش {count, plural,one {یک}other {#}} درخواست آگاهی هستید. مطمئنید که میخواهید ادامه دهید؟",
|
||||||
"notification_requests.confirm_accept_multiple.title": "پذیرش درخواستهای آگاهی؟",
|
"notification_requests.confirm_accept_multiple.title": "پذیرش درخواستهای آگاهی؟",
|
||||||
"notification_requests.confirm_dismiss_multiple.button": "رد {count, plural,one {درخواست} other {درخواستها}}",
|
"notification_requests.confirm_dismiss_multiple.button": "رد {count, plural,one {درخواست} other {درخواستها}}",
|
||||||
|
"notification_requests.confirm_dismiss_multiple.message": "شما در شرف رد کردن {count, plural, one {یک درخواست آگاهی} other {درخواست آگاهی}} هستید. دیگر نمی توانید به راحتی به {count, plural, one {آن} other {آنها}} دسترسی پیدا کنید. آیا مطمئن هستید که می خواهید ادامه دهید؟",
|
||||||
"notification_requests.confirm_dismiss_multiple.title": "رد کردن درخواستهای آگاهی؟",
|
"notification_requests.confirm_dismiss_multiple.title": "رد کردن درخواستهای آگاهی؟",
|
||||||
"notification_requests.dismiss": "دورانداختن",
|
"notification_requests.dismiss": "دورانداختن",
|
||||||
|
"notification_requests.dismiss_multiple": "{count, plural, one {دورانداختن درخواست…} other {دورانداختن درخواستها…}}",
|
||||||
"notification_requests.edit_selection": "ویرایش",
|
"notification_requests.edit_selection": "ویرایش",
|
||||||
"notification_requests.exit_selection": "انجام شد",
|
"notification_requests.exit_selection": "انجام شد",
|
||||||
|
"notification_requests.explainer_for_limited_account": "اعلانهای این حساب فیلتر شدهاند زیرا حساب توسط یک ناظر محدود شده است.",
|
||||||
|
"notification_requests.explainer_for_limited_remote_account": "اعلانهای این حساب فیلتر شدهاند زیرا حساب یا سرور آن توسط ناظر محدود شده است.",
|
||||||
"notification_requests.maximize": "بیشنه",
|
"notification_requests.maximize": "بیشنه",
|
||||||
"notification_requests.minimize_banner": "کمینه کردن بیرق آگاهیهای پالوده",
|
"notification_requests.minimize_banner": "کمینه کردن بیرق آگاهیهای پالوده",
|
||||||
"notification_requests.notifications_from": "آگاهیها از {name}",
|
"notification_requests.notifications_from": "آگاهیها از {name}",
|
||||||
|
@ -600,8 +618,8 @@
|
||||||
"onboarding.actions.go_to_home": "Go to your home feed",
|
"onboarding.actions.go_to_home": "Go to your home feed",
|
||||||
"onboarding.compose.template": "سلام #ماستودون!",
|
"onboarding.compose.template": "سلام #ماستودون!",
|
||||||
"onboarding.follows.empty": "متأسفانه هماکنون نتیجهای قابل نمایش نیست. میتوانید استفاده از جستوجو یا مرور صفحهٔ کاوش را برای یافتن افرادی برای پیگیری آزموده یا دوباره تلاش کنید.",
|
"onboarding.follows.empty": "متأسفانه هماکنون نتیجهای قابل نمایش نیست. میتوانید استفاده از جستوجو یا مرور صفحهٔ کاوش را برای یافتن افرادی برای پیگیری آزموده یا دوباره تلاش کنید.",
|
||||||
"onboarding.follows.lead": "You curate your own home feed. The more people you follow, the more active and interesting it will be. These profiles may be a good starting point—you can always unfollow them later!",
|
"onboarding.follows.lead": "فید خانگی شما اولین راه برای تجربه ماستودون است. هرچه افراد بیشتری را دنبال کنید، فعال تر و جالب تر خواهد بود. برای شروع، در اینجا چند پیشنهاد وجود دارد:",
|
||||||
"onboarding.follows.title": "Popular on Mastodon",
|
"onboarding.follows.title": "فید خانه خود را شخصی کنید",
|
||||||
"onboarding.profile.discoverable": "نمایه خود را قابل نمایش کنید",
|
"onboarding.profile.discoverable": "نمایه خود را قابل نمایش کنید",
|
||||||
"onboarding.profile.discoverable_hint": "خواستهاید روی ماستودون کشف شوید. ممکن است فرستههایتان در نتیحهٔ جستوجوها و فرستههای داغ ظاهر شده و نمایهتان به افرادی با علایق مشابهتان پیشنهاد شود.",
|
"onboarding.profile.discoverable_hint": "خواستهاید روی ماستودون کشف شوید. ممکن است فرستههایتان در نتیحهٔ جستوجوها و فرستههای داغ ظاهر شده و نمایهتان به افرادی با علایق مشابهتان پیشنهاد شود.",
|
||||||
"onboarding.profile.display_name": "نام نمایشی",
|
"onboarding.profile.display_name": "نام نمایشی",
|
||||||
|
@ -617,17 +635,17 @@
|
||||||
"onboarding.share.message": "من {username} روی #ماستودون هستم! مرا در {url} پیبگیرید",
|
"onboarding.share.message": "من {username} روی #ماستودون هستم! مرا در {url} پیبگیرید",
|
||||||
"onboarding.share.next_steps": "گامهای ممکن بعدی:",
|
"onboarding.share.next_steps": "گامهای ممکن بعدی:",
|
||||||
"onboarding.share.title": "همرسانی نمایهتان",
|
"onboarding.share.title": "همرسانی نمایهتان",
|
||||||
"onboarding.start.lead": "Your new Mastodon account is ready to go. Here's how you can make the most of it:",
|
"onboarding.start.lead": "شما اکنون بخشی از ماستودون هستید، یک پلتفرم رسانه اجتماعی منحصر به فرد و غیرمتمرکز که در آن شما - نه یک الگوریتم - تجربه خود را مدیریت می کنید. بیایید شما را در این مرز اجتماعی جدید شروع کنیم:",
|
||||||
"onboarding.start.skip": "Want to skip right ahead?",
|
"onboarding.start.skip": "برای شروع به کمک نیاز ندارید؟",
|
||||||
"onboarding.start.title": "انجامش دادید!",
|
"onboarding.start.title": "انجامش دادید!",
|
||||||
"onboarding.steps.follow_people.body": "You curate your own feed. Lets fill it with interesting people.",
|
"onboarding.steps.follow_people.body": "دنبال کردن افراد جالب هدف ماستودون است.",
|
||||||
"onboarding.steps.follow_people.title": "Follow {count, plural, one {one person} other {# people}}",
|
"onboarding.steps.follow_people.title": "فید خانه خود را شخصی کنید",
|
||||||
"onboarding.steps.publish_status.body": "Say hello to the world.",
|
"onboarding.steps.publish_status.body": "با متن، عکس، ویدیو یا نظرسنجی به دنیا سلام کنید {emoji}",
|
||||||
"onboarding.steps.publish_status.title": "نخستین فرستهتان را بنویسید",
|
"onboarding.steps.publish_status.title": "نخستین فرستهتان را بنویسید",
|
||||||
"onboarding.steps.setup_profile.body": "Others are more likely to interact with you with a filled out profile.",
|
"onboarding.steps.setup_profile.body": "با داشتن یک نمایه جامع، تعاملات خود را تقویت کنید.",
|
||||||
"onboarding.steps.setup_profile.title": "Customize your profile",
|
"onboarding.steps.setup_profile.title": "پروفایل خود را شخصی سازی کنید",
|
||||||
"onboarding.steps.share_profile.body": "Let your friends know how to find you on Mastodon!",
|
"onboarding.steps.share_profile.body": "به دوستان خود اطلاع دهید که چگونه شما را در ماستودون پیدا کنند",
|
||||||
"onboarding.steps.share_profile.title": "Share your profile",
|
"onboarding.steps.share_profile.title": "نمایه ماستودون خود را به اشتراک بگذارید",
|
||||||
"onboarding.tips.2fa": "<strong>آیا میدانستید؟</strong> میتوانید با پریایی هویتسنجی دو عاملی در تنظیمات حساب، حسابتان را ایمن کنید؟ این قابلیت با هر نرمافزار TOTP دلخواه کار کرده و نیازی به شماره تلفن ندارد!",
|
"onboarding.tips.2fa": "<strong>آیا میدانستید؟</strong> میتوانید با پریایی هویتسنجی دو عاملی در تنظیمات حساب، حسابتان را ایمن کنید؟ این قابلیت با هر نرمافزار TOTP دلخواه کار کرده و نیازی به شماره تلفن ندارد!",
|
||||||
"onboarding.tips.accounts_from_other_servers": "<strong>آیا میدانستید؟</strong> از آنجا که ماستودون نامتمرکز است، برخی نمایهها که به آنها برمیخورید روی کارسازهایی متفاوت از شما میزبانی میشوند و باز هم میتوانید بدون مشکل با آنها تعامل داشته باشید! کارسازشان در نیمه دوم نام کاربریشان است!",
|
"onboarding.tips.accounts_from_other_servers": "<strong>آیا میدانستید؟</strong> از آنجا که ماستودون نامتمرکز است، برخی نمایهها که به آنها برمیخورید روی کارسازهایی متفاوت از شما میزبانی میشوند و باز هم میتوانید بدون مشکل با آنها تعامل داشته باشید! کارسازشان در نیمه دوم نام کاربریشان است!",
|
||||||
"onboarding.tips.migration": "<strong>آیا میدانستید؟</strong> اگر احساس میکنید {domain} انتخاب کارساز خوبی برای آیندهتان نیست، میتوانید بدون از دست دادن پیگیرهایتان به کارساز ماستودون دیگری مهاجرت کنید. حتا میتوانید کارساز خودتان را میزبانی کنید!",
|
"onboarding.tips.migration": "<strong>آیا میدانستید؟</strong> اگر احساس میکنید {domain} انتخاب کارساز خوبی برای آیندهتان نیست، میتوانید بدون از دست دادن پیگیرهایتان به کارساز ماستودون دیگری مهاجرت کنید. حتا میتوانید کارساز خودتان را میزبانی کنید!",
|
||||||
|
@ -751,8 +769,11 @@
|
||||||
"server_banner.about_active_users": "افرادی که در ۳۰ روز گذشته از این کارساز استفاده کردهاند (کاربران فعّال ماهانه)",
|
"server_banner.about_active_users": "افرادی که در ۳۰ روز گذشته از این کارساز استفاده کردهاند (کاربران فعّال ماهانه)",
|
||||||
"server_banner.active_users": "کاربر فعّال",
|
"server_banner.active_users": "کاربر فعّال",
|
||||||
"server_banner.administered_by": "به مدیریت:",
|
"server_banner.administered_by": "به مدیریت:",
|
||||||
|
"server_banner.is_one_of_many": "{domain} یکی از بسیاری از سرورهای مستقل ماستودون است که می توانید از آن برای شرکت در fediverse استفاده کنید.",
|
||||||
"server_banner.server_stats": "آمار کارساز:",
|
"server_banner.server_stats": "آمار کارساز:",
|
||||||
"sign_in_banner.create_account": "ایجاد حساب",
|
"sign_in_banner.create_account": "ایجاد حساب",
|
||||||
|
"sign_in_banner.follow_anyone": "هر کسی را در سراسر فدیورس دنبال کنید و همه را به ترتیب زمانی ببینید. هیچ الگوریتم، تبلیغات یا طعمه کلیکی در چشم نیست.",
|
||||||
|
"sign_in_banner.mastodon_is": "ماستودون بهترین راه برای پیگیری اتفاقات است.",
|
||||||
"sign_in_banner.sign_in": "ورود",
|
"sign_in_banner.sign_in": "ورود",
|
||||||
"sign_in_banner.sso_redirect": "ورود یا ثبت نام",
|
"sign_in_banner.sso_redirect": "ورود یا ثبت نام",
|
||||||
"status.admin_account": "گشودن واسط مدیریت برای @{name}",
|
"status.admin_account": "گشودن واسط مدیریت برای @{name}",
|
||||||
|
@ -804,7 +825,7 @@
|
||||||
"status.sensitive_warning": "محتوای حساس",
|
"status.sensitive_warning": "محتوای حساس",
|
||||||
"status.share": "همرسانی",
|
"status.share": "همرسانی",
|
||||||
"status.show_less_all": "نمایش کمتر همه",
|
"status.show_less_all": "نمایش کمتر همه",
|
||||||
"status.show_more_all": "نمایش بیشتر همه",
|
"status.show_more_all": "نمایش بیشتر همه",
|
||||||
"status.show_original": "نمایش اصلی",
|
"status.show_original": "نمایش اصلی",
|
||||||
"status.title.with_attachments": "{user} {attachmentCount, plural, one {یک پیوست} other {{attachmentCount} پیوست}} فرستاد",
|
"status.title.with_attachments": "{user} {attachmentCount, plural, one {یک پیوست} other {{attachmentCount} پیوست}} فرستاد",
|
||||||
"status.translate": "ترجمه",
|
"status.translate": "ترجمه",
|
||||||
|
@ -834,6 +855,11 @@
|
||||||
"upload_error.poll": "بارگذاری پرونده در نظرسنجیها مجاز نیست.",
|
"upload_error.poll": "بارگذاری پرونده در نظرسنجیها مجاز نیست.",
|
||||||
"upload_form.audio_description": "برای ناشنوایان توصیفش کنید",
|
"upload_form.audio_description": "برای ناشنوایان توصیفش کنید",
|
||||||
"upload_form.description": "برای کمبینایان توصیفش کنید",
|
"upload_form.description": "برای کمبینایان توصیفش کنید",
|
||||||
|
"upload_form.drag_and_drop.instructions": "برای دریافت پیوست رسانه، space را فشار دهید یا وارد کنید. در حین کشیدن، از کلیدهای جهت دار برای حرکت دادن پیوست رسانه در هر جهت معین استفاده کنید. برای رها کردن ضمیمه رسانه در موقعیت جدید خود، مجدداً space یا enter را فشار دهید، یا برای لغو، escape را فشار دهید.",
|
||||||
|
"upload_form.drag_and_drop.on_drag_cancel": "کشیدن لغو شد. پیوست رسانه {item} حذف شد.",
|
||||||
|
"upload_form.drag_and_drop.on_drag_end": "پیوست رسانه {item} حذف شد.",
|
||||||
|
"upload_form.drag_and_drop.on_drag_over": "پیوست رسانه {item} منتقل شد.",
|
||||||
|
"upload_form.drag_and_drop.on_drag_start": "پیوست رسانه {item} برداشته شد.",
|
||||||
"upload_form.edit": "ویرایش",
|
"upload_form.edit": "ویرایش",
|
||||||
"upload_form.thumbnail": "تغییر بندانگشتی",
|
"upload_form.thumbnail": "تغییر بندانگشتی",
|
||||||
"upload_form.video_description": "برای کمبینایان یا ناشنوایان توصیفش کنید",
|
"upload_form.video_description": "برای کمبینایان یا ناشنوایان توصیفش کنید",
|
||||||
|
@ -847,7 +873,7 @@
|
||||||
"upload_modal.hint": "حتی اگر تصویر بریده یا کوچک شود، نقطهٔ کانونی آن همیشه دیده خواهد شد. نقطهٔ کانونی را با کلیک یا جابهجا کردن آن تنظیم کنید.",
|
"upload_modal.hint": "حتی اگر تصویر بریده یا کوچک شود، نقطهٔ کانونی آن همیشه دیده خواهد شد. نقطهٔ کانونی را با کلیک یا جابهجا کردن آن تنظیم کنید.",
|
||||||
"upload_modal.preparing_ocr": "در حال آماده سازی OCR…",
|
"upload_modal.preparing_ocr": "در حال آماده سازی OCR…",
|
||||||
"upload_modal.preview_label": "پیشنمایش ({ratio})",
|
"upload_modal.preview_label": "پیشنمایش ({ratio})",
|
||||||
"upload_progress.label": "در حال بارگذاری…",
|
"upload_progress.label": "در حال بارگذاری...",
|
||||||
"upload_progress.processing": "در حال پردازش…",
|
"upload_progress.processing": "در حال پردازش…",
|
||||||
"username.taken": "این نام کاربری گرفته شده. نام دیگری امتحان کنید",
|
"username.taken": "این نام کاربری گرفته شده. نام دیگری امتحان کنید",
|
||||||
"video.close": "بستن ویدیو",
|
"video.close": "بستن ویدیو",
|
||||||
|
|
|
@ -35,8 +35,8 @@
|
||||||
"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} seuraajaa}}",
|
"account.followers_counter": "{count, plural, one {{counter} seuraaja} other {{counter} seuraajaa}}",
|
||||||
"account.following": "Seuratut",
|
"account.following": "Seurattavat",
|
||||||
"account.following_counter": "{count, plural, one {{counter} seurattu} other {{counter} seurattua}}",
|
"account.following_counter": "{count, plural, one {{counter} seurattava} other {{counter} seurattavaa}}",
|
||||||
"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.go_to_profile": "Siirry profiiliin",
|
"account.go_to_profile": "Siirry profiiliin",
|
||||||
"account.hide_reblogs": "Piilota käyttäjän @{name} tehostukset",
|
"account.hide_reblogs": "Piilota käyttäjän @{name} tehostukset",
|
||||||
|
@ -223,8 +223,8 @@
|
||||||
"domain_block_modal.they_cant_follow": "Kukaan tältä palvelimelta ei voi seurata sinua.",
|
"domain_block_modal.they_cant_follow": "Kukaan tältä palvelimelta ei voi seurata sinua.",
|
||||||
"domain_block_modal.they_wont_know": "Hän ei saa tietää tulleensa estetyksi.",
|
"domain_block_modal.they_wont_know": "Hän ei saa tietää tulleensa estetyksi.",
|
||||||
"domain_block_modal.title": "Estetäänkö verkkotunnus?",
|
"domain_block_modal.title": "Estetäänkö verkkotunnus?",
|
||||||
"domain_block_modal.you_will_lose_num_followers": "Menetät {followersCount, plural, one {{followersCountDisplay} seuraajasi} other {{followersCountDisplay} seuraajaasi}} ja {followingCount, plural, one {{followingCountDisplay} seurattusi} other {{followingCountDisplay} seurattuasi}}.",
|
"domain_block_modal.you_will_lose_num_followers": "Menetät {followersCount, plural, one {{followersCountDisplay} seuraajasi} other {{followersCountDisplay} seuraajaasi}} ja {followingCount, plural, one {{followingCountDisplay} seurattavasi} other {{followingCountDisplay} seurattavaasi}}.",
|
||||||
"domain_block_modal.you_will_lose_relationships": "Menetät kaikki tämän palvelimen seuraajasi ja seurattusi.",
|
"domain_block_modal.you_will_lose_relationships": "Menetät kaikki tämän palvelimen seuraajasi ja seurattavasi.",
|
||||||
"domain_block_modal.you_wont_see_posts": "Et enää näe julkaisuja etkä ilmoituksia tämän palvelimen käyttäjiltä.",
|
"domain_block_modal.you_wont_see_posts": "Et enää näe julkaisuja etkä ilmoituksia tämän palvelimen käyttäjiltä.",
|
||||||
"domain_pill.activitypub_lets_connect": "Sen avulla voit muodostaa yhteyden ja olla vuorovaikutuksessa ihmisten kanssa, ei vain Mastodonissa vaan myös muissa sosiaalisissa sovelluksissa.",
|
"domain_pill.activitypub_lets_connect": "Sen avulla voit muodostaa yhteyden ja olla vuorovaikutuksessa ihmisten kanssa, ei vain Mastodonissa vaan myös muissa sosiaalisissa sovelluksissa.",
|
||||||
"domain_pill.activitypub_like_language": "ActivityPub on kuin kieli, jota Mastodon puhuu muiden sosiaalisten verkostojen kanssa.",
|
"domain_pill.activitypub_like_language": "ActivityPub on kuin kieli, jota Mastodon puhuu muiden sosiaalisten verkostojen kanssa.",
|
||||||
|
@ -330,7 +330,7 @@
|
||||||
"follow_suggestions.similar_to_recently_followed_longer": "Samankaltainen kuin äskettäin seuraamasi profiilit",
|
"follow_suggestions.similar_to_recently_followed_longer": "Samankaltainen kuin äskettäin seuraamasi profiilit",
|
||||||
"follow_suggestions.view_all": "Näytä kaikki",
|
"follow_suggestions.view_all": "Näytä kaikki",
|
||||||
"follow_suggestions.who_to_follow": "Ehdotuksia seurattavaksi",
|
"follow_suggestions.who_to_follow": "Ehdotuksia seurattavaksi",
|
||||||
"followed_tags": "Seuratut aihetunnisteet",
|
"followed_tags": "Seurattavat aihetunnisteet",
|
||||||
"footer.about": "Tietoja",
|
"footer.about": "Tietoja",
|
||||||
"footer.directory": "Profiilihakemisto",
|
"footer.directory": "Profiilihakemisto",
|
||||||
"footer.get_app": "Hanki sovellus",
|
"footer.get_app": "Hanki sovellus",
|
||||||
|
@ -357,10 +357,10 @@
|
||||||
"hashtag.unfollow": "Lopeta aihetunnisteen seuraaminen",
|
"hashtag.unfollow": "Lopeta aihetunnisteen seuraaminen",
|
||||||
"hashtags.and_other": "…ja {count, plural, other {# lisää}}",
|
"hashtags.and_other": "…ja {count, plural, other {# lisää}}",
|
||||||
"hints.profiles.followers_may_be_missing": "Tämän profiilin seuraajia saattaa puuttua.",
|
"hints.profiles.followers_may_be_missing": "Tämän profiilin seuraajia saattaa puuttua.",
|
||||||
"hints.profiles.follows_may_be_missing": "Tämän profiilin seurattuja saattaa puuttua.",
|
"hints.profiles.follows_may_be_missing": "Tämän profiilin seurattavia saattaa puuttua.",
|
||||||
"hints.profiles.posts_may_be_missing": "Tämän profiilin julkaisuja saattaa puuttua.",
|
"hints.profiles.posts_may_be_missing": "Tämän profiilin julkaisuja saattaa puuttua.",
|
||||||
"hints.profiles.see_more_followers": "Näytä lisää seuraajia palvelimella {domain}",
|
"hints.profiles.see_more_followers": "Näytä lisää seuraajia palvelimella {domain}",
|
||||||
"hints.profiles.see_more_follows": "Näytä lisää seurattuja palvelimella {domain}",
|
"hints.profiles.see_more_follows": "Näytä lisää seurattavia palvelimella {domain}",
|
||||||
"hints.profiles.see_more_posts": "Näytä lisää julkaisuja palvelimella {domain}",
|
"hints.profiles.see_more_posts": "Näytä lisää julkaisuja palvelimella {domain}",
|
||||||
"hints.threads.replies_may_be_missing": "Muiden palvelinten vastauksia saattaa puuttua.",
|
"hints.threads.replies_may_be_missing": "Muiden palvelinten vastauksia saattaa puuttua.",
|
||||||
"hints.threads.see_more": "Näytä lisää vastauksia palvelimella {domain}",
|
"hints.threads.see_more": "Näytä lisää vastauksia palvelimella {domain}",
|
||||||
|
@ -452,7 +452,7 @@
|
||||||
"lists.exclusive": "Piilota nämä julkaisut kotisyötteestä",
|
"lists.exclusive": "Piilota nämä julkaisut kotisyötteestä",
|
||||||
"lists.new.create": "Lisää lista",
|
"lists.new.create": "Lisää lista",
|
||||||
"lists.new.title_placeholder": "Uuden listan nimi",
|
"lists.new.title_placeholder": "Uuden listan nimi",
|
||||||
"lists.replies_policy.followed": "Jokaiselle seuratulle käyttäjälle",
|
"lists.replies_policy.followed": "Jokaiselle seurattavalle käyttäjälle",
|
||||||
"lists.replies_policy.list": "Listan jäsenille",
|
"lists.replies_policy.list": "Listan jäsenille",
|
||||||
"lists.replies_policy.none": "Ei kellekään",
|
"lists.replies_policy.none": "Ei kellekään",
|
||||||
"lists.replies_policy.title": "Näytä vastaukset:",
|
"lists.replies_policy.title": "Näytä vastaukset:",
|
||||||
|
@ -485,8 +485,8 @@
|
||||||
"navigation_bar.favourites": "Suosikit",
|
"navigation_bar.favourites": "Suosikit",
|
||||||
"navigation_bar.filters": "Mykistetyt sanat",
|
"navigation_bar.filters": "Mykistetyt sanat",
|
||||||
"navigation_bar.follow_requests": "Seurantapyynnöt",
|
"navigation_bar.follow_requests": "Seurantapyynnöt",
|
||||||
"navigation_bar.followed_tags": "Seuratut aihetunnisteet",
|
"navigation_bar.followed_tags": "Seurattavat aihetunnisteet",
|
||||||
"navigation_bar.follows_and_followers": "Seuratut ja seuraajat",
|
"navigation_bar.follows_and_followers": "Seurattavat ja seuraajat",
|
||||||
"navigation_bar.lists": "Listat",
|
"navigation_bar.lists": "Listat",
|
||||||
"navigation_bar.logout": "Kirjaudu ulos",
|
"navigation_bar.logout": "Kirjaudu ulos",
|
||||||
"navigation_bar.moderation": "Moderointi",
|
"navigation_bar.moderation": "Moderointi",
|
||||||
|
@ -533,9 +533,9 @@
|
||||||
"notification.reblog.name_and_others_with_link": "{name} ja <a>{count, plural, one {# muu} other {# muuta}}</a> tehostivat julkaisuasi",
|
"notification.reblog.name_and_others_with_link": "{name} ja <a>{count, plural, one {# muu} other {# muuta}}</a> tehostivat julkaisuasi",
|
||||||
"notification.relationships_severance_event": "Menetettiin yhteydet palvelimeen {name}",
|
"notification.relationships_severance_event": "Menetettiin yhteydet palvelimeen {name}",
|
||||||
"notification.relationships_severance_event.account_suspension": "Palvelimen {from} ylläpitäjä on jäädyttänyt palvelimen {target} vuorovaikutuksen. Enää et voi siis vastaanottaa päivityksiä heiltä tai olla yhteyksissä heidän kanssaan.",
|
"notification.relationships_severance_event.account_suspension": "Palvelimen {from} ylläpitäjä on jäädyttänyt palvelimen {target} vuorovaikutuksen. Enää et voi siis vastaanottaa päivityksiä heiltä tai olla yhteyksissä heidän kanssaan.",
|
||||||
"notification.relationships_severance_event.domain_block": "Palvelimen {from} ylläpitäjä on estänyt palvelimen {target} vuorovaikutuksen – mukaan lukien {followersCount} seuraajistasi ja {followingCount, plural, one {# seuratuistasi} other {# seuratuistasi}}.",
|
"notification.relationships_severance_event.domain_block": "Palvelimen {from} ylläpitäjä on estänyt palvelimen {target} vuorovaikutuksen – mukaan lukien {followersCount} seuraajistasi ja {followingCount, plural, one {# seurattavistasi} other {# seurattavistasi}}.",
|
||||||
"notification.relationships_severance_event.learn_more": "Lue lisää",
|
"notification.relationships_severance_event.learn_more": "Lue lisää",
|
||||||
"notification.relationships_severance_event.user_domain_block": "Olet estänyt verkkotunnuksen {target}, mikä poisti {followersCount} seuraajistasi ja {followingCount, plural, one {# seuratuistasi} other {# seuratuistasi}}.",
|
"notification.relationships_severance_event.user_domain_block": "Olet estänyt palvelimen {target}, mikä poisti {followersCount} seuraajistasi ja {followingCount, plural, one {# seurattavistasi} other {# seurattavistasi}}.",
|
||||||
"notification.status": "{name} julkaisi juuri",
|
"notification.status": "{name} julkaisi juuri",
|
||||||
"notification.update": "{name} muokkasi julkaisua",
|
"notification.update": "{name} muokkasi julkaisua",
|
||||||
"notification_requests.accept": "Hyväksy",
|
"notification_requests.accept": "Hyväksy",
|
||||||
|
|
|
@ -34,7 +34,9 @@
|
||||||
"account.follow_back": "Sundan pabalik",
|
"account.follow_back": "Sundan pabalik",
|
||||||
"account.followers": "Mga tagasunod",
|
"account.followers": "Mga tagasunod",
|
||||||
"account.followers.empty": "Wala pang sumusunod sa tagagamit na ito.",
|
"account.followers.empty": "Wala pang sumusunod sa tagagamit na ito.",
|
||||||
|
"account.followers_counter": "{count, plural, one {{counter} tagasunod} other {{counter} tagasunod}}",
|
||||||
"account.following": "Sinusundan",
|
"account.following": "Sinusundan",
|
||||||
|
"account.following_counter": "{count, plural, one {{counter} sinusundan} other {{counter} sinusundan}}",
|
||||||
"account.follows.empty": "Wala pang sinusundan ang tagagamit na ito.",
|
"account.follows.empty": "Wala pang sinusundan ang tagagamit na ito.",
|
||||||
"account.go_to_profile": "Pumunta sa profile",
|
"account.go_to_profile": "Pumunta sa profile",
|
||||||
"account.hide_reblogs": "Itago ang mga pagpapalakas mula sa {name}",
|
"account.hide_reblogs": "Itago ang mga pagpapalakas mula sa {name}",
|
||||||
|
@ -46,13 +48,21 @@
|
||||||
"account.media": "Medya",
|
"account.media": "Medya",
|
||||||
"account.mention": "Banggitin si @{name}",
|
"account.mention": "Banggitin si @{name}",
|
||||||
"account.moved_to": "Ipinahihiwatig ni {name} na ang kanilang bagong account ngayon ay:",
|
"account.moved_to": "Ipinahihiwatig ni {name} na ang kanilang bagong account ngayon ay:",
|
||||||
|
"account.mute": "I-mute si @{name}",
|
||||||
|
"account.mute_notifications_short": "I-mute ang mga abiso",
|
||||||
|
"account.mute_short": "I-mute",
|
||||||
|
"account.muted": "Naka-mute",
|
||||||
|
"account.mutual": "Ka-mutual",
|
||||||
"account.no_bio": "Walang nakalaan na paglalarawan.",
|
"account.no_bio": "Walang nakalaan na paglalarawan.",
|
||||||
"account.open_original_page": "Buksan ang pinagmulang pahina",
|
"account.open_original_page": "Buksan ang pinagmulang pahina",
|
||||||
|
"account.posts": "Mga post",
|
||||||
"account.report": "I-ulat si/ang @{name}",
|
"account.report": "I-ulat si/ang @{name}",
|
||||||
|
"account.requested": "Naghihintay ng pag-apruba. I-click upang ikansela ang hiling sa pagsunod",
|
||||||
"account.requested_follow": "Hinihiling ni {name} na sundan ka",
|
"account.requested_follow": "Hinihiling ni {name} na sundan ka",
|
||||||
"account.share": "Ibahagi ang profile ni @{name}",
|
"account.share": "Ibahagi ang profile ni @{name}",
|
||||||
"account.show_reblogs": "Ipakita ang mga pagpapalakas mula sa/kay {name}",
|
"account.show_reblogs": "Ipakita ang mga pagpapalakas mula sa/kay {name}",
|
||||||
"account.unendorse": "Huwag itampok sa profile",
|
"account.unendorse": "Huwag itampok sa profile",
|
||||||
|
"account.unfollow": "Huwag nang sundan",
|
||||||
"admin.dashboard.retention.cohort_size": "Mga bagong tagagamit",
|
"admin.dashboard.retention.cohort_size": "Mga bagong tagagamit",
|
||||||
"alert.rate_limited.message": "Mangyaring subukan muli pagkatapos ng {retry_time, time, medium}.",
|
"alert.rate_limited.message": "Mangyaring subukan muli pagkatapos ng {retry_time, time, medium}.",
|
||||||
"audio.hide": "Itago ang tunog",
|
"audio.hide": "Itago ang tunog",
|
||||||
|
@ -149,7 +159,10 @@
|
||||||
"dismissable_banner.explore_tags": "Ito ang mga sumisikat na mga hashtag sa iba't ibang bahagi ng social web ngayon. Ang mga hashtag ginagamit ng mas maraming mga iba't ibang tao ay tinataasan ng antas.",
|
"dismissable_banner.explore_tags": "Ito ang mga sumisikat na mga hashtag sa iba't ibang bahagi ng social web ngayon. Ang mga hashtag ginagamit ng mas maraming mga iba't ibang tao ay tinataasan ng antas.",
|
||||||
"dismissable_banner.public_timeline": "Ito ang mga pinakamakailang nakapublikong post mula sa mga taong nasa social web na sinusundan ng mga tao sa {domain}.",
|
"dismissable_banner.public_timeline": "Ito ang mga pinakamakailang nakapublikong post mula sa mga taong nasa social web na sinusundan ng mga tao sa {domain}.",
|
||||||
"domain_block_modal.block": "Harangan ang serbiro",
|
"domain_block_modal.block": "Harangan ang serbiro",
|
||||||
|
"domain_block_modal.they_wont_know": "Hindi nila malalaman na hinarang sila.",
|
||||||
"domain_block_modal.title": "Harangan ang domain?",
|
"domain_block_modal.title": "Harangan ang domain?",
|
||||||
|
"domain_block_modal.you_will_lose_relationships": "Mawawala ang lahat ng mga tagasunod at mga taong sinusindan mo mula sa serbirong ito.",
|
||||||
|
"domain_block_modal.you_wont_see_posts": "Hindi mo makikita ang mga post o mga abiso mula sa mga tagagamit sa serbirong ito.",
|
||||||
"domain_pill.server": "Serbiro",
|
"domain_pill.server": "Serbiro",
|
||||||
"embed.instructions": "I-embed ang post na ito sa iyong pook-sapot sa pamamagitan ng pagsipi ng kodigo sa ilalim.",
|
"embed.instructions": "I-embed ang post na ito sa iyong pook-sapot sa pamamagitan ng pagsipi ng kodigo sa ilalim.",
|
||||||
"embed.preview": "Ito ang magiging itsura:",
|
"embed.preview": "Ito ang magiging itsura:",
|
||||||
|
@ -186,6 +199,7 @@
|
||||||
"empty_column.home": "Walang laman ang timeline ng tahanan mo! Sumunod sa marami pang tao para mapunan ito.",
|
"empty_column.home": "Walang laman ang timeline ng tahanan mo! Sumunod sa marami pang tao para mapunan ito.",
|
||||||
"empty_column.list": "Wala pang laman ang listahang ito. Kapag naglathala ng mga bagong post ang mga miyembro ng listahang ito, makikita iyon dito.",
|
"empty_column.list": "Wala pang laman ang listahang ito. Kapag naglathala ng mga bagong post ang mga miyembro ng listahang ito, makikita iyon dito.",
|
||||||
"empty_column.lists": "Wala ka pang mga listahan. Kapag gumawa ka ng isa, makikita yun dito.",
|
"empty_column.lists": "Wala ka pang mga listahan. Kapag gumawa ka ng isa, makikita yun dito.",
|
||||||
|
"empty_column.notification_requests": "Malinis na lahat! Walang anuman dito. Kapag nakatanggap ka ng mga bagong abiso, makikita sila dito na batay sa iyong mga setting.",
|
||||||
"errors.unexpected_crash.report_issue": "Iulat ang isyu",
|
"errors.unexpected_crash.report_issue": "Iulat ang isyu",
|
||||||
"explore.search_results": "Mga resulta ng paghahanap",
|
"explore.search_results": "Mga resulta ng paghahanap",
|
||||||
"explore.suggested_follows": "Mga tao",
|
"explore.suggested_follows": "Mga tao",
|
||||||
|
@ -258,6 +272,7 @@
|
||||||
"navigation_bar.public_timeline": "Pinagsamang timeline",
|
"navigation_bar.public_timeline": "Pinagsamang timeline",
|
||||||
"navigation_bar.search": "Maghanap",
|
"navigation_bar.search": "Maghanap",
|
||||||
"notification.admin.report": "Iniulat ni {name} si {target}",
|
"notification.admin.report": "Iniulat ni {name} si {target}",
|
||||||
|
"notification.admin.report_statuses_other": "Iniulat ni {name} si {target}",
|
||||||
"notification.follow": "Sinundan ka ni {name}",
|
"notification.follow": "Sinundan ka ni {name}",
|
||||||
"notification.follow.name_and_others": "Sinundan ka ng/nina {name} at <a>{count, plural, one {# iba pa} other {# na iba pa}}</a>",
|
"notification.follow.name_and_others": "Sinundan ka ng/nina {name} at <a>{count, plural, one {# iba pa} other {# na iba pa}}</a>",
|
||||||
"notification.follow_request": "Hinihiling ni {name} na sundan ka",
|
"notification.follow_request": "Hinihiling ni {name} na sundan ka",
|
||||||
|
@ -267,6 +282,7 @@
|
||||||
"notification.moderation_warning": "Mayroong kang natanggap na babala sa pagtitimpi",
|
"notification.moderation_warning": "Mayroong kang natanggap na babala sa pagtitimpi",
|
||||||
"notification.relationships_severance_event.learn_more": "Matuto nang higit pa",
|
"notification.relationships_severance_event.learn_more": "Matuto nang higit pa",
|
||||||
"notification_requests.accept": "Tanggapin",
|
"notification_requests.accept": "Tanggapin",
|
||||||
|
"notification_requests.maximize": "Palakihin",
|
||||||
"notification_requests.notifications_from": "Mga abiso mula kay/sa {name}",
|
"notification_requests.notifications_from": "Mga abiso mula kay/sa {name}",
|
||||||
"notifications.clear": "Burahin mga abiso",
|
"notifications.clear": "Burahin mga abiso",
|
||||||
"notifications.clear_title": "Linisin ang mga abiso?",
|
"notifications.clear_title": "Linisin ang mga abiso?",
|
||||||
|
@ -279,7 +295,10 @@
|
||||||
"notifications.column_settings.unread_notifications.category": "Hindi Nabasang mga Abiso",
|
"notifications.column_settings.unread_notifications.category": "Hindi Nabasang mga Abiso",
|
||||||
"notifications.column_settings.update": "Mga pagbago:",
|
"notifications.column_settings.update": "Mga pagbago:",
|
||||||
"notifications.filter.all": "Lahat",
|
"notifications.filter.all": "Lahat",
|
||||||
|
"notifications.filter.boosts": "Mga pagpalakas",
|
||||||
"notifications.filter.favourites": "Mga paborito",
|
"notifications.filter.favourites": "Mga paborito",
|
||||||
|
"notifications.filter.follows": "Mga sinusundan",
|
||||||
|
"notifications.filter.mentions": "Mga pagbanggit",
|
||||||
"notifications.filter.polls": "Resulta ng botohan",
|
"notifications.filter.polls": "Resulta ng botohan",
|
||||||
"notifications.mark_as_read": "Markahan lahat ng abiso bilang nabasa na",
|
"notifications.mark_as_read": "Markahan lahat ng abiso bilang nabasa na",
|
||||||
"notifications.policy.accept": "Tanggapin",
|
"notifications.policy.accept": "Tanggapin",
|
||||||
|
@ -337,8 +356,12 @@
|
||||||
"report.thanks.title": "Ayaw mo bang makita ito?",
|
"report.thanks.title": "Ayaw mo bang makita ito?",
|
||||||
"report.thanks.title_actionable": "Salamat sa pag-uulat, titingnan namin ito.",
|
"report.thanks.title_actionable": "Salamat sa pag-uulat, titingnan namin ito.",
|
||||||
"report_notification.categories.other": "Iba pa",
|
"report_notification.categories.other": "Iba pa",
|
||||||
|
"report_notification.categories.other_sentence": "iba pa",
|
||||||
"report_notification.categories.violation": "Paglabag sa patakaran",
|
"report_notification.categories.violation": "Paglabag sa patakaran",
|
||||||
|
"report_notification.categories.violation_sentence": "paglabag sa patakaran",
|
||||||
"report_notification.open": "Buksan ang ulat",
|
"report_notification.open": "Buksan ang ulat",
|
||||||
|
"search.placeholder": "Maghanap",
|
||||||
|
"search.quick_action.go_to_account": "Pumunta sa profile {x}",
|
||||||
"search.quick_action.open_url": "Buksan ang URL sa Mastodon",
|
"search.quick_action.open_url": "Buksan ang URL sa Mastodon",
|
||||||
"search.search_or_paste": "Maghanap o ilagay ang URL",
|
"search.search_or_paste": "Maghanap o ilagay ang URL",
|
||||||
"search_popout.full_text_search_disabled_message": "Hindi magagamit sa {domain}.",
|
"search_popout.full_text_search_disabled_message": "Hindi magagamit sa {domain}.",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"about.blocks": "Serveurs modérés",
|
"about.blocks": "Serveurs modérés",
|
||||||
"about.contact": "Contact:",
|
"about.contact": "Contact :",
|
||||||
"about.disclaimer": "Mastodon est un logiciel open-source gratuit et une marque déposée de Mastodon gGmbH.",
|
"about.disclaimer": "Mastodon est un logiciel open-source gratuit et une marque déposée de Mastodon gGmbH.",
|
||||||
"about.domain_blocks.no_reason_available": "Raison non disponible",
|
"about.domain_blocks.no_reason_available": "Raison non disponible",
|
||||||
"about.domain_blocks.preamble": "Mastodon vous permet généralement de visualiser le contenu et d'interagir avec des comptes de n'importe quel serveur dans le fediverse. Voici les exceptions qui ont été faites sur ce serveur en particulier.",
|
"about.domain_blocks.preamble": "Mastodon vous permet généralement de visualiser le contenu et d'interagir avec des comptes de n'importe quel serveur dans le fediverse. Voici les exceptions qui ont été faites sur ce serveur en particulier.",
|
||||||
|
@ -85,7 +85,7 @@
|
||||||
"alert.rate_limited.title": "Débit limité",
|
"alert.rate_limited.title": "Débit limité",
|
||||||
"alert.unexpected.message": "Une erreur inattendue s’est produite.",
|
"alert.unexpected.message": "Une erreur inattendue s’est produite.",
|
||||||
"alert.unexpected.title": "Oups!",
|
"alert.unexpected.title": "Oups!",
|
||||||
"alt_text_badge.title": "Texte Alt",
|
"alt_text_badge.title": "Texte alternatif",
|
||||||
"announcement.announcement": "Annonce",
|
"announcement.announcement": "Annonce",
|
||||||
"attachments_list.unprocessed": "(non traité)",
|
"attachments_list.unprocessed": "(non traité)",
|
||||||
"audio.hide": "Masquer l'audio",
|
"audio.hide": "Masquer l'audio",
|
||||||
|
@ -93,10 +93,10 @@
|
||||||
"block_modal.show_less": "Afficher moins",
|
"block_modal.show_less": "Afficher moins",
|
||||||
"block_modal.show_more": "Afficher plus",
|
"block_modal.show_more": "Afficher plus",
|
||||||
"block_modal.they_cant_mention": "Il ne peut pas vous mentionner ou vous suivre.",
|
"block_modal.they_cant_mention": "Il ne peut pas vous mentionner ou vous suivre.",
|
||||||
"block_modal.they_cant_see_posts": "Il peut toujours voir vos publications, mais vous ne verrez pas les siennes.",
|
"block_modal.they_cant_see_posts": "Il peut toujours voir vos messages, mais vous ne verrez pas les siens.",
|
||||||
"block_modal.they_will_know": "Il peut voir qu'il est bloqué.",
|
"block_modal.they_will_know": "Il peut voir qu'il est bloqué.",
|
||||||
"block_modal.title": "Bloquer l'utilisateur·rice ?",
|
"block_modal.title": "Bloquer le compte ?",
|
||||||
"block_modal.you_wont_see_mentions": "Vous ne verrez pas les publications qui le mentionne.",
|
"block_modal.you_wont_see_mentions": "Vous ne verrez pas les messages qui le mentionne.",
|
||||||
"boost_modal.combo": "Vous pouvez appuyer sur {combo} pour sauter ceci la prochaine fois",
|
"boost_modal.combo": "Vous pouvez appuyer sur {combo} pour sauter ceci la prochaine fois",
|
||||||
"boost_modal.reblog": "Booster le message ?",
|
"boost_modal.reblog": "Booster le message ?",
|
||||||
"boost_modal.undo_reblog": "Annuler le boost du message ?",
|
"boost_modal.undo_reblog": "Annuler le boost du message ?",
|
||||||
|
@ -173,7 +173,7 @@
|
||||||
"confirmations.block.confirm": "Bloquer",
|
"confirmations.block.confirm": "Bloquer",
|
||||||
"confirmations.delete.confirm": "Supprimer",
|
"confirmations.delete.confirm": "Supprimer",
|
||||||
"confirmations.delete.message": "Voulez-vous vraiment supprimer cette publication?",
|
"confirmations.delete.message": "Voulez-vous vraiment supprimer cette publication?",
|
||||||
"confirmations.delete.title": "Supprimer la publication ?",
|
"confirmations.delete.title": "Supprimer le message ?",
|
||||||
"confirmations.delete_list.confirm": "Supprimer",
|
"confirmations.delete_list.confirm": "Supprimer",
|
||||||
"confirmations.delete_list.message": "Voulez-vous vraiment supprimer définitivement cette liste?",
|
"confirmations.delete_list.message": "Voulez-vous vraiment supprimer définitivement cette liste?",
|
||||||
"confirmations.delete_list.title": "Supprimer la liste ?",
|
"confirmations.delete_list.title": "Supprimer la liste ?",
|
||||||
|
@ -196,8 +196,8 @@
|
||||||
"confirmations.unfollow.message": "Voulez-vous vraiment arrêter de suivre {name}?",
|
"confirmations.unfollow.message": "Voulez-vous vraiment arrêter de suivre {name}?",
|
||||||
"confirmations.unfollow.title": "Se désabonner de l'utilisateur·rice ?",
|
"confirmations.unfollow.title": "Se désabonner de l'utilisateur·rice ?",
|
||||||
"content_warning.hide": "Masquer le message",
|
"content_warning.hide": "Masquer le message",
|
||||||
"content_warning.show": "Afficher quand même",
|
"content_warning.show": "Montrer quand même",
|
||||||
"content_warning.show_more": "Déplier",
|
"content_warning.show_more": "Montrer plus",
|
||||||
"conversation.delete": "Supprimer cette conversation",
|
"conversation.delete": "Supprimer cette conversation",
|
||||||
"conversation.mark_as_read": "Marquer comme lu",
|
"conversation.mark_as_read": "Marquer comme lu",
|
||||||
"conversation.open": "Afficher cette conversation",
|
"conversation.open": "Afficher cette conversation",
|
||||||
|
@ -219,13 +219,13 @@
|
||||||
"dismissable_banner.public_timeline": "Ce sont les messages publics les plus récents de personnes sur le web social que les gens de {domain} suivent.",
|
"dismissable_banner.public_timeline": "Ce sont les messages publics les plus récents de personnes sur le web social que les gens de {domain} suivent.",
|
||||||
"domain_block_modal.block": "Bloquer le serveur",
|
"domain_block_modal.block": "Bloquer le serveur",
|
||||||
"domain_block_modal.block_account_instead": "Bloquer @{name} à la place",
|
"domain_block_modal.block_account_instead": "Bloquer @{name} à la place",
|
||||||
"domain_block_modal.they_can_interact_with_old_posts": "Les personnes de ce serveur peuvent interagir avec vos anciennes publications.",
|
"domain_block_modal.they_can_interact_with_old_posts": "Les personnes de ce serveur peuvent interagir avec vos anciens messages.",
|
||||||
"domain_block_modal.they_cant_follow": "Personne de ce serveur ne peut vous suivre.",
|
"domain_block_modal.they_cant_follow": "Personne de ce serveur ne peut vous suivre.",
|
||||||
"domain_block_modal.they_wont_know": "Il ne saura pas qu'il a été bloqué.",
|
"domain_block_modal.they_wont_know": "Il ne saura pas qu'il a été bloqué.",
|
||||||
"domain_block_modal.title": "Bloquer le domaine ?",
|
"domain_block_modal.title": "Bloquer le domaine ?",
|
||||||
"domain_block_modal.you_will_lose_num_followers": "Vous allez perdre {followersCount, plural, one {{followersCountDisplay} abonné·e} other {{followersCountDisplay} abonné·e·s}} et {followingCount, plural, one {{followingCountDisplay} personne que vous suivez} other {{followingCountDisplay} personnes que vous suivez}}.",
|
"domain_block_modal.you_will_lose_num_followers": "Vous allez perdre {followersCount, plural, one {{followersCountDisplay} abonné·e} other {{followersCountDisplay} abonné·e·s}} et {followingCount, plural, one {{followingCountDisplay} personne que vous suivez} other {{followingCountDisplay} personnes que vous suivez}}.",
|
||||||
"domain_block_modal.you_will_lose_relationships": "Vous allez perdre tous les abonné·e·s et les personnes que vous suivez sur ce serveur.",
|
"domain_block_modal.you_will_lose_relationships": "Vous allez perdre tous les abonné·e·s et les personnes que vous suivez sur ce serveur.",
|
||||||
"domain_block_modal.you_wont_see_posts": "Vous ne verrez plus les publications ou les notifications des utilisateur·rice·s de ce serveur.",
|
"domain_block_modal.you_wont_see_posts": "Vous ne verrez plus les messages ou les notifications des utilisateur·rice·s de ce serveur.",
|
||||||
"domain_pill.activitypub_lets_connect": "Cela vous permet de vous connecter et d'interagir avec les autres non seulement sur Mastodon, mais également sur d'autres applications de réseaux sociaux.",
|
"domain_pill.activitypub_lets_connect": "Cela vous permet de vous connecter et d'interagir avec les autres non seulement sur Mastodon, mais également sur d'autres applications de réseaux sociaux.",
|
||||||
"domain_pill.activitypub_like_language": "ActivityPub est comme une langue que Mastodon utilise pour communiquer avec les autres réseaux sociaux.",
|
"domain_pill.activitypub_like_language": "ActivityPub est comme une langue que Mastodon utilise pour communiquer avec les autres réseaux sociaux.",
|
||||||
"domain_pill.server": "Serveur",
|
"domain_pill.server": "Serveur",
|
||||||
|
@ -859,6 +859,7 @@
|
||||||
"upload_form.drag_and_drop.on_drag_cancel": "Le glissement a été annulé. La pièce jointe {item} n'a pas été ajoutée.",
|
"upload_form.drag_and_drop.on_drag_cancel": "Le glissement a été annulé. La pièce jointe {item} n'a pas été ajoutée.",
|
||||||
"upload_form.drag_and_drop.on_drag_end": "La pièce jointe du média {item} a été déplacée.",
|
"upload_form.drag_and_drop.on_drag_end": "La pièce jointe du média {item} a été déplacée.",
|
||||||
"upload_form.drag_and_drop.on_drag_over": "La pièce jointe du média {item} a été déplacée.",
|
"upload_form.drag_and_drop.on_drag_over": "La pièce jointe du média {item} a été déplacée.",
|
||||||
|
"upload_form.drag_and_drop.on_drag_start": "A récupéré la pièce jointe {item}.",
|
||||||
"upload_form.edit": "Modifier",
|
"upload_form.edit": "Modifier",
|
||||||
"upload_form.thumbnail": "Changer la vignette",
|
"upload_form.thumbnail": "Changer la vignette",
|
||||||
"upload_form.video_description": "Décrire pour les personnes ayant des problèmes de vue ou d'audition",
|
"upload_form.video_description": "Décrire pour les personnes ayant des problèmes de vue ou d'audition",
|
||||||
|
|
|
@ -85,7 +85,7 @@
|
||||||
"alert.rate_limited.title": "Nombre de requêtes limité",
|
"alert.rate_limited.title": "Nombre de requêtes limité",
|
||||||
"alert.unexpected.message": "Une erreur inattendue s’est produite.",
|
"alert.unexpected.message": "Une erreur inattendue s’est produite.",
|
||||||
"alert.unexpected.title": "Oups !",
|
"alert.unexpected.title": "Oups !",
|
||||||
"alt_text_badge.title": "Texte Alt",
|
"alt_text_badge.title": "Texte alternatif",
|
||||||
"announcement.announcement": "Annonce",
|
"announcement.announcement": "Annonce",
|
||||||
"attachments_list.unprocessed": "(non traité)",
|
"attachments_list.unprocessed": "(non traité)",
|
||||||
"audio.hide": "Masquer l'audio",
|
"audio.hide": "Masquer l'audio",
|
||||||
|
@ -93,10 +93,10 @@
|
||||||
"block_modal.show_less": "Afficher moins",
|
"block_modal.show_less": "Afficher moins",
|
||||||
"block_modal.show_more": "Afficher plus",
|
"block_modal.show_more": "Afficher plus",
|
||||||
"block_modal.they_cant_mention": "Il ne peut pas vous mentionner ou vous suivre.",
|
"block_modal.they_cant_mention": "Il ne peut pas vous mentionner ou vous suivre.",
|
||||||
"block_modal.they_cant_see_posts": "Il peut toujours voir vos publications, mais vous ne verrez pas les siennes.",
|
"block_modal.they_cant_see_posts": "Il peut toujours voir vos messages, mais vous ne verrez pas les siens.",
|
||||||
"block_modal.they_will_know": "Il peut voir qu'il est bloqué.",
|
"block_modal.they_will_know": "Il peut voir qu'il est bloqué.",
|
||||||
"block_modal.title": "Bloquer l'utilisateur·rice ?",
|
"block_modal.title": "Bloquer le compte ?",
|
||||||
"block_modal.you_wont_see_mentions": "Vous ne verrez pas les publications qui le mentionne.",
|
"block_modal.you_wont_see_mentions": "Vous ne verrez pas les messages qui le mentionne.",
|
||||||
"boost_modal.combo": "Vous pouvez appuyer sur {combo} pour passer ceci la prochaine fois",
|
"boost_modal.combo": "Vous pouvez appuyer sur {combo} pour passer ceci la prochaine fois",
|
||||||
"boost_modal.reblog": "Booster le message ?",
|
"boost_modal.reblog": "Booster le message ?",
|
||||||
"boost_modal.undo_reblog": "Annuler le boost du message ?",
|
"boost_modal.undo_reblog": "Annuler le boost du message ?",
|
||||||
|
@ -163,7 +163,7 @@
|
||||||
"compose_form.poll.switch_to_single": "Modifier le sondage pour autoriser qu'un seul choix",
|
"compose_form.poll.switch_to_single": "Modifier le sondage pour autoriser qu'un seul choix",
|
||||||
"compose_form.poll.type": "Style",
|
"compose_form.poll.type": "Style",
|
||||||
"compose_form.publish": "Publier",
|
"compose_form.publish": "Publier",
|
||||||
"compose_form.publish_form": "Nouvelle publication",
|
"compose_form.publish_form": "Nouveau message",
|
||||||
"compose_form.reply": "Répondre",
|
"compose_form.reply": "Répondre",
|
||||||
"compose_form.save_changes": "Mettre à jour",
|
"compose_form.save_changes": "Mettre à jour",
|
||||||
"compose_form.spoiler.marked": "Enlever l’avertissement de contenu",
|
"compose_form.spoiler.marked": "Enlever l’avertissement de contenu",
|
||||||
|
@ -173,7 +173,7 @@
|
||||||
"confirmations.block.confirm": "Bloquer",
|
"confirmations.block.confirm": "Bloquer",
|
||||||
"confirmations.delete.confirm": "Supprimer",
|
"confirmations.delete.confirm": "Supprimer",
|
||||||
"confirmations.delete.message": "Voulez-vous vraiment supprimer ce message ?",
|
"confirmations.delete.message": "Voulez-vous vraiment supprimer ce message ?",
|
||||||
"confirmations.delete.title": "Supprimer la publication ?",
|
"confirmations.delete.title": "Supprimer le message ?",
|
||||||
"confirmations.delete_list.confirm": "Supprimer",
|
"confirmations.delete_list.confirm": "Supprimer",
|
||||||
"confirmations.delete_list.message": "Voulez-vous vraiment supprimer définitivement cette liste ?",
|
"confirmations.delete_list.message": "Voulez-vous vraiment supprimer définitivement cette liste ?",
|
||||||
"confirmations.delete_list.title": "Supprimer la liste ?",
|
"confirmations.delete_list.title": "Supprimer la liste ?",
|
||||||
|
@ -187,7 +187,7 @@
|
||||||
"confirmations.logout.title": "Se déconnecter ?",
|
"confirmations.logout.title": "Se déconnecter ?",
|
||||||
"confirmations.mute.confirm": "Masquer",
|
"confirmations.mute.confirm": "Masquer",
|
||||||
"confirmations.redraft.confirm": "Supprimer et ré-écrire",
|
"confirmations.redraft.confirm": "Supprimer et ré-écrire",
|
||||||
"confirmations.redraft.message": "Êtes-vous sûr·e de vouloir effacer cette publication pour la réécrire ? Ses partages ainsi que ses mises en favori seront perdus et ses réponses seront orphelines.",
|
"confirmations.redraft.message": "Voulez-vous vraiment supprimer le message pour le réécrire ? Ses partages ainsi que ses mises en favori seront perdues, et ses réponses seront orphelines.",
|
||||||
"confirmations.redraft.title": "Supprimer et réécrire le message ?",
|
"confirmations.redraft.title": "Supprimer et réécrire le message ?",
|
||||||
"confirmations.reply.confirm": "Répondre",
|
"confirmations.reply.confirm": "Répondre",
|
||||||
"confirmations.reply.message": "Répondre maintenant écrasera votre message en cours de rédaction. Voulez-vous vraiment continuer ?",
|
"confirmations.reply.message": "Répondre maintenant écrasera votre message en cours de rédaction. Voulez-vous vraiment continuer ?",
|
||||||
|
@ -196,8 +196,8 @@
|
||||||
"confirmations.unfollow.message": "Voulez-vous vraiment vous désabonner de {name} ?",
|
"confirmations.unfollow.message": "Voulez-vous vraiment vous désabonner de {name} ?",
|
||||||
"confirmations.unfollow.title": "Se désabonner de l'utilisateur·rice ?",
|
"confirmations.unfollow.title": "Se désabonner de l'utilisateur·rice ?",
|
||||||
"content_warning.hide": "Masquer le message",
|
"content_warning.hide": "Masquer le message",
|
||||||
"content_warning.show": "Afficher quand même",
|
"content_warning.show": "Montrer quand même",
|
||||||
"content_warning.show_more": "Déplier",
|
"content_warning.show_more": "Montrer plus",
|
||||||
"conversation.delete": "Supprimer la conversation",
|
"conversation.delete": "Supprimer la conversation",
|
||||||
"conversation.mark_as_read": "Marquer comme lu",
|
"conversation.mark_as_read": "Marquer comme lu",
|
||||||
"conversation.open": "Afficher la conversation",
|
"conversation.open": "Afficher la conversation",
|
||||||
|
@ -219,13 +219,13 @@
|
||||||
"dismissable_banner.public_timeline": "Il s'agit des messages publics les plus récents publiés par des gens sur le web social et que les utilisateurs de {domain} suivent.",
|
"dismissable_banner.public_timeline": "Il s'agit des messages publics les plus récents publiés par des gens sur le web social et que les utilisateurs de {domain} suivent.",
|
||||||
"domain_block_modal.block": "Bloquer le serveur",
|
"domain_block_modal.block": "Bloquer le serveur",
|
||||||
"domain_block_modal.block_account_instead": "Bloquer @{name} à la place",
|
"domain_block_modal.block_account_instead": "Bloquer @{name} à la place",
|
||||||
"domain_block_modal.they_can_interact_with_old_posts": "Les personnes de ce serveur peuvent interagir avec vos anciennes publications.",
|
"domain_block_modal.they_can_interact_with_old_posts": "Les personnes de ce serveur peuvent interagir avec vos anciens messages.",
|
||||||
"domain_block_modal.they_cant_follow": "Personne de ce serveur ne peut vous suivre.",
|
"domain_block_modal.they_cant_follow": "Personne de ce serveur ne peut vous suivre.",
|
||||||
"domain_block_modal.they_wont_know": "Il ne saura pas qu'il a été bloqué.",
|
"domain_block_modal.they_wont_know": "Il ne saura pas qu'il a été bloqué.",
|
||||||
"domain_block_modal.title": "Bloquer le domaine ?",
|
"domain_block_modal.title": "Bloquer le domaine ?",
|
||||||
"domain_block_modal.you_will_lose_num_followers": "Vous allez perdre {followersCount, plural, one {{followersCountDisplay} abonné·e} other {{followersCountDisplay} abonné·e·s}} et {followingCount, plural, one {{followingCountDisplay} personne que vous suivez} other {{followingCountDisplay} personnes que vous suivez}}.",
|
"domain_block_modal.you_will_lose_num_followers": "Vous allez perdre {followersCount, plural, one {{followersCountDisplay} abonné·e} other {{followersCountDisplay} abonné·e·s}} et {followingCount, plural, one {{followingCountDisplay} personne que vous suivez} other {{followingCountDisplay} personnes que vous suivez}}.",
|
||||||
"domain_block_modal.you_will_lose_relationships": "Vous allez perdre tous les abonné·e·s et les personnes que vous suivez sur ce serveur.",
|
"domain_block_modal.you_will_lose_relationships": "Vous allez perdre tous les abonné·e·s et les personnes que vous suivez sur ce serveur.",
|
||||||
"domain_block_modal.you_wont_see_posts": "Vous ne verrez plus les publications ou les notifications des utilisateur·rice·s de ce serveur.",
|
"domain_block_modal.you_wont_see_posts": "Vous ne verrez plus les messages ou les notifications des utilisateur·rice·s de ce serveur.",
|
||||||
"domain_pill.activitypub_lets_connect": "Cela vous permet de vous connecter et d'interagir avec les autres non seulement sur Mastodon, mais également sur d'autres applications de réseaux sociaux.",
|
"domain_pill.activitypub_lets_connect": "Cela vous permet de vous connecter et d'interagir avec les autres non seulement sur Mastodon, mais également sur d'autres applications de réseaux sociaux.",
|
||||||
"domain_pill.activitypub_like_language": "ActivityPub est comme une langue que Mastodon utilise pour communiquer avec les autres réseaux sociaux.",
|
"domain_pill.activitypub_like_language": "ActivityPub est comme une langue que Mastodon utilise pour communiquer avec les autres réseaux sociaux.",
|
||||||
"domain_pill.server": "Serveur",
|
"domain_pill.server": "Serveur",
|
||||||
|
@ -504,7 +504,7 @@
|
||||||
"notification.admin.report_account_other": "{name} a signalé {count, plural, one {un message} other {# messages}} depuis {target}",
|
"notification.admin.report_account_other": "{name} a signalé {count, plural, one {un message} other {# messages}} depuis {target}",
|
||||||
"notification.admin.report_statuses": "{name} a signalé {target} pour {category}",
|
"notification.admin.report_statuses": "{name} a signalé {target} pour {category}",
|
||||||
"notification.admin.report_statuses_other": "{name} a signalé {target}",
|
"notification.admin.report_statuses_other": "{name} a signalé {target}",
|
||||||
"notification.admin.sign_up": "{name} s'est inscrit",
|
"notification.admin.sign_up": "{name} s'est inscrit·e",
|
||||||
"notification.admin.sign_up.name_and_others": "{name} et {count, plural, one {# autre} other {# autres}} se sont inscrit",
|
"notification.admin.sign_up.name_and_others": "{name} et {count, plural, one {# autre} other {# autres}} se sont inscrit",
|
||||||
"notification.favourite": "{name} a ajouté votre message à ses favoris",
|
"notification.favourite": "{name} a ajouté votre message à ses favoris",
|
||||||
"notification.favourite.name_and_others_with_link": "{name} et <a>{count, plural, one {# autre} other {# autres}}</a> ont mis votre message en favori",
|
"notification.favourite.name_and_others_with_link": "{name} et <a>{count, plural, one {# autre} other {# autres}}</a> ont mis votre message en favori",
|
||||||
|
@ -732,7 +732,7 @@
|
||||||
"report.thanks.title": "Vous ne voulez pas voir cela ?",
|
"report.thanks.title": "Vous ne voulez pas voir cela ?",
|
||||||
"report.thanks.title_actionable": "Merci pour votre signalement, nous allons investiguer.",
|
"report.thanks.title_actionable": "Merci pour votre signalement, nous allons investiguer.",
|
||||||
"report.unfollow": "Ne plus suivre @{name}",
|
"report.unfollow": "Ne plus suivre @{name}",
|
||||||
"report.unfollow_explanation": "Vous êtes abonné à ce compte. Pour ne plus voir ses publications dans votre fil principal, retirez-le de votre liste d'abonnements.",
|
"report.unfollow_explanation": "Vous êtes abonné à ce compte. Pour ne plus voir ses messages dans votre fil principal, retirez-le de votre liste d'abonnements.",
|
||||||
"report_notification.attached_statuses": "{count, plural, one {{count} message lié} other {{count} messages liés}}",
|
"report_notification.attached_statuses": "{count, plural, one {{count} message lié} other {{count} messages liés}}",
|
||||||
"report_notification.categories.legal": "Légal",
|
"report_notification.categories.legal": "Légal",
|
||||||
"report_notification.categories.legal_sentence": "contenu illégal",
|
"report_notification.categories.legal_sentence": "contenu illégal",
|
||||||
|
@ -749,7 +749,7 @@
|
||||||
"search.quick_action.go_to_account": "Aller au profil {x}",
|
"search.quick_action.go_to_account": "Aller au profil {x}",
|
||||||
"search.quick_action.go_to_hashtag": "Aller au hashtag {x}",
|
"search.quick_action.go_to_hashtag": "Aller au hashtag {x}",
|
||||||
"search.quick_action.open_url": "Ouvrir l'URL dans Mastodon",
|
"search.quick_action.open_url": "Ouvrir l'URL dans Mastodon",
|
||||||
"search.quick_action.status_search": "Publications correspondant à {x}",
|
"search.quick_action.status_search": "Messages correspondant à {x}",
|
||||||
"search.search_or_paste": "Rechercher ou saisir une URL",
|
"search.search_or_paste": "Rechercher ou saisir une URL",
|
||||||
"search_popout.full_text_search_disabled_message": "Non disponible sur {domain}.",
|
"search_popout.full_text_search_disabled_message": "Non disponible sur {domain}.",
|
||||||
"search_popout.full_text_search_logged_out_message": "Disponible uniquement lorsque vous êtes connecté.",
|
"search_popout.full_text_search_logged_out_message": "Disponible uniquement lorsque vous êtes connecté.",
|
||||||
|
@ -859,6 +859,7 @@
|
||||||
"upload_form.drag_and_drop.on_drag_cancel": "Le glissement a été annulé. La pièce jointe {item} n'a pas été ajoutée.",
|
"upload_form.drag_and_drop.on_drag_cancel": "Le glissement a été annulé. La pièce jointe {item} n'a pas été ajoutée.",
|
||||||
"upload_form.drag_and_drop.on_drag_end": "La pièce jointe du média {item} a été déplacée.",
|
"upload_form.drag_and_drop.on_drag_end": "La pièce jointe du média {item} a été déplacée.",
|
||||||
"upload_form.drag_and_drop.on_drag_over": "La pièce jointe du média {item} a été déplacée.",
|
"upload_form.drag_and_drop.on_drag_over": "La pièce jointe du média {item} a été déplacée.",
|
||||||
|
"upload_form.drag_and_drop.on_drag_start": "A récupéré la pièce jointe {item}.",
|
||||||
"upload_form.edit": "Modifier",
|
"upload_form.edit": "Modifier",
|
||||||
"upload_form.thumbnail": "Changer la vignette",
|
"upload_form.thumbnail": "Changer la vignette",
|
||||||
"upload_form.video_description": "Décrire pour les personnes ayant des problèmes de vue ou d'audition",
|
"upload_form.video_description": "Décrire pour les personnes ayant des problèmes de vue ou d'audition",
|
||||||
|
|
|
@ -386,7 +386,7 @@
|
||||||
"interaction_modal.description.follow": "Cunha conta en Mastodon, poderás seguir a {name} e recibir as súas publicacións na túa cronoloxía de inicio.",
|
"interaction_modal.description.follow": "Cunha conta en Mastodon, poderás seguir a {name} e recibir as súas publicacións na túa cronoloxía de inicio.",
|
||||||
"interaction_modal.description.reblog": "Cunha conta en Mastodon, poderás promover esta publicación para compartila con quen te siga.",
|
"interaction_modal.description.reblog": "Cunha conta en Mastodon, poderás promover esta publicación para compartila con quen te siga.",
|
||||||
"interaction_modal.description.reply": "Cunha conta en Mastodon, poderás responder a esta publicación.",
|
"interaction_modal.description.reply": "Cunha conta en Mastodon, poderás responder a esta publicación.",
|
||||||
"interaction_modal.login.action": "Lévame ao inicio",
|
"interaction_modal.login.action": "Seguir desde alá",
|
||||||
"interaction_modal.login.prompt": "Dominio do teu servidor de inicio, ex. mastodon.social",
|
"interaction_modal.login.prompt": "Dominio do teu servidor de inicio, ex. mastodon.social",
|
||||||
"interaction_modal.no_account_yet": "Aínda non tes unha conta?",
|
"interaction_modal.no_account_yet": "Aínda non tes unha conta?",
|
||||||
"interaction_modal.on_another_server": "Nun servidor diferente",
|
"interaction_modal.on_another_server": "Nun servidor diferente",
|
||||||
|
@ -585,7 +585,7 @@
|
||||||
"notifications.filter.follows": "Seguimentos",
|
"notifications.filter.follows": "Seguimentos",
|
||||||
"notifications.filter.mentions": "Mencións",
|
"notifications.filter.mentions": "Mencións",
|
||||||
"notifications.filter.polls": "Resultados da enquisa",
|
"notifications.filter.polls": "Resultados da enquisa",
|
||||||
"notifications.filter.statuses": "Actualizacións de xente á que segues",
|
"notifications.filter.statuses": "Actualizacións de persoas que segues",
|
||||||
"notifications.grant_permission": "Conceder permiso.",
|
"notifications.grant_permission": "Conceder permiso.",
|
||||||
"notifications.group": "{count} notificacións",
|
"notifications.group": "{count} notificacións",
|
||||||
"notifications.mark_as_read": "Marcar todas as notificacións como lidas",
|
"notifications.mark_as_read": "Marcar todas as notificacións como lidas",
|
||||||
|
@ -665,7 +665,7 @@
|
||||||
"poll_button.remove_poll": "Eliminar enquisa",
|
"poll_button.remove_poll": "Eliminar enquisa",
|
||||||
"privacy.change": "Axustar privacidade",
|
"privacy.change": "Axustar privacidade",
|
||||||
"privacy.direct.long": "Todas as mencionadas na publicación",
|
"privacy.direct.long": "Todas as mencionadas na publicación",
|
||||||
"privacy.direct.short": "Persoas concretas",
|
"privacy.direct.short": "Persoas mencionadas",
|
||||||
"privacy.private.long": "Só para seguidoras",
|
"privacy.private.long": "Só para seguidoras",
|
||||||
"privacy.private.short": "Seguidoras",
|
"privacy.private.short": "Seguidoras",
|
||||||
"privacy.public.long": "Para todas dentro e fóra de Mastodon",
|
"privacy.public.long": "Para todas dentro e fóra de Mastodon",
|
||||||
|
|
|
@ -415,7 +415,7 @@
|
||||||
"keyboard_shortcuts.heading": "Gyorsbillentyűk",
|
"keyboard_shortcuts.heading": "Gyorsbillentyűk",
|
||||||
"keyboard_shortcuts.home": "Saját idővonal megnyitása",
|
"keyboard_shortcuts.home": "Saját idővonal megnyitása",
|
||||||
"keyboard_shortcuts.hotkey": "Gyorsbillentyű",
|
"keyboard_shortcuts.hotkey": "Gyorsbillentyű",
|
||||||
"keyboard_shortcuts.legend": "jelmagyarázat megjelenítése",
|
"keyboard_shortcuts.legend": "Jelmagyarázat megjelenítése",
|
||||||
"keyboard_shortcuts.local": "Helyi idővonal megnyitása",
|
"keyboard_shortcuts.local": "Helyi idővonal megnyitása",
|
||||||
"keyboard_shortcuts.mention": "Szerző megemlítése",
|
"keyboard_shortcuts.mention": "Szerző megemlítése",
|
||||||
"keyboard_shortcuts.muted": "Némított felhasználók listájának megnyitása",
|
"keyboard_shortcuts.muted": "Némított felhasználók listájának megnyitása",
|
||||||
|
@ -428,7 +428,7 @@
|
||||||
"keyboard_shortcuts.requests": "Követési kérések listájának megnyitása",
|
"keyboard_shortcuts.requests": "Követési kérések listájának megnyitása",
|
||||||
"keyboard_shortcuts.search": "Fókuszálás a keresősávra",
|
"keyboard_shortcuts.search": "Fókuszálás a keresősávra",
|
||||||
"keyboard_shortcuts.spoilers": "Tartalmi figyelmeztetés mező megjelenítése/elrejtése",
|
"keyboard_shortcuts.spoilers": "Tartalmi figyelmeztetés mező megjelenítése/elrejtése",
|
||||||
"keyboard_shortcuts.start": "\"Első lépések\" oszlop megnyitása",
|
"keyboard_shortcuts.start": "„Első lépések” oszlop megnyitása",
|
||||||
"keyboard_shortcuts.toggle_hidden": "Tartalmi figyelmeztetéssel ellátott szöveg megjelenítése/elrejtése",
|
"keyboard_shortcuts.toggle_hidden": "Tartalmi figyelmeztetéssel ellátott szöveg megjelenítése/elrejtése",
|
||||||
"keyboard_shortcuts.toggle_sensitivity": "Média megjelenítése/elrejtése",
|
"keyboard_shortcuts.toggle_sensitivity": "Média megjelenítése/elrejtése",
|
||||||
"keyboard_shortcuts.toot": "Új bejegyzés írása",
|
"keyboard_shortcuts.toot": "Új bejegyzés írása",
|
||||||
|
|
|
@ -85,7 +85,7 @@
|
||||||
"alert.rate_limited.title": "Excesso de requestas",
|
"alert.rate_limited.title": "Excesso de requestas",
|
||||||
"alert.unexpected.message": "Un error inexpectate ha occurrite.",
|
"alert.unexpected.message": "Un error inexpectate ha occurrite.",
|
||||||
"alert.unexpected.title": "Ups!",
|
"alert.unexpected.title": "Ups!",
|
||||||
"alt_text_badge.title": "Texto alt",
|
"alt_text_badge.title": "Texto alternative",
|
||||||
"announcement.announcement": "Annuncio",
|
"announcement.announcement": "Annuncio",
|
||||||
"attachments_list.unprocessed": "(non processate)",
|
"attachments_list.unprocessed": "(non processate)",
|
||||||
"audio.hide": "Celar audio",
|
"audio.hide": "Celar audio",
|
||||||
|
@ -223,11 +223,11 @@
|
||||||
"domain_block_modal.they_cant_follow": "Necuno de iste servitor pote sequer te.",
|
"domain_block_modal.they_cant_follow": "Necuno de iste servitor pote sequer te.",
|
||||||
"domain_block_modal.they_wont_know": "Ille non sapera que ille ha essite blocate.",
|
"domain_block_modal.they_wont_know": "Ille non sapera que ille ha essite blocate.",
|
||||||
"domain_block_modal.title": "Blocar dominio?",
|
"domain_block_modal.title": "Blocar dominio?",
|
||||||
"domain_block_modal.you_will_lose_num_followers": "Tu perdera {followersCount, plural, one {{followersCountDisplay} sequace} other {{followersCountDisplay} sequaces}} e {followingCount, plural, one {{followingCountDisplay} persona que tu seque} other {{followingCountDisplay} personas que tu seque}}.",
|
"domain_block_modal.you_will_lose_num_followers": "Tu perdera {followersCount, plural, one {{followersCountDisplay} sequitor} other {{followersCountDisplay} sequitores}} e {followingCount, plural, one {{followingCountDisplay} persona que tu seque} other {{followingCountDisplay} personas que tu seque}}.",
|
||||||
"domain_block_modal.you_will_lose_relationships": "Tu perdera tote le sequaces e le personas que tu seque ab iste servitor.",
|
"domain_block_modal.you_will_lose_relationships": "Tu perdera tote le sequitores e personas que tu seque de iste servitor.",
|
||||||
"domain_block_modal.you_wont_see_posts": "Tu non videra messages e notificationes de usatores sur iste servitor.",
|
"domain_block_modal.you_wont_see_posts": "Tu non videra messages e notificationes de usatores sur iste servitor.",
|
||||||
"domain_pill.activitypub_lets_connect": "Illo te permitte connecter e interager con personas non solmente sur Mastodon, ma tamben sur altere applicationes social.",
|
"domain_pill.activitypub_lets_connect": "Illo te permitte connecter e interager con personas non solmente sur Mastodon, ma tamben sur altere applicationes social.",
|
||||||
"domain_pill.activitypub_like_language": "ActivityPub es como le linguage commun que Mastodon parla con altere retes social.",
|
"domain_pill.activitypub_like_language": "ActivityPub es le linguage commun que Mastodon parla con altere retes social.",
|
||||||
"domain_pill.server": "Servitor",
|
"domain_pill.server": "Servitor",
|
||||||
"domain_pill.their_handle": "Su pseudonymo:",
|
"domain_pill.their_handle": "Su pseudonymo:",
|
||||||
"domain_pill.their_server": "Su casa digital, ubi vive tote su messages.",
|
"domain_pill.their_server": "Su casa digital, ubi vive tote su messages.",
|
||||||
|
@ -307,7 +307,7 @@
|
||||||
"filter_modal.select_filter.title": "Filtrar iste message",
|
"filter_modal.select_filter.title": "Filtrar iste message",
|
||||||
"filter_modal.title.status": "Filtrar un message",
|
"filter_modal.title.status": "Filtrar un message",
|
||||||
"filter_warning.matches_filter": "Corresponde al filtro “<span>{title}</span>”",
|
"filter_warning.matches_filter": "Corresponde al filtro “<span>{title}</span>”",
|
||||||
"filtered_notifications_banner.pending_requests": "De {count, plural, =0 {nemo} one {un persona} other {# personas}} que tu pote cognoscer",
|
"filtered_notifications_banner.pending_requests": "De {count, plural, =0 {necuno} one {un persona} other {# personas}} que tu pote cognoscer",
|
||||||
"filtered_notifications_banner.title": "Notificationes filtrate",
|
"filtered_notifications_banner.title": "Notificationes filtrate",
|
||||||
"firehose.all": "Toto",
|
"firehose.all": "Toto",
|
||||||
"firehose.local": "Iste servitor",
|
"firehose.local": "Iste servitor",
|
||||||
|
@ -355,14 +355,14 @@
|
||||||
"hashtag.counter_by_uses_today": "{count, plural, one {{counter} message} other {{counter} messages}} hodie",
|
"hashtag.counter_by_uses_today": "{count, plural, one {{counter} message} other {{counter} messages}} hodie",
|
||||||
"hashtag.follow": "Sequer hashtag",
|
"hashtag.follow": "Sequer hashtag",
|
||||||
"hashtag.unfollow": "Non sequer plus le hashtag",
|
"hashtag.unfollow": "Non sequer plus le hashtag",
|
||||||
"hashtags.and_other": "…e {count, plural, one {}other {# plus}}",
|
"hashtags.and_other": "…e {count, plural, one {un altere} other {# alteres}}",
|
||||||
"hints.profiles.followers_may_be_missing": "Le sequaces pro iste profilo pote mancar.",
|
"hints.profiles.followers_may_be_missing": "Le sequitores de iste profilo pote mancar.",
|
||||||
"hints.profiles.follows_may_be_missing": "Sequites pro iste profilo pote mancar.",
|
"hints.profiles.follows_may_be_missing": "Le profilos sequite per iste profilo pote mancar.",
|
||||||
"hints.profiles.posts_may_be_missing": "Alcun messages ab iste profilo pote mancar.",
|
"hints.profiles.posts_may_be_missing": "Alcun messages de iste profilo pote mancar.",
|
||||||
"hints.profiles.see_more_followers": "Vider plus de sequitores sur {domain}",
|
"hints.profiles.see_more_followers": "Vider plus de sequitores sur {domain}",
|
||||||
"hints.profiles.see_more_follows": "Vider plus de sequites sur {domain}",
|
"hints.profiles.see_more_follows": "Vider plus de sequites sur {domain}",
|
||||||
"hints.profiles.see_more_posts": "Vider plus de messages sur {domain}",
|
"hints.profiles.see_more_posts": "Vider plus de messages sur {domain}",
|
||||||
"hints.threads.replies_may_be_missing": "Responsas de altere servitores pote esser perdite.",
|
"hints.threads.replies_may_be_missing": "Responsas de altere servitores pote mancar.",
|
||||||
"hints.threads.see_more": "Vider plus de responsas sur {domain}",
|
"hints.threads.see_more": "Vider plus de responsas sur {domain}",
|
||||||
"home.column_settings.show_reblogs": "Monstrar impulsos",
|
"home.column_settings.show_reblogs": "Monstrar impulsos",
|
||||||
"home.column_settings.show_replies": "Monstrar responsas",
|
"home.column_settings.show_replies": "Monstrar responsas",
|
||||||
|
@ -371,11 +371,11 @@
|
||||||
"home.pending_critical_update.link": "Vider actualisationes",
|
"home.pending_critical_update.link": "Vider actualisationes",
|
||||||
"home.pending_critical_update.title": "Actualisation de securitate critic disponibile!",
|
"home.pending_critical_update.title": "Actualisation de securitate critic disponibile!",
|
||||||
"home.show_announcements": "Monstrar annuncios",
|
"home.show_announcements": "Monstrar annuncios",
|
||||||
"ignore_notifications_modal.disclaimer": "Mastodon non pote informar le usatores que tu ha ignorate lor avisos. Ignorar avisos non stoppara le messages mesme de esser inviate.",
|
"ignore_notifications_modal.disclaimer": "Mastodon non pote informar al usatores que tu ha ignorate lor notificationes. Ignorar le notificationes non impedira le invio del messages.",
|
||||||
"ignore_notifications_modal.filter_instead": "Filtrar in vice",
|
"ignore_notifications_modal.filter_instead": "Filtrar in vice",
|
||||||
"ignore_notifications_modal.filter_to_act_users": "Tu ancora potera acceptar, rejectar, o reportar usatores",
|
"ignore_notifications_modal.filter_to_act_users": "Tu ancora potera acceptar, rejectar, o reportar usatores",
|
||||||
"ignore_notifications_modal.filter_to_avoid_confusion": "Filtrar adjuta evitar confusion potential",
|
"ignore_notifications_modal.filter_to_avoid_confusion": "Filtrar adjuta a evitar confusion potential",
|
||||||
"ignore_notifications_modal.filter_to_review_separately": "Tu pote revider avisos filtrate separatemente",
|
"ignore_notifications_modal.filter_to_review_separately": "Tu pote revider separatemente le notificationes filtrate",
|
||||||
"ignore_notifications_modal.ignore": "Ignorar le notificationes",
|
"ignore_notifications_modal.ignore": "Ignorar le notificationes",
|
||||||
"ignore_notifications_modal.limited_accounts_title": "Ignorar le notificationes de contos moderate?",
|
"ignore_notifications_modal.limited_accounts_title": "Ignorar le notificationes de contos moderate?",
|
||||||
"ignore_notifications_modal.new_accounts_title": "Ignorar le notificationes de nove contos?",
|
"ignore_notifications_modal.new_accounts_title": "Ignorar le notificationes de nove contos?",
|
||||||
|
@ -437,8 +437,8 @@
|
||||||
"lightbox.close": "Clauder",
|
"lightbox.close": "Clauder",
|
||||||
"lightbox.next": "Sequente",
|
"lightbox.next": "Sequente",
|
||||||
"lightbox.previous": "Precedente",
|
"lightbox.previous": "Precedente",
|
||||||
"lightbox.zoom_in": "Aggrandir a dimension actual",
|
"lightbox.zoom_in": "Aggrandir al dimension real",
|
||||||
"lightbox.zoom_out": "Aggrandir pro adaptar",
|
"lightbox.zoom_out": "Diminuer pro adaptar",
|
||||||
"limited_account_hint.action": "Monstrar profilo in omne caso",
|
"limited_account_hint.action": "Monstrar profilo in omne caso",
|
||||||
"limited_account_hint.title": "Iste profilo ha essite celate per le moderatores de {domain}.",
|
"limited_account_hint.title": "Iste profilo ha essite celate per le moderatores de {domain}.",
|
||||||
"link_preview.author": "Per {name}",
|
"link_preview.author": "Per {name}",
|
||||||
|
@ -505,9 +505,9 @@
|
||||||
"notification.admin.report_statuses": "{name} ha reportate {target} pro {category}",
|
"notification.admin.report_statuses": "{name} ha reportate {target} pro {category}",
|
||||||
"notification.admin.report_statuses_other": "{name} ha reportate {target}",
|
"notification.admin.report_statuses_other": "{name} ha reportate {target}",
|
||||||
"notification.admin.sign_up": "{name} se ha inscribite",
|
"notification.admin.sign_up": "{name} se ha inscribite",
|
||||||
"notification.admin.sign_up.name_and_others": "{name} e {count, plural, one {# altere usator} other {altere # usatores}} se inscribeva",
|
"notification.admin.sign_up.name_and_others": "{name} e {count, plural, one {# altere persona} other {# altere personas}} se ha inscribite",
|
||||||
"notification.favourite": "{name} ha marcate tu message como favorite",
|
"notification.favourite": "{name} ha marcate tu message como favorite",
|
||||||
"notification.favourite.name_and_others_with_link": "{name} e <a>{count, plural, one {# altere} other {# alteres}}</a> favoriva tu message",
|
"notification.favourite.name_and_others_with_link": "{name} e <a>{count, plural, one {# altere} other {# alteres}}</a> ha marcate tu message como favorite",
|
||||||
"notification.follow": "{name} te ha sequite",
|
"notification.follow": "{name} te ha sequite",
|
||||||
"notification.follow.name_and_others": "{name} e <a>{count, plural, one {# other} other {# alteres}}</a> te ha sequite",
|
"notification.follow.name_and_others": "{name} e <a>{count, plural, one {# other} other {# alteres}}</a> te ha sequite",
|
||||||
"notification.follow_request": "{name} ha requestate de sequer te",
|
"notification.follow_request": "{name} ha requestate de sequer te",
|
||||||
|
@ -517,7 +517,7 @@
|
||||||
"notification.label.private_reply": "Responsa private",
|
"notification.label.private_reply": "Responsa private",
|
||||||
"notification.label.reply": "Responder",
|
"notification.label.reply": "Responder",
|
||||||
"notification.mention": "Mention",
|
"notification.mention": "Mention",
|
||||||
"notification.mentioned_you": "{name} te mentionava",
|
"notification.mentioned_you": "{name} te ha mentionate",
|
||||||
"notification.moderation-warning.learn_more": "Apprender plus",
|
"notification.moderation-warning.learn_more": "Apprender plus",
|
||||||
"notification.moderation_warning": "Tu ha recipite un advertimento de moderation",
|
"notification.moderation_warning": "Tu ha recipite un advertimento de moderation",
|
||||||
"notification.moderation_warning.action_delete_statuses": "Alcunes de tu messages ha essite removite.",
|
"notification.moderation_warning.action_delete_statuses": "Alcunes de tu messages ha essite removite.",
|
||||||
|
@ -530,7 +530,7 @@
|
||||||
"notification.own_poll": "Tu sondage ha finite",
|
"notification.own_poll": "Tu sondage ha finite",
|
||||||
"notification.poll": "Un sondage in le qual tu ha votate ha finite",
|
"notification.poll": "Un sondage in le qual tu ha votate ha finite",
|
||||||
"notification.reblog": "{name} ha impulsate tu message",
|
"notification.reblog": "{name} ha impulsate tu message",
|
||||||
"notification.reblog.name_and_others_with_link": "{name} e <a>{count, plural, one {# altere} other {# alteres}}</a> promoveva tu message",
|
"notification.reblog.name_and_others_with_link": "{name} e <a>{count, plural, one {# altere} other {# alteres}}</a> ha impulsate tu message",
|
||||||
"notification.relationships_severance_event": "Connexiones perdite con {name}",
|
"notification.relationships_severance_event": "Connexiones perdite con {name}",
|
||||||
"notification.relationships_severance_event.account_suspension": "Un administrator de {from} ha suspendiute {target}. Isto significa que tu non pote plus reciper actualisationes de iste persona o interager con ille.",
|
"notification.relationships_severance_event.account_suspension": "Un administrator de {from} ha suspendiute {target}. Isto significa que tu non pote plus reciper actualisationes de iste persona o interager con ille.",
|
||||||
"notification.relationships_severance_event.domain_block": "Un administrator de {from} ha blocate {target}, includente {followersCount} de tu sequitores e {followingCount, plural, one {# conto} other {# contos}} que tu seque.",
|
"notification.relationships_severance_event.domain_block": "Un administrator de {from} ha blocate {target}, includente {followersCount} de tu sequitores e {followingCount, plural, one {# conto} other {# contos}} que tu seque.",
|
||||||
|
@ -539,21 +539,21 @@
|
||||||
"notification.status": "{name} ha justo ora publicate",
|
"notification.status": "{name} ha justo ora publicate",
|
||||||
"notification.update": "{name} ha modificate un message",
|
"notification.update": "{name} ha modificate un message",
|
||||||
"notification_requests.accept": "Acceptar",
|
"notification_requests.accept": "Acceptar",
|
||||||
"notification_requests.accept_multiple": "{count, plural, one {Accepta # requesta…} other {Accepta # requestas…}}",
|
"notification_requests.accept_multiple": "{count, plural, one {Acceptar # requesta…} other {Acceptar # requestas…}}",
|
||||||
"notification_requests.confirm_accept_multiple.button": "{count, plural, one {Accepta requesta} other {Accepta requestas}}",
|
"notification_requests.confirm_accept_multiple.button": "{count, plural, one {Acceptar le requesta} other {Acceptar le requestas}}",
|
||||||
"notification_requests.confirm_accept_multiple.message": "Tu acceptara {count, plural, one {un requesta de aviso} other {# requestas de aviso}}. Desira tu vermente continuar?",
|
"notification_requests.confirm_accept_multiple.message": "Tu es sur le puncto de acceptar {count, plural, one {un requesta de notification} other {# requestas de notification}}. Es tu secur de voler continuar?",
|
||||||
"notification_requests.confirm_accept_multiple.title": "Acceptar petitiones de notification?",
|
"notification_requests.confirm_accept_multiple.title": "Acceptar petitiones de notification?",
|
||||||
"notification_requests.confirm_dismiss_multiple.button": "{count, plural, one {Rejectar requesta} other {Rejectar requestas}}",
|
"notification_requests.confirm_dismiss_multiple.button": "{count, plural, one {Rejectar le requesta} other {Rejectar le requestas}}",
|
||||||
"notification_requests.confirm_dismiss_multiple.message": "Tu rejectara {count, plural, one {un requesta de aviso} other {# requestas de aviso}}. Tu non potera facilemente acceder {count, plural, one {lo} other {los}} ancora. Desira tu vermente continuar?",
|
"notification_requests.confirm_dismiss_multiple.message": "Tu es sur le puncto de rejectar {count, plural, one {un requesta} other {# requestas}} de notification. Tu non potera facilemente acceder a {count, plural, one {illo} other {illos}} plus tarde. Es tu secur de voler continuar?",
|
||||||
"notification_requests.confirm_dismiss_multiple.title": "Dimitter petitiones de notification?",
|
"notification_requests.confirm_dismiss_multiple.title": "Dimitter petitiones de notification?",
|
||||||
"notification_requests.dismiss": "Clauder",
|
"notification_requests.dismiss": "Clauder",
|
||||||
"notification_requests.dismiss_multiple": "{count, plural, one {Rejectar # requesta…} other {Rejectar # requestas…}}",
|
"notification_requests.dismiss_multiple": "{count, plural, one {Rejectar # requesta…} other {Rejectar # requestas…}}",
|
||||||
"notification_requests.edit_selection": "Modificar",
|
"notification_requests.edit_selection": "Modificar",
|
||||||
"notification_requests.exit_selection": "Facite",
|
"notification_requests.exit_selection": "Facite",
|
||||||
"notification_requests.explainer_for_limited_account": "Le avisos ab iste conto ha essite filtrate perque le conto ha essite limitate per un moderator.",
|
"notification_requests.explainer_for_limited_account": "Le notificationes de iste conto ha essite filtrate perque le conto ha essite limitate per un moderator.",
|
||||||
"notification_requests.explainer_for_limited_remote_account": "Le avisos ab iste conto ha essite filtrate perque le conto o su servitor ha essite limitate per un moderator.",
|
"notification_requests.explainer_for_limited_remote_account": "Le notificationes de iste conto ha essite filtrate perque le conto o su servitor ha essite limitate per un moderator.",
|
||||||
"notification_requests.maximize": "Maximisar",
|
"notification_requests.maximize": "Maximisar",
|
||||||
"notification_requests.minimize_banner": "Minimisar le bandiera del avisos filtrate",
|
"notification_requests.minimize_banner": "Minimisar le bandiera de notificationes filtrate",
|
||||||
"notification_requests.notifications_from": "Notificationes de {name}",
|
"notification_requests.notifications_from": "Notificationes de {name}",
|
||||||
"notification_requests.title": "Notificationes filtrate",
|
"notification_requests.title": "Notificationes filtrate",
|
||||||
"notification_requests.view": "Vider notificationes",
|
"notification_requests.view": "Vider notificationes",
|
||||||
|
@ -595,10 +595,10 @@
|
||||||
"notifications.policy.accept": "Acceptar",
|
"notifications.policy.accept": "Acceptar",
|
||||||
"notifications.policy.accept_hint": "Monstrar in le notificationes",
|
"notifications.policy.accept_hint": "Monstrar in le notificationes",
|
||||||
"notifications.policy.drop": "Ignorar",
|
"notifications.policy.drop": "Ignorar",
|
||||||
"notifications.policy.drop_hint": "Inviar al nihil, pro jammais esser vidite ancora",
|
"notifications.policy.drop_hint": "Inviar al vacuo, pro non esser jammais plus vidite",
|
||||||
"notifications.policy.filter": "Filtrar",
|
"notifications.policy.filter": "Filtrar",
|
||||||
"notifications.policy.filter_hint": "Inviar al cassa de notificationes filtrate",
|
"notifications.policy.filter_hint": "Inviar al cassa de notificationes filtrate",
|
||||||
"notifications.policy.filter_limited_accounts_hint": "Limitate per moderatores de servitor",
|
"notifications.policy.filter_limited_accounts_hint": "Limitate per le moderatores del servitor",
|
||||||
"notifications.policy.filter_limited_accounts_title": "Contos moderate",
|
"notifications.policy.filter_limited_accounts_title": "Contos moderate",
|
||||||
"notifications.policy.filter_new_accounts.hint": "Create in le ultime {days, plural, one {die} other {# dies}}",
|
"notifications.policy.filter_new_accounts.hint": "Create in le ultime {days, plural, one {die} other {# dies}}",
|
||||||
"notifications.policy.filter_new_accounts_title": "Nove contos",
|
"notifications.policy.filter_new_accounts_title": "Nove contos",
|
||||||
|
@ -783,7 +783,7 @@
|
||||||
"status.bookmark": "Adder al marcapaginas",
|
"status.bookmark": "Adder al marcapaginas",
|
||||||
"status.cancel_reblog_private": "Disfacer impulso",
|
"status.cancel_reblog_private": "Disfacer impulso",
|
||||||
"status.cannot_reblog": "Iste message non pote esser impulsate",
|
"status.cannot_reblog": "Iste message non pote esser impulsate",
|
||||||
"status.continued_thread": "Argumento continuitate",
|
"status.continued_thread": "Continuation del discussion",
|
||||||
"status.copy": "Copiar ligamine a message",
|
"status.copy": "Copiar ligamine a message",
|
||||||
"status.delete": "Deler",
|
"status.delete": "Deler",
|
||||||
"status.detailed_status": "Vista detaliate del conversation",
|
"status.detailed_status": "Vista detaliate del conversation",
|
||||||
|
@ -792,7 +792,7 @@
|
||||||
"status.edit": "Modificar",
|
"status.edit": "Modificar",
|
||||||
"status.edited": "Ultime modification le {date}",
|
"status.edited": "Ultime modification le {date}",
|
||||||
"status.edited_x_times": "Modificate {count, plural, one {{count} vice} other {{count} vices}}",
|
"status.edited_x_times": "Modificate {count, plural, one {{count} vice} other {{count} vices}}",
|
||||||
"status.embed": "Obtener codice incorporate",
|
"status.embed": "Obtener codice de incorporation",
|
||||||
"status.favourite": "Adder al favorites",
|
"status.favourite": "Adder al favorites",
|
||||||
"status.favourites": "{count, plural, one {favorite} other {favorites}}",
|
"status.favourites": "{count, plural, one {favorite} other {favorites}}",
|
||||||
"status.filter": "Filtrar iste message",
|
"status.filter": "Filtrar iste message",
|
||||||
|
@ -801,7 +801,7 @@
|
||||||
"status.load_more": "Cargar plus",
|
"status.load_more": "Cargar plus",
|
||||||
"status.media.open": "Clicca pro aperir",
|
"status.media.open": "Clicca pro aperir",
|
||||||
"status.media.show": "Clicca pro monstrar",
|
"status.media.show": "Clicca pro monstrar",
|
||||||
"status.media_hidden": "Medios celate",
|
"status.media_hidden": "Contento multimedial celate",
|
||||||
"status.mention": "Mentionar @{name}",
|
"status.mention": "Mentionar @{name}",
|
||||||
"status.more": "Plus",
|
"status.more": "Plus",
|
||||||
"status.mute": "Silentiar @{name}",
|
"status.mute": "Silentiar @{name}",
|
||||||
|
@ -855,11 +855,11 @@
|
||||||
"upload_error.poll": "Incargamento de files non permittite con sondages.",
|
"upload_error.poll": "Incargamento de files non permittite con sondages.",
|
||||||
"upload_form.audio_description": "Describe lo pro le gente con difficultates auditive",
|
"upload_form.audio_description": "Describe lo pro le gente con difficultates auditive",
|
||||||
"upload_form.description": "Describe lo pro le gente con difficultates visual",
|
"upload_form.description": "Describe lo pro le gente con difficultates visual",
|
||||||
"upload_form.drag_and_drop.instructions": "Pro colliger un annexo de medios, pressar Spatio o Inviar. Trahente lo, usar le claves flecha pro mover le annexo de medios in ulle direction date. De novo pressar Spatio o Inviar pro deponer le annexo de medios in su nove position, o pressar Escappar pro cancellar.",
|
"upload_form.drag_and_drop.instructions": "Pro prender un annexo multimedial, preme sur le barra de spatios o Enter. Trahente lo, usa le claves de flecha pro displaciar le annexo multimedial in un certe direction. Preme le barra de spatios o Enter de novo pro deponer le annexo multimedial in su nove position, o preme sur Escape pro cancellar.",
|
||||||
"upload_form.drag_and_drop.on_drag_cancel": "Le extraction era cancellate. Le annexo de medios {item} era deponite.",
|
"upload_form.drag_and_drop.on_drag_cancel": "Le displaciamento ha essite cancellate. Le annexo multimedial {item} ha essite deponite.",
|
||||||
"upload_form.drag_and_drop.on_drag_end": "Le annexo de medios {item} era deponite.",
|
"upload_form.drag_and_drop.on_drag_end": "Le annexo multimedial {item} ha essite deponite.",
|
||||||
"upload_form.drag_and_drop.on_drag_over": "Le annexo de medios {item} era movite.",
|
"upload_form.drag_and_drop.on_drag_over": "Le annexo multimedial {item} ha essite displaciate.",
|
||||||
"upload_form.drag_and_drop.on_drag_start": "Annexo de medios {item} colligite.",
|
"upload_form.drag_and_drop.on_drag_start": "Le annexo multimedial {item} ha essite prendite.",
|
||||||
"upload_form.edit": "Modificar",
|
"upload_form.edit": "Modificar",
|
||||||
"upload_form.thumbnail": "Cambiar le miniatura",
|
"upload_form.thumbnail": "Cambiar le miniatura",
|
||||||
"upload_form.video_description": "Describe lo pro le gente con difficultates auditive o visual",
|
"upload_form.video_description": "Describe lo pro le gente con difficultates auditive o visual",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"about.blocks": "Server moderati",
|
"about.blocks": "Server moderati",
|
||||||
"about.contact": "Contatto:",
|
"about.contact": "Contatti:",
|
||||||
"about.disclaimer": "Mastodon è un software libero e open-source e un marchio di Mastodon gGmbH.",
|
"about.disclaimer": "Mastodon è un software libero e open-source e un marchio di Mastodon gGmbH.",
|
||||||
"about.domain_blocks.no_reason_available": "Motivo non disponibile",
|
"about.domain_blocks.no_reason_available": "Motivo non disponibile",
|
||||||
"about.domain_blocks.preamble": "Mastodon, generalmente, ti consente di visualizzare i contenuti e interagire con gli utenti da qualsiasi altro server nel fediverso. Queste sono le eccezioni che sono state fatte su questo particolare server.",
|
"about.domain_blocks.preamble": "Mastodon, generalmente, ti consente di visualizzare i contenuti e interagire con gli utenti da qualsiasi altro server nel fediverso. Queste sono le eccezioni che sono state fatte su questo particolare server.",
|
||||||
|
@ -39,7 +39,7 @@
|
||||||
"account.following_counter": "{count, plural, one {{counter} segui} other {{counter} segui}}",
|
"account.following_counter": "{count, plural, one {{counter} segui} other {{counter} segui}}",
|
||||||
"account.follows.empty": "Questo utente non segue ancora nessuno.",
|
"account.follows.empty": "Questo utente non segue ancora nessuno.",
|
||||||
"account.go_to_profile": "Vai al profilo",
|
"account.go_to_profile": "Vai al profilo",
|
||||||
"account.hide_reblogs": "Nascondi potenziamenti da @{name}",
|
"account.hide_reblogs": "Nascondi condivisioni da @{name}",
|
||||||
"account.in_memoriam": "In memoria.",
|
"account.in_memoriam": "In memoria.",
|
||||||
"account.joined_short": "Iscritto",
|
"account.joined_short": "Iscritto",
|
||||||
"account.languages": "Modifica le lingue d'iscrizione",
|
"account.languages": "Modifica le lingue d'iscrizione",
|
||||||
|
@ -61,7 +61,7 @@
|
||||||
"account.requested": "In attesa d'approvazione. Clicca per annullare la richiesta di seguire",
|
"account.requested": "In attesa d'approvazione. Clicca per annullare la richiesta di seguire",
|
||||||
"account.requested_follow": "{name} ha richiesto di seguirti",
|
"account.requested_follow": "{name} ha richiesto di seguirti",
|
||||||
"account.share": "Condividi il profilo di @{name}",
|
"account.share": "Condividi il profilo di @{name}",
|
||||||
"account.show_reblogs": "Mostra potenziamenti da @{name}",
|
"account.show_reblogs": "Mostra condivisioni da @{name}",
|
||||||
"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}",
|
||||||
|
@ -406,11 +406,11 @@
|
||||||
"keyboard_shortcuts.column": "Focalizza alla colonna",
|
"keyboard_shortcuts.column": "Focalizza alla colonna",
|
||||||
"keyboard_shortcuts.compose": "Focalizza l'area di composizione testuale",
|
"keyboard_shortcuts.compose": "Focalizza l'area di composizione testuale",
|
||||||
"keyboard_shortcuts.description": "Descrizione",
|
"keyboard_shortcuts.description": "Descrizione",
|
||||||
"keyboard_shortcuts.direct": "per aprire la colonna menzioni private",
|
"keyboard_shortcuts.direct": "Apre la colonna \"menzioni private\"",
|
||||||
"keyboard_shortcuts.down": "Scorri in basso nell'elenco",
|
"keyboard_shortcuts.down": "Scorri in basso nell'elenco",
|
||||||
"keyboard_shortcuts.enter": "Apre il post",
|
"keyboard_shortcuts.enter": "Apre il post",
|
||||||
"keyboard_shortcuts.favourite": "Contrassegna il post come preferito",
|
"keyboard_shortcuts.favourite": "Contrassegna il post come preferito",
|
||||||
"keyboard_shortcuts.favourites": "Apri l'elenco dei preferiti",
|
"keyboard_shortcuts.favourites": "Apre l'elenco dei preferiti",
|
||||||
"keyboard_shortcuts.federated": "Apre la cronologia federata",
|
"keyboard_shortcuts.federated": "Apre la cronologia federata",
|
||||||
"keyboard_shortcuts.heading": "Scorciatoie da tastiera",
|
"keyboard_shortcuts.heading": "Scorciatoie da tastiera",
|
||||||
"keyboard_shortcuts.home": "Apre la cronologia domestica",
|
"keyboard_shortcuts.home": "Apre la cronologia domestica",
|
||||||
|
@ -664,7 +664,7 @@
|
||||||
"poll_button.add_poll": "Aggiungi un sondaggio",
|
"poll_button.add_poll": "Aggiungi un sondaggio",
|
||||||
"poll_button.remove_poll": "Rimuovi il sondaggio",
|
"poll_button.remove_poll": "Rimuovi il sondaggio",
|
||||||
"privacy.change": "Modifica privacy del post",
|
"privacy.change": "Modifica privacy del post",
|
||||||
"privacy.direct.long": "Tutti quelli menzioniati nel post",
|
"privacy.direct.long": "Tutti quelli menzionati nel post",
|
||||||
"privacy.direct.short": "Persone specifiche",
|
"privacy.direct.short": "Persone specifiche",
|
||||||
"privacy.private.long": "Solo i tuoi follower",
|
"privacy.private.long": "Solo i tuoi follower",
|
||||||
"privacy.private.short": "Follower",
|
"privacy.private.short": "Follower",
|
||||||
|
|
|
@ -149,7 +149,7 @@
|
||||||
"bookmark_categories.status.add": "分類に追加",
|
"bookmark_categories.status.add": "分類に追加",
|
||||||
"bookmark_categories.status.remove": "分類から削除",
|
"bookmark_categories.status.remove": "分類から削除",
|
||||||
"bookmark_categories.subheading": "あなたの分類",
|
"bookmark_categories.subheading": "あなたの分類",
|
||||||
"block_modal.remote_users_caveat": "このサーバーはあなたのブロックの意思を尊重するように {domain} へ通知します。しかしながら、ブロックの扱い方はサーバーによってさまざまで、相手のサーバーは必ずしもこのブロックを適切に取り扱うものではないことに留意が必要です。また、あなたの公開投稿はサーバーからログアウトすれば誰からも見ることができます。",
|
"block_modal.remote_users_caveat": "このサーバーはあなたのブロックの意思を尊重するように {domain} へ通知します。しかし、サーバーによってはブロック機能の扱いが異なる場合もありえるため、相手のサーバー側で求める通りの処理が行われる確証はありません。また、公開投稿はユーザーがログアウト状態であれば閲覧できる可能性があります。",
|
||||||
"block_modal.show_less": "注意事項を閉じる",
|
"block_modal.show_less": "注意事項を閉じる",
|
||||||
"block_modal.show_more": "注意事項",
|
"block_modal.show_more": "注意事項",
|
||||||
"block_modal.they_cant_mention": "相手はあなたへの返信やフォローができなくなります。",
|
"block_modal.they_cant_mention": "相手はあなたへの返信やフォローができなくなります。",
|
||||||
|
@ -314,17 +314,17 @@
|
||||||
"domain_block_modal.you_will_lose_num_followers": "「{followingCount, plural, other {{followingCountDisplay}フォロー}}」、「{followersCount, plural, other {{followersCountDisplay}フォロワー}}」を失うことになります。",
|
"domain_block_modal.you_will_lose_num_followers": "「{followingCount, plural, other {{followingCountDisplay}フォロー}}」、「{followersCount, plural, other {{followersCountDisplay}フォロワー}}」を失うことになります。",
|
||||||
"domain_block_modal.you_will_lose_relationships": "このサーバーにいるすべてのフォローとフォロワーを失うことになります。",
|
"domain_block_modal.you_will_lose_relationships": "このサーバーにいるすべてのフォローとフォロワーを失うことになります。",
|
||||||
"domain_block_modal.you_wont_see_posts": "このサーバーのユーザーからの投稿や通知が閲覧できなくなります。",
|
"domain_block_modal.you_wont_see_posts": "このサーバーのユーザーからの投稿や通知が閲覧できなくなります。",
|
||||||
"domain_pill.activitypub_lets_connect": "Mastodonからほかのソーシャルアプリのユーザーへ、そのまた別のアプリのユーザーへと、それぞれが互いにつながり関わり合うことをこのActivityPubの仕組みが実現しています。",
|
"domain_pill.activitypub_lets_connect": "この仕組みによって、Mastodonはもちろん、他のさまざまなソーシャルアプリも含めたユーザーとのつながりや交流が実現しています。",
|
||||||
"domain_pill.activitypub_like_language": "ActivityPubとは、Mastodonがほかのサーバーと会話をするときにしゃべる「言葉」のようなものです。",
|
"domain_pill.activitypub_like_language": "ActivityPubとは、Mastodonがほかのサーバーと会話をするときにしゃべる「言葉」のようなものです。",
|
||||||
"domain_pill.server": "サーバー",
|
"domain_pill.server": "サーバー",
|
||||||
"domain_pill.their_handle": "このユーザーのユーザーID:",
|
"domain_pill.their_handle": "このユーザーのハンドル:",
|
||||||
"domain_pill.their_server": "ユーザーの仮想の住所です。そのユーザーIDによるすべての投稿を保持しています。",
|
"domain_pill.their_server": "ユーザーの仮想の住所です。そのユーザーIDによるすべての投稿を保持しています。",
|
||||||
"domain_pill.their_username": "ユーザーを識別する名前です。ユーザー名はひとつのサーバー内においては唯一無二の名前ですが、ほかのサーバーには同名のユーザーがいることもあります。",
|
"domain_pill.their_username": "ユーザーを識別する名前です。ユーザー名はひとつのサーバー内においては唯一無二の名前ですが、ほかのサーバーには同名のユーザーがいることもあります。",
|
||||||
"domain_pill.username": "ユーザー名",
|
"domain_pill.username": "ユーザー名",
|
||||||
"domain_pill.whats_in_a_handle": "ユーザーIDについて",
|
"domain_pill.whats_in_a_handle": "ユーザーハンドルについて",
|
||||||
"domain_pill.who_they_are": "そのユーザーが「誰であるか」「どこに住んでいるか」はユーザーIDから知ることができます。これにより<button>いくつものActivityPub対応のプラットフォーム</button>の集まりからなるネットワークを介してそれぞれのユーザーと関わり合うことができます。",
|
"domain_pill.who_they_are": "ユーザーハンドルには相手の「名前」と「住所」の情報が書いてあるため、<button>ActivityPub対応サービス</button>が連合してつくるソーシャルネットワークのユーザーであれば交流が可能です。",
|
||||||
"domain_pill.who_you_are": "ほかのユーザーはあなたが「誰であるか」「どこに住んでいるか」をユーザーIDから認識でき、これにより<button>いくつものActivityPub対応のプラットフォーム</button>の集まりからなるネットワークを介してあなたと関わり合うことができます。",
|
"domain_pill.who_you_are": "ユーザーハンドルにはあなたの「名前」と「住所」の情報が書いてあるため、<button>ActivityPub対応サービス</button>が連合してつくるソーシャルネットワークのユーザーであればあなたと交流が可能です。",
|
||||||
"domain_pill.your_handle": "あなたのユーザーID:",
|
"domain_pill.your_handle": "あなたのハンドル:",
|
||||||
"domain_pill.your_server": "あなたの仮想の住所です。投稿した内容はすべてここに保持されます。もし今いるサーバーが気に入っていない場合は、フォロワーを引き継いで別のサーバーに引っ越すこともできます。",
|
"domain_pill.your_server": "あなたの仮想の住所です。投稿した内容はすべてここに保持されます。もし今いるサーバーが気に入っていない場合は、フォロワーを引き継いで別のサーバーに引っ越すこともできます。",
|
||||||
"domain_pill.your_username": "あなたを識別する名前です。ユーザー名はひとつのサーバー内においては唯一無二の名前ですが、ほかのサーバーには同名のユーザーがいることもあります。",
|
"domain_pill.your_username": "あなたを識別する名前です。ユーザー名はひとつのサーバー内においては唯一無二の名前ですが、ほかのサーバーには同名のユーザーがいることもあります。",
|
||||||
"embed.instructions": "下記のコードをコピーしてウェブサイトに埋め込みます。",
|
"embed.instructions": "下記のコードをコピーしてウェブサイトに埋め込みます。",
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
"about.domain_blocks.no_reason_available": "Ulac taɣẓint",
|
"about.domain_blocks.no_reason_available": "Ulac taɣẓint",
|
||||||
"about.domain_blocks.preamble": "Maṣṭudun s umata yeḍmen-ak ad teẓreḍ agbur, ad tesdemreḍ akked yimseqdacen-nniḍen seg yal aqeddac deg fedivers. Ha-tent-an ɣur-k tsuraf i yellan deg uqeddac-agi.",
|
"about.domain_blocks.preamble": "Maṣṭudun s umata yeḍmen-ak ad teẓreḍ agbur, ad tesdemreḍ akked yimseqdacen-nniḍen seg yal aqeddac deg fedivers. Ha-tent-an ɣur-k tsuraf i yellan deg uqeddac-agi.",
|
||||||
"about.domain_blocks.silenced.title": "Ɣur-s talast",
|
"about.domain_blocks.silenced.title": "Ɣur-s talast",
|
||||||
"about.domain_blocks.suspended.title": "Yeḥbes",
|
"about.domain_blocks.suspended.title": "Yettwaḥbes",
|
||||||
"about.not_available": "Talɣut-a ur tettwabder ara deg uqeddac-a.",
|
"about.not_available": "Talɣut-a ur tettwabder ara deg uqeddac-a.",
|
||||||
"about.powered_by": "Azeṭṭa inmetti yettwasɣelsen sɣur {mastodon}",
|
"about.powered_by": "Azeṭṭa inmetti yettwasɣelsen sɣur {mastodon}",
|
||||||
"about.rules": "Ilugan n uqeddac",
|
"about.rules": "Ilugan n uqeddac",
|
||||||
|
@ -167,6 +167,7 @@
|
||||||
"confirmations.unfollow.message": "Tetḥeqqeḍ belli tebɣiḍ ur teṭafaṛeḍ ara {name}?",
|
"confirmations.unfollow.message": "Tetḥeqqeḍ belli tebɣiḍ ur teṭafaṛeḍ ara {name}?",
|
||||||
"content_warning.hide": "Ffer tasuffeɣt",
|
"content_warning.hide": "Ffer tasuffeɣt",
|
||||||
"content_warning.show": "Ssken-d akken tebɣu tili",
|
"content_warning.show": "Ssken-d akken tebɣu tili",
|
||||||
|
"content_warning.show_more": "Sken-d ugar",
|
||||||
"conversation.delete": "Kkes adiwenni",
|
"conversation.delete": "Kkes adiwenni",
|
||||||
"conversation.mark_as_read": "Creḍ yettwaɣṛa",
|
"conversation.mark_as_read": "Creḍ yettwaɣṛa",
|
||||||
"conversation.open": "Ssken adiwenni",
|
"conversation.open": "Ssken adiwenni",
|
||||||
|
@ -275,7 +276,7 @@
|
||||||
"hashtag.column_settings.tag_toggle": "Glu-d s yihacṭagen imerna i ujgu-agi",
|
"hashtag.column_settings.tag_toggle": "Glu-d s yihacṭagen imerna i ujgu-agi",
|
||||||
"hashtag.counter_by_accounts": "{count, plural, one {{counter} imtekki} other {{counter} n imtekkiyen}}",
|
"hashtag.counter_by_accounts": "{count, plural, one {{counter} imtekki} other {{counter} n imtekkiyen}}",
|
||||||
"hashtag.counter_by_uses": "{count, plural, one {{counter} n tsuffeɣt} other {{counter} n tsuffaɣ}}",
|
"hashtag.counter_by_uses": "{count, plural, one {{counter} n tsuffeɣt} other {{counter} n tsuffaɣ}}",
|
||||||
"hashtag.counter_by_uses_today": "{count, plural, one {{counter} n tsuffeɣt} other {{counter} n tsuffaɣ}} assa",
|
"hashtag.counter_by_uses_today": "{count, plural, one {{counter} n tsuffeɣt} other {{counter} n tsuffaɣ}} ass-a",
|
||||||
"hashtag.follow": "Ḍfeṛ ahacṭag",
|
"hashtag.follow": "Ḍfeṛ ahacṭag",
|
||||||
"hashtags.and_other": "…d {count, plural, one {}other {# nniḍen}}",
|
"hashtags.and_other": "…d {count, plural, one {}other {# nniḍen}}",
|
||||||
"hints.threads.replies_may_be_missing": "Tiririyin d-yusan deg iqeddacen nniḍen, yezmer ur d-ddant ara.",
|
"hints.threads.replies_may_be_missing": "Tiririyin d-yusan deg iqeddacen nniḍen, yezmer ur d-ddant ara.",
|
||||||
|
@ -425,6 +426,7 @@
|
||||||
"notifications.column_settings.filter_bar.category": "Iri n usizdeg uzrib",
|
"notifications.column_settings.filter_bar.category": "Iri n usizdeg uzrib",
|
||||||
"notifications.column_settings.follow": "Imeḍfaṛen imaynuten:",
|
"notifications.column_settings.follow": "Imeḍfaṛen imaynuten:",
|
||||||
"notifications.column_settings.follow_request": "Isuturen imaynuten n teḍfeṛt:",
|
"notifications.column_settings.follow_request": "Isuturen imaynuten n teḍfeṛt:",
|
||||||
|
"notifications.column_settings.group": "Agraw",
|
||||||
"notifications.column_settings.mention": "Abdar:",
|
"notifications.column_settings.mention": "Abdar:",
|
||||||
"notifications.column_settings.poll": "Igemmaḍ n usenqed:",
|
"notifications.column_settings.poll": "Igemmaḍ n usenqed:",
|
||||||
"notifications.column_settings.push": "Alɣuten yettudemmren",
|
"notifications.column_settings.push": "Alɣuten yettudemmren",
|
||||||
|
@ -446,6 +448,7 @@
|
||||||
"notifications.mark_as_read": "Creḍ meṛṛa alɣuten am wakken ttwaɣran",
|
"notifications.mark_as_read": "Creḍ meṛṛa alɣuten am wakken ttwaɣran",
|
||||||
"notifications.permission_denied": "D awezɣi ad yili wermad n walɣuten n tnarit axateṛ turagt tettwagdel",
|
"notifications.permission_denied": "D awezɣi ad yili wermad n walɣuten n tnarit axateṛ turagt tettwagdel",
|
||||||
"notifications.policy.drop": "Anef-as",
|
"notifications.policy.drop": "Anef-as",
|
||||||
|
"notifications.policy.filter": "Sizdeg",
|
||||||
"notifications.policy.filter_new_accounts.hint": "Imiḍanen imaynuten i d-yennulfan deg {days, plural, one {yiwen n wass} other {# n wussan}} yezrin",
|
"notifications.policy.filter_new_accounts.hint": "Imiḍanen imaynuten i d-yennulfan deg {days, plural, one {yiwen n wass} other {# n wussan}} yezrin",
|
||||||
"notifications.policy.filter_new_accounts_title": "Imiḍan imaynuten",
|
"notifications.policy.filter_new_accounts_title": "Imiḍan imaynuten",
|
||||||
"notifications.policy.filter_not_followers_hint": "Ula d wid akked tid i k·m-id-iḍefren, ur wwiḍen ara {days, plural, one {yiwen wass} other {# wussan}}",
|
"notifications.policy.filter_not_followers_hint": "Ula d wid akked tid i k·m-id-iḍefren, ur wwiḍen ara {days, plural, one {yiwen wass} other {# wussan}}",
|
||||||
|
@ -515,7 +518,7 @@
|
||||||
"relative_time.just_now": "tura",
|
"relative_time.just_now": "tura",
|
||||||
"relative_time.minutes": "{number}tis",
|
"relative_time.minutes": "{number}tis",
|
||||||
"relative_time.seconds": "{number}tas",
|
"relative_time.seconds": "{number}tas",
|
||||||
"relative_time.today": "assa",
|
"relative_time.today": "ass-a",
|
||||||
"reply_indicator.cancel": "Sefsex",
|
"reply_indicator.cancel": "Sefsex",
|
||||||
"reply_indicator.poll": "Afmiḍi",
|
"reply_indicator.poll": "Afmiḍi",
|
||||||
"report.block": "Sewḥel",
|
"report.block": "Sewḥel",
|
||||||
|
@ -565,6 +568,7 @@
|
||||||
"search.quick_action.status_search": "Tisuffaɣ mṣadan d {x}",
|
"search.quick_action.status_search": "Tisuffaɣ mṣadan d {x}",
|
||||||
"search.search_or_paste": "Nadi neɣ senṭeḍ URL",
|
"search.search_or_paste": "Nadi neɣ senṭeḍ URL",
|
||||||
"search_popout.full_text_search_disabled_message": "Ur yelli ara deg {domain}.",
|
"search_popout.full_text_search_disabled_message": "Ur yelli ara deg {domain}.",
|
||||||
|
"search_popout.full_text_search_logged_out_message": "Yella kan mi ara tiliḍ d uqqin.",
|
||||||
"search_popout.language_code": "Tangalt ISO n tutlayt",
|
"search_popout.language_code": "Tangalt ISO n tutlayt",
|
||||||
"search_popout.options": "Iwellihen n unadi",
|
"search_popout.options": "Iwellihen n unadi",
|
||||||
"search_popout.quick_actions": "Tigawin tiruradin",
|
"search_popout.quick_actions": "Tigawin tiruradin",
|
||||||
|
|
|
@ -452,8 +452,8 @@
|
||||||
"lists.exclusive": "홈에서 이 게시물들 숨기기",
|
"lists.exclusive": "홈에서 이 게시물들 숨기기",
|
||||||
"lists.new.create": "리스트 추가",
|
"lists.new.create": "리스트 추가",
|
||||||
"lists.new.title_placeholder": "새 리스트의 이름",
|
"lists.new.title_placeholder": "새 리스트의 이름",
|
||||||
"lists.replies_policy.followed": "팔로우 한 사용자 누구나",
|
"lists.replies_policy.followed": "팔로우 한 사용자 누구나에게",
|
||||||
"lists.replies_policy.list": "리스트의 구성원",
|
"lists.replies_policy.list": "리스트의 구성원에게",
|
||||||
"lists.replies_policy.none": "모두 제외",
|
"lists.replies_policy.none": "모두 제외",
|
||||||
"lists.replies_policy.title": "답글 표시:",
|
"lists.replies_policy.title": "답글 표시:",
|
||||||
"lists.search": "팔로우 중인 사람들 중에서 찾기",
|
"lists.search": "팔로우 중인 사람들 중에서 찾기",
|
||||||
|
@ -598,7 +598,7 @@
|
||||||
"notifications.policy.drop_hint": "공허로 보내고, 다시는 보지 않습니다",
|
"notifications.policy.drop_hint": "공허로 보내고, 다시는 보지 않습니다",
|
||||||
"notifications.policy.filter": "필터",
|
"notifications.policy.filter": "필터",
|
||||||
"notifications.policy.filter_hint": "걸러진 알림 목록으로 보내기",
|
"notifications.policy.filter_hint": "걸러진 알림 목록으로 보내기",
|
||||||
"notifications.policy.filter_limited_accounts_hint": "서버 중재자에 의해 제한됨",
|
"notifications.policy.filter_limited_accounts_hint": "서버 중재자에 의해 제한된 계정들",
|
||||||
"notifications.policy.filter_limited_accounts_title": "중재된 계정",
|
"notifications.policy.filter_limited_accounts_title": "중재된 계정",
|
||||||
"notifications.policy.filter_new_accounts.hint": "{days, plural, one {하루} other {#일}} 안에 만들어진",
|
"notifications.policy.filter_new_accounts.hint": "{days, plural, one {하루} other {#일}} 안에 만들어진",
|
||||||
"notifications.policy.filter_new_accounts_title": "새 계정",
|
"notifications.policy.filter_new_accounts_title": "새 계정",
|
||||||
|
@ -705,7 +705,7 @@
|
||||||
"report.category.title_status": "게시물",
|
"report.category.title_status": "게시물",
|
||||||
"report.close": "완료",
|
"report.close": "완료",
|
||||||
"report.comment.title": "우리가 더 알아야 할 내용이 있나요?",
|
"report.comment.title": "우리가 더 알아야 할 내용이 있나요?",
|
||||||
"report.forward": "{target}에 포워드 됨",
|
"report.forward": "{target}에 전달",
|
||||||
"report.forward_hint": "이 계정은 다른 서버에 있습니다. 익명화 된 사본을 해당 서버에도 전송할까요?",
|
"report.forward_hint": "이 계정은 다른 서버에 있습니다. 익명화 된 사본을 해당 서버에도 전송할까요?",
|
||||||
"report.mute": "침묵",
|
"report.mute": "침묵",
|
||||||
"report.mute_explanation": "당신은 해당 계정의 게시물을 보지 않게 됩니다. 해당 계정은 여전히 당신을 팔로우 하거나 당신의 게시물을 볼 수 있으며 해당 계정은 자신이 뮤트 되었는지 알지 못합니다.",
|
"report.mute_explanation": "당신은 해당 계정의 게시물을 보지 않게 됩니다. 해당 계정은 여전히 당신을 팔로우 하거나 당신의 게시물을 볼 수 있으며 해당 계정은 자신이 뮤트 되었는지 알지 못합니다.",
|
||||||
|
|
|
@ -11,13 +11,16 @@
|
||||||
"about.not_available": "Ev zanyarî li ser vê rajekarê nehatine peydakirin.",
|
"about.not_available": "Ev zanyarî li ser vê rajekarê nehatine peydakirin.",
|
||||||
"about.powered_by": "Medyaya civakî ya nenavendî bi hêzdariya {mastodon}",
|
"about.powered_by": "Medyaya civakî ya nenavendî bi hêzdariya {mastodon}",
|
||||||
"about.rules": "Rêbazên rajekar",
|
"about.rules": "Rêbazên rajekar",
|
||||||
|
"account.account_note_header": "Nîşeyên kesane",
|
||||||
"account.add_or_remove_from_list": "Li lîsteyan zêde bike yan jî rake",
|
"account.add_or_remove_from_list": "Li lîsteyan zêde bike yan jî rake",
|
||||||
"account.badges.bot": "Bot",
|
"account.badges.bot": "Bot",
|
||||||
"account.badges.group": "Kom",
|
"account.badges.group": "Kom",
|
||||||
"account.block": "@{name} asteng bike",
|
"account.block": "@{name} asteng bike",
|
||||||
"account.block_domain": "Navpera {domain} asteng bike",
|
"account.block_domain": "Navpera {domain} asteng bike",
|
||||||
|
"account.block_short": "Asteng bike",
|
||||||
"account.blocked": "Astengkirî",
|
"account.blocked": "Astengkirî",
|
||||||
"account.cancel_follow_request": "Daxwaza şopandinê vekişîne",
|
"account.cancel_follow_request": "Daxwaza şopandinê vekişîne",
|
||||||
|
"account.copy": "Girêdanê bo profîlê jê bigire",
|
||||||
"account.direct": "Bi taybetî qale @{name} bike",
|
"account.direct": "Bi taybetî qale @{name} bike",
|
||||||
"account.disable_notifications": "Êdî min agahdar neke gava @{name} diweşîne",
|
"account.disable_notifications": "Êdî min agahdar neke gava @{name} diweşîne",
|
||||||
"account.domain_blocked": "Navper hate astengkirin",
|
"account.domain_blocked": "Navper hate astengkirin",
|
||||||
|
@ -28,9 +31,12 @@
|
||||||
"account.featured_tags.last_status_never": "Şandî tune ne",
|
"account.featured_tags.last_status_never": "Şandî tune ne",
|
||||||
"account.featured_tags.title": "{name}'s hashtagên taybet",
|
"account.featured_tags.title": "{name}'s hashtagên taybet",
|
||||||
"account.follow": "Bişopîne",
|
"account.follow": "Bişopîne",
|
||||||
|
"account.follow_back": "Bişopîne",
|
||||||
"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} şopîner} other {{counter} şopîner}}",
|
||||||
"account.following": "Dişopîne",
|
"account.following": "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.go_to_profile": "Biçe bo profîlê",
|
"account.go_to_profile": "Biçe bo profîlê",
|
||||||
"account.hide_reblogs": "Bilindkirinên ji @{name} veşêre",
|
"account.hide_reblogs": "Bilindkirinên ji @{name} veşêre",
|
||||||
|
@ -43,7 +49,11 @@
|
||||||
"account.mention": "Qal @{name} bike",
|
"account.mention": "Qal @{name} bike",
|
||||||
"account.moved_to": "{name} diyar kir ku ajimêra nû ya wan niha ev e:",
|
"account.moved_to": "{name} diyar kir ku ajimêra nû ya wan niha ev e:",
|
||||||
"account.mute": "@{name} bêdeng bike",
|
"account.mute": "@{name} bêdeng bike",
|
||||||
|
"account.mute_notifications_short": "Agahdariyan bêdeng bike",
|
||||||
|
"account.mute_short": "Bêdeng bike",
|
||||||
"account.muted": "Bêdengkirî",
|
"account.muted": "Bêdengkirî",
|
||||||
|
"account.mutual": "Hevpar",
|
||||||
|
"account.no_bio": "Ti danasîn nehatiye tevlîkirin.",
|
||||||
"account.open_original_page": "Rûpela resen veke",
|
"account.open_original_page": "Rûpela resen veke",
|
||||||
"account.posts": "Şandî",
|
"account.posts": "Şandî",
|
||||||
"account.posts_with_replies": "Şandî û bersiv",
|
"account.posts_with_replies": "Şandî û bersiv",
|
||||||
|
@ -52,12 +62,14 @@
|
||||||
"account.requested_follow": "{name} dixwaze te bişopîne",
|
"account.requested_follow": "{name} dixwaze te bişopîne",
|
||||||
"account.share": "Profîla @{name} parve bike",
|
"account.share": "Profîla @{name} parve bike",
|
||||||
"account.show_reblogs": "Bilindkirinên ji @{name} nîşan bike",
|
"account.show_reblogs": "Bilindkirinên ji @{name} nîşan bike",
|
||||||
|
"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": "Astengiyê rake",
|
"account.unblock_short": "Astengiyê rake",
|
||||||
"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 neke",
|
"account.unmute": "@{name} bêdeng neke",
|
||||||
|
"account.unmute_notifications_short": "Agahdariyan bêdeng bike",
|
||||||
"account.unmute_short": "Bêdeng neke",
|
"account.unmute_short": "Bêdeng neke",
|
||||||
"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ê",
|
||||||
|
@ -72,6 +84,9 @@
|
||||||
"announcement.announcement": "Daxuyanî",
|
"announcement.announcement": "Daxuyanî",
|
||||||
"attachments_list.unprocessed": "(bêpêvajo)",
|
"attachments_list.unprocessed": "(bêpêvajo)",
|
||||||
"audio.hide": "Dengê veşêre",
|
"audio.hide": "Dengê veşêre",
|
||||||
|
"block_modal.show_less": "Kêmtir nîşan bide",
|
||||||
|
"block_modal.show_more": "Bêtir nîşan bide",
|
||||||
|
"block_modal.title": "Bikarhêner asteng bike?",
|
||||||
"boost_modal.combo": "Ji bo derbas bî carekî din de pêlê {combo} bike",
|
"boost_modal.combo": "Ji bo derbas bî carekî din de pêlê {combo} bike",
|
||||||
"bundle_column_error.copy_stacktrace": "Rapora çewtiyê jê bigire",
|
"bundle_column_error.copy_stacktrace": "Rapora çewtiyê jê bigire",
|
||||||
"bundle_column_error.error.body": "Rûpela xwestî nehate pêşkêşkirin. Dibe ku ew ji ber şaşetiyeke koda me, an jî pirsgirêkeke lihevhatina gerokê be.",
|
"bundle_column_error.error.body": "Rûpela xwestî nehate pêşkêşkirin. Dibe ku ew ji ber şaşetiyeke koda me, an jî pirsgirêkeke lihevhatina gerokê be.",
|
||||||
|
@ -142,10 +157,12 @@
|
||||||
"confirmations.logout.message": "Ma tu dixwazî ku derkevî?",
|
"confirmations.logout.message": "Ma tu dixwazî ku derkevî?",
|
||||||
"confirmations.mute.confirm": "Bêdeng bike",
|
"confirmations.mute.confirm": "Bêdeng bike",
|
||||||
"confirmations.redraft.confirm": "Jê bibe & ji nû ve serrast bike",
|
"confirmations.redraft.confirm": "Jê bibe & ji nû ve serrast bike",
|
||||||
|
"confirmations.redraft.message": "Bi rastî tu dixwazî şandî ye jê bibî û ji nû ve reşnivîsek çê bikî? Bijarte û şandî wê wenda bibin û bersivên ji bo şandiyê resen wê sêwî bimînin.",
|
||||||
"confirmations.reply.confirm": "Bersivê bide",
|
"confirmations.reply.confirm": "Bersivê bide",
|
||||||
"confirmations.reply.message": "Bersiva niha li ser peyama ku tu niha berhev dikî dê binivsîne. Ma pê bawer î ku tu dixwazî bidomînî?",
|
"confirmations.reply.message": "Bersiva niha li ser peyama ku tu niha berhev dikî dê binivsîne. Ma pê bawer î ku tu dixwazî bidomînî?",
|
||||||
"confirmations.unfollow.confirm": "Neşopîne",
|
"confirmations.unfollow.confirm": "Neşopîne",
|
||||||
"confirmations.unfollow.message": "Ma tu dixwazî ku dev ji şopa {name} berdî?",
|
"confirmations.unfollow.message": "Ma tu dixwazî ku dev ji şopa {name} berdî?",
|
||||||
|
"content_warning.show_more": "Bêtir nîşan bide",
|
||||||
"conversation.delete": "Axaftinê jê bibe",
|
"conversation.delete": "Axaftinê jê bibe",
|
||||||
"conversation.mark_as_read": "Wekî xwendî nîşan bide",
|
"conversation.mark_as_read": "Wekî xwendî nîşan bide",
|
||||||
"conversation.open": "Axaftinê nîşan bide",
|
"conversation.open": "Axaftinê nîşan bide",
|
||||||
|
@ -161,6 +178,9 @@
|
||||||
"dismissable_banner.dismiss": "Paşguh bike",
|
"dismissable_banner.dismiss": "Paşguh bike",
|
||||||
"dismissable_banner.explore_links": "Ev çîrokên nûçeyan niha li ser vê û rajekarên din ên tora nenavendî ji aliyê mirovan ve têne axaftin.",
|
"dismissable_banner.explore_links": "Ev çîrokên nûçeyan niha li ser vê û rajekarên din ên tora nenavendî ji aliyê mirovan ve têne axaftin.",
|
||||||
"dismissable_banner.explore_tags": "Ev hashtagên ji vê û rajekarên din ên di tora nenavendî de niha li ser vê rajekarê balê dikşînin.",
|
"dismissable_banner.explore_tags": "Ev hashtagên ji vê û rajekarên din ên di tora nenavendî de niha li ser vê rajekarê balê dikşînin.",
|
||||||
|
"domain_block_modal.block": "Rajekar asteng bike",
|
||||||
|
"domain_pill.server": "Rajekar",
|
||||||
|
"domain_pill.username": "Navê bikarhêner",
|
||||||
"embed.instructions": "Bi jêgirtina koda jêrîn vê şandiyê li ser malpera xwe bi cih bike.",
|
"embed.instructions": "Bi jêgirtina koda jêrîn vê şandiyê li ser malpera xwe bi cih bike.",
|
||||||
"embed.preview": "Ew ê çawa xuya bibe li vir tê nîşandan:",
|
"embed.preview": "Ew ê çawa xuya bibe li vir tê nîşandan:",
|
||||||
"emoji_button.activity": "Çalakî",
|
"emoji_button.activity": "Çalakî",
|
||||||
|
|
|
@ -1,14 +1,25 @@
|
||||||
{
|
{
|
||||||
|
"about.blocks": "Servī moderātī",
|
||||||
"about.contact": "Ratio:",
|
"about.contact": "Ratio:",
|
||||||
|
"about.disclaimer": "Mastodon est software līberum, apertum fontem, et nōtam commercium Mastodon gGmbH.",
|
||||||
"about.domain_blocks.no_reason_available": "Ratio abdere est",
|
"about.domain_blocks.no_reason_available": "Ratio abdere est",
|
||||||
|
"about.domain_blocks.preamble": "Mastodon genērāliter sinit tē contentum ex aliīs servientibus in fedīversō vidēre et cum usoribus ab iīs interāgere. Haē sunt exceptionēs quae in hōc particulārī servientē factae sunt.",
|
||||||
"about.domain_blocks.silenced.explanation": "Tua profilia atque tuum contentum ab hac serve praecipue non videbis, nisi explōrēs expresse aut subsequeris et optēs.",
|
"about.domain_blocks.silenced.explanation": "Tua profilia atque tuum contentum ab hac serve praecipue non videbis, nisi explōrēs expresse aut subsequeris et optēs.",
|
||||||
|
"about.domain_blocks.silenced.title": "Limitātus",
|
||||||
|
"about.domain_blocks.suspended.explanation": "Nulla data ab hōc servientē processābuntur, servābuntur aut commūtābuntur, faciendumque omnem interactionem aut communicātiōnem cum usoribus ab hōc servientē impossibilem.",
|
||||||
|
"about.domain_blocks.suspended.title": "suspensus",
|
||||||
|
"about.not_available": "Haec informātiō in hōc servientē nōn praebita est.",
|
||||||
|
"about.powered_by": "Nuntii socīālēs decentralizātī ā {mastodon} sustentātī.",
|
||||||
|
"about.rules": "Servo praecepta",
|
||||||
|
"account.account_note_header": "Nota personalia",
|
||||||
"account.add_or_remove_from_list": "Adde aut ēripe ex tabellīs",
|
"account.add_or_remove_from_list": "Adde aut ēripe ex tabellīs",
|
||||||
"account.badges.bot": "Robotum",
|
"account.badges.bot": "Robotum",
|
||||||
"account.badges.group": "Congregatio",
|
"account.badges.group": "Congregatio",
|
||||||
"account.block": "Impedire @{name}",
|
"account.block": "Impedire @{name}",
|
||||||
"account.block_domain": "Imperire dominium {domain}",
|
"account.block_domain": "Imperire dominium {domain}",
|
||||||
|
"account.block_short": "Imperire",
|
||||||
"account.blocked": "Impeditum est",
|
"account.blocked": "Impeditum est",
|
||||||
"account.cancel_follow_request": "Withdraw follow request",
|
"account.cancel_follow_request": "Petitio sequī retrāhere",
|
||||||
"account.domain_blocked": "Dominium impeditum",
|
"account.domain_blocked": "Dominium impeditum",
|
||||||
"account.edit_profile": "Recolere notionem",
|
"account.edit_profile": "Recolere notionem",
|
||||||
"account.featured_tags.last_status_never": "Nulla contributa",
|
"account.featured_tags.last_status_never": "Nulla contributa",
|
||||||
|
@ -31,6 +42,7 @@
|
||||||
"bundle_column_error.retry": "Retemptare",
|
"bundle_column_error.retry": "Retemptare",
|
||||||
"bundle_column_error.routing.title": "CCCCIIII",
|
"bundle_column_error.routing.title": "CCCCIIII",
|
||||||
"bundle_modal_error.close": "Claudere",
|
"bundle_modal_error.close": "Claudere",
|
||||||
|
"bundle_modal_error.message": "Aliquid pervagātum est dum hunc componentem onerābam.",
|
||||||
"bundle_modal_error.retry": "Retemptare",
|
"bundle_modal_error.retry": "Retemptare",
|
||||||
"column.about": "De",
|
"column.about": "De",
|
||||||
"column.bookmarks": "Signa paginales",
|
"column.bookmarks": "Signa paginales",
|
||||||
|
@ -46,6 +58,7 @@
|
||||||
"compose_form.lock_disclaimer": "Tua ratio non est {locked}. Quisquis te sequi potest ut visum accipiat nuntios tuos tantum pro sectatoribus.",
|
"compose_form.lock_disclaimer": "Tua ratio non est {locked}. Quisquis te sequi potest ut visum accipiat nuntios tuos tantum pro sectatoribus.",
|
||||||
"compose_form.lock_disclaimer.lock": "clausum",
|
"compose_form.lock_disclaimer.lock": "clausum",
|
||||||
"compose_form.placeholder": "What is on your mind?",
|
"compose_form.placeholder": "What is on your mind?",
|
||||||
|
"compose_form.poll.single": "Elige unum",
|
||||||
"compose_form.publish_form": "Barrire",
|
"compose_form.publish_form": "Barrire",
|
||||||
"compose_form.spoiler.marked": "Text is hidden behind warning",
|
"compose_form.spoiler.marked": "Text is hidden behind warning",
|
||||||
"compose_form.spoiler.unmarked": "Adde praeconium contentūs",
|
"compose_form.spoiler.unmarked": "Adde praeconium contentūs",
|
||||||
|
@ -58,8 +71,10 @@
|
||||||
"confirmations.reply.confirm": "Respondere",
|
"confirmations.reply.confirm": "Respondere",
|
||||||
"disabled_account_banner.account_settings": "Praeferentiae ratiōnis",
|
"disabled_account_banner.account_settings": "Praeferentiae ratiōnis",
|
||||||
"disabled_account_banner.text": "Ratio tua {disabledAccount} debilitata est.",
|
"disabled_account_banner.text": "Ratio tua {disabledAccount} debilitata est.",
|
||||||
"dismissable_banner.explore_links": "These news stories are being talked about by people on this and other servers of the decentralized network right now.",
|
"dismissable_banner.explore_links": "Hae sunt nūminae nūtiārum quā potissimum in rēti socialī hodie communicantur. Nūtiārum recentiorum ab pluribus hominibus diversīs positārum gradūs altiorēs sunt.",
|
||||||
"dismissable_banner.explore_tags": "These hashtags are gaining traction among people on this and other servers of the decentralized network right now.",
|
"dismissable_banner.explore_statuses": "Hae sunt nūtiārum ex rēte socialī quā hodie trahunt favorem. Nūtiārum recentiorum cum pluribus auguriīs et favōribus gradūs altiorēs sunt.",
|
||||||
|
"dismissable_banner.explore_tags": "Hae sunt hashtags quae hodie in rēte socialī favorem trahunt. Hashtags quae ab pluribus diversis hominibus adhibentur gradūs altiorēs sunt.",
|
||||||
|
"dismissable_banner.public_timeline": "Hae sunt recentissimae nuntii publici ab hominibus in rēte socialī qui ab hominibus in {domain} sequuntur.",
|
||||||
"domain_block_modal.you_wont_see_posts": "Nuntios aut notificātiōnēs ab usoribus in hōc servō nōn vidēbis.",
|
"domain_block_modal.you_wont_see_posts": "Nuntios aut notificātiōnēs ab usoribus in hōc servō nōn vidēbis.",
|
||||||
"domain_pill.activitypub_like_language": "ActivityPub est velut lingua quam Mastodon cum aliīs sociālibus rētibus loquitur.",
|
"domain_pill.activitypub_like_language": "ActivityPub est velut lingua quam Mastodon cum aliīs sociālibus rētibus loquitur.",
|
||||||
"domain_pill.your_handle": "Tuus nominulus:",
|
"domain_pill.your_handle": "Tuus nominulus:",
|
||||||
|
@ -81,13 +96,15 @@
|
||||||
"empty_column.followed_tags": "Nōn adhūc aliquem hastāginem secūtus es. Cum id fēceris, hic ostendētur.",
|
"empty_column.followed_tags": "Nōn adhūc aliquem hastāginem secūtus es. Cum id fēceris, hic ostendētur.",
|
||||||
"empty_column.home": "Tua linea temporum domesticus vacua est! Sequere plures personas ut eam compleas.",
|
"empty_column.home": "Tua linea temporum domesticus vacua est! Sequere plures personas ut eam compleas.",
|
||||||
"empty_column.list": "There is nothing in this list yet. When members of this list post new statuses, they will appear here.",
|
"empty_column.list": "There is nothing in this list yet. When members of this list post new statuses, they will appear here.",
|
||||||
"empty_column.lists": "Nōn adhūc habēs ullo tabellās. Cum creās, hīc apparēbunt.",
|
"empty_column.lists": "\"Nūllae adhuc listae tibi sunt. Cum unam creāveris, hic apparēbit.\"",
|
||||||
"empty_column.mutes": "Nondum quemquam usorem tacuisti.",
|
"empty_column.mutes": "Nondum quemquam usorem tacuisti.",
|
||||||
"empty_column.notification_requests": "Omnia clara sunt! Nihil hic est. Cum novās notificātiōnēs accipīs, hic secundum tua praecepta apparebunt.",
|
"empty_column.notification_requests": "Omnia clara sunt! Nihil hic est. Cum novās notificātiōnēs accipīs, hic secundum tua praecepta apparebunt.",
|
||||||
"empty_column.notifications": "Nōn adhūc habēs ullo notificātiōnēs. Cum aliī tē interagunt, hīc videbis.",
|
"empty_column.notifications": "Nōn adhūc habēs ullo notificātiōnēs. Cum aliī tē interagunt, hīc videbis.",
|
||||||
|
"explore.search_results": "Proventus explorationis",
|
||||||
"explore.trending_statuses": "Contributa",
|
"explore.trending_statuses": "Contributa",
|
||||||
"firehose.all": "Omnis",
|
"firehose.all": "Omnis",
|
||||||
"footer.about": "De",
|
"footer.about": "De",
|
||||||
|
"footer.invite": "invitare populum",
|
||||||
"generic.saved": "Servavit",
|
"generic.saved": "Servavit",
|
||||||
"hashtag.column_header.tag_mode.none": "sine {additional}",
|
"hashtag.column_header.tag_mode.none": "sine {additional}",
|
||||||
"hashtag.column_settings.tag_mode.all": "Haec omnia",
|
"hashtag.column_settings.tag_mode.all": "Haec omnia",
|
||||||
|
@ -100,8 +117,13 @@
|
||||||
"ignore_notifications_modal.filter_to_review_separately": "Percolantur notificatiōnes separātim recensere potes",
|
"ignore_notifications_modal.filter_to_review_separately": "Percolantur notificatiōnes separātim recensere potes",
|
||||||
"interaction_modal.description.favourite": "Cum accūntū in Mastodon, hanc postem praeferre potes ut auctōrī indicēs tē eam aestimāre et ad posterius servēs.",
|
"interaction_modal.description.favourite": "Cum accūntū in Mastodon, hanc postem praeferre potes ut auctōrī indicēs tē eam aestimāre et ad posterius servēs.",
|
||||||
"interaction_modal.description.follow": "Cum accūntū in Mastodon, {name} sequī potes ut eōrum postēs in tēlā domī tuā recipiās.",
|
"interaction_modal.description.follow": "Cum accūntū in Mastodon, {name} sequī potes ut eōrum postēs in tēlā domī tuā recipiās.",
|
||||||
|
"interaction_modal.description.reblog": "Cum ratione in Mastodon, hunc nuntium augēre potes ut eum cum tuis sectatoribus communicēs.",
|
||||||
"interaction_modal.description.reply": "Mastodon de Ratione, huic nuntio respondere potes.",
|
"interaction_modal.description.reply": "Mastodon de Ratione, huic nuntio respondere potes.",
|
||||||
|
"interaction_modal.login.action": "Accipe me domum",
|
||||||
|
"interaction_modal.login.prompt": "Domum tuam dominicum servo, exempli causa mastodon.social",
|
||||||
|
"interaction_modal.no_account_yet": "Non in Mastodon?",
|
||||||
"interaction_modal.sign_in": "Ad hōc servientem nōn dēlūxī. Ubi accūntum tuum hospitātum est?",
|
"interaction_modal.sign_in": "Ad hōc servientem nōn dēlūxī. Ubi accūntum tuum hospitātum est?",
|
||||||
|
"interaction_modal.sign_in_hint": "Consilium: Ille est situs interretialis ubi subscripsisti. Si non meministi, quaere epistulam gratulatoriam in tuis epistolis receptis. Etiam plenam usoris nomen tuum inserere potes! (exempli gratia @Mastodon@mastodon.social)",
|
||||||
"intervals.full.days": "{number, plural, one {# die} other {# dies}}",
|
"intervals.full.days": "{number, plural, one {# die} other {# dies}}",
|
||||||
"intervals.full.hours": "{number, plural, one {# hora} other {# horae}}",
|
"intervals.full.hours": "{number, plural, one {# hora} other {# horae}}",
|
||||||
"intervals.full.minutes": "{number, plural, one {# minutum} other {# minuta}}",
|
"intervals.full.minutes": "{number, plural, one {# minutum} other {# minuta}}",
|
||||||
|
@ -112,35 +134,41 @@
|
||||||
"keyboard_shortcuts.compose": "TextArea Compositi Attendere",
|
"keyboard_shortcuts.compose": "TextArea Compositi Attendere",
|
||||||
"keyboard_shortcuts.description": "Descriptio",
|
"keyboard_shortcuts.description": "Descriptio",
|
||||||
"keyboard_shortcuts.direct": "to open direct messages column",
|
"keyboard_shortcuts.direct": "to open direct messages column",
|
||||||
"keyboard_shortcuts.down": "to move down in the list",
|
"keyboard_shortcuts.down": "In īndice dēscend",
|
||||||
"keyboard_shortcuts.enter": "Aperire contributum",
|
"keyboard_shortcuts.enter": "Aperire contributum",
|
||||||
"keyboard_shortcuts.federated": "to open federated timeline",
|
"keyboard_shortcuts.federated": "Aperī chrōnologiam foederātam",
|
||||||
"keyboard_shortcuts.heading": "Keyboard Shortcuts",
|
"keyboard_shortcuts.heading": "Keyboard Shortcuts",
|
||||||
"keyboard_shortcuts.home": "to open home timeline",
|
"keyboard_shortcuts.home": "Aperī chrōnologiam domesticam",
|
||||||
"keyboard_shortcuts.legend": "to display this legend",
|
"keyboard_shortcuts.legend": "Hanc legendam ostende",
|
||||||
"keyboard_shortcuts.local": "to open local timeline",
|
"keyboard_shortcuts.local": "Aperī chrōnologiam locālem",
|
||||||
"keyboard_shortcuts.mention": "to mention author",
|
"keyboard_shortcuts.mention": "Memēntō auctōris",
|
||||||
"keyboard_shortcuts.muted": "to open muted users list",
|
"keyboard_shortcuts.muted": "Aperī indicem ūtentium silentiōrum",
|
||||||
"keyboard_shortcuts.my_profile": "to open your profile",
|
"keyboard_shortcuts.my_profile": "Aperī prōfilum tuum",
|
||||||
"keyboard_shortcuts.notifications": "to open notifications column",
|
"keyboard_shortcuts.notifications": "Aperī columnam nūntiātiōnum",
|
||||||
"keyboard_shortcuts.open_media": "to open media",
|
"keyboard_shortcuts.open_media": "Aperi media",
|
||||||
"keyboard_shortcuts.pinned": "to open pinned posts list",
|
"keyboard_shortcuts.pinned": "Aperī indicem nūntiōrum affixōrum",
|
||||||
"keyboard_shortcuts.profile": "to open author's profile",
|
"keyboard_shortcuts.profile": "Aperi auctoris profile",
|
||||||
"keyboard_shortcuts.reply": "Respondere ad contributum",
|
"keyboard_shortcuts.reply": "Respondere ad contributum",
|
||||||
"keyboard_shortcuts.requests": "to open follow requests list",
|
"keyboard_shortcuts.requests": "Aperī indicem petītiōnum sequendī",
|
||||||
"keyboard_shortcuts.search": "to focus search",
|
"keyboard_shortcuts.search": "Fōcum in tabellam quaerendī",
|
||||||
"keyboard_shortcuts.spoilers": "to show/hide CW field",
|
"keyboard_shortcuts.spoilers": "Ostende / celare CW agri",
|
||||||
"keyboard_shortcuts.start": "to open \"get started\" column",
|
"keyboard_shortcuts.start": "Aperī columnam 'īncipere'",
|
||||||
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
"keyboard_shortcuts.toggle_hidden": "Monstrare / celare textum post CW",
|
||||||
"keyboard_shortcuts.toggle_sensitivity": "to show/hide media",
|
"keyboard_shortcuts.toggle_sensitivity": "Ostende / celare media",
|
||||||
"keyboard_shortcuts.toot": "to start a brand new post",
|
"keyboard_shortcuts.toot": "Incipe nōvum nūntium.",
|
||||||
"keyboard_shortcuts.unfocus": "to un-focus compose textarea/search",
|
"keyboard_shortcuts.unfocus": "Desinēre fōcum in ārēā componendī/inquīrendī",
|
||||||
"keyboard_shortcuts.up": "to move up in the list",
|
"keyboard_shortcuts.up": "Sumē sūrsum in īndice",
|
||||||
"lightbox.close": "Claudere",
|
"lightbox.close": "Claudere",
|
||||||
"lightbox.next": "Secundum",
|
"lightbox.next": "Secundum",
|
||||||
"lists.account.add": "Adde ad tabellās",
|
"lists.account.add": "Adde ad līstā",
|
||||||
"lists.new.create": "Addere tabella",
|
"lists.account.remove": "Sūmere ad līstā",
|
||||||
"lists.subheading": "Tuae tabulae",
|
"lists.edit.submit": "Mutare titulum",
|
||||||
|
"lists.exclusive": "Abscondere haec scripta ab domo",
|
||||||
|
"lists.new.create": "Addere līstā",
|
||||||
|
"lists.new.title_placeholder": "Novus titulus līstae",
|
||||||
|
"lists.replies_policy.title": "Monstra responsa ad:",
|
||||||
|
"lists.search": "Quaere in hominibus te sequi",
|
||||||
|
"lists.subheading": "Tuae listae",
|
||||||
"load_pending": "{count, plural, one {# novum item} other {# nova itema}}",
|
"load_pending": "{count, plural, one {# novum item} other {# nova itema}}",
|
||||||
"moved_to_account_banner.text": "Tua ratione {disabledAccount} interdum reposita est, quod ad {movedToAccount} migrāvisti.",
|
"moved_to_account_banner.text": "Tua ratione {disabledAccount} interdum reposita est, quod ad {movedToAccount} migrāvisti.",
|
||||||
"mute_modal.you_wont_see_mentions": "Non videbis nuntios quī eōs commemorant.",
|
"mute_modal.you_wont_see_mentions": "Non videbis nuntios quī eōs commemorant.",
|
||||||
|
@ -152,7 +180,7 @@
|
||||||
"notification.favourite": "{name} nuntium tuum favit",
|
"notification.favourite": "{name} nuntium tuum favit",
|
||||||
"notification.follow": "{name} te secutus est",
|
"notification.follow": "{name} te secutus est",
|
||||||
"notification.follow_request": "{name} postulavit ut te sequeretur",
|
"notification.follow_request": "{name} postulavit ut te sequeretur",
|
||||||
"notification.moderation_warning": "Accepistī monitionem moderationis.",
|
"notification.moderation_warning": "Accepistī monitionem moderationis",
|
||||||
"notification.moderation_warning.action_disable": "Ratio tua debilitata est.",
|
"notification.moderation_warning.action_disable": "Ratio tua debilitata est.",
|
||||||
"notification.moderation_warning.action_none": "Tua ratiō monitum moderātiōnis accēpit.",
|
"notification.moderation_warning.action_none": "Tua ratiō monitum moderātiōnis accēpit.",
|
||||||
"notification.moderation_warning.action_sensitive": "Tua nuntia hinc sensibiliter notabuntur.",
|
"notification.moderation_warning.action_sensitive": "Tua nuntia hinc sensibiliter notabuntur.",
|
||||||
|
@ -170,24 +198,32 @@
|
||||||
"notification_requests.confirm_dismiss_multiple.message": "Tu {count, plural, one {unam petitionem notificationis} other {# petitiones notificationum}} abrogāre prōximum es. {count, plural, one {Illa} other {Eae}} facile accessū nōn erit. Certus es tē procedere velle?",
|
"notification_requests.confirm_dismiss_multiple.message": "Tu {count, plural, one {unam petitionem notificationis} other {# petitiones notificationum}} abrogāre prōximum es. {count, plural, one {Illa} other {Eae}} facile accessū nōn erit. Certus es tē procedere velle?",
|
||||||
"notifications.filter.all": "Omnia",
|
"notifications.filter.all": "Omnia",
|
||||||
"notifications.filter.polls": "Eventus electionis",
|
"notifications.filter.polls": "Eventus electionis",
|
||||||
"notifications.group": "Notificātiōnēs",
|
"notifications.group": "{count} Notificātiōnēs",
|
||||||
"onboarding.actions.go_to_explore": "See what's trending",
|
"onboarding.action.back": "Accipe me",
|
||||||
"onboarding.actions.go_to_home": "Go to your home feed",
|
"onboarding.actions.back": "Redde me",
|
||||||
|
"onboarding.actions.go_to_explore": "\"Duc me ad trending\"",
|
||||||
|
"onboarding.actions.go_to_home": "Duc me ad fluxum domi mei",
|
||||||
|
"onboarding.compose.template": "Salve #Mastodon!",
|
||||||
"onboarding.follows.lead": "Tua domus feed est principalis via Mastodon experīrī. Quō plūrēs persōnas sequeris, eō actīvior et interessantior erit. Ad tē incipiendum, ecce quaedam suāsiones:",
|
"onboarding.follows.lead": "Tua domus feed est principalis via Mastodon experīrī. Quō plūrēs persōnas sequeris, eō actīvior et interessantior erit. Ad tē incipiendum, ecce quaedam suāsiones:",
|
||||||
"onboarding.follows.title": "Popular on Mastodon",
|
"onboarding.follows.title": "Personaliza fluxum domi tui",
|
||||||
"onboarding.profile.display_name_hint": "Tuum nomen completum aut tuum nomen ludens…",
|
"onboarding.profile.display_name_hint": "Tuum nomen completum aut tuum nomen ludens…",
|
||||||
"onboarding.profile.lead": "Hoc semper postea in ratiōnibus complērī potest, ubi etiam plūrēs optiōnēs personalizātiōnis praesto sunt.",
|
"onboarding.profile.lead": "Hoc semper postea per optiones configuratiónum perficere potes, ubi plura personalizandi optiones praesto sunt.",
|
||||||
"onboarding.profile.note_hint": "Alios hominēs vel #hashtags @nōmināre potes…",
|
"onboarding.profile.note_hint": "Alios hominēs vel #hashtags @nōmināre potes…",
|
||||||
"onboarding.start.lead": "Nunc pars es Mastodonis, singularis, socialis medii platformae decentralis ubi—non algorismus—tuam ipsius experientiam curas. Incipiāmus in nova hac socialis regione:",
|
"onboarding.share.lead": "Fac homines scire quomodo te in Mastodon invenire possint!",
|
||||||
"onboarding.start.skip": "Want to skip right ahead?",
|
"onboarding.share.message": "Ego sum {username} in #Mastodon! Veni, sequere me apud {url}.",
|
||||||
|
"onboarding.share.next_steps": "Possibiles gradus sequentes:",
|
||||||
|
"onboarding.share.title": "Communica tuum profilem.",
|
||||||
|
"onboarding.start.lead": "Nunc pars es Mastodonis, singularis, socialis medii platformae decentralis ubi—non algoritmus—tuam ipsius experientiam curas. Incipiāmus in nova hac socialis regione:",
|
||||||
|
"onboarding.start.skip": "Non opus est auxilio ad incipiendum?",
|
||||||
"onboarding.start.title": "Perfecisti eam!",
|
"onboarding.start.title": "Perfecisti eam!",
|
||||||
"onboarding.steps.follow_people.body": "You curate your own feed. Lets fill it with interesting people.",
|
"onboarding.steps.follow_people.body": "Sequens homines interessantes est id quod Mastodon agitur.",
|
||||||
"onboarding.steps.follow_people.title": "Follow {count, plural, one {one person} other {# people}}",
|
"onboarding.steps.follow_people.title": "Personaliza fluxum domi tui",
|
||||||
"onboarding.steps.publish_status.body": "Say hello to the world.",
|
"onboarding.steps.publish_status.body": "Dīc 'salvē' mundō per textum, imagines, vīdeōs, aut suffragia {emoji}",
|
||||||
"onboarding.steps.setup_profile.body": "Others are more likely to interact with you with a filled out profile.",
|
"onboarding.steps.publish_status.title": "Fac tuum primum nuntium.",
|
||||||
"onboarding.steps.setup_profile.title": "Customize your profile",
|
"onboarding.steps.setup_profile.body": "Augere interactiones tuas per habens profilem comprehensivum.",
|
||||||
"onboarding.steps.share_profile.body": "Let your friends know how to find you on Mastodon!",
|
"onboarding.steps.setup_profile.title": "\"Personaliza tuum profilem.\"",
|
||||||
"onboarding.steps.share_profile.title": "Share your profile",
|
"onboarding.steps.share_profile.body": "Amīcīs tuīs nōscere sinē quō modō tē in Mastodon invenīre possint.",
|
||||||
|
"onboarding.steps.share_profile.title": "\"Communica tuum profilem Mastodon.\"",
|
||||||
"onboarding.tips.2fa": "<strong>Scisne?</strong> Tūam ratiōnem sēcūrāre potes duōrum elementōrum authentīcātiōnem in ratiōnis tuī praeferentiīs statuendō. Cum ūllā app TOTP ex tuā ēlēctiōne operātur, numerus tēlephōnicus necessārius nōn est!",
|
"onboarding.tips.2fa": "<strong>Scisne?</strong> Tūam ratiōnem sēcūrāre potes duōrum elementōrum authentīcātiōnem in ratiōnis tuī praeferentiīs statuendō. Cum ūllā app TOTP ex tuā ēlēctiōne operātur, numerus tēlephōnicus necessārius nōn est!",
|
||||||
"onboarding.tips.accounts_from_other_servers": "<strong>Scisne?</strong> Quoniam Mastodon dēcentrālis est, nōnnulla profīlia quae invenīs in servīs aliīs quam tuōrum erunt hospitāta. Tamen cum eīs sine impedīmentō interāgere potes! Servus eōrum in alterā parte nōminis eōrum est!",
|
"onboarding.tips.accounts_from_other_servers": "<strong>Scisne?</strong> Quoniam Mastodon dēcentrālis est, nōnnulla profīlia quae invenīs in servīs aliīs quam tuōrum erunt hospitāta. Tamen cum eīs sine impedīmentō interāgere potes! Servus eōrum in alterā parte nōminis eōrum est!",
|
||||||
"onboarding.tips.migration": "<strong>Scisne?</strong> Sī sentīs {domain} tibi in futūrō nōn esse optimam servī ēlēctiōnem, ad alium servum Mastodon sine amittendō sectātōribus tuīs migrāre potes. Etiam tuum servum hospitārī potes!",
|
"onboarding.tips.migration": "<strong>Scisne?</strong> Sī sentīs {domain} tibi in futūrō nōn esse optimam servī ēlēctiōnem, ad alium servum Mastodon sine amittendō sectātōribus tuīs migrāre potes. Etiam tuum servum hospitārī potes!",
|
||||||
|
@ -202,6 +238,7 @@
|
||||||
"poll_button.remove_poll": "Auferre electionem",
|
"poll_button.remove_poll": "Auferre electionem",
|
||||||
"privacy.change": "Adjust status privacy",
|
"privacy.change": "Adjust status privacy",
|
||||||
"privacy.public.short": "Coram publico",
|
"privacy.public.short": "Coram publico",
|
||||||
|
"regeneration_indicator.label": "Impendium…",
|
||||||
"regeneration_indicator.sublabel": "Tua domus feed praeparātur!",
|
"regeneration_indicator.sublabel": "Tua domus feed praeparātur!",
|
||||||
"relative_time.full.days": "{number, plural, one {# ante die} other {# ante dies}}",
|
"relative_time.full.days": "{number, plural, one {# ante die} other {# ante dies}}",
|
||||||
"relative_time.full.hours": "{number, plural, one {# ante horam} other {# ante horas}}",
|
"relative_time.full.hours": "{number, plural, one {# ante horam} other {# ante horas}}",
|
||||||
|
@ -221,7 +258,7 @@
|
||||||
"report.mute_explanation": "Non videbis eōrum nuntiōs. Possunt adhuc tē sequī et tuōs nuntiōs vidēre, nec sciēbunt sē tacitōs esse.",
|
"report.mute_explanation": "Non videbis eōrum nuntiōs. Possunt adhuc tē sequī et tuōs nuntiōs vidēre, nec sciēbunt sē tacitōs esse.",
|
||||||
"report.next": "Secundum",
|
"report.next": "Secundum",
|
||||||
"report.placeholder": "Commentāriī adiūnctī",
|
"report.placeholder": "Commentāriī adiūnctī",
|
||||||
"report.reasons.legal_description": "Putās id legem tuae aut servientis patriae violāre.",
|
"report.reasons.legal_description": "Putās id legem tuae aut servientis patriae violāre",
|
||||||
"report.reasons.violation_description": "Scis quod certa praecepta frangit",
|
"report.reasons.violation_description": "Scis quod certa praecepta frangit",
|
||||||
"report.submit": "Mittere",
|
"report.submit": "Mittere",
|
||||||
"report.target": "Report {target}",
|
"report.target": "Report {target}",
|
||||||
|
@ -230,7 +267,9 @@
|
||||||
"report_notification.categories.other": "Altera",
|
"report_notification.categories.other": "Altera",
|
||||||
"search.placeholder": "Quaerere",
|
"search.placeholder": "Quaerere",
|
||||||
"search_results.all": "Omnis",
|
"search_results.all": "Omnis",
|
||||||
"server_banner.active_users": "Usūrāriī āctīvī",
|
"search_results.nothing_found": "Nihil inveniri potuit pro his quaestionibus.",
|
||||||
|
"search_results.title": "Quaere per {q}",
|
||||||
|
"server_banner.active_users": "usūāriī āctīvī",
|
||||||
"server_banner.administered_by": "Administratur:",
|
"server_banner.administered_by": "Administratur:",
|
||||||
"server_banner.is_one_of_many": "{domain} est unum ex multis independentibus servientibus Mastodon quos adhibere potes ut participes in fediverso.",
|
"server_banner.is_one_of_many": "{domain} est unum ex multis independentibus servientibus Mastodon quos adhibere potes ut participes in fediverso.",
|
||||||
"sign_in_banner.sign_in": "Sign in",
|
"sign_in_banner.sign_in": "Sign in",
|
||||||
|
@ -240,7 +279,7 @@
|
||||||
"status.copy": "Copy link to status",
|
"status.copy": "Copy link to status",
|
||||||
"status.delete": "Oblitterare",
|
"status.delete": "Oblitterare",
|
||||||
"status.edit": "Recolere",
|
"status.edit": "Recolere",
|
||||||
"status.edited_x_times": "Edited {count, plural, one {# time} other {# times}}",
|
"status.edited_x_times": "Emendatum est {count, plural, one {{count} tempus} other {{count} tempora}}",
|
||||||
"status.favourites": "{count, plural, one {favoritum} other {favorita}}",
|
"status.favourites": "{count, plural, one {favoritum} other {favorita}}",
|
||||||
"status.history.created": "{name} creatum {date}",
|
"status.history.created": "{name} creatum {date}",
|
||||||
"status.history.edited": "{name} correxit {date}",
|
"status.history.edited": "{name} correxit {date}",
|
||||||
|
|
|
@ -265,7 +265,7 @@
|
||||||
"empty_column.community": "Vietinė laiko skalė yra tuščia. Parašyk ką nors viešai, kad pradėtum sąveikauti.",
|
"empty_column.community": "Vietinė laiko skalė yra tuščia. Parašyk ką nors viešai, kad pradėtum sąveikauti.",
|
||||||
"empty_column.direct": "Dar neturi jokių privačių paminėjimų. Kai išsiųsi arba gausi vieną iš jų, jis bus rodomas čia.",
|
"empty_column.direct": "Dar neturi jokių privačių paminėjimų. Kai išsiųsi arba gausi vieną iš jų, jis bus rodomas čia.",
|
||||||
"empty_column.domain_blocks": "Kol kas nėra užblokuotų serverių.",
|
"empty_column.domain_blocks": "Kol kas nėra užblokuotų serverių.",
|
||||||
"empty_column.explore_statuses": "Šiuo metu niekas nėra tendencinga. Patikrink vėliau!",
|
"empty_column.explore_statuses": "Šiuo metu niekas nėra tendencinga. Patikrinkite vėliau!",
|
||||||
"empty_column.favourited_statuses": "Dar neturi mėgstamų įrašų. Kai vieną iš jų pamėgsi, jis bus rodomas čia.",
|
"empty_column.favourited_statuses": "Dar neturi mėgstamų įrašų. Kai vieną iš jų pamėgsi, jis bus rodomas čia.",
|
||||||
"empty_column.favourites": "Šio įrašo dar niekas nepamėgo. Kai kas nors tai padarys, jie bus rodomi čia.",
|
"empty_column.favourites": "Šio įrašo dar niekas nepamėgo. Kai kas nors tai padarys, jie bus rodomi čia.",
|
||||||
"empty_column.follow_requests": "Dar neturi jokių sekimo prašymų. Kai gausi tokį prašymą, jis bus rodomas čia.",
|
"empty_column.follow_requests": "Dar neturi jokių sekimo prašymų. Kai gausi tokį prašymą, jis bus rodomas čia.",
|
||||||
|
@ -382,8 +382,8 @@
|
||||||
"ignore_notifications_modal.not_followers_title": "Ignoruoti pranešimus iš žmonių, kurie tave neseka?",
|
"ignore_notifications_modal.not_followers_title": "Ignoruoti pranešimus iš žmonių, kurie tave neseka?",
|
||||||
"ignore_notifications_modal.not_following_title": "Ignoruoti pranešimus iš žmonių, kuriuos neseki?",
|
"ignore_notifications_modal.not_following_title": "Ignoruoti pranešimus iš žmonių, kuriuos neseki?",
|
||||||
"ignore_notifications_modal.private_mentions_title": "Ignoruoti pranešimus iš neprašytų privačių paminėjimų?",
|
"ignore_notifications_modal.private_mentions_title": "Ignoruoti pranešimus iš neprašytų privačių paminėjimų?",
|
||||||
"interaction_modal.description.favourite": "Su Mastodon paskyra gali pamėgti šį įrašą, kad autorius (-ė) žinotų, jog vertinti tai ir išsaugoti jį vėliau.",
|
"interaction_modal.description.favourite": "Su „Mastodon“ paskyra galite pamėgti šį įrašą, kad autorius žinotų, jog vertinti tai ir išsaugoti jį vėliau.",
|
||||||
"interaction_modal.description.follow": "Su Mastodon paskyra gali sekti {name}, kad gautum jų įrašus į pagrindinį srautą.",
|
"interaction_modal.description.follow": "Su „Mastodon“ paskyra galite sekti {name}, kad gautumėte jų įrašus pagrindiniame sraute.",
|
||||||
"interaction_modal.description.reblog": "Su Mastodon paskyra gali pakelti šią įrašą ir pasidalyti juo su savo sekėjais.",
|
"interaction_modal.description.reblog": "Su Mastodon paskyra gali pakelti šią įrašą ir pasidalyti juo su savo sekėjais.",
|
||||||
"interaction_modal.description.reply": "Su Mastodon paskyra gali atsakyti į šį įrašą.",
|
"interaction_modal.description.reply": "Su Mastodon paskyra gali atsakyti į šį įrašą.",
|
||||||
"interaction_modal.login.action": "Į pagrindinį puslapį",
|
"interaction_modal.login.action": "Į pagrindinį puslapį",
|
||||||
|
@ -669,8 +669,8 @@
|
||||||
"privacy_policy.title": "Privatumo politika",
|
"privacy_policy.title": "Privatumo politika",
|
||||||
"recommended": "Rekomenduojama",
|
"recommended": "Rekomenduojama",
|
||||||
"refresh": "Atnaujinti",
|
"refresh": "Atnaujinti",
|
||||||
"regeneration_indicator.label": "Kraunama…",
|
"regeneration_indicator.label": "Įkeliama…",
|
||||||
"regeneration_indicator.sublabel": "Ruošiamas tavo pagrindinis srautas!",
|
"regeneration_indicator.sublabel": "Ruošiamas jūsų pagrindinis srautas!",
|
||||||
"relative_time.days": "{number} d.",
|
"relative_time.days": "{number} d.",
|
||||||
"relative_time.full.days": "prieš {number, plural, one {# dieną} few {# dienas} many {# dienos} other {# dienų}}",
|
"relative_time.full.days": "prieš {number, plural, one {# dieną} few {# dienas} many {# dienos} other {# dienų}}",
|
||||||
"relative_time.full.hours": "prieš {number, plural, one {# valandą} few {# valandas} many {# valandos} other {# valandų}}",
|
"relative_time.full.hours": "prieš {number, plural, one {# valandą} few {# valandas} many {# valandos} other {# valandų}}",
|
||||||
|
@ -693,7 +693,7 @@
|
||||||
"report.categories.violation": "Turinys pažeidžia vieną ar daugiau serverio taisyklių",
|
"report.categories.violation": "Turinys pažeidžia vieną ar daugiau serverio taisyklių",
|
||||||
"report.category.subtitle": "Pasirink geriausią atitikmenį.",
|
"report.category.subtitle": "Pasirink geriausią atitikmenį.",
|
||||||
"report.category.title": "Papasakok mums, kas vyksta su šiuo {type}",
|
"report.category.title": "Papasakok mums, kas vyksta su šiuo {type}",
|
||||||
"report.category.title_account": "profilis",
|
"report.category.title_account": "profiliu",
|
||||||
"report.category.title_status": "įrašas",
|
"report.category.title_status": "įrašas",
|
||||||
"report.close": "Atlikta",
|
"report.close": "Atlikta",
|
||||||
"report.comment.title": "Ar yra dar kas nors, ką, tavo manymu, turėtume žinoti?",
|
"report.comment.title": "Ar yra dar kas nors, ką, tavo manymu, turėtume žinoti?",
|
||||||
|
@ -757,7 +757,7 @@
|
||||||
"search_results.nothing_found": "Nepavyko rasti nieko pagal šiuos paieškos terminus.",
|
"search_results.nothing_found": "Nepavyko rasti nieko pagal šiuos paieškos terminus.",
|
||||||
"search_results.see_all": "Žiūrėti viską",
|
"search_results.see_all": "Žiūrėti viską",
|
||||||
"search_results.statuses": "Įrašai",
|
"search_results.statuses": "Įrašai",
|
||||||
"search_results.title": "Ieškoti {q}",
|
"search_results.title": "Paieška užklausai „{q}“",
|
||||||
"server_banner.about_active_users": "Žmonės, kurie naudojosi šiuo serveriu per pastarąsias 30 dienų (mėnesio aktyvūs naudotojai)",
|
"server_banner.about_active_users": "Žmonės, kurie naudojosi šiuo serveriu per pastarąsias 30 dienų (mėnesio aktyvūs naudotojai)",
|
||||||
"server_banner.active_users": "aktyvūs naudotojai",
|
"server_banner.active_users": "aktyvūs naudotojai",
|
||||||
"server_banner.administered_by": "Administruoja:",
|
"server_banner.administered_by": "Administruoja:",
|
||||||
|
|
|
@ -52,7 +52,7 @@
|
||||||
"account.mute_notifications_short": "Izslēgt paziņojumu skaņu",
|
"account.mute_notifications_short": "Izslēgt paziņojumu skaņu",
|
||||||
"account.mute_short": "Apklusināt",
|
"account.mute_short": "Apklusināt",
|
||||||
"account.muted": "Apklusināts",
|
"account.muted": "Apklusināts",
|
||||||
"account.mutual": "Savstarpējs",
|
"account.mutual": "Abpusēji",
|
||||||
"account.no_bio": "Apraksts nav sniegts.",
|
"account.no_bio": "Apraksts nav sniegts.",
|
||||||
"account.open_original_page": "Atvērt oriģinālo lapu",
|
"account.open_original_page": "Atvērt oriģinālo lapu",
|
||||||
"account.posts": "Ieraksti",
|
"account.posts": "Ieraksti",
|
||||||
|
@ -85,6 +85,7 @@
|
||||||
"alert.rate_limited.title": "Biežums ierobežots",
|
"alert.rate_limited.title": "Biežums ierobežots",
|
||||||
"alert.unexpected.message": "Radās negaidīta kļūda.",
|
"alert.unexpected.message": "Radās negaidīta kļūda.",
|
||||||
"alert.unexpected.title": "Ups!",
|
"alert.unexpected.title": "Ups!",
|
||||||
|
"alt_text_badge.title": "Alt teksts",
|
||||||
"announcement.announcement": "Paziņojums",
|
"announcement.announcement": "Paziņojums",
|
||||||
"attachments_list.unprocessed": "(neapstrādāti)",
|
"attachments_list.unprocessed": "(neapstrādāti)",
|
||||||
"audio.hide": "Slēpt audio",
|
"audio.hide": "Slēpt audio",
|
||||||
|
@ -143,7 +144,7 @@
|
||||||
"community.column_settings.remote_only": "Tikai attālinātie",
|
"community.column_settings.remote_only": "Tikai attālinātie",
|
||||||
"compose.language.change": "Mainīt valodu",
|
"compose.language.change": "Mainīt valodu",
|
||||||
"compose.language.search": "Meklēt valodas...",
|
"compose.language.search": "Meklēt valodas...",
|
||||||
"compose.published.body": "Ieraksts publicēta.",
|
"compose.published.body": "Ieraksts izveidots.",
|
||||||
"compose.published.open": "Atvērt",
|
"compose.published.open": "Atvērt",
|
||||||
"compose.saved.body": "Ziņa saglabāta.",
|
"compose.saved.body": "Ziņa saglabāta.",
|
||||||
"compose_form.direct_message_warning_learn_more": "Uzzināt vairāk",
|
"compose_form.direct_message_warning_learn_more": "Uzzināt vairāk",
|
||||||
|
@ -159,7 +160,7 @@
|
||||||
"compose_form.poll.switch_to_multiple": "Mainīt aptaujas veidu, lai atļautu vairākas izvēles",
|
"compose_form.poll.switch_to_multiple": "Mainīt aptaujas veidu, lai atļautu vairākas izvēles",
|
||||||
"compose_form.poll.switch_to_single": "Mainīt aptaujas veidu, lai atļautu vienu izvēli",
|
"compose_form.poll.switch_to_single": "Mainīt aptaujas veidu, lai atļautu vienu izvēli",
|
||||||
"compose_form.poll.type": "Stils",
|
"compose_form.poll.type": "Stils",
|
||||||
"compose_form.publish": "Iesūtīt",
|
"compose_form.publish": "Nosūtīt",
|
||||||
"compose_form.publish_form": "Jauns ieraksts",
|
"compose_form.publish_form": "Jauns ieraksts",
|
||||||
"compose_form.reply": "Atbildēt",
|
"compose_form.reply": "Atbildēt",
|
||||||
"compose_form.save_changes": "Atjaunināt",
|
"compose_form.save_changes": "Atjaunināt",
|
||||||
|
@ -329,7 +330,7 @@
|
||||||
"hints.profiles.see_more_followers": "Skatīt vairāk sekotāju {domain}",
|
"hints.profiles.see_more_followers": "Skatīt vairāk sekotāju {domain}",
|
||||||
"hints.profiles.see_more_follows": "Skatīt vairāk sekojumu {domain}",
|
"hints.profiles.see_more_follows": "Skatīt vairāk sekojumu {domain}",
|
||||||
"hints.profiles.see_more_posts": "Skatīt vairāk ierakstu {domain}",
|
"hints.profiles.see_more_posts": "Skatīt vairāk ierakstu {domain}",
|
||||||
"hints.threads.replies_may_be_missing": "Var trūkt atbildes no citiem serveriem.",
|
"hints.threads.replies_may_be_missing": "Var trūkt atbilžu no citiem serveriem.",
|
||||||
"hints.threads.see_more": "Skatīt vairāk atbilžu {domain}",
|
"hints.threads.see_more": "Skatīt vairāk atbilžu {domain}",
|
||||||
"home.column_settings.show_reblogs": "Rādīt pastiprinātos ierakstus",
|
"home.column_settings.show_reblogs": "Rādīt pastiprinātos ierakstus",
|
||||||
"home.column_settings.show_replies": "Rādīt atbildes",
|
"home.column_settings.show_replies": "Rādīt atbildes",
|
||||||
|
@ -396,7 +397,7 @@
|
||||||
"lightbox.previous": "Iepriekšējais",
|
"lightbox.previous": "Iepriekšējais",
|
||||||
"limited_account_hint.action": "Tik un tā rādīt profilu",
|
"limited_account_hint.action": "Tik un tā rādīt profilu",
|
||||||
"limited_account_hint.title": "{domain} moderatori ir paslēpuši šo profilu.",
|
"limited_account_hint.title": "{domain} moderatori ir paslēpuši šo profilu.",
|
||||||
"link_preview.author": "Pēc {name}",
|
"link_preview.author": "No {name}",
|
||||||
"link_preview.more_from_author": "Vairāk no {name}",
|
"link_preview.more_from_author": "Vairāk no {name}",
|
||||||
"lists.account.add": "Pievienot sarakstam",
|
"lists.account.add": "Pievienot sarakstam",
|
||||||
"lists.account.remove": "Noņemt no saraksta",
|
"lists.account.remove": "Noņemt no saraksta",
|
||||||
|
@ -412,7 +413,7 @@
|
||||||
"lists.replies_policy.title": "Rādīt atbildes:",
|
"lists.replies_policy.title": "Rādīt atbildes:",
|
||||||
"lists.search": "Meklēt starp cilvēkiem, kuriem tu seko",
|
"lists.search": "Meklēt starp cilvēkiem, kuriem tu seko",
|
||||||
"lists.subheading": "Tavi saraksti",
|
"lists.subheading": "Tavi saraksti",
|
||||||
"load_pending": "{count, plural, one {# jauna lieta} other {# jaunas lietas}}",
|
"load_pending": "{count, plural, zero{# jaunu vienumu} one {# jauns vienums} other {# jauni vienumi}}",
|
||||||
"loading_indicator.label": "Ielādē…",
|
"loading_indicator.label": "Ielādē…",
|
||||||
"media_gallery.hide": "Paslēpt",
|
"media_gallery.hide": "Paslēpt",
|
||||||
"moved_to_account_banner.text": "Tavs konts {disabledAccount} pašlaik ir atspējots, jo Tu pārcēlies uz kontu {movedToAccount}.",
|
"moved_to_account_banner.text": "Tavs konts {disabledAccount} pašlaik ir atspējots, jo Tu pārcēlies uz kontu {movedToAccount}.",
|
||||||
|
@ -470,6 +471,8 @@
|
||||||
"notification.update": "{name} laboja ierakstu",
|
"notification.update": "{name} laboja ierakstu",
|
||||||
"notification_requests.accept": "Pieņemt",
|
"notification_requests.accept": "Pieņemt",
|
||||||
"notification_requests.dismiss": "Noraidīt",
|
"notification_requests.dismiss": "Noraidīt",
|
||||||
|
"notification_requests.edit_selection": "Labot",
|
||||||
|
"notification_requests.exit_selection": "Gatavs",
|
||||||
"notification_requests.notifications_from": "Paziņojumi no {name}",
|
"notification_requests.notifications_from": "Paziņojumi no {name}",
|
||||||
"notification_requests.title": "Atlasītie paziņojumi",
|
"notification_requests.title": "Atlasītie paziņojumi",
|
||||||
"notifications.clear": "Notīrīt paziņojumus",
|
"notifications.clear": "Notīrīt paziņojumus",
|
||||||
|
@ -505,6 +508,7 @@
|
||||||
"notifications.permission_denied": "Darbvirsmas paziņojumi nav pieejami, jo iepriekš tika noraidīts pārlūka atļauju pieprasījums",
|
"notifications.permission_denied": "Darbvirsmas paziņojumi nav pieejami, jo iepriekš tika noraidīts pārlūka atļauju pieprasījums",
|
||||||
"notifications.permission_denied_alert": "Darbvirsmas paziņojumus nevar iespējot, jo pārlūkprogrammai atļauja tika iepriekš atteikta",
|
"notifications.permission_denied_alert": "Darbvirsmas paziņojumus nevar iespējot, jo pārlūkprogrammai atļauja tika iepriekš atteikta",
|
||||||
"notifications.permission_required": "Darbvirsmas paziņojumi nav pieejami, jo nav piešķirta nepieciešamā atļauja.",
|
"notifications.permission_required": "Darbvirsmas paziņojumi nav pieejami, jo nav piešķirta nepieciešamā atļauja.",
|
||||||
|
"notifications.policy.accept": "Pieņemt",
|
||||||
"notifications.policy.filter_new_accounts_title": "Jauni konti",
|
"notifications.policy.filter_new_accounts_title": "Jauni konti",
|
||||||
"notifications.policy.filter_not_followers_title": "Cilvēki, kuri Tev neseko",
|
"notifications.policy.filter_not_followers_title": "Cilvēki, kuri Tev neseko",
|
||||||
"notifications.policy.filter_not_following_hint": "Līdz tos pašrocīgi apstiprināsi",
|
"notifications.policy.filter_not_following_hint": "Līdz tos pašrocīgi apstiprināsi",
|
||||||
|
@ -523,6 +527,7 @@
|
||||||
"onboarding.profile.discoverable": "Padarīt manu profilu atklājamu",
|
"onboarding.profile.discoverable": "Padarīt manu profilu atklājamu",
|
||||||
"onboarding.profile.display_name": "Attēlojamais vārds",
|
"onboarding.profile.display_name": "Attēlojamais vārds",
|
||||||
"onboarding.profile.display_name_hint": "Tavs pilnais vārds vai Tavs joku vārds…",
|
"onboarding.profile.display_name_hint": "Tavs pilnais vārds vai Tavs joku vārds…",
|
||||||
|
"onboarding.profile.lead": "Šo vienmēr var pabeigt vēlāk iestatījumos, kur ir pieejamas vēl vairāk pielāgošanas iespēju.",
|
||||||
"onboarding.profile.note": "Apraksts",
|
"onboarding.profile.note": "Apraksts",
|
||||||
"onboarding.profile.note_hint": "Tu vari @pieminēt citus cilvēkus vai #tēmturus…",
|
"onboarding.profile.note_hint": "Tu vari @pieminēt citus cilvēkus vai #tēmturus…",
|
||||||
"onboarding.profile.save_and_continue": "Saglabāt un turpināt",
|
"onboarding.profile.save_and_continue": "Saglabāt un turpināt",
|
||||||
|
@ -673,6 +678,7 @@
|
||||||
"status.bookmark": "Grāmatzīme",
|
"status.bookmark": "Grāmatzīme",
|
||||||
"status.cancel_reblog_private": "Nepastiprināt",
|
"status.cancel_reblog_private": "Nepastiprināt",
|
||||||
"status.cannot_reblog": "Šo ziņu nevar izcelt",
|
"status.cannot_reblog": "Šo ziņu nevar izcelt",
|
||||||
|
"status.continued_thread": "Turpināts pavediens",
|
||||||
"status.copy": "Ievietot ieraksta saiti starpliktuvē",
|
"status.copy": "Ievietot ieraksta saiti starpliktuvē",
|
||||||
"status.delete": "Dzēst",
|
"status.delete": "Dzēst",
|
||||||
"status.detailed_status": "Detalizēts sarunas skats",
|
"status.detailed_status": "Detalizēts sarunas skats",
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
"about.contact": "Hubungi:",
|
"about.contact": "Hubungi:",
|
||||||
"about.disclaimer": "Mastodon ialah perisian sumber terbuka percuma, dan merupakan tanda dagangan Mastodon gGmbH.",
|
"about.disclaimer": "Mastodon ialah perisian sumber terbuka percuma, dan merupakan tanda dagangan Mastodon gGmbH.",
|
||||||
"about.domain_blocks.no_reason_available": "Sebab tidak tersedia",
|
"about.domain_blocks.no_reason_available": "Sebab tidak tersedia",
|
||||||
"about.domain_blocks.preamble": "Secara amnya, Mastodon membenarkan anda melihat kandungan daripada dan berinteraksi dengan pengguna daripada mana-mana pelayan dalam dunia persekutuan. Berikut ialah pengecualian yang telah dibuat pada pelayan ini secara khususnya.",
|
"about.domain_blocks.preamble": "Secara amnya, Mastodon membenarkan anda melihat kandungan pengguna daripada mana-mana pelayan dalam alam bersekutu dan berinteraksi dengan mereka. Berikut ialah pengecualian yang khusus pada pelayan ini.",
|
||||||
"about.domain_blocks.silenced.explanation": "Secara amnya, anda tidak akan melihat profil dan kandungan daripada pelayan ini, kecuali anda mencarinya secara khusus atau ikut serta dengan mengikutinya.",
|
"about.domain_blocks.silenced.explanation": "Secara amnya, anda tidak akan melihat profil dan kandungan daripada pelayan ini, kecuali anda mencarinya secara khusus atau ikut serta dengan mengikutinya.",
|
||||||
"about.domain_blocks.silenced.title": "Terhad",
|
"about.domain_blocks.silenced.title": "Terhad",
|
||||||
"about.domain_blocks.suspended.explanation": "Tiada data daripada pelayan ini yang akan diproses, disimpan atau ditukar, menjadikan sebarang interaksi atau perhubungan dengan pengguna daripada pelayan ini adalah mustahil.",
|
"about.domain_blocks.suspended.explanation": "Tiada data daripada pelayan ini yang akan diproses, disimpan atau ditukar, menjadikan sebarang interaksi atau perhubungan dengan pengguna daripada pelayan ini adalah mustahil.",
|
||||||
|
@ -19,7 +19,7 @@
|
||||||
"account.block_domain": "Sekat domain {domain}",
|
"account.block_domain": "Sekat domain {domain}",
|
||||||
"account.block_short": "Malay",
|
"account.block_short": "Malay",
|
||||||
"account.blocked": "Disekat",
|
"account.blocked": "Disekat",
|
||||||
"account.cancel_follow_request": "Menarik balik permintaan mengikut",
|
"account.cancel_follow_request": "Batalkan permintaan ikut",
|
||||||
"account.copy": "Salin pautan ke profil",
|
"account.copy": "Salin pautan ke profil",
|
||||||
"account.direct": "Sebut secara persendirian @{name}",
|
"account.direct": "Sebut secara persendirian @{name}",
|
||||||
"account.disable_notifications": "Berhenti maklumkan saya apabila @{name} mengirim hantaran",
|
"account.disable_notifications": "Berhenti maklumkan saya apabila @{name} mengirim hantaran",
|
||||||
|
@ -85,10 +85,19 @@
|
||||||
"alert.rate_limited.title": "Kadar terhad",
|
"alert.rate_limited.title": "Kadar terhad",
|
||||||
"alert.unexpected.message": "Berlaku ralat di luar jangkaan.",
|
"alert.unexpected.message": "Berlaku ralat di luar jangkaan.",
|
||||||
"alert.unexpected.title": "Alamak!",
|
"alert.unexpected.title": "Alamak!",
|
||||||
|
"alt_text_badge.title": "Teks alternatif",
|
||||||
"announcement.announcement": "Pengumuman",
|
"announcement.announcement": "Pengumuman",
|
||||||
"attachments_list.unprocessed": "(belum diproses)",
|
"attachments_list.unprocessed": "(belum diproses)",
|
||||||
"audio.hide": "Sembunyikan audio",
|
"audio.hide": "Sembunyikan audio",
|
||||||
|
"block_modal.remote_users_caveat": "Kami akan meminta pelayan {domain} untuk menghormati keputusan anda. Bagaimanapun, pematuhan tidak dijamin kerana ada pelayan yang mungkin menangani sekatan dengan cara berbeza. Hantaran awam mungkin masih tampak kepada pengguna yang tidak log masuk.",
|
||||||
|
"block_modal.they_cant_mention": "Dia tidak boleh menyebut tentang anda atau mengikut anda.",
|
||||||
|
"block_modal.they_cant_see_posts": "Dia tidak boleh melihat hantaran anda dan sebaliknya.",
|
||||||
|
"block_modal.they_will_know": "Dia boleh lihat bahawa dia disekat.",
|
||||||
|
"block_modal.title": "Sekat pengguna?",
|
||||||
|
"block_modal.you_wont_see_mentions": "Anda tidak akan melihat hantaran yang menyebut tentangnya.",
|
||||||
"boost_modal.combo": "Anda boleh tekan {combo} untuk melangkauinya pada waktu lain",
|
"boost_modal.combo": "Anda boleh tekan {combo} untuk melangkauinya pada waktu lain",
|
||||||
|
"boost_modal.reblog": "Galakkan hantaran?",
|
||||||
|
"boost_modal.undo_reblog": "Nyahgalakkan hantaran?",
|
||||||
"bundle_column_error.copy_stacktrace": "Salin laporan ralat",
|
"bundle_column_error.copy_stacktrace": "Salin laporan ralat",
|
||||||
"bundle_column_error.error.body": "Halaman yang diminta gagal dipaparkan. Ini mungkin disebabkan oleh pepijat dalam kod kami, atau masalah keserasian pelayar.",
|
"bundle_column_error.error.body": "Halaman yang diminta gagal dipaparkan. Ini mungkin disebabkan oleh pepijat dalam kod kami, atau masalah keserasian pelayar.",
|
||||||
"bundle_column_error.error.title": "Alamak!",
|
"bundle_column_error.error.title": "Alamak!",
|
||||||
|
@ -113,7 +122,7 @@
|
||||||
"column.direct": "Sebutan peribadi",
|
"column.direct": "Sebutan peribadi",
|
||||||
"column.directory": "Layari profil",
|
"column.directory": "Layari profil",
|
||||||
"column.domain_blocks": "Domain disekat",
|
"column.domain_blocks": "Domain disekat",
|
||||||
"column.favourites": "Kegemaran",
|
"column.favourites": "Sukaan",
|
||||||
"column.firehose": "Suapan langsung",
|
"column.firehose": "Suapan langsung",
|
||||||
"column.follow_requests": "Permintaan ikutan",
|
"column.follow_requests": "Permintaan ikutan",
|
||||||
"column.home": "Laman Utama",
|
"column.home": "Laman Utama",
|
||||||
|
@ -162,17 +171,21 @@
|
||||||
"confirmations.block.confirm": "Sekat",
|
"confirmations.block.confirm": "Sekat",
|
||||||
"confirmations.delete.confirm": "Padam",
|
"confirmations.delete.confirm": "Padam",
|
||||||
"confirmations.delete.message": "Adakah anda pasti anda ingin memadam hantaran ini?",
|
"confirmations.delete.message": "Adakah anda pasti anda ingin memadam hantaran ini?",
|
||||||
|
"confirmations.delete.title": "Padam hantaran?",
|
||||||
"confirmations.delete_list.confirm": "Padam",
|
"confirmations.delete_list.confirm": "Padam",
|
||||||
"confirmations.delete_list.message": "Adakah anda pasti anda ingin memadam senarai ini secara kekal?",
|
"confirmations.delete_list.message": "Adakah anda pasti anda ingin memadam senarai ini secara kekal?",
|
||||||
|
"confirmations.delete_list.title": "Padam senarai?",
|
||||||
"confirmations.discard_edit_media.confirm": "Singkir",
|
"confirmations.discard_edit_media.confirm": "Singkir",
|
||||||
"confirmations.discard_edit_media.message": "Anda belum menyimpan perubahan pada penerangan atau pratonton media. Anda ingin membuangnya?",
|
"confirmations.discard_edit_media.message": "Anda belum menyimpan perubahan pada penerangan atau pratonton media. Anda ingin membuangnya?",
|
||||||
"confirmations.edit.confirm": "Sunting",
|
"confirmations.edit.confirm": "Sunting",
|
||||||
"confirmations.edit.message": "Mengedit sekarang akan menimpa mesej yang sedang anda karang. Adakah anda pasti mahu meneruskan?",
|
"confirmations.edit.message": "Mengedit sekarang akan menimpa mesej yang sedang anda karang. Adakah anda pasti mahu meneruskan?",
|
||||||
|
"confirmations.edit.title": "Tulis ganti hantaran?",
|
||||||
"confirmations.logout.confirm": "Log keluar",
|
"confirmations.logout.confirm": "Log keluar",
|
||||||
"confirmations.logout.message": "Adakah anda pasti anda ingin log keluar?",
|
"confirmations.logout.message": "Adakah anda pasti anda ingin log keluar?",
|
||||||
|
"confirmations.logout.title": "Log keluar?",
|
||||||
"confirmations.mute.confirm": "Bisukan",
|
"confirmations.mute.confirm": "Bisukan",
|
||||||
"confirmations.redraft.confirm": "Padam & rangka semula",
|
"confirmations.redraft.confirm": "Padam & rangka semula",
|
||||||
"confirmations.redraft.message": "Adakah anda pasti anda ingin memadam pos ini dan merangkanya semula? Kegemaran dan galakan akan hilang, dan balasan ke pos asal akan menjadi yatim.",
|
"confirmations.redraft.message": "Adakah anda pasti anda ingin memadam hantaran ini dan gubal semula? Sukaan dan galakan akan hilang, dan balasan ke hantaran asal akan menjadi yatim.",
|
||||||
"confirmations.reply.confirm": "Balas",
|
"confirmations.reply.confirm": "Balas",
|
||||||
"confirmations.reply.message": "Membalas sekarang akan menulis ganti mesej yang anda sedang karang. Adakah anda pasti anda ingin teruskan?",
|
"confirmations.reply.message": "Membalas sekarang akan menulis ganti mesej yang anda sedang karang. Adakah anda pasti anda ingin teruskan?",
|
||||||
"confirmations.unfollow.confirm": "Nyahikut",
|
"confirmations.unfollow.confirm": "Nyahikut",
|
||||||
|
@ -184,7 +197,7 @@
|
||||||
"copy_icon_button.copied": "Disalin ke papan klip",
|
"copy_icon_button.copied": "Disalin ke papan klip",
|
||||||
"copypaste.copied": "Disalin",
|
"copypaste.copied": "Disalin",
|
||||||
"copypaste.copy_to_clipboard": "Salin ke papan klip",
|
"copypaste.copy_to_clipboard": "Salin ke papan klip",
|
||||||
"directory.federated": "Dari fediverse yang diketahui",
|
"directory.federated": "Dari alam bersekutu yang diketahui",
|
||||||
"directory.local": "Dari {domain} sahaja",
|
"directory.local": "Dari {domain} sahaja",
|
||||||
"directory.new_arrivals": "Ketibaan baharu",
|
"directory.new_arrivals": "Ketibaan baharu",
|
||||||
"directory.recently_active": "Aktif baru-baru ini",
|
"directory.recently_active": "Aktif baru-baru ini",
|
||||||
|
@ -193,7 +206,7 @@
|
||||||
"dismissable_banner.community_timeline": "Inilah hantaran awam terkini daripada orang yang akaun dihos oleh {domain}.",
|
"dismissable_banner.community_timeline": "Inilah hantaran awam terkini daripada orang yang akaun dihos oleh {domain}.",
|
||||||
"dismissable_banner.dismiss": "Ketepikan",
|
"dismissable_banner.dismiss": "Ketepikan",
|
||||||
"dismissable_banner.explore_links": "Berita-berita ini sedang dibualkan oleh orang di pelayar ini dan pelayar lain dalam rangkaian terpencar sekarang.",
|
"dismissable_banner.explore_links": "Berita-berita ini sedang dibualkan oleh orang di pelayar ini dan pelayar lain dalam rangkaian terpencar sekarang.",
|
||||||
"dismissable_banner.explore_statuses": "Ini adalah pos dari seluruh web sosial yang semakin menarik perhatian hari ini. Pos baharu dengan lebih banyak rangsangan dan kegemaran diberi kedudukan lebih tinggi.",
|
"dismissable_banner.explore_statuses": "Hantaran-hantaran dari seluruh alam bersekutu ini sedang sohor. Hantaran terbaharu dengan lebih banyak galakan dan sukaan diberi kedudukan lebih tinggi.",
|
||||||
"dismissable_banner.explore_tags": "Tanda-tanda pagar ini daripada pelayar ini dan pelayar lain dalam rangkaian terpencar sedang hangat pada pelayar ini sekarang.",
|
"dismissable_banner.explore_tags": "Tanda-tanda pagar ini daripada pelayar ini dan pelayar lain dalam rangkaian terpencar sedang hangat pada pelayar ini sekarang.",
|
||||||
"dismissable_banner.public_timeline": "Ini ialah pos awam terbaharu daripada orang di web sosial yang diikuti oleh orang di {domain}.",
|
"dismissable_banner.public_timeline": "Ini ialah pos awam terbaharu daripada orang di web sosial yang diikuti oleh orang di {domain}.",
|
||||||
"embed.instructions": "Benam hantaran ini di laman sesawang anda dengan menyalin kod berikut.",
|
"embed.instructions": "Benam hantaran ini di laman sesawang anda dengan menyalin kod berikut.",
|
||||||
|
@ -223,8 +236,8 @@
|
||||||
"empty_column.direct": "Anda belum mempunyai sebarang sebutan peribadi lagi. Apabila anda menghantar atau menerima satu, ia akan dipaparkan di sini.",
|
"empty_column.direct": "Anda belum mempunyai sebarang sebutan peribadi lagi. Apabila anda menghantar atau menerima satu, ia akan dipaparkan di sini.",
|
||||||
"empty_column.domain_blocks": "Belum ada domain yang disekat.",
|
"empty_column.domain_blocks": "Belum ada domain yang disekat.",
|
||||||
"empty_column.explore_statuses": "Tiada apa-apa yang sohor kini sekarang. Semaklah kemudian!",
|
"empty_column.explore_statuses": "Tiada apa-apa yang sohor kini sekarang. Semaklah kemudian!",
|
||||||
"empty_column.favourited_statuses": "Anda belum mempunyai sebarang pos kegemaran. Apabila anda kegemaran, ia akan dipaparkan di sini.",
|
"empty_column.favourited_statuses": "Anda belum mempunyai sebarang hantaran sukaan lagi. Hantaran akan muncul di sini apabila disukai oleh anda.",
|
||||||
"empty_column.favourites": "Tiada siapa yang menggemari pos ini lagi. Apabila seseorang melakukannya, mereka akan muncul di sini.",
|
"empty_column.favourites": "Hantaran ini belum disukai mana-mana pengguna lagi. Pengguna yang menyukai akan muncul di sini.",
|
||||||
"empty_column.follow_requests": "Anda belum mempunyai permintaan ikutan. Ia akan terpapar di sini apabila ada nanti.",
|
"empty_column.follow_requests": "Anda belum mempunyai permintaan ikutan. Ia akan terpapar di sini apabila ada nanti.",
|
||||||
"empty_column.followed_tags": "You have not followed any hashtags yet. When you do, they will show up here.",
|
"empty_column.followed_tags": "You have not followed any hashtags yet. When you do, they will show up here.",
|
||||||
"empty_column.hashtag": "Belum ada apa-apa dengan tanda pagar ini.",
|
"empty_column.hashtag": "Belum ada apa-apa dengan tanda pagar ini.",
|
||||||
|
@ -309,7 +322,7 @@
|
||||||
"home.pending_critical_update.link": "Lihat pengemaskinian",
|
"home.pending_critical_update.link": "Lihat pengemaskinian",
|
||||||
"home.pending_critical_update.title": "Kemas kini keselamatan kritikal tersedia!",
|
"home.pending_critical_update.title": "Kemas kini keselamatan kritikal tersedia!",
|
||||||
"home.show_announcements": "Tunjukkan pengumuman",
|
"home.show_announcements": "Tunjukkan pengumuman",
|
||||||
"interaction_modal.description.favourite": "Dengan akaun di Mastodon, anda boleh menggemari pos ini untuk memberitahu pengarang anda menghargainya dan menyimpannya untuk kemudian.",
|
"interaction_modal.description.favourite": "Dengan akaun di Mastodon, anda boleh menyukai hantaran ini sebagai tanda penghargaan kepada pencipta dan menyimpannya untuk kemudian.",
|
||||||
"interaction_modal.description.follow": "Dengan akaun pada Mastodon, anda boleh mengikut {name} untuk menerima hantaran mereka di suapan rumah anda.",
|
"interaction_modal.description.follow": "Dengan akaun pada Mastodon, anda boleh mengikut {name} untuk menerima hantaran mereka di suapan rumah anda.",
|
||||||
"interaction_modal.description.reblog": "Dengan akaun pada Mastodon, anda boleh menggalakkan hantaran ini untuk dikongsi dengan pengikut anda.",
|
"interaction_modal.description.reblog": "Dengan akaun pada Mastodon, anda boleh menggalakkan hantaran ini untuk dikongsi dengan pengikut anda.",
|
||||||
"interaction_modal.description.reply": "Dengan akaun pada Mastodon, anda boleh membalas kepada hantaran ini.",
|
"interaction_modal.description.reply": "Dengan akaun pada Mastodon, anda boleh membalas kepada hantaran ini.",
|
||||||
|
@ -320,7 +333,7 @@
|
||||||
"interaction_modal.on_this_server": "Pada pelayan ini",
|
"interaction_modal.on_this_server": "Pada pelayan ini",
|
||||||
"interaction_modal.sign_in": "Anda tidak log masuk ke server ini. Di manakah akaun anda dihoskan?",
|
"interaction_modal.sign_in": "Anda tidak log masuk ke server ini. Di manakah akaun anda dihoskan?",
|
||||||
"interaction_modal.sign_in_hint": "Petua: Itulah tapak web tempat anda mendaftar. Jika anda tidak ingat, cari e-mel alu-aluan dalam peti masuk anda. Anda juga boleh memasukkan nama pengguna penuh anda! (cth. @Mastodon@mastodon.social)",
|
"interaction_modal.sign_in_hint": "Petua: Itulah tapak web tempat anda mendaftar. Jika anda tidak ingat, cari e-mel alu-aluan dalam peti masuk anda. Anda juga boleh memasukkan nama pengguna penuh anda! (cth. @Mastodon@mastodon.social)",
|
||||||
"interaction_modal.title.favourite": "Pos {name} kegemaran",
|
"interaction_modal.title.favourite": "Suka hantaran {name}",
|
||||||
"interaction_modal.title.follow": "Ikuti {name}",
|
"interaction_modal.title.follow": "Ikuti {name}",
|
||||||
"interaction_modal.title.reblog": "Galak hantaran {name}",
|
"interaction_modal.title.reblog": "Galak hantaran {name}",
|
||||||
"interaction_modal.title.reply": "Balas siaran {name}",
|
"interaction_modal.title.reply": "Balas siaran {name}",
|
||||||
|
@ -336,8 +349,8 @@
|
||||||
"keyboard_shortcuts.direct": "to open direct messages column",
|
"keyboard_shortcuts.direct": "to open direct messages column",
|
||||||
"keyboard_shortcuts.down": "to move down in the list",
|
"keyboard_shortcuts.down": "to move down in the list",
|
||||||
"keyboard_shortcuts.enter": "Buka hantaran",
|
"keyboard_shortcuts.enter": "Buka hantaran",
|
||||||
"keyboard_shortcuts.favourite": "Pos kegemaran",
|
"keyboard_shortcuts.favourite": "Suka hantaran",
|
||||||
"keyboard_shortcuts.favourites": "Buka senarai kegemaran",
|
"keyboard_shortcuts.favourites": "Buka senarai sukaan",
|
||||||
"keyboard_shortcuts.federated": "to open federated timeline",
|
"keyboard_shortcuts.federated": "to open federated timeline",
|
||||||
"keyboard_shortcuts.heading": "Pintasan papan kekunci",
|
"keyboard_shortcuts.heading": "Pintasan papan kekunci",
|
||||||
"keyboard_shortcuts.home": "to open home timeline",
|
"keyboard_shortcuts.home": "to open home timeline",
|
||||||
|
@ -394,7 +407,7 @@
|
||||||
"navigation_bar.discover": "Teroka",
|
"navigation_bar.discover": "Teroka",
|
||||||
"navigation_bar.domain_blocks": "Domain disekat",
|
"navigation_bar.domain_blocks": "Domain disekat",
|
||||||
"navigation_bar.explore": "Teroka",
|
"navigation_bar.explore": "Teroka",
|
||||||
"navigation_bar.favourites": "Kegemaran",
|
"navigation_bar.favourites": "Sukaan",
|
||||||
"navigation_bar.filters": "Perkataan yang dibisukan",
|
"navigation_bar.filters": "Perkataan yang dibisukan",
|
||||||
"navigation_bar.follow_requests": "Permintaan ikutan",
|
"navigation_bar.follow_requests": "Permintaan ikutan",
|
||||||
"navigation_bar.followed_tags": "Ikuti hashtag",
|
"navigation_bar.followed_tags": "Ikuti hashtag",
|
||||||
|
@ -412,11 +425,13 @@
|
||||||
"not_signed_in_indicator.not_signed_in": "Anda perlu daftar masuk untuk mencapai sumber ini.",
|
"not_signed_in_indicator.not_signed_in": "Anda perlu daftar masuk untuk mencapai sumber ini.",
|
||||||
"notification.admin.report": "{name} melaporkan {target}",
|
"notification.admin.report": "{name} melaporkan {target}",
|
||||||
"notification.admin.sign_up": "{name} mendaftar",
|
"notification.admin.sign_up": "{name} mendaftar",
|
||||||
"notification.favourite": "{name} menggemari pos anda",
|
"notification.favourite": "{name} menyukai hantaran anda",
|
||||||
|
"notification.favourite.name_and_others_with_link": "{name} dan <a>{count, plural, other {# orang lain}}</a> telah suka hantaran anda",
|
||||||
"notification.follow": "{name} mengikuti anda",
|
"notification.follow": "{name} mengikuti anda",
|
||||||
"notification.follow_request": "{name} meminta untuk mengikuti anda",
|
"notification.follow_request": "{name} meminta untuk mengikuti anda",
|
||||||
"notification.own_poll": "Undian anda telah tamat",
|
"notification.own_poll": "Undian anda telah tamat",
|
||||||
"notification.reblog": "{name} menggalak hantaran anda",
|
"notification.reblog": "{name} menggalak hantaran anda",
|
||||||
|
"notification.reblog.name_and_others_with_link": "{name} dan <a>{count, plural, other {# orang lain}}</a> telah galakkan hantaran anda",
|
||||||
"notification.status": "{name} baru sahaja mengirim hantaran",
|
"notification.status": "{name} baru sahaja mengirim hantaran",
|
||||||
"notification.update": "{name} menyunting hantaran",
|
"notification.update": "{name} menyunting hantaran",
|
||||||
"notifications.clear": "Buang pemberitahuan",
|
"notifications.clear": "Buang pemberitahuan",
|
||||||
|
@ -424,7 +439,7 @@
|
||||||
"notifications.column_settings.admin.report": "Laporan baru:",
|
"notifications.column_settings.admin.report": "Laporan baru:",
|
||||||
"notifications.column_settings.admin.sign_up": "Pendaftaran baru:",
|
"notifications.column_settings.admin.sign_up": "Pendaftaran baru:",
|
||||||
"notifications.column_settings.alert": "Pemberitahuan atas meja",
|
"notifications.column_settings.alert": "Pemberitahuan atas meja",
|
||||||
"notifications.column_settings.favourite": "Kegemaran:",
|
"notifications.column_settings.favourite": "Sukaan:",
|
||||||
"notifications.column_settings.follow": "Pengikut baharu:",
|
"notifications.column_settings.follow": "Pengikut baharu:",
|
||||||
"notifications.column_settings.follow_request": "Permintaan ikutan baharu:",
|
"notifications.column_settings.follow_request": "Permintaan ikutan baharu:",
|
||||||
"notifications.column_settings.mention": "Sebutan:",
|
"notifications.column_settings.mention": "Sebutan:",
|
||||||
|
@ -439,7 +454,7 @@
|
||||||
"notifications.column_settings.update": "Suntingan:",
|
"notifications.column_settings.update": "Suntingan:",
|
||||||
"notifications.filter.all": "Semua",
|
"notifications.filter.all": "Semua",
|
||||||
"notifications.filter.boosts": "Galakan",
|
"notifications.filter.boosts": "Galakan",
|
||||||
"notifications.filter.favourites": "Kegemaran",
|
"notifications.filter.favourites": "Sukaan",
|
||||||
"notifications.filter.follows": "Ikutan",
|
"notifications.filter.follows": "Ikutan",
|
||||||
"notifications.filter.mentions": "Sebutan",
|
"notifications.filter.mentions": "Sebutan",
|
||||||
"notifications.filter.polls": "Keputusan undian",
|
"notifications.filter.polls": "Keputusan undian",
|
||||||
|
@ -604,7 +619,7 @@
|
||||||
"status.admin_status": "Buka hantaran ini dalam antara muka penyederhanaan",
|
"status.admin_status": "Buka hantaran ini dalam antara muka penyederhanaan",
|
||||||
"status.block": "Sekat @{name}",
|
"status.block": "Sekat @{name}",
|
||||||
"status.bookmark": "Tanda buku",
|
"status.bookmark": "Tanda buku",
|
||||||
"status.cancel_reblog_private": "Nyahgalak",
|
"status.cancel_reblog_private": "Nyahgalakkan",
|
||||||
"status.cannot_reblog": "Hantaran ini tidak boleh digalakkan",
|
"status.cannot_reblog": "Hantaran ini tidak boleh digalakkan",
|
||||||
"status.copy": "Salin pautan ke hantaran",
|
"status.copy": "Salin pautan ke hantaran",
|
||||||
"status.delete": "Padam",
|
"status.delete": "Padam",
|
||||||
|
@ -613,7 +628,8 @@
|
||||||
"status.direct_indicator": "Sebutan peribadi",
|
"status.direct_indicator": "Sebutan peribadi",
|
||||||
"status.edit": "Sunting",
|
"status.edit": "Sunting",
|
||||||
"status.edited_x_times": "Disunting {count, plural, other {{count} kali}}",
|
"status.edited_x_times": "Disunting {count, plural, other {{count} kali}}",
|
||||||
"status.favourite": "Kegemaran",
|
"status.favourite": "Suka",
|
||||||
|
"status.favourites": "{count, plural, other {sukaan}}",
|
||||||
"status.filter": "Tapiskan hantaran ini",
|
"status.filter": "Tapiskan hantaran ini",
|
||||||
"status.history.created": "{name} mencipta pada {date}",
|
"status.history.created": "{name} mencipta pada {date}",
|
||||||
"status.history.edited": "{name} menyunting pada {date}",
|
"status.history.edited": "{name} menyunting pada {date}",
|
||||||
|
@ -630,9 +646,10 @@
|
||||||
"status.pinned": "Hantaran disemat",
|
"status.pinned": "Hantaran disemat",
|
||||||
"status.read_more": "Baca lagi",
|
"status.read_more": "Baca lagi",
|
||||||
"status.reblog": "Galakkan",
|
"status.reblog": "Galakkan",
|
||||||
"status.reblog_private": "Galakkan dengan kebolehlihatan asal",
|
"status.reblog_private": "Galakkan dengan ketampakan asal",
|
||||||
"status.reblogged_by": "{name} telah menggalakkan",
|
"status.reblogged_by": "{name} galakkan",
|
||||||
"status.reblogs.empty": "Tiada sesiapa yang menggalak hantaran ini. Apabila ada yang menggalak, ia akan muncul di sini.",
|
"status.reblogs": "{count, plural, other {galakan}}",
|
||||||
|
"status.reblogs.empty": "Tiada sesiapa yang galakkan hantaran ini. Apabila ada yang galakkan, hantaran akan muncul di sini.",
|
||||||
"status.redraft": "Padam & rangka semula",
|
"status.redraft": "Padam & rangka semula",
|
||||||
"status.remove_bookmark": "Buang tanda buku",
|
"status.remove_bookmark": "Buang tanda buku",
|
||||||
"status.replied_to": "Menjawab kepada {name}",
|
"status.replied_to": "Menjawab kepada {name}",
|
||||||
|
@ -672,6 +689,8 @@
|
||||||
"upload_error.poll": "Tidak boleh memuat naik fail bersama undian.",
|
"upload_error.poll": "Tidak boleh memuat naik fail bersama undian.",
|
||||||
"upload_form.audio_description": "Jelaskan untuk orang yang ada masalah pendengaran",
|
"upload_form.audio_description": "Jelaskan untuk orang yang ada masalah pendengaran",
|
||||||
"upload_form.description": "Jelaskan untuk orang yang ada masalah penglihatan",
|
"upload_form.description": "Jelaskan untuk orang yang ada masalah penglihatan",
|
||||||
|
"upload_form.drag_and_drop.instructions": "Untuk mengangkat lampiran media, tekan jarak atau enter. Ketika menarik, gunakan kekunci anak panah untuk menggerakkan lampiran media pada mana-mana arah. Tekan jarak atau enter untuk melepaskan lampiran media pada kedudukan baharunya, atau tekan keluar untuk batalkan.",
|
||||||
|
"upload_form.drag_and_drop.on_drag_cancel": "Seretan dibatalkan. Lampiran media {item} dilepaskan.",
|
||||||
"upload_form.edit": "Sunting",
|
"upload_form.edit": "Sunting",
|
||||||
"upload_form.thumbnail": "Ubah gambar kecil",
|
"upload_form.thumbnail": "Ubah gambar kecil",
|
||||||
"upload_form.video_description": "Jelaskan untuk orang yang ada masalah pendengaran atau penglihatan",
|
"upload_form.video_description": "Jelaskan untuk orang yang ada masalah pendengaran atau penglihatan",
|
||||||
|
|
322
app/javascript/mastodon/locales/nan.json
Normal file
322
app/javascript/mastodon/locales/nan.json
Normal file
|
@ -0,0 +1,322 @@
|
||||||
|
{
|
||||||
|
"about.blocks": "Siū 管制 ê 服侍器",
|
||||||
|
"about.contact": "聯絡lâng:",
|
||||||
|
"about.disclaimer": "Mastodon是自由、開放原始碼ê軟體,mā是Mastodon gGmbH ê商標。",
|
||||||
|
"about.domain_blocks.no_reason_available": "原因bē-tàng用",
|
||||||
|
"about.domain_blocks.preamble": "Mastodon一般ē允准lí看別ê fediverse 服侍器來ê聯絡人kap hām用者交流。Tsiah ê 是本服侍器建立ê例外。",
|
||||||
|
"about.domain_blocks.silenced.explanation": "Lí一般buē-tàng tuì tsit ê服侍器看用戶ê紹介kap內容,除非lí明白tshiau-tshuē á是跟tuè伊。",
|
||||||
|
"about.domain_blocks.silenced.title": "有限制",
|
||||||
|
"about.domain_blocks.suspended.explanation": "Uì tsit ê服侍器來ê資料lóng bē處理、儲存á是交換,無可能kap tsit ê服侍器ê用者互動á是溝通。.",
|
||||||
|
"about.domain_blocks.suspended.title": "權限中止",
|
||||||
|
"about.not_available": "Tsit ê資訊bē-tàng tī tsit ê服侍器使用。",
|
||||||
|
"about.powered_by": "由 {mastodon} 提供ê非中心化社群媒體",
|
||||||
|
"about.rules": "服侍器ê規則",
|
||||||
|
"account.account_note_header": "個人ê註解",
|
||||||
|
"account.add_or_remove_from_list": "加添kàu列單á是uì列單thâi掉",
|
||||||
|
"account.badges.bot": "機器lâng",
|
||||||
|
"account.badges.group": "群組",
|
||||||
|
"account.block": "封鎖 @{name}",
|
||||||
|
"account.block_domain": "封鎖網域 {domain}",
|
||||||
|
"account.block_short": "封鎖",
|
||||||
|
"account.blocked": "Hőng封鎖",
|
||||||
|
"account.cancel_follow_request": "取消跟tuè",
|
||||||
|
"account.copy": "Khóo-pih kàu個人資料ê連結",
|
||||||
|
"account.direct": "私人提起 @{name}",
|
||||||
|
"account.disable_notifications": "停止佇 {name} PO文ê時通知我",
|
||||||
|
"account.domain_blocked": "封鎖ê網域",
|
||||||
|
"account.edit_profile": "編輯個人資料",
|
||||||
|
"account.enable_notifications": "佇 {name} PO文ê時通知我",
|
||||||
|
"account.endorse": "用個人資料推薦對方",
|
||||||
|
"account.featured_tags.last_status_at": "頂kái tī {date} Po文",
|
||||||
|
"account.featured_tags.last_status_never": "無PO文",
|
||||||
|
"account.featured_tags.title": "{name} ê推薦hashtag",
|
||||||
|
"account.follow": "跟tuè",
|
||||||
|
"account.follow_back": "Tuè tńg去",
|
||||||
|
"account.followers": "跟tuè lí ê",
|
||||||
|
"account.followers.empty": "Tsit ê用者iáu bô lâng跟tuè。",
|
||||||
|
"account.followers_counter": "Hōo {count, plural, other {{count} ê lâng}}跟tuè",
|
||||||
|
"account.following": "Lí跟tuè ê",
|
||||||
|
"account.following_counter": "Teh跟tuè {count,plural,other {{count} ê lâng}}",
|
||||||
|
"account.follows.empty": "Tsit ê用者iáu buē跟tuè別lâng。",
|
||||||
|
"account.go_to_profile": "行kàu個人資料",
|
||||||
|
"account.hide_reblogs": "Tshàng tuì @{name} 來ê轉PO",
|
||||||
|
"account.in_memoriam": "佇tsia追悼。",
|
||||||
|
"account.joined_short": "加入ê時",
|
||||||
|
"account.languages": "變更訂閱的語言",
|
||||||
|
"account.link_verified_on": "Tsit ê連結ê所有權佇 {date} 受檢查",
|
||||||
|
"account.locked_info": "Tsit ê口座ê隱私狀態鎖起來ah。所有者ē手動審查thang kā跟tuè ê lâng。",
|
||||||
|
"account.media": "媒體",
|
||||||
|
"account.mention": "提起 @{name}",
|
||||||
|
"account.moved_to": "{name} 指示tsit-má伊ê新口座是:",
|
||||||
|
"account.mute": "消音 @{name}",
|
||||||
|
"account.mute_notifications_short": "Kā通知消音",
|
||||||
|
"account.mute_short": "消音",
|
||||||
|
"account.muted": "消音ah",
|
||||||
|
"account.mutual": "相跟tuè",
|
||||||
|
"account.no_bio": "Bô提供敘述。",
|
||||||
|
"account.open_original_page": "開原來ê頁",
|
||||||
|
"account.posts": "PO文",
|
||||||
|
"account.posts_with_replies": "PO文kap回應",
|
||||||
|
"account.report": "檢舉 @{name}",
|
||||||
|
"account.requested": "Teh等待審查。Tshi̍h tsi̍t-ē 通取消跟tuè請求",
|
||||||
|
"account.requested_follow": "{name} 請求跟tuè lí",
|
||||||
|
"account.share": "分享 @{name} ê個人資料",
|
||||||
|
"account.show_reblogs": "顯示uì @{name} 來ê轉PO",
|
||||||
|
"account.statuses_counter": "{count, plural, other {{count} ê PO文}}",
|
||||||
|
"account.unblock": "取消封鎖 @{name}",
|
||||||
|
"account.unblock_domain": "Kā域名 {domain} 取消封鎖",
|
||||||
|
"account.unblock_short": "取消封鎖",
|
||||||
|
"account.unendorse": "Mài tī個人資料推薦伊",
|
||||||
|
"account.unfollow": "取消跟tuè",
|
||||||
|
"account.unmute": "取消消音 @{name}",
|
||||||
|
"account.unmute_notifications_short": "Kā通知取消消音",
|
||||||
|
"account.unmute_short": "取消消音",
|
||||||
|
"account_note.placeholder": "Tshi̍h tse加註kha",
|
||||||
|
"admin.dashboard.daily_retention": "註冊以後ê用者維持率(用kang計算)",
|
||||||
|
"admin.dashboard.monthly_retention": "註冊以後ê用者維持率",
|
||||||
|
"admin.dashboard.retention.average": "平均",
|
||||||
|
"admin.dashboard.retention.cohort": "註冊ê月",
|
||||||
|
"admin.dashboard.retention.cohort_size": "新用者",
|
||||||
|
"admin.impact_report.instance_accounts": "個人資料ē hőng thâi掉ê用者數",
|
||||||
|
"admin.impact_report.instance_followers": "本站ê跟tuè者ē流失ê數",
|
||||||
|
"admin.impact_report.instance_follows": "In ê跟tuè者ē流失ê數",
|
||||||
|
"admin.impact_report.title": "影響ê摘要",
|
||||||
|
"alert.rate_limited.message": "請tī {retry_time, time, medium} 以後koh試。",
|
||||||
|
"alert.rate_limited.title": "限速ah",
|
||||||
|
"alert.unexpected.message": "發生意外ê錯誤。.",
|
||||||
|
"alert.unexpected.title": "Ai-ioh!",
|
||||||
|
"alt_text_badge.title": "替代文字",
|
||||||
|
"announcement.announcement": "公告",
|
||||||
|
"attachments_list.unprocessed": "(Iáu bē處理)",
|
||||||
|
"audio.hide": "Tshàng聲音",
|
||||||
|
"block_modal.remote_users_caveat": "Guán ē要求服侍器 {domain} 尊重lí ê決定。但是bô法度保證ta̍k ê服侍器lóng遵守,因為tsi̍t-kuá服侍器huân-sè用別款方法處理封鎖。公開ê PO文可能iáu是ē hōo bô登入ê用者看著。",
|
||||||
|
"block_modal.show_less": "看khah少",
|
||||||
|
"block_modal.show_more": "顯示其他ê內容",
|
||||||
|
"block_modal.they_cant_mention": "In buē-tàng 提起á是跟tuè lí。",
|
||||||
|
"block_modal.they_cant_see_posts": "Lín buē-tàng互相看著對方ê PO文。",
|
||||||
|
"block_modal.they_will_know": "In通看見in hőng封鎖。",
|
||||||
|
"block_modal.title": "Kám beh封鎖用者?",
|
||||||
|
"block_modal.you_wont_see_mentions": "Lí buē看見提起in ê PO文。",
|
||||||
|
"boost_modal.combo": "後擺lí thang tshi̍h {combo} 跳過",
|
||||||
|
"boost_modal.reblog": "Kám beh轉PO?",
|
||||||
|
"boost_modal.undo_reblog": "Kám beh取消轉PO?",
|
||||||
|
"bundle_column_error.copy_stacktrace": "Khóo-pih錯誤報告",
|
||||||
|
"bundle_column_error.error.body": "請求ê頁bē-tàng 畫出來。有可能是guán程式碼內底ê錯誤,á是瀏覽器共存性ê議題。",
|
||||||
|
"bundle_column_error.error.title": "害ah!",
|
||||||
|
"bundle_column_error.network.body": "佇載入tsit頁ê時出現錯誤。可能因為lí ê網路連線á是tsit臺服侍器ê暫時ê問題。",
|
||||||
|
"bundle_column_error.network.title": "網路錯誤",
|
||||||
|
"bundle_column_error.retry": "Koh試",
|
||||||
|
"bundle_column_error.return": "Tńg去頭頁",
|
||||||
|
"bundle_column_error.routing.body": "Tshuē bô所要求ê頁面。Lí kám確定地址liâu-á ê URL正確?",
|
||||||
|
"bundle_column_error.routing.title": "404",
|
||||||
|
"bundle_modal_error.close": "關",
|
||||||
|
"bundle_modal_error.retry": "Koh試",
|
||||||
|
"closed_registrations.other_server_instructions": "因為Mastodon非中心化,所以lí ē當tī別ê服侍器建立口座,iáu ē當kap tsit ê服侍器來往。",
|
||||||
|
"closed_registrations_modal.description": "Tann bē當tī {domain} 建立新ê口座,m̄-koh著記得,lí bô需要 {domain} 服侍器ê帳號,mā ē當用 Mastodon。",
|
||||||
|
"closed_registrations_modal.find_another_server": "Tshuē別ê服侍器",
|
||||||
|
"closed_registrations_modal.preamble": "因為Mastodon非中心化,所以bô論tī tá tsi̍t ê服侍器建立口座,lí lóng ē當跟tuè tsi̍t ê服侍器ê逐ê lâng,kap hām in交流。Lí iā ē當ka-tī起tsi̍t ê站!",
|
||||||
|
"closed_registrations_modal.title": "註冊 Mastodon ê口座",
|
||||||
|
"column.about": "概要",
|
||||||
|
"column.blocks": "封鎖ê用者",
|
||||||
|
"column.bookmarks": "冊籤",
|
||||||
|
"column.community": "本地ê時間線",
|
||||||
|
"column.direct": "私人ê提起",
|
||||||
|
"column.directory": "瀏覽個人資料",
|
||||||
|
"column.domain_blocks": "封鎖ê域名",
|
||||||
|
"column.favourites": "Siōng kah意",
|
||||||
|
"column.firehose": "Tsit-má ê動態",
|
||||||
|
"column.follow_requests": "跟tuè請求",
|
||||||
|
"column.home": "頭頁",
|
||||||
|
"column.lists": "列單",
|
||||||
|
"column.mutes": "消音ê用者",
|
||||||
|
"column.notifications": "通知",
|
||||||
|
"column.pins": "釘起來ê PO文",
|
||||||
|
"column.public": "聯邦ê時間線",
|
||||||
|
"column_back_button.label": "頂頁",
|
||||||
|
"column_header.hide_settings": "Khàm掉設定",
|
||||||
|
"column_header.moveLeft_settings": "Kā欄sak khah倒pîng",
|
||||||
|
"column_header.moveRight_settings": "Kā欄sak khah正pîng",
|
||||||
|
"column_header.pin": "釘",
|
||||||
|
"column_header.show_settings": "顯示設定",
|
||||||
|
"column_header.unpin": "Pak掉",
|
||||||
|
"column_subheading.settings": "設定",
|
||||||
|
"community.column_settings.local_only": "Kan-ta展示本地ê",
|
||||||
|
"community.column_settings.media_only": "Kan-ta展示媒體",
|
||||||
|
"community.column_settings.remote_only": "Kan-ta展示遠距離ê",
|
||||||
|
"compose.language.change": "換語言",
|
||||||
|
"compose.language.search": "Tshiau-tshuē語言……",
|
||||||
|
"compose.published.body": "成功PO文。",
|
||||||
|
"compose.published.open": "開",
|
||||||
|
"compose.saved.body": "PO文儲存ah。",
|
||||||
|
"compose_form.direct_message_warning_learn_more": "詳細資訊",
|
||||||
|
"compose_form.encryption_warning": "Mastodon ê PO文無點tuì點加密。M̄通用Mastodon分享任何敏感ê資訊。",
|
||||||
|
"compose_form.hashtag_warning": "因為tsit êPO文m̄是公開ê,buē列tī任何ê hashtag。Kan-ta公開ê PO文tsiah ē當用hashtag tshuē。",
|
||||||
|
"compose_form.lock_disclaimer": "Lí ê口座iáu buē {locked}。逐ê lâng lóng通跟tuè lí,看lí kan-ta hōo跟tuè ê看ê PO文。",
|
||||||
|
"compose_form.lock_disclaimer.lock": "鎖起來ê",
|
||||||
|
"compose_form.placeholder": "Lí teh想siánn?",
|
||||||
|
"compose_form.poll.duration": "投票期間",
|
||||||
|
"compose_form.poll.multiple": "Tsē選擇",
|
||||||
|
"compose_form.poll.option_placeholder": "選項 {number}",
|
||||||
|
"compose_form.poll.single": "揀tsi̍t ê",
|
||||||
|
"compose_form.poll.switch_to_multiple": "Kā投票改做ē當選tsē-tsē ê。",
|
||||||
|
"compose_form.poll.switch_to_single": "Kā投票改做kan-ta通選tsi̍t-ê",
|
||||||
|
"compose_form.poll.type": "投票ê方法",
|
||||||
|
"compose_form.publish": "PO文",
|
||||||
|
"compose_form.publish_form": "PO出去",
|
||||||
|
"compose_form.reply": "回應",
|
||||||
|
"compose_form.save_changes": "更新",
|
||||||
|
"compose_form.spoiler.marked": "Thâi掉內容警告",
|
||||||
|
"compose_form.spoiler.unmarked": "加添內容警告",
|
||||||
|
"compose_form.spoiler_placeholder": "內容警告(m̄是必要)",
|
||||||
|
"confirmation_modal.cancel": "取消",
|
||||||
|
"confirmations.block.confirm": "封鎖",
|
||||||
|
"confirmations.delete.confirm": "Thâi掉",
|
||||||
|
"confirmations.delete.message": "Lí kám確定beh thâi掉tsit ê PO文?",
|
||||||
|
"confirmations.delete.title": "Kám beh thâi掉tsit ê PO文?",
|
||||||
|
"confirmations.delete_list.confirm": "Thâi掉",
|
||||||
|
"confirmations.delete_list.message": "Lí kám確定beh永永thâi掉tsit ê列單?",
|
||||||
|
"confirmations.delete_list.title": "Kám beh thâi掉tsit ê列單?",
|
||||||
|
"confirmations.discard_edit_media.confirm": "棄sak",
|
||||||
|
"confirmations.discard_edit_media.message": "Lí佇媒體敘述á是先看māi ê所在有iáu buē儲存ê改變,kám beh kā in棄sak?",
|
||||||
|
"confirmations.edit.confirm": "編輯",
|
||||||
|
"confirmations.edit.message": "Tsit-má編輯ē khàm掉lí tng-leh編寫ê訊息,lí kám beh繼續án-ne做?",
|
||||||
|
"confirmations.edit.title": "Kám beh khàm掉PO文?",
|
||||||
|
"confirmations.logout.confirm": "登出",
|
||||||
|
"confirmations.logout.message": "Lí kám確定beh登出?",
|
||||||
|
"confirmations.logout.title": "Lí kám beh登出?",
|
||||||
|
"confirmations.mute.confirm": "消音",
|
||||||
|
"confirmations.redraft.confirm": "Thâi掉了後重寫",
|
||||||
|
"confirmations.redraft.message": "Lí kám確定behthâi掉tsit篇PO文了後koh重寫?收藏kap轉PO ē無去,而且原底ê PO文ê回應ē變孤立。",
|
||||||
|
"confirmations.redraft.title": "Kám beh thâi掉koh重寫PO文?",
|
||||||
|
"confirmations.reply.confirm": "回應",
|
||||||
|
"confirmations.reply.message": "Tsit-má回應ē khàm掉lí tng-leh編寫ê訊息。Lí kám確定beh繼續án-ne做?",
|
||||||
|
"confirmations.reply.title": "Kám beh khàm掉PO文?",
|
||||||
|
"confirmations.unfollow.confirm": "取消跟tuè",
|
||||||
|
"confirmations.unfollow.message": "Lí kám確定無愛跟tuè {name}?",
|
||||||
|
"confirmations.unfollow.title": "Kám beh取消跟tuè tsit ê用者?",
|
||||||
|
"content_warning.hide": "Am-khàm PO文",
|
||||||
|
"content_warning.show": "Mā tio̍h顯示",
|
||||||
|
"content_warning.show_more": "其他內容",
|
||||||
|
"conversation.delete": "Thâi掉會話",
|
||||||
|
"conversation.mark_as_read": "標做有讀",
|
||||||
|
"conversation.open": "顯示會話",
|
||||||
|
"conversation.with": "Kap {names}",
|
||||||
|
"copy_icon_button.copied": "有khóo-pih kàu tsián貼pang",
|
||||||
|
"copypaste.copied": "有khóo-pih",
|
||||||
|
"copypaste.copy_to_clipboard": "Khóo-pih kàu tsián貼pang",
|
||||||
|
"directory.federated": "Uì知影ê Fediverse",
|
||||||
|
"directory.local": "Kan-ta uì {domain}",
|
||||||
|
"directory.new_arrivals": "新來ê",
|
||||||
|
"directory.recently_active": "最近活動ê",
|
||||||
|
"disabled_account_banner.account_settings": "口座ê設定",
|
||||||
|
"disabled_account_banner.text": "Lí ê口座 {disabledAccount} tsit-má hōo lâng停止使用。",
|
||||||
|
"dismissable_banner.community_timeline": "Tsia sī uì 口座hē tī {domain} ê lâng,最近所公開PO ê。",
|
||||||
|
"dismissable_banner.dismiss": "Mài kā tshah",
|
||||||
|
"domain_block_modal.block": "封鎖服侍器",
|
||||||
|
"domain_block_modal.block_account_instead": "改做封鎖 @{name}",
|
||||||
|
"domain_block_modal.they_can_interact_with_old_posts": "Uì tsit ê服侍器來ê,通kap lí khah早ê PO交流。",
|
||||||
|
"domain_block_modal.they_cant_follow": "Tuì tsit ê服侍器來ê 通跟tuè lí。",
|
||||||
|
"domain_block_modal.they_wont_know": "In buē知影in受封鎖。",
|
||||||
|
"domain_block_modal.title": "Kám beh封鎖域名?",
|
||||||
|
"domain_block_modal.you_will_lose_num_followers": "Lí ē失去 {followersCount, plural, other {{followersCountDisplay} ê lâng跟tuè}} kap {followingCount, plural, other {{followingCountDisplay} ê lí所tuè ê 口座}}。",
|
||||||
|
"domain_block_modal.you_will_lose_relationships": "Lí ē失去逐ê佇tsit ê服侍器跟tuè lí ê,kap lí所跟tuè ê。",
|
||||||
|
"domain_block_modal.you_wont_see_posts": "Lí buē看見tsit ê服侍器ê用者所送ê PO文kap通知。",
|
||||||
|
"domain_pill.activitypub_lets_connect": "伊ē hōo lí kap Mastodon ê lâng連結kap互動,其他社交應用程式ê lâng mā ē使。",
|
||||||
|
"domain_pill.activitypub_like_language": "ActivityPub親像Mastodon kap其他社交應用程式所講ê語言。",
|
||||||
|
"domain_pill.server": "服侍器",
|
||||||
|
"domain_pill.their_handle": "In ê口座:",
|
||||||
|
"domain_pill.their_server": "In數位ê tau,in所有ê PO文lóng tī tsia。",
|
||||||
|
"domain_pill.their_username": "In佇tsit ê服侍器獨一ê稱呼。佇無kâng ê服侍器有可能tshuē著kāng名ê用者。",
|
||||||
|
"domain_pill.username": "用者ê名",
|
||||||
|
"domain_pill.whats_in_a_handle": "口座是siánn-mih?",
|
||||||
|
"domain_pill.who_they_are": "因為口座(handle)表示tsit ê lâng是siáng kap tī toh,lí ē當佇<button>支援ActivityPub ê平臺</button>. ê社交網路kap lâng交流。",
|
||||||
|
"domain_pill.who_you_are": "因為口座(handle)表示lí是siáng kap tī toh,lâng ē當佇<button>支援ActivityPub ê平臺</button>. ê社交網路kap lí交流。",
|
||||||
|
"domain_pill.your_handle": "Lí ê口座:",
|
||||||
|
"embed.preview": "伊e án-ne顯示:\n",
|
||||||
|
"emoji_button.activity": "活動",
|
||||||
|
"emoji_button.clear": "清掉",
|
||||||
|
"emoji_button.custom": "自訂ê",
|
||||||
|
"emoji_button.flags": "旗á",
|
||||||
|
"emoji_button.food": "Tsia̍h-mi̍h kap 飲料",
|
||||||
|
"emoji_button.label": "加入繪文字(emoji)",
|
||||||
|
"emoji_button.nature": "自然",
|
||||||
|
"emoji_button.not_found": "Tshuē無對應ê emoji",
|
||||||
|
"emoji_button.objects": "物件",
|
||||||
|
"emoji_button.people": "Lâng",
|
||||||
|
"emoji_button.recent": "Tsia̍p用ê",
|
||||||
|
"emoji_button.search": "Tshiau-tshuē……",
|
||||||
|
"emoji_button.search_results": "Tshiau-tshuē ê結果",
|
||||||
|
"emoji_button.symbols": "符號",
|
||||||
|
"emoji_button.travel": "旅行kap地點",
|
||||||
|
"empty_column.account_hides_collections": "Tsit位用者選擇無愛公開tsit ê資訊",
|
||||||
|
"empty_column.account_suspended": "口座已經受停止",
|
||||||
|
"empty_column.account_timeline": "Tsia無PO文!",
|
||||||
|
"empty_column.account_unavailable": "個人資料bē當看",
|
||||||
|
"errors.unexpected_crash.copy_stacktrace": "Khóo-pih stacktrace kàu剪貼pang-á",
|
||||||
|
"errors.unexpected_crash.report_issue": "報告問題",
|
||||||
|
"explore.suggested_follows": "用者",
|
||||||
|
"explore.title": "探索",
|
||||||
|
"explore.trending_links": "新聞",
|
||||||
|
"filter_modal.added.expired_title": "過期ê過濾器",
|
||||||
|
"filter_modal.added.review_and_configure": "Beh審視kap進前設定tsit ê過濾器ê類別,請kàu {settings_link}。",
|
||||||
|
"filter_modal.added.review_and_configure_title": "過濾器ê設定",
|
||||||
|
"filter_modal.added.settings_link": "設定頁",
|
||||||
|
"filter_modal.added.short_explanation": "Tsit ê PO文已經加添kàu下kha ê過濾器類別:{title}。",
|
||||||
|
"filter_modal.added.title": "過濾器加添ah!",
|
||||||
|
"filter_modal.select_filter.context_mismatch": "Mài用tī tsit ê內文",
|
||||||
|
"filter_modal.select_filter.expired": "過期ah",
|
||||||
|
"filter_modal.select_filter.prompt_new": "新ê類別:{name}",
|
||||||
|
"filter_modal.select_filter.search": "Tshiau-tshuē á是加添",
|
||||||
|
"filter_modal.select_filter.subtitle": "用有ê類別á是建立新ê",
|
||||||
|
"filter_modal.select_filter.title": "過濾tsit ê PO文",
|
||||||
|
"filter_modal.title.status": "過濾PO文",
|
||||||
|
"filter_warning.matches_filter": "合過濾器「<span>{title}</span>」",
|
||||||
|
"filtered_notifications_banner.pending_requests": "Tuì lí可能熟sāi ê {count, plural, =0 {0 ê人} other {# ê人}}",
|
||||||
|
"filtered_notifications_banner.title": "過濾ê通知",
|
||||||
|
"firehose.all": "Kui ê",
|
||||||
|
"firehose.local": "Tsit ê服侍器",
|
||||||
|
"firehose.remote": "別ê服侍器",
|
||||||
|
"follow_request.authorize": "授權",
|
||||||
|
"follow_request.reject": "拒絕",
|
||||||
|
"follow_requests.unlocked_explanation": "就算lí ê口座無hőng鎖,{domain} ê管理員leh想,lí可能beh手動審查tuì tsiah ê口座送ê跟tuè請求。",
|
||||||
|
"follow_suggestions.curated_suggestion": "精選ê內容",
|
||||||
|
"follow_suggestions.dismiss": "Mài koh顯示。",
|
||||||
|
"follow_suggestions.featured_longer": "{domain} 團隊所揀ê",
|
||||||
|
"follow_suggestions.friends_of_friends_longer": "時行佇lí所tuè ê lâng",
|
||||||
|
"follow_suggestions.personalized_suggestion": "個人化ê推薦",
|
||||||
|
"follow_suggestions.popular_suggestion": "流行ê推薦",
|
||||||
|
"follow_suggestions.popular_suggestion_longer": "佇{domain} 足有lâng緣",
|
||||||
|
"follow_suggestions.similar_to_recently_followed_longer": "Kap lí最近跟tuè ê相siâng",
|
||||||
|
"follow_suggestions.view_all": "看全部",
|
||||||
|
"follow_suggestions.who_to_follow": "Thang tuè ê",
|
||||||
|
"followed_tags": "跟tuè ê hashtag",
|
||||||
|
"footer.about": "概要",
|
||||||
|
"footer.directory": "個人資料ê目錄",
|
||||||
|
"footer.get_app": "The̍h著app",
|
||||||
|
"footer.invite": "邀請lâng",
|
||||||
|
"footer.keyboard_shortcuts": "鍵盤kiu-té khí (shortcut)",
|
||||||
|
"footer.privacy_policy": "隱私權政策",
|
||||||
|
"footer.source_code": "看原始碼",
|
||||||
|
"footer.status": "狀態",
|
||||||
|
"generic.saved": "儲存ah",
|
||||||
|
"getting_started.heading": "開始用",
|
||||||
|
"hashtag.column_header.tag_mode.all": "kap {additional}",
|
||||||
|
"hashtag.column_header.tag_mode.any": "á是 {additional}",
|
||||||
|
"hashtag.column_header.tag_mode.none": "無需要 {additional}",
|
||||||
|
"hashtag.column_settings.select.no_options_message": "Tshuē無建議",
|
||||||
|
"hashtag.column_settings.select.placeholder": "請輸入hashtag……",
|
||||||
|
"hashtag.column_settings.tag_mode.all": "Kui ê",
|
||||||
|
"hashtag.column_settings.tag_mode.any": "任何tsi̍t ê",
|
||||||
|
"hashtag.column_settings.tag_mode.none": "Lóng mài",
|
||||||
|
"hashtag.column_settings.tag_toggle": "Kā追加ê標籤加添kàu tsit ê欄",
|
||||||
|
"hashtag.counter_by_accounts": "{count, plural, one {{counter} ê} other {{counter} ê}}參與ê",
|
||||||
|
"hashtag.counter_by_uses": "{count, plural, one {{counter} ê} other {{counter} ê}} PO文",
|
||||||
|
"hashtag.counter_by_uses_today": "Kin-á日有 {count, plural, one {{counter} ê} other {{counter} ê}} PO文",
|
||||||
|
"hashtag.follow": "跟tuè hashtag",
|
||||||
|
"hashtag.unfollow": "取消跟tuè hashtag",
|
||||||
|
"hashtags.and_other": "……kap 其他 {count, plural, other {# ê}}",
|
||||||
|
"onboarding.action.back": "Tńg去",
|
||||||
|
"onboarding.actions.back": "Tńg去",
|
||||||
|
"search_popout.language_code": "ISO語言代碼",
|
||||||
|
"status.translated_from_with": "用 {provider} 翻譯 {lang}"
|
||||||
|
}
|
|
@ -10,6 +10,7 @@
|
||||||
"about.powered_by": "{mastodon} द्वारा संचालित विकेन्द्रीकृत सामाजिक मिडिया",
|
"about.powered_by": "{mastodon} द्वारा संचालित विकेन्द्रीकृत सामाजिक मिडिया",
|
||||||
"about.rules": "सर्भर नियमहरू",
|
"about.rules": "सर्भर नियमहरू",
|
||||||
"account.add_or_remove_from_list": "सूचीबाट थप्नुहोस् वा हटाउनुहोस्",
|
"account.add_or_remove_from_list": "सूचीबाट थप्नुहोस् वा हटाउनुहोस्",
|
||||||
|
"account.badges.bot": "स्वचालित",
|
||||||
"account.badges.group": "समूह",
|
"account.badges.group": "समूह",
|
||||||
"account.block": "@{name} लाई ब्लक गर्नुहोस्",
|
"account.block": "@{name} लाई ब्लक गर्नुहोस्",
|
||||||
"account.block_domain": "{domain} डोमेनलाई ब्लक गर्नुहोस्",
|
"account.block_domain": "{domain} डोमेनलाई ब्लक गर्नुहोस्",
|
||||||
|
@ -24,25 +25,43 @@
|
||||||
"account.enable_notifications": "@{name} ले पोस्ट गर्दा मलाई सूचित गर्नुहोस्",
|
"account.enable_notifications": "@{name} ले पोस्ट गर्दा मलाई सूचित गर्नुहोस्",
|
||||||
"account.endorse": "प्रोफाइलमा फिचर गर्नुहोस्",
|
"account.endorse": "प्रोफाइलमा फिचर गर्नुहोस्",
|
||||||
"account.featured_tags.last_status_never": "कुनै पोस्ट छैन",
|
"account.featured_tags.last_status_never": "कुनै पोस्ट छैन",
|
||||||
|
"account.featured_tags.title": "{name}का विशेष ह्यासट्यागहरू",
|
||||||
"account.follow": "फलो गर्नुहोस",
|
"account.follow": "फलो गर्नुहोस",
|
||||||
|
"account.follow_back": "फलो ब्याक गर्नुहोस्",
|
||||||
|
"account.followers": "फलोअरहरु",
|
||||||
"account.followers.empty": "यस प्रयोगकर्तालाई अहिलेसम्म कसैले फलो गर्दैन।",
|
"account.followers.empty": "यस प्रयोगकर्तालाई अहिलेसम्म कसैले फलो गर्दैन।",
|
||||||
|
"account.followers_counter": "{count, plural, one {{counter} फलोअर} other {{counter} फलोअरहरू}}",
|
||||||
|
"account.following": "फलो गर्दै",
|
||||||
|
"account.following_counter": "{count, plural, one {{counter} फलो गर्दै} other {{counter} फलो गर्दै}}",
|
||||||
"account.follows.empty": "यो प्रयोगकर्ताले अहिलेसम्म कसैलाई फलो गरेको छैन।",
|
"account.follows.empty": "यो प्रयोगकर्ताले अहिलेसम्म कसैलाई फलो गरेको छैन।",
|
||||||
"account.go_to_profile": "प्रोफाइलमा जानुहोस्",
|
"account.go_to_profile": "प्रोफाइलमा जानुहोस्",
|
||||||
"account.hide_reblogs": "@{name} को बूस्टहरू लुकाउनुहोस्",
|
"account.hide_reblogs": "@{name} को बूस्टहरू लुकाउनुहोस्",
|
||||||
|
"account.in_memoriam": "सम्झनामा।",
|
||||||
"account.link_verified_on": "यस लिङ्कको स्वामित्व {date} मा जाँच गरिएको थियो",
|
"account.link_verified_on": "यस लिङ्कको स्वामित्व {date} मा जाँच गरिएको थियो",
|
||||||
"account.media": "मिडिया",
|
"account.media": "मिडिया",
|
||||||
"account.mention": "@{name} लाई उल्लेख गर्नुहोस्",
|
"account.mention": "@{name} लाई उल्लेख गर्नुहोस्",
|
||||||
|
"account.mute": "@{name}लाई म्यूट गर्नुहोस्",
|
||||||
|
"account.mute_notifications_short": "सूचनाहरू म्यूट गर्नुहोस्",
|
||||||
|
"account.mute_short": "म्युट",
|
||||||
|
"account.muted": "म्युट गरिएको",
|
||||||
|
"account.mutual": "आपसी",
|
||||||
"account.no_bio": "कुनै विवरण प्रदान गरिएको छैन।",
|
"account.no_bio": "कुनै विवरण प्रदान गरिएको छैन।",
|
||||||
"account.posts": "पोस्टहरू",
|
"account.posts": "पोस्टहरू",
|
||||||
|
"account.posts_with_replies": "पोस्ट र जवाफहरू",
|
||||||
|
"account.report": "@{name}लाई रिपोर्ट गर्नुहोस्",
|
||||||
"account.requested": "स्वीकृतिको पर्खाइमा। फलो अनुरोध रद्द गर्न क्लिक गर्नुहोस्",
|
"account.requested": "स्वीकृतिको पर्खाइमा। फलो अनुरोध रद्द गर्न क्लिक गर्नुहोस्",
|
||||||
"account.requested_follow": "{name} ले तपाईंलाई फलो गर्न अनुरोध गर्नुभएको छ",
|
"account.requested_follow": "{name} ले तपाईंलाई फलो गर्न अनुरोध गर्नुभएको छ",
|
||||||
"account.share": "@{name} को प्रोफाइल सेयर गर्नुहोस्",
|
"account.share": "@{name} को प्रोफाइल सेयर गर्नुहोस्",
|
||||||
"account.show_reblogs": "@{name} को बूस्टहरू देखाउनुहोस्",
|
"account.show_reblogs": "@{name} को बूस्टहरू देखाउनुहोस्",
|
||||||
|
"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": "अनब्लक गर्नुहोस्",
|
"account.unblock_short": "अनब्लक गर्नुहोस्",
|
||||||
"account.unendorse": "प्रोफाइलमा फिचर नगर्नुहोस्",
|
"account.unendorse": "प्रोफाइलमा फिचर नगर्नुहोस्",
|
||||||
"account.unfollow": "अनफलो गर्नुहोस्",
|
"account.unfollow": "अनफलो गर्नुहोस्",
|
||||||
|
"account.unmute": "@{name}लाई अनम्युट गर्नुहोस्",
|
||||||
|
"account.unmute_notifications_short": "सूचनाहरू अनम्युट गर्नुहोस्",
|
||||||
|
"account.unmute_short": "अनम्यूट गर्नुहोस्",
|
||||||
"account_note.placeholder": "नोट लेख्न क्लिक गर्नुहोस्",
|
"account_note.placeholder": "नोट लेख्न क्लिक गर्नुहोस्",
|
||||||
"admin.dashboard.retention.average": "औसत",
|
"admin.dashboard.retention.average": "औसत",
|
||||||
"admin.dashboard.retention.cohort_size": "नयाँ प्रयोगकर्ताहरू",
|
"admin.dashboard.retention.cohort_size": "नयाँ प्रयोगकर्ताहरू",
|
||||||
|
@ -52,9 +71,13 @@
|
||||||
"block_modal.remote_users_caveat": "हामी सर्भर {domain} लाई तपाईंको निर्णयको सम्मान गर्न सोध्नेछौं। तर, हामी अनुपालनको ग्यारेन्टी दिन सक्दैनौं किनभने केही सर्भरहरूले ब्लकहरू फरक रूपमा ह्यान्डल गर्न सक्छन्। सार्वजनिक पोस्टहरू लग इन नभएका प्रयोगकर्ताहरूले देख्न सक्छन्।",
|
"block_modal.remote_users_caveat": "हामी सर्भर {domain} लाई तपाईंको निर्णयको सम्मान गर्न सोध्नेछौं। तर, हामी अनुपालनको ग्यारेन्टी दिन सक्दैनौं किनभने केही सर्भरहरूले ब्लकहरू फरक रूपमा ह्यान्डल गर्न सक्छन्। सार्वजनिक पोस्टहरू लग इन नभएका प्रयोगकर्ताहरूले देख्न सक्छन्।",
|
||||||
"block_modal.show_less": "कम देखाउनुहोस्",
|
"block_modal.show_less": "कम देखाउनुहोस्",
|
||||||
"block_modal.show_more": "थप देखाउनुहोस्",
|
"block_modal.show_more": "थप देखाउनुहोस्",
|
||||||
|
"block_modal.title": "प्रयोगकर्तालाई ब्लक गर्ने?",
|
||||||
|
"boost_modal.reblog": "पोस्ट बुस्ट गर्ने?",
|
||||||
|
"boost_modal.undo_reblog": "पोस्ट अनबुस्ट गर्ने?",
|
||||||
"bundle_column_error.copy_stacktrace": "त्रुटि रिपोर्ट प्रतिलिपि गर्नुहोस्",
|
"bundle_column_error.copy_stacktrace": "त्रुटि रिपोर्ट प्रतिलिपि गर्नुहोस्",
|
||||||
"bundle_column_error.network.title": "नेटवर्क त्रुटि",
|
"bundle_column_error.network.title": "नेटवर्क त्रुटि",
|
||||||
"bundle_column_error.retry": "पुन: प्रयास गर्नुहोस्",
|
"bundle_column_error.retry": "पुन: प्रयास गर्नुहोस्",
|
||||||
|
"bundle_column_error.routing.title": "४०४",
|
||||||
"bundle_modal_error.close": "बन्द गर्नुहोस्",
|
"bundle_modal_error.close": "बन्द गर्नुहोस्",
|
||||||
"bundle_modal_error.message": "यो कम्पोनेन्ट लोड गर्दा केही गडबड भयो।",
|
"bundle_modal_error.message": "यो कम्पोनेन्ट लोड गर्दा केही गडबड भयो।",
|
||||||
"bundle_modal_error.retry": "Try again",
|
"bundle_modal_error.retry": "Try again",
|
||||||
|
@ -63,15 +86,93 @@
|
||||||
"closed_registrations_modal.find_another_server": "अर्को सर्भर खोज्नुहोस्",
|
"closed_registrations_modal.find_another_server": "अर्को सर्भर खोज्नुहोस्",
|
||||||
"closed_registrations_modal.title": "Mastodon मा साइन अप गर्दै",
|
"closed_registrations_modal.title": "Mastodon मा साइन अप गर्दै",
|
||||||
"column.blocks": "ब्लक गरिएको प्रयोगकर्ताहरु",
|
"column.blocks": "ब्लक गरिएको प्रयोगकर्ताहरु",
|
||||||
|
"column.bookmarks": "बुकमार्कहरू",
|
||||||
|
"column.direct": "निजी उल्लेखहरू",
|
||||||
"column.directory": "प्रोफाइल ब्राउज गर्नुहोस्",
|
"column.directory": "प्रोफाइल ब्राउज गर्नुहोस्",
|
||||||
"column.domain_blocks": "ब्लक गरिएको डोमेन",
|
"column.domain_blocks": "ब्लक गरिएको डोमेन",
|
||||||
"column.follow_requests": "फलो अनुरोधहरू",
|
"column.follow_requests": "फलो अनुरोधहरू",
|
||||||
|
"column.home": "गृहपृष्ठ",
|
||||||
"column.lists": "सूचीहरू",
|
"column.lists": "सूचीहरू",
|
||||||
|
"column.mutes": "म्यूट गरिएका प्रयोगकर्ताहरू",
|
||||||
"column.notifications": "सूचनाहरू",
|
"column.notifications": "सूचनाहरू",
|
||||||
|
"column.pins": "पिन गरिएका पोस्टहरू",
|
||||||
"column_header.hide_settings": "सेटिङ्हरू लुकाउनुहोस्",
|
"column_header.hide_settings": "सेटिङ्हरू लुकाउनुहोस्",
|
||||||
|
"column_header.pin": "पिन गर्नुहोस्",
|
||||||
|
"column_header.unpin": "अनपिन गर्नुहोस्",
|
||||||
"column_subheading.settings": "सेटिङहरू",
|
"column_subheading.settings": "सेटिङहरू",
|
||||||
|
"community.column_settings.media_only": "मिडिया मात्र",
|
||||||
"compose.language.change": "भाषा परिवर्तन गर्नुहोस्",
|
"compose.language.change": "भाषा परिवर्तन गर्नुहोस्",
|
||||||
"compose.language.search": "भाषाहरू खोज्नुहोस्...",
|
"compose.language.search": "भाषाहरू खोज्नुहोस्...",
|
||||||
|
"compose.published.body": "पोस्ट प्रकाशित भयो।",
|
||||||
|
"compose.published.open": "खोल्नुहोस्",
|
||||||
|
"compose.saved.body": "पोस्ट सेभ गरियो।",
|
||||||
"compose_form.direct_message_warning_learn_more": "थप जान्नुहोस्",
|
"compose_form.direct_message_warning_learn_more": "थप जान्नुहोस्",
|
||||||
"compose_form.publish_form": "नयाँ पोस्ट"
|
"compose_form.placeholder": "तपाईको मनमा के छ?",
|
||||||
|
"compose_form.publish": "पोस्ट गर्नुहोस्",
|
||||||
|
"compose_form.publish_form": "नयाँ पोस्ट",
|
||||||
|
"compose_form.reply": "जवाफ दिनुहोस्",
|
||||||
|
"compose_form.save_changes": "अपडेट गर्नुहोस्",
|
||||||
|
"confirmation_modal.cancel": "रद्द गर्नुहोस्",
|
||||||
|
"confirmations.block.confirm": "ब्लक गर्नुहोस्",
|
||||||
|
"confirmations.delete.message": "के तपाइँ पक्का हुनुहुन्छ कि तपाईं यो पोष्ट मेटाउन चाहनुहुन्छ?",
|
||||||
|
"confirmations.delete.title": "पोस्ट मेटाउने?",
|
||||||
|
"confirmations.delete_list.message": "के तपाइँ पक्का हुनुहुन्छ कि तपाईं यो सूची स्थायी रूपमा मेटाउन चाहनुहुन्छ?",
|
||||||
|
"confirmations.delete_list.title": "सूची मेटाउने?",
|
||||||
|
"confirmations.edit.confirm": "सम्पादन गर्नुहोस्",
|
||||||
|
"confirmations.edit.message": "अहिले सम्पादन गर्नाले तपाईंले हाल लेखिरहनुभएको सन्देश अधिलेखन हुनेछ। के तपाईं अगाडि बढ्न चाहनुहुन्छ?",
|
||||||
|
"confirmations.edit.title": "पोस्ट अधिलेखन गर्ने?",
|
||||||
|
"confirmations.logout.message": "के तपाइँ पक्का हुनुहुन्छ कि तपाइँ लाई लग आउट गर्न चाहनुहुन्छ?",
|
||||||
|
"confirmations.logout.title": "लग आउट गर्ने?",
|
||||||
|
"confirmations.mute.confirm": "म्यूट गर्नुहोस्",
|
||||||
|
"confirmations.redraft.confirm": "मेटाएर पुन: ड्राफ्ट गर्नुहोस्",
|
||||||
|
"confirmations.redraft.title": "पोस्ट मेटाएर पुन: ड्राफ्ट गर्ने?",
|
||||||
|
"confirmations.reply.confirm": "जवाफ दिनुहोस्",
|
||||||
|
"confirmations.reply.message": "अहिले जवाफ दिनाले तपाईंले हाल लेखिरहनुभएको सन्देश अधिलेखन हुनेछ। के तपाईं अगाडि बढ्न चाहनुहुन्छ?",
|
||||||
|
"confirmations.reply.title": "पोस्ट अधिलेखन गर्ने?",
|
||||||
|
"confirmations.unfollow.confirm": "अनफलो गर्नुहोस्",
|
||||||
|
"confirmations.unfollow.message": "के तपाइँ पक्का हुनुहुन्छ कि तपाइँ {name}लाई अनफलो गर्न चाहनुहुन्छ?",
|
||||||
|
"confirmations.unfollow.title": "प्रयोगकर्तालाई अनफलो गर्ने?",
|
||||||
|
"disabled_account_banner.account_settings": "खाता सेटिङहरू",
|
||||||
|
"empty_column.follow_requests": "तपाईंले अहिलेसम्म कुनै पनि फलो अनुरोधहरू प्राप्त गर्नुभएको छैन। तपाईंले कुनै प्राप्त गरेपछि त्यो यहाँ देखिनेछ।",
|
||||||
|
"empty_column.followed_tags": "तपाईंले अहिलेसम्म कुनै पनि ह्यासट्यागहरू फलो गर्नुभएको छैन। तपाईंले ह्यासट्याग फलो गरेपछि तिनीहरू यहाँ देखिनेछन्।",
|
||||||
|
"follow_suggestions.dismiss": "फेरि नदेखाउनुहोस्",
|
||||||
|
"follow_suggestions.hints.similar_to_recently_followed": "यो प्रोफाइल तपाईंले हालसालै फलो गर्नुभएका प्रोफाइलहरूसँग मिल्दोजुल्दो छ।",
|
||||||
|
"follow_suggestions.popular_suggestion": "लोकप्रिय सुझाव",
|
||||||
|
"follow_suggestions.popular_suggestion_longer": "{domain} मा लोकप्रिय",
|
||||||
|
"follow_suggestions.similar_to_recently_followed_longer": "तपाईंले हालसालै फलो गर्नुभएको प्रोफाइलहरू जस्तै",
|
||||||
|
"follow_suggestions.view_all": "सबै हेर्नुहोस्",
|
||||||
|
"follow_suggestions.who_to_follow": "कसलाई फलो गर्ने",
|
||||||
|
"followed_tags": "फलो गरिएका ह्यासट्यागहरू",
|
||||||
|
"hashtag.follow": "ह्यासट्याग फलो गर्नुहोस्",
|
||||||
|
"hashtag.unfollow": "ह्यासट्याग अनफलो गर्नुहोस्",
|
||||||
|
"home.column_settings.show_reblogs": "बूस्टहरू देखाउनुहोस्",
|
||||||
|
"interaction_modal.title.follow": "{name} लाई फलो गर्नुहोस्",
|
||||||
|
"interaction_modal.title.reblog": "{name} को पोस्ट बुस्ट गर्नुहोस्",
|
||||||
|
"keyboard_shortcuts.boost": "पोस्ट बुस्ट गर्नुहोस्",
|
||||||
|
"mute_modal.they_wont_know": "उनीहरूलाई म्यूट गरिएको बारे थाहा हुँदैन।",
|
||||||
|
"mute_modal.title": "प्रयोगकर्तालाई म्युट गर्ने?",
|
||||||
|
"navigation_bar.blocks": "ब्लक गरिएको प्रयोगकर्ताहरु",
|
||||||
|
"navigation_bar.follow_requests": "फलो अनुरोधहरू",
|
||||||
|
"navigation_bar.followed_tags": "फलो गरिएका ह्यासट्यागहरू",
|
||||||
|
"notification.reblog": "{name} ले तपाईंको पोस्ट बूस्ट गर्नुभयो",
|
||||||
|
"notification_requests.confirm_accept_multiple.title": "सूचना अनुरोधहरू स्वीकार गर्ने?",
|
||||||
|
"notification_requests.confirm_dismiss_multiple.title": "सूचना अनुरोधहरू खारेज गर्ने?",
|
||||||
|
"notifications.clear_title": "सूचनाहरू खाली गर्ने?",
|
||||||
|
"notifications.column_settings.reblog": "बूस्टहरू:",
|
||||||
|
"notifications.filter.boosts": "बूस्टहरू",
|
||||||
|
"report.comment.title": "के हामीले थाहा पाउनुपर्ने अरू केही छ जस्तो लाग्छ?",
|
||||||
|
"report.forward_hint": "यो खाता अर्को सर्भरबाट हो। त्यहाँ पनि रिपोर्टको गुमनाम प्रतिलिपि पठाउने हो?",
|
||||||
|
"report.rules.title": "कुन नियमहरू उल्लङ्घन भइरहेका छन्?",
|
||||||
|
"report.statuses.title": "के यस रिपोर्टलाई समर्थन गर्ने कुनै पोस्टहरू छन्?",
|
||||||
|
"report.thanks.title": "यो हेर्न चाहनुहुन्न?",
|
||||||
|
"report.unfollow": "@{name} लाई अनफलो गर्नुहोस्",
|
||||||
|
"search_results.hashtags": "ह्यासट्यागहरू",
|
||||||
|
"status.cancel_reblog_private": "अनबुस्ट गर्नुहोस्",
|
||||||
|
"status.cannot_reblog": "यो पोस्टलाई बुस्ट गर्न सकिँदैन",
|
||||||
|
"status.mute": "@{name}लाई म्यूट गर्नुहोस्",
|
||||||
|
"status.mute_conversation": "कुराकानी म्यूट गर्नुहोस्",
|
||||||
|
"status.reblog": "बूस्ट गर्नुहोस्",
|
||||||
|
"status.reblogged_by": "{name} ले बूस्ट गर्नुभएको",
|
||||||
|
"status.reblogs": "{count, plural, one {बूस्ट} other {बूस्टहरू}}",
|
||||||
|
"status.unmute_conversation": "कुराकानी अनम्यूट गर्नुहोस्"
|
||||||
}
|
}
|
||||||
|
|
|
@ -268,7 +268,7 @@
|
||||||
"empty_column.explore_statuses": "Momenteel zijn er geen trends. Kom later terug!",
|
"empty_column.explore_statuses": "Momenteel zijn er geen trends. Kom later terug!",
|
||||||
"empty_column.favourited_statuses": "Jij hebt nog geen favoriete berichten. Wanneer je een bericht als favoriet markeert, valt deze hier te zien.",
|
"empty_column.favourited_statuses": "Jij hebt nog geen favoriete berichten. Wanneer je een bericht als favoriet markeert, valt deze hier te zien.",
|
||||||
"empty_column.favourites": "Niemand heeft dit bericht nog als favoriet gemarkeerd. Wanneer iemand dit doet, valt dat hier te zien.",
|
"empty_column.favourites": "Niemand heeft dit bericht nog als favoriet gemarkeerd. Wanneer iemand dit doet, valt dat hier te zien.",
|
||||||
"empty_column.follow_requests": "Jij hebt nog enkel volgverzoek ontvangen. Wanneer je er eentje ontvangt, valt dat hier te zien.",
|
"empty_column.follow_requests": "Je hebt nog geen volgverzoeken ontvangen. Wanneer je er een ontvangt, valt dat hier te zien.",
|
||||||
"empty_column.followed_tags": "Je hebt nog geen hashtags gevolgd. Nadat je dit doet, komen deze hier te staan.",
|
"empty_column.followed_tags": "Je hebt nog geen hashtags gevolgd. Nadat je dit doet, komen deze hier te staan.",
|
||||||
"empty_column.hashtag": "Er is nog niks te vinden onder deze hashtag.",
|
"empty_column.hashtag": "Er is nog niks te vinden onder deze hashtag.",
|
||||||
"empty_column.home": "Deze tijdlijn is leeg! Volg meer mensen om het te vullen.",
|
"empty_column.home": "Deze tijdlijn is leeg! Volg meer mensen om het te vullen.",
|
||||||
|
@ -861,7 +861,7 @@
|
||||||
"upload_form.drag_and_drop.on_drag_over": "Mediabijlage {item} is verplaatst.",
|
"upload_form.drag_and_drop.on_drag_over": "Mediabijlage {item} is verplaatst.",
|
||||||
"upload_form.drag_and_drop.on_drag_start": "Mediabijlage {item} is opgepakt.",
|
"upload_form.drag_and_drop.on_drag_start": "Mediabijlage {item} is opgepakt.",
|
||||||
"upload_form.edit": "Bewerken",
|
"upload_form.edit": "Bewerken",
|
||||||
"upload_form.thumbnail": "Miniatuurafbeelding wijzigen",
|
"upload_form.thumbnail": "Miniatuur wijzigen",
|
||||||
"upload_form.video_description": "Omschrijf dit voor dove, slechthorende, blinde of slechtziende mensen",
|
"upload_form.video_description": "Omschrijf dit voor dove, slechthorende, blinde of slechtziende mensen",
|
||||||
"upload_modal.analyzing_picture": "Afbeelding analyseren…",
|
"upload_modal.analyzing_picture": "Afbeelding analyseren…",
|
||||||
"upload_modal.apply": "Toepassen",
|
"upload_modal.apply": "Toepassen",
|
||||||
|
@ -870,7 +870,7 @@
|
||||||
"upload_modal.description_placeholder": "Pa's wijze lynx bezag vroom het fikse aquaduct",
|
"upload_modal.description_placeholder": "Pa's wijze lynx bezag vroom het fikse aquaduct",
|
||||||
"upload_modal.detect_text": "Tekst in een afbeelding detecteren",
|
"upload_modal.detect_text": "Tekst in een afbeelding detecteren",
|
||||||
"upload_modal.edit_media": "Media bewerken",
|
"upload_modal.edit_media": "Media bewerken",
|
||||||
"upload_modal.hint": "Klik of sleep de cirkel in de voorvertoning naar een centraal focuspunt dat op elke thumbnail zichtbaar moet blijven.",
|
"upload_modal.hint": "Klik of sleep de cirkel in de voorvertoning naar een centraal focuspunt in de afbeelding dat altijd zichtbaar moet blijven.",
|
||||||
"upload_modal.preparing_ocr": "OCR voorbereiden…",
|
"upload_modal.preparing_ocr": "OCR voorbereiden…",
|
||||||
"upload_modal.preview_label": "Voorvertoning ({ratio})",
|
"upload_modal.preview_label": "Voorvertoning ({ratio})",
|
||||||
"upload_progress.label": "Uploaden...",
|
"upload_progress.label": "Uploaden...",
|
||||||
|
|
|
@ -214,7 +214,7 @@
|
||||||
"dismissable_banner.community_timeline": "Dette er dei nylegaste offentlege innlegga frå personar med kontoar frå {domain}.",
|
"dismissable_banner.community_timeline": "Dette er dei nylegaste offentlege innlegga frå personar med kontoar frå {domain}.",
|
||||||
"dismissable_banner.dismiss": "Avvis",
|
"dismissable_banner.dismiss": "Avvis",
|
||||||
"dismissable_banner.explore_links": "Desse nyhendesakene snakkast om av folk på denne og andre tenarar på det desentraliserte nettverket no.",
|
"dismissable_banner.explore_links": "Desse nyhendesakene snakkast om av folk på denne og andre tenarar på det desentraliserte nettverket no.",
|
||||||
"dismissable_banner.explore_statuses": "Dette er innlegg frå det desentraliserte nettverket som er i støytet i dag. Nye statusar som er mykje framheva og merkte som favorittar er rangert høgare.",
|
"dismissable_banner.explore_statuses": "Dette er innlegg frå det sosiale nettet som er populære i dag. Nye innlegg med mange favorittmerkingar og framhevingar er rangert høgare.",
|
||||||
"dismissable_banner.explore_tags": "Desse emneknaggane er populære blant folk på denne tenaren og andre tenarar i det desentraliserte nettverket nett no.",
|
"dismissable_banner.explore_tags": "Desse emneknaggane er populære blant folk på denne tenaren og andre tenarar i det desentraliserte nettverket nett no.",
|
||||||
"dismissable_banner.public_timeline": "Dette er dei nyaste offentlege innlegga frå menneske på det sosiale nettet som folk på {domain} fylgjer.",
|
"dismissable_banner.public_timeline": "Dette er dei nyaste offentlege innlegga frå menneske på det sosiale nettet som folk på {domain} fylgjer.",
|
||||||
"domain_block_modal.block": "Blokker tenaren",
|
"domain_block_modal.block": "Blokker tenaren",
|
||||||
|
@ -265,7 +265,7 @@
|
||||||
"empty_column.community": "Den lokale tidslina er tom. Skriv noko offentleg å få ballen til å rulle!",
|
"empty_column.community": "Den lokale tidslina er tom. Skriv noko offentleg å få ballen til å rulle!",
|
||||||
"empty_column.direct": "Du har ingen private omtaler enda. Etter du har sendt eller mottatt en, så vil den dukke opp her.",
|
"empty_column.direct": "Du har ingen private omtaler enda. Etter du har sendt eller mottatt en, så vil den dukke opp her.",
|
||||||
"empty_column.domain_blocks": "Det er ingen blokkerte domene enno.",
|
"empty_column.domain_blocks": "Det er ingen blokkerte domene enno.",
|
||||||
"empty_column.explore_statuses": "Ingenting er i støytet nett no. Prøv igjen seinare!",
|
"empty_column.explore_statuses": "Ingenting er populært nett no. Prøv att seinare!",
|
||||||
"empty_column.favourited_statuses": "Du har ingen favoritt-statusar ennå. Når du merkjer ein som favoritt, dukkar han opp her.",
|
"empty_column.favourited_statuses": "Du har ingen favoritt-statusar ennå. Når du merkjer ein som favoritt, dukkar han opp her.",
|
||||||
"empty_column.favourites": "Ingen har merkt denne statusen som favoritt enno. Når nokon gjer det, dukkar dei opp her.",
|
"empty_column.favourites": "Ingen har merkt denne statusen som favoritt enno. Når nokon gjer det, dukkar dei opp her.",
|
||||||
"empty_column.follow_requests": "Ingen har spurt om å fylgja deg enno. Når nokon gjer det, vil det dukka opp her.",
|
"empty_column.follow_requests": "Ingen har spurt om å fylgja deg enno. Når nokon gjer det, vil det dukka opp her.",
|
||||||
|
|
|
@ -85,6 +85,7 @@
|
||||||
"alert.rate_limited.title": "Hastighetsbegrenset",
|
"alert.rate_limited.title": "Hastighetsbegrenset",
|
||||||
"alert.unexpected.message": "En uventet feil oppstod.",
|
"alert.unexpected.message": "En uventet feil oppstod.",
|
||||||
"alert.unexpected.title": "Ups!",
|
"alert.unexpected.title": "Ups!",
|
||||||
|
"alt_text_badge.title": "Alternativ tekst",
|
||||||
"announcement.announcement": "Kunngjøring",
|
"announcement.announcement": "Kunngjøring",
|
||||||
"attachments_list.unprocessed": "(ubehandlet)",
|
"attachments_list.unprocessed": "(ubehandlet)",
|
||||||
"audio.hide": "Skjul lyd",
|
"audio.hide": "Skjul lyd",
|
||||||
|
@ -196,6 +197,7 @@
|
||||||
"confirmations.unfollow.title": "Slutt å følge bruker?",
|
"confirmations.unfollow.title": "Slutt å følge bruker?",
|
||||||
"content_warning.hide": "Skjul innlegg",
|
"content_warning.hide": "Skjul innlegg",
|
||||||
"content_warning.show": "Vis likevel",
|
"content_warning.show": "Vis likevel",
|
||||||
|
"content_warning.show_more": "Vis mer",
|
||||||
"conversation.delete": "Slett samtalen",
|
"conversation.delete": "Slett samtalen",
|
||||||
"conversation.mark_as_read": "Marker som lest",
|
"conversation.mark_as_read": "Marker som lest",
|
||||||
"conversation.open": "Vis samtale",
|
"conversation.open": "Vis samtale",
|
||||||
|
@ -453,6 +455,7 @@
|
||||||
"lists.subheading": "Dine lister",
|
"lists.subheading": "Dine lister",
|
||||||
"load_pending": "{count, plural,one {# ny gjenstand} other {# nye gjenstander}}",
|
"load_pending": "{count, plural,one {# ny gjenstand} other {# nye gjenstander}}",
|
||||||
"loading_indicator.label": "Laster…",
|
"loading_indicator.label": "Laster…",
|
||||||
|
"media_gallery.hide": "Skjul",
|
||||||
"moved_to_account_banner.text": "Din konto {disabledAccount} er for øyeblikket deaktivert fordi du flyttet til {movedToAccount}.",
|
"moved_to_account_banner.text": "Din konto {disabledAccount} er for øyeblikket deaktivert fordi du flyttet til {movedToAccount}.",
|
||||||
"mute_modal.hide_from_notifications": "Ikke varsle",
|
"mute_modal.hide_from_notifications": "Ikke varsle",
|
||||||
"mute_modal.hide_options": "Skjul alternativer",
|
"mute_modal.hide_options": "Skjul alternativer",
|
||||||
|
@ -497,10 +500,20 @@
|
||||||
"notification.favourite": "{name} favorittmarkerte innlegget ditt",
|
"notification.favourite": "{name} favorittmarkerte innlegget ditt",
|
||||||
"notification.follow": "{name} fulgte deg",
|
"notification.follow": "{name} fulgte deg",
|
||||||
"notification.follow_request": "{name} har bedt om å få følge deg",
|
"notification.follow_request": "{name} har bedt om å få følge deg",
|
||||||
|
"notification.label.mention": "Nevn",
|
||||||
|
"notification.label.reply": "Svar",
|
||||||
|
"notification.mention": "Nevn",
|
||||||
|
"notification.mentioned_you": "{name} nevnte deg",
|
||||||
|
"notification.moderation-warning.learn_more": "Lær mer",
|
||||||
"notification.own_poll": "Avstemningen din er ferdig",
|
"notification.own_poll": "Avstemningen din er ferdig",
|
||||||
"notification.reblog": "{name} fremhevet ditt innlegg",
|
"notification.reblog": "{name} fremhevet ditt innlegg",
|
||||||
|
"notification.relationships_severance_event.learn_more": "Lær mer",
|
||||||
"notification.status": "{name} la nettopp ut",
|
"notification.status": "{name} la nettopp ut",
|
||||||
"notification.update": "{name} redigerte et innlegg",
|
"notification.update": "{name} redigerte et innlegg",
|
||||||
|
"notification_requests.accept": "Aksepter",
|
||||||
|
"notification_requests.dismiss": "Lukk",
|
||||||
|
"notification_requests.edit_selection": "Redigér",
|
||||||
|
"notification_requests.exit_selection": "Ferdig",
|
||||||
"notification_requests.minimize_banner": "Minimer banneret for filtrerte varsler",
|
"notification_requests.minimize_banner": "Minimer banneret for filtrerte varsler",
|
||||||
"notification_requests.view": "Vis varsler",
|
"notification_requests.view": "Vis varsler",
|
||||||
"notifications.clear": "Fjern varsler",
|
"notifications.clear": "Fjern varsler",
|
||||||
|
@ -513,6 +526,7 @@
|
||||||
"notifications.column_settings.filter_bar.category": "Hurtigfiltreringslinje",
|
"notifications.column_settings.filter_bar.category": "Hurtigfiltreringslinje",
|
||||||
"notifications.column_settings.follow": "Nye følgere:",
|
"notifications.column_settings.follow": "Nye følgere:",
|
||||||
"notifications.column_settings.follow_request": "Nye følgerforespørsler:",
|
"notifications.column_settings.follow_request": "Nye følgerforespørsler:",
|
||||||
|
"notifications.column_settings.group": "Gruppe",
|
||||||
"notifications.column_settings.mention": "Nevnt:",
|
"notifications.column_settings.mention": "Nevnt:",
|
||||||
"notifications.column_settings.poll": "Avstemningsresultater:",
|
"notifications.column_settings.poll": "Avstemningsresultater:",
|
||||||
"notifications.column_settings.push": "Push varsler",
|
"notifications.column_settings.push": "Push varsler",
|
||||||
|
@ -678,6 +692,7 @@
|
||||||
"report_notification.attached_statuses": "{count, plural,one {{count} innlegg} other {{count} innlegg}} vedlagt",
|
"report_notification.attached_statuses": "{count, plural,one {{count} innlegg} other {{count} innlegg}} vedlagt",
|
||||||
"report_notification.categories.legal": "Juridiske",
|
"report_notification.categories.legal": "Juridiske",
|
||||||
"report_notification.categories.other": "Annet",
|
"report_notification.categories.other": "Annet",
|
||||||
|
"report_notification.categories.other_sentence": "annet",
|
||||||
"report_notification.categories.spam": "Søppelpost",
|
"report_notification.categories.spam": "Søppelpost",
|
||||||
"report_notification.categories.violation": "Regelbrudd",
|
"report_notification.categories.violation": "Regelbrudd",
|
||||||
"report_notification.open": "Åpne rapport",
|
"report_notification.open": "Åpne rapport",
|
||||||
|
|
|
@ -445,6 +445,7 @@
|
||||||
"relative_time.seconds": "fa {number}s",
|
"relative_time.seconds": "fa {number}s",
|
||||||
"relative_time.today": "uèi",
|
"relative_time.today": "uèi",
|
||||||
"reply_indicator.cancel": "Anullar",
|
"reply_indicator.cancel": "Anullar",
|
||||||
|
"reply_indicator.poll": "Sondatge",
|
||||||
"report.block": "Blocar",
|
"report.block": "Blocar",
|
||||||
"report.categories.other": "Autre",
|
"report.categories.other": "Autre",
|
||||||
"report.categories.spam": "Messatge indesirable",
|
"report.categories.spam": "Messatge indesirable",
|
||||||
|
|
|
@ -39,7 +39,7 @@
|
||||||
"account.no_bio": "ਕੋਈ ਵਰਣਨ ਨਹੀਂ ਦਿੱਤਾ।",
|
"account.no_bio": "ਕੋਈ ਵਰਣਨ ਨਹੀਂ ਦਿੱਤਾ।",
|
||||||
"account.open_original_page": "ਅਸਲ ਸਫ਼ੇ ਨੂੰ ਖੋਲ੍ਹੋ",
|
"account.open_original_page": "ਅਸਲ ਸਫ਼ੇ ਨੂੰ ਖੋਲ੍ਹੋ",
|
||||||
"account.posts": "ਪੋਸਟਾਂ",
|
"account.posts": "ਪੋਸਟਾਂ",
|
||||||
"account.posts_with_replies": "ਪੋਸਤਾਂ ਅਤੇ ਜਵਾਬ",
|
"account.posts_with_replies": "ਪੋਸਟਾਂ ਅਤੇ ਜਵਾਬ",
|
||||||
"account.report": "{name} ਬਾਰੇ ਰਿਪੋਰਟ ਕਰੋ",
|
"account.report": "{name} ਬਾਰੇ ਰਿਪੋਰਟ ਕਰੋ",
|
||||||
"account.requested": "ਮਨਜ਼ੂਰੀ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ। ਫ਼ਾਲੋ ਬੇਨਤੀਆਂ ਨੂੰ ਰੱਦ ਕਰਨ ਲਈ ਕਲਿੱਕ ਕਰੋ",
|
"account.requested": "ਮਨਜ਼ੂਰੀ ਕੀਤੀ ਜਾ ਰਹੀ ਹੈ। ਫ਼ਾਲੋ ਬੇਨਤੀਆਂ ਨੂੰ ਰੱਦ ਕਰਨ ਲਈ ਕਲਿੱਕ ਕਰੋ",
|
||||||
"account.requested_follow": "{name} ਨੇ ਤੁਹਾਨੂੰ ਫ਼ਾਲੋ ਕਰਨ ਦੀ ਬੇਨਤੀ ਕੀਤੀ ਹੈ",
|
"account.requested_follow": "{name} ਨੇ ਤੁਹਾਨੂੰ ਫ਼ਾਲੋ ਕਰਨ ਦੀ ਬੇਨਤੀ ਕੀਤੀ ਹੈ",
|
||||||
|
@ -63,6 +63,7 @@
|
||||||
"block_modal.show_more": "ਵੱਧ ਦਿਖਾਓ",
|
"block_modal.show_more": "ਵੱਧ ਦਿਖਾਓ",
|
||||||
"block_modal.title": "ਵਰਤੋਂਕਾਰ ਉੱਤੇ ਪਾਬੰਦੀ ਲਾਉਣੀ ਹੈ?",
|
"block_modal.title": "ਵਰਤੋਂਕਾਰ ਉੱਤੇ ਪਾਬੰਦੀ ਲਾਉਣੀ ਹੈ?",
|
||||||
"boost_modal.reblog": "ਪੋਸਟ ਨੂੰ ਬੂਸਟ ਕਰਨਾ ਹੈ?",
|
"boost_modal.reblog": "ਪੋਸਟ ਨੂੰ ਬੂਸਟ ਕਰਨਾ ਹੈ?",
|
||||||
|
"bundle_column_error.copy_stacktrace": "ਗਲਤੀ ਰਿਪੋਰਟ ਨੂੰ ਕਾਪੀ ਕਰੋ",
|
||||||
"bundle_column_error.error.title": "ਓਹ ਹੋ!",
|
"bundle_column_error.error.title": "ਓਹ ਹੋ!",
|
||||||
"bundle_column_error.network.title": "ਨੈੱਟਵਰਕ ਦੀ ਸਮੱਸਿਆ",
|
"bundle_column_error.network.title": "ਨੈੱਟਵਰਕ ਦੀ ਸਮੱਸਿਆ",
|
||||||
"bundle_column_error.retry": "ਮੁੜ-ਕੋਸ਼ਿਸ਼ ਕਰੋ",
|
"bundle_column_error.retry": "ਮੁੜ-ਕੋਸ਼ਿਸ਼ ਕਰੋ",
|
||||||
|
@ -199,9 +200,12 @@
|
||||||
"filter_modal.select_filter.expired": "ਮਿਆਦ ਪੁੱਗੀ",
|
"filter_modal.select_filter.expired": "ਮਿਆਦ ਪੁੱਗੀ",
|
||||||
"filter_modal.select_filter.prompt_new": "ਨਵੀਂ ਕੈਟਾਗਰੀ: {name}",
|
"filter_modal.select_filter.prompt_new": "ਨਵੀਂ ਕੈਟਾਗਰੀ: {name}",
|
||||||
"filter_modal.select_filter.search": "ਖੋਜੋ ਜਾਂ ਬਣਾਓ",
|
"filter_modal.select_filter.search": "ਖੋਜੋ ਜਾਂ ਬਣਾਓ",
|
||||||
|
"filter_modal.select_filter.title": "ਇਸ ਪੋਸਟ ਨੂੰ ਫਿਲਟਰ ਕਰੋ",
|
||||||
|
"filter_modal.title.status": "ਇੱਕ ਪੋਸਟ ਨੂੰ ਫਿਲਟਰ ਕਰੋ",
|
||||||
"firehose.all": "ਸਭ",
|
"firehose.all": "ਸਭ",
|
||||||
"firehose.local": "ਇਹ ਸਰਵਰ",
|
"firehose.local": "ਇਹ ਸਰਵਰ",
|
||||||
"firehose.remote": "ਹੋਰ ਸਰਵਰ",
|
"firehose.remote": "ਹੋਰ ਸਰਵਰ",
|
||||||
|
"follow_request.authorize": "ਪਰਮਾਣਿਤ",
|
||||||
"follow_request.reject": "ਰੱਦ ਕਰੋ",
|
"follow_request.reject": "ਰੱਦ ਕਰੋ",
|
||||||
"follow_suggestions.dismiss": "ਮੁੜ ਨਾ ਵੇਖਾਓ",
|
"follow_suggestions.dismiss": "ਮੁੜ ਨਾ ਵੇਖਾਓ",
|
||||||
"follow_suggestions.personalized_suggestion": "ਨਿੱਜੀ ਸੁਝਾਅ",
|
"follow_suggestions.personalized_suggestion": "ਨਿੱਜੀ ਸੁਝਾਅ",
|
||||||
|
@ -234,6 +238,7 @@
|
||||||
"hints.profiles.see_more_followers": "{domain} ਉੱਤੇ ਹੋਰ ਫ਼ਾਲੋਅਰ ਵੇਖੋ",
|
"hints.profiles.see_more_followers": "{domain} ਉੱਤੇ ਹੋਰ ਫ਼ਾਲੋਅਰ ਵੇਖੋ",
|
||||||
"hints.profiles.see_more_follows": "{domain} ਉੱਤੇ ਹੋਰ ਫ਼ਾਲੋ ਨੂੰ ਵੇਖੋ",
|
"hints.profiles.see_more_follows": "{domain} ਉੱਤੇ ਹੋਰ ਫ਼ਾਲੋ ਨੂੰ ਵੇਖੋ",
|
||||||
"hints.profiles.see_more_posts": "{domain} ਉੱਤੇ ਹੋਰ ਪੋਸਟਾਂ ਨੂੰ ਵੇਖੋ",
|
"hints.profiles.see_more_posts": "{domain} ਉੱਤੇ ਹੋਰ ਪੋਸਟਾਂ ਨੂੰ ਵੇਖੋ",
|
||||||
|
"hints.threads.see_more": "{domain} ਤੋਂ ਹੋਰ ਜਵਾਬਾਂ ਨੂੰ ਵੇਖੋ",
|
||||||
"home.column_settings.show_reblogs": "ਬੂਸਟਾਂ ਨੂੰ ਵੇਖੋ",
|
"home.column_settings.show_reblogs": "ਬੂਸਟਾਂ ਨੂੰ ਵੇਖੋ",
|
||||||
"home.column_settings.show_replies": "ਜਵਾਬਾਂ ਨੂੰ ਵੇਖੋ",
|
"home.column_settings.show_replies": "ਜਵਾਬਾਂ ਨੂੰ ਵੇਖੋ",
|
||||||
"home.hide_announcements": "ਐਲਾਨਾਂ ਨੂੰ ਓਹਲੇ ਕਰੋ",
|
"home.hide_announcements": "ਐਲਾਨਾਂ ਨੂੰ ਓਹਲੇ ਕਰੋ",
|
||||||
|
@ -260,6 +265,7 @@
|
||||||
"keyboard_shortcuts.down": "ਸੂਚੀ ਵਿੱਚ ਹੇਠਾਂ ਭੇਜੋ",
|
"keyboard_shortcuts.down": "ਸੂਚੀ ਵਿੱਚ ਹੇਠਾਂ ਭੇਜੋ",
|
||||||
"keyboard_shortcuts.enter": "ਪੋਸਟ ਨੂੰ ਖੋਲ੍ਹੋ",
|
"keyboard_shortcuts.enter": "ਪੋਸਟ ਨੂੰ ਖੋਲ੍ਹੋ",
|
||||||
"keyboard_shortcuts.favourite": "ਪੋਸਟ ਨੂੰ ਪਸੰਦ ਕਰੋ",
|
"keyboard_shortcuts.favourite": "ਪੋਸਟ ਨੂੰ ਪਸੰਦ ਕਰੋ",
|
||||||
|
"keyboard_shortcuts.favourites": "ਮਨਪਸੰਦ ਸੂਚੀ ਨੂੰ ਖੋਲ੍ਹੋ",
|
||||||
"keyboard_shortcuts.federated": "",
|
"keyboard_shortcuts.federated": "",
|
||||||
"keyboard_shortcuts.heading": "ਕੀਬੋਰਡ ਸ਼ਾਰਟਕੱਟ",
|
"keyboard_shortcuts.heading": "ਕੀਬੋਰਡ ਸ਼ਾਰਟਕੱਟ",
|
||||||
"keyboard_shortcuts.home": "ਮੁੱਖ-ਸਫ਼ਾ ਟਾਈਮ-ਲਾਈਨ ਨੂੰ ਖੋਲ੍ਹੋ",
|
"keyboard_shortcuts.home": "ਮੁੱਖ-ਸਫ਼ਾ ਟਾਈਮ-ਲਾਈਨ ਨੂੰ ਖੋਲ੍ਹੋ",
|
||||||
|
@ -285,6 +291,7 @@
|
||||||
"lightbox.close": "ਬੰਦ ਕਰੋ",
|
"lightbox.close": "ਬੰਦ ਕਰੋ",
|
||||||
"lightbox.next": "ਅਗਲੀ",
|
"lightbox.next": "ਅਗਲੀ",
|
||||||
"lightbox.previous": "ਪਿਛਲੀ",
|
"lightbox.previous": "ਪਿਛਲੀ",
|
||||||
|
"limited_account_hint.action": "ਪਰੋਫਾਈਲ ਨੂੰ ਕਿਵੇਂ ਵੀ ਵੇਖਾਓ",
|
||||||
"link_preview.author": "{name} ਵਲੋਂ",
|
"link_preview.author": "{name} ਵਲੋਂ",
|
||||||
"link_preview.more_from_author": "{name} ਵਲੋਂ ਹੋਰ",
|
"link_preview.more_from_author": "{name} ਵਲੋਂ ਹੋਰ",
|
||||||
"link_preview.shares": "{count, plural, one {{counter} ਪੋਸਟ} other {{counter} ਪੋਸਟਾਂ}}",
|
"link_preview.shares": "{count, plural, one {{counter} ਪੋਸਟ} other {{counter} ਪੋਸਟਾਂ}}",
|
||||||
|
@ -297,6 +304,7 @@
|
||||||
"lists.replies_policy.none": "ਕੋਈ ਨਹੀਂ",
|
"lists.replies_policy.none": "ਕੋਈ ਨਹੀਂ",
|
||||||
"loading_indicator.label": "ਲੋਡ ਹੋ ਰਿਹਾ ਹੈ…",
|
"loading_indicator.label": "ਲੋਡ ਹੋ ਰਿਹਾ ਹੈ…",
|
||||||
"media_gallery.hide": "ਲੁਕਾਓ",
|
"media_gallery.hide": "ਲੁਕਾਓ",
|
||||||
|
"mute_modal.hide_from_notifications": "ਨੋਟੀਫਿਕੇਸ਼ਨਾਂ ਵਿੱਚੋਂ ਲੁਕਾਓ",
|
||||||
"mute_modal.show_options": "ਚੋਣਾਂ ਨੂੰ ਵੇਖਾਓ",
|
"mute_modal.show_options": "ਚੋਣਾਂ ਨੂੰ ਵੇਖਾਓ",
|
||||||
"navigation_bar.about": "ਇਸ ਬਾਰੇ",
|
"navigation_bar.about": "ਇਸ ਬਾਰੇ",
|
||||||
"navigation_bar.administration": "ਪਰਸ਼ਾਸ਼ਨ",
|
"navigation_bar.administration": "ਪਰਸ਼ਾਸ਼ਨ",
|
||||||
|
@ -335,6 +343,8 @@
|
||||||
"notification.mentioned_you": "{name} ਨੇ ਤੁਹਾਡਾ ਜ਼ਿਕਰ ਕੀਤਾ",
|
"notification.mentioned_you": "{name} ਨੇ ਤੁਹਾਡਾ ਜ਼ਿਕਰ ਕੀਤਾ",
|
||||||
"notification.moderation-warning.learn_more": "ਹੋਰ ਜਾਣੋ",
|
"notification.moderation-warning.learn_more": "ਹੋਰ ਜਾਣੋ",
|
||||||
"notification.moderation_warning.action_disable": "ਤੁਹਾਡੇ ਖਾਤੇ ਨੂੰਅਸਮਰੱਥ ਕੀਤਾ ਹੈ।",
|
"notification.moderation_warning.action_disable": "ਤੁਹਾਡੇ ਖਾਤੇ ਨੂੰਅਸਮਰੱਥ ਕੀਤਾ ਹੈ।",
|
||||||
|
"notification.moderation_warning.action_silence": "ਤੁਹਾਡੇ ਖਾਤੇ ਨੂੰ ਸੀਮਿਤ ਕੀਤਾ ਗਿਆ ਹੈ।",
|
||||||
|
"notification.moderation_warning.action_suspend": "ਤੁਹਾਡੇ ਖਾਤੇ ਨੂੰ ਮੁਅੱਤਲ ਕੀਤਾ ਗਿਆ ਹੈ।",
|
||||||
"notification.reblog": "{name} boosted your status",
|
"notification.reblog": "{name} boosted your status",
|
||||||
"notification.relationships_severance_event.learn_more": "ਹੋਰ ਜਾਣੋ",
|
"notification.relationships_severance_event.learn_more": "ਹੋਰ ਜਾਣੋ",
|
||||||
"notification.status": "{name} ਨੇ ਹੁਣੇ ਪੋਸਟ ਕੀਤਾ",
|
"notification.status": "{name} ਨੇ ਹੁਣੇ ਪੋਸਟ ਕੀਤਾ",
|
||||||
|
@ -374,6 +384,11 @@
|
||||||
"notifications.policy.accept": "ਮਨਜ਼ੂਰ",
|
"notifications.policy.accept": "ਮਨਜ਼ੂਰ",
|
||||||
"notifications.policy.accept_hint": "ਨੋਟੀਫਿਕੇਸ਼ਨਾਂ ਵਿੱਚ ਵੇਖਾਓ",
|
"notifications.policy.accept_hint": "ਨੋਟੀਫਿਕੇਸ਼ਨਾਂ ਵਿੱਚ ਵੇਖਾਓ",
|
||||||
"notifications.policy.drop": "ਅਣਡਿੱਠਾ",
|
"notifications.policy.drop": "ਅਣਡਿੱਠਾ",
|
||||||
|
"notifications.policy.filter": "ਫਿਲਟਰ",
|
||||||
|
"notifications.policy.filter_new_accounts_title": "ਨਵੇਂ ਖਾਤੇ",
|
||||||
|
"notifications.policy.filter_not_followers_title": "ਲੋਕ ਤੁਹਾਨੂੰ ਫ਼ਾਲੋ ਨਹੀਂ ਕਰਦੇ",
|
||||||
|
"notifications.policy.filter_not_following_hint": "ਜਦ ਤੱਕ ਤੁਸੀਂ ਉਹਨਾਂ ਨੂੰ ਖੁਦ ਮਨਜ਼ੂਰੀ ਨਹੀਂ ਦਿੰਦੇ",
|
||||||
|
"notifications_permission_banner.enable": "ਡੈਸਕਟਾਪ ਸੂਚਨਾਵਾਂ ਸਮਰੱਥ ਕਰੋ",
|
||||||
"onboarding.actions.go_to_explore": "ਮੈਨੂੰ ਰੁਝਾਨ ਵੇਖਾਓ",
|
"onboarding.actions.go_to_explore": "ਮੈਨੂੰ ਰੁਝਾਨ ਵੇਖਾਓ",
|
||||||
"onboarding.actions.go_to_home": "ਮੇਰੀ ਮੁੱਖ ਫੀਡ ਉੱਤੇ ਲੈ ਜਾਓ",
|
"onboarding.actions.go_to_home": "ਮੇਰੀ ਮੁੱਖ ਫੀਡ ਉੱਤੇ ਲੈ ਜਾਓ",
|
||||||
"onboarding.follows.lead": "",
|
"onboarding.follows.lead": "",
|
||||||
|
@ -400,8 +415,12 @@
|
||||||
"poll.vote": "ਵੋਟ ਪਾਓ",
|
"poll.vote": "ਵੋਟ ਪਾਓ",
|
||||||
"poll.voted": "ਤੁਸੀਂ ਇਸ ਜਵਾਬ ਲਈ ਵੋਟ ਕੀਤਾ",
|
"poll.voted": "ਤੁਸੀਂ ਇਸ ਜਵਾਬ ਲਈ ਵੋਟ ਕੀਤਾ",
|
||||||
"privacy.change": "ਪੋਸਟ ਦੀ ਪਰਦੇਦਾਰੀ ਨੂੰ ਬਦਲੋ",
|
"privacy.change": "ਪੋਸਟ ਦੀ ਪਰਦੇਦਾਰੀ ਨੂੰ ਬਦਲੋ",
|
||||||
|
"privacy.direct.long": "ਪੋਸਟ ਵਿੱਚ ਜ਼ਿਕਰ ਕੀਤੇ ਹਰ ਕੋਈ",
|
||||||
|
"privacy.direct.short": "ਖਾਸ ਲੋਕ",
|
||||||
|
"privacy.private.long": "ਸਿਰਫ਼ ਤੁਹਾਡੇ ਫ਼ਾਲੋਅਰ ਹੀ",
|
||||||
"privacy.private.short": "ਫ਼ਾਲੋਅਰ",
|
"privacy.private.short": "ਫ਼ਾਲੋਅਰ",
|
||||||
"privacy.public.short": "ਜਨਤਕ",
|
"privacy.public.short": "ਜਨਤਕ",
|
||||||
|
"privacy_policy.last_updated": "ਆਖਰੀ ਵਾਰ {date} ਨੂੰ ਅੱਪਡੇਟ ਕੀਤਾ",
|
||||||
"privacy_policy.title": "ਪਰਦੇਦਾਰੀ ਨੀਤੀ",
|
"privacy_policy.title": "ਪਰਦੇਦਾਰੀ ਨੀਤੀ",
|
||||||
"recommended": "ਸਿਫ਼ਾਰਸ਼ੀ",
|
"recommended": "ਸਿਫ਼ਾਰਸ਼ੀ",
|
||||||
"refresh": "ਤਾਜ਼ਾ ਕਰੋ",
|
"refresh": "ਤਾਜ਼ਾ ਕਰੋ",
|
||||||
|
@ -429,9 +448,16 @@
|
||||||
"report.next": "ਅਗਲੀ",
|
"report.next": "ਅਗਲੀ",
|
||||||
"report.placeholder": "ਵਧੀਕ ਟਿੱਪਣੀਆਂ",
|
"report.placeholder": "ਵਧੀਕ ਟਿੱਪਣੀਆਂ",
|
||||||
"report.reasons.dislike": "ਮੈਨੂੰ ਇਹ ਪਸੰਦ ਨਹੀਂ ਹੈ",
|
"report.reasons.dislike": "ਮੈਨੂੰ ਇਹ ਪਸੰਦ ਨਹੀਂ ਹੈ",
|
||||||
|
"report.reasons.legal": "ਇਹ ਗ਼ੈਰ-ਕਨੂੰਨੀ ਹੈ",
|
||||||
|
"report.reasons.other": "ਇਹ ਕੁਝ ਹੋਰ ਹੈ",
|
||||||
"report.reasons.spam": "ਇਹ ਸਪੈਮ ਹੈ",
|
"report.reasons.spam": "ਇਹ ਸਪੈਮ ਹੈ",
|
||||||
|
"report.rules.subtitle": "ਲਾਗੂ ਹੋਣ ਵਾਲੇ ਸਾਰੇ ਚੁਣੋ",
|
||||||
|
"report.rules.title": "ਕਿਹੜੇ ਨਿਯਮਾਂ ਦਾ ਉਲੰਘਣ ਕੀਤਾ ਜਾ ਰਿਹਾ ਹੈ?",
|
||||||
|
"report.statuses.subtitle": "ਲਾਗੂ ਹੋਣ ਵਾਲੇ ਸਾਰੇ ਚੁਣੋ",
|
||||||
"report.submit": "ਭੇਜੋ",
|
"report.submit": "ਭੇਜੋ",
|
||||||
"report.target": "{target} ਰਿਪੋਰਟ",
|
"report.target": "{target} ਰਿਪੋਰਟ",
|
||||||
|
"report.thanks.title": "ਇਸ ਨੂੰ ਵੇਖਣਾ ਨਹੀਂ ਚਾਹੁੰਦੇ ਹੋ?",
|
||||||
|
"report.thanks.title_actionable": "ਰਿਪੋਰਟ ਕਰਨ ਲਈ ਧੰਨਵਾਦ ਹੈ। ਅਸੀਂ ਇਸ ਦੀ ਛਾਣਬੀਣ ਕਰਾਂਗੇ।",
|
||||||
"report.unfollow": "@{name} ਨੂੰ ਅਣ-ਫ਼ਾਲੋ ਕਰੋ",
|
"report.unfollow": "@{name} ਨੂੰ ਅਣ-ਫ਼ਾਲੋ ਕਰੋ",
|
||||||
"report_notification.attached_statuses": "{count, plural, one {# post} other {# posts}} attached",
|
"report_notification.attached_statuses": "{count, plural, one {# post} other {# posts}} attached",
|
||||||
"report_notification.categories.legal": "ਕਨੂੰਨੀ",
|
"report_notification.categories.legal": "ਕਨੂੰਨੀ",
|
||||||
|
@ -442,6 +468,7 @@
|
||||||
"report_notification.categories.violation": "ਨਿਯਮ ਦੀ ਉਲੰਘਣਾ",
|
"report_notification.categories.violation": "ਨਿਯਮ ਦੀ ਉਲੰਘਣਾ",
|
||||||
"report_notification.categories.violation_sentence": "ਨਿਯਮ ਦੀ ਉਲੰਘਣਾ",
|
"report_notification.categories.violation_sentence": "ਨਿਯਮ ਦੀ ਉਲੰਘਣਾ",
|
||||||
"report_notification.open": "ਰਿਪੋਰਟ ਨੂੰ ਖੋਲ੍ਹੋ",
|
"report_notification.open": "ਰਿਪੋਰਟ ਨੂੰ ਖੋਲ੍ਹੋ",
|
||||||
|
"search.no_recent_searches": "ਕੋਈ ਸੱਜਰੀ ਖੋਜ ਨਹੀਂ ਹੈ",
|
||||||
"search.placeholder": "ਖੋਜੋ",
|
"search.placeholder": "ਖੋਜੋ",
|
||||||
"search.quick_action.go_to_account": "ਪਰੋਫਾਈਲ {x} ਉੱਤੇ ਜਾਓ",
|
"search.quick_action.go_to_account": "ਪਰੋਫਾਈਲ {x} ਉੱਤੇ ਜਾਓ",
|
||||||
"search.quick_action.go_to_hashtag": "ਹੈਸ਼ਟੈਗ {x} ਉੱਤੇ ਜਾਓ",
|
"search.quick_action.go_to_hashtag": "ਹੈਸ਼ਟੈਗ {x} ਉੱਤੇ ਜਾਓ",
|
||||||
|
@ -477,31 +504,47 @@
|
||||||
"status.load_more": "ਹੋਰ ਦਿਖਾਓ",
|
"status.load_more": "ਹੋਰ ਦਿਖਾਓ",
|
||||||
"status.media.open": "ਖੋਲ੍ਹਣ ਲਈ ਕਲਿੱਕ ਕਰੋ",
|
"status.media.open": "ਖੋਲ੍ਹਣ ਲਈ ਕਲਿੱਕ ਕਰੋ",
|
||||||
"status.media.show": "ਵੇਖਾਉਣ ਲਈ ਕਲਿੱਕ ਕਰੋ",
|
"status.media.show": "ਵੇਖਾਉਣ ਲਈ ਕਲਿੱਕ ਕਰੋ",
|
||||||
|
"status.media_hidden": "ਮੀਡਿਆ ਲੁਕਵਾਂ ਹੈ",
|
||||||
"status.mention": "@{name} ਦਾ ਜ਼ਿਕਰ",
|
"status.mention": "@{name} ਦਾ ਜ਼ਿਕਰ",
|
||||||
"status.more": "ਹੋਰ",
|
"status.more": "ਹੋਰ",
|
||||||
|
"status.mute": "@{name} ਨੂੰ ਮੌਨ ਕਰੋ",
|
||||||
|
"status.mute_conversation": "ਗੱਲਬਾਤ ਨੂੰ ਮੌਨ ਕਰੋ",
|
||||||
"status.open": "ਇਹ ਪੋਸਟ ਨੂੰ ਫੈਲਾਓ",
|
"status.open": "ਇਹ ਪੋਸਟ ਨੂੰ ਫੈਲਾਓ",
|
||||||
"status.pin": "ਪਰੋਫਾਈਲ ਉੱਤੇ ਟੰਗੋ",
|
"status.pin": "ਪਰੋਫਾਈਲ ਉੱਤੇ ਟੰਗੋ",
|
||||||
"status.pinned": "ਟੰਗੀ ਹੋਈ ਪੋਸਟ",
|
"status.pinned": "ਟੰਗੀ ਹੋਈ ਪੋਸਟ",
|
||||||
"status.read_more": "ਹੋਰ ਪੜ੍ਹੋ",
|
"status.read_more": "ਹੋਰ ਪੜ੍ਹੋ",
|
||||||
"status.reblog": "ਵਧਾਓ",
|
"status.reblog": "ਵਧਾਓ",
|
||||||
|
"status.reblogged_by": "{name} ਨੇ ਬੂਸਟ ਕੀਤਾ",
|
||||||
"status.reblogs.empty": "No one has boosted this toot yet. When someone does, they will show up here.",
|
"status.reblogs.empty": "No one has boosted this toot yet. When someone does, they will show up here.",
|
||||||
|
"status.redraft": "ਹਟਾਓ ਤੇ ਮੁੜ-ਡਰਾਫਟ",
|
||||||
|
"status.remove_bookmark": "ਬੁੱਕਮਾਰਕ ਨੂੰ ਹਟਾਓ",
|
||||||
|
"status.replied_in_thread": "ਮਾਮਲੇ ਵਿੱਚ ਜਵਾਬ ਦਿਓ",
|
||||||
"status.replied_to": "{name} ਨੂੰ ਜਵਾਬ ਦਿੱਤਾ",
|
"status.replied_to": "{name} ਨੂੰ ਜਵਾਬ ਦਿੱਤਾ",
|
||||||
"status.reply": "ਜਵਾਬ ਦੇਵੋ",
|
"status.reply": "ਜਵਾਬ ਦੇਵੋ",
|
||||||
"status.replyAll": "ਮਾਮਲੇ ਨੂੰ ਜਵਾਬ ਦਿਓ",
|
"status.replyAll": "ਮਾਮਲੇ ਨੂੰ ਜਵਾਬ ਦਿਓ",
|
||||||
"status.report": "@{name} ਦੀ ਰਿਪੋਰਟ ਕਰੋ",
|
"status.report": "@{name} ਦੀ ਰਿਪੋਰਟ ਕਰੋ",
|
||||||
"status.sensitive_warning": "ਸੰਵੇਦਨਸ਼ੀਲ ਸਮੱਗਰੀ",
|
"status.sensitive_warning": "ਸੰਵੇਦਨਸ਼ੀਲ ਸਮੱਗਰੀ",
|
||||||
"status.share": "ਸਾਂਝਾ ਕਰੋ",
|
"status.share": "ਸਾਂਝਾ ਕਰੋ",
|
||||||
|
"status.show_less_all": "ਸਭ ਲਈ ਘੱਟ ਵੇਖਾਓ",
|
||||||
|
"status.show_more_all": "ਸਭ ਲਈ ਵੱਧ ਵੇਖਾਓ",
|
||||||
|
"status.show_original": "ਅਸਲ ਨੂੰ ਵੇਖਾਓ",
|
||||||
"status.title.with_attachments": "{user} ਨੇ {attachmentCount, plural,one {ਅਟੈਚਮੈਂਟ} other {{attachmentCount}ਅਟੈਚਮੈਂਟਾਂ}} ਪੋਸਟ ਕੀਤੀਆਂ",
|
"status.title.with_attachments": "{user} ਨੇ {attachmentCount, plural,one {ਅਟੈਚਮੈਂਟ} other {{attachmentCount}ਅਟੈਚਮੈਂਟਾਂ}} ਪੋਸਟ ਕੀਤੀਆਂ",
|
||||||
"status.translate": "ਉਲੱਥਾ ਕਰੋ",
|
"status.translate": "ਉਲੱਥਾ ਕਰੋ",
|
||||||
|
"status.translated_from_with": "{provider} ਵਰਤ ਕੇ {lang} ਤੋਂ ਅਨੁਵਾਦ ਕੀਤਾ",
|
||||||
|
"status.uncached_media_warning": "ਝਲਕ ਮੌਜੂਦ ਨਹੀਂ ਹੈ",
|
||||||
"status.unpin": "ਪਰੋਫਾਈਲ ਤੋਂ ਲਾਹੋ",
|
"status.unpin": "ਪਰੋਫਾਈਲ ਤੋਂ ਲਾਹੋ",
|
||||||
"subscribed_languages.save": "ਤਬਦੀਲੀਆਂ ਸੰਭਾਲੋ",
|
"subscribed_languages.save": "ਤਬਦੀਲੀਆਂ ਸੰਭਾਲੋ",
|
||||||
"tabs_bar.home": "ਘਰ",
|
"tabs_bar.home": "ਘਰ",
|
||||||
"tabs_bar.notifications": "ਸੂਚਨਾਵਾਂ",
|
"tabs_bar.notifications": "ਸੂਚਨਾਵਾਂ",
|
||||||
|
"time_remaining.days": "{number, plural, one {# ਦਿਨ} other {# ਦਿਨ}} ਬਾਕੀ",
|
||||||
|
"time_remaining.hours": "{number, plural, one {# ਘੰਟਾ} other {# ਘੰਟੇ}} ਬਾਕੀ",
|
||||||
|
"time_remaining.minutes": "{number, plural, one {# ਮਿੰਟ} other {# ਮਿੰਟ}} ਬਾਕੀ",
|
||||||
"trends.counter_by_accounts": "{count, plural, one {{counter} person} other {{counter} people}} in the past {days, plural, one {day} other {# days}}",
|
"trends.counter_by_accounts": "{count, plural, one {{counter} person} other {{counter} people}} in the past {days, plural, one {day} other {# days}}",
|
||||||
"trends.trending_now": "ਹੁਣ ਰੁਝਾਨ ਵਿੱਚ",
|
"trends.trending_now": "ਹੁਣ ਰੁਝਾਨ ਵਿੱਚ",
|
||||||
"units.short.billion": "{count}ਿਬ",
|
"units.short.billion": "{count}ਿਬ",
|
||||||
"units.short.million": "{count}ਮਿ",
|
"units.short.million": "{count}ਮਿ",
|
||||||
"units.short.thousand": "{count}ਹਜ਼ਾਰ",
|
"units.short.thousand": "{count}ਹਜ਼ਾਰ",
|
||||||
|
"upload_button.label": "ਚਿੱਤਰ, ਵੀਡੀਓ ਜਾਂ ਆਡੀਓ ਫਾਇਲ ਨੂੰ ਜੋੜੋ",
|
||||||
"upload_form.audio_description": "ਬੋਲ਼ੇ ਜਾਂ ਸੁਣਨ ਵਿੱਚ ਮੁਸ਼ਕਿਲ ਵਾਲੇ ਲੋਕਾਂ ਲਈ ਵੇਰਵੇ",
|
"upload_form.audio_description": "ਬੋਲ਼ੇ ਜਾਂ ਸੁਣਨ ਵਿੱਚ ਮੁਸ਼ਕਿਲ ਵਾਲੇ ਲੋਕਾਂ ਲਈ ਵੇਰਵੇ",
|
||||||
"upload_form.description": "ਅੰਨ੍ਹੇ ਜਾਂ ਦੇਖਣ ਲਈ ਮੁਸ਼ਕਲ ਵਾਲੇ ਲੋਕਾਂ ਲਈ ਵੇਰਵੇ",
|
"upload_form.description": "ਅੰਨ੍ਹੇ ਜਾਂ ਦੇਖਣ ਲਈ ਮੁਸ਼ਕਲ ਵਾਲੇ ਲੋਕਾਂ ਲਈ ਵੇਰਵੇ",
|
||||||
"upload_form.edit": "ਸੋਧ",
|
"upload_form.edit": "ਸੋਧ",
|
||||||
|
@ -519,6 +562,8 @@
|
||||||
"video.expand": "ਵੀਡੀਓ ਨੂੰ ਫੈਲਾਓ",
|
"video.expand": "ਵੀਡੀਓ ਨੂੰ ਫੈਲਾਓ",
|
||||||
"video.fullscreen": "ਪੂਰੀ ਸਕਰੀਨ",
|
"video.fullscreen": "ਪੂਰੀ ਸਕਰੀਨ",
|
||||||
"video.hide": "ਵੀਡੀਓ ਨੂੰ ਲੁਕਾਓ",
|
"video.hide": "ਵੀਡੀਓ ਨੂੰ ਲੁਕਾਓ",
|
||||||
|
"video.mute": "ਆਵਾਜ਼ ਨੂੰ ਬੰਦ ਕਰੋ",
|
||||||
"video.pause": "ਠਹਿਰੋ",
|
"video.pause": "ਠਹਿਰੋ",
|
||||||
"video.play": "ਚਲਾਓ"
|
"video.play": "ਚਲਾਓ",
|
||||||
|
"video.unmute": "ਆਵਾਜ਼ ਨੂੰ ਸੁਣਾਓ"
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
"about.not_available": "Ta informacja nie została udostępniona na tym serwerze.",
|
"about.not_available": "Ta informacja nie została udostępniona na tym serwerze.",
|
||||||
"about.powered_by": "Zdecentralizowane media społecznościowe napędzane przez {mastodon}",
|
"about.powered_by": "Zdecentralizowane media społecznościowe napędzane przez {mastodon}",
|
||||||
"about.rules": "Regulamin serwera",
|
"about.rules": "Regulamin serwera",
|
||||||
"account.account_note_header": "Twoja notatka",
|
"account.account_note_header": "Notatka",
|
||||||
"account.add_or_remove_from_list": "Dodaj lub usuń z list",
|
"account.add_or_remove_from_list": "Dodaj lub usuń z list",
|
||||||
"account.badges.bot": "Bot",
|
"account.badges.bot": "Bot",
|
||||||
"account.badges.group": "Grupa",
|
"account.badges.group": "Grupa",
|
||||||
|
@ -19,9 +19,9 @@
|
||||||
"account.block_domain": "Blokuj wszystko z {domain}",
|
"account.block_domain": "Blokuj wszystko z {domain}",
|
||||||
"account.block_short": "Zablokuj",
|
"account.block_short": "Zablokuj",
|
||||||
"account.blocked": "Zablokowany(-a)",
|
"account.blocked": "Zablokowany(-a)",
|
||||||
"account.cancel_follow_request": "Wycofaj żądanie obserwowania",
|
"account.cancel_follow_request": "Nie obserwuj",
|
||||||
"account.copy": "Skopiuj odnośnik do profilu",
|
"account.copy": "Skopiuj link do profilu",
|
||||||
"account.direct": "Prywatna wzmianka @{name}",
|
"account.direct": "Napisz bezpośrednio do @{name}",
|
||||||
"account.disable_notifications": "Przestań powiadamiać mnie o wpisach @{name}",
|
"account.disable_notifications": "Przestań powiadamiać mnie o wpisach @{name}",
|
||||||
"account.domain_blocked": "Ukryto domenę",
|
"account.domain_blocked": "Ukryto domenę",
|
||||||
"account.edit_profile": "Edytuj profil",
|
"account.edit_profile": "Edytuj profil",
|
||||||
|
@ -31,7 +31,7 @@
|
||||||
"account.featured_tags.last_status_never": "Brak postów",
|
"account.featured_tags.last_status_never": "Brak postów",
|
||||||
"account.featured_tags.title": "Polecane hasztagi {name}",
|
"account.featured_tags.title": "Polecane hasztagi {name}",
|
||||||
"account.follow": "Obserwuj",
|
"account.follow": "Obserwuj",
|
||||||
"account.follow_back": "Obserwuj wzajemnie",
|
"account.follow_back": "Również obserwuj",
|
||||||
"account.followers": "Obserwujący",
|
"account.followers": "Obserwujący",
|
||||||
"account.followers.empty": "Nikt jeszcze nie obserwuje tego użytkownika.",
|
"account.followers.empty": "Nikt jeszcze nie obserwuje tego użytkownika.",
|
||||||
"account.followers_counter": "{count, plural, one {{counter} obserwujący} few {{counter} obserwujących} many {{counter} obserwujących} other {{counter} obserwujących}}",
|
"account.followers_counter": "{count, plural, one {{counter} obserwujący} few {{counter} obserwujących} many {{counter} obserwujących} other {{counter} obserwujących}}",
|
||||||
|
@ -52,35 +52,35 @@
|
||||||
"account.mute_notifications_short": "Wycisz powiadomienia",
|
"account.mute_notifications_short": "Wycisz powiadomienia",
|
||||||
"account.mute_short": "Wycisz",
|
"account.mute_short": "Wycisz",
|
||||||
"account.muted": "Wyciszony",
|
"account.muted": "Wyciszony",
|
||||||
"account.mutual": "Przyjaciele",
|
"account.mutual": "Znajomi",
|
||||||
"account.no_bio": "Brak opisu.",
|
"account.no_bio": "Brak opisu.",
|
||||||
"account.open_original_page": "Otwórz stronę oryginalną",
|
"account.open_original_page": "Otwórz stronę oryginalną",
|
||||||
"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}",
|
||||||
"account.requested": "Oczekująca prośba, kliknij aby anulować",
|
"account.requested": "Oczekująca prośba, kliknij aby anulować",
|
||||||
"account.requested_follow": "{name} chce zaobserwować twój profil",
|
"account.requested_follow": "{name} chce cię zaobserwować",
|
||||||
"account.share": "Udostępnij profil @{name}",
|
"account.share": "Udostępnij profil @{name}",
|
||||||
"account.show_reblogs": "Pokazuj podbicia od @{name}",
|
"account.show_reblogs": "Pokazuj podbicia od @{name}",
|
||||||
"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": "Odblokuj",
|
"account.unblock_short": "Odblokuj",
|
||||||
"account.unendorse": "Przestań polecać",
|
"account.unendorse": "Nie wyświetlaj w profilu",
|
||||||
"account.unfollow": "Przestań obserwować",
|
"account.unfollow": "Nie obserwuj",
|
||||||
"account.unmute": "Cofnij wyciszenie @{name}",
|
"account.unmute": "Nie wyciszaj @{name}",
|
||||||
"account.unmute_notifications_short": "Wyłącz wyciszenie powiadomień",
|
"account.unmute_notifications_short": "Nie wyciszaj powiadomień",
|
||||||
"account.unmute_short": "Włącz dźwięki",
|
"account.unmute_short": "Nie wyciszaj",
|
||||||
"account_note.placeholder": "Naciśnij aby dodać notatkę",
|
"account_note.placeholder": "Kliknij, aby dodać notatkę",
|
||||||
"admin.dashboard.daily_retention": "Wskaźnik utrzymania użytkowników po dniach od rejestracji",
|
"admin.dashboard.daily_retention": "Wskaźnik utrzymania użytkowników po dniach od rejestracji",
|
||||||
"admin.dashboard.monthly_retention": "Wskaźnik utrzymania użytkowników po miesiącach od rejestracji",
|
"admin.dashboard.monthly_retention": "Wskaźnik utrzymania użytkowników po miesiącach od rejestracji",
|
||||||
"admin.dashboard.retention.average": "Średnia",
|
"admin.dashboard.retention.average": "Średnia",
|
||||||
"admin.dashboard.retention.cohort": "Miesiąc rejestracji",
|
"admin.dashboard.retention.cohort": "Miesiąc rejestracji",
|
||||||
"admin.dashboard.retention.cohort_size": "Nowi użytkownicy",
|
"admin.dashboard.retention.cohort_size": "Nowi użytkownicy",
|
||||||
"admin.impact_report.instance_accounts": "Usuniętych profili kont",
|
"admin.impact_report.instance_accounts": "Profile kont, które zostaną usunięte",
|
||||||
"admin.impact_report.instance_followers": "Obserwujący, których straciliby nasi użytkownicy",
|
"admin.impact_report.instance_followers": "Obserwujący, których straciliby nasi użytkownicy",
|
||||||
"admin.impact_report.instance_follows": "Obserwujący, których straciliby ich użytkownicy",
|
"admin.impact_report.instance_follows": "Obserwujący, których straciliby ich użytkownicy",
|
||||||
"admin.impact_report.title": "Podsumowanie wpływu",
|
"admin.impact_report.title": "Podsumowanie zmian",
|
||||||
"alert.rate_limited.message": "Spróbuj ponownie po {retry_time, time, medium}.",
|
"alert.rate_limited.message": "Spróbuj ponownie po {retry_time, time, medium}.",
|
||||||
"alert.rate_limited.title": "Ograniczenie liczby zapytań",
|
"alert.rate_limited.title": "Ograniczenie liczby zapytań",
|
||||||
"alert.unexpected.message": "Wystąpił nieoczekiwany błąd.",
|
"alert.unexpected.message": "Wystąpił nieoczekiwany błąd.",
|
||||||
|
@ -89,25 +89,25 @@
|
||||||
"announcement.announcement": "Ogłoszenie",
|
"announcement.announcement": "Ogłoszenie",
|
||||||
"attachments_list.unprocessed": "(nieprzetworzone)",
|
"attachments_list.unprocessed": "(nieprzetworzone)",
|
||||||
"audio.hide": "Ukryj dźwięk",
|
"audio.hide": "Ukryj dźwięk",
|
||||||
"block_modal.remote_users_caveat": "Poprosimy serwer {domain} o uszanowanie twojej decyzji. Zgodność nie jest jednak gwarantowana, bo niektóre serwery mogą inaczej obsługiwać blokowanie. Wpisy publiczne mogą być widoczne dla niezalogowanych użytkowników.",
|
"block_modal.remote_users_caveat": "Poprosimy serwer {domain} o uszanowanie twojej decyzji. Nie jest to jednak gwarantowane, bo niektóre serwery mogą obsługiwać blokady w inny sposób. Publiczne wpisy mogą być nadal widoczne dla niezalogowanych użytkowników.",
|
||||||
"block_modal.show_less": "Pokaż mniej",
|
"block_modal.show_less": "Pokaż mniej",
|
||||||
"block_modal.show_more": "Pokaż więcej",
|
"block_modal.show_more": "Pokaż więcej",
|
||||||
"block_modal.they_cant_mention": "Użytkownik nie może Cię obserwować ani dodawać wzmianek o Tobie.",
|
"block_modal.they_cant_mention": "Nie może cię wzmiankować ani obserwować.",
|
||||||
"block_modal.they_cant_see_posts": "Użytkownik nie będzie widzieć Twoich wpisów, a Ty jego.",
|
"block_modal.they_cant_see_posts": "Nie zobaczycie wzajemnie swoich wpisów.",
|
||||||
"block_modal.they_will_know": "Użytkownik będzie wiedział, że jest zablokowany.",
|
"block_modal.they_will_know": "Zobaczy informację o blokadzie.",
|
||||||
"block_modal.title": "Zablokować użytkownika?",
|
"block_modal.title": "Zablokować?",
|
||||||
"block_modal.you_wont_see_mentions": "Nie zobaczysz wpisów, które wspominają tego użytkownika.",
|
"block_modal.you_wont_see_mentions": "Nie zobaczysz wpisów, które zawierają wzmianki o tej osobie.",
|
||||||
"boost_modal.combo": "Naciśnij {combo}, aby pominąć to następnym razem",
|
"boost_modal.combo": "Możesz kliknąć {combo}, aby pominąć tę czynność następnym razem",
|
||||||
"boost_modal.reblog": "Podbić wpis?",
|
"boost_modal.reblog": "Podbić wpis?",
|
||||||
"boost_modal.undo_reblog": "Cofnąć podbicie?",
|
"boost_modal.undo_reblog": "Cofnąć podbicie?",
|
||||||
"bundle_column_error.copy_stacktrace": "Skopiuj raport o błędzie",
|
"bundle_column_error.copy_stacktrace": "Skopiuj raport o błędzie",
|
||||||
"bundle_column_error.error.body": "Nie można zrenderować żądanej strony. Może to być spowodowane błędem w naszym kodzie lub problemami z kompatybilnością przeglądarki.",
|
"bundle_column_error.error.body": "Nie udało się wyświetlić tej strony. Może to być spowodowane błędem w naszym kodzie lub niezgodnością przeglądarki.",
|
||||||
"bundle_column_error.error.title": "O nie!",
|
"bundle_column_error.error.title": "O nie!",
|
||||||
"bundle_column_error.network.body": "Wystąpił błąd podczas próby załadowania tej strony. Może to być spowodowane tymczasowym problemem z połączeniem z internetem lub serwerem.",
|
"bundle_column_error.network.body": "Wystąpił błąd podczas próby wczytania tej strony. Może to być spowodowane tymczasowym problemem z połączeniem internetowym lub serwerem.",
|
||||||
"bundle_column_error.network.title": "Błąd sieci",
|
"bundle_column_error.network.title": "Błąd sieci",
|
||||||
"bundle_column_error.retry": "Spróbuj ponownie",
|
"bundle_column_error.retry": "Spróbuj ponownie",
|
||||||
"bundle_column_error.return": "Wróć do strony głównej",
|
"bundle_column_error.return": "Wróć do strony głównej",
|
||||||
"bundle_column_error.routing.body": "Żądana strona nie została znaleziona. Czy na pewno adres URL w pasku adresu jest poprawny?",
|
"bundle_column_error.routing.body": "Nie można odnaleźć tej strony. Czy URL w pasku adresu na pewno jest prawidłowy?",
|
||||||
"bundle_column_error.routing.title": "404",
|
"bundle_column_error.routing.title": "404",
|
||||||
"bundle_modal_error.close": "Zamknij",
|
"bundle_modal_error.close": "Zamknij",
|
||||||
"bundle_modal_error.message": "Coś poszło nie tak podczas ładowania tego składnika.",
|
"bundle_modal_error.message": "Coś poszło nie tak podczas ładowania tego składnika.",
|
||||||
|
@ -118,18 +118,18 @@
|
||||||
"closed_registrations_modal.preamble": "Mastodon jest zdecentralizowany, więc bez względu na to, gdzie się zarejestrujesz, będziesz w stanie obserwować i wchodzić w interakcje z innymi osobami na tym serwerze. Możesz nawet uruchomić własny serwer!",
|
"closed_registrations_modal.preamble": "Mastodon jest zdecentralizowany, więc bez względu na to, gdzie się zarejestrujesz, będziesz w stanie obserwować i wchodzić w interakcje z innymi osobami na tym serwerze. Możesz nawet uruchomić własny serwer!",
|
||||||
"closed_registrations_modal.title": "Rejestracja na Mastodonie",
|
"closed_registrations_modal.title": "Rejestracja na Mastodonie",
|
||||||
"column.about": "O serwerze",
|
"column.about": "O serwerze",
|
||||||
"column.blocks": "Zablokowani użytkownicy",
|
"column.blocks": "Zablokowani",
|
||||||
"column.bookmarks": "Zakładki",
|
"column.bookmarks": "Zakładki",
|
||||||
"column.community": "Lokalna oś czasu",
|
"column.community": "Lokalna oś czasu",
|
||||||
"column.direct": "Prywatne wzmianki",
|
"column.direct": "Wzmianki bezpośrednie",
|
||||||
"column.directory": "Przeglądaj profile",
|
"column.directory": "Przeglądaj profile",
|
||||||
"column.domain_blocks": "Ukryte domeny",
|
"column.domain_blocks": "Zablokowane domeny",
|
||||||
"column.favourites": "Ulubione",
|
"column.favourites": "Ulubione",
|
||||||
"column.firehose": "Kanały na żywo",
|
"column.firehose": "Aktualności",
|
||||||
"column.follow_requests": "Prośby o obserwację",
|
"column.follow_requests": "Prośby o obserwację",
|
||||||
"column.home": "Strona główna",
|
"column.home": "Strona główna",
|
||||||
"column.lists": "Listy",
|
"column.lists": "Listy",
|
||||||
"column.mutes": "Wyciszeni użytkownicy",
|
"column.mutes": "Wyciszeni",
|
||||||
"column.notifications": "Powiadomienia",
|
"column.notifications": "Powiadomienia",
|
||||||
"column.pins": "Przypięte wpisy",
|
"column.pins": "Przypięte wpisy",
|
||||||
"column.public": "Globalna oś czasu",
|
"column.public": "Globalna oś czasu",
|
||||||
|
@ -139,32 +139,32 @@
|
||||||
"column_header.moveRight_settings": "Przesuń kolumnę w prawo",
|
"column_header.moveRight_settings": "Przesuń kolumnę w prawo",
|
||||||
"column_header.pin": "Przypnij",
|
"column_header.pin": "Przypnij",
|
||||||
"column_header.show_settings": "Pokaż ustawienia",
|
"column_header.show_settings": "Pokaż ustawienia",
|
||||||
"column_header.unpin": "Cofnij przypięcie",
|
"column_header.unpin": "Odepnij",
|
||||||
"column_subheading.settings": "Ustawienia",
|
"column_subheading.settings": "Ustawienia",
|
||||||
"community.column_settings.local_only": "Tylko Lokalne",
|
"community.column_settings.local_only": "Tylko lokalne",
|
||||||
"community.column_settings.media_only": "Tylko multimedia",
|
"community.column_settings.media_only": "Tylko multimedia",
|
||||||
"community.column_settings.remote_only": "Tylko Zdalne",
|
"community.column_settings.remote_only": "Tylko zdalne",
|
||||||
"compose.language.change": "Zmień język",
|
"compose.language.change": "Zmień język",
|
||||||
"compose.language.search": "Szukaj języków...",
|
"compose.language.search": "Szukaj języków...",
|
||||||
"compose.published.body": "Opublikowano post.",
|
"compose.published.body": "Wpis został opublikowany.",
|
||||||
"compose.published.open": "Otwórz",
|
"compose.published.open": "Otwórz",
|
||||||
"compose.saved.body": "Post zapisany.",
|
"compose.saved.body": "Wpis został zapisany.",
|
||||||
"compose_form.direct_message_warning_learn_more": "Dowiedz się więcej",
|
"compose_form.direct_message_warning_learn_more": "Dowiedz się więcej",
|
||||||
"compose_form.encryption_warning": "Posty na Mastodon nie są szyfrowane end-to-end. Nie udostępniaj żadnych wrażliwych informacji przez Mastodon.",
|
"compose_form.encryption_warning": "Wpisy na Mastodon nie są szyfrowane end-to-end. Nie udostępniaj żadnych poufnych informacji za pośrednictwem Mastodon.",
|
||||||
"compose_form.hashtag_warning": "Ten wpis nie będzie widoczny pod podanymi hasztagami, ponieważ jest oznaczony jako niepubliczny. Tylko publiczne wpisy mogą zostać znalezione z użyciem hasztagów.",
|
"compose_form.hashtag_warning": "Ten wpis nie będzie wyświetlany pod żadnym hashtagiem, bo nie jest publiczny. Tylko publiczne wpisy mogą być wyszukiwane po hashtagach.",
|
||||||
"compose_form.lock_disclaimer": "Twoje konto nie jest {locked}. Każdy, kto Cię obserwuje, może wyświetlać Twoje wpisy przeznaczone tylko dla obserwujących.",
|
"compose_form.lock_disclaimer": "Twoje konto nie jest {locked}. Każdy może cię obserwować, aby zobaczyć twoje wpisy tylko dla obserwujących.",
|
||||||
"compose_form.lock_disclaimer.lock": "zablokowane",
|
"compose_form.lock_disclaimer.lock": "zablokowane",
|
||||||
"compose_form.placeholder": "Co chodzi ci po głowie?",
|
"compose_form.placeholder": "Co ci chodzi po głowie?",
|
||||||
"compose_form.poll.duration": "Czas trwania głosowania",
|
"compose_form.poll.duration": "Czas trwania ankiety",
|
||||||
"compose_form.poll.multiple": "Wielokrotny wybór",
|
"compose_form.poll.multiple": "Możliwość wielokrotnego wyboru",
|
||||||
"compose_form.poll.option_placeholder": "Opcja {number}",
|
"compose_form.poll.option_placeholder": "Opcja {number}",
|
||||||
"compose_form.poll.single": "Wybierz jedną",
|
"compose_form.poll.single": "Wybierz jedną",
|
||||||
"compose_form.poll.switch_to_multiple": "Pozwól na wybranie wielu opcji",
|
"compose_form.poll.switch_to_multiple": "Pozwól na zaznaczenie kilku odpowiedzi",
|
||||||
"compose_form.poll.switch_to_single": "Pozwól na wybranie tylko jednej opcji",
|
"compose_form.poll.switch_to_single": "Pozwól na zaznaczenie tylko jednej odpowiedzi",
|
||||||
"compose_form.poll.type": "Styl",
|
"compose_form.poll.type": "Styl",
|
||||||
"compose_form.publish": "Opublikuj",
|
"compose_form.publish": "Opublikuj",
|
||||||
"compose_form.publish_form": "Opublikuj",
|
"compose_form.publish_form": "Nowy wpis",
|
||||||
"compose_form.reply": "Odpowiedz",
|
"compose_form.reply": "Skomentuj",
|
||||||
"compose_form.save_changes": "Aktualizuj",
|
"compose_form.save_changes": "Aktualizuj",
|
||||||
"compose_form.spoiler.marked": "Usuń ostrzeżenie o treści",
|
"compose_form.spoiler.marked": "Usuń ostrzeżenie o treści",
|
||||||
"compose_form.spoiler.unmarked": "Dodaj ostrzeżenie o treści",
|
"compose_form.spoiler.unmarked": "Dodaj ostrzeżenie o treści",
|
||||||
|
@ -175,72 +175,72 @@
|
||||||
"confirmations.delete.message": "Czy na pewno chcesz usunąć ten wpis?",
|
"confirmations.delete.message": "Czy na pewno chcesz usunąć ten wpis?",
|
||||||
"confirmations.delete.title": "Usunąć wpis?",
|
"confirmations.delete.title": "Usunąć wpis?",
|
||||||
"confirmations.delete_list.confirm": "Usuń",
|
"confirmations.delete_list.confirm": "Usuń",
|
||||||
"confirmations.delete_list.message": "Czy na pewno chcesz bezpowrotnie usunąć tą listę?",
|
"confirmations.delete_list.message": "Czy na pewno chcesz trwale usunąć tę listę?",
|
||||||
"confirmations.delete_list.title": "Usunąć listę?",
|
"confirmations.delete_list.title": "Usunąć listę?",
|
||||||
"confirmations.discard_edit_media.confirm": "Odrzuć",
|
"confirmations.discard_edit_media.confirm": "Odrzuć",
|
||||||
"confirmations.discard_edit_media.message": "Masz niezapisane zmiany w opisie lub podglądzie, odrzucić je mimo to?",
|
"confirmations.discard_edit_media.message": "Masz niezapisane zmiany w opisie lub podglądzie, odrzucić je mimo to?",
|
||||||
"confirmations.edit.confirm": "Edytuj",
|
"confirmations.edit.confirm": "Edytuj",
|
||||||
"confirmations.edit.message": "Edytowanie wpisu nadpisze wiadomość, którą obecnie piszesz. Czy na pewno chcesz to zrobić?",
|
"confirmations.edit.message": "Edytowanie wpisu nadpisze wiadomość, którą obecnie piszesz. Czy na pewno chcesz to zrobić?",
|
||||||
"confirmations.edit.title": "Nadpisać wpis?",
|
"confirmations.edit.title": "Zastąpić wpis?",
|
||||||
"confirmations.logout.confirm": "Wyloguj",
|
"confirmations.logout.confirm": "Wyloguj",
|
||||||
"confirmations.logout.message": "Czy na pewno chcesz się wylogować?",
|
"confirmations.logout.message": "Czy na pewno chcesz się wylogować?",
|
||||||
"confirmations.logout.title": "Wylogować?",
|
"confirmations.logout.title": "Wylogować?",
|
||||||
"confirmations.mute.confirm": "Wycisz",
|
"confirmations.mute.confirm": "Wycisz",
|
||||||
"confirmations.redraft.confirm": "Usuń i przeredaguj",
|
"confirmations.redraft.confirm": "Usuń i popraw",
|
||||||
"confirmations.redraft.message": "Czy na pewno chcesz usunąć i przeredagować ten wpis? Polubienia i podbicia zostaną utracone, a odpowiedzi do oryginalnego wpisu zostaną osierocone.",
|
"confirmations.redraft.message": "Czy na pewno chcesz usunąć i poprawić ten wpis? Polubienia, podbicia i komentarze pierwotnego wpisu zostaną utracone.",
|
||||||
"confirmations.redraft.title": "Usunąć i przeredagować wpis?",
|
"confirmations.redraft.title": "Usunąć i poprawić wpis?",
|
||||||
"confirmations.reply.confirm": "Odpowiedz",
|
"confirmations.reply.confirm": "Skomentuj",
|
||||||
"confirmations.reply.message": "W ten sposób utracisz wpis który obecnie tworzysz. Czy na pewno chcesz to zrobić?",
|
"confirmations.reply.message": "W ten sposób utracisz wpis, który teraz tworzysz. Czy na pewno chcesz to zrobić?",
|
||||||
"confirmations.reply.title": "Nadpisać wpis?",
|
"confirmations.reply.title": "Zastąpić wpis?",
|
||||||
"confirmations.unfollow.confirm": "Przestań obserwować",
|
"confirmations.unfollow.confirm": "Nie obserwuj",
|
||||||
"confirmations.unfollow.message": "Czy na pewno zamierzasz przestać obserwować {name}?",
|
"confirmations.unfollow.message": "Czy na pewno nie chcesz obserwować {name}?",
|
||||||
"confirmations.unfollow.title": "Przestać obserwować?",
|
"confirmations.unfollow.title": "Cofnąć obserwację?",
|
||||||
"content_warning.hide": "Ukryj wpis",
|
"content_warning.hide": "Ukryj wpis",
|
||||||
"content_warning.show": "Pokaż mimo to",
|
"content_warning.show": "Pokaż mimo to",
|
||||||
"content_warning.show_more": "Rozwiń",
|
"content_warning.show_more": "Pokaż więcej",
|
||||||
"conversation.delete": "Usuń konwersację",
|
"conversation.delete": "Usuń rozmowę",
|
||||||
"conversation.mark_as_read": "Oznacz jako przeczytane",
|
"conversation.mark_as_read": "Oznacz jako przeczytane",
|
||||||
"conversation.open": "Zobacz konwersację",
|
"conversation.open": "Zobacz rozmowę",
|
||||||
"conversation.with": "Z {names}",
|
"conversation.with": "Z {names}",
|
||||||
"copy_icon_button.copied": "Skopiowano do schowka",
|
"copy_icon_button.copied": "Skopiowano do schowka",
|
||||||
"copypaste.copied": "Skopiowano",
|
"copypaste.copied": "Skopiowano",
|
||||||
"copypaste.copy_to_clipboard": "Skopiuj do schowka",
|
"copypaste.copy_to_clipboard": "Skopiuj do schowka",
|
||||||
"directory.federated": "Ze znanego fediwersum",
|
"directory.federated": "Ze znanego fediwersum",
|
||||||
"directory.local": "Tylko z {domain}",
|
"directory.local": "Tylko z {domain}",
|
||||||
"directory.new_arrivals": "Nowości",
|
"directory.new_arrivals": "Nowo przybyli",
|
||||||
"directory.recently_active": "Ostatnio aktywne",
|
"directory.recently_active": "Ostatnio aktywni",
|
||||||
"disabled_account_banner.account_settings": "Ustawienia konta",
|
"disabled_account_banner.account_settings": "Ustawienia konta",
|
||||||
"disabled_account_banner.text": "Twoje konto {disabledAccount} jest obecnie wyłączone.",
|
"disabled_account_banner.text": "Twoje konto {disabledAccount} jest obecnie wyłączone.",
|
||||||
"dismissable_banner.community_timeline": "To są najnowsze wpisy publiczne od osób, które mają założone konta na {domain}.",
|
"dismissable_banner.community_timeline": "To są najnowsze publiczne wpisy osób, które są na {domain}.",
|
||||||
"dismissable_banner.dismiss": "Schowaj",
|
"dismissable_banner.dismiss": "Odrzuć",
|
||||||
"dismissable_banner.explore_links": "Te wiadomości obecnie są komentowane przez osoby z tego serwera i pozostałych w zdecentralizowanej sieci.",
|
"dismissable_banner.explore_links": "Te wiadomości obecnie są komentowane przez osoby z tego serwera i pozostałych w zdecentralizowanej sieci.",
|
||||||
"dismissable_banner.explore_statuses": "Obecnie te wpisy z tego serwera i pozostałych serwerów w zdecentralizowanej sieci zyskują popularność na tym serwerze.",
|
"dismissable_banner.explore_statuses": "Obecnie te wpisy z tego serwera i pozostałych serwerów w zdecentralizowanej sieci zyskują popularność na tym serwerze.",
|
||||||
"dismissable_banner.explore_tags": "Te hasztagi obecnie zyskują popularność wśród osób z tego serwera i pozostałych w zdecentralizowanej sieci.",
|
"dismissable_banner.explore_tags": "Te hasztagi obecnie zyskują popularność wśród osób z tego serwera i pozostałych w zdecentralizowanej sieci.",
|
||||||
"dismissable_banner.public_timeline": "Są to najnowsze publiczne wpisy osób w serwisie społecznościowym, które obserwują ludzie w serwisie {domain}.",
|
"dismissable_banner.public_timeline": "Są to najnowsze publiczne wpisy osób w serwisie społecznościowym, które obserwują ludzie w serwisie {domain}.",
|
||||||
"domain_block_modal.block": "Blokuj serwer",
|
"domain_block_modal.block": "Blokuj serwer",
|
||||||
"domain_block_modal.block_account_instead": "Zamiast tego zablokuj @{name}",
|
"domain_block_modal.block_account_instead": "Zamiast tego zablokuj @{name}",
|
||||||
"domain_block_modal.they_can_interact_with_old_posts": "Ludzie z tego serwera mogą wchodzić w interakcje z Twoimi starymi wpisami.",
|
"domain_block_modal.they_can_interact_with_old_posts": "Osoby z tego serwera mogą wchodzić w interakcje z twoimi starymi wpisami.",
|
||||||
"domain_block_modal.they_cant_follow": "Nikt z tego serwera nie może Cię obserwować.",
|
"domain_block_modal.they_cant_follow": "Nikt z tego serwera nie może cię obserwować.",
|
||||||
"domain_block_modal.they_wont_know": "Użytkownik nie dowie się, że został zablokowany.",
|
"domain_block_modal.they_wont_know": "Nie będą wiedzieć, że zostali zablokowani.",
|
||||||
"domain_block_modal.title": "Zablokować domenę?",
|
"domain_block_modal.title": "Zablokować domenę?",
|
||||||
"domain_block_modal.you_will_lose_num_followers": "Utracisz {followersCount, plural, one {jednego obserwującego} other {{followersCountDisplay} obserwujących}} i {followingCount, plural, one {jedną osobę którą obserwujesz} few {{followingCountDisplay} osoby które obserwujesz} other {{followingCountDisplay} osób które obserwujesz}}.",
|
"domain_block_modal.you_will_lose_num_followers": "Utracisz {followersCount, plural, one {jednego obserwującego} other {{followersCountDisplay} obserwujących}} i {followingCount, plural, one {jedną osobę którą obserwujesz} few {{followingCountDisplay} osoby które obserwujesz} other {{followingCountDisplay} osób które obserwujesz}}.",
|
||||||
"domain_block_modal.you_will_lose_relationships": "Utracisz wszystkich obserwujących z tego serwera i wszystkie osoby które obserwujesz na tym serwerze.",
|
"domain_block_modal.you_will_lose_relationships": "Utracisz wszystkich obserwujących i obserwowanych z tego serwera.",
|
||||||
"domain_block_modal.you_wont_see_posts": "Nie zobaczysz postów ani powiadomień od użytkowników na tym serwerze.",
|
"domain_block_modal.you_wont_see_posts": "Nie zobaczysz wpisów ani powiadomień od osób z tego serwera.",
|
||||||
"domain_pill.activitypub_lets_connect": "Pozwala połączyć się z ludźmi na Mastodonie, jak i na innych serwisach społecznościowych.",
|
"domain_pill.activitypub_lets_connect": "Umożliwia komunikację i interakcję z innymi nie tylko na Mastodon, ale także w innych aplikacjach.",
|
||||||
"domain_pill.activitypub_like_language": "ActivityPub jest językiem używanym przez Mastodon do wymiany danych z innymi serwisami społecznościowymi.",
|
"domain_pill.activitypub_like_language": "ActivityPub jest jak język, którym Mastodon komunikuje się z innymi sieciami społecznościowymi.",
|
||||||
"domain_pill.server": "Serwer",
|
"domain_pill.server": "Serwer",
|
||||||
"domain_pill.their_handle": "Uchwyt:",
|
"domain_pill.their_handle": "Nazwa:",
|
||||||
"domain_pill.their_server": "Cyfrowy dom, w którym znajdują się wszystkie wpisy.",
|
"domain_pill.their_server": "Cyfrowy dom wszystkich wpisów tej osoby.",
|
||||||
"domain_pill.their_username": "Unikalny identyfikator na serwerze. Możliwe jest znalezienie użytkowników o tej samej nazwie użytkownika na różnych serwerach.",
|
"domain_pill.their_username": "Unikalny identyfikator na serwerze. Możliwe jest znalezienie użytkowników o tej samej nazwie użytkownika na różnych serwerach.",
|
||||||
"domain_pill.username": "Nazwa użytkownika",
|
"domain_pill.username": "Nazwa użytkownika",
|
||||||
"domain_pill.whats_in_a_handle": "Co zawiera uchwyt użytkownika?",
|
"domain_pill.whats_in_a_handle": "Z czego składa się nazwa?",
|
||||||
"domain_pill.who_they_are": "Ponieważ uchwyty mówią kto jest kim i gdzie się znajduje, możesz wchodzić w interakcje z ludźmi korzystającymi z <button>serwisów opartych o ActivityPub</button>.",
|
"domain_pill.who_they_are": "Dzięki temu, że nazwy wskazują, kim ktoś jest i gdzie się znajduje, możesz wchodzić w interakcje z innymi z różnych <button>sieci społecznościowych opartych na ActivityPub</button>.",
|
||||||
"domain_pill.who_you_are": "Ponieważ Twój uchwyt mówi kim jesteś i gdzie się znajdujesz, inni mogą wchodzić z Tobą w interakcje korzystając z <button>serwisów opartych o ActivityPub</button>.",
|
"domain_pill.who_you_are": "Dzięki temu, że twoja nazwa wskazuje, kim jesteś i gdzie się znajdujesz, inni mogą wchodzić z tobą w interakcje w różnych <button>sieciach społecznościowych opartych na ActivityPub</button>.",
|
||||||
"domain_pill.your_handle": "Twój uchwyt:",
|
"domain_pill.your_handle": "Twoja nazwa:",
|
||||||
"domain_pill.your_server": "Twój cyfrowy dom, w którym żyją wszystkie Twoje wpisy. Nie lubisz tego? Zmień serwer w dowolnym momencie i przenieś swoich obserwujących.",
|
"domain_pill.your_server": "Twój cyfrowy dom wszystkich twoich wpisów. Nie podoba ci się ten serwer? Przenieś się na inny w dowolnym momencie i zabierz ze sobą swoich obserwujących.",
|
||||||
"domain_pill.your_username": "Twój unikalny identyfikator na tym serwerze. Użytkownicy o tej samej nazwie mogą współistnieć na różnych serwerach.",
|
"domain_pill.your_username": "Twój unikalny identyfikator na tym serwerze. Możliwe jest znalezienie osób z tą samą nazwą na innych serwerach.",
|
||||||
"embed.instructions": "Osadź ten wpis na swojej stronie wklejając poniższy kod.",
|
"embed.instructions": "Umieść ten wpis na swojej stronie, kopiując poniższy kod.",
|
||||||
"embed.preview": "Będzie to wyglądać tak:",
|
"embed.preview": "Tak to będzie wyglądać:",
|
||||||
"emoji_button.activity": "Aktywność",
|
"emoji_button.activity": "Aktywność",
|
||||||
"emoji_button.clear": "Wyczyść",
|
"emoji_button.clear": "Wyczyść",
|
||||||
"emoji_button.custom": "Niestandardowe",
|
"emoji_button.custom": "Niestandardowe",
|
||||||
|
@ -256,83 +256,83 @@
|
||||||
"emoji_button.search_results": "Wyniki wyszukiwania",
|
"emoji_button.search_results": "Wyniki wyszukiwania",
|
||||||
"emoji_button.symbols": "Symbole",
|
"emoji_button.symbols": "Symbole",
|
||||||
"emoji_button.travel": "Podróże i miejsca",
|
"emoji_button.travel": "Podróże i miejsca",
|
||||||
"empty_column.account_hides_collections": "Użytkownik postanowił nie udostępniać tych informacji",
|
"empty_column.account_hides_collections": "Ta osoba postanowiła nie udostępniać tych informacji",
|
||||||
"empty_column.account_suspended": "Konto zawieszone",
|
"empty_column.account_suspended": "Konto zawieszone",
|
||||||
"empty_column.account_timeline": "Brak wpisów tutaj!",
|
"empty_column.account_timeline": "Brak wpisów!",
|
||||||
"empty_column.account_unavailable": "Profil niedostępny",
|
"empty_column.account_unavailable": "Profil niedostępny",
|
||||||
"empty_column.blocks": "Nie zablokowałeś(-aś) jeszcze żadnego użytkownika.",
|
"empty_column.blocks": "Nie zablokowano jeszcze żadnych użytkowników.",
|
||||||
"empty_column.bookmarked_statuses": "Nie dodałeś(-aś) żadnego wpisu do zakładek. Kiedy to zrobisz, pojawi się on tutaj.",
|
"empty_column.bookmarked_statuses": "Nie dodano jeszcze żadnego wpisu do zakładek. Gdy to zrobisz, pojawi się tutaj.",
|
||||||
"empty_column.community": "Lokalna oś czasu jest pusta. Napisz coś publicznie, aby zagaić!",
|
"empty_column.community": "Lokalna oś czasu jest pusta. Opublikuj coś, by ruszyć z kopyta!",
|
||||||
"empty_column.direct": "Nie masz jeszcze żadnych prywatnych wzmianek. Kiedy je wyślesz lub otrzymasz, pojawią się tutaj.",
|
"empty_column.direct": "Nie ma tu jeszcze żadnych wzmianek bezpośrednich. Gdy je wyślesz lub otrzymasz, pojawią się tutaj.",
|
||||||
"empty_column.domain_blocks": "Brak zablokowanych domen.",
|
"empty_column.domain_blocks": "Brak zablokowanych domen.",
|
||||||
"empty_column.explore_statuses": "Nic nie jest w tej chwili popularne. Sprawdź później!",
|
"empty_column.explore_statuses": "Nic nie cieszy się teraz popularnością. Sprawdź później!",
|
||||||
"empty_column.favourited_statuses": "Nie dodałeś(-aś) żadnego wpisu do ulubionych. Kiedy to zrobisz, pojawi się on tutaj.",
|
"empty_column.favourited_statuses": "Nie polubiono jeszcze żadnego wpisu. Gdy to zrobisz, pojawi się tutaj.",
|
||||||
"empty_column.favourites": "Nikt nie dodał tego wpisu do ulubionych. Gdy ktoś to zrobi, pojawi się tutaj.",
|
"empty_column.favourites": "Nikt jeszcze nie polubił tego wpisu. Kiedy ktoś to zrobi, pojawi się tutaj.",
|
||||||
"empty_column.follow_requests": "Nie masz żadnych próśb o możliwość obserwacji. Kiedy ktoś utworzy ją, pojawi się tutaj.",
|
"empty_column.follow_requests": "Nie masz jeszcze żadnych próśb o obserwowanie. Gdy je otrzymasz, pojawią się tutaj.",
|
||||||
"empty_column.followed_tags": "Nie obserwujesz jeszcze żadnych hashtagów. Kiedy to zrobisz, pojawią się one tutaj.",
|
"empty_column.followed_tags": "Nie obserwujesz jeszcze żadnych hashtagów. Gdy to zrobisz, pojawią się tutaj.",
|
||||||
"empty_column.hashtag": "Nie ma wpisów oznaczonych tym hasztagiem. Możesz napisać pierwszy(-a).",
|
"empty_column.hashtag": "Nie ma jeszcze wpisów oznaczonych tym hasztagiem.",
|
||||||
"empty_column.home": "Nie obserwujesz nikogo. Odwiedź globalną oś czasu lub użyj wyszukiwarki, aby znaleźć interesujące Cię profile.",
|
"empty_column.home": "Twoja główna oś czasu jest pusta! Zaobserwuj więcej osób, aby coś zobaczyć.",
|
||||||
"empty_column.list": "Nie ma nic na tej liście. Kiedy członkowie listy dodadzą nowe wpisy, pojawia się one tutaj.",
|
"empty_column.list": "Nie ma jeszcze nic na tej liście. Kiedy osoby z tej listy opublikują nowe wpisy, pojawią się tutaj.",
|
||||||
"empty_column.lists": "Nie masz żadnych list. Kiedy utworzysz jedną, pojawi się tutaj.",
|
"empty_column.lists": "Nie masz żadnych list. Kiedy utworzysz jedną, pojawi się tutaj.",
|
||||||
"empty_column.mutes": "Nie wyciszyłeś(-aś) jeszcze żadnego użytkownika.",
|
"empty_column.mutes": "Nie wyciszono jeszcze żadnego użytkownika.",
|
||||||
"empty_column.notification_requests": "To wszystko – kiedy otrzymasz nowe powiadomienia, pokażą się tutaj zgodnie z twoimi ustawieniami.",
|
"empty_column.notification_requests": "Wszystko przeczytane! Gdy otrzymasz nowe powiadomienia, pojawią się tutaj zgodnie z twoimi ustawieniami.",
|
||||||
"empty_column.notifications": "Nie masz żadnych powiadomień. Rozpocznij interakcje z innymi użytkownikami.",
|
"empty_column.notifications": "Nie masz jeszcze żadnych powiadomień. Gdy inne osoby wejdą z tobą w interakcję, zobaczysz to tutaj.",
|
||||||
"empty_column.public": "Tu nic nie ma! Napisz coś publicznie, lub dodaj ludzi z innych serwerów, aby to wyświetlić",
|
"empty_column.public": "Nic tu nie ma! Opublikuj coś lub obserwuj osoby z innych serwerów, aby coś zobaczyć",
|
||||||
"error.unexpected_crash.explanation": "W związku z błędem w naszym kodzie lub braku kompatybilności przeglądarki, ta strona nie może być poprawnie wyświetlona.",
|
"error.unexpected_crash.explanation": "Z powodu błędu w naszym kodzie lub niezgodności przeglądarki nie udało się poprawnie wyświetlić tej strony.",
|
||||||
"error.unexpected_crash.explanation_addons": "Ta strona nie mogła zostać poprawnie wyświetlona. Może to być spowodowane dodatkiem do przeglądarki lub narzędziem do automatycznego tłumaczenia.",
|
"error.unexpected_crash.explanation_addons": "Nie udało się poprawnie wyświetlić tej strony. Ten błąd jest spowodowany zapewne przez wtyczkę do przeglądarki lub narzędzia do automatycznego tłumaczenia.",
|
||||||
"error.unexpected_crash.next_steps": "Spróbuj odświeżyć stronę. Jeśli to nie pomoże, wciąż jesteś w stanie używać Mastodona przez inną przeglądarkę lub natywną aplikację.",
|
"error.unexpected_crash.next_steps": "Spróbuj odświeżyć stronę. Jeśli to nie pomoże, nadal możesz korzystać z Mastodon za pośrednictwem innej przeglądarki lub aplikacji.",
|
||||||
"error.unexpected_crash.next_steps_addons": "Spróbuj je wyłączyć lub odświeżyć stronę. Jeśli to nie pomoże, możesz wciąż korzystać z Mastodona w innej przeglądarce lub natywnej aplikacji.",
|
"error.unexpected_crash.next_steps_addons": "Spróbuj je wyłączyć i odświeżyć stronę. Jeśli to nie pomoże, nadal możesz korzystać z Mastodon za pośrednictwem innej przeglądarki lub aplikacji.",
|
||||||
"errors.unexpected_crash.copy_stacktrace": "Skopiuj stacktrace do schowka",
|
"errors.unexpected_crash.copy_stacktrace": "Skopiuj stacktrace do schowka",
|
||||||
"errors.unexpected_crash.report_issue": "Zgłoś problem",
|
"errors.unexpected_crash.report_issue": "Zgłoś problem",
|
||||||
"explore.search_results": "Wyniki wyszukiwania",
|
"explore.search_results": "Wyniki wyszukiwania",
|
||||||
"explore.suggested_follows": "Ludzie",
|
"explore.suggested_follows": "Ludzie",
|
||||||
"explore.title": "Odkrywaj",
|
"explore.title": "Odkrywaj",
|
||||||
"explore.trending_links": "Aktualności",
|
"explore.trending_links": "Aktualności",
|
||||||
"explore.trending_statuses": "Posty",
|
"explore.trending_statuses": "Wpisy",
|
||||||
"explore.trending_tags": "Hasztagi",
|
"explore.trending_tags": "Hasztagi",
|
||||||
"filter_modal.added.context_mismatch_explanation": "Ta kategoria filtrów nie ma zastosowania do kontekstu, w którym uzyskałeś dostęp do tego wpisu. Jeśli chcesz, aby wpis został przefiltrowany również w tym kontekście, będziesz musiał edytować filtr.",
|
"filter_modal.added.context_mismatch_explanation": "To filtrowanie nie dotyczy kategorii, w której pojawił się ten wpis. Jeśli chcesz, aby wpis był filtrowany również w tym kontekście, musisz edytować ustawienia filtrowania.",
|
||||||
"filter_modal.added.context_mismatch_title": "Niezgodność kontekstów!",
|
"filter_modal.added.context_mismatch_title": "Niewłaściwy kontekst!",
|
||||||
"filter_modal.added.expired_explanation": "Ta kategoria filtra wygasła, będziesz musiał zmienić datę wygaśnięcia, aby ją zastosować.",
|
"filter_modal.added.expired_explanation": "Ta kategoria filtrowania wygasła, aby ją zastosować, należy zmienić datę wygaśnięcia.",
|
||||||
"filter_modal.added.expired_title": "Wygasły filtr!",
|
"filter_modal.added.expired_title": "Filtr wygasł!",
|
||||||
"filter_modal.added.review_and_configure": "Aby przejrzeć i skonfigurować tę kategorię filtrów, przejdź do {settings_link}.",
|
"filter_modal.added.review_and_configure": "Aby przejrzeć i skonfigurować tę kategorię filtrowania, przejdź do {settings_link}.",
|
||||||
"filter_modal.added.review_and_configure_title": "Ustawienia filtra",
|
"filter_modal.added.review_and_configure_title": "Ustawienia filtrowania",
|
||||||
"filter_modal.added.settings_link": "strona ustawień",
|
"filter_modal.added.settings_link": "strona ustawień",
|
||||||
"filter_modal.added.short_explanation": "Ten wpis został dodany do następującej kategorii filtrów: {title}.",
|
"filter_modal.added.short_explanation": "Ten wpis został dodany do następującej kategorii filtrowania: {title}.",
|
||||||
"filter_modal.added.title": "Filtr dodany!",
|
"filter_modal.added.title": "Filtrowanie zostało dodane!",
|
||||||
"filter_modal.select_filter.context_mismatch": "nie dotyczy tego kontekstu",
|
"filter_modal.select_filter.context_mismatch": "nie ma zastosowania w tym kontekście",
|
||||||
"filter_modal.select_filter.expired": "wygasły",
|
"filter_modal.select_filter.expired": "wygasły",
|
||||||
"filter_modal.select_filter.prompt_new": "Nowa kategoria: {name}",
|
"filter_modal.select_filter.prompt_new": "Nowa kategoria: {name}",
|
||||||
"filter_modal.select_filter.search": "Szukaj lub utwórz",
|
"filter_modal.select_filter.search": "Szukaj lub utwórz",
|
||||||
"filter_modal.select_filter.subtitle": "Użyj istniejącej kategorii lub utwórz nową",
|
"filter_modal.select_filter.subtitle": "Użyj istniejącej kategorii lub utwórz nową",
|
||||||
"filter_modal.select_filter.title": "Filtruj ten wpis",
|
"filter_modal.select_filter.title": "Odfiltruj ten wpis",
|
||||||
"filter_modal.title.status": "Filtruj wpis",
|
"filter_modal.title.status": "Odfiltruj wpis",
|
||||||
"filter_warning.matches_filter": "Pasuje do filtra \"<span>{title}</span>\"",
|
"filter_warning.matches_filter": "Odfiltrowane przez \"<span>{title}</span>\"",
|
||||||
"filtered_notifications_banner.pending_requests": "Od {count, plural, =0 {żadnej osoby którą możesz znać} one {# osoby którą możesz znać} other {# osób które możesz znać}}",
|
"filtered_notifications_banner.pending_requests": "Od {count, plural, =0 {żadnej osoby którą możesz znać} one {# osoby którą możesz znać} other {# osób które możesz znać}}",
|
||||||
"filtered_notifications_banner.title": "Powiadomienia filtrowane",
|
"filtered_notifications_banner.title": "Odfiltrowane powiadomienia",
|
||||||
"firehose.all": "Wszystko",
|
"firehose.all": "Wszystko",
|
||||||
"firehose.local": "Ten serwer",
|
"firehose.local": "Ten serwer",
|
||||||
"firehose.remote": "Inne serwery",
|
"firehose.remote": "Inne serwery",
|
||||||
"follow_request.authorize": "Autoryzuj",
|
"follow_request.authorize": "Przyjmij",
|
||||||
"follow_request.reject": "Odrzuć",
|
"follow_request.reject": "Odrzuć",
|
||||||
"follow_requests.unlocked_explanation": "Mimo że Twoje konto nie jest zablokowane, zespół {domain} uznał że możesz chcieć ręcznie przejrzeć prośby o możliwość obserwacji.",
|
"follow_requests.unlocked_explanation": "Mimo że twoje konto nie jest zablokowane, administratorzy {domain} uznali, że możesz chcieć samodzielnie sprawdzić prośby o obserwowanie od tych osób.",
|
||||||
"follow_suggestions.curated_suggestion": "Wybrane przez personel",
|
"follow_suggestions.curated_suggestion": "Wybrane przez redakcję",
|
||||||
"follow_suggestions.dismiss": "Nie pokazuj ponownie",
|
"follow_suggestions.dismiss": "Nie pokazuj ponownie",
|
||||||
"follow_suggestions.featured_longer": "Wybrane przez zespół {domain}",
|
"follow_suggestions.featured_longer": "Wybrane przez redakcję {domain}",
|
||||||
"follow_suggestions.friends_of_friends_longer": "Popularni wśród ludzi których obserwujesz",
|
"follow_suggestions.friends_of_friends_longer": "Popularne wśród obserwowanych",
|
||||||
"follow_suggestions.hints.featured": "Ten profil został wybrany przez zespół {domain}.",
|
"follow_suggestions.hints.featured": "Ten profil został wybrany przez redakcję {domain}.",
|
||||||
"follow_suggestions.hints.friends_of_friends": "Ten profil jest popularny w gronie użytkowników, których obserwujesz.",
|
"follow_suggestions.hints.friends_of_friends": "Ten profil jest popularny wśród obserwowanych.",
|
||||||
"follow_suggestions.hints.most_followed": "Ten profil jest jednym z najczęściej obserwowanych na {domain}.",
|
"follow_suggestions.hints.most_followed": "Ten profil jest jednym z najczęściej obserwowanych na {domain}.",
|
||||||
"follow_suggestions.hints.most_interactions": "Ten profil otrzymuje dużo interakcji na {domain}.",
|
"follow_suggestions.hints.most_interactions": "Ten profil cieszy się ostatnio dużym zainteresowaniem na {domain}.",
|
||||||
"follow_suggestions.hints.similar_to_recently_followed": "Ten profil jest podobny do profili ostatnio przez ciebie zaobserwowanych.",
|
"follow_suggestions.hints.similar_to_recently_followed": "Ten profil jest podobny do ostatnio przez ciebie zaobserwowanych.",
|
||||||
"follow_suggestions.personalized_suggestion": "Sugestia spersonalizowana",
|
"follow_suggestions.personalized_suggestion": "Spersonalizowana rekomendacja",
|
||||||
"follow_suggestions.popular_suggestion": "Sugestia popularna",
|
"follow_suggestions.popular_suggestion": "Popularna rekomendacja",
|
||||||
"follow_suggestions.popular_suggestion_longer": "Popularni na {domain}",
|
"follow_suggestions.popular_suggestion_longer": "Popularne na {domain}",
|
||||||
"follow_suggestions.similar_to_recently_followed_longer": "Podobne do ostatnio zaobserwowanych przez ciebie profilów",
|
"follow_suggestions.similar_to_recently_followed_longer": "Podobne do ostatnio zaobserwowanych",
|
||||||
"follow_suggestions.view_all": "Pokaż wszystkie",
|
"follow_suggestions.view_all": "Pokaż wszystkie",
|
||||||
"follow_suggestions.who_to_follow": "Kogo obserwować",
|
"follow_suggestions.who_to_follow": "Kogo warto obserwować",
|
||||||
"followed_tags": "Obserwowane hasztagi",
|
"followed_tags": "Obserwowane hasztagi",
|
||||||
"footer.about": "O serwerze",
|
"footer.about": "O serwerze",
|
||||||
"footer.directory": "Katalog profilów",
|
"footer.directory": "Katalog profili",
|
||||||
"footer.get_app": "Pobierz aplikację",
|
"footer.get_app": "Pobierz aplikację",
|
||||||
"footer.invite": "Zaproś znajomych",
|
"footer.invite": "Zaproś znajomych",
|
||||||
"footer.keyboard_shortcuts": "Skróty klawiszowe",
|
"footer.keyboard_shortcuts": "Skróty klawiszowe",
|
||||||
|
@ -340,48 +340,48 @@
|
||||||
"footer.source_code": "Zobacz kod źródłowy",
|
"footer.source_code": "Zobacz kod źródłowy",
|
||||||
"footer.status": "Status",
|
"footer.status": "Status",
|
||||||
"generic.saved": "Zapisano",
|
"generic.saved": "Zapisano",
|
||||||
"getting_started.heading": "Rozpocznij",
|
"getting_started.heading": "Pierwsze kroki",
|
||||||
"hashtag.column_header.tag_mode.all": "i {additional}",
|
"hashtag.column_header.tag_mode.all": "i {additional}",
|
||||||
"hashtag.column_header.tag_mode.any": "lub {additional}",
|
"hashtag.column_header.tag_mode.any": "lub {additional}",
|
||||||
"hashtag.column_header.tag_mode.none": "bez {additional}",
|
"hashtag.column_header.tag_mode.none": "bez {additional}",
|
||||||
"hashtag.column_settings.select.no_options_message": "Nie odnaleziono sugestii",
|
"hashtag.column_settings.select.no_options_message": "Nie znaleziono żadnych rekomendacji",
|
||||||
"hashtag.column_settings.select.placeholder": "Wprowadź hasztagi…",
|
"hashtag.column_settings.select.placeholder": "Wprowadź hasztagi…",
|
||||||
"hashtag.column_settings.tag_mode.all": "Wszystkie",
|
"hashtag.column_settings.tag_mode.all": "Wszystkie",
|
||||||
"hashtag.column_settings.tag_mode.any": "Dowolne",
|
"hashtag.column_settings.tag_mode.any": "Dowolne",
|
||||||
"hashtag.column_settings.tag_mode.none": "Żadne",
|
"hashtag.column_settings.tag_mode.none": "Żadne",
|
||||||
"hashtag.column_settings.tag_toggle": "Include additional tags in this column",
|
"hashtag.column_settings.tag_toggle": "Uwzględnij dodatkowe tagi w tej kolumnie",
|
||||||
"hashtag.counter_by_accounts": "{count, plural, one {{counter} uczestnik} few {{counter} uczestnicy} many {{counter} uczestników} other {{counter} uczestników}}",
|
"hashtag.counter_by_accounts": "{count, plural, one {{counter} osoba} few {{counter} osoby} many {{counter} osób} other {{counter} osób}}",
|
||||||
"hashtag.counter_by_uses": "{count, plural, one {{counter} wpis} few {{counter} wpisy} many {{counter} wpisów} other {{counter} wpisów}}",
|
"hashtag.counter_by_uses": "{count, plural, one {{counter} wpis} few {{counter} wpisy} many {{counter} wpisów} other {{counter} wpisów}}",
|
||||||
"hashtag.counter_by_uses_today": "{count, plural, one {{counter} wpis} few {{counter} wpisy} many {{counter} wpisów} other {{counter} wpisów}} z dzisiaj",
|
"hashtag.counter_by_uses_today": "{count, plural, one {{counter} wpis} few {{counter} wpisy} many {{counter} wpisów} other {{counter} wpisów}} dzisiaj",
|
||||||
"hashtag.follow": "Obserwuj hasztag",
|
"hashtag.follow": "Obserwuj hasztag",
|
||||||
"hashtag.unfollow": "Przestań obserwować hashtag",
|
"hashtag.unfollow": "Przestań obserwować hashtag",
|
||||||
"hashtags.and_other": "…i {count, plural, other {jeszcze #}}",
|
"hashtags.and_other": "…i {count, plural, other {jeszcze #}}",
|
||||||
"hints.profiles.followers_may_be_missing": "Może brakować niektórych obserwujących tego profilu.",
|
"hints.profiles.followers_may_be_missing": "Niektórzy obserwujący ten profil mogą być niewidoczni.",
|
||||||
"hints.profiles.follows_may_be_missing": "Może brakować niektórych obserwowanych przez tego użytkownika.",
|
"hints.profiles.follows_may_be_missing": "Niektórzy obserwowani mogą być niewidoczni.",
|
||||||
"hints.profiles.posts_may_be_missing": "Może brakować niektórych wpisów tego profilu.",
|
"hints.profiles.posts_may_be_missing": "Niektóre wpisy mogą być niewidoczne.",
|
||||||
"hints.profiles.see_more_followers": "Zobacz wszystkich obserwujących na {domain}",
|
"hints.profiles.see_more_followers": "Zobacz więcej obserwujących na {domain}",
|
||||||
"hints.profiles.see_more_follows": "Zobacz wszystkich obserwowanych na {domain}",
|
"hints.profiles.see_more_follows": "Zobacz więcej obserwowanych na {domain}",
|
||||||
"hints.profiles.see_more_posts": "Zobacz wszystkie wpisy na {domain}",
|
"hints.profiles.see_more_posts": "Zobacz więcej wpisów na {domain}",
|
||||||
"hints.threads.replies_may_be_missing": "Może brakować odpowiedzi z innych serwerów.",
|
"hints.threads.replies_may_be_missing": "Komentarze z innych serwerów mogą być niewidoczne.",
|
||||||
"hints.threads.see_more": "Zobacz wszystkie odpowiedzi na {domain}",
|
"hints.threads.see_more": "Zobacz więcej komentarzy na {domain}",
|
||||||
"home.column_settings.show_reblogs": "Pokazuj podbicia",
|
"home.column_settings.show_reblogs": "Pokazuj podbicia",
|
||||||
"home.column_settings.show_replies": "Pokazuj odpowiedzi",
|
"home.column_settings.show_replies": "Pokazuj odpowiedzi",
|
||||||
"home.hide_announcements": "Ukryj ogłoszenia",
|
"home.hide_announcements": "Ukryj ogłoszenia",
|
||||||
"home.pending_critical_update.body": "Zaktualizuj serwer jak tylko będzie to możliwe!",
|
"home.pending_critical_update.body": "Prosimy o jak najszybszą aktualizację serwera Mastodon!",
|
||||||
"home.pending_critical_update.link": "Pokaż aktualizacje",
|
"home.pending_critical_update.link": "Zobacz aktualizacje",
|
||||||
"home.pending_critical_update.title": "Dostępna krytyczna aktualizacja bezpieczeństwa!",
|
"home.pending_critical_update.title": "Dostępna krytyczna aktualizacja bezpieczeństwa!",
|
||||||
"home.show_announcements": "Pokaż ogłoszenia",
|
"home.show_announcements": "Pokaż ogłoszenia",
|
||||||
"ignore_notifications_modal.disclaimer": "Mastodon nie może poinformować innych użytkowników że ignorujesz ich powiadomienia. Ignorowanie powiadomień nie zapobieże wysyłaniu wpisów per se. ",
|
"ignore_notifications_modal.disclaimer": "Mastodon nie informuje nikogo o zignorowaniu powiadomienia. Ignorowanie powiadomień nie zapobiegnie wysyłaniu samych wiadomości.",
|
||||||
"ignore_notifications_modal.filter_instead": "Filtruj zamiast tego",
|
"ignore_notifications_modal.filter_instead": "Zamiast tego odfiltruj",
|
||||||
"ignore_notifications_modal.filter_to_act_users": "Dalej będziesz mieć możliwość przyjmować, odrzucać, i raportować użytkowników",
|
"ignore_notifications_modal.filter_to_act_users": "Przyjmowanie, odrzucanie i zgłaszanie innych będzie nadal możliwe",
|
||||||
"ignore_notifications_modal.filter_to_avoid_confusion": "Filtrowanie może ograniczyć pomyłki",
|
"ignore_notifications_modal.filter_to_avoid_confusion": "Filtrowanie pomaga uniknąć ewentualnych pomyłek",
|
||||||
"ignore_notifications_modal.filter_to_review_separately": "Możesz osobno przejrzeć powiadomienia odfiltrowane",
|
"ignore_notifications_modal.filter_to_review_separately": "Możesz sprawdzić każde odfiltrowane powiadomienie",
|
||||||
"ignore_notifications_modal.ignore": "Ignoruj powiadomienia",
|
"ignore_notifications_modal.ignore": "Ignoruj powiadomienia",
|
||||||
"ignore_notifications_modal.limited_accounts_title": "Ignoruj powiadomienia od kont moderowanych?",
|
"ignore_notifications_modal.limited_accounts_title": "Ignorować powiadomienia z moderowanych kont?",
|
||||||
"ignore_notifications_modal.new_accounts_title": "Ignoruj powiadomienia od nowych kont?",
|
"ignore_notifications_modal.new_accounts_title": "Ignorować powiadomienia z nowych kont?",
|
||||||
"ignore_notifications_modal.not_followers_title": "Ignoruj powiadomienia od użytkowników którzy cię nie obserwują?",
|
"ignore_notifications_modal.not_followers_title": "Ignorować powiadomienia od osób, które cię nie obserwują?",
|
||||||
"ignore_notifications_modal.not_following_title": "Ignoruj powiadomienia od użytkowników których nie obserwujesz?",
|
"ignore_notifications_modal.not_following_title": "Ignorować powiadomienia od osób, których nie obserwujesz?",
|
||||||
"ignore_notifications_modal.private_mentions_title": "Ignoruj powiadomienia o nieproszonych wzmiankach prywatnych?",
|
"ignore_notifications_modal.private_mentions_title": "Ignorować powiadomienia od niechcianych wzmianek bezpośrednich?",
|
||||||
"interaction_modal.description.favourite": "Mając konto na Mastodonie, możesz dodawać wpisy do ulubionych by dać znać jego autorowi, że podoba Ci się ten wpis i zachować go na później.",
|
"interaction_modal.description.favourite": "Mając konto na Mastodonie, możesz dodawać wpisy do ulubionych by dać znać jego autorowi, że podoba Ci się ten wpis i zachować go na później.",
|
||||||
"interaction_modal.description.follow": "Mając konto na Mastodonie, możesz śledzić {name} by widzieć jego wpisy na swojej głównej osi czasu.",
|
"interaction_modal.description.follow": "Mając konto na Mastodonie, możesz śledzić {name} by widzieć jego wpisy na swojej głównej osi czasu.",
|
||||||
"interaction_modal.description.reblog": "Mając konto na Mastodonie, możesz podbić ten wpis i udostępnić go Twoim obserwującym.",
|
"interaction_modal.description.reblog": "Mając konto na Mastodonie, możesz podbić ten wpis i udostępnić go Twoim obserwującym.",
|
||||||
|
@ -393,52 +393,52 @@
|
||||||
"interaction_modal.on_this_server": "Na tym serwerze",
|
"interaction_modal.on_this_server": "Na tym serwerze",
|
||||||
"interaction_modal.sign_in": "Nie jesteś zalogowany(-a) na tym serwerze. Gdzie masz konto?",
|
"interaction_modal.sign_in": "Nie jesteś zalogowany(-a) na tym serwerze. Gdzie masz konto?",
|
||||||
"interaction_modal.sign_in_hint": "To strona na której się rejestrowałeś(-aś). Jeżeli nie pamiętasz, poszukaj mejla z przywitaniem. Możesz też wprowadzić pełną nazwę użytkownika, à la @Mastodon@mastodon.social!",
|
"interaction_modal.sign_in_hint": "To strona na której się rejestrowałeś(-aś). Jeżeli nie pamiętasz, poszukaj mejla z przywitaniem. Możesz też wprowadzić pełną nazwę użytkownika, à la @Mastodon@mastodon.social!",
|
||||||
"interaction_modal.title.favourite": "Polub wpis użytkownika {name}",
|
"interaction_modal.title.favourite": "Polub wpis {name}",
|
||||||
"interaction_modal.title.follow": "Śledź {name}",
|
"interaction_modal.title.follow": "Obserwuj {name}",
|
||||||
"interaction_modal.title.reblog": "Podbij wpis {name}",
|
"interaction_modal.title.reblog": "Podbij wpis {name}",
|
||||||
"interaction_modal.title.reply": "Odpowiedz na post {name}",
|
"interaction_modal.title.reply": "Odpowiedz na post {name}",
|
||||||
"intervals.full.days": "{number, plural, one {# dzień} few {# dni} many {# dni} other {# dni}}",
|
"intervals.full.days": "{number, plural, one {# dzień} few {# dni} many {# dni} other {# dni}}",
|
||||||
"intervals.full.hours": "{number, plural, one {# godzina} few {# godziny} many {# godzin} other {# godzin}}",
|
"intervals.full.hours": "{number, plural, one {# godzina} few {# godziny} many {# godzin} other {# godzin}}",
|
||||||
"intervals.full.minutes": "{number, plural, one {# minuta} few {# minuty} many {# minut} other {# minut}}",
|
"intervals.full.minutes": "{number, plural, one {# minuta} few {# minuty} many {# minut} other {# minut}}",
|
||||||
"keyboard_shortcuts.back": "aby cofnąć się",
|
"keyboard_shortcuts.back": "Wstecz",
|
||||||
"keyboard_shortcuts.blocked": "aby przejść do listy zablokowanych użytkowników",
|
"keyboard_shortcuts.blocked": "Otwórz listę zablokowanych",
|
||||||
"keyboard_shortcuts.boost": "aby podbić wpis",
|
"keyboard_shortcuts.boost": "Podbij wpis",
|
||||||
"keyboard_shortcuts.column": "aby przejść do wpisu z jednej z kolumn",
|
"keyboard_shortcuts.column": "Aktywuj kolumnę",
|
||||||
"keyboard_shortcuts.compose": "aby przejść do pola tworzenia wpisu",
|
"keyboard_shortcuts.compose": "Aktywuj pole tekstowe",
|
||||||
"keyboard_shortcuts.description": "Opis",
|
"keyboard_shortcuts.description": "Opis",
|
||||||
"keyboard_shortcuts.direct": "aby otworzyć kolumnę z wzmiankami prywatnymi",
|
"keyboard_shortcuts.direct": "aby otworzyć kolumnę wzmianek bezpośrednich",
|
||||||
"keyboard_shortcuts.down": "aby przejść na dół listy",
|
"keyboard_shortcuts.down": "Przesuń w dół na liście",
|
||||||
"keyboard_shortcuts.enter": "aby otworzyć wpis",
|
"keyboard_shortcuts.enter": "Otwórz wpis",
|
||||||
"keyboard_shortcuts.favourite": "Polub wpis",
|
"keyboard_shortcuts.favourite": "Polub wpis",
|
||||||
"keyboard_shortcuts.favourites": "Otwórz listę ulubionych wpisów",
|
"keyboard_shortcuts.favourites": "Otwórz listę polubionych wpisów",
|
||||||
"keyboard_shortcuts.federated": "aby otworzyć oś czasu federacji",
|
"keyboard_shortcuts.federated": "Otwórz globalną oś czasu",
|
||||||
"keyboard_shortcuts.heading": "Skróty klawiszowe",
|
"keyboard_shortcuts.heading": "Skróty klawiszowe",
|
||||||
"keyboard_shortcuts.home": "aby otworzyć stronę główną",
|
"keyboard_shortcuts.home": "Otwórz stronę główną",
|
||||||
"keyboard_shortcuts.hotkey": "Skrót klawiszowy",
|
"keyboard_shortcuts.hotkey": "Skrót klawiszowy",
|
||||||
"keyboard_shortcuts.legend": "aby wyświetlić tę legendę",
|
"keyboard_shortcuts.legend": "Wyświetl skróty klawiszowe",
|
||||||
"keyboard_shortcuts.local": "aby otworzyć lokalną oś czasu",
|
"keyboard_shortcuts.local": "Otwórz lokalną oś czasu",
|
||||||
"keyboard_shortcuts.mention": "aby wspomnieć o autorze",
|
"keyboard_shortcuts.mention": "Dodaj wzmiankę",
|
||||||
"keyboard_shortcuts.muted": "aby przejść do listy wyciszonych użytkowników",
|
"keyboard_shortcuts.muted": "Otwórz listę wyciszonych",
|
||||||
"keyboard_shortcuts.my_profile": "aby otworzyć własny profil",
|
"keyboard_shortcuts.my_profile": "Otwórz swój profil",
|
||||||
"keyboard_shortcuts.notifications": "aby otworzyć kolumnę powiadomień",
|
"keyboard_shortcuts.notifications": "Otwórz kolumnę powiadomień",
|
||||||
"keyboard_shortcuts.open_media": "Otwórz multimedia",
|
"keyboard_shortcuts.open_media": "Otwórz multimedia",
|
||||||
"keyboard_shortcuts.pinned": "aby przejść do listy przypiętych wpisów",
|
"keyboard_shortcuts.pinned": "Otwórz listę przypiętych wpisów",
|
||||||
"keyboard_shortcuts.profile": "aby przejść do profilu autora wpisu",
|
"keyboard_shortcuts.profile": "Otwórz profil",
|
||||||
"keyboard_shortcuts.reply": "aby odpowiedzieć",
|
"keyboard_shortcuts.reply": "Skomentuj",
|
||||||
"keyboard_shortcuts.requests": "aby przejść do listy próśb o możliwość obserwacji",
|
"keyboard_shortcuts.requests": "Otwórz listę próśb o obserwowanie",
|
||||||
"keyboard_shortcuts.search": "aby przejść do pola wyszukiwania",
|
"keyboard_shortcuts.search": "Aktywuj pole wyszukiwania",
|
||||||
"keyboard_shortcuts.spoilers": "aby pokazać/ukryć pole CW",
|
"keyboard_shortcuts.spoilers": "Pokaż lub ukryj ostrzeżenia",
|
||||||
"keyboard_shortcuts.start": "aby otworzyć kolumnę „Rozpocznij”",
|
"keyboard_shortcuts.start": "Otwórz kolumnę \"Pierwsze kroki\"",
|
||||||
"keyboard_shortcuts.toggle_hidden": "aby wyświetlić lub ukryć wpis spod CW",
|
"keyboard_shortcuts.toggle_hidden": "Pokaż lub ukryj tekst z ostrzeżeniem",
|
||||||
"keyboard_shortcuts.toggle_sensitivity": "Pokaż/ukryj multimedia",
|
"keyboard_shortcuts.toggle_sensitivity": "Pokaż lub ukryj multimedia",
|
||||||
"keyboard_shortcuts.toot": "Stwórz nowy post",
|
"keyboard_shortcuts.toot": "Stwórz nowy wpis",
|
||||||
"keyboard_shortcuts.unfocus": "aby opuścić pole wyszukiwania/pisania",
|
"keyboard_shortcuts.unfocus": "Opuść pole tekstowe",
|
||||||
"keyboard_shortcuts.up": "aby przejść na górę listy",
|
"keyboard_shortcuts.up": "Przesuń w górę na liście",
|
||||||
"lightbox.close": "Zamknij",
|
"lightbox.close": "Zamknij",
|
||||||
"lightbox.next": "Następne",
|
"lightbox.next": "Następne",
|
||||||
"lightbox.previous": "Poprzednie",
|
"lightbox.previous": "Poprzednie",
|
||||||
"lightbox.zoom_in": "Rozmiar rzeczywisty",
|
"lightbox.zoom_in": "Powiększ do rzeczywistego rozmiaru",
|
||||||
"lightbox.zoom_out": "Dopasuj",
|
"lightbox.zoom_out": "Powiększ, aby dopasować",
|
||||||
"limited_account_hint.action": "Pokaż profil mimo to",
|
"limited_account_hint.action": "Pokaż profil mimo to",
|
||||||
"limited_account_hint.title": "Ten profil został ukryty przez moderatorów {domain}.",
|
"limited_account_hint.title": "Ten profil został ukryty przez moderatorów {domain}.",
|
||||||
"link_preview.author": "{name}",
|
"link_preview.author": "{name}",
|
||||||
|
@ -452,185 +452,185 @@
|
||||||
"lists.exclusive": "Ukryj te posty w lokalnej osi czasu",
|
"lists.exclusive": "Ukryj te posty w lokalnej osi czasu",
|
||||||
"lists.new.create": "Utwórz listę",
|
"lists.new.create": "Utwórz listę",
|
||||||
"lists.new.title_placeholder": "Wprowadź tytuł listy",
|
"lists.new.title_placeholder": "Wprowadź tytuł listy",
|
||||||
"lists.replies_policy.followed": "Dowolny obserwowany użytkownik",
|
"lists.replies_policy.followed": "Każdy obserwowany",
|
||||||
"lists.replies_policy.list": "Członkowie listy",
|
"lists.replies_policy.list": "Osoby na liście",
|
||||||
"lists.replies_policy.none": "Nikt",
|
"lists.replies_policy.none": "Nikt",
|
||||||
"lists.replies_policy.title": "Pokazuj odpowiedzi dla:",
|
"lists.replies_policy.title": "Pokazuj odpowiedzi dla:",
|
||||||
"lists.search": "Szukaj wśród osób które obserwujesz",
|
"lists.search": "Szukaj wśród osób które obserwujesz",
|
||||||
"lists.subheading": "Twoje listy",
|
"lists.subheading": "Twoje listy",
|
||||||
"load_pending": "{count, plural, one {# nowa pozycja} other {nowe pozycje}}",
|
"load_pending": "{count, plural, one {# nowa} few {# nowe} many {# nowych} other {# nowych}}",
|
||||||
"loading_indicator.label": "Ładowanie…",
|
"loading_indicator.label": "Wczytywanie…",
|
||||||
"media_gallery.hide": "Ukryj",
|
"media_gallery.hide": "Ukryj",
|
||||||
"moved_to_account_banner.text": "Twoje konto {disabledAccount} jest obecnie wyłączone, ponieważ zostało przeniesione na {movedToAccount}.",
|
"moved_to_account_banner.text": "Twoje konto {disabledAccount} jest obecnie wyłączone, ponieważ zostało przeniesione na {movedToAccount}.",
|
||||||
"mute_modal.hide_from_notifications": "Ukryj z powiadomień",
|
"mute_modal.hide_from_notifications": "Nie pokazuj w powiadomieniach",
|
||||||
"mute_modal.hide_options": "Ukryj opcje",
|
"mute_modal.hide_options": "Ukryj opcje",
|
||||||
"mute_modal.indefinite": "Do ręcznego usunięcia wyciszenia",
|
"mute_modal.indefinite": "Dopóki nie zmienię zdania",
|
||||||
"mute_modal.show_options": "Pokaż opcje",
|
"mute_modal.show_options": "Pokaż opcje",
|
||||||
"mute_modal.they_can_mention_and_follow": "Użytkownik może Cię obserwować oraz dodawać wzmianki, ale Ty ich nie zobaczysz.",
|
"mute_modal.they_can_mention_and_follow": "Może cię wzmiankować i obserwować, ale ty tego nie zobaczysz.",
|
||||||
"mute_modal.they_wont_know": "Użytkownik nie dowie się, że został wyciszony.",
|
"mute_modal.they_wont_know": "Informacja o wyciszeniu nie będzie widoczna dla tej osoby.",
|
||||||
"mute_modal.title": "Wyciszyć użytkownika?",
|
"mute_modal.title": "Wyciszyć?",
|
||||||
"mute_modal.you_wont_see_mentions": "Nie zobaczysz wpisów, które wspominają tego użytkownika.",
|
"mute_modal.you_wont_see_mentions": "Nie zobaczysz wpisów wzmiankujących tę osobę.",
|
||||||
"mute_modal.you_wont_see_posts": "Użytkownik dalej będzie widzieć Twoje posty, ale Ty nie będziesz widzieć jego.",
|
"mute_modal.you_wont_see_posts": "Nie zobaczysz wpisów tej osoby, ale ona może widzieć twoje.",
|
||||||
"navigation_bar.about": "O serwerze",
|
"navigation_bar.about": "O serwerze",
|
||||||
"navigation_bar.administration": "Administracja",
|
"navigation_bar.administration": "Administracja",
|
||||||
"navigation_bar.advanced_interface": "Otwórz w zaawansowanym interfejsie użytkownika",
|
"navigation_bar.advanced_interface": "Otwórz w widoku zaawansowanym",
|
||||||
"navigation_bar.blocks": "Zablokowani użytkownicy",
|
"navigation_bar.blocks": "Zablokowani",
|
||||||
"navigation_bar.bookmarks": "Zakładki",
|
"navigation_bar.bookmarks": "Zakładki",
|
||||||
"navigation_bar.community_timeline": "Lokalna oś czasu",
|
"navigation_bar.community_timeline": "Lokalna oś czasu",
|
||||||
"navigation_bar.compose": "Utwórz nowy wpis",
|
"navigation_bar.compose": "Utwórz nowy wpis",
|
||||||
"navigation_bar.direct": "Prywatne wzmianki",
|
"navigation_bar.direct": "Wzmianki bezpośrednie",
|
||||||
"navigation_bar.discover": "Odkrywaj",
|
"navigation_bar.discover": "Odkrywaj",
|
||||||
"navigation_bar.domain_blocks": "Ukryte domeny",
|
"navigation_bar.domain_blocks": "Zablokowane domeny",
|
||||||
"navigation_bar.explore": "Odkrywaj",
|
"navigation_bar.explore": "Odkrywaj",
|
||||||
"navigation_bar.favourites": "Ulubione",
|
"navigation_bar.favourites": "Polubione",
|
||||||
"navigation_bar.filters": "Wyciszone słowa",
|
"navigation_bar.filters": "Wyciszone słowa",
|
||||||
"navigation_bar.follow_requests": "Prośby o obserwację",
|
"navigation_bar.follow_requests": "Prośby o obserwowanie",
|
||||||
"navigation_bar.followed_tags": "Obserwowane hasztagi",
|
"navigation_bar.followed_tags": "Obserwowane hasztagi",
|
||||||
"navigation_bar.follows_and_followers": "Obserwowani i obserwujący",
|
"navigation_bar.follows_and_followers": "Obserwowani i obserwujący",
|
||||||
"navigation_bar.lists": "Listy",
|
"navigation_bar.lists": "Listy",
|
||||||
"navigation_bar.logout": "Wyloguj",
|
"navigation_bar.logout": "Wyloguj",
|
||||||
"navigation_bar.moderation": "Moderacja",
|
"navigation_bar.moderation": "Moderacja",
|
||||||
"navigation_bar.mutes": "Wyciszeni użytkownicy",
|
"navigation_bar.mutes": "Wyciszeni",
|
||||||
"navigation_bar.opened_in_classic_interface": "Posty, konta i inne konkretne strony są otwierane domyślnie w klasycznym interfejsie sieciowym.",
|
"navigation_bar.opened_in_classic_interface": "Wpisy, konta i inne określone strony są domyślnie otwierane w widoku klasycznym.",
|
||||||
"navigation_bar.personal": "Osobiste",
|
"navigation_bar.personal": "Osobiste",
|
||||||
"navigation_bar.pins": "Przypięte wpisy",
|
"navigation_bar.pins": "Przypięte wpisy",
|
||||||
"navigation_bar.preferences": "Preferencje",
|
"navigation_bar.preferences": "Ustawienia",
|
||||||
"navigation_bar.public_timeline": "Globalna oś czasu",
|
"navigation_bar.public_timeline": "Globalna oś czasu",
|
||||||
"navigation_bar.search": "Szukaj",
|
"navigation_bar.search": "Szukaj",
|
||||||
"navigation_bar.security": "Bezpieczeństwo",
|
"navigation_bar.security": "Bezpieczeństwo",
|
||||||
"not_signed_in_indicator.not_signed_in": "Musisz się zalogować, aby uzyskać dostęp do tego zasobu.",
|
"not_signed_in_indicator.not_signed_in": "Zaloguj się, aby uzyskać dostęp.",
|
||||||
"notification.admin.report": "{name} zgłosił {target}",
|
"notification.admin.report": "{name} zgłosił {target}",
|
||||||
"notification.admin.report_account": "{name} zgłosił(a) {count, plural, one {1 wpis} few {# wpisy} other {# wpisów}} z {target} w kategorii {category}",
|
"notification.admin.report_account": "{name} zgłosił(a) {count, plural, one {1 wpis} few {# wpisy} other {# wpisów}} z {target} w kategorii {category}",
|
||||||
"notification.admin.report_account_other": "{name} zgłosił(a) {count, plural, one {1 wpis} few {# wpisy} other {# wpisów}} z {target}",
|
"notification.admin.report_account_other": "{name} zgłosił(a) {count, plural, one {1 wpis} few {# wpisy} other {# wpisów}} z {target}",
|
||||||
"notification.admin.report_statuses": "{name} zgłosił(a) {target} w kategorii {category}",
|
"notification.admin.report_statuses": "{name} zgłosił(a) {target} w kategorii {category}",
|
||||||
"notification.admin.report_statuses_other": "{name} zgłosił(a) {target}",
|
"notification.admin.report_statuses_other": "{name} zgłosił(a) {target}",
|
||||||
"notification.admin.sign_up": "Użytkownik {name} zarejestrował się",
|
"notification.admin.sign_up": "{name} rejestruje się",
|
||||||
"notification.admin.sign_up.name_and_others": "zarejestrował(-a) się {name} i {count, plural, one {# inna osoba} few {# inne osoby} other {# innych osób}}",
|
"notification.admin.sign_up.name_and_others": "{name} i {count, plural, one {# inna osoba} few {# inne osoby} other {# innych osób}} zarejestrowali się",
|
||||||
"notification.favourite": "{name} dodaje Twój wpis do ulubionych",
|
"notification.favourite": "{name} lubi twój wpis",
|
||||||
"notification.favourite.name_and_others_with_link": "{name} i <a>{count, plural, one {# inna osoba</a> polubiła twój wpis} few {# inne osoby</a> polubiły twój wpis} other {# innych osób</a> polubiło twój wpis}}",
|
"notification.favourite.name_and_others_with_link": "{name} i <a>{count, plural, one {# inna osoba} few {# inne osoby} other {# innych osób}}</a> lubią twój wpis",
|
||||||
"notification.follow": "{name} obserwuje Cię",
|
"notification.follow": "{name} obserwuje cię",
|
||||||
"notification.follow.name_and_others": "{name} i {count, plural, one {<a># inna osoba</a> cię zaobserwowała} few {<a># inne osoby</a> cię zaobserwowały} other {<a># innych osób</a> cię zaobserwowało}}",
|
"notification.follow.name_and_others": "{name} i <a>{count, plural, one {# inna osoba} few {# inne osoby} other {# innych osób}}</a> zaobserwowali cię",
|
||||||
"notification.follow_request": "{name} chce cię zaobserwować",
|
"notification.follow_request": "{name} chce cię zaobserwować",
|
||||||
"notification.follow_request.name_and_others": "{name} i {count, plural, one {# inna osoba chce} few {# inne osoby chcą} other {# innych osób chce}} zaobserwować twój profil",
|
"notification.follow_request.name_and_others": "{name} i {count, plural, one {# inna osoba} few {# inne osoby} other {# innych osób}} chcą cię zaobserwować",
|
||||||
"notification.label.mention": "Wzmianka",
|
"notification.label.mention": "Wzmianka",
|
||||||
"notification.label.private_mention": "Prywatna wzmianka",
|
"notification.label.private_mention": "Wzmianka bezpośrednia",
|
||||||
"notification.label.private_reply": "Odpowiedź prywatna",
|
"notification.label.private_reply": "Komentarz bezpośredni",
|
||||||
"notification.label.reply": "Odpowiedź",
|
"notification.label.reply": "Komentarz",
|
||||||
"notification.mention": "Wzmianka",
|
"notification.mention": "Wzmianka",
|
||||||
"notification.mentioned_you": "{name} wspomniał(a) o Tobie",
|
"notification.mentioned_you": "{name} wzmiankuje cię",
|
||||||
"notification.moderation-warning.learn_more": "Dowiedz się więcej",
|
"notification.moderation-warning.learn_more": "Dowiedz się więcej",
|
||||||
"notification.moderation_warning": "Otrzymałeś/-łaś ostrzeżenie moderacyjne",
|
"notification.moderation_warning": "Otrzymano ostrzeżenie",
|
||||||
"notification.moderation_warning.action_delete_statuses": "Niektóre twoje wpisy zostały usunięte.",
|
"notification.moderation_warning.action_delete_statuses": "Usunięto niektóre z twoich wpisów.",
|
||||||
"notification.moderation_warning.action_disable": "Twoje konto zostało wyłączone.",
|
"notification.moderation_warning.action_disable": "Twoje konto zostało wyłączone.",
|
||||||
"notification.moderation_warning.action_mark_statuses_as_sensitive": "Niektóre twoje wpisy zostały oznaczone jako wrażliwe.",
|
"notification.moderation_warning.action_mark_statuses_as_sensitive": "Niektóre z twoich wpisów zostały oznaczone jako wrażliwe.",
|
||||||
"notification.moderation_warning.action_none": "Twoje konto otrzymało ostrzeżenie moderacyjne.",
|
"notification.moderation_warning.action_none": "Twoje konto otrzymało ostrzeżenie.",
|
||||||
"notification.moderation_warning.action_sensitive": "Twoje wpisy będą od teraz oznaczane jako wrażliwe.",
|
"notification.moderation_warning.action_sensitive": "Twoje wpisy będą od teraz oznaczane jako wrażliwe.",
|
||||||
"notification.moderation_warning.action_silence": "Twoje konto zostało ograniczone.",
|
"notification.moderation_warning.action_silence": "Twoje konto zostało ograniczone.",
|
||||||
"notification.moderation_warning.action_suspend": "Twoje konto zostało zawieszone.",
|
"notification.moderation_warning.action_suspend": "Twoje konto zostało zawieszone.",
|
||||||
"notification.own_poll": "Twoje głosowanie zakończyło się",
|
"notification.own_poll": "Twoja ankieta została zakończona",
|
||||||
"notification.poll": "Głosowanie, w którym brałeś(-aś) udział, zostało zakończone",
|
"notification.poll": "Zakończyła się ankieta, w której głosowano",
|
||||||
"notification.reblog": "Twój post został podbity przez {name}",
|
"notification.reblog": "Twój post został podbity przez {name}",
|
||||||
"notification.reblog.name_and_others_with_link": "{name} i <a>{count, plural, one {# inna osoba</a> podbiła twój wpis} few {# inne osoby</a> podbiły twój wpis} other {# innych osób</a> podbiło twój wpis}}",
|
"notification.reblog.name_and_others_with_link": "{name} i <a>{count, plural, one {# inna osoba} few {# inne osoby} other {# innych osób}}</a> podbili twój wpis",
|
||||||
"notification.relationships_severance_event": "Utracone związki z {name}",
|
"notification.relationships_severance_event": "Utracono połączenie z {name}",
|
||||||
"notification.relationships_severance_event.account_suspension": "Administrator z {from} zawiesił {target}, więc nie dostaniesz wieści ani nie wejdziesz w interakcje z użytkownikami z tego serwera.",
|
"notification.relationships_severance_event.account_suspension": "Administrator {from} zawiesił {target}, co oznacza, że nie możesz już otrzymywać aktualności ani wchodzić w interakcje z tą osobą.",
|
||||||
"notification.relationships_severance_event.domain_block": "Administrator z {from} zablokował {target}, w tym {followersCount} z Twoich obserwujących i {followingCount, plural, one {# konto} other {# konta}} które obserwujesz.",
|
"notification.relationships_severance_event.domain_block": "Administrator {from} zablokował {target}, w tym {followersCount} twoich obserwujących i {followingCount, plural, one {# konto} few {# konta} other {# kont}}, które obserwujesz.",
|
||||||
"notification.relationships_severance_event.learn_more": "Dowiedz się więcej",
|
"notification.relationships_severance_event.learn_more": "Dowiedz się więcej",
|
||||||
"notification.relationships_severance_event.user_domain_block": "Zablokowałeś {target}, w tym {followersCount} z Twoich obserwujących i {followingCount, plural, one {# konto} other {# konta}} które obserwujesz.",
|
"notification.relationships_severance_event.user_domain_block": "Zablokowałeś {target}, w tym {followersCount} twoich obserwujących i {followingCount, plural, one {# konto} few {# konta} other {# kont}}, które obserwujesz.",
|
||||||
"notification.status": "{name} opublikował(a) nowy wpis",
|
"notification.status": "{name} opublikował(a) nowy wpis",
|
||||||
"notification.update": "{name} edytował(a) post",
|
"notification.update": "{name} edytował(a) post",
|
||||||
"notification_requests.accept": "Akceptuj",
|
"notification_requests.accept": "Akceptuj",
|
||||||
"notification_requests.accept_multiple": "Przyjmij {count, plural, one {# wniosek} few {# wnioski} other {# wniosków}} o powiadomienia…",
|
"notification_requests.accept_multiple": "Przyjmij {count, plural, one {# prośbę} few {# prośby} other {# próśb}}...",
|
||||||
"notification_requests.confirm_accept_multiple.button": "Przyjmij {count, plural, one {wniosek} other {wnioski}} o powiadomienia",
|
"notification_requests.confirm_accept_multiple.button": "Przyjmij {count, plural, one {# prośbę} few {# prośby} other {# próśb}}",
|
||||||
"notification_requests.confirm_accept_multiple.message": "Na pewno przyjąć {count, plural, one {# wniosek o powiadomienie} few {# wnioski o powiadomienia} other {# wniosków o powiadomienia}}?",
|
"notification_requests.confirm_accept_multiple.message": "Zamierzasz przyjąć {count, plural, one {# prośbę} few {# prośby} other {# próśb}}. Czy na pewno chcesz kontynuować?",
|
||||||
"notification_requests.confirm_accept_multiple.title": "Przyjąć wnioski o powiadomienia?",
|
"notification_requests.confirm_accept_multiple.title": "Przyjąć prośby?",
|
||||||
"notification_requests.confirm_dismiss_multiple.button": "Odrzuć {count, plural, one {wniosek} other {wnioski}} o powiadomienia",
|
"notification_requests.confirm_dismiss_multiple.button": "Odrzuć {count, plural, one {# prośbę} few {# prośby} other {# próśb}}",
|
||||||
"notification_requests.confirm_dismiss_multiple.message": "Na pewno odrzucić {count, plural, one {# wniosek o powiadomienie} few {# wnioski o powiadomienia} other {# wniosków o powiadomienia}}? Stracisz do {count, plural, one {niego} other {nich}} łatwy dostęp.",
|
"notification_requests.confirm_dismiss_multiple.message": "Zamierzasz odrzucić {count, plural, one {# prośbę} few {# prośby} other {# próśb}}. Stracisz do {count, plural, one {tego} other {tego}} łatwy dostęp. Czy na pewno chcesz kontynuować?",
|
||||||
"notification_requests.confirm_dismiss_multiple.title": "Odrzuć żądania powiadomień?",
|
"notification_requests.confirm_dismiss_multiple.title": "Odrzucić prośbę?",
|
||||||
"notification_requests.dismiss": "Odrzuć",
|
"notification_requests.dismiss": "Odrzuć",
|
||||||
"notification_requests.dismiss_multiple": "Odrzuć {count, plural, one {# wniosek} few {# wnioski} other {# wniosków}} o powiadomienia…",
|
"notification_requests.dismiss_multiple": "Odrzuć {count, plural, one {# prośbę} few {# prośby} other {# próśb}}...",
|
||||||
"notification_requests.edit_selection": "Edytuj",
|
"notification_requests.edit_selection": "Edytuj",
|
||||||
"notification_requests.exit_selection": "Gotowe",
|
"notification_requests.exit_selection": "Gotowe",
|
||||||
"notification_requests.explainer_for_limited_account": "Powiadomienia od tego konta zostały odfiltrowane bo to konto zostało ograniczone przez moderatora.",
|
"notification_requests.explainer_for_limited_account": "Powiadomienia z tego konta zostały odfiltrowane, ponieważ konto zostało ograniczone przez moderatora.",
|
||||||
"notification_requests.explainer_for_limited_remote_account": "Powiadomienia od tego konta zostały odfiltrowane bo to konto, albo serwer na którym się znajduje, zostało ograniczone przez moderatora.",
|
"notification_requests.explainer_for_limited_remote_account": "Powiadomienia z tego konta zostały odfiltrowane, ponieważ konto lub serwer zostały ograniczone przez moderatora.",
|
||||||
"notification_requests.maximize": "Zmaksymalizuj",
|
"notification_requests.maximize": "Maksymalizuj",
|
||||||
"notification_requests.minimize_banner": "Zminimalizuj baner powiadomień filtrowanych",
|
"notification_requests.minimize_banner": "Minimalizuj odfiltrowane powiadomienia",
|
||||||
"notification_requests.notifications_from": "Powiadomienia od {name}",
|
"notification_requests.notifications_from": "Powiadomienia od {name}",
|
||||||
"notification_requests.title": "Powiadomienia filtrowane",
|
"notification_requests.title": "Odfiltrowane powiadomienia",
|
||||||
"notification_requests.view": "Wyświetl powiadomienia",
|
"notification_requests.view": "Wyświetl powiadomienia",
|
||||||
"notifications.clear": "Wyczyść powiadomienia",
|
"notifications.clear": "Wyczyść powiadomienia",
|
||||||
"notifications.clear_confirmation": "Czy na pewno chcesz bezpowrotnie usunąć wszystkie powiadomienia?",
|
"notifications.clear_confirmation": "Czy na pewno chcesz trwale wyczyścić wszystkie powiadomienia?",
|
||||||
"notifications.clear_title": "Wyczyścić powiadomienia?",
|
"notifications.clear_title": "Wyczyścić powiadomienia?",
|
||||||
"notifications.column_settings.admin.report": "Nowe zgłoszenia:",
|
"notifications.column_settings.admin.report": "Nowe zgłoszenia:",
|
||||||
"notifications.column_settings.admin.sign_up": "Nowe rejestracje:",
|
"notifications.column_settings.admin.sign_up": "Nowo zarejestrowani:",
|
||||||
"notifications.column_settings.alert": "Powiadomienia na pulpicie",
|
"notifications.column_settings.alert": "Powiadomienia na pulpicie",
|
||||||
"notifications.column_settings.favourite": "Ulubione:",
|
"notifications.column_settings.favourite": "Polubione:",
|
||||||
"notifications.column_settings.filter_bar.advanced": "Wyświetl wszystkie kategorie",
|
"notifications.column_settings.filter_bar.advanced": "Wyświetl wszystkie kategorie",
|
||||||
"notifications.column_settings.filter_bar.category": "Szybkie filtrowanie",
|
"notifications.column_settings.filter_bar.category": "Szybkie filtrowanie",
|
||||||
"notifications.column_settings.follow": "Nowi obserwujący:",
|
"notifications.column_settings.follow": "Nowi obserwujący:",
|
||||||
"notifications.column_settings.follow_request": "Nowe prośby o możliwość obserwacji:",
|
"notifications.column_settings.follow_request": "Nowe prośby o obserwowanie:",
|
||||||
"notifications.column_settings.group": "Grupuj",
|
"notifications.column_settings.group": "Grupuj",
|
||||||
"notifications.column_settings.mention": "Wspomnienia:",
|
"notifications.column_settings.mention": "Wzmianki:",
|
||||||
"notifications.column_settings.poll": "Wyniki głosowania:",
|
"notifications.column_settings.poll": "Wyniki ankiety:",
|
||||||
"notifications.column_settings.push": "Powiadomienia push",
|
"notifications.column_settings.push": "Powiadomienia push",
|
||||||
"notifications.column_settings.reblog": "Podbicia:",
|
"notifications.column_settings.reblog": "Podbicia:",
|
||||||
"notifications.column_settings.show": "Pokaż w kolumnie",
|
"notifications.column_settings.show": "Pokaż w kolumnie",
|
||||||
"notifications.column_settings.sound": "Odtwarzaj dźwięk",
|
"notifications.column_settings.sound": "Odtwarzaj dźwięk",
|
||||||
"notifications.column_settings.status": "Nowe wpisy:",
|
"notifications.column_settings.status": "Nowe wpisy:",
|
||||||
"notifications.column_settings.unread_notifications.category": "Nieprzeczytane powiadomienia",
|
"notifications.column_settings.unread_notifications.category": "Nieprzeczytane powiadomienia",
|
||||||
"notifications.column_settings.unread_notifications.highlight": "Podświetl nieprzeczytane powiadomienia",
|
"notifications.column_settings.unread_notifications.highlight": "Wyróżnij nieprzeczytane powiadomienia",
|
||||||
"notifications.column_settings.update": "Edycje:",
|
"notifications.column_settings.update": "Edycje:",
|
||||||
"notifications.filter.all": "Wszystkie",
|
"notifications.filter.all": "Wszystkie",
|
||||||
"notifications.filter.boosts": "Podbicia",
|
"notifications.filter.boosts": "Podbicia",
|
||||||
"notifications.filter.favourites": "Ulubione",
|
"notifications.filter.favourites": "Polubione",
|
||||||
"notifications.filter.follows": "Obserwacje",
|
"notifications.filter.follows": "Obserwacje",
|
||||||
"notifications.filter.mentions": "Wspomnienia",
|
"notifications.filter.mentions": "Wzmianki",
|
||||||
"notifications.filter.polls": "Wyniki głosowania",
|
"notifications.filter.polls": "Wyniki ankiety",
|
||||||
"notifications.filter.statuses": "Aktualizacje od osób które obserwujesz",
|
"notifications.filter.statuses": "Aktualności od obserwowanych",
|
||||||
"notifications.grant_permission": "Przyznaj uprawnienia.",
|
"notifications.grant_permission": "Przyznaj uprawnienia.",
|
||||||
"notifications.group": "{count, number} {count, plural, one {powiadomienie} few {powiadomienia} many {powiadomień} more {powiadomień}}",
|
"notifications.group": "{count, number} {count, plural, one {powiadomienie} few {powiadomienia} many {powiadomień} more {powiadomień}}",
|
||||||
"notifications.mark_as_read": "Oznacz wszystkie powiadomienia jako przeczytane",
|
"notifications.mark_as_read": "Oznacz wszystkie powiadomienia jako przeczytane",
|
||||||
"notifications.permission_denied": "Powiadomienia na pulpicie nie są dostępne, ponieważ wcześniej nie udzielono uprawnień w przeglądarce",
|
"notifications.permission_denied": "Powiadomienia na pulpicie są niedostępne z powodu wcześniejszego braku zgody",
|
||||||
"notifications.permission_denied_alert": "Powiadomienia na pulpicie nie mogą zostać włączone, ponieważ wcześniej odmówiono uprawnień",
|
"notifications.permission_denied_alert": "Nie można włączyć powiadomień na pulpicie, ponieważ wcześniej nie udzielono zgody",
|
||||||
"notifications.permission_required": "Powiadomienia na pulpicie nie są dostępne, ponieważ nie przyznano wymaganego uprawnienia.",
|
"notifications.permission_required": "Powiadomienia na pulpicie są niedostępne, ponieważ nie przyznano wymaganych uprawnień.",
|
||||||
"notifications.policy.accept": "Zaakceptuj",
|
"notifications.policy.accept": "Akceptuj",
|
||||||
"notifications.policy.accept_hint": "Wyświetlaj w powiadomieniach",
|
"notifications.policy.accept_hint": "Pokazuj w powiadomieniach",
|
||||||
"notifications.policy.drop": "Zignoruj",
|
"notifications.policy.drop": "Ignoruj",
|
||||||
"notifications.policy.drop_hint": "Usuń nieodzyskiwalnie.",
|
"notifications.policy.drop_hint": "Usuń trwale",
|
||||||
"notifications.policy.filter": "Odfiltruj",
|
"notifications.policy.filter": "Odfiltruj",
|
||||||
"notifications.policy.filter_hint": "Wyślij do skrzynki powiadomień odfiltrowanych",
|
"notifications.policy.filter_hint": "Przenieś do odfiltrowanych powiadomień",
|
||||||
"notifications.policy.filter_limited_accounts_hint": "Ograniczonych przez moderatorów serwera",
|
"notifications.policy.filter_limited_accounts_hint": "Ograniczonych przez moderatorów serwera",
|
||||||
"notifications.policy.filter_limited_accounts_title": "Kont zmoderowanych",
|
"notifications.policy.filter_limited_accounts_title": "Kont zmoderowanych",
|
||||||
"notifications.policy.filter_new_accounts.hint": "Utworzone w ciągu {days, plural, one {ostatniego dnia} other {ostatnich # dni}}",
|
"notifications.policy.filter_new_accounts.hint": "Utworzonych w ciągu {days, plural, one {ostatniego dnia} other {ostatnich # dni}}",
|
||||||
"notifications.policy.filter_new_accounts_title": "Nowe konta",
|
"notifications.policy.filter_new_accounts_title": "Nowych kont",
|
||||||
"notifications.policy.filter_not_followers_hint": "Zawierające osoby które obserwują cię krócej niż {days, plural, one {dzień} other {# dni}}",
|
"notifications.policy.filter_not_followers_hint": "Uwzględniając osoby, które obserwują cię krócej niż {days, plural, one {# dzień} other {# dni}}",
|
||||||
"notifications.policy.filter_not_followers_title": "Ludzie, którzy cię nie obserwują",
|
"notifications.policy.filter_not_followers_title": "Osób, które cię nie obserwują",
|
||||||
"notifications.policy.filter_not_following_hint": "Aż ich ręcznie nie zatwierdzisz",
|
"notifications.policy.filter_not_following_hint": "Do momentu zatwierdzenia",
|
||||||
"notifications.policy.filter_not_following_title": "Ludzie, których nie obserwujesz",
|
"notifications.policy.filter_not_following_title": "Osób, których nie obserwujesz",
|
||||||
"notifications.policy.filter_private_mentions_hint": "Odfiltrowane, chyba że są odpowiedzią na twoją własną wzmiankę, lub obserwujesz wysyłającego",
|
"notifications.policy.filter_private_mentions_hint": "Odfiltrowane, chyba że są odpowiedzią na wzmiankę od ciebie lub obserwujesz nadawcę",
|
||||||
"notifications.policy.filter_private_mentions_title": "Nieproszone prywatne wzmianki",
|
"notifications.policy.filter_private_mentions_title": "Niechcianych wzmianek bezpośrednich",
|
||||||
"notifications.policy.title": "Zarządzaj powiadomieniami od…",
|
"notifications.policy.title": "Zarządzaj powiadomieniami od…",
|
||||||
"notifications_permission_banner.enable": "Włącz powiadomienia na pulpicie",
|
"notifications_permission_banner.enable": "Włącz powiadomienia na pulpicie",
|
||||||
"notifications_permission_banner.how_to_control": "Aby otrzymywać powiadomienia, gdy Mastodon nie jest otwarty, włącz powiadomienia pulpitu. Możesz dokładnie kontrolować, októrych działaniach będziesz powiadomienia na pulpicie za pomocą przycisku {icon} powyżej, jeżeli tylko zostaną włączone.",
|
"notifications_permission_banner.how_to_control": "Aby otrzymywać powiadomienia, gdy Mastodon nie jest otwarty, włącz powiadomienia na pulpicie. Możesz wybrać, które dokładnie typy interakcji generują powiadomienia na pulpicie za pomocą przycisku {icon} powyżej po ich włączeniu.",
|
||||||
"notifications_permission_banner.title": "Nie przegap niczego",
|
"notifications_permission_banner.title": "Nigdy niczego nie przegapisz",
|
||||||
"onboarding.action.back": "Zabierz mnie z powrotem",
|
"onboarding.action.back": "Zabierz mnie z powrotem",
|
||||||
"onboarding.actions.back": "Zabierz mnie z powrotem",
|
"onboarding.actions.back": "Zabierz mnie z powrotem",
|
||||||
"onboarding.actions.go_to_explore": "Zobacz co się dzieje",
|
"onboarding.actions.go_to_explore": "Zobacz co się dzieje",
|
||||||
"onboarding.actions.go_to_home": "Przejdź do swojego kanału głównego",
|
"onboarding.actions.go_to_home": "Przejdź do swojego kanału głównego",
|
||||||
"onboarding.compose.template": "Witaj #Mastodon!",
|
"onboarding.compose.template": "Witaj #Mastodon!",
|
||||||
"onboarding.follows.empty": "Niestety w tej chwili nie można przedstawić żadnych wyników. Możesz spróbować wyszukać lub przeglądać stronę, aby znaleźć osoby do śledzenia, lub spróbować ponownie później.",
|
"onboarding.follows.empty": "Niestety, w tej chwili nie można nic wyświetlić. Możesz użyć wyszukiwania lub przeglądać stronę główną, aby znaleźć osoby, które chcesz obserwować, albo spróbuj ponownie później.",
|
||||||
"onboarding.follows.lead": "Zarządasz swoim własnym kanałem. Im więcej ludzi śledzisz, tym bardziej aktywny i ciekawy będzie Twój kanał. Te profile mogą być dobrym punktem wyjścia— możesz przestać je obserwować w dowolnej chwili!",
|
"onboarding.follows.lead": "Zarządasz swoim własnym kanałem. Im więcej ludzi śledzisz, tym bardziej aktywny i ciekawy będzie Twój kanał. Te profile mogą być dobrym punktem wyjścia— możesz przestać je obserwować w dowolnej chwili!",
|
||||||
"onboarding.follows.title": "Popularne na Mastodonie",
|
"onboarding.follows.title": "Popularne na Mastodonie",
|
||||||
"onboarding.profile.discoverable": "Spraw mój profil odkrywalnym",
|
"onboarding.profile.discoverable": "Spraw, by mój profil był widoczny",
|
||||||
"onboarding.profile.discoverable_hint": "Kiedy zapisujesz się do odkrywalności w Mastodonie, twoje wpisy mogą pokazywać się w wynikach wyszukiwania i trendach, a twój profil może być sugerowany użytkownikom o podobnych zainteresowaniach.",
|
"onboarding.profile.discoverable_hint": "Gdy zdecydujesz się na włączenie widoczności na Mastodon, twoje wpisy mogą pojawiać się w wynikach wyszukiwania i aktualnościach, a twój profil może być polecany osobom o podobnych zainteresowaniach.",
|
||||||
"onboarding.profile.display_name": "Nazwa wyświetlana",
|
"onboarding.profile.display_name": "Wyświetlana nazwa",
|
||||||
"onboarding.profile.display_name_hint": "Twoje imię lub pseudonim…",
|
"onboarding.profile.display_name_hint": "Twoje imię lub pseudonim…",
|
||||||
"onboarding.profile.lead": "Możesz wypełnić te dane później w menu ustawień, gdzie dostępnych jest jeszcze więcej opcji.",
|
"onboarding.profile.lead": "Możesz wypełnić te dane później w menu ustawień, gdzie dostępnych jest jeszcze więcej opcji.",
|
||||||
"onboarding.profile.note": "O mnie",
|
"onboarding.profile.note": "Opis",
|
||||||
"onboarding.profile.note_hint": "Możesz @wspomnieć użytkowników albo #hasztagi…",
|
"onboarding.profile.note_hint": "Możesz @wzmiankować innych lub dodawać #hashtagi…",
|
||||||
"onboarding.profile.save_and_continue": "Zapisz i kontynuuj",
|
"onboarding.profile.save_and_continue": "Zapisz i kontynuuj",
|
||||||
"onboarding.profile.title": "Ustawienia profilu",
|
"onboarding.profile.title": "Ustawienia profilu",
|
||||||
"onboarding.profile.upload_avatar": "Dodaj zdjęcie profilowe",
|
"onboarding.profile.upload_avatar": "Dodaj zdjęcie profilowe",
|
||||||
"onboarding.profile.upload_header": "Dodaj banner profilu",
|
"onboarding.profile.upload_header": "Dodaj baner",
|
||||||
"onboarding.share.lead": "Daj znać ludziom, jak mogą cię znaleźć na Mastodonie!",
|
"onboarding.share.lead": "Daj znać ludziom, jak mogą cię znaleźć na Mastodonie!",
|
||||||
"onboarding.share.message": "Jestem {username} na #Mastodon! Śledź mnie tutaj {url}",
|
"onboarding.share.message": "Jestem {username} na #Mastodon! Śledź mnie tutaj {url}",
|
||||||
"onboarding.share.next_steps": "Możliwe dalsze kroki:",
|
"onboarding.share.next_steps": "Możliwe dalsze kroki:",
|
||||||
|
@ -650,28 +650,28 @@
|
||||||
"onboarding.tips.accounts_from_other_servers": "<strong>Czy wiesz?</strong> Ponieważ Mastodon jest zdecentralizowany, niektóre profile, z którymi się spotkasz, będą hostowane na serwerach innych niż twoje. A mimo to możesz z nimi bezproblemowo wchodzić w interakcje! Ich serwer jest w drugiej połowie ich nazwy użytkownika!",
|
"onboarding.tips.accounts_from_other_servers": "<strong>Czy wiesz?</strong> Ponieważ Mastodon jest zdecentralizowany, niektóre profile, z którymi się spotkasz, będą hostowane na serwerach innych niż twoje. A mimo to możesz z nimi bezproblemowo wchodzić w interakcje! Ich serwer jest w drugiej połowie ich nazwy użytkownika!",
|
||||||
"onboarding.tips.migration": "<strong>Czy wiesz?</strong> Jeśli uważasz, że {domain} nie jest dla Ciebie dobrym wyborem na serwer w przyszłości, możesz przenieść się na inny serwer Mastodona bez utraty obserwujących. Możesz nawet hostować swój własny serwer!",
|
"onboarding.tips.migration": "<strong>Czy wiesz?</strong> Jeśli uważasz, że {domain} nie jest dla Ciebie dobrym wyborem na serwer w przyszłości, możesz przenieść się na inny serwer Mastodona bez utraty obserwujących. Możesz nawet hostować swój własny serwer!",
|
||||||
"onboarding.tips.verification": "<strong>Czy wiesz?</strong> Możesz zweryfikować swoje konto, umieszczając link do profilu Mastodon na swojej własnej stronie internetowej, a następnie dodając stronę do swojego profilu. Żadne opłaty lub dokumenty nie są wymagane!",
|
"onboarding.tips.verification": "<strong>Czy wiesz?</strong> Możesz zweryfikować swoje konto, umieszczając link do profilu Mastodon na swojej własnej stronie internetowej, a następnie dodając stronę do swojego profilu. Żadne opłaty lub dokumenty nie są wymagane!",
|
||||||
"password_confirmation.exceeds_maxlength": "Potwierdzenie hasła przekracza maksymalną długość hasła",
|
"password_confirmation.exceeds_maxlength": "Długość potwierdzonego hasła przekracza maksymalną długość hasła",
|
||||||
"password_confirmation.mismatching": "Wprowadzone hasła różnią się od siebie",
|
"password_confirmation.mismatching": "Hasła nie są takie same",
|
||||||
"picture_in_picture.restore": "Odłóż",
|
"picture_in_picture.restore": "Powrót",
|
||||||
"poll.closed": "Zamknięte",
|
"poll.closed": "Zamknięte",
|
||||||
"poll.refresh": "Odśwież",
|
"poll.refresh": "Odśwież",
|
||||||
"poll.reveal": "Wyświetl wyniki",
|
"poll.reveal": "Zobacz wyniki",
|
||||||
"poll.total_people": "{count, plural, one {# osoba} few {# osoby} many {# osób} other {# osób}}",
|
"poll.total_people": "{count, plural, one {# osoba} few {# osoby} many {# osób} other {# osób}}",
|
||||||
"poll.total_votes": "{count, plural, one {# głos} few {# głosy} many {# głosów} other {# głosów}}",
|
"poll.total_votes": "{count, plural, one {# głos} few {# głosy} many {# głosów} other {# głosów}}",
|
||||||
"poll.vote": "Zagłosuj",
|
"poll.vote": "Głosuj",
|
||||||
"poll.voted": "Zagłosowałeś_aś na tą odpowiedź",
|
"poll.voted": "Wybrano tę odpowiedź",
|
||||||
"poll.votes": "{votes, plural, one {# głos} few {# głosy} many {# głosów} other {# głosów}}",
|
"poll.votes": "{votes, plural, one {# głos} few {# głosy} many {# głosów} other {# głosów}}",
|
||||||
"poll_button.add_poll": "Dodaj głosowanie",
|
"poll_button.add_poll": "Dodaj ankietę",
|
||||||
"poll_button.remove_poll": "Usuń głosowanie",
|
"poll_button.remove_poll": "Usuń ankietę",
|
||||||
"privacy.change": "Dostosuj widoczność wpisów",
|
"privacy.change": "Dostosuj widoczność wpisów",
|
||||||
"privacy.direct.long": "Wszyscy wspomnieni w tym wpisie",
|
"privacy.direct.long": "Wszyscy wzmiankowani w tym wpisie",
|
||||||
"privacy.direct.short": "Konkretni ludzie",
|
"privacy.direct.short": "Wzmianki bezpośrednie",
|
||||||
"privacy.private.long": "Tylko ci, którzy cię obserwują",
|
"privacy.private.long": "Tylko obserwujący",
|
||||||
"privacy.private.short": "Obserwujący",
|
"privacy.private.short": "Obserwujący",
|
||||||
"privacy.public.long": "Ktokolwiek na i poza Mastodonem",
|
"privacy.public.long": "Każdy na i poza Mastodon",
|
||||||
"privacy.public.short": "Publiczny",
|
"privacy.public.short": "Publiczny",
|
||||||
"privacy.unlisted.additional": "Taki sam jak \"Publiczny\", ale wpis nie pojawi się w kanałach na żywo, hasztagach, odkrywaniu, ani w wyszukiwaniu w Mastodonie, nawet jeżeli jest to włączone w ustawieniach konta.",
|
"privacy.unlisted.additional": "Dostępny podobnie jak wpis publiczny, ale nie będzie widoczny w aktualnościach, hashtagach ani wyszukiwarce Mastodon, nawet jeśli twoje konto jest widoczne.",
|
||||||
"privacy.unlisted.long": "Widoczne dla każdego, z wyłączeniem funkcji odkrywania",
|
"privacy.unlisted.long": "Niewidoczny w aktualnościach",
|
||||||
"privacy.unlisted.short": "Niewidoczny",
|
"privacy.unlisted.short": "Niewidoczny",
|
||||||
"privacy_policy.last_updated": "Data ostatniej aktualizacji: {date}",
|
"privacy_policy.last_updated": "Data ostatniej aktualizacji: {date}",
|
||||||
"privacy_policy.title": "Polityka prywatności",
|
"privacy_policy.title": "Polityka prywatności",
|
||||||
|
@ -690,27 +690,27 @@
|
||||||
"relative_time.minutes": "{number} min.",
|
"relative_time.minutes": "{number} min.",
|
||||||
"relative_time.seconds": "{number} s.",
|
"relative_time.seconds": "{number} s.",
|
||||||
"relative_time.today": "dzisiaj",
|
"relative_time.today": "dzisiaj",
|
||||||
"reply_indicator.attachments": "{count, plural, one {# załącznik} few {# załączniki} many {# załączników} other {# załączniku}}",
|
"reply_indicator.attachments": "{count, plural, one {# załącznik} few {# załączniki} many {# załączników} other {# załączników}}",
|
||||||
"reply_indicator.cancel": "Anuluj",
|
"reply_indicator.cancel": "Anuluj",
|
||||||
"reply_indicator.poll": "Ankieta",
|
"reply_indicator.poll": "Ankieta",
|
||||||
"report.block": "Zablokuj",
|
"report.block": "Zablokuj",
|
||||||
"report.block_explanation": "Nie zobaczysz ich wpisów. Nie będą mogli zobaczyć Twoich postów ani cię obserwować. Będą mogli domyślić się, że są zablokowani.",
|
"report.block_explanation": "Nie zobaczysz wpisów tej osoby, a ona twoich, ani nie będzie mogła cię zaobserwować. Informacja o zablokowaniu będzie widoczna.",
|
||||||
"report.categories.legal": "Prawne",
|
"report.categories.legal": "Prawne",
|
||||||
"report.categories.other": "Inne",
|
"report.categories.other": "Inne",
|
||||||
"report.categories.spam": "Spam",
|
"report.categories.spam": "Spam",
|
||||||
"report.categories.violation": "Zawartość narusza co najmniej jedną zasadę serwera",
|
"report.categories.violation": "Zawartość narusza co najmniej jedną zasadę serwera",
|
||||||
"report.category.subtitle": "Wybierz najbardziej pasującą opcję",
|
"report.category.subtitle": "Wybierz najbardziej pasującą opcję",
|
||||||
"report.category.title": "Powiedz, co się dzieje z tym {type}",
|
"report.category.title": "Powiedz, co się dzieje z tym {type}",
|
||||||
"report.category.title_account": "profil",
|
"report.category.title_account": "profilem",
|
||||||
"report.category.title_status": "post",
|
"report.category.title_status": "wpisem",
|
||||||
"report.close": "Gotowe",
|
"report.close": "Gotowe",
|
||||||
"report.comment.title": "Czy jest jeszcze coś, co uważasz, że powinniśmy wiedzieć?",
|
"report.comment.title": "Czy jest coś jeszcze, co powinniśmy wiedzieć?",
|
||||||
"report.forward": "Przekaż na {target}",
|
"report.forward": "Prześlij do {target}",
|
||||||
"report.forward_hint": "To konto znajduje się na innej instancji. Czy chcesz wysłać anonimową kopię zgłoszenia rnież na nią?",
|
"report.forward_hint": "Konto pochodzi z innego serwera. Czy chcesz również tam wysłać kopię zgłoszenia anonimowo?",
|
||||||
"report.mute": "Wycisz",
|
"report.mute": "Wycisz",
|
||||||
"report.mute_explanation": "Nie zobaczysz ich wpisów. Mimo to będą mogli wciąż obserwować cię i widzieć twoje wpisy, ale nie będą widzieli, że są wyciszeni.",
|
"report.mute_explanation": "Nie zobaczysz wpisów tej osoby, ale ona nadal będzie mogła cię obserwować i zobaczyć twoje wpisy. Informacja o wyciszeniu nie będzie widoczna.",
|
||||||
"report.next": "Dalej",
|
"report.next": "Dalej",
|
||||||
"report.placeholder": "Dodatkowe komentarze",
|
"report.placeholder": "Dodatkowe informacje",
|
||||||
"report.reasons.dislike": "Nie podoba mi się to",
|
"report.reasons.dislike": "Nie podoba mi się to",
|
||||||
"report.reasons.dislike_description": "Nie jest to coś, co chciałoby się zobaczyć",
|
"report.reasons.dislike_description": "Nie jest to coś, co chciałoby się zobaczyć",
|
||||||
"report.reasons.legal": "To jest nielegalne",
|
"report.reasons.legal": "To jest nielegalne",
|
||||||
|
|
|
@ -89,7 +89,7 @@
|
||||||
"announcement.announcement": "Comunicados",
|
"announcement.announcement": "Comunicados",
|
||||||
"attachments_list.unprocessed": "(não processado)",
|
"attachments_list.unprocessed": "(não processado)",
|
||||||
"audio.hide": "Ocultar áudio",
|
"audio.hide": "Ocultar áudio",
|
||||||
"block_modal.remote_users_caveat": "Pediremos ao servidor {domínio} que respeite sua decisão. No entanto, a conformidade não é garantida pois alguns servidores podem lidar com os blocos de maneira diferente. As postagens públicas ainda podem estar visíveis para usuários não logados.",
|
"block_modal.remote_users_caveat": "Pediremos ao servidor {domain} que respeite sua decisão. No entanto, a conformidade não é garantida, já que alguns servidores podem lidar com bloqueios de maneira diferente. As postagens públicas ainda podem estar visíveis para usuários não logados.",
|
||||||
"block_modal.show_less": "Mostrar menos",
|
"block_modal.show_less": "Mostrar menos",
|
||||||
"block_modal.show_more": "Mostrar mais",
|
"block_modal.show_more": "Mostrar mais",
|
||||||
"block_modal.they_cant_mention": "Eles não podem mencionar ou seguir você.",
|
"block_modal.they_cant_mention": "Eles não podem mencionar ou seguir você.",
|
||||||
|
@ -217,12 +217,12 @@
|
||||||
"dismissable_banner.explore_statuses": "Estas são postagens de toda a rede social que estão ganhando tração hoje. Postagens mais recentes com mais impulsos e favoritos têm classificações mais altas.",
|
"dismissable_banner.explore_statuses": "Estas são postagens de toda a rede social que estão ganhando tração hoje. Postagens mais recentes com mais impulsos e favoritos têm classificações mais altas.",
|
||||||
"dismissable_banner.explore_tags": "Estas hashtags estão ganhando popularidade no momento entre as pessoas deste e de outros servidores da rede descentralizada.",
|
"dismissable_banner.explore_tags": "Estas hashtags estão ganhando popularidade no momento entre as pessoas deste e de outros servidores da rede descentralizada.",
|
||||||
"dismissable_banner.public_timeline": "Estas são as publicações públicas mais recentes de pessoas na rede social que pessoas em {domain} seguem.",
|
"dismissable_banner.public_timeline": "Estas são as publicações públicas mais recentes de pessoas na rede social que pessoas em {domain} seguem.",
|
||||||
"domain_block_modal.block": "Servidor de blocos.",
|
"domain_block_modal.block": "Bloquear servidor",
|
||||||
"domain_block_modal.block_account_instead": "Bloco @(nome)",
|
"domain_block_modal.block_account_instead": "Bloquear @{name}",
|
||||||
"domain_block_modal.they_can_interact_with_old_posts": "Pessoas deste servidor podem interagir com suas publicações antigas.",
|
"domain_block_modal.they_can_interact_with_old_posts": "Pessoas deste servidor podem interagir com suas publicações antigas.",
|
||||||
"domain_block_modal.they_cant_follow": "Ninguém deste servidor pode lhe seguir.",
|
"domain_block_modal.they_cant_follow": "Ninguém deste servidor pode lhe seguir.",
|
||||||
"domain_block_modal.they_wont_know": "Eles não saberão que foram bloqueados.",
|
"domain_block_modal.they_wont_know": "Eles não saberão que foram bloqueados.",
|
||||||
"domain_block_modal.title": "Dominio do bloco",
|
"domain_block_modal.title": "Bloquear domínio?",
|
||||||
"domain_block_modal.you_will_lose_num_followers": "Você perderá {followersCount, plural, one {{followersCountDisplay} seguidor} other {{followersCountDisplay} seguidores}} e {followingCount, plural, one {{followingCountDisplay} pessoa que você segue} other {{followingCountDisplay} pessoas que você segue}}.",
|
"domain_block_modal.you_will_lose_num_followers": "Você perderá {followersCount, plural, one {{followersCountDisplay} seguidor} other {{followersCountDisplay} seguidores}} e {followingCount, plural, one {{followingCountDisplay} pessoa que você segue} other {{followingCountDisplay} pessoas que você segue}}.",
|
||||||
"domain_block_modal.you_will_lose_relationships": "Você irá perder todos os seguidores e pessoas que você segue neste servidor.",
|
"domain_block_modal.you_will_lose_relationships": "Você irá perder todos os seguidores e pessoas que você segue neste servidor.",
|
||||||
"domain_block_modal.you_wont_see_posts": "Você não verá postagens ou notificações de usuários neste servidor.",
|
"domain_block_modal.you_wont_see_posts": "Você não verá postagens ou notificações de usuários neste servidor.",
|
||||||
|
@ -233,9 +233,9 @@
|
||||||
"domain_pill.their_server": "Sua casa digital, onde ficam todas as suas postagens.",
|
"domain_pill.their_server": "Sua casa digital, onde ficam todas as suas postagens.",
|
||||||
"domain_pill.their_username": "Seu identificador exclusivo em seu servidor. É possível encontrar usuários com o mesmo nome de usuário em servidores diferentes.",
|
"domain_pill.their_username": "Seu identificador exclusivo em seu servidor. É possível encontrar usuários com o mesmo nome de usuário em servidores diferentes.",
|
||||||
"domain_pill.username": "Nome de usuário",
|
"domain_pill.username": "Nome de usuário",
|
||||||
"domain_pill.whats_in_a_handle": "O que há em uma alça?",
|
"domain_pill.whats_in_a_handle": "O que há em um identificador?",
|
||||||
"domain_pill.who_they_are": "Como os identificadores indicam quem alguém é e onde está, você pode interagir com pessoas na web social de <button>plataformas alimentadas pelo ActivityPub</button>.",
|
"domain_pill.who_they_are": "Como os identificadores indicam quem alguém é e onde está, você pode interagir com pessoas na rede de <button>plataformas alimentadas pelo ActivityPub</button>.",
|
||||||
"domain_pill.who_you_are": "Como seu identificador indica quem você é e onde está, as pessoas podem interagir com você nas redes sociais das <button>plataformas alimentadas pelo ActivityPub</button>.",
|
"domain_pill.who_you_are": "Como seu identificador indica quem você é e onde está, as pessoas podem interagir com você na rede de <button>plataformas alimentadas pelo ActivityPub</button>.",
|
||||||
"domain_pill.your_handle": "Seu identificador:",
|
"domain_pill.your_handle": "Seu identificador:",
|
||||||
"domain_pill.your_server": "Sua casa digital, onde ficam todas as suas postagens. Não gosta deste? Transfira servidores a qualquer momento e traga seus seguidores também.",
|
"domain_pill.your_server": "Sua casa digital, onde ficam todas as suas postagens. Não gosta deste? Transfira servidores a qualquer momento e traga seus seguidores também.",
|
||||||
"domain_pill.your_username": "Seu identificador exclusivo neste servidor. É possível encontrar usuários com o mesmo nome de usuário em servidores diferentes.",
|
"domain_pill.your_username": "Seu identificador exclusivo neste servidor. É possível encontrar usuários com o mesmo nome de usuário em servidores diferentes.",
|
||||||
|
@ -618,13 +618,13 @@
|
||||||
"onboarding.actions.go_to_home": "Ir para sua página inicial",
|
"onboarding.actions.go_to_home": "Ir para sua página inicial",
|
||||||
"onboarding.compose.template": "Olá #Mastodon!",
|
"onboarding.compose.template": "Olá #Mastodon!",
|
||||||
"onboarding.follows.empty": "Infelizmente, não é possível mostrar resultados agora. Você pode tentar usar a busca ou navegar na página de exploração para encontrar pessoas para seguir, ou tentar novamente mais tarde.",
|
"onboarding.follows.empty": "Infelizmente, não é possível mostrar resultados agora. Você pode tentar usar a busca ou navegar na página de exploração para encontrar pessoas para seguir, ou tentar novamente mais tarde.",
|
||||||
"onboarding.follows.lead": "You curate your own home feed. The more people you follow, the more active and interesting it will be. These profiles may be a good starting point—you can always unfollow them later!",
|
"onboarding.follows.lead": "Sua página inicial é a principal forma de explorar o Mastodon. Quanto mais pessoas você seguir, mais ativo e interessante ele será. Para começar, aqui estão algumas sugestões:",
|
||||||
"onboarding.follows.title": "Popular no Mastodon",
|
"onboarding.follows.title": "Personalize sua página inicial",
|
||||||
"onboarding.profile.discoverable": "Tornar meu perfil descobrível",
|
"onboarding.profile.discoverable": "Tornar meu perfil descobrível",
|
||||||
"onboarding.profile.discoverable_hint": "Quando você aceita a capacidade de descoberta no Mastodon, suas postagens podem aparecer nos resultados de pesquisa e nas tendências, e seu perfil pode ser sugerido a pessoas com interesses similares aos seus.",
|
"onboarding.profile.discoverable_hint": "Quando você aceita a capacidade de descoberta no Mastodon, suas postagens podem aparecer nos resultados de pesquisa e nas tendências, e seu perfil pode ser sugerido a pessoas com interesses similares aos seus.",
|
||||||
"onboarding.profile.display_name": "Nome de exibição",
|
"onboarding.profile.display_name": "Nome de exibição",
|
||||||
"onboarding.profile.display_name_hint": "Seu nome completo ou apelido…",
|
"onboarding.profile.display_name_hint": "Seu nome completo ou apelido…",
|
||||||
"onboarding.profile.lead": "Você sempre pode completar isso mais tarde nas configurações, onde ainda mais opções de personalização estão disponíveis.",
|
"onboarding.profile.lead": "Você pode completar isso mais tarde nas configurações, onde ainda mais opções de personalização estão disponíveis.",
|
||||||
"onboarding.profile.note": "Biografia",
|
"onboarding.profile.note": "Biografia",
|
||||||
"onboarding.profile.note_hint": "Você pode @mencionar outras pessoas ou usar #hashtags…",
|
"onboarding.profile.note_hint": "Você pode @mencionar outras pessoas ou usar #hashtags…",
|
||||||
"onboarding.profile.save_and_continue": "Salvar e continuar",
|
"onboarding.profile.save_and_continue": "Salvar e continuar",
|
||||||
|
@ -632,21 +632,21 @@
|
||||||
"onboarding.profile.upload_avatar": "Enviar imagem de perfil",
|
"onboarding.profile.upload_avatar": "Enviar imagem de perfil",
|
||||||
"onboarding.profile.upload_header": "Carregar cabeçalho do perfil",
|
"onboarding.profile.upload_header": "Carregar cabeçalho do perfil",
|
||||||
"onboarding.share.lead": "Deixe as pessoas saberem como elas podem te encontrar no Mastodon!",
|
"onboarding.share.lead": "Deixe as pessoas saberem como elas podem te encontrar no Mastodon!",
|
||||||
"onboarding.share.message": "Eu sou {username} no #Mastodon! Venha me seguir em {url}",
|
"onboarding.share.message": "Eu sou {username} no #Mastodon! Me siga em {url}",
|
||||||
"onboarding.share.next_steps": "Possíveis próximos passos:",
|
"onboarding.share.next_steps": "Possíveis próximos passos:",
|
||||||
"onboarding.share.title": "Compartilhe seu perfil",
|
"onboarding.share.title": "Compartilhe seu perfil",
|
||||||
"onboarding.start.lead": "Your new Mastodon account is ready to go. Here's how you can make the most of it:",
|
"onboarding.start.lead": "Agora você faz parte do Mastodon, uma plataforma de mídia social única e descentralizada, onde você — e não um algoritmo — define sua própria experiência. Vamos ajudá-lo a começar nessa nova fronteira social:",
|
||||||
"onboarding.start.skip": "Want to skip right ahead?",
|
"onboarding.start.skip": "Não precisa de ajuda para começar?",
|
||||||
"onboarding.start.title": "Você conseguiu!",
|
"onboarding.start.title": "Você conseguiu!",
|
||||||
"onboarding.steps.follow_people.body": "You curate your own feed. Lets fill it with interesting people.",
|
"onboarding.steps.follow_people.body": "Seguir pessoas interessantes é o que o Mastodon tem de melhor.",
|
||||||
"onboarding.steps.follow_people.title": "Follow {count, plural, one {one person} other {# people}}",
|
"onboarding.steps.follow_people.title": "Personalize sua página inicial",
|
||||||
"onboarding.steps.publish_status.body": "Diga olá para o mundo.",
|
"onboarding.steps.publish_status.body": "Diga olá para o mundo com texto, fotos, videos ou enquetes {emoji}",
|
||||||
"onboarding.steps.publish_status.title": "Crie sua primeira publicação",
|
"onboarding.steps.publish_status.title": "Crie sua primeira publicação",
|
||||||
"onboarding.steps.setup_profile.body": "Others are more likely to interact with you with a filled out profile.",
|
"onboarding.steps.setup_profile.body": "Aumente suas interações com um perfil completo.",
|
||||||
"onboarding.steps.setup_profile.title": "Customize your profile",
|
"onboarding.steps.setup_profile.title": "Personalize seu perfil",
|
||||||
"onboarding.steps.share_profile.body": "Let your friends know how to find you on Mastodon!",
|
"onboarding.steps.share_profile.body": "Deixe seus amigos saberem como encontrar você no Mastodon",
|
||||||
"onboarding.steps.share_profile.title": "Share your profile",
|
"onboarding.steps.share_profile.title": "Compartilhe seu perfil no Mastodon",
|
||||||
"onboarding.tips.2fa": "<strong>Você sabia?</strong> Você pode proteger sua conta configurando a autenticação dupla nas configurações de conta. Ele funciona com qualquer aplicativo de autenticação de sua escolha, nenhum número de telefone é necessário!",
|
"onboarding.tips.2fa": "<strong>Você sabia?</strong> Você pode proteger sua conta configurando a autenticação de dois fatores nas configurações de conta. Ela funciona com qualquer aplicativo de autenticação de sua escolha, nenhum número de telefone é necessário!",
|
||||||
"onboarding.tips.accounts_from_other_servers": "<strong>Você sabia?</strong> Como o Mastodon é descentralizado, alguns perfis que você encontrar serão hospedados em outros servidores que não os seus. E ainda assim você pode interagir com eles perfeitamente! O servidor deles está na segunda metade do nome de usuário!",
|
"onboarding.tips.accounts_from_other_servers": "<strong>Você sabia?</strong> Como o Mastodon é descentralizado, alguns perfis que você encontrar serão hospedados em outros servidores que não os seus. E ainda assim você pode interagir com eles perfeitamente! O servidor deles está na segunda metade do nome de usuário!",
|
||||||
"onboarding.tips.migration": "<strong>Você sabia?</strong> Se você sente que {domain} não é uma boa escolha de servidor para você no futuro, você pode mudar para outro servidor do Mastodon sem perder seus seguidores. Você pode até mesmo hospedar seu próprio servidor!",
|
"onboarding.tips.migration": "<strong>Você sabia?</strong> Se você sente que {domain} não é uma boa escolha de servidor para você no futuro, você pode mudar para outro servidor do Mastodon sem perder seus seguidores. Você pode até mesmo hospedar seu próprio servidor!",
|
||||||
"onboarding.tips.verification": "<strong>Você sabia?</strong> Você pode verificar sua conta colocando um link para o seu perfil do Mastodon no seu próprio site e adicionando o site ao seu perfil. Não são necessárias taxas ou documentos!",
|
"onboarding.tips.verification": "<strong>Você sabia?</strong> Você pode verificar sua conta colocando um link para o seu perfil do Mastodon no seu próprio site e adicionando o site ao seu perfil. Não são necessárias taxas ou documentos!",
|
||||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -11,6 +11,7 @@
|
||||||
"about.not_available": "Această informație nu a fost pusă la dispoziție pe acest server.",
|
"about.not_available": "Această informație nu a fost pusă la dispoziție pe acest server.",
|
||||||
"about.powered_by": "Media socială descentralizată furnizată de {mastodon}",
|
"about.powered_by": "Media socială descentralizată furnizată de {mastodon}",
|
||||||
"about.rules": "Reguli server",
|
"about.rules": "Reguli server",
|
||||||
|
"account.account_note_header": "Notă personală",
|
||||||
"account.add_or_remove_from_list": "Adaugă sau elimină din liste",
|
"account.add_or_remove_from_list": "Adaugă sau elimină din liste",
|
||||||
"account.badges.bot": "Robot",
|
"account.badges.bot": "Robot",
|
||||||
"account.badges.group": "Grup",
|
"account.badges.group": "Grup",
|
||||||
|
@ -29,11 +30,13 @@
|
||||||
"account.featured_tags.last_status_at": "Ultima postare pe {date}",
|
"account.featured_tags.last_status_at": "Ultima postare pe {date}",
|
||||||
"account.featured_tags.last_status_never": "Fără postări",
|
"account.featured_tags.last_status_never": "Fără postări",
|
||||||
"account.featured_tags.title": "Haștagurile recomandate de {name}",
|
"account.featured_tags.title": "Haștagurile recomandate de {name}",
|
||||||
"account.follow": "Abonează-te",
|
"account.follow": "Urmărește",
|
||||||
"account.follow_back": "Urmăreşte înapoi",
|
"account.follow_back": "Urmăreşte înapoi",
|
||||||
"account.followers": "Urmăritori",
|
"account.followers": "Urmăritori",
|
||||||
"account.followers.empty": "Acest utilizator nu are încă urmăritori.",
|
"account.followers.empty": "Acest utilizator nu are încă urmăritori.",
|
||||||
|
"account.followers_counter": "{count, plural, one {{counter} urmăritor} few {{counter} urmăritori} other {{counter} urmăritori}}",
|
||||||
"account.following": "Urmăriți",
|
"account.following": "Urmăriți",
|
||||||
|
"account.following_counter": "{count, plural, one {{counter} urmărit} few {{counter} urmărit} other {{counter} urmărit}}",
|
||||||
"account.follows.empty": "Momentan acest utilizator nu are niciun abonament.",
|
"account.follows.empty": "Momentan acest utilizator nu are niciun abonament.",
|
||||||
"account.go_to_profile": "Mergi la profil",
|
"account.go_to_profile": "Mergi la profil",
|
||||||
"account.hide_reblogs": "Ascunde distribuirile de la @{name}",
|
"account.hide_reblogs": "Ascunde distribuirile de la @{name}",
|
||||||
|
@ -49,6 +52,7 @@
|
||||||
"account.mute_notifications_short": "Amuțește notificările",
|
"account.mute_notifications_short": "Amuțește notificările",
|
||||||
"account.mute_short": "Ignoră",
|
"account.mute_short": "Ignoră",
|
||||||
"account.muted": "Pus pe silențios",
|
"account.muted": "Pus pe silențios",
|
||||||
|
"account.mutual": "Mutual",
|
||||||
"account.no_bio": "Nicio descriere furnizată.",
|
"account.no_bio": "Nicio descriere furnizată.",
|
||||||
"account.open_original_page": "Deschide pagina originală",
|
"account.open_original_page": "Deschide pagina originală",
|
||||||
"account.posts": "Postări",
|
"account.posts": "Postări",
|
||||||
|
@ -58,12 +62,14 @@
|
||||||
"account.requested_follow": "{name} A cerut să vă urmărească",
|
"account.requested_follow": "{name} A cerut să vă urmărească",
|
||||||
"account.share": "Distribuie profilul lui @{name}",
|
"account.share": "Distribuie profilul lui @{name}",
|
||||||
"account.show_reblogs": "Afișează distribuirile de la @{name}",
|
"account.show_reblogs": "Afișează distribuirile de la @{name}",
|
||||||
|
"account.statuses_counter": "{count, plural, one {{counter} postare} few {{counter} postări} other {{counter} postări}}",
|
||||||
"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": "Deblochează",
|
"account.unblock_short": "Deblochează",
|
||||||
"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_short": "Dezamuțire notificări",
|
||||||
"account.unmute_short": "Reafișare",
|
"account.unmute_short": "Reafișare",
|
||||||
"account_note.placeholder": "Click to add a note",
|
"account_note.placeholder": "Click to add a note",
|
||||||
"admin.dashboard.daily_retention": "Rata de retenţie a utilizatorului pe zi după înregistrare",
|
"admin.dashboard.daily_retention": "Rata de retenţie a utilizatorului pe zi după înregistrare",
|
||||||
|
@ -71,11 +77,14 @@
|
||||||
"admin.dashboard.retention.average": "În medie",
|
"admin.dashboard.retention.average": "În medie",
|
||||||
"admin.dashboard.retention.cohort": "Înregistrări lunar",
|
"admin.dashboard.retention.cohort": "Înregistrări lunar",
|
||||||
"admin.dashboard.retention.cohort_size": "Utilizatori noi",
|
"admin.dashboard.retention.cohort_size": "Utilizatori noi",
|
||||||
|
"admin.impact_report.instance_followers": "Urmăritori pe care utilizatorii noștri i-ar pierde",
|
||||||
|
"admin.impact_report.instance_follows": "Urmăritori pe care utilizatorii lor i-ar pierde",
|
||||||
"admin.impact_report.title": "Rezumatul impactului",
|
"admin.impact_report.title": "Rezumatul impactului",
|
||||||
"alert.rate_limited.message": "Vă rugăm să reîncercați după {retry_time, time, medium}.",
|
"alert.rate_limited.message": "Vă rugăm să reîncercați după {retry_time, time, medium}.",
|
||||||
"alert.rate_limited.title": "Debit limitat",
|
"alert.rate_limited.title": "Debit limitat",
|
||||||
"alert.unexpected.message": "A apărut o eroare neașteptată.",
|
"alert.unexpected.message": "A apărut o eroare neașteptată.",
|
||||||
"alert.unexpected.title": "Ups!",
|
"alert.unexpected.title": "Ups!",
|
||||||
|
"alt_text_badge.title": "Text alternativ",
|
||||||
"announcement.announcement": "Anunț",
|
"announcement.announcement": "Anunț",
|
||||||
"attachments_list.unprocessed": "(neprocesate)",
|
"attachments_list.unprocessed": "(neprocesate)",
|
||||||
"audio.hide": "Ascunde audio",
|
"audio.hide": "Ascunde audio",
|
||||||
|
@ -183,7 +192,9 @@
|
||||||
"dismissable_banner.community_timeline": "Acestea sunt cele mai recente postări publice de la persoane ale căror conturi sunt găzduite de {domain}.",
|
"dismissable_banner.community_timeline": "Acestea sunt cele mai recente postări publice de la persoane ale căror conturi sunt găzduite de {domain}.",
|
||||||
"dismissable_banner.dismiss": "Renunțare",
|
"dismissable_banner.dismiss": "Renunțare",
|
||||||
"dismissable_banner.explore_links": "În acest moment, oamenii vorbesc despre aceste știri, pe acesta dar și pe alte servere ale rețelei descentralizate.",
|
"dismissable_banner.explore_links": "În acest moment, oamenii vorbesc despre aceste știri, pe acesta dar și pe alte servere ale rețelei descentralizate.",
|
||||||
|
"dismissable_banner.explore_statuses": "Acestea sunt postări de peste tot din rețeaua de socializare care câștigă teren azi. Postările mai noi cu mai multe amplificări și favorite sunt clasate mai sus.",
|
||||||
"dismissable_banner.explore_tags": "Aceste hashtag-uri câștigă teren în rândul oamenilor de pe acesta și pe alte servere ale rețelei descentralizate chiar acum.",
|
"dismissable_banner.explore_tags": "Aceste hashtag-uri câștigă teren în rândul oamenilor de pe acesta și pe alte servere ale rețelei descentralizate chiar acum.",
|
||||||
|
"dismissable_banner.public_timeline": "Acestea sunt cele mai recente postări publice de la persoane de pe social web pe care le urmăresc oamenii de pe {domain}.",
|
||||||
"embed.instructions": "Integrează această postare în site-ul tău copiind codul de mai jos.",
|
"embed.instructions": "Integrează această postare în site-ul tău copiind codul de mai jos.",
|
||||||
"embed.preview": "Iată cum va arăta:",
|
"embed.preview": "Iată cum va arăta:",
|
||||||
"emoji_button.activity": "Activități",
|
"emoji_button.activity": "Activități",
|
||||||
|
@ -295,6 +306,8 @@
|
||||||
"interaction_modal.no_account_yet": "Nu ești încă pe Mastodon?",
|
"interaction_modal.no_account_yet": "Nu ești încă pe Mastodon?",
|
||||||
"interaction_modal.on_another_server": "Pe un alt server",
|
"interaction_modal.on_another_server": "Pe un alt server",
|
||||||
"interaction_modal.on_this_server": "Pe acest server",
|
"interaction_modal.on_this_server": "Pe acest server",
|
||||||
|
"interaction_modal.sign_in": "Nu sunteți autentificat la acest server. Unde este găzduit contul dvs.?",
|
||||||
|
"interaction_modal.sign_in_hint": "Sfat: acesta este site-ul web pe care v-ați înscris. Dacă nu vă amintiți, căutați e-mailul de bun venit în inboxul dvs. De asemenea, puteți introduce numele de utilizator complet! (de exemplu, @Mastodon@mastodon.social)",
|
||||||
"interaction_modal.title.follow": "Urmărește pe {name}",
|
"interaction_modal.title.follow": "Urmărește pe {name}",
|
||||||
"interaction_modal.title.reblog": "Distribuie postarea lui {name}",
|
"interaction_modal.title.reblog": "Distribuie postarea lui {name}",
|
||||||
"interaction_modal.title.reply": "Răspunde postării lui {name}",
|
"interaction_modal.title.reply": "Răspunde postării lui {name}",
|
||||||
|
@ -344,6 +357,7 @@
|
||||||
"lists.delete": "Șterge lista",
|
"lists.delete": "Șterge lista",
|
||||||
"lists.edit": "Modifică lista",
|
"lists.edit": "Modifică lista",
|
||||||
"lists.edit.submit": "Schimbă titlul",
|
"lists.edit.submit": "Schimbă titlul",
|
||||||
|
"lists.exclusive": "Ascundeți aceste postări de acasă",
|
||||||
"lists.new.create": "Adaugă o listă",
|
"lists.new.create": "Adaugă o listă",
|
||||||
"lists.new.title_placeholder": "Titlu pentru noua listă",
|
"lists.new.title_placeholder": "Titlu pentru noua listă",
|
||||||
"lists.replies_policy.followed": "Tuturor persoanelor la care te-ai abonat",
|
"lists.replies_policy.followed": "Tuturor persoanelor la care te-ai abonat",
|
||||||
|
@ -427,10 +441,14 @@
|
||||||
"onboarding.follows.empty": "Din păcate, nu pot fi afișate rezultate chiar acum. Poți încerca să cauți sau să navighezi pe pagina de explorare pentru a găsi oameni pe care să-i urmărești sau încearcă iar mai târziu.",
|
"onboarding.follows.empty": "Din păcate, nu pot fi afișate rezultate chiar acum. Poți încerca să cauți sau să navighezi pe pagina de explorare pentru a găsi oameni pe care să-i urmărești sau încearcă iar mai târziu.",
|
||||||
"onboarding.follows.lead": "You curate your own home feed. The more people you follow, the more active and interesting it will be. These profiles may be a good starting point—you can always unfollow them later!",
|
"onboarding.follows.lead": "You curate your own home feed. The more people you follow, the more active and interesting it will be. These profiles may be a good starting point—you can always unfollow them later!",
|
||||||
"onboarding.follows.title": "Popular on Mastodon",
|
"onboarding.follows.title": "Popular on Mastodon",
|
||||||
|
"onboarding.profile.lead": "Puteți completa întotdeauna acest lucru mai târziu în setări, unde sunt disponibile și mai multe opțiuni de personalizare.",
|
||||||
"onboarding.share.lead": "Spune-le oamenilor cum te pot găsi pe Mastodon!",
|
"onboarding.share.lead": "Spune-le oamenilor cum te pot găsi pe Mastodon!",
|
||||||
"onboarding.share.message": "Sunt {username} pe #Mastodon! Vino și urmărește-mă pe {url}",
|
"onboarding.share.message": "Sunt {username} pe #Mastodon! Vino și urmărește-mă pe {url}",
|
||||||
|
"onboarding.share.next_steps": "Pașii următori posibili:",
|
||||||
|
"onboarding.share.title": "Partajați-vă profilul",
|
||||||
"onboarding.start.lead": "Your new Mastodon account is ready to go. Here's how you can make the most of it:",
|
"onboarding.start.lead": "Your new Mastodon account is ready to go. Here's how you can make the most of it:",
|
||||||
"onboarding.start.skip": "Want to skip right ahead?",
|
"onboarding.start.skip": "Want to skip right ahead?",
|
||||||
|
"onboarding.start.title": "Ați reușit!",
|
||||||
"onboarding.steps.follow_people.body": "You curate your own feed. Lets fill it with interesting people.",
|
"onboarding.steps.follow_people.body": "You curate your own feed. Lets fill it with interesting people.",
|
||||||
"onboarding.steps.follow_people.title": "Follow {count, plural, one {one person} other {# people}}",
|
"onboarding.steps.follow_people.title": "Follow {count, plural, one {one person} other {# people}}",
|
||||||
"onboarding.steps.publish_status.body": "Say hello to the world.",
|
"onboarding.steps.publish_status.body": "Say hello to the world.",
|
||||||
|
@ -439,7 +457,10 @@
|
||||||
"onboarding.steps.setup_profile.title": "Customize your profile",
|
"onboarding.steps.setup_profile.title": "Customize your profile",
|
||||||
"onboarding.steps.share_profile.body": "Let your friends know how to find you on Mastodon!",
|
"onboarding.steps.share_profile.body": "Let your friends know how to find you on Mastodon!",
|
||||||
"onboarding.steps.share_profile.title": "Share your profile",
|
"onboarding.steps.share_profile.title": "Share your profile",
|
||||||
|
"onboarding.tips.2fa": "<strong>Știați că?</strong> Vă puteți securiza contul prin configurarea autentificării cu doi factori în setările contului dvs. Funcționează cu orice aplicație TOTP la alegerea dvs., niciun număr de telefon nu este necesar!",
|
||||||
|
"onboarding.tips.accounts_from_other_servers": "<strong>Știați că?</strong> Deoarece Mastodon este decentralizat, unele profiluri pe care le întâlniți vor fi găzduite pe alte servere decât ale dvs. Și totuși puteți interacționa cu ele fără probleme! Serverul lor se află în a doua jumătate a numelui lor de utilizator!",
|
||||||
"onboarding.tips.migration": "<strong>Știai că?</strong> Dacă simți că {domain} nu este o alegere bună de server in viitor, te poți muta pe un alt server de Mastodon fără a-ți pierde urmăritorii. Poți găzdui chiar si propriul server!",
|
"onboarding.tips.migration": "<strong>Știai că?</strong> Dacă simți că {domain} nu este o alegere bună de server in viitor, te poți muta pe un alt server de Mastodon fără a-ți pierde urmăritorii. Poți găzdui chiar si propriul server!",
|
||||||
|
"onboarding.tips.verification": "<strong>Știați că?</strong> Puteți să vă verificați contul punând un link către profilul dumneavoastră Mastodon pe propriul site și adăugând site-ul web la profilul dvs. Nu sunt necesare taxe sau documente!",
|
||||||
"picture_in_picture.restore": "Pune-l înapoi",
|
"picture_in_picture.restore": "Pune-l înapoi",
|
||||||
"poll.closed": "Închis",
|
"poll.closed": "Închis",
|
||||||
"poll.refresh": "Reîncarcă",
|
"poll.refresh": "Reîncarcă",
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"about.blocks": "Модерируемые серверы",
|
"about.blocks": "Модерируемые серверы",
|
||||||
"about.contact": "Связаться:",
|
"about.contact": "Связаться:",
|
||||||
"about.disclaimer": "Открытое программное обеспечениеMastodon — свободное программное обеспечение с открытым исходным кодом и торговая марка Mastodon gGmbH.",
|
"about.disclaimer": "Mastodon — свободное программное обеспечение с открытым исходным кодом и торговая марка Mastodon gGmbH.",
|
||||||
"about.domain_blocks.no_reason_available": "Причина не указана",
|
"about.domain_blocks.no_reason_available": "Причина не указана",
|
||||||
"about.domain_blocks.preamble": "Mastodon обычно позволяет просматривать содержимое и взаимодействовать с другими пользователями любых серверов в Федиверсе. Вот исключения, сделанные конкретно для этого сервера.",
|
"about.domain_blocks.preamble": "Mastodon обычно позволяет просматривать содержимое и взаимодействовать с другими пользователями любых серверов в Федиверсе. Вот исключения, сделанные конкретно для этого сервера.",
|
||||||
"about.domain_blocks.silenced.explanation": "Как правило, вы не увидите профили и контент с этого сервера, если вы специально не будете их искать или не подпишетесь на них.",
|
"about.domain_blocks.silenced.explanation": "Как правило, вы не увидите профили и контент с этого сервера, если вы специально не будете их искать или не подпишетесь на них.",
|
||||||
|
@ -89,14 +89,14 @@
|
||||||
"announcement.announcement": "Объявление",
|
"announcement.announcement": "Объявление",
|
||||||
"attachments_list.unprocessed": "(не обработан)",
|
"attachments_list.unprocessed": "(не обработан)",
|
||||||
"audio.hide": "Скрыть аудио",
|
"audio.hide": "Скрыть аудио",
|
||||||
"block_modal.remote_users_caveat": "Мы попросим сервер {domain} уважать ваше решение. Однако, соблюдение требований не гарантировано, поскольку некоторые серверы могут работать с блокировками по-разному. Публичные записи по-прежнему могут быть видны неавторизованным пользователям.",
|
"block_modal.remote_users_caveat": "Мы попросим сервер {domain} уважать ваше решение, однако соблюдение им блокировки не гарантировано, поскольку некоторые серверы могут по-разному обрабатывать запросы. Публичные посты по-прежнему могут быть видны неавторизованным пользователям.",
|
||||||
"block_modal.show_less": "Показать меньше",
|
"block_modal.show_less": "Показать меньше",
|
||||||
"block_modal.show_more": "Показать больше",
|
"block_modal.show_more": "Показать больше",
|
||||||
"block_modal.they_cant_mention": "Он не может упоминать или подписываться на вас.",
|
"block_modal.they_cant_mention": "Он не сможет упоминать вас или подписаться на вас.",
|
||||||
"block_modal.they_cant_see_posts": "Он не может видеть ваши сообщения, и вы не увидите его.",
|
"block_modal.they_cant_see_posts": "Он не сможет видеть ваши посты, а вы не будете видеть его посты.",
|
||||||
"block_modal.they_will_know": "Он может видеть, что он заблокирован.",
|
"block_modal.they_will_know": "Он будет знать, что вы его блокируете.",
|
||||||
"block_modal.title": "Заблокировать пользователя?",
|
"block_modal.title": "Заблокировать пользователя?",
|
||||||
"block_modal.you_wont_see_mentions": "Вы не увидите записи, которые упоминают его.",
|
"block_modal.you_wont_see_mentions": "Вы не увидите посты, которые его упоминают.",
|
||||||
"boost_modal.combo": "{combo}, чтобы пропустить это в следующий раз",
|
"boost_modal.combo": "{combo}, чтобы пропустить это в следующий раз",
|
||||||
"boost_modal.reblog": "Продвинуть пост?",
|
"boost_modal.reblog": "Продвинуть пост?",
|
||||||
"boost_modal.undo_reblog": "Убрать продвижение?",
|
"boost_modal.undo_reblog": "Убрать продвижение?",
|
||||||
|
@ -131,7 +131,7 @@
|
||||||
"column.lists": "Списки",
|
"column.lists": "Списки",
|
||||||
"column.mutes": "Игнорируемые пользователи",
|
"column.mutes": "Игнорируемые пользователи",
|
||||||
"column.notifications": "Уведомления",
|
"column.notifications": "Уведомления",
|
||||||
"column.pins": "Закреплённый пост",
|
"column.pins": "Закреплённые посты",
|
||||||
"column.public": "Глобальная лента",
|
"column.public": "Глобальная лента",
|
||||||
"column_back_button.label": "Назад",
|
"column_back_button.label": "Назад",
|
||||||
"column_header.hide_settings": "Скрыть настройки",
|
"column_header.hide_settings": "Скрыть настройки",
|
||||||
|
@ -177,8 +177,8 @@
|
||||||
"confirmations.delete_list.confirm": "Удалить",
|
"confirmations.delete_list.confirm": "Удалить",
|
||||||
"confirmations.delete_list.message": "Вы действительно хотите навсегда удалить этот список?",
|
"confirmations.delete_list.message": "Вы действительно хотите навсегда удалить этот список?",
|
||||||
"confirmations.delete_list.title": "Удалить список?",
|
"confirmations.delete_list.title": "Удалить список?",
|
||||||
"confirmations.discard_edit_media.confirm": "Отменить",
|
"confirmations.discard_edit_media.confirm": "Сбросить",
|
||||||
"confirmations.discard_edit_media.message": "У вас имеются несохранённые изменения превью и описания медиафайла, отменить их?",
|
"confirmations.discard_edit_media.message": "У вас есть несохранённые изменения в описании мультимедиа или предпросмотре, сбросить их?",
|
||||||
"confirmations.edit.confirm": "Редактировать",
|
"confirmations.edit.confirm": "Редактировать",
|
||||||
"confirmations.edit.message": "При редактировании, текст набираемого поста будет очищен. Продолжить?",
|
"confirmations.edit.message": "При редактировании, текст набираемого поста будет очищен. Продолжить?",
|
||||||
"confirmations.edit.title": "Переписать сообщение?",
|
"confirmations.edit.title": "Переписать сообщение?",
|
||||||
|
@ -218,27 +218,27 @@
|
||||||
"dismissable_banner.explore_tags": "Эти хэштеги привлекают людей на этом и других серверах децентрализованной сети прямо сейчас.",
|
"dismissable_banner.explore_tags": "Эти хэштеги привлекают людей на этом и других серверах децентрализованной сети прямо сейчас.",
|
||||||
"dismissable_banner.public_timeline": "Это самые новые публичные посты от тех пользователей этого и других серверов децентрализованной сети, на которых подписываются пользователи {domain}.",
|
"dismissable_banner.public_timeline": "Это самые новые публичные посты от тех пользователей этого и других серверов децентрализованной сети, на которых подписываются пользователи {domain}.",
|
||||||
"domain_block_modal.block": "Заблокировать сервер",
|
"domain_block_modal.block": "Заблокировать сервер",
|
||||||
"domain_block_modal.block_account_instead": "Заблокировать @{name} вместо",
|
"domain_block_modal.block_account_instead": "Заблокировать только @{name}",
|
||||||
"domain_block_modal.they_can_interact_with_old_posts": "Люди с этого сервера могут взаимодействовать с вашими старыми записями.",
|
"domain_block_modal.they_can_interact_with_old_posts": "Пользователи с этого сервера смогут взаимодействовать с вашими старыми постами.",
|
||||||
"domain_block_modal.they_cant_follow": "Никто из этого сервера не может подписываться на вас.",
|
"domain_block_modal.they_cant_follow": "Пользователи с этого сервера не смогут подписаться на вас.",
|
||||||
"domain_block_modal.they_wont_know": "Он не будет знать, что его заблокировали.",
|
"domain_block_modal.they_wont_know": "Пользователи с этого сервера не будут знать, что вы их блокируете.",
|
||||||
"domain_block_modal.title": "Заблокировать домен?",
|
"domain_block_modal.title": "Заблокировать домен?",
|
||||||
"domain_block_modal.you_will_lose_num_followers": "Вы потеряете {followersCount, plural, one {{followersCountDisplay} подписчика} other {{followersCountDisplay} подписчиков}} и {followingCount, plural, one {{followingCountDisplay} подписку} other {{followingCountDisplay} подписок}}.",
|
"domain_block_modal.you_will_lose_num_followers": "Вы потеряете {followersCount, plural, one {{followersCountDisplay} подписчика} few {{followersCountDisplay} подписчика} other {{followersCountDisplay} подписчиков}} и {followingCount, plural, one {{followingCountDisplay} подписку} few {{followingCountDisplay} подписки} other {{followingCountDisplay} подписок}}.",
|
||||||
"domain_block_modal.you_will_lose_relationships": "Вы потеряете всех подписчиков и людей, на которых вы подписаны, на этом сервере.",
|
"domain_block_modal.you_will_lose_relationships": "Вы потеряете все подписки и всех подписчиков с этого сервера.",
|
||||||
"domain_block_modal.you_wont_see_posts": "Вы не будете видеть записи или уведомления от пользователей на этом сервере.",
|
"domain_block_modal.you_wont_see_posts": "Вы не будете видеть посты или уведомления от пользователей с этого сервера.",
|
||||||
"domain_pill.activitypub_lets_connect": "Это позволяет вам общаться и взаимодействовать с людьми не только на Mastodon, но и в различных социальных приложениях.",
|
"domain_pill.activitypub_lets_connect": "Благодаря ему вы можете связываться и взаимодействовать не только с пользователями Mastodon, но и с пользователями других платформ.",
|
||||||
"domain_pill.activitypub_like_language": "ActivityPub как язык Mastodon говорит с другими социальными сетями.",
|
"domain_pill.activitypub_like_language": "ActivityPub это язык, на котором Mastodon говорит с другими социальными сетями.",
|
||||||
"domain_pill.server": "Сервер",
|
"domain_pill.server": "Сервер",
|
||||||
"domain_pill.their_handle": "Его бейдж:",
|
"domain_pill.their_handle": "Адрес пользователя:",
|
||||||
"domain_pill.their_server": "Цифровой дом, где находятся все записи.",
|
"domain_pill.their_server": "Цифровой дом пользователя, где находятся все его посты.",
|
||||||
"domain_pill.their_username": "Уникальный идентификатор на сервере. Возможно найти пользователей с одним и тем же именем пользователя на разных серверах.",
|
"domain_pill.their_username": "Уникальный идентификатор пользователя на его сервере. На разных серверах могут встречаться люди с тем же именем пользователя.",
|
||||||
"domain_pill.username": "Имя пользователя",
|
"domain_pill.username": "Имя пользователя",
|
||||||
"domain_pill.whats_in_a_handle": "Что такое бейдж?",
|
"domain_pill.whats_in_a_handle": "Что это значит?",
|
||||||
"domain_pill.who_they_are": "Поскольку бейджи говорят о том, кто и где находится, вы можете взаимодействовать с людьми в социальной сети <button>платформ, работающих на платформе ActivityPub</button>.",
|
"domain_pill.who_they_are": "Поскольку адрес позволяет однозначно определить, кто и где находится, вы можете взаимодействовать с пользователями социальной сети <button>платформ, работающих на протоколе ActivityPub</button>.",
|
||||||
"domain_pill.who_you_are": "Поскольку ваш бейдж говорит о том, кто вы и где находитесь, люди могут взаимодействовать с вами через социальную сеть <button>платформ, работающих на платформе ActivityPub</button>.",
|
"domain_pill.who_you_are": "Поскольку ваш адрес позволяет однозначно определить, кто вы и где находитесь, пользователи социальной сети <button>платформ, работающих на протоколе ActivityPub</button> могут взаимодействовать с вами.",
|
||||||
"domain_pill.your_handle": "Ваш бейдж:",
|
"domain_pill.your_handle": "Ваш адрес:",
|
||||||
"domain_pill.your_server": "Сервер, где живут все ваши посты. Этот не нравится? Поменяй сервер в любое время вместе со своими подписчиками.",
|
"domain_pill.your_server": "Ваш цифровой дом, где находятся все ваши посты. Если вам не нравится этот сервер, вы можете в любое время перенести свою учётную запись на другой сервер, не теряя подписчиков.",
|
||||||
"domain_pill.your_username": "Ваш уникальный идентификатор на этом сервере. Вы можете найти пользователей с одним именем пользователя на разных серверах.",
|
"domain_pill.your_username": "Ваш уникальный идентификатор на этом сервере. На разных серверах могут встречаться люди с тем же именем пользователя.",
|
||||||
"embed.instructions": "Встройте этот пост на свой сайт, скопировав следующий код:",
|
"embed.instructions": "Встройте этот пост на свой сайт, скопировав следующий код:",
|
||||||
"embed.preview": "Так это будет выглядеть:",
|
"embed.preview": "Так это будет выглядеть:",
|
||||||
"emoji_button.activity": "Занятия",
|
"emoji_button.activity": "Занятия",
|
||||||
|
@ -261,7 +261,7 @@
|
||||||
"empty_column.account_timeline": "Здесь нет постов!",
|
"empty_column.account_timeline": "Здесь нет постов!",
|
||||||
"empty_column.account_unavailable": "Профиль недоступен",
|
"empty_column.account_unavailable": "Профиль недоступен",
|
||||||
"empty_column.blocks": "Вы ещё никого не заблокировали.",
|
"empty_column.blocks": "Вы ещё никого не заблокировали.",
|
||||||
"empty_column.bookmarked_statuses": "У вас пока нет постов в закладках. Как добавите один, он отобразится здесь.",
|
"empty_column.bookmarked_statuses": "У вас пока нет закладок. Когда вы добавляете пост в закладки, он появляется здесь.",
|
||||||
"empty_column.community": "Локальная лента пуста. Напишите что-нибудь, чтобы разогреть народ!",
|
"empty_column.community": "Локальная лента пуста. Напишите что-нибудь, чтобы разогреть народ!",
|
||||||
"empty_column.direct": "У вас пока нет личных сообщений. Как только вы отправите или получите сообщение, оно появится здесь.",
|
"empty_column.direct": "У вас пока нет личных сообщений. Как только вы отправите или получите сообщение, оно появится здесь.",
|
||||||
"empty_column.domain_blocks": "Скрытых доменов пока нет.",
|
"empty_column.domain_blocks": "Скрытых доменов пока нет.",
|
||||||
|
@ -270,9 +270,9 @@
|
||||||
"empty_column.favourites": "Никто ещё не добавил этот пост в «Избранное». Как только кто-то это сделает, это отобразится здесь.",
|
"empty_column.favourites": "Никто ещё не добавил этот пост в «Избранное». Как только кто-то это сделает, это отобразится здесь.",
|
||||||
"empty_column.follow_requests": "Вам ещё не приходили запросы на подписку. Все новые запросы будут показаны здесь.",
|
"empty_column.follow_requests": "Вам ещё не приходили запросы на подписку. Все новые запросы будут показаны здесь.",
|
||||||
"empty_column.followed_tags": "Вы еще не подписались ни на один хэштег. Когда вы это сделаете, они появятся здесь.",
|
"empty_column.followed_tags": "Вы еще не подписались ни на один хэштег. Когда вы это сделаете, они появятся здесь.",
|
||||||
"empty_column.hashtag": "С этим хэштегом пока ещё ничего не постили.",
|
"empty_column.hashtag": "С этим хэштегом пока ещё ничего не публиковали.",
|
||||||
"empty_column.home": "Ваша лента совсем пуста! Подписывайтесь на других, чтобы заполнить её.",
|
"empty_column.home": "Ваша лента совсем пуста! Подписывайтесь на других, чтобы заполнить её.",
|
||||||
"empty_column.list": "В этом списке пока ничего нет.",
|
"empty_column.list": "В этом списке пока ничего нет. Когда пользователи в списке публикуют новые посты, они появляются здесь.",
|
||||||
"empty_column.lists": "У вас ещё нет списков. Созданные вами списки будут показаны здесь.",
|
"empty_column.lists": "У вас ещё нет списков. Созданные вами списки будут показаны здесь.",
|
||||||
"empty_column.mutes": "Вы ещё никого не добавляли в список игнорируемых.",
|
"empty_column.mutes": "Вы ещё никого не добавляли в список игнорируемых.",
|
||||||
"empty_column.notification_requests": "Здесь ничего нет! Когда вы получите новые уведомления, они здесь появятся согласно вашим настройкам.",
|
"empty_column.notification_requests": "Здесь ничего нет! Когда вы получите новые уведомления, они здесь появятся согласно вашим настройкам.",
|
||||||
|
@ -340,7 +340,7 @@
|
||||||
"footer.source_code": "Исходный код",
|
"footer.source_code": "Исходный код",
|
||||||
"footer.status": "Статус",
|
"footer.status": "Статус",
|
||||||
"generic.saved": "Сохранено",
|
"generic.saved": "Сохранено",
|
||||||
"getting_started.heading": "Начать",
|
"getting_started.heading": "Добро пожаловать",
|
||||||
"hashtag.column_header.tag_mode.all": "и {additional}",
|
"hashtag.column_header.tag_mode.all": "и {additional}",
|
||||||
"hashtag.column_header.tag_mode.any": "или {additional}",
|
"hashtag.column_header.tag_mode.any": "или {additional}",
|
||||||
"hashtag.column_header.tag_mode.none": "без {additional}",
|
"hashtag.column_header.tag_mode.none": "без {additional}",
|
||||||
|
@ -395,7 +395,7 @@
|
||||||
"interaction_modal.sign_in_hint": "Совет: Это сайт, на котором вы зарегистрировались. Если вы не помните, найдите приветственное письмо в своем почтовом ящике. Вы также можете ввести свое полное имя пользователя! (например, @Mastodon@mastodon.social)",
|
"interaction_modal.sign_in_hint": "Совет: Это сайт, на котором вы зарегистрировались. Если вы не помните, найдите приветственное письмо в своем почтовом ящике. Вы также можете ввести свое полное имя пользователя! (например, @Mastodon@mastodon.social)",
|
||||||
"interaction_modal.title.favourite": "Добавить пост {name} в избранное",
|
"interaction_modal.title.favourite": "Добавить пост {name} в избранное",
|
||||||
"interaction_modal.title.follow": "Подписаться на {name}",
|
"interaction_modal.title.follow": "Подписаться на {name}",
|
||||||
"interaction_modal.title.reblog": "Продвинуть публикацию {name}",
|
"interaction_modal.title.reblog": "Продвинуть пост {name}",
|
||||||
"interaction_modal.title.reply": "Ответить на пост {name}",
|
"interaction_modal.title.reply": "Ответить на пост {name}",
|
||||||
"intervals.full.days": "{number, plural, one {# день} few {# дня} other {# дней}}",
|
"intervals.full.days": "{number, plural, one {# день} few {# дня} other {# дней}}",
|
||||||
"intervals.full.hours": "{number, plural, one {# час} few {# часа} other {# часов}}",
|
"intervals.full.hours": "{number, plural, one {# час} few {# часа} other {# часов}}",
|
||||||
|
@ -428,7 +428,7 @@
|
||||||
"keyboard_shortcuts.requests": "перейти к запросам на подписку",
|
"keyboard_shortcuts.requests": "перейти к запросам на подписку",
|
||||||
"keyboard_shortcuts.search": "перейти к поиску",
|
"keyboard_shortcuts.search": "перейти к поиску",
|
||||||
"keyboard_shortcuts.spoilers": "показать/скрыть поле предупреждения о содержании",
|
"keyboard_shortcuts.spoilers": "показать/скрыть поле предупреждения о содержании",
|
||||||
"keyboard_shortcuts.start": "Перейти к разделу \"Начать\"",
|
"keyboard_shortcuts.start": "перейти к разделу \"добро пожаловать\"",
|
||||||
"keyboard_shortcuts.toggle_hidden": "показать/скрыть текст за предупреждением",
|
"keyboard_shortcuts.toggle_hidden": "показать/скрыть текст за предупреждением",
|
||||||
"keyboard_shortcuts.toggle_sensitivity": "показать/скрыть медиафайлы",
|
"keyboard_shortcuts.toggle_sensitivity": "показать/скрыть медиафайлы",
|
||||||
"keyboard_shortcuts.toot": "начать писать новый пост",
|
"keyboard_shortcuts.toot": "начать писать новый пост",
|
||||||
|
@ -452,8 +452,8 @@
|
||||||
"lists.exclusive": "Не показывать посты из этого списка в домашней ленте",
|
"lists.exclusive": "Не показывать посты из этого списка в домашней ленте",
|
||||||
"lists.new.create": "Создать список",
|
"lists.new.create": "Создать список",
|
||||||
"lists.new.title_placeholder": "Название для нового списка",
|
"lists.new.title_placeholder": "Название для нового списка",
|
||||||
"lists.replies_policy.followed": "Пользователи, на которых вы подписаны",
|
"lists.replies_policy.followed": "Все пользователи, на которых вы подписаны",
|
||||||
"lists.replies_policy.list": "Пользователи в списке",
|
"lists.replies_policy.list": "Другие пользователи в списке",
|
||||||
"lists.replies_policy.none": "Никого",
|
"lists.replies_policy.none": "Никого",
|
||||||
"lists.replies_policy.title": "Показать ответы только:",
|
"lists.replies_policy.title": "Показать ответы только:",
|
||||||
"lists.search": "Искать среди подписок",
|
"lists.search": "Искать среди подписок",
|
||||||
|
@ -463,14 +463,14 @@
|
||||||
"media_gallery.hide": "Скрыть",
|
"media_gallery.hide": "Скрыть",
|
||||||
"moved_to_account_banner.text": "Ваша учетная запись {disabledAccount} в настоящее время заморожена, потому что вы переехали на {movedToAccount}.",
|
"moved_to_account_banner.text": "Ваша учетная запись {disabledAccount} в настоящее время заморожена, потому что вы переехали на {movedToAccount}.",
|
||||||
"mute_modal.hide_from_notifications": "Скрыть из уведомлений",
|
"mute_modal.hide_from_notifications": "Скрыть из уведомлений",
|
||||||
"mute_modal.hide_options": "Скрыть параметры",
|
"mute_modal.hide_options": "Скрыть опции",
|
||||||
"mute_modal.indefinite": "Пока я не разблокирую их",
|
"mute_modal.indefinite": "Бессрочно",
|
||||||
"mute_modal.show_options": "Показать опции",
|
"mute_modal.show_options": "Показать опции",
|
||||||
"mute_modal.they_can_mention_and_follow": "Они могут упоминать и следить за вами, но вы не будете их видеть.",
|
"mute_modal.they_can_mention_and_follow": "Он сможет упоминать вас и подписаться на вас, но вы этого не увидите.",
|
||||||
"mute_modal.they_wont_know": "Они не будут знать, что их заглушили.",
|
"mute_modal.they_wont_know": "Он не будет знать, что вы его игнорируете.",
|
||||||
"mute_modal.title": "Заглушить пользователя?",
|
"mute_modal.title": "Игнорировать пользователя?",
|
||||||
"mute_modal.you_wont_see_mentions": "Вы не увидите постов, которые их упоминают.",
|
"mute_modal.you_wont_see_mentions": "Вы не увидите посты, которые его упоминают.",
|
||||||
"mute_modal.you_wont_see_posts": "Они по-прежнему смогут видеть ваши посты, но вы не сможете видеть их посты.",
|
"mute_modal.you_wont_see_posts": "Он по-прежнему сможет видеть ваши посты, но вы не будете видеть его посты.",
|
||||||
"navigation_bar.about": "О проекте",
|
"navigation_bar.about": "О проекте",
|
||||||
"navigation_bar.administration": "Администрирование",
|
"navigation_bar.administration": "Администрирование",
|
||||||
"navigation_bar.advanced_interface": "Открыть в многоколоночном интерфейсе",
|
"navigation_bar.advanced_interface": "Открыть в многоколоночном интерфейсе",
|
||||||
|
@ -527,7 +527,7 @@
|
||||||
"notification.moderation_warning.action_sensitive": "С этого момента ваши сообщения будут помечены как деликатные.",
|
"notification.moderation_warning.action_sensitive": "С этого момента ваши сообщения будут помечены как деликатные.",
|
||||||
"notification.moderation_warning.action_silence": "Ваша учётная запись была ограничена.",
|
"notification.moderation_warning.action_silence": "Ваша учётная запись была ограничена.",
|
||||||
"notification.moderation_warning.action_suspend": "Действие вашей учётной записи приостановлено.",
|
"notification.moderation_warning.action_suspend": "Действие вашей учётной записи приостановлено.",
|
||||||
"notification.own_poll": "Ваш опрос закончился",
|
"notification.own_poll": "Ваш опрос завершился",
|
||||||
"notification.poll": "Голосование, в котором вы приняли участие, завершилось",
|
"notification.poll": "Голосование, в котором вы приняли участие, завершилось",
|
||||||
"notification.reblog": "{name} продвинул(а) ваш пост",
|
"notification.reblog": "{name} продвинул(а) ваш пост",
|
||||||
"notification.reblog.name_and_others_with_link": "{name} и ещё <a>{count, plural, one {# пользователь} few {# пользователя} other {# пользователей}}</a> продвинули ваш пост",
|
"notification.reblog.name_and_others_with_link": "{name} и ещё <a>{count, plural, one {# пользователь} few {# пользователя} other {# пользователей}}</a> продвинули ваш пост",
|
||||||
|
@ -536,7 +536,7 @@
|
||||||
"notification.relationships_severance_event.domain_block": "Администратор {from} заблокировал {target} включая {followersCount} ваших подписчиков и {followingCount, plural, one {# аккаунт} few {# аккаунта} other {# аккаунтов}}, на которые вы подписаны.",
|
"notification.relationships_severance_event.domain_block": "Администратор {from} заблокировал {target} включая {followersCount} ваших подписчиков и {followingCount, plural, one {# аккаунт} few {# аккаунта} other {# аккаунтов}}, на которые вы подписаны.",
|
||||||
"notification.relationships_severance_event.learn_more": "Узнать больше",
|
"notification.relationships_severance_event.learn_more": "Узнать больше",
|
||||||
"notification.relationships_severance_event.user_domain_block": "Вы заблокировали {target} включая {followersCount} ваших подписчиков и {followingCount, plural, one {# аккаунт} few {# аккаунта} other {# аккаунтов}}, на которые вы подписаны.",
|
"notification.relationships_severance_event.user_domain_block": "Вы заблокировали {target} включая {followersCount} ваших подписчиков и {followingCount, plural, one {# аккаунт} few {# аккаунта} other {# аккаунтов}}, на которые вы подписаны.",
|
||||||
"notification.status": "{name} только что запостил",
|
"notification.status": "{name} опубликовал(а) новый пост",
|
||||||
"notification.update": "{name} изменил(а) пост",
|
"notification.update": "{name} изменил(а) пост",
|
||||||
"notification_requests.accept": "Принять",
|
"notification_requests.accept": "Принять",
|
||||||
"notification_requests.accept_multiple": "{count, plural, one {Принять # запрос…} few {Принять # запроса…} other {Принять # запросов…}}",
|
"notification_requests.accept_multiple": "{count, plural, one {Принять # запрос…} few {Принять # запроса…} other {Принять # запросов…}}",
|
||||||
|
@ -706,7 +706,7 @@
|
||||||
"report.close": "Готово",
|
"report.close": "Готово",
|
||||||
"report.comment.title": "Есть ли что-нибудь ещё, что нам стоит знать?",
|
"report.comment.title": "Есть ли что-нибудь ещё, что нам стоит знать?",
|
||||||
"report.forward": "Переслать в {target}",
|
"report.forward": "Переслать в {target}",
|
||||||
"report.forward_hint": "Эта учётная запись расположена на другом узле. Отправить туда анонимную копию вашей жалобы?",
|
"report.forward_hint": "Эта учётная запись расположена на другом сервере. Отправить туда анонимную копию вашей жалобы?",
|
||||||
"report.mute": "Игнорировать",
|
"report.mute": "Игнорировать",
|
||||||
"report.mute_explanation": "Вы не будете видеть их посты. Они по-прежнему могут подписываться на вас и видеть ваши посты, но не будут знать, что они в списке игнорируемых.",
|
"report.mute_explanation": "Вы не будете видеть их посты. Они по-прежнему могут подписываться на вас и видеть ваши посты, но не будут знать, что они в списке игнорируемых.",
|
||||||
"report.next": "Далее",
|
"report.next": "Далее",
|
||||||
|
@ -792,11 +792,11 @@
|
||||||
"status.edit": "Изменить",
|
"status.edit": "Изменить",
|
||||||
"status.edited": "Дата последнего изменения: {date}",
|
"status.edited": "Дата последнего изменения: {date}",
|
||||||
"status.edited_x_times": "{count, plural, one {{count} изменение} many {{count} изменений} other {{count} изменения}}",
|
"status.edited_x_times": "{count, plural, one {{count} изменение} many {{count} изменений} other {{count} изменения}}",
|
||||||
"status.embed": "Получить код для встраивания",
|
"status.embed": "Встроить на свой сайт",
|
||||||
"status.favourite": "Добавить в избранное",
|
"status.favourite": "Добавить в избранное",
|
||||||
"status.favourites": "{count, plural, other {в избранном}}",
|
"status.favourites": "{count, plural, other {в избранном}}",
|
||||||
"status.filter": "Фильтровать этот пост",
|
"status.filter": "Фильтровать этот пост",
|
||||||
"status.history.created": "{name} создал {date}",
|
"status.history.created": "{name} создал(а) {date}",
|
||||||
"status.history.edited": "{name} отредактировал(а) {date}",
|
"status.history.edited": "{name} отредактировал(а) {date}",
|
||||||
"status.load_more": "Загрузить остальное",
|
"status.load_more": "Загрузить остальное",
|
||||||
"status.media.open": "Нажмите, чтобы открыть.",
|
"status.media.open": "Нажмите, чтобы открыть.",
|
||||||
|
@ -813,7 +813,7 @@
|
||||||
"status.reblog": "Продвинуть",
|
"status.reblog": "Продвинуть",
|
||||||
"status.reblog_private": "Продвинуть для своей аудитории",
|
"status.reblog_private": "Продвинуть для своей аудитории",
|
||||||
"status.reblogged_by": "{name} продвинул(а)",
|
"status.reblogged_by": "{name} продвинул(а)",
|
||||||
"status.reblogs": "{count, plural, one {boost} few {boosts} many {boosts} other {boosts}}",
|
"status.reblogs": "{count, plural, one {продвижение} few {продвижения} other {продвижений}}",
|
||||||
"status.reblogs.empty": "Никто ещё не продвинул этот пост. Как только кто-то это сделает, они появятся здесь.",
|
"status.reblogs.empty": "Никто ещё не продвинул этот пост. Как только кто-то это сделает, они появятся здесь.",
|
||||||
"status.redraft": "Создать заново",
|
"status.redraft": "Создать заново",
|
||||||
"status.remove_bookmark": "Убрать из закладок",
|
"status.remove_bookmark": "Убрать из закладок",
|
||||||
|
@ -821,7 +821,7 @@
|
||||||
"status.replied_to": "Ответил(а) {name}",
|
"status.replied_to": "Ответил(а) {name}",
|
||||||
"status.reply": "Ответить",
|
"status.reply": "Ответить",
|
||||||
"status.replyAll": "Ответить всем",
|
"status.replyAll": "Ответить всем",
|
||||||
"status.report": "Пожаловаться",
|
"status.report": "Пожаловаться на @{name}",
|
||||||
"status.sensitive_warning": "Содержимое «деликатного характера»",
|
"status.sensitive_warning": "Содержимое «деликатного характера»",
|
||||||
"status.share": "Поделиться",
|
"status.share": "Поделиться",
|
||||||
"status.show_less_all": "Свернуть все спойлеры в ветке",
|
"status.show_less_all": "Свернуть все спойлеры в ветке",
|
||||||
|
@ -859,7 +859,7 @@
|
||||||
"upload_form.drag_and_drop.on_drag_cancel": "Перетаскивание было отменено. Вложение медиа {item} было удалено.",
|
"upload_form.drag_and_drop.on_drag_cancel": "Перетаскивание было отменено. Вложение медиа {item} было удалено.",
|
||||||
"upload_form.drag_and_drop.on_drag_end": "Медиа вложение {item} было удалено.",
|
"upload_form.drag_and_drop.on_drag_end": "Медиа вложение {item} было удалено.",
|
||||||
"upload_form.drag_and_drop.on_drag_over": "Медиа вложение {item} было перемещено.",
|
"upload_form.drag_and_drop.on_drag_over": "Медиа вложение {item} было перемещено.",
|
||||||
"upload_form.drag_and_drop.on_drag_start": ".",
|
"upload_form.drag_and_drop.on_drag_start": "Загружается медиафайл {item}.",
|
||||||
"upload_form.edit": "Изменить",
|
"upload_form.edit": "Изменить",
|
||||||
"upload_form.thumbnail": "Изменить обложку",
|
"upload_form.thumbnail": "Изменить обложку",
|
||||||
"upload_form.video_description": "Опишите видео для людей с нарушением слуха или зрения",
|
"upload_form.video_description": "Опишите видео для людей с нарушением слуха или зрения",
|
||||||
|
|
|
@ -69,6 +69,11 @@
|
||||||
"announcement.announcement": "Annooncement",
|
"announcement.announcement": "Annooncement",
|
||||||
"attachments_list.unprocessed": "(No processed)",
|
"attachments_list.unprocessed": "(No processed)",
|
||||||
"audio.hide": "Stow audio",
|
"audio.hide": "Stow audio",
|
||||||
|
"block_modal.remote_users_caveat": "We will ask the server {domain} tae respect yer decision. Awtho mind compliance isnae a guarantee, sin some servers may haundle blocks differently. Public posts may yet be visible tae non-loggit-in uisers.",
|
||||||
|
"block_modal.they_cant_mention": "Thay cannae mention or follae you.",
|
||||||
|
"block_modal.they_cant_see_posts": "Thay cannae see yer posts and you willnae see thairs.",
|
||||||
|
"block_modal.they_will_know": "Thay can see that they're blockit.",
|
||||||
|
"block_modal.title": "Block uiser?",
|
||||||
"boost_modal.combo": "Ye kin chap {combo} tae dingie this neist tim",
|
"boost_modal.combo": "Ye kin chap {combo} tae dingie this neist tim",
|
||||||
"bundle_column_error.copy_stacktrace": "Copy error report",
|
"bundle_column_error.copy_stacktrace": "Copy error report",
|
||||||
"bundle_column_error.error.body": "The requestit page cuidnae be rennert. Hit cuid be doon tae a bug in wir code, or a brooser compatability issue.",
|
"bundle_column_error.error.body": "The requestit page cuidnae be rennert. Hit cuid be doon tae a bug in wir code, or a brooser compatability issue.",
|
||||||
|
@ -113,9 +118,11 @@
|
||||||
"community.column_settings.remote_only": "Remote ainly",
|
"community.column_settings.remote_only": "Remote ainly",
|
||||||
"compose.language.change": "Chynge Leid",
|
"compose.language.change": "Chynge Leid",
|
||||||
"compose.language.search": "Seirch leids...",
|
"compose.language.search": "Seirch leids...",
|
||||||
|
"compose.published.body": "Post published.",
|
||||||
|
"compose.saved.body": "Post saved.",
|
||||||
"compose_form.direct_message_warning_learn_more": "Lairn mair",
|
"compose_form.direct_message_warning_learn_more": "Lairn mair",
|
||||||
"compose_form.encryption_warning": "Posts on Mastodon isnae en-tae-en encryptit. Dinnae share onie sensitive information ower Mastodon.",
|
"compose_form.encryption_warning": "Posts on Mastodon isnae en-tae-en encryptit. Dinnae share onie sensitive information ower Mastodon.",
|
||||||
"compose_form.hashtag_warning": "This post won't be listed under any hashtag as it is unlisted. Only public posts can be searched by hashtag.",
|
"compose_form.hashtag_warning": "This post willnae be listit under ony hashtag fir it is unlistit. Only public posts can be searched by hashtag.",
|
||||||
"compose_form.lock_disclaimer": "Yer accoont isnae {locked}. Awbody kin follae ye for tae luik at yer follaer-ainly posts.",
|
"compose_form.lock_disclaimer": "Yer accoont isnae {locked}. Awbody kin follae ye for tae luik at yer follaer-ainly posts.",
|
||||||
"compose_form.lock_disclaimer.lock": "lockit",
|
"compose_form.lock_disclaimer.lock": "lockit",
|
||||||
"compose_form.placeholder": "Whit's on yer mind?",
|
"compose_form.placeholder": "Whit's on yer mind?",
|
||||||
|
@ -125,6 +132,7 @@
|
||||||
"compose_form.publish_form": "Publish",
|
"compose_form.publish_form": "Publish",
|
||||||
"compose_form.spoiler.marked": "Tak aff the content warnin",
|
"compose_form.spoiler.marked": "Tak aff the content warnin",
|
||||||
"compose_form.spoiler.unmarked": "Pit on a content warnin",
|
"compose_form.spoiler.unmarked": "Pit on a content warnin",
|
||||||
|
"compose_form.spoiler_placeholder": "Content warnin (optional)",
|
||||||
"confirmation_modal.cancel": "Stap",
|
"confirmation_modal.cancel": "Stap",
|
||||||
"confirmations.block.confirm": "Dingie",
|
"confirmations.block.confirm": "Dingie",
|
||||||
"confirmations.delete.confirm": "Delete",
|
"confirmations.delete.confirm": "Delete",
|
||||||
|
@ -133,6 +141,7 @@
|
||||||
"confirmations.delete_list.message": "Ye shair thit ye'r wantin fir tae delete this post fir ever?",
|
"confirmations.delete_list.message": "Ye shair thit ye'r wantin fir tae delete this post fir ever?",
|
||||||
"confirmations.discard_edit_media.confirm": "Fling awa",
|
"confirmations.discard_edit_media.confirm": "Fling awa",
|
||||||
"confirmations.discard_edit_media.message": "Ye'v chynges tae the media description or preview thit ye'v no saved, fling them awa onie weys?",
|
"confirmations.discard_edit_media.message": "Ye'v chynges tae the media description or preview thit ye'v no saved, fling them awa onie weys?",
|
||||||
|
"confirmations.edit.message": "Editin the noo will owerwrit the message yer componin. Are ye suir yer wantin tae proceed?",
|
||||||
"confirmations.logout.confirm": "Log oot",
|
"confirmations.logout.confirm": "Log oot",
|
||||||
"confirmations.logout.message": "Ye shair thit ye'r wantin tae log oot?",
|
"confirmations.logout.message": "Ye shair thit ye'r wantin tae log oot?",
|
||||||
"confirmations.mute.confirm": "Wheesht",
|
"confirmations.mute.confirm": "Wheesht",
|
||||||
|
@ -183,7 +192,7 @@
|
||||||
"empty_column.explore_statuses": "Naethin is trendin the noo. Check back efter!",
|
"empty_column.explore_statuses": "Naethin is trendin the noo. Check back efter!",
|
||||||
"empty_column.follow_requests": "Ye dinnae hae onie follaer requests yit. Whan ye get ane, it'll shaw up here.",
|
"empty_column.follow_requests": "Ye dinnae hae onie follaer requests yit. Whan ye get ane, it'll shaw up here.",
|
||||||
"empty_column.hashtag": "There naethin in this hashtag yit.",
|
"empty_column.hashtag": "There naethin in this hashtag yit.",
|
||||||
"empty_column.home": "Yer hame timeline is toum! Follae mair fowk fir tae full it up. {suggestions}",
|
"empty_column.home": "Yer hame timeline is toum! Follae mair fowk fir tae full it up.",
|
||||||
"empty_column.list": "There naethin in this list yit. Whan memmers o this list publish new posts, ye'll see them here.",
|
"empty_column.list": "There naethin in this list yit. Whan memmers o this list publish new posts, ye'll see them here.",
|
||||||
"empty_column.lists": "Ye dinnae hae onie lists yit. Ance ye mak ane, it'll shaw up here.",
|
"empty_column.lists": "Ye dinnae hae onie lists yit. Ance ye mak ane, it'll shaw up here.",
|
||||||
"empty_column.mutes": "Ye'v no wheesht onie uisers yit.",
|
"empty_column.mutes": "Ye'v no wheesht onie uisers yit.",
|
||||||
|
@ -500,7 +509,7 @@
|
||||||
"status.show_less_all": "Shaw less fir aw",
|
"status.show_less_all": "Shaw less fir aw",
|
||||||
"status.show_more_all": "Shaw mair fir aw",
|
"status.show_more_all": "Shaw mair fir aw",
|
||||||
"status.show_original": "Shaw original",
|
"status.show_original": "Shaw original",
|
||||||
"status.title.with_attachments": "{user} posted {attachmentCount, plural, one {an attachment} other {# attachments}}",
|
"status.title.with_attachments": "{user} posted {attachmentCount, plural, one {an attachment} other {{attachmentCount} attachments}}",
|
||||||
"status.translate": "Owerset",
|
"status.translate": "Owerset",
|
||||||
"status.translated_from_with": "Owerset fae {lang} uisin {provider}",
|
"status.translated_from_with": "Owerset fae {lang} uisin {provider}",
|
||||||
"status.unmute_conversation": "Unwheesht conversation",
|
"status.unmute_conversation": "Unwheesht conversation",
|
||||||
|
|
|
@ -221,6 +221,7 @@
|
||||||
"domain_block_modal.they_cant_follow": "Nikto z tohoto servera ťa nemôže nasledovať.",
|
"domain_block_modal.they_cant_follow": "Nikto z tohoto servera ťa nemôže nasledovať.",
|
||||||
"domain_block_modal.they_wont_know": "Nebude vedieť, že bol/a zablokovaný/á.",
|
"domain_block_modal.they_wont_know": "Nebude vedieť, že bol/a zablokovaný/á.",
|
||||||
"domain_block_modal.title": "Blokovať doménu?",
|
"domain_block_modal.title": "Blokovať doménu?",
|
||||||
|
"domain_block_modal.you_will_lose_relationships": "Stratíš všetkých sledovateľov a ľudí, ktorých ty na tomto serveri nasleduješ.",
|
||||||
"domain_block_modal.you_wont_see_posts": "Neuvidíš príspevky, ani oboznámenia od užívateľov na tomto serveri.",
|
"domain_block_modal.you_wont_see_posts": "Neuvidíš príspevky, ani oboznámenia od užívateľov na tomto serveri.",
|
||||||
"domain_pill.activitypub_like_language": "ActivityPub je ako jazyk, ktorým Mastodon hovorí s ostatnými sociálnymi sieťami.",
|
"domain_pill.activitypub_like_language": "ActivityPub je ako jazyk, ktorým Mastodon hovorí s ostatnými sociálnymi sieťami.",
|
||||||
"domain_pill.server": "Server",
|
"domain_pill.server": "Server",
|
||||||
|
@ -302,6 +303,8 @@
|
||||||
"follow_requests.unlocked_explanation": "Aj keď váš účet nie je uzamknutý, tím domény {domain} si myslel, že môžete chcieť skontrolovať žiadosti o sledovanie z týchto účtov manuálne.",
|
"follow_requests.unlocked_explanation": "Aj keď váš účet nie je uzamknutý, tím domény {domain} si myslel, že môžete chcieť skontrolovať žiadosti o sledovanie z týchto účtov manuálne.",
|
||||||
"follow_suggestions.curated_suggestion": "Výber redakcie",
|
"follow_suggestions.curated_suggestion": "Výber redakcie",
|
||||||
"follow_suggestions.dismiss": "Znova nezobrazovať",
|
"follow_suggestions.dismiss": "Znova nezobrazovať",
|
||||||
|
"follow_suggestions.featured_longer": "Ručne vybrané tímom {domain}",
|
||||||
|
"follow_suggestions.friends_of_friends_longer": "Populárne medzi ľudmi ktorých nasleduješ",
|
||||||
"follow_suggestions.hints.featured": "Tento profil bol ručne zvolený tímom domény {domain}.",
|
"follow_suggestions.hints.featured": "Tento profil bol ručne zvolený tímom domény {domain}.",
|
||||||
"follow_suggestions.hints.friends_of_friends": "Tento profil je obľúbený medzi účtami, ktoré sledujete.",
|
"follow_suggestions.hints.friends_of_friends": "Tento profil je obľúbený medzi účtami, ktoré sledujete.",
|
||||||
"follow_suggestions.hints.most_followed": "Tento profil patrí na doméne {domain} medzi najsledovanejšie.",
|
"follow_suggestions.hints.most_followed": "Tento profil patrí na doméne {domain} medzi najsledovanejšie.",
|
||||||
|
@ -339,6 +342,11 @@
|
||||||
"hashtag.follow": "Sledovať hashtag",
|
"hashtag.follow": "Sledovať hashtag",
|
||||||
"hashtag.unfollow": "Prestať sledovať hashtag",
|
"hashtag.unfollow": "Prestať sledovať hashtag",
|
||||||
"hashtags.and_other": "…a {count, plural, other {# ďalších}}",
|
"hashtags.and_other": "…a {count, plural, other {# ďalších}}",
|
||||||
|
"hints.profiles.followers_may_be_missing": "Nasledovatelia tohto profilu môžu chýbať.",
|
||||||
|
"hints.profiles.follows_may_be_missing": "Nasledovatelia tohto profilu môžu chýbať.",
|
||||||
|
"hints.profiles.posts_may_be_missing": "Niektoré príspevky z tohto profilu môžu chýbať.",
|
||||||
|
"hints.profiles.see_more_followers": "Pozri viac nasledovateľov na {domain}",
|
||||||
|
"hints.profiles.see_more_follows": "Pozri viac nasledovateľov na {domain}",
|
||||||
"hints.profiles.see_more_posts": "Pozri viac príspevkov na {domain}",
|
"hints.profiles.see_more_posts": "Pozri viac príspevkov na {domain}",
|
||||||
"hints.threads.replies_may_be_missing": "Odpovede z ostatných serverov môžu chýbať.",
|
"hints.threads.replies_may_be_missing": "Odpovede z ostatných serverov môžu chýbať.",
|
||||||
"hints.threads.see_more": "Pozri viac odpovedí na {domain}",
|
"hints.threads.see_more": "Pozri viac odpovedí na {domain}",
|
||||||
|
@ -353,6 +361,7 @@
|
||||||
"ignore_notifications_modal.filter_to_act_users": "Stále budeš môcť akceptovať, odmietnuť, alebo nahlásiť užívateľov",
|
"ignore_notifications_modal.filter_to_act_users": "Stále budeš môcť akceptovať, odmietnuť, alebo nahlásiť užívateľov",
|
||||||
"ignore_notifications_modal.filter_to_avoid_confusion": "Triedenie pomáha vyvarovať sa možnému zmäteniu",
|
"ignore_notifications_modal.filter_to_avoid_confusion": "Triedenie pomáha vyvarovať sa možnému zmäteniu",
|
||||||
"ignore_notifications_modal.ignore": "Ignoruj upozornenia",
|
"ignore_notifications_modal.ignore": "Ignoruj upozornenia",
|
||||||
|
"ignore_notifications_modal.limited_accounts_title": "Ignorovať oboznámenia z obmedzených účtov?",
|
||||||
"ignore_notifications_modal.new_accounts_title": "Nevšímať si oznámenia z nových účtov?",
|
"ignore_notifications_modal.new_accounts_title": "Nevšímať si oznámenia z nových účtov?",
|
||||||
"ignore_notifications_modal.not_followers_title": "Nevšímať si oznámenia od ľudí, ktorí ťa nenasledujú?",
|
"ignore_notifications_modal.not_followers_title": "Nevšímať si oznámenia od ľudí, ktorí ťa nenasledujú?",
|
||||||
"ignore_notifications_modal.not_following_title": "Nevšímať si oznámenia od ľudí, ktorých nenasleduješ?",
|
"ignore_notifications_modal.not_following_title": "Nevšímať si oznámenia od ľudí, ktorých nenasleduješ?",
|
||||||
|
@ -474,6 +483,7 @@
|
||||||
"navigation_bar.security": "Zabezpečenie",
|
"navigation_bar.security": "Zabezpečenie",
|
||||||
"not_signed_in_indicator.not_signed_in": "Ak chcete získať prístup k tomuto zdroju, prihláste sa.",
|
"not_signed_in_indicator.not_signed_in": "Ak chcete získať prístup k tomuto zdroju, prihláste sa.",
|
||||||
"notification.admin.report": "Účet {name} nahlásil {target}",
|
"notification.admin.report": "Účet {name} nahlásil {target}",
|
||||||
|
"notification.admin.report_statuses": "{name} nahlásil/a {target} za {category}",
|
||||||
"notification.admin.report_statuses_other": "{name} nahlásil/a {target}",
|
"notification.admin.report_statuses_other": "{name} nahlásil/a {target}",
|
||||||
"notification.admin.sign_up": "Nová registráciu účtu {name}",
|
"notification.admin.sign_up": "Nová registráciu účtu {name}",
|
||||||
"notification.favourite": "{name} hviezdičkuje váš príspevok",
|
"notification.favourite": "{name} hviezdičkuje váš príspevok",
|
||||||
|
@ -489,6 +499,9 @@
|
||||||
"notification.moderation_warning": "Dostal/a si varovanie od moderátora",
|
"notification.moderation_warning": "Dostal/a si varovanie od moderátora",
|
||||||
"notification.moderation_warning.action_delete_statuses": "Niektoré z tvojich príspevkov boli odstránené.",
|
"notification.moderation_warning.action_delete_statuses": "Niektoré z tvojich príspevkov boli odstránené.",
|
||||||
"notification.moderation_warning.action_disable": "Tvoj účet bol vypnutý.",
|
"notification.moderation_warning.action_disable": "Tvoj účet bol vypnutý.",
|
||||||
|
"notification.moderation_warning.action_mark_statuses_as_sensitive": "Niektoré tvoje príspevky boli označené za chúlostivé.",
|
||||||
|
"notification.moderation_warning.action_none": "Tvoj účet dostal upozornenie od moderátora.",
|
||||||
|
"notification.moderation_warning.action_sensitive": "Tvoje príspevky budú odteraz označované ako chúlostivé.",
|
||||||
"notification.moderation_warning.action_silence": "Tvoj účet bol obmedzený.",
|
"notification.moderation_warning.action_silence": "Tvoj účet bol obmedzený.",
|
||||||
"notification.moderation_warning.action_suspend": "Tvoj účet bol pozastavený.",
|
"notification.moderation_warning.action_suspend": "Tvoj účet bol pozastavený.",
|
||||||
"notification.own_poll": "Vaša anketa sa skončila",
|
"notification.own_poll": "Vaša anketa sa skončila",
|
||||||
|
@ -500,6 +513,7 @@
|
||||||
"notification.status": "{name} uverejňuje niečo nové",
|
"notification.status": "{name} uverejňuje niečo nové",
|
||||||
"notification.update": "{name} upravuje príspevok",
|
"notification.update": "{name} upravuje príspevok",
|
||||||
"notification_requests.accept": "Prijať",
|
"notification_requests.accept": "Prijať",
|
||||||
|
"notification_requests.confirm_accept_multiple.title": "Priať požiadavku o oboznámenia?",
|
||||||
"notification_requests.dismiss": "Zamietnuť",
|
"notification_requests.dismiss": "Zamietnuť",
|
||||||
"notification_requests.edit_selection": "Uprav",
|
"notification_requests.edit_selection": "Uprav",
|
||||||
"notification_requests.exit_selection": "Hotovo",
|
"notification_requests.exit_selection": "Hotovo",
|
||||||
|
@ -544,9 +558,11 @@
|
||||||
"notifications.policy.accept_hint": "Ukáž v oznámeniach",
|
"notifications.policy.accept_hint": "Ukáž v oznámeniach",
|
||||||
"notifications.policy.drop": "Ignoruj",
|
"notifications.policy.drop": "Ignoruj",
|
||||||
"notifications.policy.filter": "Triediť",
|
"notifications.policy.filter": "Triediť",
|
||||||
|
"notifications.policy.filter_limited_accounts_hint": "Obmedzené moderátormi servera",
|
||||||
"notifications.policy.filter_limited_accounts_title": "Moderované účty",
|
"notifications.policy.filter_limited_accounts_title": "Moderované účty",
|
||||||
"notifications.policy.filter_new_accounts_title": "Nové účty",
|
"notifications.policy.filter_new_accounts_title": "Nové účty",
|
||||||
"notifications.policy.filter_not_followers_title": "Ľudia, ktorí ťa nenasledujú",
|
"notifications.policy.filter_not_followers_title": "Ľudia, ktorí ťa nenasledujú",
|
||||||
|
"notifications.policy.filter_not_following_hint": "Pokiaľ ich ručne neschváliš",
|
||||||
"notifications.policy.filter_not_following_title": "Ľudia, ktorých nenasleduješ",
|
"notifications.policy.filter_not_following_title": "Ľudia, ktorých nenasleduješ",
|
||||||
"notifications.policy.filter_private_mentions_title": "Nevyžiadané priame spomenutia",
|
"notifications.policy.filter_private_mentions_title": "Nevyžiadané priame spomenutia",
|
||||||
"notifications.policy.title": "Spravuj oznámenia od…",
|
"notifications.policy.title": "Spravuj oznámenia od…",
|
||||||
|
@ -560,7 +576,7 @@
|
||||||
"onboarding.compose.template": "Ahoj, #Mastodon!",
|
"onboarding.compose.template": "Ahoj, #Mastodon!",
|
||||||
"onboarding.follows.empty": "Žiaľ, momentálne sa nedajú zobraziť žiadne výsledky. Môžete skúsiť použiť vyhľadávanie alebo navštíviť stránku objavovania a nájsť ľudí, ktorých chcete sledovať, alebo to skúste znova neskôr.",
|
"onboarding.follows.empty": "Žiaľ, momentálne sa nedajú zobraziť žiadne výsledky. Môžete skúsiť použiť vyhľadávanie alebo navštíviť stránku objavovania a nájsť ľudí, ktorých chcete sledovať, alebo to skúste znova neskôr.",
|
||||||
"onboarding.follows.lead": "Váš domovský kanál je váš hlavný spôsob objavovania Mastodonu. Čím viac ľudí sledujete, tým bude aktívnejší a zaujímavejší. Tu je pár tipov na začiatok:",
|
"onboarding.follows.lead": "Váš domovský kanál je váš hlavný spôsob objavovania Mastodonu. Čím viac ľudí sledujete, tým bude aktívnejší a zaujímavejší. Tu je pár tipov na začiatok:",
|
||||||
"onboarding.follows.title": "Prispôsobte si svoj domovský kanál",
|
"onboarding.follows.title": "Prispôsob si svoj domovský kanál",
|
||||||
"onboarding.profile.discoverable": "Nastavte svoj profil ako objaviteľný",
|
"onboarding.profile.discoverable": "Nastavte svoj profil ako objaviteľný",
|
||||||
"onboarding.profile.discoverable_hint": "Keď si na Mastodone zapnete objaviteľnosť, vaše príspevky sa môžu zobrazovať vo výsledkoch vyhľadávania a v populárnych. Váš profil môže byť navyše navrhovaný ľuďom, s ktorými máte podobné záujmy.",
|
"onboarding.profile.discoverable_hint": "Keď si na Mastodone zapnete objaviteľnosť, vaše príspevky sa môžu zobrazovať vo výsledkoch vyhľadávania a v populárnych. Váš profil môže byť navyše navrhovaný ľuďom, s ktorými máte podobné záujmy.",
|
||||||
"onboarding.profile.display_name": "Používateľské meno",
|
"onboarding.profile.display_name": "Používateľské meno",
|
||||||
|
@ -619,7 +635,7 @@
|
||||||
"recommended": "Odporúčané",
|
"recommended": "Odporúčané",
|
||||||
"refresh": "Obnoviť",
|
"refresh": "Obnoviť",
|
||||||
"regeneration_indicator.label": "Načítavanie…",
|
"regeneration_indicator.label": "Načítavanie…",
|
||||||
"regeneration_indicator.sublabel": "Váš domovský kanál sa pripravuje.",
|
"regeneration_indicator.sublabel": "Tvoj domovský kanál sa pripravuje!",
|
||||||
"relative_time.days": "{number} dní",
|
"relative_time.days": "{number} dní",
|
||||||
"relative_time.full.days": "Pred {number, plural, one {# dňom} other {# dňami}}",
|
"relative_time.full.days": "Pred {number, plural, one {# dňom} other {# dňami}}",
|
||||||
"relative_time.full.hours": "Pred {number, plural, one {# hodinou} other {# hodinami}}",
|
"relative_time.full.hours": "Pred {number, plural, one {# hodinou} other {# hodinami}}",
|
||||||
|
@ -709,8 +725,10 @@
|
||||||
"server_banner.about_active_users": "Ľudia používajúci tento server za posledných 30 dní (aktívni používatelia za mesiac)",
|
"server_banner.about_active_users": "Ľudia používajúci tento server za posledných 30 dní (aktívni používatelia za mesiac)",
|
||||||
"server_banner.active_users": "Aktívne účty",
|
"server_banner.active_users": "Aktívne účty",
|
||||||
"server_banner.administered_by": "Správa servera:",
|
"server_banner.administered_by": "Správa servera:",
|
||||||
|
"server_banner.is_one_of_many": "{domain} je jeden z mnohých nezávislých Mastodon serverov, ktoré môžeš použiť na zúčastňovanie sa v rámci fediversa.",
|
||||||
"server_banner.server_stats": "Štatistiky servera:",
|
"server_banner.server_stats": "Štatistiky servera:",
|
||||||
"sign_in_banner.create_account": "Vytvoriť účet",
|
"sign_in_banner.create_account": "Vytvoriť účet",
|
||||||
|
"sign_in_banner.mastodon_is": "Mastodon je najlepšia cesta ako udržať krok s tým, čo sa deje.",
|
||||||
"sign_in_banner.sign_in": "Prihlásiť sa",
|
"sign_in_banner.sign_in": "Prihlásiť sa",
|
||||||
"sign_in_banner.sso_redirect": "Prihlásenie alebo registrácia",
|
"sign_in_banner.sso_redirect": "Prihlásenie alebo registrácia",
|
||||||
"status.admin_account": "Moderovať @{name}",
|
"status.admin_account": "Moderovať @{name}",
|
||||||
|
@ -751,6 +769,7 @@
|
||||||
"status.reblogs.empty": "Nikto ešte tento príspevok nezdieľal. Keď tak niekto urobí, zobrazí sa to tu.",
|
"status.reblogs.empty": "Nikto ešte tento príspevok nezdieľal. Keď tak niekto urobí, zobrazí sa to tu.",
|
||||||
"status.redraft": "Vymazať a prepísať",
|
"status.redraft": "Vymazať a prepísať",
|
||||||
"status.remove_bookmark": "Odstrániť záložku",
|
"status.remove_bookmark": "Odstrániť záložku",
|
||||||
|
"status.replied_in_thread": "Odpovedal/a vo vlákne",
|
||||||
"status.replied_to": "Odpoveď na {name}",
|
"status.replied_to": "Odpoveď na {name}",
|
||||||
"status.reply": "Odpovedať",
|
"status.reply": "Odpovedať",
|
||||||
"status.replyAll": "Odpovedať vo vlákne",
|
"status.replyAll": "Odpovedať vo vlákne",
|
||||||
|
|
|
@ -304,6 +304,7 @@
|
||||||
"filter_modal.select_filter.subtitle": "Uporabite obstoječo kategorijo ali ustvarite novo",
|
"filter_modal.select_filter.subtitle": "Uporabite obstoječo kategorijo ali ustvarite novo",
|
||||||
"filter_modal.select_filter.title": "Filtriraj to objavo",
|
"filter_modal.select_filter.title": "Filtriraj to objavo",
|
||||||
"filter_modal.title.status": "Filtrirajte objavo",
|
"filter_modal.title.status": "Filtrirajte objavo",
|
||||||
|
"filter_warning.matches_filter": "Se ujema s filtrom »<span>{title}</span>«",
|
||||||
"filtered_notifications_banner.title": "Filtrirana obvestila",
|
"filtered_notifications_banner.title": "Filtrirana obvestila",
|
||||||
"firehose.all": "Vse",
|
"firehose.all": "Vse",
|
||||||
"firehose.local": "Ta strežnik",
|
"firehose.local": "Ta strežnik",
|
||||||
|
|
|
@ -121,7 +121,7 @@
|
||||||
"column.blocks": "Blockerade användare",
|
"column.blocks": "Blockerade användare",
|
||||||
"column.bookmarks": "Bokmärken",
|
"column.bookmarks": "Bokmärken",
|
||||||
"column.community": "Lokal tidslinje",
|
"column.community": "Lokal tidslinje",
|
||||||
"column.direct": "Privata nämningar",
|
"column.direct": "Privata omnämnande",
|
||||||
"column.directory": "Bläddra bland profiler",
|
"column.directory": "Bläddra bland profiler",
|
||||||
"column.domain_blocks": "Blockerade domäner",
|
"column.domain_blocks": "Blockerade domäner",
|
||||||
"column.favourites": "Favoriter",
|
"column.favourites": "Favoriter",
|
||||||
|
@ -194,7 +194,7 @@
|
||||||
"confirmations.reply.title": "Skriva över inlägget?",
|
"confirmations.reply.title": "Skriva över inlägget?",
|
||||||
"confirmations.unfollow.confirm": "Avfölj",
|
"confirmations.unfollow.confirm": "Avfölj",
|
||||||
"confirmations.unfollow.message": "Är du säker på att du vill avfölja {name}?",
|
"confirmations.unfollow.message": "Är du säker på att du vill avfölja {name}?",
|
||||||
"confirmations.unfollow.title": "Avfölj %s?",
|
"confirmations.unfollow.title": "Avfölj användare?",
|
||||||
"content_warning.hide": "Dölj inlägg",
|
"content_warning.hide": "Dölj inlägg",
|
||||||
"content_warning.show": "Visa ändå",
|
"content_warning.show": "Visa ändå",
|
||||||
"content_warning.show_more": "Visa mer",
|
"content_warning.show_more": "Visa mer",
|
||||||
|
@ -263,7 +263,7 @@
|
||||||
"empty_column.blocks": "Du har ännu ej blockerat några användare.",
|
"empty_column.blocks": "Du har ännu ej blockerat några användare.",
|
||||||
"empty_column.bookmarked_statuses": "Du har inte bokmärkt några inlägg än. När du bokmärker ett inlägg kommer det synas här.",
|
"empty_column.bookmarked_statuses": "Du har inte bokmärkt några inlägg än. När du bokmärker ett inlägg kommer det synas här.",
|
||||||
"empty_column.community": "Den lokala tidslinjen är tom. Skriv något offentligt för att sätta bollen i rullning!",
|
"empty_column.community": "Den lokala tidslinjen är tom. Skriv något offentligt för att sätta bollen i rullning!",
|
||||||
"empty_column.direct": "Du har inga privata nämningar. När du skickar eller tar emot ett direktmeddelande kommer det att visas här.",
|
"empty_column.direct": "Du har inga privata omnämninande. När du skickar eller tar emot ett direktmeddelande kommer det att visas här.",
|
||||||
"empty_column.domain_blocks": "Det finns ännu inga dolda domäner.",
|
"empty_column.domain_blocks": "Det finns ännu inga dolda domäner.",
|
||||||
"empty_column.explore_statuses": "Ingenting är trendigt just nu. Kom tillbaka senare!",
|
"empty_column.explore_statuses": "Ingenting är trendigt just nu. Kom tillbaka senare!",
|
||||||
"empty_column.favourited_statuses": "Du har inga favoritmarkerade inlägg ännu. När du favoritmärker ett så kommer det att dyka upp här.",
|
"empty_column.favourited_statuses": "Du har inga favoritmarkerade inlägg ännu. När du favoritmärker ett så kommer det att dyka upp här.",
|
||||||
|
@ -381,12 +381,12 @@
|
||||||
"ignore_notifications_modal.new_accounts_title": "Vill du ignorera aviseringar från nya konton?",
|
"ignore_notifications_modal.new_accounts_title": "Vill du ignorera aviseringar från nya konton?",
|
||||||
"ignore_notifications_modal.not_followers_title": "Vill du ignorera aviseringar från personer som inte följer dig?",
|
"ignore_notifications_modal.not_followers_title": "Vill du ignorera aviseringar från personer som inte följer dig?",
|
||||||
"ignore_notifications_modal.not_following_title": "Vill du blockera aviseringar från personer som du inte följer dig?",
|
"ignore_notifications_modal.not_following_title": "Vill du blockera aviseringar från personer som du inte följer dig?",
|
||||||
"ignore_notifications_modal.private_mentions_title": "Vill du ignorera aviseringar från oönskade privata omnämningar?",
|
"ignore_notifications_modal.private_mentions_title": "Vill du ignorera aviseringar från oombedda privata omnämnanden?",
|
||||||
"interaction_modal.description.favourite": "Med ett Mastodon-konto kan du favoritmarkera detta inlägg för att visa författaren att du gillar det och för att spara det till senare.",
|
"interaction_modal.description.favourite": "Med ett Mastodon-konto kan du favoritmarkera detta inlägg för att visa författaren att du gillar det och för att spara det till senare.",
|
||||||
"interaction_modal.description.follow": "Med ett Mastodon-konto kan du följa {name} för att se deras inlägg i ditt hemflöde.",
|
"interaction_modal.description.follow": "Med ett Mastodon-konto kan du följa {name} för att se deras inlägg i ditt hemflöde.",
|
||||||
"interaction_modal.description.reblog": "Med ett Mastodon-konto kan du boosta detta inlägg för att dela den med dina egna följare.",
|
"interaction_modal.description.reblog": "Med ett Mastodon-konto kan du boosta detta inlägg för att dela den med dina egna följare.",
|
||||||
"interaction_modal.description.reply": "Med ett Mastodon-konto kan du svara på detta inlägg.",
|
"interaction_modal.description.reply": "Med ett Mastodon-konto kan du svara på detta inlägg.",
|
||||||
"interaction_modal.login.action": "Ta hem mig",
|
"interaction_modal.login.action": "Ta mig hem",
|
||||||
"interaction_modal.login.prompt": "Domän för din hemserver, t.ex. mastodon.social",
|
"interaction_modal.login.prompt": "Domän för din hemserver, t.ex. mastodon.social",
|
||||||
"interaction_modal.no_account_yet": "Inte på Mastodon?",
|
"interaction_modal.no_account_yet": "Inte på Mastodon?",
|
||||||
"interaction_modal.on_another_server": "På en annan server",
|
"interaction_modal.on_another_server": "På en annan server",
|
||||||
|
@ -406,7 +406,7 @@
|
||||||
"keyboard_shortcuts.column": "Fokusera kolumn",
|
"keyboard_shortcuts.column": "Fokusera kolumn",
|
||||||
"keyboard_shortcuts.compose": "Fokusera skrivfältet",
|
"keyboard_shortcuts.compose": "Fokusera skrivfältet",
|
||||||
"keyboard_shortcuts.description": "Beskrivning",
|
"keyboard_shortcuts.description": "Beskrivning",
|
||||||
"keyboard_shortcuts.direct": "för att öppna privata nämningskolumnen",
|
"keyboard_shortcuts.direct": "för att öppna privata omnämnandekolumnen",
|
||||||
"keyboard_shortcuts.down": "Flytta ner i listan",
|
"keyboard_shortcuts.down": "Flytta ner i listan",
|
||||||
"keyboard_shortcuts.enter": "Öppna inlägg",
|
"keyboard_shortcuts.enter": "Öppna inlägg",
|
||||||
"keyboard_shortcuts.favourite": "Favoritmarkera inlägg",
|
"keyboard_shortcuts.favourite": "Favoritmarkera inlägg",
|
||||||
|
@ -478,14 +478,14 @@
|
||||||
"navigation_bar.bookmarks": "Bokmärken",
|
"navigation_bar.bookmarks": "Bokmärken",
|
||||||
"navigation_bar.community_timeline": "Lokal tidslinje",
|
"navigation_bar.community_timeline": "Lokal tidslinje",
|
||||||
"navigation_bar.compose": "Författa nytt inlägg",
|
"navigation_bar.compose": "Författa nytt inlägg",
|
||||||
"navigation_bar.direct": "Privata nämningar",
|
"navigation_bar.direct": "Privata omnämnande",
|
||||||
"navigation_bar.discover": "Upptäck",
|
"navigation_bar.discover": "Upptäck",
|
||||||
"navigation_bar.domain_blocks": "Dolda domäner",
|
"navigation_bar.domain_blocks": "Dolda domäner",
|
||||||
"navigation_bar.explore": "Utforska",
|
"navigation_bar.explore": "Utforska",
|
||||||
"navigation_bar.favourites": "Favoriter",
|
"navigation_bar.favourites": "Favoriter",
|
||||||
"navigation_bar.filters": "Tystade ord",
|
"navigation_bar.filters": "Tystade ord",
|
||||||
"navigation_bar.follow_requests": "Följförfrågningar",
|
"navigation_bar.follow_requests": "Följförfrågningar",
|
||||||
"navigation_bar.followed_tags": "Utvalda hashtags",
|
"navigation_bar.followed_tags": "Följda hashtaggar",
|
||||||
"navigation_bar.follows_and_followers": "Följer och följare",
|
"navigation_bar.follows_and_followers": "Följer och följare",
|
||||||
"navigation_bar.lists": "Listor",
|
"navigation_bar.lists": "Listor",
|
||||||
"navigation_bar.logout": "Logga ut",
|
"navigation_bar.logout": "Logga ut",
|
||||||
|
@ -513,7 +513,7 @@
|
||||||
"notification.follow_request": "{name} har begärt att följa dig",
|
"notification.follow_request": "{name} har begärt att följa dig",
|
||||||
"notification.follow_request.name_and_others": "{name} och {count, plural, one {# en annan} other {# andra}} har bett att följa dig",
|
"notification.follow_request.name_and_others": "{name} och {count, plural, one {# en annan} other {# andra}} har bett att följa dig",
|
||||||
"notification.label.mention": "Nämn",
|
"notification.label.mention": "Nämn",
|
||||||
"notification.label.private_mention": "Privat nämning",
|
"notification.label.private_mention": "Privat omnämnande",
|
||||||
"notification.label.private_reply": "Privata svar",
|
"notification.label.private_reply": "Privata svar",
|
||||||
"notification.label.reply": "Svar",
|
"notification.label.reply": "Svar",
|
||||||
"notification.mention": "Nämn",
|
"notification.mention": "Nämn",
|
||||||
|
@ -772,7 +772,7 @@
|
||||||
"server_banner.is_one_of_many": "{domain} är en av de många oberoende Mastodon-servrar som du kan använda för att delta i Fediversen.",
|
"server_banner.is_one_of_many": "{domain} är en av de många oberoende Mastodon-servrar som du kan använda för att delta i Fediversen.",
|
||||||
"server_banner.server_stats": "Serverstatistik:",
|
"server_banner.server_stats": "Serverstatistik:",
|
||||||
"sign_in_banner.create_account": "Skapa konto",
|
"sign_in_banner.create_account": "Skapa konto",
|
||||||
"sign_in_banner.follow_anyone": "Följ vem som helst över Fediverse och se allt i kronologisk ordning. Inga algoritmer, inga annonser och inga klickbeten i sikte.",
|
"sign_in_banner.follow_anyone": "Följ vem som helst över Fediversum och se allt i kronologisk ordning. Inga algoritmer, annonser eller klickbeten i sikte.",
|
||||||
"sign_in_banner.mastodon_is": "Mastodon är det bästa sättet att hänga med i vad som händer.",
|
"sign_in_banner.mastodon_is": "Mastodon är det bästa sättet att hänga med i vad som händer.",
|
||||||
"sign_in_banner.sign_in": "Logga in",
|
"sign_in_banner.sign_in": "Logga in",
|
||||||
"sign_in_banner.sso_redirect": "Logga in eller registrera dig",
|
"sign_in_banner.sso_redirect": "Logga in eller registrera dig",
|
||||||
|
@ -787,8 +787,8 @@
|
||||||
"status.copy": "Kopiera inläggslänk",
|
"status.copy": "Kopiera inläggslänk",
|
||||||
"status.delete": "Radera",
|
"status.delete": "Radera",
|
||||||
"status.detailed_status": "Detaljerad samtalsvy",
|
"status.detailed_status": "Detaljerad samtalsvy",
|
||||||
"status.direct": "Nämn @{name} privat",
|
"status.direct": "Omnämn @{name} privat",
|
||||||
"status.direct_indicator": "Privat nämning",
|
"status.direct_indicator": "Privat omnämnande",
|
||||||
"status.edit": "Redigera",
|
"status.edit": "Redigera",
|
||||||
"status.edited": "Senast ändrad {date}",
|
"status.edited": "Senast ändrad {date}",
|
||||||
"status.edited_x_times": "Redigerad {count, plural, one {{count} gång} other {{count} gånger}}",
|
"status.edited_x_times": "Redigerad {count, plural, one {{count} gång} other {{count} gånger}}",
|
||||||
|
|
|
@ -235,6 +235,7 @@
|
||||||
"search.placeholder": "శోధన",
|
"search.placeholder": "శోధన",
|
||||||
"search_results.hashtags": "హాష్ ట్యాగ్లు",
|
"search_results.hashtags": "హాష్ ట్యాగ్లు",
|
||||||
"search_results.statuses": "టూట్లు",
|
"search_results.statuses": "టూట్లు",
|
||||||
|
"search_results.title": "{q}",
|
||||||
"sign_in_banner.sign_in": "Sign in",
|
"sign_in_banner.sign_in": "Sign in",
|
||||||
"status.admin_account": "@{name} కొరకు సమన్వయ వినిమయసీమను తెరువు",
|
"status.admin_account": "@{name} కొరకు సమన్వయ వినిమయసీమను తెరువు",
|
||||||
"status.admin_status": "సమన్వయ వినిమయసీమలో ఈ స్టేటస్ ను తెరవండి",
|
"status.admin_status": "సమన్వయ వినిమయసీమలో ఈ స్టేటస్ ను తెరవండి",
|
||||||
|
|
|
@ -1,11 +1,12 @@
|
||||||
{
|
{
|
||||||
"about.blocks": "ma lawa",
|
"about.blocks": "ma lawa",
|
||||||
"about.contact": "toki:",
|
"about.contact": "toki:",
|
||||||
"about.disclaimer": "ilo Masoton la, jan ale li ken kama jo e ona kepeken mani ala, li ken ante e toki ilo ona. kulupu esun Mastodon li jo e nimi ona. kulupu esun Mastodon li nasin lawa gGmbH.",
|
"about.disclaimer": "ilo Masoton la jan ale li lawa e ona li pana e pona tawa ona. kulupu esun Mastodon gGmbH li lawa e nimi ona.",
|
||||||
"about.domain_blocks.no_reason_available": "mi sona ala e tan",
|
"about.domain_blocks.no_reason_available": "mi sona ala e tan",
|
||||||
"about.domain_blocks.preamble": "ilo Masoton li ken e ni: sina lukin e toki jan pi ma ilo mute. sina ken toki tawa ona lon kulupu ma. taso, ma ni li ken ala e ni tawa ma ni:",
|
"about.domain_blocks.preamble": "ilo Masoton li ken e ni: sina lukin e toki jan pi ma ilo mute. sina ken toki tawa ona lon kulupu ma. taso, ma ni li ken ala e ni tawa ma ni:",
|
||||||
"about.domain_blocks.silenced.explanation": "sina lukin ala e toki e jan tan ma ni. taso, sina wile la, sina ken ni.",
|
"about.domain_blocks.silenced.explanation": "sina lukin ala e toki e jan tan ma ni. taso, sina wile la, sina ken ni.",
|
||||||
"about.domain_blocks.silenced.title": "ken lili lukin",
|
"about.domain_blocks.silenced.title": "ken lukin lili ",
|
||||||
|
"about.domain_blocks.suspended.explanation": "sona ale pi ma ni li kama pali ala, li kama esun ala, li kama awen ala la sina ken ala toki tawa jan pi ma ni.",
|
||||||
"about.domain_blocks.suspended.title": "weka",
|
"about.domain_blocks.suspended.title": "weka",
|
||||||
"about.not_available": "lon kulupu ni la sina ken alasa ala e sona ni.",
|
"about.not_available": "lon kulupu ni la sina ken alasa ala e sona ni.",
|
||||||
"about.powered_by": "lipu kulupu pi jan lawa mute tan {mastodon}",
|
"about.powered_by": "lipu kulupu pi jan lawa mute tan {mastodon}",
|
||||||
|
@ -18,7 +19,7 @@
|
||||||
"account.block_domain": "o weka e ma {domain}",
|
"account.block_domain": "o weka e ma {domain}",
|
||||||
"account.block_short": "o weka e jan tawa mi",
|
"account.block_short": "o weka e jan tawa mi",
|
||||||
"account.blocked": "jan li weka tawa mi",
|
"account.blocked": "jan li weka tawa mi",
|
||||||
"account.cancel_follow_request": "o pini kute",
|
"account.cancel_follow_request": "o kute ala",
|
||||||
"account.copy": "o pali same e linja pi lipu jan",
|
"account.copy": "o pali same e linja pi lipu jan",
|
||||||
"account.direct": "len la o mu e @{name}",
|
"account.direct": "len la o mu e @{name}",
|
||||||
"account.disable_notifications": "@{name} li toki la o mu ala e mi",
|
"account.disable_notifications": "@{name} li toki la o mu ala e mi",
|
||||||
|
@ -50,63 +51,77 @@
|
||||||
"account.mute": "o len e @{name}",
|
"account.mute": "o len e @{name}",
|
||||||
"account.mute_notifications_short": "o kute ala e mu tan jan ni",
|
"account.mute_notifications_short": "o kute ala e mu tan jan ni",
|
||||||
"account.mute_short": "o kute ala",
|
"account.mute_short": "o kute ala",
|
||||||
"account.muted": "sina len e jan ni",
|
"account.muted": "sina kute ala e jan ni",
|
||||||
"account.mutual": "jan pona sona",
|
"account.mutual": "jan pona sona",
|
||||||
"account.no_bio": "lipu li weka",
|
"account.no_bio": "lipu li weka.",
|
||||||
"account.open_original_page": "o open e lipu open",
|
"account.open_original_page": "o open e lipu open",
|
||||||
"account.posts": "toki suli",
|
"account.posts": "toki suli",
|
||||||
"account.posts_with_replies": "toki ale",
|
"account.posts_with_replies": "toki ale",
|
||||||
"account.report": "jan @{name} la o toki tawa lawa",
|
"account.report": "jan @{name} la o toki e ike tawa lawa",
|
||||||
"account.requested": "jan ni o ken e kute sina. sina pini wile kute la o luka e ni",
|
"account.requested": "jan ni o ken e kute sina",
|
||||||
"account.requested_follow": "{name} li wile kute e sina",
|
"account.requested_follow": "jan {name} li wile kute e sina",
|
||||||
"account.share": "o pana e lipu jan @{name}",
|
"account.share": "o pana e lipu jan @{name}",
|
||||||
"account.show_reblogs": "o lukin e pana toki tan @{name}",
|
"account.show_reblogs": "o lukin e pana toki tan @{name}",
|
||||||
"account.statuses_counter": "{count, plural, other {toki {counter}}}",
|
"account.statuses_counter": "{count, plural, other {toki {counter}}}",
|
||||||
"account.unblock": "o weka ala e jan {name}",
|
"account.unblock": "o weka ala e jan {name}",
|
||||||
"account.unblock_domain": "o weka ala e ma {domain}",
|
"account.unblock_domain": "o weka ala e ma {domain}",
|
||||||
"account.unblock_short": "o pini weka",
|
"account.unblock_short": "o weka ala",
|
||||||
"account.unendorse": "lipu jan la o suli ala e ni",
|
"account.unendorse": "lipu jan la o suli ala e ni",
|
||||||
"account.unfollow": "o pini kute",
|
"account.unfollow": "o kute ala",
|
||||||
"account.unmute": "o len ala e @{name}",
|
"account.unmute": "o len ala e @{name}",
|
||||||
"account.unmute_notifications_short": "o kute e mu tan jan ni",
|
"account.unmute_notifications_short": "o kute e mu tan jan ni",
|
||||||
"account.unmute_short": "o len ala",
|
"account.unmute_short": "o len ala",
|
||||||
"account_note.placeholder": "o luka e ni la sona pi sina taso",
|
"account_note.placeholder": "o luka e ni la sona pi sina taso",
|
||||||
|
"admin.dashboard.daily_retention": "nanpa pi awen jan lon tenpo suno",
|
||||||
|
"admin.dashboard.monthly_retention": "nanpa pi awen jan lon tenpo mun",
|
||||||
"admin.dashboard.retention.average": "sama",
|
"admin.dashboard.retention.average": "sama",
|
||||||
"admin.dashboard.retention.cohort": "tenpo mun open",
|
"admin.dashboard.retention.cohort": "tenpo mun open",
|
||||||
"admin.dashboard.retention.cohort_size": "jan sin",
|
"admin.dashboard.retention.cohort_size": "jan sin",
|
||||||
|
"admin.impact_report.instance_accounts": "ni li pakala li weka e lipu jan ni",
|
||||||
|
"admin.impact_report.instance_followers": "jan pi ma mi li weka tan jan kute ni",
|
||||||
|
"admin.impact_report.instance_follows": "ma ante li weka tan jan kute ni",
|
||||||
|
"admin.impact_report.title": "sona pi pakala kulupu",
|
||||||
"alert.rate_limited.message": "tenpo {retry_time, time, medium} la o pali awen",
|
"alert.rate_limited.message": "tenpo {retry_time, time, medium} la o pali awen",
|
||||||
|
"alert.rate_limited.title": "ilo ni li lili e ken sina",
|
||||||
"alert.unexpected.message": "pakala li lon",
|
"alert.unexpected.message": "pakala li lon",
|
||||||
"alert.unexpected.title": "pakala a!",
|
"alert.unexpected.title": "pakala a!",
|
||||||
"alt_text_badge.title": "toki sona sitelen",
|
"alt_text_badge.title": "toki sona sitelen",
|
||||||
"announcement.announcement": "toki suli",
|
"announcement.announcement": "toki suli",
|
||||||
"attachments_list.unprocessed": "(nasin open)",
|
"attachments_list.unprocessed": "(nasin open)",
|
||||||
"audio.hide": "o len e kalama",
|
"audio.hide": "o len e kalama",
|
||||||
|
"block_modal.remote_users_caveat": "mi pana e wile sina tawa ma {domain}. taso, o sona: ma li ken kepeken nasin len ante la pakala li ken lon. toki pi lukin ale la jan pi ma ala li ken lukin.",
|
||||||
"block_modal.show_less": "o lili e lukin",
|
"block_modal.show_less": "o lili e lukin",
|
||||||
"block_modal.show_more": "o mute e lukin",
|
"block_modal.show_more": "o suli e lukin",
|
||||||
"block_modal.they_cant_mention": "ona li ken ala toki e sina li ken ala alasa e sina",
|
"block_modal.they_cant_mention": "ona li ken ala toki tawa sina li ken ala kute e sina.",
|
||||||
"block_modal.they_cant_see_posts": "ona li ken ala lukin e toki sina. sina ken ala lukin e toki ona.",
|
"block_modal.they_cant_see_posts": "ona li ken ala lukin e toki sina. sina ken ala lukin e toki ona.",
|
||||||
"block_modal.they_will_know": "ona li sona e ni: sina ala e lukin ona.",
|
"block_modal.they_will_know": "ona li sona e ni: sina weka e lukin ona.",
|
||||||
"block_modal.title": "o weka ala weka e jan",
|
"block_modal.title": "o weka ala weka e jan",
|
||||||
"block_modal.you_wont_see_mentions": "nimi ona li lon toki suli la sina lukin ala e toki ni.",
|
"block_modal.you_wont_see_mentions": "jan li toki e nimi ona la sina lukin ala e toki ni.",
|
||||||
"boost_modal.combo": "sina ken luka e nena {combo} tawa ni: sina wile ala luka e nena lon tenpo kama",
|
"boost_modal.combo": "sina ken luka e nena {combo} tawa ni: sina wile ala luka e nena lon tenpo kama",
|
||||||
|
"boost_modal.reblog": "o wawa ala wawa e toki?",
|
||||||
|
"boost_modal.undo_reblog": "o weka ala weka e wawa toki?",
|
||||||
"bundle_column_error.copy_stacktrace": "o awen e sona pakala lon ilo sina",
|
"bundle_column_error.copy_stacktrace": "o awen e sona pakala lon ilo sina",
|
||||||
"bundle_column_error.error.body": "ilo li ken ala pana e lipu ni. ni li ken tan pakala ilo.",
|
"bundle_column_error.error.body": "ilo li ken ala pana e lipu ni. ni li ken tan pakala ilo.",
|
||||||
"bundle_column_error.error.title": "ike a!",
|
"bundle_column_error.error.title": "pakala a!",
|
||||||
|
"bundle_column_error.network.body": "mi lukin pana e lipu la, pakala li lon. ken la, pakala li tan ilo nanpa sina. ken la, pakala li tan ilo nanpa suli pi ma kulupu ni.",
|
||||||
"bundle_column_error.network.title": "pakala la ilo sina li toki ala tawa ilo ante",
|
"bundle_column_error.network.title": "pakala la ilo sina li toki ala tawa ilo ante",
|
||||||
"bundle_column_error.retry": "o ni sin",
|
"bundle_column_error.retry": "o alasa sin",
|
||||||
"bundle_column_error.return": "o tawa tomo",
|
"bundle_column_error.return": "o tawa open",
|
||||||
"bundle_column_error.routing.body": "ilo li sona ala e lipu wile. sina pana ala pana e nasin pona tawa lipu?",
|
"bundle_column_error.routing.body": "ilo li sona ala e lipu wile. sina pana ala pana e nasin pona tawa lipu?",
|
||||||
"bundle_column_error.routing.title": "pakala nanpa 404",
|
"bundle_column_error.routing.title": "pakala nanpa 404",
|
||||||
"bundle_modal_error.close": "o pini",
|
"bundle_modal_error.close": "o pini",
|
||||||
"bundle_modal_error.message": "ilo li wile kama e ijo ni, taso pakala li lon.",
|
"bundle_modal_error.message": "ilo li wile kama e ijo ni, taso pakala li lon.",
|
||||||
"bundle_modal_error.retry": "o ni sin",
|
"bundle_modal_error.retry": "o alasa sin",
|
||||||
"closed_registrations.other_server_instructions": "kulupu Masoton li jo e jan lawa mute, la sina ken pali e sijelo lon ma ante, li ken lukin e ijo pi ma ni.",
|
"closed_registrations.other_server_instructions": "kulupu Masoton la lawa mute li lon. sina ken pali e sijelo lon ma ante la sina awen ken lukin e ijo pi ma ni.",
|
||||||
|
"closed_registrations_modal.description": "tenpo ni la, sina ken ala pali e jan lon ma {domain}. taso sina wile kepeken ilo Masoton la, sina ken pali e jan lon ma ante lon ala ma {domain}.",
|
||||||
"closed_registrations_modal.find_another_server": "o alasa e ma ante",
|
"closed_registrations_modal.find_another_server": "o alasa e ma ante",
|
||||||
|
"closed_registrations_modal.preamble": "ilo Masoton li lon ilo wan ala. sina kepeken ma ante la sina ken lukin li ken kute e jan pi ma ni. sina wile la, sina ken pali e ma sin!",
|
||||||
"closed_registrations_modal.title": "sina kama lon kulupu Masoton",
|
"closed_registrations_modal.title": "sina kama lon kulupu Masoton",
|
||||||
"column.about": "sona",
|
"column.about": "sona",
|
||||||
"column.blocks": "kulupu pi jan weka",
|
"column.blocks": "kulupu pi jan weka",
|
||||||
"column.bookmarks": "awen toki",
|
"column.bookmarks": "awen toki",
|
||||||
"column.community": "linja tenpo pi ma ni",
|
"column.community": "linja tenpo pi ma ni",
|
||||||
|
"column.direct": "mu len",
|
||||||
"column.directory": "o lukin e jan",
|
"column.directory": "o lukin e jan",
|
||||||
"column.domain_blocks": "ma pi wile ala lukin",
|
"column.domain_blocks": "ma pi wile ala lukin",
|
||||||
"column.favourites": "ijo pona",
|
"column.favourites": "ijo pona",
|
||||||
|
@ -117,8 +132,11 @@
|
||||||
"column.mutes": "jan len",
|
"column.mutes": "jan len",
|
||||||
"column.notifications": "mu pi sona sin",
|
"column.notifications": "mu pi sona sin",
|
||||||
"column.pins": "toki sewi",
|
"column.pins": "toki sewi",
|
||||||
|
"column.public": "toki pi ma poka ale",
|
||||||
"column_back_button.label": "o tawa monsi",
|
"column_back_button.label": "o tawa monsi",
|
||||||
"column_header.hide_settings": "o len e lawa",
|
"column_header.hide_settings": "o len e lawa",
|
||||||
|
"column_header.moveLeft_settings": "poki toki ni o tawa ni ←",
|
||||||
|
"column_header.moveRight_settings": "poki toki ni o tawa ni →",
|
||||||
"column_header.pin": "o sewi",
|
"column_header.pin": "o sewi",
|
||||||
"column_header.show_settings": "o lukin e lawa",
|
"column_header.show_settings": "o lukin e lawa",
|
||||||
"column_header.unpin": "o sewi ala",
|
"column_header.unpin": "o sewi ala",
|
||||||
|
@ -133,6 +151,8 @@
|
||||||
"compose.saved.body": "ilo li awen e ijo pana sina.",
|
"compose.saved.body": "ilo li awen e ijo pana sina.",
|
||||||
"compose_form.direct_message_warning_learn_more": "o kama sona e ijo ante",
|
"compose_form.direct_message_warning_learn_more": "o kama sona e ijo ante",
|
||||||
"compose_form.encryption_warning": "toki li len ala lon ilo Masoton ꞏ o pana ala e sona suli len lon ilo Masoton",
|
"compose_form.encryption_warning": "toki li len ala lon ilo Masoton ꞏ o pana ala e sona suli len lon ilo Masoton",
|
||||||
|
"compose_form.lock_disclaimer": "lipu sina li open, li {locked} ala. jan ale li ken kama kute e sina, li ken lukin e toki sama ni.",
|
||||||
|
"compose_form.lock_disclaimer.lock": "pini",
|
||||||
"compose_form.placeholder": "sina wile toki e seme?",
|
"compose_form.placeholder": "sina wile toki e seme?",
|
||||||
"compose_form.poll.duration": "tenpo pana",
|
"compose_form.poll.duration": "tenpo pana",
|
||||||
"compose_form.poll.multiple": "pana mute",
|
"compose_form.poll.multiple": "pana mute",
|
||||||
|
@ -146,30 +166,43 @@
|
||||||
"compose_form.reply": "o toki lon ijo ni",
|
"compose_form.reply": "o toki lon ijo ni",
|
||||||
"compose_form.save_changes": "o sin e ni",
|
"compose_form.save_changes": "o sin e ni",
|
||||||
"compose_form.spoiler.marked": "o weka e toki pi ijo ike ken",
|
"compose_form.spoiler.marked": "o weka e toki pi ijo ike ken",
|
||||||
"confirmation_modal.cancel": "o pini",
|
"compose_form.spoiler.unmarked": "o pali e toki pi ijo ike ken",
|
||||||
|
"compose_form.spoiler_placeholder": "toki pi ijo ike ken (sina ken ala e ni)",
|
||||||
|
"confirmation_modal.cancel": "o weka",
|
||||||
"confirmations.block.confirm": "o weka",
|
"confirmations.block.confirm": "o weka",
|
||||||
"confirmations.delete.confirm": "o weka",
|
"confirmations.delete.confirm": "o weka",
|
||||||
"confirmations.delete.message": "sina wile ala wile weka e toki ni?",
|
"confirmations.delete.message": "sina wile ala wile weka e toki ni?",
|
||||||
|
"confirmations.delete.title": "o weka ala weka e toki?",
|
||||||
"confirmations.delete_list.confirm": "o weka",
|
"confirmations.delete_list.confirm": "o weka",
|
||||||
"confirmations.delete_list.message": "sina wile ala wile weka e lipu ni?",
|
"confirmations.delete_list.message": "sina wile ala wile weka e lipu ni?",
|
||||||
|
"confirmations.delete_list.title": "o weka ala weka e kulupu lipu?",
|
||||||
"confirmations.discard_edit_media.confirm": "o weka",
|
"confirmations.discard_edit_media.confirm": "o weka",
|
||||||
"confirmations.discard_edit_media.message": "toki sitelen anu lukin lili sitelen la ante pi awen ala li lon. sina wile weka e ante ni?",
|
"confirmations.discard_edit_media.message": "toki sitelen anu lukin lili sitelen la ante pi awen ala li lon. sina wile weka e ante ni?",
|
||||||
"confirmations.edit.confirm": "o ante",
|
"confirmations.edit.confirm": "o ante",
|
||||||
"confirmations.edit.message": "sina ante e toki sina la toki pali sina li weka. sina wile ala wile e ni?",
|
"confirmations.edit.message": "sina ante e toki sina la toki pali sina li weka. sina wile ala wile e ni?",
|
||||||
|
"confirmations.edit.title": "o weka ala weka e toki? ni la, toki li kama toki sin.",
|
||||||
"confirmations.logout.confirm": "o weka",
|
"confirmations.logout.confirm": "o weka",
|
||||||
"confirmations.logout.message": "sina wile ala wile weka",
|
"confirmations.logout.message": "sina wile ala wile weka",
|
||||||
|
"confirmations.logout.title": "o weka?",
|
||||||
"confirmations.mute.confirm": "o len",
|
"confirmations.mute.confirm": "o len",
|
||||||
"confirmations.redraft.confirm": "o weka o pali sin e toki",
|
"confirmations.redraft.confirm": "o weka o pali sin e toki",
|
||||||
"confirmations.redraft.message": "pali sin e toki ni la sina wile ala wile weka e ona? sina ni la suli pi toki ni en wawa pi toki ni li weka. kin la toki lon toki ni li jo e mama ala.",
|
"confirmations.redraft.message": "pali sin e toki ni la sina wile ala wile weka e ona? sina ni la suli pi toki ni en wawa pi toki ni li weka. kin la toki lon toki ni li jo e mama ala.",
|
||||||
|
"confirmations.redraft.title": "ni li weka li pali sin e toki ni.",
|
||||||
"confirmations.reply.confirm": "toki lon toki ni",
|
"confirmations.reply.confirm": "toki lon toki ni",
|
||||||
"confirmations.reply.message": "sina toki lon toki ni la toki pali sina li weka. sina wile ala wile e ni?",
|
"confirmations.reply.message": "sina toki lon toki ni la toki pali sina li weka. sina wile ala wile e ni?",
|
||||||
"confirmations.unfollow.confirm": "o pini kute",
|
"confirmations.reply.title": "sina wile ala wile weka e toki lon?",
|
||||||
|
"confirmations.unfollow.confirm": "o kute ala",
|
||||||
"confirmations.unfollow.message": "sina o wile ala wile pini kute e jan {name}?",
|
"confirmations.unfollow.message": "sina o wile ala wile pini kute e jan {name}?",
|
||||||
|
"confirmations.unfollow.title": "sina wile ala wile pini kute?",
|
||||||
|
"content_warning.hide": "o len",
|
||||||
|
"content_warning.show": "o lukin",
|
||||||
|
"content_warning.show_more": "o lukin",
|
||||||
"conversation.delete": "o weka e toki ni",
|
"conversation.delete": "o weka e toki ni",
|
||||||
"conversation.mark_as_read": "ni o sin ala",
|
"conversation.mark_as_read": "ni o sin ala",
|
||||||
"conversation.open": "o lukin e toki",
|
"conversation.open": "o lukin e toki",
|
||||||
"conversation.with": "lon {names}",
|
"conversation.with": "lon {names}",
|
||||||
"copy_icon_button.copied": "toki li awen lon ilo sina",
|
"copy_icon_button.copied": "toki li awen lon ilo sina",
|
||||||
|
"copypaste.copied": "sina jo e toki",
|
||||||
"copypaste.copy_to_clipboard": "o awen lon ilo sina",
|
"copypaste.copy_to_clipboard": "o awen lon ilo sina",
|
||||||
"directory.local": "tan {domain} taso",
|
"directory.local": "tan {domain} taso",
|
||||||
"directory.new_arrivals": "jan pi kama sin",
|
"directory.new_arrivals": "jan pi kama sin",
|
||||||
|
@ -183,11 +216,25 @@
|
||||||
"dismissable_banner.explore_tags": "suni ni la jan mute li lukin e toki pi toki ni. jan mute li kepeken toki la toki ni li lon sewi.",
|
"dismissable_banner.explore_tags": "suni ni la jan mute li lukin e toki pi toki ni. jan mute li kepeken toki la toki ni li lon sewi.",
|
||||||
"dismissable_banner.public_timeline": "toki ni li sin. jan li pali e toki ni la jan ante mute pi ma {domain} li kute e jan ni.",
|
"dismissable_banner.public_timeline": "toki ni li sin. jan li pali e toki ni la jan ante mute pi ma {domain} li kute e jan ni.",
|
||||||
"domain_block_modal.block": "o weka e ma",
|
"domain_block_modal.block": "o weka e ma",
|
||||||
|
"domain_block_modal.they_wont_know": "ona li sona ala e ni: sina weka e ona.",
|
||||||
|
"domain_block_modal.title": "sina wile weka ala weka e ma?",
|
||||||
|
"domain_block_modal.you_will_lose_num_followers": "{followersCount, plural, other {jan {followersCountDisplay}}} li kute e sina la, ona kama kute ala e sina. sina kute e {followingCount, plural,other {jan {followingCountDisplay}}} la, sina kama kute ala e ona.",
|
||||||
|
"domain_block_modal.you_will_lose_relationships": "jan li lon kulupu ni la ona kute e sina la, ona li kama kute ala e sina. jan li lon kulupu ni la sina kute e ona la, sina kama kute ala e ona.",
|
||||||
"domain_block_modal.you_wont_see_posts": "sina ken ala lukin e toki tan jan pi ma ni",
|
"domain_block_modal.you_wont_see_posts": "sina ken ala lukin e toki tan jan pi ma ni",
|
||||||
"domain_pill.server": "ma",
|
"domain_pill.server": "ma",
|
||||||
|
"domain_pill.their_handle": "nimi pi ona taso li ni:",
|
||||||
|
"domain_pill.their_server": "ni li ma ona lon ilo. toki ale ona li lon ma ni.",
|
||||||
|
"domain_pill.their_username": "ni li nimi ona lon ma ni. jan mute li lon ma ante la, nimi ona li ken sama.",
|
||||||
"domain_pill.username": "nimi jan",
|
"domain_pill.username": "nimi jan",
|
||||||
|
"domain_pill.whats_in_a_handle": "seme li lon nimi?",
|
||||||
|
"domain_pill.who_they_are": "nimi ilo la sona jan en sona ma li lon. ni la sina ken toki tawa jan ni lon <button>kulupu ma ale</button>.",
|
||||||
|
"domain_pill.your_handle": "nimi sina:",
|
||||||
|
"domain_pill.your_server": "ni li ma sina lon ilo. toki ale sina li lon ma ni. ma li ike tawa sina la, sina ken tawa ma ante. ni la jan kute sina li tawa sama.",
|
||||||
|
"domain_pill.your_username": "ni li nimi sina. ma sina la, sina taso li jo e ona. jan mute li lon ma ante la, ona li ken jo e nimi sama.",
|
||||||
|
"embed.instructions": "o pana e toki ni la, toki li lon lipu ante. ",
|
||||||
"embed.preview": "ni li jo e sitelen ni:",
|
"embed.preview": "ni li jo e sitelen ni:",
|
||||||
"emoji_button.activity": "musi",
|
"emoji_button.activity": "musi",
|
||||||
|
"emoji_button.clear": "o weka",
|
||||||
"emoji_button.flags": "len ma",
|
"emoji_button.flags": "len ma",
|
||||||
"emoji_button.food": "moku",
|
"emoji_button.food": "moku",
|
||||||
"emoji_button.label": "o pana e sitelen pilin",
|
"emoji_button.label": "o pana e sitelen pilin",
|
||||||
|
@ -195,6 +242,7 @@
|
||||||
"emoji_button.not_found": "sitelen pilin ala li lon",
|
"emoji_button.not_found": "sitelen pilin ala li lon",
|
||||||
"emoji_button.objects": "ijo",
|
"emoji_button.objects": "ijo",
|
||||||
"emoji_button.people": "jan",
|
"emoji_button.people": "jan",
|
||||||
|
"emoji_button.recent": "kepeken suli",
|
||||||
"emoji_button.search": "o alasa...",
|
"emoji_button.search": "o alasa...",
|
||||||
"emoji_button.search_results": "ijo pi alasa ni",
|
"emoji_button.search_results": "ijo pi alasa ni",
|
||||||
"emoji_button.symbols": "sitelen",
|
"emoji_button.symbols": "sitelen",
|
||||||
|
@ -221,6 +269,7 @@
|
||||||
"explore.title": "o alasa",
|
"explore.title": "o alasa",
|
||||||
"explore.trending_links": "sin",
|
"explore.trending_links": "sin",
|
||||||
"explore.trending_statuses": "toki",
|
"explore.trending_statuses": "toki",
|
||||||
|
"explore.trending_tags": "kulupu pi lipu suli",
|
||||||
"filter_modal.added.settings_link": "lipu lawa",
|
"filter_modal.added.settings_link": "lipu lawa",
|
||||||
"filter_modal.select_filter.expired": "tenpo pini",
|
"filter_modal.select_filter.expired": "tenpo pini",
|
||||||
"filter_modal.select_filter.search": "o alasa anu pali",
|
"filter_modal.select_filter.search": "o alasa anu pali",
|
||||||
|
@ -229,6 +278,7 @@
|
||||||
"firehose.remote": "kulupu ante",
|
"firehose.remote": "kulupu ante",
|
||||||
"follow_request.authorize": "o ken",
|
"follow_request.authorize": "o ken",
|
||||||
"follow_request.reject": "o ala",
|
"follow_request.reject": "o ala",
|
||||||
|
"follow_suggestions.dismiss": "mi wile lukin sin ala e ni",
|
||||||
"follow_suggestions.hints.friends_of_friends": "jan kute sina li lukin mute e toki pi jan ni.",
|
"follow_suggestions.hints.friends_of_friends": "jan kute sina li lukin mute e toki pi jan ni.",
|
||||||
"follow_suggestions.hints.most_followed": "jan mute lon ma {domain} li kute e jan ni.",
|
"follow_suggestions.hints.most_followed": "jan mute lon ma {domain} li kute e jan ni.",
|
||||||
"follow_suggestions.hints.most_interactions": "tenpo poka la jan mute pi ma {domain} li lukin mute e toki pi jan ni.",
|
"follow_suggestions.hints.most_interactions": "tenpo poka la jan mute pi ma {domain} li lukin mute e toki pi jan ni.",
|
||||||
|
@ -248,15 +298,21 @@
|
||||||
"hashtag.column_settings.tag_mode.all": "ale ni",
|
"hashtag.column_settings.tag_mode.all": "ale ni",
|
||||||
"hashtag.column_settings.tag_mode.any": "wan ni",
|
"hashtag.column_settings.tag_mode.any": "wan ni",
|
||||||
"hashtag.column_settings.tag_mode.none": "ala ni",
|
"hashtag.column_settings.tag_mode.none": "ala ni",
|
||||||
|
"hashtag.counter_by_accounts": "{count, plural, other {jan {counter}}}",
|
||||||
|
"hashtag.counter_by_uses": "{count, plural, other {toki {counter}}}",
|
||||||
|
"hashtag.follow": "o kute e kulupu lipu",
|
||||||
|
"hashtag.unfollow": "o kute ala e kulupu lipu",
|
||||||
"home.pending_critical_update.link": "o lukin e ijo ilo sin",
|
"home.pending_critical_update.link": "o lukin e ijo ilo sin",
|
||||||
"interaction_modal.login.action": "o lon tomo",
|
"interaction_modal.login.action": "o lon tomo",
|
||||||
"interaction_modal.on_another_server": "lon ma ante",
|
"interaction_modal.on_another_server": "lon ma ante",
|
||||||
"interaction_modal.on_this_server": "lon ma ni",
|
"interaction_modal.on_this_server": "lon ma ni",
|
||||||
|
"interaction_modal.sign_in_hint": "ni li ma pi ilo nanpa ni: ona li pali e jan sina lon ona. sona sina ni li weka la, o lukin e lipu. kin la, sina ken pana e nimi jan suli sina a! (ni li ken ni: @Mastodon@mastodon.social)",
|
||||||
"interaction_modal.title.favourite": "o suli e toki {name}",
|
"interaction_modal.title.favourite": "o suli e toki {name}",
|
||||||
"interaction_modal.title.follow": "o kute e {name}",
|
"interaction_modal.title.follow": "o kute e {name}",
|
||||||
"interaction_modal.title.reblog": "o wawa e toki {name}",
|
"interaction_modal.title.reblog": "o wawa e toki {name}",
|
||||||
"interaction_modal.title.reply": "o toki lon toki pi jan {name}",
|
"interaction_modal.title.reply": "o toki lon toki pi jan {name}",
|
||||||
"intervals.full.days": "{number, plural, other {suni #}}",
|
"intervals.full.days": "{number, plural, other {suni #}}",
|
||||||
|
"intervals.full.hours": "{number, plural, other {tenpo suli #}}",
|
||||||
"keyboard_shortcuts.blocked": "o lukin e lipu sina pi jan weka",
|
"keyboard_shortcuts.blocked": "o lukin e lipu sina pi jan weka",
|
||||||
"keyboard_shortcuts.boost": "o pana sin e toki",
|
"keyboard_shortcuts.boost": "o pana sin e toki",
|
||||||
"keyboard_shortcuts.down": "o tawa anpa lon lipu",
|
"keyboard_shortcuts.down": "o tawa anpa lon lipu",
|
||||||
|
@ -374,7 +430,7 @@
|
||||||
"report.category.title": "ike seme li lon {type} ni",
|
"report.category.title": "ike seme li lon {type} ni",
|
||||||
"report.category.title_account": "lipu",
|
"report.category.title_account": "lipu",
|
||||||
"report.category.title_status": "toki",
|
"report.category.title_status": "toki",
|
||||||
"report.close": "o pini",
|
"report.close": "ale li pona",
|
||||||
"report.mute": "o kute ala e ona",
|
"report.mute": "o kute ala e ona",
|
||||||
"report.mute_explanation": "sina kama ala lukin e ijo pana ona. ona li awen ken kute e sina li awen ken lukin e sina li sona ala e weka kute sina e weka lukin sina.",
|
"report.mute_explanation": "sina kama ala lukin e ijo pana ona. ona li awen ken kute e sina li awen ken lukin e sina li sona ala e weka kute sina e weka lukin sina.",
|
||||||
"report.next": "awen",
|
"report.next": "awen",
|
||||||
|
@ -383,7 +439,7 @@
|
||||||
"report.reasons.other": "ni li ike tan ante",
|
"report.reasons.other": "ni li ike tan ante",
|
||||||
"report.reasons.spam": "ni li ike tan toki mute",
|
"report.reasons.spam": "ni li ike tan toki mute",
|
||||||
"report.thanks.title": "sina wile ala lukin e ni anu seme?",
|
"report.thanks.title": "sina wile ala lukin e ni anu seme?",
|
||||||
"report.unfollow": "o pini kute e {name}",
|
"report.unfollow": "o kute ala e {name}",
|
||||||
"report_notification.categories.legal": "ike tawa nasin lawa",
|
"report_notification.categories.legal": "ike tawa nasin lawa",
|
||||||
"report_notification.categories.other": "ante",
|
"report_notification.categories.other": "ante",
|
||||||
"search.no_recent_searches": "alasa ala li lon tenpo poka",
|
"search.no_recent_searches": "alasa ala li lon tenpo poka",
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
"account.blocked": "Engellendi",
|
"account.blocked": "Engellendi",
|
||||||
"account.cancel_follow_request": "Takip isteğini geri çek",
|
"account.cancel_follow_request": "Takip isteğini geri çek",
|
||||||
"account.copy": "Gönderi bağlantısını kopyala",
|
"account.copy": "Gönderi bağlantısını kopyala",
|
||||||
"account.direct": "@{name} kullanıcısına özelden değin",
|
"account.direct": "@{name} kullanıcısına özel olarak değin",
|
||||||
"account.disable_notifications": "@{name} kişisinin gönderi bildirimlerini kapat",
|
"account.disable_notifications": "@{name} kişisinin gönderi bildirimlerini kapat",
|
||||||
"account.domain_blocked": "Alan adı engellendi",
|
"account.domain_blocked": "Alan adı engellendi",
|
||||||
"account.edit_profile": "Profili düzenle",
|
"account.edit_profile": "Profili düzenle",
|
||||||
|
@ -92,11 +92,11 @@
|
||||||
"block_modal.remote_users_caveat": "{domain} sunucusundan kararınıza saygı duymasını isteyeceğiz. Ancak, Uymaları garanti değildir çünkü bazı sunucular engellemeyi farklı şekilde yapıyorlar. Herkese açık gönderiler giriş yapmamış kullanıcılara görüntülenmeye devam edebilir.",
|
"block_modal.remote_users_caveat": "{domain} sunucusundan kararınıza saygı duymasını isteyeceğiz. Ancak, Uymaları garanti değildir çünkü bazı sunucular engellemeyi farklı şekilde yapıyorlar. Herkese açık gönderiler giriş yapmamış kullanıcılara görüntülenmeye devam edebilir.",
|
||||||
"block_modal.show_less": "Daha az göster",
|
"block_modal.show_less": "Daha az göster",
|
||||||
"block_modal.show_more": "Daha fazla göster",
|
"block_modal.show_more": "Daha fazla göster",
|
||||||
"block_modal.they_cant_mention": "Sizden bahsedemez veya sizi takip edemezler.",
|
"block_modal.they_cant_mention": "Size değinemez veya sizi takip edemezler.",
|
||||||
"block_modal.they_cant_see_posts": "Onlar sizin gönderilerinizi görmeye devam edebilir, ancak siz onlarınkini göremezsiniz.",
|
"block_modal.they_cant_see_posts": "Onlar sizin gönderilerinizi görmeye devam edebilir, ancak siz onlarınkini göremezsiniz.",
|
||||||
"block_modal.they_will_know": "Engellendiklerini görebiliyorlar.",
|
"block_modal.they_will_know": "Engellendiklerini görebiliyorlar.",
|
||||||
"block_modal.title": "Kullanıcıyı engelle?",
|
"block_modal.title": "Kullanıcıyı engelle?",
|
||||||
"block_modal.you_wont_see_mentions": "Onlardan bahseden gönderiler göremezsiniz.",
|
"block_modal.you_wont_see_mentions": "Onlara değinen gönderileri göremezsiniz.",
|
||||||
"boost_modal.combo": "Bir daha ki sefere {combo} tuşuna basabilirsin",
|
"boost_modal.combo": "Bir daha ki sefere {combo} tuşuna basabilirsin",
|
||||||
"boost_modal.reblog": "Gönderiyi yeniden paylaş?",
|
"boost_modal.reblog": "Gönderiyi yeniden paylaş?",
|
||||||
"boost_modal.undo_reblog": "Gönderinin yeniden paylaşımını geri al?",
|
"boost_modal.undo_reblog": "Gönderinin yeniden paylaşımını geri al?",
|
||||||
|
@ -121,7 +121,7 @@
|
||||||
"column.blocks": "Engellenen kullanıcılar",
|
"column.blocks": "Engellenen kullanıcılar",
|
||||||
"column.bookmarks": "Yer İşaretleri",
|
"column.bookmarks": "Yer İşaretleri",
|
||||||
"column.community": "Yerel ağ akışı",
|
"column.community": "Yerel ağ akışı",
|
||||||
"column.direct": "Özel değinmeler",
|
"column.direct": "Özel mesajlar",
|
||||||
"column.directory": "Profillere göz at",
|
"column.directory": "Profillere göz at",
|
||||||
"column.domain_blocks": "Engellenen alan adları",
|
"column.domain_blocks": "Engellenen alan adları",
|
||||||
"column.favourites": "Gözdelerin",
|
"column.favourites": "Gözdelerin",
|
||||||
|
@ -406,7 +406,7 @@
|
||||||
"keyboard_shortcuts.column": "Sütunlardan birindeki duruma odaklanmak için",
|
"keyboard_shortcuts.column": "Sütunlardan birindeki duruma odaklanmak için",
|
||||||
"keyboard_shortcuts.compose": "Yazma alanına odaklanmak için",
|
"keyboard_shortcuts.compose": "Yazma alanına odaklanmak için",
|
||||||
"keyboard_shortcuts.description": "Açıklama",
|
"keyboard_shortcuts.description": "Açıklama",
|
||||||
"keyboard_shortcuts.direct": "özel değinmeler sütununu açmak için",
|
"keyboard_shortcuts.direct": "özel mesajlar sütununu açmak için",
|
||||||
"keyboard_shortcuts.down": "Listede aşağıya inmek için",
|
"keyboard_shortcuts.down": "Listede aşağıya inmek için",
|
||||||
"keyboard_shortcuts.enter": "Gönderiyi açınız",
|
"keyboard_shortcuts.enter": "Gönderiyi açınız",
|
||||||
"keyboard_shortcuts.favourite": "Gönderiyi favorilerine ekle",
|
"keyboard_shortcuts.favourite": "Gönderiyi favorilerine ekle",
|
||||||
|
@ -478,7 +478,7 @@
|
||||||
"navigation_bar.bookmarks": "Yer İşaretleri",
|
"navigation_bar.bookmarks": "Yer İşaretleri",
|
||||||
"navigation_bar.community_timeline": "Yerel ağ akışı",
|
"navigation_bar.community_timeline": "Yerel ağ akışı",
|
||||||
"navigation_bar.compose": "Yeni gönderi yaz",
|
"navigation_bar.compose": "Yeni gönderi yaz",
|
||||||
"navigation_bar.direct": "Özel değinmeler",
|
"navigation_bar.direct": "Özel mesajlar",
|
||||||
"navigation_bar.discover": "Keşfet",
|
"navigation_bar.discover": "Keşfet",
|
||||||
"navigation_bar.domain_blocks": "Engellenen alan adları",
|
"navigation_bar.domain_blocks": "Engellenen alan adları",
|
||||||
"navigation_bar.explore": "Keşfet",
|
"navigation_bar.explore": "Keşfet",
|
||||||
|
@ -607,10 +607,10 @@
|
||||||
"notifications.policy.filter_not_following_hint": "Onları manuel olarak onaylayana kadar",
|
"notifications.policy.filter_not_following_hint": "Onları manuel olarak onaylayana kadar",
|
||||||
"notifications.policy.filter_not_following_title": "Takip etmediğin kullanıcılar",
|
"notifications.policy.filter_not_following_title": "Takip etmediğin kullanıcılar",
|
||||||
"notifications.policy.filter_private_mentions_hint": "Kendi değinmenize yanıt veya takip ettiğiniz kullanıcıdan değilse filtrelenir",
|
"notifications.policy.filter_private_mentions_hint": "Kendi değinmenize yanıt veya takip ettiğiniz kullanıcıdan değilse filtrelenir",
|
||||||
"notifications.policy.filter_private_mentions_title": "İstenmeyen özel değinmeler",
|
"notifications.policy.filter_private_mentions_title": "İstenmeyen özel mesajlar",
|
||||||
"notifications.policy.title": "Şundan bildirimleri yönet…",
|
"notifications.policy.title": "Şundan bildirimleri yönet…",
|
||||||
"notifications_permission_banner.enable": "Masaüstü bildirimlerini etkinleştir",
|
"notifications_permission_banner.enable": "Masaüstü bildirimlerini etkinleştir",
|
||||||
"notifications_permission_banner.how_to_control": "Mastodon açık olmadığında bildirim almak için masaüstü bildirimlerini etkinleştirin. Etkinleştirildikten sonra yukarıdaki {icon} düğmesini kullanarak hangi etkileşim türlerinin masaüstü bildirimleri oluşturduğunu tam olarak kontrol edebilirsiniz.",
|
"notifications_permission_banner.how_to_control": "Mastodon açık olmadığında bildirim almak için masaüstü bildirimlerini etkinleştirin. Etkinleştirildikten sonra, yukarıdaki{icon} düğmesi aracılığıyla hangi etkileşim türlerinin masaüstü bildirimi oluşturacağını tam olarak kontrol edebilirsiniz.",
|
||||||
"notifications_permission_banner.title": "Hiçbir şeyi kaçırmayın",
|
"notifications_permission_banner.title": "Hiçbir şeyi kaçırmayın",
|
||||||
"onboarding.action.back": "Beni geri götür",
|
"onboarding.action.back": "Beni geri götür",
|
||||||
"onboarding.actions.back": "Beni geri götür",
|
"onboarding.actions.back": "Beni geri götür",
|
||||||
|
|
|
@ -16,6 +16,7 @@
|
||||||
"account.badges.group": "Төркем",
|
"account.badges.group": "Төркем",
|
||||||
"account.block": "@{name} кулланучыны блоклау",
|
"account.block": "@{name} кулланучыны блоклау",
|
||||||
"account.block_domain": "{domain} доменын блоклау",
|
"account.block_domain": "{domain} доменын блоклау",
|
||||||
|
"account.block_short": "Блокла",
|
||||||
"account.blocked": "Блокланган",
|
"account.blocked": "Блокланган",
|
||||||
"account.cancel_follow_request": "Киләсе сорау",
|
"account.cancel_follow_request": "Киләсе сорау",
|
||||||
"account.disable_notifications": "@{name} язулары өчен белдерүләр сүндерү",
|
"account.disable_notifications": "@{name} язулары өчен белдерүләр сүндерү",
|
||||||
|
@ -68,10 +69,14 @@
|
||||||
"alert.rate_limited.title": "Тариф чикләнгән",
|
"alert.rate_limited.title": "Тариф чикләнгән",
|
||||||
"alert.unexpected.message": "Көтелмәгән хата булды.",
|
"alert.unexpected.message": "Көтелмәгән хата булды.",
|
||||||
"alert.unexpected.title": "Абау!",
|
"alert.unexpected.title": "Абау!",
|
||||||
|
"alt_text_badge.title": "Альт текст",
|
||||||
"announcement.announcement": "Игълан",
|
"announcement.announcement": "Игълан",
|
||||||
"attachments_list.unprocessed": "(чимал)",
|
"attachments_list.unprocessed": "(чимал)",
|
||||||
"audio.hide": "Аудионы яшерү",
|
"audio.hide": "Аудионы яшерү",
|
||||||
|
"block_modal.title": "Кулланучыны блокларгамы?",
|
||||||
"boost_modal.combo": "Сез баса аласыз {combo} киләсе тапкыр моны сагыну өчен",
|
"boost_modal.combo": "Сез баса аласыз {combo} киләсе тапкыр моны сагыну өчен",
|
||||||
|
"boost_modal.reblog": "Язманы күтәрергәме?",
|
||||||
|
"boost_modal.undo_reblog": "Язманы күтәрмәскәме?",
|
||||||
"bundle_column_error.copy_stacktrace": "Күчереп алу хата турында Отчет",
|
"bundle_column_error.copy_stacktrace": "Күчереп алу хата турында Отчет",
|
||||||
"bundle_column_error.error.body": "Соралган бит күрсәтелә алмый. Бу безнең кодтагы хата яки браузерга туры килү проблемасы аркасында булырга мөмкин.",
|
"bundle_column_error.error.body": "Соралган бит күрсәтелә алмый. Бу безнең кодтагы хата яки браузерга туры килү проблемасы аркасында булырга мөмкин.",
|
||||||
"bundle_column_error.error.title": "Әй, юк!",
|
"bundle_column_error.error.title": "Әй, юк!",
|
||||||
|
|
|
@ -307,7 +307,7 @@
|
||||||
"filter_modal.select_filter.title": "Фільтрувати цей допис",
|
"filter_modal.select_filter.title": "Фільтрувати цей допис",
|
||||||
"filter_modal.title.status": "Фільтрувати допис",
|
"filter_modal.title.status": "Фільтрувати допис",
|
||||||
"filter_warning.matches_filter": "Збігається з фільтром “<span>{title}</span>”",
|
"filter_warning.matches_filter": "Збігається з фільтром “<span>{title}</span>”",
|
||||||
"filtered_notifications_banner.pending_requests": "Від {count, plural, =0 {жодної особи} one {однієї особи} few {# осіб} many {# осіб} other {# особи}}, котрих ви можете знати",
|
"filtered_notifications_banner.pending_requests": "Від {count, plural, =0 {жодної особи} one {однієї особи} few {# осіб} many {# осіб} other {# особи}}, яких ви можете знати",
|
||||||
"filtered_notifications_banner.title": "Відфільтровані сповіщення",
|
"filtered_notifications_banner.title": "Відфільтровані сповіщення",
|
||||||
"firehose.all": "Всі",
|
"firehose.all": "Всі",
|
||||||
"firehose.local": "Цей сервер",
|
"firehose.local": "Цей сервер",
|
||||||
|
|
|
@ -506,9 +506,9 @@
|
||||||
"notification.admin.report_statuses_other": "{name} báo cáo {target}",
|
"notification.admin.report_statuses_other": "{name} báo cáo {target}",
|
||||||
"notification.admin.sign_up": "{name} tham gia máy chủ của bạn",
|
"notification.admin.sign_up": "{name} tham gia máy chủ của bạn",
|
||||||
"notification.admin.sign_up.name_and_others": "{name} và {count, plural, other {# người}} đã đăng ký",
|
"notification.admin.sign_up.name_and_others": "{name} và {count, plural, other {# người}} đã đăng ký",
|
||||||
"notification.favourite": "{name} thích tút của bạn",
|
"notification.favourite": "{name} đã thích tút của bạn",
|
||||||
"notification.favourite.name_and_others_with_link": "{name} và <a>{count, plural, other {# người khác}}</a> đã thích tút của bạn",
|
"notification.favourite.name_and_others_with_link": "{name} và <a>{count, plural, other {# người khác}}</a> đã thích tút của bạn",
|
||||||
"notification.follow": "{name} theo dõi bạn",
|
"notification.follow": "{name} đã theo dõi bạn",
|
||||||
"notification.follow.name_and_others": "{name} và <a>{count, plural, other {# người khác}}</a> theo dõi bạn",
|
"notification.follow.name_and_others": "{name} và <a>{count, plural, other {# người khác}}</a> theo dõi bạn",
|
||||||
"notification.follow_request": "{name} yêu cầu theo dõi bạn",
|
"notification.follow_request": "{name} yêu cầu theo dõi bạn",
|
||||||
"notification.follow_request.name_and_others": "{name} và {count, plural, other {# người khác}} đã yêu cầu theo dõi bạn",
|
"notification.follow_request.name_and_others": "{name} và {count, plural, other {# người khác}} đã yêu cầu theo dõi bạn",
|
||||||
|
@ -711,12 +711,12 @@
|
||||||
"report.mute_explanation": "Bạn sẽ không còn thấy tút của người này. Họ vẫn có thể thấy tút của bạn hoặc theo dõi bạn. Họ không biết là bạn đã chặn họ.",
|
"report.mute_explanation": "Bạn sẽ không còn thấy tút của người này. Họ vẫn có thể thấy tút của bạn hoặc theo dõi bạn. Họ không biết là bạn đã chặn họ.",
|
||||||
"report.next": "Tiếp theo",
|
"report.next": "Tiếp theo",
|
||||||
"report.placeholder": "Thêm lưu ý",
|
"report.placeholder": "Thêm lưu ý",
|
||||||
"report.reasons.dislike": "Tôi không thích nó",
|
"report.reasons.dislike": "Tôi không thích",
|
||||||
"report.reasons.dislike_description": "Đó không phải là thứ gì mà bạn muốn thấy",
|
"report.reasons.dislike_description": "Đây không phải thứ mà bạn muốn thấy",
|
||||||
"report.reasons.legal": "Vi phạm pháp luật",
|
"report.reasons.legal": "Vi phạm pháp luật",
|
||||||
"report.reasons.legal_description": "Vi phạm pháp luật ở nơi đặt máy chủ hoặc nước bạn",
|
"report.reasons.legal_description": "Vi phạm pháp luật ở nơi đặt máy chủ hoặc nước bạn",
|
||||||
"report.reasons.other": "Một lý do khác",
|
"report.reasons.other": "Lý do khác",
|
||||||
"report.reasons.other_description": "Vấn đề không nằm trong những mục trên",
|
"report.reasons.other_description": "Vấn đề không thuộc những mục trên",
|
||||||
"report.reasons.spam": "Đây là spam",
|
"report.reasons.spam": "Đây là spam",
|
||||||
"report.reasons.spam_description": "Liên kết độc hại, giả tương tác hoặc trả lời lặp đi lặp lại",
|
"report.reasons.spam_description": "Liên kết độc hại, giả tương tác hoặc trả lời lặp đi lặp lại",
|
||||||
"report.reasons.violation": "Vi phạm nội quy máy chủ",
|
"report.reasons.violation": "Vi phạm nội quy máy chủ",
|
||||||
|
@ -745,7 +745,7 @@
|
||||||
"report_notification.open": "Mở báo cáo",
|
"report_notification.open": "Mở báo cáo",
|
||||||
"search.no_recent_searches": "Gần đây chưa tìm gì",
|
"search.no_recent_searches": "Gần đây chưa tìm gì",
|
||||||
"search.placeholder": "Tìm kiếm",
|
"search.placeholder": "Tìm kiếm",
|
||||||
"search.quick_action.account_search": "Người có tên {x}",
|
"search.quick_action.account_search": "Người tên {x}",
|
||||||
"search.quick_action.go_to_account": "Xem trang {x}",
|
"search.quick_action.go_to_account": "Xem trang {x}",
|
||||||
"search.quick_action.go_to_hashtag": "Xem hashtag {x}",
|
"search.quick_action.go_to_hashtag": "Xem hashtag {x}",
|
||||||
"search.quick_action.open_url": "Mở liên kết trong Mastodon",
|
"search.quick_action.open_url": "Mở liên kết trong Mastodon",
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
"about.not_available": "此信息在当前服务器尚不可用。",
|
"about.not_available": "此信息在当前服务器尚不可用。",
|
||||||
"about.powered_by": "由 {mastodon} 驱动的去中心化社交媒体",
|
"about.powered_by": "由 {mastodon} 驱动的去中心化社交媒体",
|
||||||
"about.rules": "站点规则",
|
"about.rules": "站点规则",
|
||||||
"account.account_note_header": "备注",
|
"account.account_note_header": "个人备注",
|
||||||
"account.add_or_remove_from_list": "从列表中添加或移除",
|
"account.add_or_remove_from_list": "从列表中添加或移除",
|
||||||
"account.badges.bot": "机器人",
|
"account.badges.bot": "机器人",
|
||||||
"account.badges.group": "群组",
|
"account.badges.group": "群组",
|
||||||
|
@ -26,7 +26,7 @@
|
||||||
"account.domain_blocked": "域名已屏蔽",
|
"account.domain_blocked": "域名已屏蔽",
|
||||||
"account.edit_profile": "修改个人资料",
|
"account.edit_profile": "修改个人资料",
|
||||||
"account.enable_notifications": "当 @{name} 发布嘟文时通知我",
|
"account.enable_notifications": "当 @{name} 发布嘟文时通知我",
|
||||||
"account.endorse": "在账户页推荐此用户",
|
"account.endorse": "在个人资料中推荐此用户",
|
||||||
"account.featured_tags.last_status_at": "上次发言于 {date}",
|
"account.featured_tags.last_status_at": "上次发言于 {date}",
|
||||||
"account.featured_tags.last_status_never": "暂无嘟文",
|
"account.featured_tags.last_status_never": "暂无嘟文",
|
||||||
"account.featured_tags.title": "{name} 的精选标签",
|
"account.featured_tags.title": "{name} 的精选标签",
|
||||||
|
@ -43,8 +43,8 @@
|
||||||
"account.in_memoriam": "谨此悼念。",
|
"account.in_memoriam": "谨此悼念。",
|
||||||
"account.joined_short": "加入于",
|
"account.joined_short": "加入于",
|
||||||
"account.languages": "更改订阅语言",
|
"account.languages": "更改订阅语言",
|
||||||
"account.link_verified_on": "已于 {date} 验证此链接的所有权",
|
"account.link_verified_on": "此链接的所有权已在 {date} 检查",
|
||||||
"account.locked_info": "此账户已锁嘟。账户所有人会手动审核新关注者。",
|
"account.locked_info": "此账号已锁嘟。账号所有人会手动审核新关注者。",
|
||||||
"account.media": "媒体",
|
"account.media": "媒体",
|
||||||
"account.mention": "提及 @{name}",
|
"account.mention": "提及 @{name}",
|
||||||
"account.moved_to": "{name} 的新账号是:",
|
"account.moved_to": "{name} 的新账号是:",
|
||||||
|
@ -60,9 +60,9 @@
|
||||||
"account.report": "举报 @{name}",
|
"account.report": "举报 @{name}",
|
||||||
"account.requested": "正在等待对方同意。点击取消发送关注请求",
|
"account.requested": "正在等待对方同意。点击取消发送关注请求",
|
||||||
"account.requested_follow": "{name} 向你发送了关注请求",
|
"account.requested_follow": "{name} 向你发送了关注请求",
|
||||||
"account.share": "分享 @{name} 的账户页",
|
"account.share": "分享 @{name} 的个人资料",
|
||||||
"account.show_reblogs": "显示来自 @{name} 的转嘟",
|
"account.show_reblogs": "显示来自 @{name} 的转嘟",
|
||||||
"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": "取消屏蔽",
|
"account.unblock_short": "取消屏蔽",
|
||||||
|
@ -77,9 +77,9 @@
|
||||||
"admin.dashboard.retention.average": "平均",
|
"admin.dashboard.retention.average": "平均",
|
||||||
"admin.dashboard.retention.cohort": "注册月份",
|
"admin.dashboard.retention.cohort": "注册月份",
|
||||||
"admin.dashboard.retention.cohort_size": "新用户",
|
"admin.dashboard.retention.cohort_size": "新用户",
|
||||||
"admin.impact_report.instance_accounts": "将被删除的账户",
|
"admin.impact_report.instance_accounts": "将被删除的账号",
|
||||||
"admin.impact_report.instance_followers": "本实例用户即将丢失的关注者",
|
"admin.impact_report.instance_followers": "本站用户即将丢失的关注者",
|
||||||
"admin.impact_report.instance_follows": "对方实例用户将会丢失的关注者",
|
"admin.impact_report.instance_follows": "对方站点用户即将丢失的关注者",
|
||||||
"admin.impact_report.title": "影响摘要",
|
"admin.impact_report.title": "影响摘要",
|
||||||
"alert.rate_limited.message": "请在 {retry_time, time, medium} 后重试。",
|
"alert.rate_limited.message": "请在 {retry_time, time, medium} 后重试。",
|
||||||
"alert.rate_limited.title": "频率受限",
|
"alert.rate_limited.title": "频率受限",
|
||||||
|
@ -89,17 +89,17 @@
|
||||||
"announcement.announcement": "公告",
|
"announcement.announcement": "公告",
|
||||||
"attachments_list.unprocessed": "(未处理)",
|
"attachments_list.unprocessed": "(未处理)",
|
||||||
"audio.hide": "隐藏音频",
|
"audio.hide": "隐藏音频",
|
||||||
"block_modal.remote_users_caveat": "我们将要求服务器 {domain} 尊重你的决定。然而,我们无法保证对方一定遵从,因为某些服务器可能会以不同的方案处理屏蔽操作。公开嘟文仍然可能对未登录的用户可见。",
|
"block_modal.remote_users_caveat": "我们将要求站点 {domain} 尊重你的决定。然而,我们无法保证对方一定遵从,因为某些站点可能会以不同的方案处理屏蔽操作。公开嘟文仍然可能对未登录用户可见。",
|
||||||
"block_modal.show_less": "隐藏",
|
"block_modal.show_less": "折叠",
|
||||||
"block_modal.show_more": "显示更多",
|
"block_modal.show_more": "显示更多",
|
||||||
"block_modal.they_cant_mention": "他们不能提及或关注你。",
|
"block_modal.they_cant_mention": "他们不能提及或关注你。",
|
||||||
"block_modal.they_cant_see_posts": "他们看不到你的嘟文,你也看不到他们的嘟文。",
|
"block_modal.they_cant_see_posts": "他们看不到你的嘟文,你也看不到他们的嘟文。",
|
||||||
"block_modal.they_will_know": "对方将能看到自己被屏蔽。",
|
"block_modal.they_will_know": "对方将能看到自己被屏蔽。",
|
||||||
"block_modal.title": "屏蔽该用户?",
|
"block_modal.title": "确定要屏蔽此用户?",
|
||||||
"block_modal.you_wont_see_mentions": "你将不会看到提及他们的嘟文。",
|
"block_modal.you_wont_see_mentions": "你将不会看到提及他们的嘟文。",
|
||||||
"boost_modal.combo": "下次按住 {combo} 即可跳过此提示",
|
"boost_modal.combo": "下次按住 {combo} 即可跳过此提示",
|
||||||
"boost_modal.reblog": "是否转嘟?",
|
"boost_modal.reblog": "是否要转嘟?",
|
||||||
"boost_modal.undo_reblog": "是否取消转嘟?",
|
"boost_modal.undo_reblog": "是否要取消转嘟?",
|
||||||
"bundle_column_error.copy_stacktrace": "复制错误报告",
|
"bundle_column_error.copy_stacktrace": "复制错误报告",
|
||||||
"bundle_column_error.error.body": "请求的页面无法渲染,可能是代码出现错误或浏览器存在兼容性问题。",
|
"bundle_column_error.error.body": "请求的页面无法渲染,可能是代码出现错误或浏览器存在兼容性问题。",
|
||||||
"bundle_column_error.error.title": "糟糕!",
|
"bundle_column_error.error.title": "糟糕!",
|
||||||
|
@ -112,14 +112,14 @@
|
||||||
"bundle_modal_error.close": "关闭",
|
"bundle_modal_error.close": "关闭",
|
||||||
"bundle_modal_error.message": "载入这个组件时发生了错误。",
|
"bundle_modal_error.message": "载入这个组件时发生了错误。",
|
||||||
"bundle_modal_error.retry": "重试",
|
"bundle_modal_error.retry": "重试",
|
||||||
"closed_registrations.other_server_instructions": "基于 Mastodon 的去中心化特性,你可以在其它服务器上创建账号,并与本站用户保持互动。",
|
"closed_registrations.other_server_instructions": "基于 Mastodon 去中心化的特性,你可以其他服务器上创建账号,并继续与此服务器互动。",
|
||||||
"closed_registrations_modal.description": "你目前无法在 {domain} 上创建账户,但请注意,使用 Mastodon 并非需要专门在 {domain} 上注册账户。",
|
"closed_registrations_modal.description": "你目前无法在 {domain} 上创建账号,但请注意,使用 Mastodon 并非需要专门在 {domain} 上注册账号。",
|
||||||
"closed_registrations_modal.find_another_server": "查找其他服务器",
|
"closed_registrations_modal.find_another_server": "查找其他服务器",
|
||||||
"closed_registrations_modal.preamble": "Mastodon 是去中心化的,所以无论在哪个实例创建账号,都可以关注本服务器上的账号并与之交流。 或者你还可以自己搭建实例!",
|
"closed_registrations_modal.preamble": "Mastodon 是去中心化的,所以无论在哪个实例创建账号,都可以关注本服务器上的账号并与之交流。 或者你还可以自己搭建实例!",
|
||||||
"closed_registrations_modal.title": "注册 Mastodon 账号",
|
"closed_registrations_modal.title": "注册 Mastodon 账号",
|
||||||
"column.about": "关于",
|
"column.about": "关于",
|
||||||
"column.blocks": "屏蔽的用户",
|
"column.blocks": "屏蔽的用户",
|
||||||
"column.bookmarks": "收藏夹",
|
"column.bookmarks": "书签",
|
||||||
"column.community": "本站时间线",
|
"column.community": "本站时间线",
|
||||||
"column.direct": "私下提及",
|
"column.direct": "私下提及",
|
||||||
"column.directory": "浏览用户资料",
|
"column.directory": "浏览用户资料",
|
||||||
|
@ -151,8 +151,8 @@
|
||||||
"compose.saved.body": "嘟文已保存。",
|
"compose.saved.body": "嘟文已保存。",
|
||||||
"compose_form.direct_message_warning_learn_more": "详细了解",
|
"compose_form.direct_message_warning_learn_more": "详细了解",
|
||||||
"compose_form.encryption_warning": "Mastodon 上的嘟文未经端到端加密。请勿在 Mastodon 上分享敏感信息。",
|
"compose_form.encryption_warning": "Mastodon 上的嘟文未经端到端加密。请勿在 Mastodon 上分享敏感信息。",
|
||||||
"compose_form.hashtag_warning": "这条嘟文被设置为“不公开”,因此它不会出现在任何话题标签的列表下。只有公开的嘟文才能通过话题标签进行搜索。",
|
"compose_form.hashtag_warning": "这条嘟文被设置为“不公开”,因此它不会出现在任何话题的列表下。只有公开的嘟文才能通过话题进行搜索。",
|
||||||
"compose_form.lock_disclaimer": "你的账户没有{locked}。任何人都可以在关注你后立即查看仅关注者可见的嘟文。",
|
"compose_form.lock_disclaimer": "你的账号没有{locked}。任何人都可以在关注你后立即查看仅关注者可见的嘟文。",
|
||||||
"compose_form.lock_disclaimer.lock": "锁嘟",
|
"compose_form.lock_disclaimer.lock": "锁嘟",
|
||||||
"compose_form.placeholder": "想写什么?",
|
"compose_form.placeholder": "想写什么?",
|
||||||
"compose_form.poll.duration": "投票期限",
|
"compose_form.poll.duration": "投票期限",
|
||||||
|
@ -163,7 +163,7 @@
|
||||||
"compose_form.poll.switch_to_single": "将投票改为单选",
|
"compose_form.poll.switch_to_single": "将投票改为单选",
|
||||||
"compose_form.poll.type": "类型",
|
"compose_form.poll.type": "类型",
|
||||||
"compose_form.publish": "发布",
|
"compose_form.publish": "发布",
|
||||||
"compose_form.publish_form": "新嘟文",
|
"compose_form.publish_form": "发嘟",
|
||||||
"compose_form.reply": "回复",
|
"compose_form.reply": "回复",
|
||||||
"compose_form.save_changes": "更改",
|
"compose_form.save_changes": "更改",
|
||||||
"compose_form.spoiler.marked": "移除内容警告",
|
"compose_form.spoiler.marked": "移除内容警告",
|
||||||
|
@ -173,18 +173,18 @@
|
||||||
"confirmations.block.confirm": "屏蔽",
|
"confirmations.block.confirm": "屏蔽",
|
||||||
"confirmations.delete.confirm": "删除",
|
"confirmations.delete.confirm": "删除",
|
||||||
"confirmations.delete.message": "你确定要删除这条嘟文吗?",
|
"confirmations.delete.message": "你确定要删除这条嘟文吗?",
|
||||||
"confirmations.delete.title": "是否删除嘟文?",
|
"confirmations.delete.title": "确定要删除嘟文?",
|
||||||
"confirmations.delete_list.confirm": "删除",
|
"confirmations.delete_list.confirm": "删除",
|
||||||
"confirmations.delete_list.message": "你确定要永久删除此列表吗?",
|
"confirmations.delete_list.message": "确定要永久删除此列表吗?",
|
||||||
"confirmations.delete_list.title": "是否删除列表?",
|
"confirmations.delete_list.title": "确定要删除列表?",
|
||||||
"confirmations.discard_edit_media.confirm": "丢弃",
|
"confirmations.discard_edit_media.confirm": "丢弃",
|
||||||
"confirmations.discard_edit_media.message": "你还有未保存的媒体描述或预览修改,仍要丢弃吗?",
|
"confirmations.discard_edit_media.message": "你还有未保存的媒体描述或预览修改,仍要丢弃吗?",
|
||||||
"confirmations.edit.confirm": "编辑",
|
"confirmations.edit.confirm": "编辑",
|
||||||
"confirmations.edit.message": "编辑此消息将会覆盖当前正在撰写的信息。仍要继续吗?",
|
"confirmations.edit.message": "编辑此消息将会覆盖当前正在撰写的信息。仍要继续吗?",
|
||||||
"confirmations.edit.title": "是否重写嘟文?",
|
"confirmations.edit.title": "确定要重写嘟文?",
|
||||||
"confirmations.logout.confirm": "退出登录",
|
"confirmations.logout.confirm": "退出登录",
|
||||||
"confirmations.logout.message": "确定要退出登录吗?",
|
"confirmations.logout.message": "确定要退出登录吗?",
|
||||||
"confirmations.logout.title": "是否退出登录?",
|
"confirmations.logout.title": "确定要退出登录?",
|
||||||
"confirmations.mute.confirm": "隐藏",
|
"confirmations.mute.confirm": "隐藏",
|
||||||
"confirmations.redraft.confirm": "删除并重新编辑",
|
"confirmations.redraft.confirm": "删除并重新编辑",
|
||||||
"confirmations.redraft.message": "确定删除这条嘟文并重写吗?所有相关的喜欢和转嘟都将丢失,嘟文的回复也会失去关联。",
|
"confirmations.redraft.message": "确定删除这条嘟文并重写吗?所有相关的喜欢和转嘟都将丢失,嘟文的回复也会失去关联。",
|
||||||
|
@ -194,9 +194,9 @@
|
||||||
"confirmations.reply.title": "是否重写嘟文?",
|
"confirmations.reply.title": "是否重写嘟文?",
|
||||||
"confirmations.unfollow.confirm": "取消关注",
|
"confirmations.unfollow.confirm": "取消关注",
|
||||||
"confirmations.unfollow.message": "你确定要取消关注 {name} 吗?",
|
"confirmations.unfollow.message": "你确定要取消关注 {name} 吗?",
|
||||||
"confirmations.unfollow.title": "是否取消关注用户?",
|
"confirmations.unfollow.title": "确定要取消关注用户?",
|
||||||
"content_warning.hide": "隐藏",
|
"content_warning.hide": "隐藏嘟文",
|
||||||
"content_warning.show": "展开",
|
"content_warning.show": "仍要显示",
|
||||||
"content_warning.show_more": "展开",
|
"content_warning.show_more": "展开",
|
||||||
"conversation.delete": "删除对话",
|
"conversation.delete": "删除对话",
|
||||||
"conversation.mark_as_read": "标记为已读",
|
"conversation.mark_as_read": "标记为已读",
|
||||||
|
@ -216,15 +216,15 @@
|
||||||
"dismissable_banner.explore_links": "这些新闻故事正被本站和分布式网络上其他站点的用户谈论。",
|
"dismissable_banner.explore_links": "这些新闻故事正被本站和分布式网络上其他站点的用户谈论。",
|
||||||
"dismissable_banner.explore_statuses": "这些是目前在社交网络上引起关注的嘟文。嘟文的喜欢和转嘟次数越多,排名越高。",
|
"dismissable_banner.explore_statuses": "这些是目前在社交网络上引起关注的嘟文。嘟文的喜欢和转嘟次数越多,排名越高。",
|
||||||
"dismissable_banner.explore_tags": "这些标签正在本站和分布式网络上其他站点的用户中引起关注。",
|
"dismissable_banner.explore_tags": "这些标签正在本站和分布式网络上其他站点的用户中引起关注。",
|
||||||
"dismissable_banner.public_timeline": "这些是 {domain} 上的用户关注的人的最新公开嘟文。",
|
"dismissable_banner.public_timeline": "这些是在 {domain} 上关注的人们最新发布的公开嘟文。",
|
||||||
"domain_block_modal.block": "屏蔽服务器",
|
"domain_block_modal.block": "屏蔽服务器",
|
||||||
"domain_block_modal.block_account_instead": "改为屏蔽 @{name}",
|
"domain_block_modal.block_account_instead": "改为屏蔽 @{name}",
|
||||||
"domain_block_modal.they_can_interact_with_old_posts": "来自该服务器的人可以与你之前的嘟文交互。",
|
"domain_block_modal.they_can_interact_with_old_posts": "该站点的用户可以与你之前的嘟文交互。",
|
||||||
"domain_block_modal.they_cant_follow": "此服务器上没有人可以关注你。",
|
"domain_block_modal.they_cant_follow": "该站点上将没有人可以关注你。",
|
||||||
"domain_block_modal.they_wont_know": "对方不会知道自己被屏蔽。",
|
"domain_block_modal.they_wont_know": "对方不会知道自己被屏蔽。",
|
||||||
"domain_block_modal.title": "是否屏蔽该域名?",
|
"domain_block_modal.title": "确定要屏蔽此域名?",
|
||||||
"domain_block_modal.you_will_lose_num_followers": "你将失去 {followersCount, plural, other {{followersCountDisplay} 名关注者}}和 {followingCount, plural, other {{followingCountDisplay} 名关注}}。",
|
"domain_block_modal.you_will_lose_num_followers": "你将失去 {followersCount, plural, other {{followersCountDisplay} 名关注者}}和 {followingCount, plural, other {{followingCountDisplay} 名关注}}。",
|
||||||
"domain_block_modal.you_will_lose_relationships": "你将失去在此实例上的所有关注和关注者。",
|
"domain_block_modal.you_will_lose_relationships": "你将丢失该站点上的所有关注与关注者。",
|
||||||
"domain_block_modal.you_wont_see_posts": "你将不会看到此服务器上用户的嘟文或通知。",
|
"domain_block_modal.you_wont_see_posts": "你将不会看到此服务器上用户的嘟文或通知。",
|
||||||
"domain_pill.activitypub_lets_connect": "它可以让你与不同社交应用上的人交流互动,而不仅限于 Mastodon。",
|
"domain_pill.activitypub_lets_connect": "它可以让你与不同社交应用上的人交流互动,而不仅限于 Mastodon。",
|
||||||
"domain_pill.activitypub_like_language": "ActivityPub 好比 Mastodon 与其它社交网络交流时使用的语言。",
|
"domain_pill.activitypub_like_language": "ActivityPub 好比 Mastodon 与其它社交网络交流时使用的语言。",
|
||||||
|
@ -257,11 +257,11 @@
|
||||||
"emoji_button.symbols": "符号",
|
"emoji_button.symbols": "符号",
|
||||||
"emoji_button.travel": "旅行与地点",
|
"emoji_button.travel": "旅行与地点",
|
||||||
"empty_column.account_hides_collections": "该用户选择不公开此信息",
|
"empty_column.account_hides_collections": "该用户选择不公开此信息",
|
||||||
"empty_column.account_suspended": "账户已被停用",
|
"empty_column.account_suspended": "账号已被停用",
|
||||||
"empty_column.account_timeline": "这里没有嘟文!",
|
"empty_column.account_timeline": "这里没有嘟文!",
|
||||||
"empty_column.account_unavailable": "个人资料不可用",
|
"empty_column.account_unavailable": "个人资料不可用",
|
||||||
"empty_column.blocks": "你还未屏蔽任何用户。",
|
"empty_column.blocks": "你还未屏蔽任何用户。",
|
||||||
"empty_column.bookmarked_statuses": "你还没有收藏任何嘟文。收藏后嘟文就会显示在这里。",
|
"empty_column.bookmarked_statuses": "你还没有给任何嘟文添加书签。添加书签后的嘟文会显示在这里。",
|
||||||
"empty_column.community": "本站时间线还没有内容,写点什么并公开发布,让它活跃起来吧!",
|
"empty_column.community": "本站时间线还没有内容,写点什么并公开发布,让它活跃起来吧!",
|
||||||
"empty_column.direct": "你还未使用过私下提及。当你发出或者收到私下提及时,它将显示在此。",
|
"empty_column.direct": "你还未使用过私下提及。当你发出或者收到私下提及时,它将显示在此。",
|
||||||
"empty_column.domain_blocks": "暂且没有被屏蔽的站点。",
|
"empty_column.domain_blocks": "暂且没有被屏蔽的站点。",
|
||||||
|
@ -269,13 +269,13 @@
|
||||||
"empty_column.favourited_statuses": "你没有喜欢过任何嘟文。喜欢过的嘟文会显示在这里。",
|
"empty_column.favourited_statuses": "你没有喜欢过任何嘟文。喜欢过的嘟文会显示在这里。",
|
||||||
"empty_column.favourites": "没有人喜欢过这条嘟文。如果有人喜欢了,就会显示在这里。",
|
"empty_column.favourites": "没有人喜欢过这条嘟文。如果有人喜欢了,就会显示在这里。",
|
||||||
"empty_column.follow_requests": "你还没有收到任何关注请求。当你收到一个关注请求时,它会出现在这里。",
|
"empty_column.follow_requests": "你还没有收到任何关注请求。当你收到一个关注请求时,它会出现在这里。",
|
||||||
"empty_column.followed_tags": "你还没有关注任何话题标签。 当你关注后,它们会出现在这里。",
|
"empty_column.followed_tags": "你还没有关注任何话题。 当你关注后,它们会出现在这里。",
|
||||||
"empty_column.hashtag": "这个话题标签下暂时没有内容。",
|
"empty_column.hashtag": "该话题下暂无内容。",
|
||||||
"empty_column.home": "你的主页时间线还没有内容!快去关注更多人吧。",
|
"empty_column.home": "你的主页时间线还没有内容!快去关注更多人吧。",
|
||||||
"empty_column.list": "列表中还没有任何内容。当列表成员发布新嘟文时,它们将出现在这里。",
|
"empty_column.list": "列表中还没有任何内容。当列表成员发布新嘟文时,它们将出现在这里。",
|
||||||
"empty_column.lists": "你还没有创建过列表。你创建的列表会在这里显示。",
|
"empty_column.lists": "你还没有创建过列表。你创建的列表会在这里显示。",
|
||||||
"empty_column.mutes": "你没有隐藏任何用户。",
|
"empty_column.mutes": "你没有隐藏任何用户。",
|
||||||
"empty_column.notification_requests": "都看完了!这里没有任何未读通知。当收到新的通知时,它们将根据你的设置显示在这里。",
|
"empty_column.notification_requests": "一扫而空!这里没有任何未读通知。当收到新的通知时,将根据你的设置显示在这里。",
|
||||||
"empty_column.notifications": "你还没有收到过任何通知,快和其他用户互动吧。",
|
"empty_column.notifications": "你还没有收到过任何通知,快和其他用户互动吧。",
|
||||||
"empty_column.public": "这里什么都没有!写一些公开的嘟文,或者关注其他服务器的用户后,这里就会有嘟文出现了",
|
"empty_column.public": "这里什么都没有!写一些公开的嘟文,或者关注其他服务器的用户后,这里就会有嘟文出现了",
|
||||||
"error.unexpected_crash.explanation": "此页面无法正确显示,这可能是因为我们的代码中有错误,也可能是因为浏览器兼容问题。",
|
"error.unexpected_crash.explanation": "此页面无法正确显示,这可能是因为我们的代码中有错误,也可能是因为浏览器兼容问题。",
|
||||||
|
@ -289,21 +289,21 @@
|
||||||
"explore.title": "探索",
|
"explore.title": "探索",
|
||||||
"explore.trending_links": "新闻",
|
"explore.trending_links": "新闻",
|
||||||
"explore.trending_statuses": "嘟文",
|
"explore.trending_statuses": "嘟文",
|
||||||
"explore.trending_tags": "话题标签",
|
"explore.trending_tags": "话题",
|
||||||
"filter_modal.added.context_mismatch_explanation": "这条过滤规则不适用于你当前访问此嘟文的场景。要在此场景下过滤嘟文,你必须编辑此过滤规则。",
|
"filter_modal.added.context_mismatch_explanation": "这条过滤规则不适用于你当前访问此嘟文的场景。要在此场景下过滤嘟文,你必须编辑此过滤规则。",
|
||||||
"filter_modal.added.context_mismatch_title": "场景不匹配!",
|
"filter_modal.added.context_mismatch_title": "场景不匹配!",
|
||||||
"filter_modal.added.expired_explanation": "此过滤规则类别已过期,你需要修改到期日期才能应用。",
|
"filter_modal.added.expired_explanation": "此过滤规则类别已过期,你需要修改到期日期才能应用。",
|
||||||
"filter_modal.added.expired_title": "过滤规则已过期!",
|
"filter_modal.added.expired_title": "过滤规则已过期!",
|
||||||
"filter_modal.added.review_and_configure": "要检查并进一步配置此过滤规则分类,请前往{settings_link}。",
|
"filter_modal.added.review_and_configure": "要检查并进一步配置这条过滤规则,请前往{settings_link}。",
|
||||||
"filter_modal.added.review_and_configure_title": "过滤规则设置",
|
"filter_modal.added.review_and_configure_title": "过滤规则设置",
|
||||||
"filter_modal.added.settings_link": "设置页面",
|
"filter_modal.added.settings_link": "设置页面",
|
||||||
"filter_modal.added.short_explanation": "此嘟文已被添加到以下过滤规则:{title}。",
|
"filter_modal.added.short_explanation": "此嘟文已被添加到以下过滤规则:{title}。",
|
||||||
"filter_modal.added.title": "已添加过滤规则 !",
|
"filter_modal.added.title": "已添加过滤规则 !",
|
||||||
"filter_modal.select_filter.context_mismatch": "不适用于此场景",
|
"filter_modal.select_filter.context_mismatch": "不适用于此场景",
|
||||||
"filter_modal.select_filter.expired": "已过期",
|
"filter_modal.select_filter.expired": "已过期",
|
||||||
"filter_modal.select_filter.prompt_new": "新条目:{name}",
|
"filter_modal.select_filter.prompt_new": "新类别:{name}",
|
||||||
"filter_modal.select_filter.search": "搜索或创建",
|
"filter_modal.select_filter.search": "搜索或创建",
|
||||||
"filter_modal.select_filter.subtitle": "使用一个已存在条目,或创建新条目",
|
"filter_modal.select_filter.subtitle": "使用已存在类别,或创建新类别",
|
||||||
"filter_modal.select_filter.title": "过滤此嘟文",
|
"filter_modal.select_filter.title": "过滤此嘟文",
|
||||||
"filter_modal.title.status": "过滤一条嘟文",
|
"filter_modal.title.status": "过滤一条嘟文",
|
||||||
"filter_warning.matches_filter": "命中过滤规则 “<span>{title}</span>”",
|
"filter_warning.matches_filter": "命中过滤规则 “<span>{title}</span>”",
|
||||||
|
@ -319,8 +319,8 @@
|
||||||
"follow_suggestions.dismiss": "不再显示",
|
"follow_suggestions.dismiss": "不再显示",
|
||||||
"follow_suggestions.featured_longer": "由 {domain} 管理团队精选",
|
"follow_suggestions.featured_longer": "由 {domain} 管理团队精选",
|
||||||
"follow_suggestions.friends_of_friends_longer": "在你关注的人中很受欢迎",
|
"follow_suggestions.friends_of_friends_longer": "在你关注的人中很受欢迎",
|
||||||
"follow_suggestions.hints.featured": "该用户已被 {domain} 管理团队精选。",
|
"follow_suggestions.hints.featured": "该账号已被 {domain} 管理团队精选。",
|
||||||
"follow_suggestions.hints.friends_of_friends": "该用户在你关注的人中很受欢迎。",
|
"follow_suggestions.hints.friends_of_friends": "该账号在你关注的人中很受欢迎。",
|
||||||
"follow_suggestions.hints.most_followed": "该用户是 {domain} 上关注度最高的用户之一。",
|
"follow_suggestions.hints.most_followed": "该用户是 {domain} 上关注度最高的用户之一。",
|
||||||
"follow_suggestions.hints.most_interactions": "该用户最近在 {domain} 获得了很多关注。",
|
"follow_suggestions.hints.most_interactions": "该用户最近在 {domain} 获得了很多关注。",
|
||||||
"follow_suggestions.hints.similar_to_recently_followed": "该用户与你最近关注的人类似。",
|
"follow_suggestions.hints.similar_to_recently_followed": "该用户与你最近关注的人类似。",
|
||||||
|
@ -330,7 +330,7 @@
|
||||||
"follow_suggestions.similar_to_recently_followed_longer": "与你近期关注的用户相似",
|
"follow_suggestions.similar_to_recently_followed_longer": "与你近期关注的用户相似",
|
||||||
"follow_suggestions.view_all": "查看全部",
|
"follow_suggestions.view_all": "查看全部",
|
||||||
"follow_suggestions.who_to_follow": "推荐关注",
|
"follow_suggestions.who_to_follow": "推荐关注",
|
||||||
"followed_tags": "已关注话题标签",
|
"followed_tags": "已关注话题",
|
||||||
"footer.about": "关于",
|
"footer.about": "关于",
|
||||||
"footer.directory": "用户列表",
|
"footer.directory": "用户列表",
|
||||||
"footer.get_app": "获取应用",
|
"footer.get_app": "获取应用",
|
||||||
|
@ -345,7 +345,7 @@
|
||||||
"hashtag.column_header.tag_mode.any": "或是 {additional}",
|
"hashtag.column_header.tag_mode.any": "或是 {additional}",
|
||||||
"hashtag.column_header.tag_mode.none": "而不用 {additional}",
|
"hashtag.column_header.tag_mode.none": "而不用 {additional}",
|
||||||
"hashtag.column_settings.select.no_options_message": "未找到建议",
|
"hashtag.column_settings.select.no_options_message": "未找到建议",
|
||||||
"hashtag.column_settings.select.placeholder": "输入话题标签…",
|
"hashtag.column_settings.select.placeholder": "输入话题…",
|
||||||
"hashtag.column_settings.tag_mode.all": "全部",
|
"hashtag.column_settings.tag_mode.all": "全部",
|
||||||
"hashtag.column_settings.tag_mode.any": "任一",
|
"hashtag.column_settings.tag_mode.any": "任一",
|
||||||
"hashtag.column_settings.tag_mode.none": "无一",
|
"hashtag.column_settings.tag_mode.none": "无一",
|
||||||
|
@ -353,12 +353,12 @@
|
||||||
"hashtag.counter_by_accounts": "{count, plural,other {{counter} 人讨论}}",
|
"hashtag.counter_by_accounts": "{count, plural,other {{counter} 人讨论}}",
|
||||||
"hashtag.counter_by_uses": "{count, plural, other {{counter} 条嘟文}}",
|
"hashtag.counter_by_uses": "{count, plural, other {{counter} 条嘟文}}",
|
||||||
"hashtag.counter_by_uses_today": "今日 {count, plural, other {{counter} 条嘟文}}",
|
"hashtag.counter_by_uses_today": "今日 {count, plural, other {{counter} 条嘟文}}",
|
||||||
"hashtag.follow": "关注话题标签",
|
"hashtag.follow": "关注话题",
|
||||||
"hashtag.unfollow": "取消关注话题标签",
|
"hashtag.unfollow": "取消关注话题",
|
||||||
"hashtags.and_other": "… 和另外 {count, plural, other {# 个话题}}",
|
"hashtags.and_other": "… 和另外 {count, plural, other {# 个话题}}",
|
||||||
"hints.profiles.followers_may_be_missing": "该账户的关注者列表可能没有完全显示。",
|
"hints.profiles.followers_may_be_missing": "该账号的关注者列表可能没有完全显示。",
|
||||||
"hints.profiles.follows_may_be_missing": "该账户的关注列表可能没有完全显示。",
|
"hints.profiles.follows_may_be_missing": "该账号的关注列表可能没有完全显示。",
|
||||||
"hints.profiles.posts_may_be_missing": "该账户的嘟文可能没有完全显示。",
|
"hints.profiles.posts_may_be_missing": "该账号的嘟文可能没有完全显示。",
|
||||||
"hints.profiles.see_more_followers": "在 {domain} 查看更多关注者",
|
"hints.profiles.see_more_followers": "在 {domain} 查看更多关注者",
|
||||||
"hints.profiles.see_more_follows": "在 {domain} 查看更多关注",
|
"hints.profiles.see_more_follows": "在 {domain} 查看更多关注",
|
||||||
"hints.profiles.see_more_posts": "在 {domain} 查看更多嘟文",
|
"hints.profiles.see_more_posts": "在 {domain} 查看更多嘟文",
|
||||||
|
@ -374,11 +374,11 @@
|
||||||
"ignore_notifications_modal.disclaimer": "Mastodon无法通知对方用户你忽略了他们的通知。忽略通知不会阻止消息本身的发送。",
|
"ignore_notifications_modal.disclaimer": "Mastodon无法通知对方用户你忽略了他们的通知。忽略通知不会阻止消息本身的发送。",
|
||||||
"ignore_notifications_modal.filter_instead": "改为过滤",
|
"ignore_notifications_modal.filter_instead": "改为过滤",
|
||||||
"ignore_notifications_modal.filter_to_act_users": "你仍然可以接受、拒绝或举报用户",
|
"ignore_notifications_modal.filter_to_act_users": "你仍然可以接受、拒绝或举报用户",
|
||||||
"ignore_notifications_modal.filter_to_avoid_confusion": "过滤有助于避免潜在的混淆",
|
"ignore_notifications_modal.filter_to_avoid_confusion": "选择过滤有助于避免潜在的混淆",
|
||||||
"ignore_notifications_modal.filter_to_review_separately": "你可以单独查看被过滤的通知",
|
"ignore_notifications_modal.filter_to_review_separately": "你可以单独查看被过滤的通知",
|
||||||
"ignore_notifications_modal.ignore": "忽略通知",
|
"ignore_notifications_modal.ignore": "忽略通知",
|
||||||
"ignore_notifications_modal.limited_accounts_title": "是否忽略来自受限账号的通知?",
|
"ignore_notifications_modal.limited_accounts_title": "是否忽略来自受限账号的通知?",
|
||||||
"ignore_notifications_modal.new_accounts_title": "是否忽略来自新账户的通知?",
|
"ignore_notifications_modal.new_accounts_title": "是否忽略来自新账号的通知?",
|
||||||
"ignore_notifications_modal.not_followers_title": "是否忽略未关注你的人的通知?",
|
"ignore_notifications_modal.not_followers_title": "是否忽略未关注你的人的通知?",
|
||||||
"ignore_notifications_modal.not_following_title": "是否忽略你未关注的人的通知?",
|
"ignore_notifications_modal.not_following_title": "是否忽略你未关注的人的通知?",
|
||||||
"ignore_notifications_modal.private_mentions_title": "是否忽略不请自来的私下提及?",
|
"ignore_notifications_modal.private_mentions_title": "是否忽略不请自来的私下提及?",
|
||||||
|
@ -387,7 +387,7 @@
|
||||||
"interaction_modal.description.reblog": "只需一个 Mastodon 账号,即可转发此嘟文,向你的关注者分享它。",
|
"interaction_modal.description.reblog": "只需一个 Mastodon 账号,即可转发此嘟文,向你的关注者分享它。",
|
||||||
"interaction_modal.description.reply": "只需一个 Mastodon 账号,即可回复此嘟文。",
|
"interaction_modal.description.reply": "只需一个 Mastodon 账号,即可回复此嘟文。",
|
||||||
"interaction_modal.login.action": "转到主页",
|
"interaction_modal.login.action": "转到主页",
|
||||||
"interaction_modal.login.prompt": "你所入驻的服务器域名,如:mastodon.social",
|
"interaction_modal.login.prompt": "你所入驻的站点域名,如:mastodon.social",
|
||||||
"interaction_modal.no_account_yet": "还没加入 Mastodon?",
|
"interaction_modal.no_account_yet": "还没加入 Mastodon?",
|
||||||
"interaction_modal.on_another_server": "在另一服务器",
|
"interaction_modal.on_another_server": "在另一服务器",
|
||||||
"interaction_modal.on_this_server": "在此服务器",
|
"interaction_modal.on_this_server": "在此服务器",
|
||||||
|
@ -404,7 +404,7 @@
|
||||||
"keyboard_shortcuts.blocked": "打开被屏蔽用户列表",
|
"keyboard_shortcuts.blocked": "打开被屏蔽用户列表",
|
||||||
"keyboard_shortcuts.boost": "转嘟",
|
"keyboard_shortcuts.boost": "转嘟",
|
||||||
"keyboard_shortcuts.column": "选中某栏",
|
"keyboard_shortcuts.column": "选中某栏",
|
||||||
"keyboard_shortcuts.compose": "选中输入框",
|
"keyboard_shortcuts.compose": "选择输入框",
|
||||||
"keyboard_shortcuts.description": "说明",
|
"keyboard_shortcuts.description": "说明",
|
||||||
"keyboard_shortcuts.direct": "打开私下提及栏",
|
"keyboard_shortcuts.direct": "打开私下提及栏",
|
||||||
"keyboard_shortcuts.down": "在列表中让光标下移",
|
"keyboard_shortcuts.down": "在列表中让光标下移",
|
||||||
|
@ -419,11 +419,11 @@
|
||||||
"keyboard_shortcuts.local": "打开本站时间线",
|
"keyboard_shortcuts.local": "打开本站时间线",
|
||||||
"keyboard_shortcuts.mention": "提及嘟文作者",
|
"keyboard_shortcuts.mention": "提及嘟文作者",
|
||||||
"keyboard_shortcuts.muted": "打开隐藏用户列表",
|
"keyboard_shortcuts.muted": "打开隐藏用户列表",
|
||||||
"keyboard_shortcuts.my_profile": "打开你的账户页",
|
"keyboard_shortcuts.my_profile": "打开你的个人资料",
|
||||||
"keyboard_shortcuts.notifications": "打开通知栏",
|
"keyboard_shortcuts.notifications": "打开通知栏",
|
||||||
"keyboard_shortcuts.open_media": "打开媒体",
|
"keyboard_shortcuts.open_media": "打开媒体",
|
||||||
"keyboard_shortcuts.pinned": "打开置顶嘟文列表",
|
"keyboard_shortcuts.pinned": "打开置顶嘟文列表",
|
||||||
"keyboard_shortcuts.profile": "打开作者的账户页",
|
"keyboard_shortcuts.profile": "打开作者的个人资料",
|
||||||
"keyboard_shortcuts.reply": "回复嘟文",
|
"keyboard_shortcuts.reply": "回复嘟文",
|
||||||
"keyboard_shortcuts.requests": "打开关注请求列表",
|
"keyboard_shortcuts.requests": "打开关注请求列表",
|
||||||
"keyboard_shortcuts.search": "选中搜索框",
|
"keyboard_shortcuts.search": "选中搜索框",
|
||||||
|
@ -475,7 +475,7 @@
|
||||||
"navigation_bar.administration": "管理",
|
"navigation_bar.administration": "管理",
|
||||||
"navigation_bar.advanced_interface": "在高级网页界面中打开",
|
"navigation_bar.advanced_interface": "在高级网页界面中打开",
|
||||||
"navigation_bar.blocks": "已屏蔽的用户",
|
"navigation_bar.blocks": "已屏蔽的用户",
|
||||||
"navigation_bar.bookmarks": "收藏夹",
|
"navigation_bar.bookmarks": "书签",
|
||||||
"navigation_bar.community_timeline": "本站时间线",
|
"navigation_bar.community_timeline": "本站时间线",
|
||||||
"navigation_bar.compose": "撰写新嘟文",
|
"navigation_bar.compose": "撰写新嘟文",
|
||||||
"navigation_bar.direct": "私下提及",
|
"navigation_bar.direct": "私下提及",
|
||||||
|
@ -485,13 +485,13 @@
|
||||||
"navigation_bar.favourites": "喜欢",
|
"navigation_bar.favourites": "喜欢",
|
||||||
"navigation_bar.filters": "忽略的关键词",
|
"navigation_bar.filters": "忽略的关键词",
|
||||||
"navigation_bar.follow_requests": "关注请求",
|
"navigation_bar.follow_requests": "关注请求",
|
||||||
"navigation_bar.followed_tags": "关注的话题标签",
|
"navigation_bar.followed_tags": "关注的话题",
|
||||||
"navigation_bar.follows_and_followers": "关注与关注者",
|
"navigation_bar.follows_and_followers": "关注与关注者",
|
||||||
"navigation_bar.lists": "列表",
|
"navigation_bar.lists": "列表",
|
||||||
"navigation_bar.logout": "退出登录",
|
"navigation_bar.logout": "退出登录",
|
||||||
"navigation_bar.moderation": "审核",
|
"navigation_bar.moderation": "审核",
|
||||||
"navigation_bar.mutes": "已隐藏的用户",
|
"navigation_bar.mutes": "已隐藏的用户",
|
||||||
"navigation_bar.opened_in_classic_interface": "嘟文页、账户页与其他某些页面默认在经典网页界面中打开。",
|
"navigation_bar.opened_in_classic_interface": "嘟文页、个人资料与其他某些页面默认在经典网页界面中打开。",
|
||||||
"navigation_bar.personal": "个人",
|
"navigation_bar.personal": "个人",
|
||||||
"navigation_bar.pins": "置顶嘟文",
|
"navigation_bar.pins": "置顶嘟文",
|
||||||
"navigation_bar.preferences": "偏好设置",
|
"navigation_bar.preferences": "偏好设置",
|
||||||
|
@ -550,16 +550,16 @@
|
||||||
"notification_requests.dismiss_multiple": "{count, plural, other {拒绝 # 个请求…}}",
|
"notification_requests.dismiss_multiple": "{count, plural, other {拒绝 # 个请求…}}",
|
||||||
"notification_requests.edit_selection": "编辑",
|
"notification_requests.edit_selection": "编辑",
|
||||||
"notification_requests.exit_selection": "完成",
|
"notification_requests.exit_selection": "完成",
|
||||||
"notification_requests.explainer_for_limited_account": "来自此账户的通知已被过滤,因为此账户已被管理员限制。",
|
"notification_requests.explainer_for_limited_account": "来自该账号的通知已被过滤,因为该账号已被管理员限制。",
|
||||||
"notification_requests.explainer_for_limited_remote_account": "来自此账户的通知已被过滤,因为此账户或其所在的服务器已被管理员限制。",
|
"notification_requests.explainer_for_limited_remote_account": "来自该账号的通知已被过滤,因为该账号或其所在的实例已被管理员限制。",
|
||||||
"notification_requests.maximize": "最大化",
|
"notification_requests.maximize": "最大化",
|
||||||
"notification_requests.minimize_banner": "最小化被过滤通知横幅",
|
"notification_requests.minimize_banner": "最小化被过滤通知横幅",
|
||||||
"notification_requests.notifications_from": "来自 {name} 的通知",
|
"notification_requests.notifications_from": "来自 {name} 的通知",
|
||||||
"notification_requests.title": "被过滤的通知",
|
"notification_requests.title": "被过滤的通知",
|
||||||
"notification_requests.view": "查看通知",
|
"notification_requests.view": "查看通知",
|
||||||
"notifications.clear": "清空通知列表",
|
"notifications.clear": "清空通知列表",
|
||||||
"notifications.clear_confirmation": "你确定要永久清空通知列表吗?",
|
"notifications.clear_confirmation": "确定要永久清空通知列表吗?",
|
||||||
"notifications.clear_title": "是否清空通知?",
|
"notifications.clear_title": "确定要清空通知?",
|
||||||
"notifications.column_settings.admin.report": "新举报:",
|
"notifications.column_settings.admin.report": "新举报:",
|
||||||
"notifications.column_settings.admin.sign_up": "新注册:",
|
"notifications.column_settings.admin.sign_up": "新注册:",
|
||||||
"notifications.column_settings.alert": "桌面通知",
|
"notifications.column_settings.alert": "桌面通知",
|
||||||
|
@ -574,7 +574,7 @@
|
||||||
"notifications.column_settings.push": "推送通知",
|
"notifications.column_settings.push": "推送通知",
|
||||||
"notifications.column_settings.reblog": "转嘟:",
|
"notifications.column_settings.reblog": "转嘟:",
|
||||||
"notifications.column_settings.show": "在通知栏显示",
|
"notifications.column_settings.show": "在通知栏显示",
|
||||||
"notifications.column_settings.sound": "播放提示音",
|
"notifications.column_settings.sound": "播放音效",
|
||||||
"notifications.column_settings.status": "新嘟文:",
|
"notifications.column_settings.status": "新嘟文:",
|
||||||
"notifications.column_settings.unread_notifications.category": "未读通知",
|
"notifications.column_settings.unread_notifications.category": "未读通知",
|
||||||
"notifications.column_settings.unread_notifications.highlight": "高亮显示未读通知",
|
"notifications.column_settings.unread_notifications.highlight": "高亮显示未读通知",
|
||||||
|
@ -601,11 +601,11 @@
|
||||||
"notifications.policy.filter_limited_accounts_hint": "被服务器管理员限制的账号",
|
"notifications.policy.filter_limited_accounts_hint": "被服务器管理员限制的账号",
|
||||||
"notifications.policy.filter_limited_accounts_title": "受限账号",
|
"notifications.policy.filter_limited_accounts_title": "受限账号",
|
||||||
"notifications.policy.filter_new_accounts.hint": "注册未满 {days, plural, other {# 天}} 的账号",
|
"notifications.policy.filter_new_accounts.hint": "注册未满 {days, plural, other {# 天}} 的账号",
|
||||||
"notifications.policy.filter_new_accounts_title": "新账户",
|
"notifications.policy.filter_new_accounts_title": "新账号",
|
||||||
"notifications.policy.filter_not_followers_hint": "包括关注你未满 {days, plural, other {# 天}}的人",
|
"notifications.policy.filter_not_followers_hint": "包括关注你未满 {days, plural, other {# 天}}的人",
|
||||||
"notifications.policy.filter_not_followers_title": "没有关注你的人",
|
"notifications.policy.filter_not_followers_title": "没有关注你的人",
|
||||||
"notifications.policy.filter_not_following_hint": "需要你手动批准",
|
"notifications.policy.filter_not_following_hint": "需要你手动批准",
|
||||||
"notifications.policy.filter_not_following_title": "你没有关注的人",
|
"notifications.policy.filter_not_following_title": "需要你手动批准",
|
||||||
"notifications.policy.filter_private_mentions_hint": "过滤通知,除非对应嘟文是在回复你的私下提及,或来自你关注的人。",
|
"notifications.policy.filter_private_mentions_hint": "过滤通知,除非对应嘟文是在回复你的私下提及,或来自你关注的人。",
|
||||||
"notifications.policy.filter_private_mentions_title": "不请自来的私下提及",
|
"notifications.policy.filter_private_mentions_title": "不请自来的私下提及",
|
||||||
"notifications.policy.title": "管理来自 … 的通知",
|
"notifications.policy.title": "管理来自 … 的通知",
|
||||||
|
@ -620,22 +620,22 @@
|
||||||
"onboarding.follows.empty": "很抱歉,现在无法显示任何结果。你可以尝试使用搜索或浏览探索页面来查找要关注的人,或稍后再试。",
|
"onboarding.follows.empty": "很抱歉,现在无法显示任何结果。你可以尝试使用搜索或浏览探索页面来查找要关注的人,或稍后再试。",
|
||||||
"onboarding.follows.lead": "你管理你自己的家庭饲料。你关注的人越多,它将越活跃和有趣。 这些配置文件可能是一个很好的起点——你可以随时取消关注它们!",
|
"onboarding.follows.lead": "你管理你自己的家庭饲料。你关注的人越多,它将越活跃和有趣。 这些配置文件可能是一个很好的起点——你可以随时取消关注它们!",
|
||||||
"onboarding.follows.title": "定制你的主页动态",
|
"onboarding.follows.title": "定制你的主页动态",
|
||||||
"onboarding.profile.discoverable": "让我的账户可被他人发现",
|
"onboarding.profile.discoverable": "让我的账号可被他人发现",
|
||||||
"onboarding.profile.discoverable_hint": "当你在 Mastodon 上启用发现功能时,你的嘟文可能会出现在搜索结果与热门中,你的账户可能会被推荐给与你兴趣相似的人。",
|
"onboarding.profile.discoverable_hint": "当你在 Mastodon 上启用发现功能时,你的嘟文可能会出现在搜索结果与热门中,你的账号可能会被推荐给与你兴趣相似的人。",
|
||||||
"onboarding.profile.display_name": "昵称",
|
"onboarding.profile.display_name": "昵称",
|
||||||
"onboarding.profile.display_name_hint": "你的全名或昵称…",
|
"onboarding.profile.display_name_hint": "你的全名或昵称…",
|
||||||
"onboarding.profile.lead": "你可以稍后在设置中完成此操作,设置中有更多的自定义选项。",
|
"onboarding.profile.lead": "你可以稍后在设置中完成此操作,设置中有更多的自定义选项。",
|
||||||
"onboarding.profile.note": "简介",
|
"onboarding.profile.note": "简介",
|
||||||
"onboarding.profile.note_hint": "你可以提及 @其他人 或使用 #话题标签…",
|
"onboarding.profile.note_hint": "你可以提及 @其他人 或使用 #话题…",
|
||||||
"onboarding.profile.save_and_continue": "保存并继续",
|
"onboarding.profile.save_and_continue": "保存并继续",
|
||||||
"onboarding.profile.title": "设置个人资料",
|
"onboarding.profile.title": "设置个人资料",
|
||||||
"onboarding.profile.upload_avatar": "上传头像",
|
"onboarding.profile.upload_avatar": "上传头像",
|
||||||
"onboarding.profile.upload_header": "上传账户页封面图",
|
"onboarding.profile.upload_header": "上传账号封面图",
|
||||||
"onboarding.share.lead": "让人们知道他们如何在Mastodon找到你!",
|
"onboarding.share.lead": "让人们知道他们如何在Mastodon找到你!",
|
||||||
"onboarding.share.message": "我是来自 #Mastodon 的 {username}!请在 {url} 关注我。",
|
"onboarding.share.message": "我是来自 #Mastodon 的 {username}!请在 {url} 关注我。",
|
||||||
"onboarding.share.next_steps": "可能的下一步:",
|
"onboarding.share.next_steps": "可能的下一步:",
|
||||||
"onboarding.share.title": "分享你的账户页",
|
"onboarding.share.title": "分享你的个人资料",
|
||||||
"onboarding.start.lead": "你的新 Mastodon 账户已准备好。下面是如何最大限度地利用它:",
|
"onboarding.start.lead": "你的新 Mastodon 账号已准备好。下面是如何最大限度地利用它:",
|
||||||
"onboarding.start.skip": "想要在前面跳过吗?",
|
"onboarding.start.skip": "想要在前面跳过吗?",
|
||||||
"onboarding.start.title": "你已经成功了!",
|
"onboarding.start.title": "你已经成功了!",
|
||||||
"onboarding.steps.follow_people.body": "You curate your own feed. Lets fill it with interesting people.",
|
"onboarding.steps.follow_people.body": "You curate your own feed. Lets fill it with interesting people.",
|
||||||
|
@ -643,13 +643,13 @@
|
||||||
"onboarding.steps.publish_status.body": "向世界问声好吧。",
|
"onboarding.steps.publish_status.body": "向世界问声好吧。",
|
||||||
"onboarding.steps.publish_status.title": "发布你的第一篇嘟文",
|
"onboarding.steps.publish_status.title": "发布你的第一篇嘟文",
|
||||||
"onboarding.steps.setup_profile.body": "完善个人资料,提升你的互动体验。",
|
"onboarding.steps.setup_profile.body": "完善个人资料,提升你的互动体验。",
|
||||||
"onboarding.steps.setup_profile.title": "自定义你的账户",
|
"onboarding.steps.setup_profile.title": "自定义你的账号",
|
||||||
"onboarding.steps.share_profile.body": "让你的朋友知道如何在 Mastodon 找到你",
|
"onboarding.steps.share_profile.body": "让你的朋友知道怎样在 Mastodon 找到你",
|
||||||
"onboarding.steps.share_profile.title": "分享你的账户页",
|
"onboarding.steps.share_profile.title": "分享你的个人资料",
|
||||||
"onboarding.tips.2fa": "<strong>你知道吗?</strong>你可以在账户设置中配置双因素认证来保护账户安全。可以使用你选择的任何 TOTP 应用,无需电话号码!",
|
"onboarding.tips.2fa": "<strong>你知道吗?</strong>你可以在账号设置中配置双因素认证来保护账号安全。可以使用你选择的任何 TOTP 应用,无需电话号码!",
|
||||||
"onboarding.tips.accounts_from_other_servers": "<strong>你知道吗?</strong> Mastodon 是去中心化的,所以你看到的一些账号实际上是在别的服务器上。不过你仍然可以和他们无缝交流!他们的服务器地址就在他们用户名的后半部分!",
|
"onboarding.tips.accounts_from_other_servers": "<strong>你知道吗?</strong> Mastodon 是去中心化的,所以你看到的一些账号实际上是在别的服务器上。不过你仍然可以和他们无缝交流!他们的服务器地址就在他们用户名的后半部分!",
|
||||||
"onboarding.tips.migration": "<strong>你知道吗?</strong>如果你将来觉得 {domain} 不再符合您的需求,你可以在保留现有关注者的情况下迁移至其他 Mastodon 服务器。你甚至可以部署自己的服务器!",
|
"onboarding.tips.migration": "<strong>你知道吗?</strong>如果你将来觉得 {domain} 不再符合您的需求,你可以在保留现有关注者的情况下迁移至其他 Mastodon 服务器。你甚至可以部署自己的服务器!",
|
||||||
"onboarding.tips.verification": "<strong>你知道吗?</strong> 你可以在自己的网站上添加指向你 Mastodon 账户页的链接,并在你的 Mastodon 账户页中添加对应的网站链接,以此来验证您的账号。此验证方式无需任何费用或文件。",
|
"onboarding.tips.verification": "<strong>你知道吗?</strong> 你可以在自己的网站上添加指向你 Mastodon 个人资料的链接,并在你的 Mastodon 个人资料中添加对应的网站链接,以此来验证您的账号。此验证方式无需任何费用或文件。",
|
||||||
"password_confirmation.exceeds_maxlength": "密码确认超过最大密码长度",
|
"password_confirmation.exceeds_maxlength": "密码确认超过最大密码长度",
|
||||||
"password_confirmation.mismatching": "确认密码与密码不一致。",
|
"password_confirmation.mismatching": "确认密码与密码不一致。",
|
||||||
"picture_in_picture.restore": "恢复",
|
"picture_in_picture.restore": "恢复",
|
||||||
|
@ -670,7 +670,7 @@
|
||||||
"privacy.private.short": "关注者",
|
"privacy.private.short": "关注者",
|
||||||
"privacy.public.long": "所有 Mastodon 内外的人",
|
"privacy.public.long": "所有 Mastodon 内外的人",
|
||||||
"privacy.public.short": "公开",
|
"privacy.public.short": "公开",
|
||||||
"privacy.unlisted.additional": "此模式的行为与“公开”类似,只是嘟文不会出现在实时动态、话题标签、探索或 Mastodon 搜索页面中,即使您已全局开启了对应的发现设置。",
|
"privacy.unlisted.additional": "此模式的行为与“公开”类似,只是嘟文不会出现在实时动态、话题、探索或 Mastodon 搜索页面中,即使您已全局开启了对应的发现设置。",
|
||||||
"privacy.unlisted.long": "减少算法影响",
|
"privacy.unlisted.long": "减少算法影响",
|
||||||
"privacy.unlisted.short": "悄悄公开",
|
"privacy.unlisted.short": "悄悄公开",
|
||||||
"privacy_policy.last_updated": "最近更新于 {date}",
|
"privacy_policy.last_updated": "最近更新于 {date}",
|
||||||
|
@ -701,7 +701,7 @@
|
||||||
"report.categories.violation": "内容违反一条或多条服务器规则",
|
"report.categories.violation": "内容违反一条或多条服务器规则",
|
||||||
"report.category.subtitle": "选择最佳匹配",
|
"report.category.subtitle": "选择最佳匹配",
|
||||||
"report.category.title": "告诉我们此 {type} 存在的问题",
|
"report.category.title": "告诉我们此 {type} 存在的问题",
|
||||||
"report.category.title_account": "账户",
|
"report.category.title_account": "账号",
|
||||||
"report.category.title_status": "嘟文",
|
"report.category.title_status": "嘟文",
|
||||||
"report.close": "完成",
|
"report.close": "完成",
|
||||||
"report.comment.title": "还有什么你认为我们应该知道的吗?",
|
"report.comment.title": "还有什么你认为我们应该知道的吗?",
|
||||||
|
@ -724,7 +724,7 @@
|
||||||
"report.rules.subtitle": "选择所有适用选项",
|
"report.rules.subtitle": "选择所有适用选项",
|
||||||
"report.rules.title": "违反了哪些规则?",
|
"report.rules.title": "违反了哪些规则?",
|
||||||
"report.statuses.subtitle": "选择所有适用选项",
|
"report.statuses.subtitle": "选择所有适用选项",
|
||||||
"report.statuses.title": "是否有可以证实此举报的嘟文?",
|
"report.statuses.title": "是否有任何嘟文可以支持这一报告?",
|
||||||
"report.submit": "提交",
|
"report.submit": "提交",
|
||||||
"report.target": "举报 {target}",
|
"report.target": "举报 {target}",
|
||||||
"report.thanks.take_action": "以下是你控制你在 Mastodon 上能看到哪些内容的选项:",
|
"report.thanks.take_action": "以下是你控制你在 Mastodon 上能看到哪些内容的选项:",
|
||||||
|
@ -732,7 +732,7 @@
|
||||||
"report.thanks.title": "不想看到这个内容?",
|
"report.thanks.title": "不想看到这个内容?",
|
||||||
"report.thanks.title_actionable": "感谢提交举报,我们将会进行处理。",
|
"report.thanks.title_actionable": "感谢提交举报,我们将会进行处理。",
|
||||||
"report.unfollow": "取消关注 @{name}",
|
"report.unfollow": "取消关注 @{name}",
|
||||||
"report.unfollow_explanation": "你正在关注此账户。如果不想继续在主页看到他们的嘟文,取消对他们的关注即可。",
|
"report.unfollow_explanation": "你正在关注此账号。如果不想继续在主页看到他们的嘟文,取消对他们的关注即可。",
|
||||||
"report_notification.attached_statuses": "附上 {count} 条嘟文",
|
"report_notification.attached_statuses": "附上 {count} 条嘟文",
|
||||||
"report_notification.categories.legal": "法律义务",
|
"report_notification.categories.legal": "法律义务",
|
||||||
"report_notification.categories.legal_sentence": "非法内容",
|
"report_notification.categories.legal_sentence": "非法内容",
|
||||||
|
@ -745,9 +745,9 @@
|
||||||
"report_notification.open": "打开举报",
|
"report_notification.open": "打开举报",
|
||||||
"search.no_recent_searches": "无最近搜索",
|
"search.no_recent_searches": "无最近搜索",
|
||||||
"search.placeholder": "搜索",
|
"search.placeholder": "搜索",
|
||||||
"search.quick_action.account_search": "包含 {x} 的账户",
|
"search.quick_action.account_search": "包含 {x} 的账号",
|
||||||
"search.quick_action.go_to_account": "打开 {x} 的账户页",
|
"search.quick_action.go_to_account": "打开 {x} 的个人资料",
|
||||||
"search.quick_action.go_to_hashtag": "打开话题标签 {x}",
|
"search.quick_action.go_to_hashtag": "打开话题 {x}",
|
||||||
"search.quick_action.open_url": "在 Mastodon 中打开此链接",
|
"search.quick_action.open_url": "在 Mastodon 中打开此链接",
|
||||||
"search.quick_action.status_search": "包含 {x} 的嘟文",
|
"search.quick_action.status_search": "包含 {x} 的嘟文",
|
||||||
"search.search_or_paste": "搜索或输入网址",
|
"search.search_or_paste": "搜索或输入网址",
|
||||||
|
@ -761,7 +761,7 @@
|
||||||
"search_popout.user": "用户",
|
"search_popout.user": "用户",
|
||||||
"search_results.accounts": "用户",
|
"search_results.accounts": "用户",
|
||||||
"search_results.all": "全部",
|
"search_results.all": "全部",
|
||||||
"search_results.hashtags": "话题标签",
|
"search_results.hashtags": "话题",
|
||||||
"search_results.nothing_found": "无法找到符合这些搜索词的任何内容",
|
"search_results.nothing_found": "无法找到符合这些搜索词的任何内容",
|
||||||
"search_results.see_all": "查看全部",
|
"search_results.see_all": "查看全部",
|
||||||
"search_results.statuses": "嘟文",
|
"search_results.statuses": "嘟文",
|
||||||
|
@ -769,9 +769,9 @@
|
||||||
"server_banner.about_active_users": "过去 30 天内使用此服务器的人(月活跃用户)",
|
"server_banner.about_active_users": "过去 30 天内使用此服务器的人(月活跃用户)",
|
||||||
"server_banner.active_users": "活跃用户",
|
"server_banner.active_users": "活跃用户",
|
||||||
"server_banner.administered_by": "本站管理员:",
|
"server_banner.administered_by": "本站管理员:",
|
||||||
"server_banner.is_one_of_many": "{domain} 是可用于参与联邦宇宙的众多独立 Mastodon 服务器之一。",
|
"server_banner.is_one_of_many": "{domain} 是可用于参与联邦宇宙的众多独立 Mastodon 站点之一。",
|
||||||
"server_banner.server_stats": "服务器统计数据:",
|
"server_banner.server_stats": "服务器统计数据:",
|
||||||
"sign_in_banner.create_account": "创建账户",
|
"sign_in_banner.create_account": "创建账号",
|
||||||
"sign_in_banner.follow_anyone": "关注联邦宇宙中的任何人,并按时间顺序查看所有内容。没有算法、广告或诱导链接。",
|
"sign_in_banner.follow_anyone": "关注联邦宇宙中的任何人,并按时间顺序查看所有内容。没有算法、广告或诱导链接。",
|
||||||
"sign_in_banner.mastodon_is": "Mastodon 是了解最新动态的最佳途径。",
|
"sign_in_banner.mastodon_is": "Mastodon 是了解最新动态的最佳途径。",
|
||||||
"sign_in_banner.sign_in": "登录",
|
"sign_in_banner.sign_in": "登录",
|
||||||
|
@ -780,7 +780,7 @@
|
||||||
"status.admin_domain": "打开 {domain} 的管理界面",
|
"status.admin_domain": "打开 {domain} 的管理界面",
|
||||||
"status.admin_status": "在管理界面查看此嘟文",
|
"status.admin_status": "在管理界面查看此嘟文",
|
||||||
"status.block": "屏蔽 @{name}",
|
"status.block": "屏蔽 @{name}",
|
||||||
"status.bookmark": "收藏",
|
"status.bookmark": "添加到书签",
|
||||||
"status.cancel_reblog_private": "取消转嘟",
|
"status.cancel_reblog_private": "取消转嘟",
|
||||||
"status.cannot_reblog": "不能转嘟这条嘟文",
|
"status.cannot_reblog": "不能转嘟这条嘟文",
|
||||||
"status.continued_thread": "上接嘟文串",
|
"status.continued_thread": "上接嘟文串",
|
||||||
|
@ -807,16 +807,16 @@
|
||||||
"status.mute": "隐藏 @{name}",
|
"status.mute": "隐藏 @{name}",
|
||||||
"status.mute_conversation": "关闭此对话的通知",
|
"status.mute_conversation": "关闭此对话的通知",
|
||||||
"status.open": "展开嘟文",
|
"status.open": "展开嘟文",
|
||||||
"status.pin": "在账户页置顶",
|
"status.pin": "在个人资料页面置顶",
|
||||||
"status.pinned": "置顶嘟文",
|
"status.pinned": "置顶嘟文",
|
||||||
"status.read_more": "查看更多",
|
"status.read_more": "查看更多",
|
||||||
"status.reblog": "转嘟",
|
"status.reblog": "转嘟",
|
||||||
"status.reblog_private": "以相同可见性转嘟",
|
"status.reblog_private": "以相同可见性转嘟",
|
||||||
"status.reblogged_by": "{name} 转嘟了",
|
"status.reblogged_by": "{name} 转嘟了",
|
||||||
"status.reblogs": "{count, plural, other {次转嘟}}",
|
"status.reblogs": "{count, plural, other {次转嘟}}",
|
||||||
"status.reblogs.empty": "还没有人转嘟过此条嘟文。转嘟此嘟文的人会显示在这里。",
|
"status.reblogs.empty": "没有人转嘟过此条嘟文。如果有人转嘟了,就会显示在这里。",
|
||||||
"status.redraft": "删除并重新编辑",
|
"status.redraft": "删除并重新编辑",
|
||||||
"status.remove_bookmark": "取消收藏",
|
"status.remove_bookmark": "移除书签",
|
||||||
"status.replied_in_thread": "回复嘟文串",
|
"status.replied_in_thread": "回复嘟文串",
|
||||||
"status.replied_to": "回复 {name}",
|
"status.replied_to": "回复 {name}",
|
||||||
"status.reply": "回复",
|
"status.reply": "回复",
|
||||||
|
@ -832,7 +832,7 @@
|
||||||
"status.translated_from_with": "由 {provider} 翻译自 {lang}",
|
"status.translated_from_with": "由 {provider} 翻译自 {lang}",
|
||||||
"status.uncached_media_warning": "预览不可用",
|
"status.uncached_media_warning": "预览不可用",
|
||||||
"status.unmute_conversation": "恢复此对话的通知提醒",
|
"status.unmute_conversation": "恢复此对话的通知提醒",
|
||||||
"status.unpin": "在账户页取消置顶",
|
"status.unpin": "在个人资料页面取消置顶",
|
||||||
"subscribed_languages.lead": "更改此选择后,只有选定语言的嘟文才会出现在你的主页和列表时间线上。选择「无」将显示所有语言的嘟文。",
|
"subscribed_languages.lead": "更改此选择后,只有选定语言的嘟文才会出现在你的主页和列表时间线上。选择「无」将显示所有语言的嘟文。",
|
||||||
"subscribed_languages.save": "保存更改",
|
"subscribed_languages.save": "保存更改",
|
||||||
"subscribed_languages.target": "更改 {target} 的订阅语言",
|
"subscribed_languages.target": "更改 {target} 的订阅语言",
|
||||||
|
|
|
@ -53,7 +53,7 @@
|
||||||
"account.mute_short": "靜音",
|
"account.mute_short": "靜音",
|
||||||
"account.muted": "已靜音",
|
"account.muted": "已靜音",
|
||||||
"account.mutual": "互相跟隨",
|
"account.mutual": "互相跟隨",
|
||||||
"account.no_bio": "無個人檔案描述",
|
"account.no_bio": "無個人檔案描述。",
|
||||||
"account.open_original_page": "檢視原始頁面",
|
"account.open_original_page": "檢視原始頁面",
|
||||||
"account.posts": "嘟文",
|
"account.posts": "嘟文",
|
||||||
"account.posts_with_replies": "嘟文與回覆",
|
"account.posts_with_replies": "嘟文與回覆",
|
||||||
|
@ -392,7 +392,7 @@
|
||||||
"interaction_modal.on_another_server": "於不同伺服器",
|
"interaction_modal.on_another_server": "於不同伺服器",
|
||||||
"interaction_modal.on_this_server": "於此伺服器",
|
"interaction_modal.on_this_server": "於此伺服器",
|
||||||
"interaction_modal.sign_in": "您未登入於此伺服器。您的帳號是於何方託管呢?",
|
"interaction_modal.sign_in": "您未登入於此伺服器。您的帳號是於何方託管呢?",
|
||||||
"interaction_modal.sign_in_hint": "提示:這是您所註冊之網站。若您無法回想起,請檢查您電子信箱收件夾內之歡迎信。您也能輸入完整帳號名稱!(如:@Mastodon@mastodon.social)",
|
"interaction_modal.sign_in_hint": "提示:這是您所註冊之網站。若您無法回想起,請檢查您電子郵件收件夾內之歡迎信。您也能輸入完整帳號名稱!(如:@Mastodon@mastodon.social)",
|
||||||
"interaction_modal.title.favourite": "將 {name} 之嘟文加入最愛",
|
"interaction_modal.title.favourite": "將 {name} 之嘟文加入最愛",
|
||||||
"interaction_modal.title.follow": "跟隨 {name}",
|
"interaction_modal.title.follow": "跟隨 {name}",
|
||||||
"interaction_modal.title.reblog": "轉嘟 {name} 的嘟文",
|
"interaction_modal.title.reblog": "轉嘟 {name} 的嘟文",
|
||||||
|
@ -678,7 +678,7 @@
|
||||||
"recommended": "推薦設定",
|
"recommended": "推薦設定",
|
||||||
"refresh": "重新整理",
|
"refresh": "重新整理",
|
||||||
"regeneration_indicator.label": "載入中…",
|
"regeneration_indicator.label": "載入中…",
|
||||||
"regeneration_indicator.sublabel": "您的首頁時間軸正在準備中!",
|
"regeneration_indicator.sublabel": "正在準備您的首頁時間軸!",
|
||||||
"relative_time.days": "{number} 天",
|
"relative_time.days": "{number} 天",
|
||||||
"relative_time.full.days": "{number, plural, other {# 天}}前",
|
"relative_time.full.days": "{number, plural, other {# 天}}前",
|
||||||
"relative_time.full.hours": "{number, plural, other {# 小時}}前",
|
"relative_time.full.hours": "{number, plural, other {# 小時}}前",
|
||||||
|
@ -816,7 +816,7 @@
|
||||||
"status.reblogs": "{count, plural, other {則轉嘟}}",
|
"status.reblogs": "{count, plural, other {則轉嘟}}",
|
||||||
"status.reblogs.empty": "還沒有人轉嘟過這則嘟文。當有人轉嘟時,它將於此顯示。",
|
"status.reblogs.empty": "還沒有人轉嘟過這則嘟文。當有人轉嘟時,它將於此顯示。",
|
||||||
"status.redraft": "刪除並重新編輯",
|
"status.redraft": "刪除並重新編輯",
|
||||||
"status.remove_bookmark": "移除書籤",
|
"status.remove_bookmark": "自書籤中移除",
|
||||||
"status.replied_in_thread": "於討論串中回覆",
|
"status.replied_in_thread": "於討論串中回覆",
|
||||||
"status.replied_to": "回覆 {name}",
|
"status.replied_to": "回覆 {name}",
|
||||||
"status.reply": "回覆",
|
"status.reply": "回覆",
|
||||||
|
@ -853,17 +853,17 @@
|
||||||
"upload_button.label": "上傳圖片、影片、或者音訊檔案",
|
"upload_button.label": "上傳圖片、影片、或者音訊檔案",
|
||||||
"upload_error.limit": "已達到檔案上傳限制。",
|
"upload_error.limit": "已達到檔案上傳限制。",
|
||||||
"upload_error.poll": "不允許於投票時上傳檔案。",
|
"upload_error.poll": "不允許於投票時上傳檔案。",
|
||||||
"upload_form.audio_description": "為聽障人士增加文字說明",
|
"upload_form.audio_description": "為聽覺障礙人士增加文字說明",
|
||||||
"upload_form.description": "為視障人士增加文字說明",
|
"upload_form.description": "為視覺障礙人士增加文字說明",
|
||||||
"upload_form.drag_and_drop.instructions": "請按空白鍵或 Enter 鍵取多媒體附加檔案。使用方向鍵移動多媒體附加檔案。按下空白鍵或 Enter 鍵於新位置放置多媒體附加檔案,或按下 ESC 鍵取消。",
|
"upload_form.drag_and_drop.instructions": "請按空白鍵或 Enter 鍵取多媒體附加檔案。使用方向鍵移動多媒體附加檔案。按下空白鍵或 Enter 鍵於新位置放置多媒體附加檔案,或按下 ESC 鍵取消。",
|
||||||
"upload_form.drag_and_drop.on_drag_cancel": "移動已取消。多媒體附加檔案 {item} 已被放置。",
|
"upload_form.drag_and_drop.on_drag_cancel": "移動已取消。多媒體附加檔案 {item} 已被放置。",
|
||||||
"upload_form.drag_and_drop.on_drag_end": "多媒體附加檔案 {item} 已被放置。",
|
"upload_form.drag_and_drop.on_drag_end": "多媒體附加檔案 {item} 已被放置。",
|
||||||
"upload_form.drag_and_drop.on_drag_over": "多媒體附加檔案 {item} 已被移動。",
|
"upload_form.drag_and_drop.on_drag_over": "多媒體附加檔案 {item} 已被移動。",
|
||||||
"upload_form.drag_and_drop.on_drag_start": "多媒體附加檔案 {item} 已被選取。",
|
"upload_form.drag_and_drop.on_drag_start": "多媒體附加檔案 {item} 已被選取。",
|
||||||
"upload_form.edit": "編輯",
|
"upload_form.edit": "編輯",
|
||||||
"upload_form.thumbnail": "更改預覽圖",
|
"upload_form.thumbnail": "變更預覽圖",
|
||||||
"upload_form.video_description": "為聽障或視障人士增加文字說明",
|
"upload_form.video_description": "為聽障或視障人士增加文字說明",
|
||||||
"upload_modal.analyzing_picture": "正在分析圖片…",
|
"upload_modal.analyzing_picture": "正在分析圖片...",
|
||||||
"upload_modal.apply": "套用",
|
"upload_modal.apply": "套用",
|
||||||
"upload_modal.applying": "正在套用...",
|
"upload_modal.applying": "正在套用...",
|
||||||
"upload_modal.choose_image": "選擇圖片",
|
"upload_modal.choose_image": "選擇圖片",
|
||||||
|
@ -871,7 +871,7 @@
|
||||||
"upload_modal.detect_text": "自圖片中偵測文字",
|
"upload_modal.detect_text": "自圖片中偵測文字",
|
||||||
"upload_modal.edit_media": "編輯媒體",
|
"upload_modal.edit_media": "編輯媒體",
|
||||||
"upload_modal.hint": "於預覽中點擊或拖曳圓圈以選擇將於所有縮圖中顯示的焦點。",
|
"upload_modal.hint": "於預覽中點擊或拖曳圓圈以選擇將於所有縮圖中顯示的焦點。",
|
||||||
"upload_modal.preparing_ocr": "準備 OCR 中……",
|
"upload_modal.preparing_ocr": "正在準備 OCR...",
|
||||||
"upload_modal.preview_label": "預覽 ({ratio})",
|
"upload_modal.preview_label": "預覽 ({ratio})",
|
||||||
"upload_progress.label": "上傳中...",
|
"upload_progress.label": "上傳中...",
|
||||||
"upload_progress.processing": "處理中...",
|
"upload_progress.processing": "處理中...",
|
||||||
|
|
|
@ -7440,6 +7440,8 @@ a.status-card {
|
||||||
}
|
}
|
||||||
|
|
||||||
&--layout-3 {
|
&--layout-3 {
|
||||||
|
min-height: calc(64px * 2 + 8px);
|
||||||
|
|
||||||
& > .media-gallery__item:nth-child(1) {
|
& > .media-gallery__item:nth-child(1) {
|
||||||
border-end-end-radius: 0;
|
border-end-end-radius: 0;
|
||||||
border-start-end-radius: 0;
|
border-start-end-radius: 0;
|
||||||
|
@ -7459,6 +7461,8 @@ a.status-card {
|
||||||
}
|
}
|
||||||
|
|
||||||
&--layout-4 {
|
&--layout-4 {
|
||||||
|
min-height: calc(64px * 2 + 8px);
|
||||||
|
|
||||||
& > .media-gallery__item:nth-child(1) {
|
& > .media-gallery__item:nth-child(1) {
|
||||||
border-end-end-radius: 0;
|
border-end-end-radius: 0;
|
||||||
border-start-end-radius: 0;
|
border-start-end-radius: 0;
|
||||||
|
|
|
@ -680,6 +680,10 @@ code {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.status-card {
|
||||||
|
contain: unset;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.block-icon {
|
.block-icon {
|
||||||
|
|
|
@ -82,6 +82,7 @@
|
||||||
|
|
||||||
.accounts-table {
|
.accounts-table {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
table-layout: fixed;
|
||||||
|
|
||||||
.account {
|
.account {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
|
|
@ -64,6 +64,7 @@ class ActivityPub::Activity::Create < ActivityPub::Activity
|
||||||
ApplicationRecord.transaction do
|
ApplicationRecord.transaction do
|
||||||
@status = Status.create!(@params)
|
@status = Status.create!(@params)
|
||||||
attach_tags(@status)
|
attach_tags(@status)
|
||||||
|
attach_mentions(@status)
|
||||||
end
|
end
|
||||||
|
|
||||||
resolve_thread(@status)
|
resolve_thread(@status)
|
||||||
|
@ -227,6 +228,15 @@ class ActivityPub::Activity::Create < ActivityPub::Activity
|
||||||
# not a big deal
|
# not a big deal
|
||||||
Trends.tags.register(status)
|
Trends.tags.register(status)
|
||||||
|
|
||||||
|
# Update featured tags
|
||||||
|
return if @tags.empty? || !status.distributable?
|
||||||
|
|
||||||
|
@account.featured_tags.where(tag_id: @tags.pluck(:id)).find_each do |featured_tag|
|
||||||
|
featured_tag.increment(status.created_at)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def attach_mentions(status)
|
||||||
@mentions.each do |mention|
|
@mentions.each do |mention|
|
||||||
mention.status = status
|
mention.status = status
|
||||||
mention.save
|
mention.save
|
||||||
|
|
|
@ -32,24 +32,31 @@ class FeedManager
|
||||||
"feed:#{type}:#{id}:#{subtype}"
|
"feed:#{type}:#{id}:#{subtype}"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# The filter result of the status to a particular feed
|
||||||
|
# @param [Symbol] timeline_type
|
||||||
|
# @param [Status] status
|
||||||
|
# @param [Account|List] receiver
|
||||||
|
# @return [void|Symbol] nil, :filter, or :skip_home
|
||||||
|
def filter(timeline_type, status, receiver, stl_home: false)
|
||||||
|
case timeline_type
|
||||||
|
when :home
|
||||||
|
filter_from_home(status, receiver.id, build_crutches(receiver.id, [status]), :home)
|
||||||
|
when :list
|
||||||
|
(filter_from_list?(status, receiver) ? :filter : nil) || filter_from_home(status, receiver.account_id, build_crutches(receiver.account_id, [status], list: receiver), :list, stl_home: stl_home)
|
||||||
|
when :mentions
|
||||||
|
filter_from_mentions?(status, receiver.id) ? :filter : nil
|
||||||
|
when :tags
|
||||||
|
filter_from_tags?(status, receiver.id, build_crutches(receiver.id, [status])) ? :filter : nil
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
# Check if the status should not be added to a feed
|
# Check if the status should not be added to a feed
|
||||||
# @param [Symbol] timeline_type
|
# @param [Symbol] timeline_type
|
||||||
# @param [Status] status
|
# @param [Status] status
|
||||||
# @param [Account|List] receiver
|
# @param [Account|List] receiver
|
||||||
# @return [Boolean]
|
# @return [Boolean]
|
||||||
def filter?(timeline_type, status, receiver, stl_home: false)
|
def filter?(timeline_type, status, receiver, stl_home: false)
|
||||||
case timeline_type
|
!!filter(timeline_type, status, receiver, stl_home: stl_home)
|
||||||
when :home
|
|
||||||
filter_from_home?(status, receiver.id, build_crutches(receiver.id, [status]), :home)
|
|
||||||
when :list
|
|
||||||
filter_from_list?(status, receiver) || filter_from_home?(status, receiver.account_id, build_crutches(receiver.account_id, [status]), :list, stl_home: stl_home)
|
|
||||||
when :mentions
|
|
||||||
filter_from_mentions?(status, receiver.id)
|
|
||||||
when :tags
|
|
||||||
filter_from_tags?(status, receiver.id, build_crutches(receiver.id, [status]))
|
|
||||||
else
|
|
||||||
false
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
# Add a status to a home feed and send a streaming API update
|
# Add a status to a home feed and send a streaming API update
|
||||||
|
@ -86,7 +93,7 @@ class FeedManager
|
||||||
def push_to_list(list, status, update: false)
|
def push_to_list(list, status, update: false)
|
||||||
return false if filter_from_list?(status, list) || !add_to_feed(:list, list.id, status, aggregate_reblogs: list.account.user&.aggregates_reblogs?, update: update)
|
return false if filter_from_list?(status, list) || !add_to_feed(:list, list.id, status, aggregate_reblogs: list.account.user&.aggregates_reblogs?, update: update)
|
||||||
return false unless list.account.user&.signed_in_recently?
|
return false unless list.account.user&.signed_in_recently?
|
||||||
return false unless add_to_feed(:list, list.id, status, aggregate_reblogs: list.account.user&.aggregates_reblogs?, update: update)
|
return false unless add_to_feed(:list, list.id, status, aggregate_reblogs: list.account.user&.aggregates_reblogs?)
|
||||||
|
|
||||||
trim(:list, list.id)
|
trim(:list, list.id)
|
||||||
PushUpdateWorker.perform_async(list.account_id, status.id, "timeline:list:#{list.id}", { 'update' => update }) if push_update_required?("timeline:list:#{list.id}")
|
PushUpdateWorker.perform_async(list.account_id, status.id, "timeline:list:#{list.id}", { 'update' => update }) if push_update_required?("timeline:list:#{list.id}")
|
||||||
|
@ -129,7 +136,7 @@ class FeedManager
|
||||||
|
|
||||||
timeline_key = key(:home, into_account.id)
|
timeline_key = key(:home, into_account.id)
|
||||||
aggregate = into_account.user&.aggregates_reblogs?
|
aggregate = into_account.user&.aggregates_reblogs?
|
||||||
query = from_account.statuses.list_eligible_visibility.includes(:preloadable_poll, :media_attachments, reblog: :account).limit(FeedManager::MAX_ITEMS / 4)
|
query = from_account.statuses.list_eligible_visibility.includes(reblog: :account).limit(FeedManager::MAX_ITEMS / 4)
|
||||||
|
|
||||||
if redis.zcard(timeline_key) >= FeedManager::MAX_ITEMS / 4
|
if redis.zcard(timeline_key) >= FeedManager::MAX_ITEMS / 4
|
||||||
oldest_home_score = redis.zrange(timeline_key, 0, 0, with_scores: true).first.last.to_i
|
oldest_home_score = redis.zrange(timeline_key, 0, 0, with_scores: true).first.last.to_i
|
||||||
|
@ -140,7 +147,7 @@ class FeedManager
|
||||||
crutches = build_crutches(into_account.id, statuses)
|
crutches = build_crutches(into_account.id, statuses)
|
||||||
|
|
||||||
statuses.each do |status|
|
statuses.each do |status|
|
||||||
next if filter_from_home?(status, into_account.id, crutches)
|
next if filter_from_home(status, into_account.id, crutches)
|
||||||
|
|
||||||
add_to_feed(:home, into_account.id, status, aggregate_reblogs: aggregate)
|
add_to_feed(:home, into_account.id, status, aggregate_reblogs: aggregate)
|
||||||
end
|
end
|
||||||
|
@ -157,7 +164,7 @@ class FeedManager
|
||||||
|
|
||||||
timeline_key = key(:list, list.id)
|
timeline_key = key(:list, list.id)
|
||||||
aggregate = list.account.user&.aggregates_reblogs?
|
aggregate = list.account.user&.aggregates_reblogs?
|
||||||
query = from_account.statuses.list_eligible_visibility.includes(:preloadable_poll, :media_attachments, reblog: :account).limit(FeedManager::MAX_ITEMS / 4)
|
query = from_account.statuses.list_eligible_visibility.includes(reblog: :account).limit(FeedManager::MAX_ITEMS / 4)
|
||||||
|
|
||||||
if redis.zcard(timeline_key) >= FeedManager::MAX_ITEMS / 4
|
if redis.zcard(timeline_key) >= FeedManager::MAX_ITEMS / 4
|
||||||
oldest_home_score = redis.zrange(timeline_key, 0, 0, with_scores: true).first.last.to_i
|
oldest_home_score = redis.zrange(timeline_key, 0, 0, with_scores: true).first.last.to_i
|
||||||
|
@ -165,10 +172,10 @@ class FeedManager
|
||||||
end
|
end
|
||||||
|
|
||||||
statuses = query.to_a
|
statuses = query.to_a
|
||||||
crutches = build_crutches(list.account_id, statuses)
|
crutches = build_crutches(list.account_id, statuses, list: list)
|
||||||
|
|
||||||
statuses.each do |status|
|
statuses.each do |status|
|
||||||
next if filter_from_home?(status, list.account_id, crutches) || filter_from_list?(status, list)
|
next if filter_from_home(status, list.account_id, crutches, :list)
|
||||||
|
|
||||||
add_to_feed(:list, list.id, status, aggregate_reblogs: aggregate)
|
add_to_feed(:list, list.id, status, aggregate_reblogs: aggregate)
|
||||||
end
|
end
|
||||||
|
@ -184,7 +191,7 @@ class FeedManager
|
||||||
timeline_key = key(:home, into_account.id)
|
timeline_key = key(:home, into_account.id)
|
||||||
timeline_status_ids = redis.zrange(timeline_key, 0, -1)
|
timeline_status_ids = redis.zrange(timeline_key, 0, -1)
|
||||||
|
|
||||||
from_account.statuses.select('id, reblog_of_id').where(id: timeline_status_ids).reorder(nil).find_each do |status|
|
from_account.statuses.select(:id, :reblog_of_id).where(id: timeline_status_ids).reorder(nil).find_each do |status|
|
||||||
remove_from_feed(:home, into_account.id, status, aggregate_reblogs: into_account.user&.aggregates_reblogs?)
|
remove_from_feed(:home, into_account.id, status, aggregate_reblogs: into_account.user&.aggregates_reblogs?)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -197,7 +204,7 @@ class FeedManager
|
||||||
timeline_key = key(:list, list.id)
|
timeline_key = key(:list, list.id)
|
||||||
timeline_status_ids = redis.zrange(timeline_key, 0, -1)
|
timeline_status_ids = redis.zrange(timeline_key, 0, -1)
|
||||||
|
|
||||||
from_account.statuses.select('id, reblog_of_id').where(id: timeline_status_ids).reorder(nil).find_each do |status|
|
from_account.statuses.select(:id, :reblog_of_id).where(id: timeline_status_ids).reorder(nil).find_each do |status|
|
||||||
remove_from_feed(:list, list.id, status, aggregate_reblogs: list.account.user&.aggregates_reblogs?)
|
remove_from_feed(:list, list.id, status, aggregate_reblogs: list.account.user&.aggregates_reblogs?)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -218,7 +225,7 @@ class FeedManager
|
||||||
.where.not(account: into_account.following)
|
.where.not(account: into_account.following)
|
||||||
.tagged_with_none(TagFollow.where(account: into_account).pluck(:tag_id))
|
.tagged_with_none(TagFollow.where(account: into_account).pluck(:tag_id))
|
||||||
|
|
||||||
scope.select('id, reblog_of_id').reorder(nil).find_each do |status|
|
scope.select(:id, :reblog_of_id).reorder(nil).find_each do |status|
|
||||||
remove_from_feed(:home, into_account.id, status, aggregate_reblogs: into_account.user&.aggregates_reblogs?)
|
remove_from_feed(:home, into_account.id, status, aggregate_reblogs: into_account.user&.aggregates_reblogs?)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -302,27 +309,36 @@ class FeedManager
|
||||||
limit = FeedManager::MAX_ITEMS / 2
|
limit = FeedManager::MAX_ITEMS / 2
|
||||||
aggregate = account.user&.aggregates_reblogs?
|
aggregate = account.user&.aggregates_reblogs?
|
||||||
timeline_key = key(:home, account.id)
|
timeline_key = key(:home, account.id)
|
||||||
|
over_limit = false
|
||||||
|
|
||||||
account.statuses.limit(limit).each do |status|
|
account.statuses.limit(limit).each do |status|
|
||||||
add_to_feed(:home, account.id, status, aggregate_reblogs: aggregate)
|
add_to_feed(:home, account.id, status, aggregate_reblogs: aggregate)
|
||||||
end
|
end
|
||||||
|
|
||||||
account.following.includes(:account_stat).reorder(nil).find_each do |target_account|
|
account.following.includes(:account_stat).reorder(nil).find_each do |target_account|
|
||||||
if redis.zcard(timeline_key) >= limit
|
query = target_account.statuses.list_eligible_visibility.includes(reblog: :account).limit(limit)
|
||||||
|
|
||||||
|
over_limit ||= redis.zcard(timeline_key) >= limit
|
||||||
|
if over_limit
|
||||||
oldest_home_score = redis.zrange(timeline_key, 0, 0, with_scores: true).first.last.to_i
|
oldest_home_score = redis.zrange(timeline_key, 0, 0, with_scores: true).first.last.to_i
|
||||||
last_status_score = Mastodon::Snowflake.id_at(target_account.last_status_at)
|
last_status_score = Mastodon::Snowflake.id_at(target_account.last_status_at, with_random: false)
|
||||||
|
|
||||||
# If the feed is full and this account has not posted more recently
|
# If the feed is full and this account has not posted more recently
|
||||||
# than the last item on the feed, then we can skip the whole account
|
# than the last item on the feed, then we can skip the whole account
|
||||||
# because none of its statuses would stay on the feed anyway
|
# because none of its statuses would stay on the feed anyway
|
||||||
next if last_status_score < oldest_home_score
|
next if last_status_score < oldest_home_score
|
||||||
|
|
||||||
|
# No need to get older statuses
|
||||||
|
query = query.where(id: oldest_home_score...)
|
||||||
end
|
end
|
||||||
|
|
||||||
statuses = target_account.statuses.list_eligible_visibility.includes(:preloadable_poll, :media_attachments, :account, reblog: :account).limit(limit)
|
statuses = query.to_a
|
||||||
|
next if statuses.empty?
|
||||||
|
|
||||||
crutches = build_crutches(account.id, statuses)
|
crutches = build_crutches(account.id, statuses)
|
||||||
|
|
||||||
statuses.each do |status|
|
statuses.each do |status|
|
||||||
next if filter_from_home?(status, account.id, crutches)
|
next if filter_from_home(status, account.id, crutches)
|
||||||
|
|
||||||
add_to_feed(:home, account.id, status, aggregate_reblogs: aggregate)
|
add_to_feed(:home, account.id, status, aggregate_reblogs: aggregate)
|
||||||
end
|
end
|
||||||
|
@ -331,6 +347,47 @@ class FeedManager
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# Populate list feed of account from scratch
|
||||||
|
# @param [List] list
|
||||||
|
# @return [void]
|
||||||
|
def populate_list(list)
|
||||||
|
limit = FeedManager::MAX_ITEMS / 2
|
||||||
|
aggregate = list.account.user&.aggregates_reblogs?
|
||||||
|
timeline_key = key(:list, list.id)
|
||||||
|
over_limit = false
|
||||||
|
|
||||||
|
list.active_accounts.includes(:account_stat).reorder(nil).find_each do |target_account|
|
||||||
|
query = target_account.statuses.list_eligible_visibility.includes(reblog: :account).limit(limit)
|
||||||
|
|
||||||
|
over_limit ||= redis.zcard(timeline_key) >= limit
|
||||||
|
if over_limit
|
||||||
|
oldest_home_score = redis.zrange(timeline_key, 0, 0, with_scores: true).first.last.to_i
|
||||||
|
last_status_score = Mastodon::Snowflake.id_at(target_account.last_status_at, with_random: false)
|
||||||
|
|
||||||
|
# If the feed is full and this account has not posted more recently
|
||||||
|
# than the last item on the feed, then we can skip the whole account
|
||||||
|
# because none of its statuses would stay on the feed anyway
|
||||||
|
next if last_status_score < oldest_home_score
|
||||||
|
|
||||||
|
# No need to get older statuses
|
||||||
|
query = query.where(id: oldest_home_score...)
|
||||||
|
end
|
||||||
|
|
||||||
|
statuses = query.to_a
|
||||||
|
next if statuses.empty?
|
||||||
|
|
||||||
|
crutches = build_crutches(list.account_id, statuses, list: list)
|
||||||
|
|
||||||
|
statuses.each do |status|
|
||||||
|
next if filter_from_home(status, list.account_id, crutches, :list)
|
||||||
|
|
||||||
|
add_to_feed(:list, list.id, status, aggregate_reblogs: aggregate)
|
||||||
|
end
|
||||||
|
|
||||||
|
trim(:list, list.id)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
# Completely clear multiple feeds at once
|
# Completely clear multiple feeds at once
|
||||||
# @param [Symbol] type
|
# @param [Symbol] type
|
||||||
# @param [Array<Integer>] ids
|
# @param [Array<Integer>] ids
|
||||||
|
@ -415,12 +472,12 @@ class FeedManager
|
||||||
# @param [Status] status
|
# @param [Status] status
|
||||||
# @param [Integer] receiver_id
|
# @param [Integer] receiver_id
|
||||||
# @param [Hash] crutches
|
# @param [Hash] crutches
|
||||||
# @return [Boolean]
|
# @return [void|Symbol] nil, :skip_home, or :filter
|
||||||
def filter_from_home?(status, receiver_id, crutches, timeline_type = :home, stl_home: false) # rubocop:disable Metrics/PerceivedComplexity, Metrics/AbcSize
|
def filter_from_home(status, receiver_id, crutches, timeline_type = :home, stl_home: false) # rubocop:disable Metrics/PerceivedComplexity, Metrics/AbcSize
|
||||||
return false if receiver_id == status.account_id
|
return if receiver_id == status.account_id
|
||||||
return true if status.reply? && (status.in_reply_to_id.nil? || status.in_reply_to_account_id.nil?) && !(timeline_type == :home && status.limited_visibility?)
|
return :filter if status.reply? && (status.in_reply_to_id.nil? || status.in_reply_to_account_id.nil?) && !(timeline_type == :home && status.limited_visibility?)
|
||||||
return true if (timeline_type != :list || stl_home) && (crutches[:exclusive_list_users][status.account_id].present? || crutches[:exclusive_antenna_users][status.account_id].present?)
|
return :skip_home if (timeline_type != :list || stl_home) && (crutches[:exclusive_list_users][status.account_id].present? || crutches[:exclusive_antenna_users][status.account_id].present?)
|
||||||
return true if crutches[:languages][status.account_id].present? && status.language.present? && !crutches[:languages][status.account_id].include?(status.language)
|
return :filter if crutches[:languages][status.account_id].present? && status.language.present? && !crutches[:languages][status.account_id].include?(status.language)
|
||||||
|
|
||||||
check_for_blocks = crutches[:active_mentions][status.id] || []
|
check_for_blocks = crutches[:active_mentions][status.id] || []
|
||||||
check_for_blocks.push(status.account_id)
|
check_for_blocks.push(status.account_id)
|
||||||
|
@ -430,25 +487,23 @@ class FeedManager
|
||||||
check_for_blocks.concat(crutches[:active_mentions][status.reblog_of_id] || [])
|
check_for_blocks.concat(crutches[:active_mentions][status.reblog_of_id] || [])
|
||||||
end
|
end
|
||||||
|
|
||||||
return true if check_for_blocks.any? { |target_account_id| crutches[:blocking][target_account_id] || crutches[:muting][target_account_id] }
|
return :filter if check_for_blocks.any? { |target_account_id| crutches[:blocking][target_account_id] || crutches[:muting][target_account_id] }
|
||||||
return true if crutches[:blocked_by][status.account_id]
|
return :filter if crutches[:blocked_by][status.account_id]
|
||||||
|
|
||||||
if status.reply? && (!status.in_reply_to_account_id.nil? || (status.thread.present? && status.limited_visibility?)) # Filter out if it's a reply
|
if status.reply? && (!status.in_reply_to_account_id.nil? || (status.thread.present? && status.limited_visibility?)) # Filter out if it's a reply
|
||||||
account_id = status.in_reply_to_account_id || status.thread.account_id
|
account_id = status.in_reply_to_account_id || status.thread.account_id
|
||||||
should_filter = !crutches[:following][account_id] # and I'm not following the person it's a reply to
|
should_filter = !crutches[:following][account_id] # and I'm not following the person it's a reply to
|
||||||
should_filter &&= receiver_id != account_id # and it's not a reply to me
|
should_filter &&= receiver_id != account_id # and it's not a reply to me
|
||||||
should_filter &&= status.account_id != account_id # and it's not a self-reply
|
should_filter &&= status.account_id != account_id # and it's not a self-reply
|
||||||
|
|
||||||
return !!should_filter
|
|
||||||
elsif status.reblog? # Filter out a reblog
|
elsif status.reblog? # Filter out a reblog
|
||||||
should_filter = crutches[:hiding_reblogs][status.account_id] # if the reblogger's reblogs are suppressed
|
should_filter = crutches[:hiding_reblogs][status.account_id] # if the reblogger's reblogs are suppressed
|
||||||
should_filter ||= crutches[:blocked_by][status.reblog.account_id] # or if the author of the reblogged status is blocking me
|
should_filter ||= crutches[:blocked_by][status.reblog.account_id] # or if the author of the reblogged status is blocking me
|
||||||
should_filter ||= crutches[:domain_blocking][status.reblog.account.domain] # or the author's domain is blocked
|
should_filter ||= crutches[:domain_blocking][status.reblog.account.domain] # or the author's domain is blocked
|
||||||
|
else
|
||||||
return !!should_filter
|
should_filter = false
|
||||||
end
|
end
|
||||||
|
|
||||||
false
|
should_filter ? :filter : nil
|
||||||
end
|
end
|
||||||
|
|
||||||
# Check if status should not be added to the mentions feed
|
# Check if status should not be added to the mentions feed
|
||||||
|
@ -595,8 +650,9 @@ class FeedManager
|
||||||
# are going to be checked by the filtering methods
|
# are going to be checked by the filtering methods
|
||||||
# @param [Integer] receiver_id
|
# @param [Integer] receiver_id
|
||||||
# @param [Array<Status>] statuses
|
# @param [Array<Status>] statuses
|
||||||
|
# @param [List] list
|
||||||
# @return [Hash]
|
# @return [Hash]
|
||||||
def build_crutches(receiver_id, statuses) # rubocop:disable Metrics/AbcSize
|
def build_crutches(receiver_id, statuses, list: nil)
|
||||||
crutches = {}
|
crutches = {}
|
||||||
|
|
||||||
crutches[:active_mentions] = crutches_active_mentions(statuses)
|
crutches[:active_mentions] = crutches_active_mentions(statuses)
|
||||||
|
@ -613,25 +669,43 @@ class FeedManager
|
||||||
arr
|
arr
|
||||||
end
|
end
|
||||||
|
|
||||||
lists = List.where(account_id: receiver_id, exclusive: true)
|
crutches[:following] = crutches_following(receiver_id, statuses, list)
|
||||||
antennas = Antenna.where(list: lists, insert_feeds: true)
|
|
||||||
|
|
||||||
replied_accounts = statuses.filter_map(&:in_reply_to_account_id)
|
|
||||||
replied_accounts += statuses.filter { |status| status.limited_visibility? && status.thread.present? }.map { |status| status.thread.account_id }
|
|
||||||
|
|
||||||
crutches[:following] = Follow.where(account_id: receiver_id, target_account_id: replied_accounts).pluck(:target_account_id).index_with(true)
|
|
||||||
crutches[:languages] = Follow.where(account_id: receiver_id, target_account_id: statuses.map(&:account_id)).pluck(:target_account_id, :languages).to_h
|
crutches[:languages] = Follow.where(account_id: receiver_id, target_account_id: statuses.map(&:account_id)).pluck(:target_account_id, :languages).to_h
|
||||||
crutches[:hiding_reblogs] = Follow.where(account_id: receiver_id, target_account_id: statuses.filter_map { |s| s.account_id if s.reblog? }, show_reblogs: false).pluck(:target_account_id).index_with(true)
|
crutches[:hiding_reblogs] = Follow.where(account_id: receiver_id, target_account_id: statuses.filter_map { |s| s.account_id if s.reblog? }, show_reblogs: false).pluck(:target_account_id).index_with(true)
|
||||||
crutches[:blocking] = Block.where(account_id: receiver_id, target_account_id: check_for_blocks).pluck(:target_account_id).index_with(true)
|
crutches[:blocking] = Block.where(account_id: receiver_id, target_account_id: check_for_blocks).pluck(:target_account_id).index_with(true)
|
||||||
crutches[:muting] = Mute.where(account_id: receiver_id, target_account_id: check_for_blocks).pluck(:target_account_id).index_with(true)
|
crutches[:muting] = Mute.where(account_id: receiver_id, target_account_id: check_for_blocks).pluck(:target_account_id).index_with(true)
|
||||||
crutches[:domain_blocking] = AccountDomainBlock.where(account_id: receiver_id, domain: statuses.flat_map { |s| [s.account.domain, s.reblog&.account&.domain] }.compact).pluck(:domain).index_with(true)
|
crutches[:domain_blocking] = AccountDomainBlock.where(account_id: receiver_id, domain: statuses.flat_map { |s| [s.account.domain, s.reblog&.account&.domain] }.compact).pluck(:domain).index_with(true)
|
||||||
crutches[:blocked_by] = Block.where(target_account_id: receiver_id, account_id: statuses.map { |s| [s.account_id, s.reblog&.account_id] }.flatten.compact).pluck(:account_id).index_with(true)
|
crutches[:blocked_by] = Block.where(target_account_id: receiver_id, account_id: statuses.map { |s| [s.account_id, s.reblog&.account_id] }.flatten.compact).pluck(:account_id).index_with(true)
|
||||||
crutches[:exclusive_list_users] = ListAccount.where(list: lists, account_id: statuses.map(&:account_id)).pluck(:account_id).index_with(true)
|
crutches[:exclusive_list_users] = crutches_exclusive_list_users(receiver_id, statuses) if list.blank?
|
||||||
crutches[:exclusive_antenna_users] = AntennaAccount.where(antenna: antennas, account_id: statuses.map(&:account_id)).pluck(:account_id).index_with(true)
|
crutches[:exclusive_antenna_users] = crutches_exclusive_antenna_users(receiver_id, statuses)
|
||||||
|
|
||||||
crutches
|
crutches
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def crutches_exclusive_list_users(recipient_id, statuses)
|
||||||
|
lists = List.where(account_id: recipient_id, exclusive: true)
|
||||||
|
ListAccount.where(list: lists, account_id: statuses.map(&:account_id)).pluck(:account_id).index_with(true)
|
||||||
|
end
|
||||||
|
|
||||||
|
def crutches_exclusive_antenna_users(recipient_id, statuses)
|
||||||
|
lists = List.where(account_id: recipient_id, exclusive: true)
|
||||||
|
antennas = Antenna.where(list: lists, insert_feeds: true)
|
||||||
|
AntennaAccount.where(antenna: antennas, account_id: statuses.map(&:account_id)).pluck(:account_id).index_with(true)
|
||||||
|
end
|
||||||
|
|
||||||
|
def crutches_following(recipient_id, statuses, list)
|
||||||
|
if list.blank? || list.show_followed?
|
||||||
|
replied_accounts = statuses.filter_map(&:in_reply_to_account_id)
|
||||||
|
replied_accounts += statuses.filter { |status| status.limited_visibility? && status.thread.present? }.map { |status| status.thread.account_id }
|
||||||
|
|
||||||
|
Follow.where(account_id: recipient_id, target_account_id: replied_accounts).pluck(:target_account_id).index_with(true)
|
||||||
|
elsif list.show_list?
|
||||||
|
ListAccount.where(list_id: list.id, account_id: statuses.filter_map(&:in_reply_to_account_id)).pluck(:account_id).index_with(true)
|
||||||
|
else
|
||||||
|
{}
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
def crutches_active_mentions(statuses)
|
def crutches_active_mentions(statuses)
|
||||||
Mention
|
Mention
|
||||||
.active
|
.active
|
||||||
|
|
31
app/lib/http_signature_draft.rb
Normal file
31
app/lib/http_signature_draft.rb
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
# This implements an older draft of HTTP Signatures:
|
||||||
|
# https://datatracker.ietf.org/doc/html/draft-cavage-http-signatures
|
||||||
|
|
||||||
|
class HttpSignatureDraft
|
||||||
|
REQUEST_TARGET = '(request-target)'
|
||||||
|
|
||||||
|
def initialize(keypair, key_id, full_path: true)
|
||||||
|
@keypair = keypair
|
||||||
|
@key_id = key_id
|
||||||
|
@full_path = full_path
|
||||||
|
end
|
||||||
|
|
||||||
|
def request_target(verb, url)
|
||||||
|
if url.query.nil? || !@full_path
|
||||||
|
"#{verb} #{url.path}"
|
||||||
|
else
|
||||||
|
"#{verb} #{url.path}?#{url.query}"
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def sign(signed_headers, verb, url)
|
||||||
|
signed_headers = signed_headers.merge(REQUEST_TARGET => request_target(verb, url))
|
||||||
|
signed_string = signed_headers.map { |key, value| "#{key.downcase}: #{value}" }.join("\n")
|
||||||
|
algorithm = 'rsa-sha256'
|
||||||
|
signature = Base64.strict_encode64(@keypair.sign(OpenSSL::Digest.new('SHA256'), signed_string))
|
||||||
|
|
||||||
|
"keyId=\"#{@key_id}\",algorithm=\"#{algorithm}\",headers=\"#{signed_headers.keys.join(' ').downcase}\",signature=\"#{signature}\""
|
||||||
|
end
|
||||||
|
end
|
|
@ -61,8 +61,6 @@ class PerOperationWithDeadline < HTTP::Timeout::PerOperation
|
||||||
end
|
end
|
||||||
|
|
||||||
class Request
|
class Request
|
||||||
REQUEST_TARGET = '(request-target)'
|
|
||||||
|
|
||||||
# We enforce a 5s timeout on DNS resolving, 5s timeout on socket opening
|
# We enforce a 5s timeout on DNS resolving, 5s timeout on socket opening
|
||||||
# and 5s timeout on the TLS handshake, meaning the worst case should take
|
# and 5s timeout on the TLS handshake, meaning the worst case should take
|
||||||
# about 15s in total
|
# about 15s in total
|
||||||
|
@ -78,11 +76,21 @@ class Request
|
||||||
@http_client = options.delete(:http_client)
|
@http_client = options.delete(:http_client)
|
||||||
@allow_local = options.delete(:allow_local)
|
@allow_local = options.delete(:allow_local)
|
||||||
@full_path = !options.delete(:omit_query_string)
|
@full_path = !options.delete(:omit_query_string)
|
||||||
@options = options.merge(socket_class: use_proxy? || @allow_local ? ProxySocket : Socket)
|
@options = {
|
||||||
@options = @options.merge(timeout_class: PerOperationWithDeadline, timeout_options: TIMEOUT)
|
follow: {
|
||||||
|
max_hops: 3,
|
||||||
|
on_redirect: ->(response, request) { re_sign_on_redirect(response, request) },
|
||||||
|
},
|
||||||
|
}.merge(options).merge(
|
||||||
|
socket_class: use_proxy? || @allow_local ? ProxySocket : Socket,
|
||||||
|
timeout_class: PerOperationWithDeadline,
|
||||||
|
timeout_options: TIMEOUT
|
||||||
|
)
|
||||||
@options = @options.merge(proxy_url) if use_proxy?
|
@options = @options.merge(proxy_url) if use_proxy?
|
||||||
@headers = {}
|
@headers = {}
|
||||||
|
|
||||||
|
@signing = nil
|
||||||
|
|
||||||
raise Mastodon::HostValidationError, 'Instance does not support hidden service connections' if block_hidden_service?
|
raise Mastodon::HostValidationError, 'Instance does not support hidden service connections' if block_hidden_service?
|
||||||
|
|
||||||
set_common_headers!
|
set_common_headers!
|
||||||
|
@ -92,8 +100,9 @@ class Request
|
||||||
def on_behalf_of(actor, sign_with: nil)
|
def on_behalf_of(actor, sign_with: nil)
|
||||||
raise ArgumentError, 'actor must not be nil' if actor.nil?
|
raise ArgumentError, 'actor must not be nil' if actor.nil?
|
||||||
|
|
||||||
@actor = actor
|
key_id = ActivityPub::TagManager.instance.key_uri_for(actor)
|
||||||
@keypair = sign_with.present? ? OpenSSL::PKey::RSA.new(sign_with) : @actor.keypair
|
keypair = sign_with.present? ? OpenSSL::PKey::RSA.new(sign_with) : actor.keypair
|
||||||
|
@signing = HttpSignatureDraft.new(keypair, key_id, full_path: @full_path)
|
||||||
|
|
||||||
self
|
self
|
||||||
end
|
end
|
||||||
|
@ -125,7 +134,7 @@ class Request
|
||||||
end
|
end
|
||||||
|
|
||||||
def headers
|
def headers
|
||||||
(@actor ? @headers.merge('Signature' => signature) : @headers).without(REQUEST_TARGET)
|
(@signing ? @headers.merge('Signature' => signature) : @headers)
|
||||||
end
|
end
|
||||||
|
|
||||||
class << self
|
class << self
|
||||||
|
@ -140,14 +149,13 @@ class Request
|
||||||
end
|
end
|
||||||
|
|
||||||
def http_client
|
def http_client
|
||||||
HTTP.use(:auto_inflate).follow(max_hops: 3)
|
HTTP.use(:auto_inflate)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
def set_common_headers!
|
def set_common_headers!
|
||||||
@headers[REQUEST_TARGET] = request_target
|
|
||||||
@headers['User-Agent'] = Mastodon::Version.user_agent
|
@headers['User-Agent'] = Mastodon::Version.user_agent
|
||||||
@headers['Host'] = @url.host
|
@headers['Host'] = @url.host
|
||||||
@headers['Date'] = Time.now.utc.httpdate
|
@headers['Date'] = Time.now.utc.httpdate
|
||||||
|
@ -158,31 +166,28 @@ class Request
|
||||||
@headers['Digest'] = "SHA-256=#{Digest::SHA256.base64digest(@options[:body])}"
|
@headers['Digest'] = "SHA-256=#{Digest::SHA256.base64digest(@options[:body])}"
|
||||||
end
|
end
|
||||||
|
|
||||||
def request_target
|
|
||||||
if @url.query.nil? || !@full_path
|
|
||||||
"#{@verb} #{@url.path}"
|
|
||||||
else
|
|
||||||
"#{@verb} #{@url.path}?#{@url.query}"
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
def signature
|
def signature
|
||||||
algorithm = 'rsa-sha256'
|
@signing.sign(@headers.without('User-Agent', 'Accept-Encoding'), @verb, @url)
|
||||||
signature = Base64.strict_encode64(@keypair.sign(OpenSSL::Digest.new('SHA256'), signed_string))
|
|
||||||
|
|
||||||
"keyId=\"#{key_id}\",algorithm=\"#{algorithm}\",headers=\"#{signed_headers.keys.join(' ').downcase}\",signature=\"#{signature}\""
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def signed_string
|
def re_sign_on_redirect(_response, request)
|
||||||
signed_headers.map { |key, value| "#{key.downcase}: #{value}" }.join("\n")
|
# Delete existing signature if there is one, since it will be invalid
|
||||||
end
|
request.headers.delete('Signature')
|
||||||
|
|
||||||
def signed_headers
|
return unless @signing.present? && @verb == :get
|
||||||
@headers.without('User-Agent', 'Accept-Encoding')
|
|
||||||
end
|
|
||||||
|
|
||||||
def key_id
|
signed_headers = request.headers.to_h.slice(*@headers.keys)
|
||||||
ActivityPub::TagManager.instance.key_uri_for(@actor)
|
unless @headers.keys.all? { |key| signed_headers.key?(key) }
|
||||||
|
# We have lost some headers in the process, so don't sign the new
|
||||||
|
# request, in order to avoid issuing a valid signature with fewer
|
||||||
|
# conditions than expected.
|
||||||
|
|
||||||
|
Rails.logger.warn { "Some headers (#{@headers.keys - signed_headers.keys}) have been lost on redirect from {@uri} to #{request.uri}, this should not happen. Skipping signatures" }
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
signature_value = @signing.sign(signed_headers.without('User-Agent', 'Accept-Encoding'), @verb, Addressable::URI.parse(request.uri))
|
||||||
|
request.headers['Signature'] = signature_value
|
||||||
end
|
end
|
||||||
|
|
||||||
def http_client
|
def http_client
|
||||||
|
|
|
@ -28,6 +28,7 @@ class List < ApplicationRecord
|
||||||
has_many :antennas, inverse_of: :list, dependent: :destroy
|
has_many :antennas, inverse_of: :list, dependent: :destroy
|
||||||
has_many :list_statuses, inverse_of: :list, dependent: :destroy
|
has_many :list_statuses, inverse_of: :list, dependent: :destroy
|
||||||
has_many :statuses, through: :list_statuses
|
has_many :statuses, through: :list_statuses
|
||||||
|
has_many :active_accounts, -> { merge(ListAccount.active) }, through: :list_accounts, source: :account
|
||||||
|
|
||||||
validates :title, presence: true
|
validates :title, presence: true
|
||||||
|
|
||||||
|
|
|
@ -20,6 +20,8 @@ class ListAccount < ApplicationRecord
|
||||||
validates :account_id, uniqueness: { scope: :list_id }
|
validates :account_id, uniqueness: { scope: :list_id }
|
||||||
validate :validate_relationship
|
validate :validate_relationship
|
||||||
|
|
||||||
|
scope :active, -> { where.not(follow_id: nil) }
|
||||||
|
|
||||||
before_validation :set_follow, unless: :list_owner_account_is_account?
|
before_validation :set_follow, unless: :list_owner_account_is_account?
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
|
@ -129,6 +129,7 @@ class Notification < ApplicationRecord
|
||||||
validates :type, inclusion: { in: TYPES }
|
validates :type, inclusion: { in: TYPES }
|
||||||
|
|
||||||
scope :without_suspended, -> { joins(:from_account).merge(Account.without_suspended) }
|
scope :without_suspended, -> { joins(:from_account).merge(Account.without_suspended) }
|
||||||
|
scope :by_group_key, ->(group_key) { group_key&.start_with?('ungrouped-') ? where(id: group_key.delete_prefix('ungrouped-')) : where(group_key: group_key) }
|
||||||
|
|
||||||
def type
|
def type
|
||||||
@type ||= (super || LEGACY_TYPE_CLASS_MAP[activity_type]).to_sym
|
@type ||= (super || LEGACY_TYPE_CLASS_MAP[activity_type]).to_sym
|
||||||
|
|
|
@ -37,7 +37,8 @@ class Poll < ApplicationRecord
|
||||||
|
|
||||||
validates :options, presence: true
|
validates :options, presence: true
|
||||||
validates :expires_at, presence: true, if: :local?
|
validates :expires_at, presence: true, if: :local?
|
||||||
validates_with PollValidator, on: :create, if: :local?
|
validates_with PollOptionsValidator, if: :local?
|
||||||
|
validates_with PollExpirationValidator, if: -> { local? && expires_at_changed? }
|
||||||
|
|
||||||
scope :attached, -> { where.not(status_id: nil) }
|
scope :attached, -> { where.not(status_id: nil) }
|
||||||
scope :unattached, -> { where(status_id: nil) }
|
scope :unattached, -> { where(status_id: nil) }
|
||||||
|
|
|
@ -147,6 +147,10 @@ class UserRole < ApplicationRecord
|
||||||
other_role.nil? || position > other_role.position
|
other_role.nil? || position > other_role.position
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def bypass_block?(role)
|
||||||
|
overrides?(role) && highlighted? && can?(*Flags::CATEGORIES[:moderation])
|
||||||
|
end
|
||||||
|
|
||||||
def computed_permissions
|
def computed_permissions
|
||||||
# If called on the everyone role, no further computation needed
|
# If called on the everyone role, no further computation needed
|
||||||
return permissions if everyone?
|
return permissions if everyone?
|
||||||
|
|
|
@ -90,10 +90,10 @@ class REST::InstanceSerializer < ActiveModel::Serializer
|
||||||
},
|
},
|
||||||
|
|
||||||
polls: {
|
polls: {
|
||||||
max_options: PollValidator::MAX_OPTIONS,
|
max_options: PollOptionsValidator::MAX_OPTIONS,
|
||||||
max_characters_per_option: PollValidator::MAX_OPTION_CHARS,
|
max_characters_per_option: PollOptionsValidator::MAX_OPTION_CHARS,
|
||||||
min_expiration: PollValidator::MIN_EXPIRATION,
|
min_expiration: PollExpirationValidator::MIN_EXPIRATION,
|
||||||
max_expiration: PollValidator::MAX_EXPIRATION,
|
max_expiration: PollExpirationValidator::MAX_EXPIRATION,
|
||||||
allow_image: true,
|
allow_image: true,
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -82,10 +82,10 @@ class REST::V1::InstanceSerializer < ActiveModel::Serializer
|
||||||
},
|
},
|
||||||
|
|
||||||
polls: {
|
polls: {
|
||||||
max_options: PollValidator::MAX_OPTIONS,
|
max_options: PollOptionsValidator::MAX_OPTIONS,
|
||||||
max_characters_per_option: PollValidator::MAX_OPTION_CHARS,
|
max_characters_per_option: PollOptionsValidator::MAX_OPTION_CHARS,
|
||||||
min_expiration: PollValidator::MIN_EXPIRATION,
|
min_expiration: PollExpirationValidator::MIN_EXPIRATION,
|
||||||
max_expiration: PollValidator::MAX_EXPIRATION,
|
max_expiration: PollExpirationValidator::MAX_EXPIRATION,
|
||||||
allow_image: true,
|
allow_image: true,
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -253,7 +253,26 @@ class ActivityPub::ProcessStatusUpdateService < BaseService
|
||||||
end
|
end
|
||||||
|
|
||||||
def update_tags!
|
def update_tags!
|
||||||
@status.tags = Tag.find_or_create_by_names(@raw_tags)
|
previous_tags = @status.tags.to_a
|
||||||
|
current_tags = @status.tags = Tag.find_or_create_by_names(@raw_tags)
|
||||||
|
|
||||||
|
return unless @status.distributable?
|
||||||
|
|
||||||
|
added_tags = current_tags - previous_tags
|
||||||
|
|
||||||
|
unless added_tags.empty?
|
||||||
|
@account.featured_tags.where(tag_id: added_tags.pluck(:id)).find_each do |featured_tag|
|
||||||
|
featured_tag.increment(@status.created_at)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
removed_tags = previous_tags - current_tags
|
||||||
|
|
||||||
|
unless removed_tags.empty?
|
||||||
|
@account.featured_tags.where(tag_id: removed_tags.pluck(:id)).find_each do |featured_tag|
|
||||||
|
featured_tag.decrement(@status)
|
||||||
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def update_mentions!
|
def update_mentions!
|
||||||
|
@ -275,7 +294,7 @@ class ActivityPub::ProcessStatusUpdateService < BaseService
|
||||||
nil
|
nil
|
||||||
end
|
end
|
||||||
|
|
||||||
@status.mentions.upsert_all(currently_mentioned_account_ids.map { |id| { account_id: id, silent: false } }, unique_by: %w(status_id account_id))
|
@status.mentions.upsert_all(currently_mentioned_account_ids.uniq.map { |id| { account_id: id, silent: false } }, unique_by: %w(status_id account_id))
|
||||||
|
|
||||||
# If previous mentions are no longer contained in the text, convert them
|
# If previous mentions are no longer contained in the text, convert them
|
||||||
# to silent mentions, since withdrawing access from someone who already
|
# to silent mentions, since withdrawing access from someone who already
|
||||||
|
|
|
@ -35,6 +35,7 @@ class NotifyService < BaseService
|
||||||
@sender = notification.from_account
|
@sender = notification.from_account
|
||||||
@notification = notification
|
@notification = notification
|
||||||
@policy = NotificationPolicy.find_or_initialize_by(account: @recipient)
|
@policy = NotificationPolicy.find_or_initialize_by(account: @recipient)
|
||||||
|
@from_staff = @sender.local? && @sender.user.present? && @sender.user_role&.bypass_block?(@recipient.user_role)
|
||||||
end
|
end
|
||||||
|
|
||||||
private
|
private
|
||||||
|
@ -64,6 +65,14 @@ class NotifyService < BaseService
|
||||||
@sender.silenced? && not_following?
|
@sender.silenced? && not_following?
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def message?
|
||||||
|
@notification.type == :mention
|
||||||
|
end
|
||||||
|
|
||||||
|
def from_staff?
|
||||||
|
@from_staff
|
||||||
|
end
|
||||||
|
|
||||||
def private_mention_not_in_response?
|
def private_mention_not_in_response?
|
||||||
@notification.type == :mention && @notification.target_status.direct_visibility? && !response_to_recipient?
|
@notification.type == :mention && @notification.target_status.direct_visibility? && !response_to_recipient?
|
||||||
end
|
end
|
||||||
|
@ -130,14 +139,6 @@ class NotifyService < BaseService
|
||||||
FeedManager.instance.filter?(:mentions, @notification.target_status, @recipient)
|
FeedManager.instance.filter?(:mentions, @notification.target_status, @recipient)
|
||||||
end
|
end
|
||||||
|
|
||||||
def message?
|
|
||||||
@notification.type == :mention
|
|
||||||
end
|
|
||||||
|
|
||||||
def from_staff?
|
|
||||||
@sender.local? && @sender.user.present? && @sender.user_role&.overrides?(@recipient.user_role) && @sender.user_role&.highlighted? && @sender.user_role&.can?(*UserRole::Flags::CATEGORIES[:moderation])
|
|
||||||
end
|
|
||||||
|
|
||||||
def from_self?
|
def from_self?
|
||||||
@recipient.id == @sender.id
|
@recipient.id == @sender.id
|
||||||
end
|
end
|
||||||
|
@ -175,6 +176,7 @@ class NotifyService < BaseService
|
||||||
def filter?
|
def filter?
|
||||||
return false unless filterable_type?
|
return false unless filterable_type?
|
||||||
return false if override_for_sender?
|
return false if override_for_sender?
|
||||||
|
return false if message? && from_staff?
|
||||||
|
|
||||||
filtered_by_limited_accounts_policy? ||
|
filtered_by_limited_accounts_policy? ||
|
||||||
filtered_by_not_following_policy? ||
|
filtered_by_not_following_policy? ||
|
||||||
|
|
|
@ -5,6 +5,10 @@ class PrecomputeFeedService < BaseService
|
||||||
|
|
||||||
def call(account)
|
def call(account)
|
||||||
FeedManager.instance.populate_home(account)
|
FeedManager.instance.populate_home(account)
|
||||||
|
|
||||||
|
account.owned_lists.each do |list|
|
||||||
|
FeedManager.instance.populate_list(list)
|
||||||
|
end
|
||||||
ensure
|
ensure
|
||||||
redis.del("account:#{account.id}:regeneration")
|
redis.del("account:#{account.id}:regeneration")
|
||||||
end
|
end
|
||||||
|
|
13
app/validators/poll_expiration_validator.rb
Normal file
13
app/validators/poll_expiration_validator.rb
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
class PollExpirationValidator < ActiveModel::Validator
|
||||||
|
MAX_EXPIRATION = 1.month.freeze
|
||||||
|
MIN_EXPIRATION = 5.minutes.freeze
|
||||||
|
|
||||||
|
def validate(poll)
|
||||||
|
current_time = Time.now.utc
|
||||||
|
|
||||||
|
poll.errors.add(:expires_at, I18n.t('polls.errors.duration_too_long')) if poll.expires_at.nil? || poll.expires_at - current_time > MAX_EXPIRATION
|
||||||
|
poll.errors.add(:expires_at, I18n.t('polls.errors.duration_too_short')) if poll.expires_at.present? && (poll.expires_at - current_time).ceil < MIN_EXPIRATION
|
||||||
|
end
|
||||||
|
end
|
|
@ -1,19 +1,13 @@
|
||||||
# frozen_string_literal: true
|
# frozen_string_literal: true
|
||||||
|
|
||||||
class PollValidator < ActiveModel::Validator
|
class PollOptionsValidator < ActiveModel::Validator
|
||||||
MAX_OPTIONS = 8
|
MAX_OPTIONS = 8
|
||||||
MAX_OPTION_CHARS = 50
|
MAX_OPTION_CHARS = 50
|
||||||
MAX_EXPIRATION = 1.month.freeze
|
|
||||||
MIN_EXPIRATION = 5.minutes.freeze
|
|
||||||
|
|
||||||
def validate(poll)
|
def validate(poll)
|
||||||
current_time = Time.now.utc
|
|
||||||
|
|
||||||
poll.errors.add(:options, I18n.t('polls.errors.too_few_options')) unless poll.options.size > 1
|
poll.errors.add(:options, I18n.t('polls.errors.too_few_options')) unless poll.options.size > 1
|
||||||
poll.errors.add(:options, I18n.t('polls.errors.too_many_options', max: MAX_OPTIONS)) if poll.options.size > MAX_OPTIONS
|
poll.errors.add(:options, I18n.t('polls.errors.too_many_options', max: MAX_OPTIONS)) if poll.options.size > MAX_OPTIONS
|
||||||
poll.errors.add(:options, I18n.t('polls.errors.over_character_limit', max: MAX_OPTION_CHARS)) if poll.options.any? { |option| option.mb_chars.grapheme_length > MAX_OPTION_CHARS }
|
poll.errors.add(:options, I18n.t('polls.errors.over_character_limit', max: MAX_OPTION_CHARS)) if poll.options.any? { |option| option.mb_chars.grapheme_length > MAX_OPTION_CHARS }
|
||||||
poll.errors.add(:options, I18n.t('polls.errors.duplicate_options')) unless poll.options.uniq.size == poll.options.size
|
poll.errors.add(:options, I18n.t('polls.errors.duplicate_options')) unless poll.options.uniq.size == poll.options.size
|
||||||
poll.errors.add(:expires_at, I18n.t('polls.errors.duration_too_long')) if poll.expires_at.nil? || poll.expires_at - current_time > MAX_EXPIRATION
|
|
||||||
poll.errors.add(:expires_at, I18n.t('polls.errors.duration_too_short')) if poll.expires_at.present? && (poll.expires_at - current_time).ceil < MIN_EXPIRATION
|
|
||||||
end
|
end
|
||||||
end
|
end
|
|
@ -28,7 +28,7 @@ class FeedInsertWorker
|
||||||
check_and_insert
|
check_and_insert
|
||||||
end
|
end
|
||||||
|
|
||||||
perform_notify_for_list if !feed_filtered? && notify_for_list?
|
perform_notify_for_list if !feed_filter && notify_for_list?
|
||||||
rescue ActiveRecord::RecordNotFound
|
rescue ActiveRecord::RecordNotFound
|
||||||
true
|
true
|
||||||
end
|
end
|
||||||
|
@ -36,27 +36,31 @@ class FeedInsertWorker
|
||||||
private
|
private
|
||||||
|
|
||||||
def check_and_insert
|
def check_and_insert
|
||||||
if feed_filtered?
|
filter_result = feed_filter
|
||||||
|
|
||||||
|
if filter_result
|
||||||
perform_unpush if update?
|
perform_unpush if update?
|
||||||
else
|
else
|
||||||
perform_push
|
perform_push
|
||||||
perform_notify if notify?
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
perform_notify if notify?(filter_result)
|
||||||
end
|
end
|
||||||
|
|
||||||
def feed_filtered?
|
def feed_filter
|
||||||
case @type
|
case @type
|
||||||
when :home, :antenna
|
when :home, :antenna
|
||||||
FeedManager.instance.filter?(:home, @status, @follower)
|
FeedManager.instance.filter(:home, @status, @follower)
|
||||||
when :tags
|
when :tags
|
||||||
FeedManager.instance.filter?(:tags, @status, @follower)
|
FeedManager.instance.filter(:tags, @status, @follower)
|
||||||
when :list
|
when :list
|
||||||
FeedManager.instance.filter?(:list, @status, @list, stl_home: stl_home?)
|
FeedManager.instance.filter(:list, @status, @list, stl_home: stl_home?)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def notify?
|
def notify?(filter_result)
|
||||||
return false if @type != :home || @status.reblog? || (@status.reply? && @status.in_reply_to_account_id != @status.account_id)
|
return false if @type != :home || @status.reblog? || (@status.reply? && @status.in_reply_to_account_id != @status.account_id) ||
|
||||||
|
filter_result == :filter
|
||||||
|
|
||||||
Follow.find_by(account: @follower, target_account: @status.account)&.notify?
|
Follow.find_by(account: @follower, target_account: @status.account)&.notify?
|
||||||
end
|
end
|
||||||
|
|
|
@ -122,7 +122,7 @@ class Rack::Attack
|
||||||
end
|
end
|
||||||
|
|
||||||
throttle('throttle_email_confirmations/ip', limit: 25, period: 5.minutes) do |req|
|
throttle('throttle_email_confirmations/ip', limit: 25, period: 5.minutes) do |req|
|
||||||
req.throttleable_remote_ip if req.post? && (req.path_matches?('/auth/confirmation') || req.path == '/api/v1/emails/confirmations')
|
req.throttleable_remote_ip if (req.post? && (req.path_matches?('/auth/confirmation') || req.path == '/api/v1/emails/confirmations')) || ((req.put? || req.patch?) && req.path_matches?('/auth/setup'))
|
||||||
end
|
end
|
||||||
|
|
||||||
throttle('throttle_email_confirmations/email', limit: 5, period: 30.minutes) do |req|
|
throttle('throttle_email_confirmations/email', limit: 5, period: 30.minutes) do |req|
|
||||||
|
@ -133,6 +133,14 @@ class Rack::Attack
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
throttle('throttle_auth_setup/email', limit: 5, period: 10.minutes) do |req|
|
||||||
|
req.params.dig('user', 'email').presence if (req.put? || req.patch?) && req.path_matches?('/auth/setup')
|
||||||
|
end
|
||||||
|
|
||||||
|
throttle('throttle_auth_setup/account', limit: 5, period: 10.minutes) do |req|
|
||||||
|
req.warden_user_id if (req.put? || req.patch?) && req.path_matches?('/auth/setup')
|
||||||
|
end
|
||||||
|
|
||||||
throttle('throttle_login_attempts/ip', limit: 25, period: 5.minutes) do |req|
|
throttle('throttle_login_attempts/ip', limit: 25, period: 5.minutes) do |req|
|
||||||
req.throttleable_remote_ip if req.post? && req.path_matches?('/auth/sign_in')
|
req.throttleable_remote_ip if req.post? && req.path_matches?('/auth/sign_in')
|
||||||
end
|
end
|
||||||
|
|
|
@ -15,6 +15,9 @@ ar:
|
||||||
user/invite_request:
|
user/invite_request:
|
||||||
text: الغرض
|
text: الغرض
|
||||||
errors:
|
errors:
|
||||||
|
attributes:
|
||||||
|
domain:
|
||||||
|
invalid: ليس بإسم نطاق صالح
|
||||||
models:
|
models:
|
||||||
account:
|
account:
|
||||||
attributes:
|
attributes:
|
||||||
|
|
1
config/locales/activerecord.az.yml
Normal file
1
config/locales/activerecord.az.yml
Normal file
|
@ -0,0 +1 @@
|
||||||
|
az:
|
|
@ -15,6 +15,12 @@ cs:
|
||||||
user/invite_request:
|
user/invite_request:
|
||||||
text: Důvod
|
text: Důvod
|
||||||
errors:
|
errors:
|
||||||
|
attributes:
|
||||||
|
domain:
|
||||||
|
invalid: není platný název domény
|
||||||
|
messages:
|
||||||
|
invalid_domain_on_line: "%{value} není platný název domény"
|
||||||
|
too_many_lines: překročil limit %{limit} řádků
|
||||||
models:
|
models:
|
||||||
account:
|
account:
|
||||||
attributes:
|
attributes:
|
||||||
|
|
|
@ -15,6 +15,12 @@ eu:
|
||||||
user/invite_request:
|
user/invite_request:
|
||||||
text: Arrazoia
|
text: Arrazoia
|
||||||
errors:
|
errors:
|
||||||
|
attributes:
|
||||||
|
domain:
|
||||||
|
invalid: ez da domeinu izen baliogarria
|
||||||
|
messages:
|
||||||
|
invalid_domain_on_line: "%{value} ez da domeinu izen baliogarria"
|
||||||
|
too_many_lines: "%{limit} lerroko muga gainditzen du"
|
||||||
models:
|
models:
|
||||||
account:
|
account:
|
||||||
attributes:
|
attributes:
|
||||||
|
|
16
config/locales/activerecord.nan.yml
Normal file
16
config/locales/activerecord.nan.yml
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
---
|
||||||
|
nan:
|
||||||
|
activerecord:
|
||||||
|
attributes:
|
||||||
|
poll:
|
||||||
|
expires_at: 期限
|
||||||
|
options: 選項
|
||||||
|
user:
|
||||||
|
agreement: 服務協議
|
||||||
|
email: 電子phue地址
|
||||||
|
locale: 在地化
|
||||||
|
password: 密碼
|
||||||
|
user/account:
|
||||||
|
username: 用者ê名
|
||||||
|
user/invite_request:
|
||||||
|
text: 原因
|
|
@ -1 +1,31 @@
|
||||||
|
---
|
||||||
ne:
|
ne:
|
||||||
|
activerecord:
|
||||||
|
attributes:
|
||||||
|
user:
|
||||||
|
agreement: सेवा सम्झौता
|
||||||
|
email: ईमेल ठेगाना
|
||||||
|
password: पासवर्ड
|
||||||
|
user/account:
|
||||||
|
username: प्रयोगकर्ता नाम
|
||||||
|
user/invite_request:
|
||||||
|
text: कारण
|
||||||
|
errors:
|
||||||
|
attributes:
|
||||||
|
domain:
|
||||||
|
invalid: मान्य डोमेन नाम होइन
|
||||||
|
messages:
|
||||||
|
invalid_domain_on_line: "%{value} मान्य डोमेन नाम होइन"
|
||||||
|
models:
|
||||||
|
account:
|
||||||
|
attributes:
|
||||||
|
username:
|
||||||
|
invalid: अक्षर, संख्या र अन्डरस्कोर मात्र हुनु पर्छ
|
||||||
|
admin/webhook:
|
||||||
|
attributes:
|
||||||
|
url:
|
||||||
|
invalid: मान्य URL होइन
|
||||||
|
doorkeeper/application:
|
||||||
|
attributes:
|
||||||
|
website:
|
||||||
|
invalid: मान्य URL होइन
|
||||||
|
|
|
@ -15,6 +15,9 @@
|
||||||
user/invite_request:
|
user/invite_request:
|
||||||
text: Årsak
|
text: Årsak
|
||||||
errors:
|
errors:
|
||||||
|
attributes:
|
||||||
|
domain:
|
||||||
|
invalid: er ikke et gyldig domenenavn
|
||||||
models:
|
models:
|
||||||
account:
|
account:
|
||||||
attributes:
|
attributes:
|
||||||
|
|
|
@ -7,7 +7,7 @@ pt-PT:
|
||||||
options: Escolhas
|
options: Escolhas
|
||||||
user:
|
user:
|
||||||
agreement: Contrato de prestação de serviço
|
agreement: Contrato de prestação de serviço
|
||||||
email: Endereço de correio electrónico
|
email: Endereço de e-mail
|
||||||
locale: Região
|
locale: Região
|
||||||
password: Palavra-passe
|
password: Palavra-passe
|
||||||
user/account:
|
user/account:
|
||||||
|
@ -15,11 +15,17 @@ pt-PT:
|
||||||
user/invite_request:
|
user/invite_request:
|
||||||
text: Motivo
|
text: Motivo
|
||||||
errors:
|
errors:
|
||||||
|
attributes:
|
||||||
|
domain:
|
||||||
|
invalid: não é um nome de domínio válido
|
||||||
|
messages:
|
||||||
|
invalid_domain_on_line: "%{value} não é um nome de domínio válido"
|
||||||
|
too_many_lines: está acima do limite de %{limit} linhas
|
||||||
models:
|
models:
|
||||||
account:
|
account:
|
||||||
attributes:
|
attributes:
|
||||||
username:
|
username:
|
||||||
invalid: deve conter apenas letras, números e traços inferiores
|
invalid: deve conter apenas letras, números e traços inferiores (_)
|
||||||
reserved: está reservado
|
reserved: está reservado
|
||||||
admin/webhook:
|
admin/webhook:
|
||||||
attributes:
|
attributes:
|
||||||
|
|
|
@ -15,6 +15,9 @@ sl:
|
||||||
user/invite_request:
|
user/invite_request:
|
||||||
text: Razlog
|
text: Razlog
|
||||||
errors:
|
errors:
|
||||||
|
attributes:
|
||||||
|
domain:
|
||||||
|
invalid: ni veljavno ime domene
|
||||||
models:
|
models:
|
||||||
account:
|
account:
|
||||||
attributes:
|
attributes:
|
||||||
|
|
|
@ -49,16 +49,16 @@ zh-CN:
|
||||||
blocked: 使用了被封禁的电子邮件提供商
|
blocked: 使用了被封禁的电子邮件提供商
|
||||||
unreachable: 似乎不存在
|
unreachable: 似乎不存在
|
||||||
role_id:
|
role_id:
|
||||||
elevated: 不能高于你现在的身份
|
elevated: 不能高于你目前所处角色拥有的权限
|
||||||
user_role:
|
user_role:
|
||||||
attributes:
|
attributes:
|
||||||
permissions_as_keys:
|
permissions_as_keys:
|
||||||
dangerous: 包含对基本角色不安全的权限
|
dangerous: 包含对基本角色不安全的权限
|
||||||
elevated: 不能包含你当前身份未有的权限
|
elevated: 不能包含你当前身份未有的权限
|
||||||
own_role: 无权以你当前的身份更改
|
own_role: 你当前的角色无权执行此更改
|
||||||
position:
|
position:
|
||||||
elevated: 不能高于你当前的角色
|
elevated: 不能高于你当前的角色
|
||||||
own_role: 无权以你当前的身份更改
|
own_role: 你当前的角色无权执行此更改
|
||||||
webhook:
|
webhook:
|
||||||
attributes:
|
attributes:
|
||||||
events:
|
events:
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue