|
@ -0,0 +1,21 @@
|
||||||
|
{
|
||||||
|
"problemMatcher": [
|
||||||
|
{
|
||||||
|
"owner": "stylelint",
|
||||||
|
"pattern": [
|
||||||
|
{
|
||||||
|
"regexp": "^([^\\s].*)$",
|
||||||
|
"file": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"regexp": "^\\s+((\\d+):(\\d+))?\\s+(✖|×)\\s+(.*)\\s{2,}(.*)$",
|
||||||
|
"line": 2,
|
||||||
|
"column": 3,
|
||||||
|
"message": 5,
|
||||||
|
"code": 6,
|
||||||
|
"loop": true
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
|
@ -1,43 +0,0 @@
|
||||||
name: Build container image
|
|
||||||
on:
|
|
||||||
workflow_dispatch:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- 'main'
|
|
||||||
tags:
|
|
||||||
- '*'
|
|
||||||
pull_request:
|
|
||||||
paths:
|
|
||||||
- .github/workflows/build-image.yml
|
|
||||||
- Dockerfile
|
|
||||||
jobs:
|
|
||||||
build-image:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
- uses: docker/setup-qemu-action@v1
|
|
||||||
- uses: docker/setup-buildx-action@v1
|
|
||||||
- uses: docker/login-action@v1
|
|
||||||
with:
|
|
||||||
registry: ghcr.io
|
|
||||||
username: ${{ github.repository_owner }}
|
|
||||||
password: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
if: github.event_name != 'pull_request'
|
|
||||||
- uses: docker/metadata-action@v3
|
|
||||||
id: meta
|
|
||||||
with:
|
|
||||||
images: ghcr.io/${{ github.repository_owner }}/mastodon
|
|
||||||
flavor: |
|
|
||||||
latest=true
|
|
||||||
tags: |
|
|
||||||
type=edge,branch=main
|
|
||||||
type=match,pattern=v(.*),group=0
|
|
||||||
type=ref,event=pr
|
|
||||||
- uses: docker/build-push-action@v2
|
|
||||||
with:
|
|
||||||
context: .
|
|
||||||
platforms: linux/amd64,linux/arm64
|
|
||||||
push: ${{ github.event_name != 'pull_request' }}
|
|
||||||
tags: ${{ steps.meta.outputs.tags }}
|
|
||||||
cache-from: type=registry,ref=ghcr.io/${{ github.repository_owner }}/mastodon:latest
|
|
||||||
cache-to: type=inline
|
|
|
@ -14,7 +14,7 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
- name: Install system dependencies
|
- name: Install system dependencies
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
|
|
|
@ -50,8 +50,19 @@ jobs:
|
||||||
# Full git history is needed to get a proper list of changed files within `super-linter`
|
# Full git history is needed to get a proper list of changed files within `super-linter`
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
|
- name: Set-up Node.js
|
||||||
|
uses: actions/setup-node@v3
|
||||||
|
with:
|
||||||
|
node-version: 16.x
|
||||||
|
cache: yarn
|
||||||
- name: Intall dependencies
|
- name: Intall dependencies
|
||||||
run: yarn install --frozen-lockfile
|
run: yarn install --frozen-lockfile
|
||||||
|
- name: Set-up RuboCop Problem Mathcher
|
||||||
|
uses: r7kamura/rubocop-problem-matchers-action@v1
|
||||||
|
- name: Set-up Stylelint Problem Matcher
|
||||||
|
uses: xt0rted/stylelint-problem-matcher@v1
|
||||||
|
# https://github.com/xt0rted/stylelint-problem-matcher/issues/360
|
||||||
|
- run: echo "::add-matcher::.github/stylelint-matcher.json"
|
||||||
|
|
||||||
################################
|
################################
|
||||||
# Run Linter against code base #
|
# Run Linter against code base #
|
||||||
|
@ -61,6 +72,7 @@ jobs:
|
||||||
env:
|
env:
|
||||||
CSS_FILE_NAME: stylelint.config.js
|
CSS_FILE_NAME: stylelint.config.js
|
||||||
DEFAULT_BRANCH: main
|
DEFAULT_BRANCH: main
|
||||||
|
NO_COLOR: 1 # https://github.com/xt0rted/stylelint-problem-matcher/issues/360
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
JAVASCRIPT_ES_CONFIG_FILE: .eslintrc.js
|
JAVASCRIPT_ES_CONFIG_FILE: .eslintrc.js
|
||||||
LINTER_RULES_PATH: .
|
LINTER_RULES_PATH: .
|
||||||
|
|
4
Gemfile
|
@ -26,7 +26,7 @@ gem 'blurhash', '~> 0.1'
|
||||||
|
|
||||||
gem 'active_model_serializers', '~> 0.10'
|
gem 'active_model_serializers', '~> 0.10'
|
||||||
gem 'addressable', '~> 2.8'
|
gem 'addressable', '~> 2.8'
|
||||||
gem 'bootsnap', '~> 1.11.1', require: false
|
gem 'bootsnap', '~> 1.12.0', require: false
|
||||||
gem 'browser'
|
gem 'browser'
|
||||||
gem 'charlock_holmes', '~> 0.7.7'
|
gem 'charlock_holmes', '~> 0.7.7'
|
||||||
gem 'chewy', '~> 7.2'
|
gem 'chewy', '~> 7.2'
|
||||||
|
@ -135,7 +135,7 @@ group :development do
|
||||||
gem 'letter_opener_web', '~> 2.0'
|
gem 'letter_opener_web', '~> 2.0'
|
||||||
gem 'memory_profiler'
|
gem 'memory_profiler'
|
||||||
gem 'rubocop', '~> 1.30', require: false
|
gem 'rubocop', '~> 1.30', require: false
|
||||||
gem 'rubocop-rails', '~> 2.14', require: false
|
gem 'rubocop-rails', '~> 2.15', require: false
|
||||||
gem 'brakeman', '~> 5.2', require: false
|
gem 'brakeman', '~> 5.2', require: false
|
||||||
gem 'bundler-audit', '~> 0.9', require: false
|
gem 'bundler-audit', '~> 0.9', require: false
|
||||||
|
|
||||||
|
|
32
Gemfile.lock
|
@ -114,7 +114,7 @@ GEM
|
||||||
debug_inspector (>= 0.0.1)
|
debug_inspector (>= 0.0.1)
|
||||||
blurhash (0.1.6)
|
blurhash (0.1.6)
|
||||||
ffi (~> 1.14)
|
ffi (~> 1.14)
|
||||||
bootsnap (1.11.1)
|
bootsnap (1.12.0)
|
||||||
msgpack (~> 1.2)
|
msgpack (~> 1.2)
|
||||||
brakeman (5.2.3)
|
brakeman (5.2.3)
|
||||||
browser (4.2.0)
|
browser (4.2.0)
|
||||||
|
@ -122,7 +122,7 @@ GEM
|
||||||
concurrent-ruby (~> 1.0, >= 1.0.5)
|
concurrent-ruby (~> 1.0, >= 1.0.5)
|
||||||
redis (>= 1.0, <= 5.0)
|
redis (>= 1.0, <= 5.0)
|
||||||
builder (3.2.4)
|
builder (3.2.4)
|
||||||
bullet (7.0.1)
|
bullet (7.0.2)
|
||||||
activesupport (>= 3.0.0)
|
activesupport (>= 3.0.0)
|
||||||
uniform_notifier (~> 1.11)
|
uniform_notifier (~> 1.11)
|
||||||
bundler-audit (0.9.1)
|
bundler-audit (0.9.1)
|
||||||
|
@ -308,7 +308,7 @@ GEM
|
||||||
rainbow (>= 2.0.0)
|
rainbow (>= 2.0.0)
|
||||||
i18n (1.10.0)
|
i18n (1.10.0)
|
||||||
concurrent-ruby (~> 1.0)
|
concurrent-ruby (~> 1.0)
|
||||||
i18n-tasks (1.0.10)
|
i18n-tasks (1.0.11)
|
||||||
activesupport (>= 4.0.2)
|
activesupport (>= 4.0.2)
|
||||||
ast (>= 2.1.0)
|
ast (>= 2.1.0)
|
||||||
better_html (~> 1.0)
|
better_html (~> 1.0)
|
||||||
|
@ -397,11 +397,11 @@ GEM
|
||||||
mime-types-data (3.2022.0105)
|
mime-types-data (3.2022.0105)
|
||||||
mini_mime (1.1.2)
|
mini_mime (1.1.2)
|
||||||
mini_portile2 (2.8.0)
|
mini_portile2 (2.8.0)
|
||||||
minitest (5.15.0)
|
minitest (5.16.0)
|
||||||
msgpack (1.5.1)
|
msgpack (1.5.2)
|
||||||
multi_json (1.15.0)
|
multi_json (1.15.0)
|
||||||
multipart-post (2.1.1)
|
multipart-post (2.1.1)
|
||||||
net-ldap (0.17.0)
|
net-ldap (0.17.1)
|
||||||
net-scp (3.0.0)
|
net-scp (3.0.0)
|
||||||
net-ssh (>= 2.6.5, < 7.0.0)
|
net-ssh (>= 2.6.5, < 7.0.0)
|
||||||
net-ssh (6.1.0)
|
net-ssh (6.1.0)
|
||||||
|
@ -414,7 +414,7 @@ GEM
|
||||||
concurrent-ruby (~> 1.0, >= 1.0.2)
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
||||||
sidekiq (>= 3.5)
|
sidekiq (>= 3.5)
|
||||||
statsd-ruby (~> 1.4, >= 1.4.0)
|
statsd-ruby (~> 1.4, >= 1.4.0)
|
||||||
oj (3.13.13)
|
oj (3.13.14)
|
||||||
omniauth (1.9.1)
|
omniauth (1.9.1)
|
||||||
hashie (>= 3.4.6)
|
hashie (>= 3.4.6)
|
||||||
rack (>= 1.6.2, < 3)
|
rack (>= 1.6.2, < 3)
|
||||||
|
@ -513,7 +513,7 @@ GEM
|
||||||
rails-dom-testing (2.0.3)
|
rails-dom-testing (2.0.3)
|
||||||
activesupport (>= 4.2.0)
|
activesupport (>= 4.2.0)
|
||||||
nokogiri (>= 1.6)
|
nokogiri (>= 1.6)
|
||||||
rails-html-sanitizer (1.4.2)
|
rails-html-sanitizer (1.4.3)
|
||||||
loofah (~> 2.3)
|
loofah (~> 2.3)
|
||||||
rails-i18n (6.0.0)
|
rails-i18n (6.0.0)
|
||||||
i18n (>= 0.7, < 2)
|
i18n (>= 0.7, < 2)
|
||||||
|
@ -571,7 +571,7 @@ GEM
|
||||||
rspec-support (3.11.0)
|
rspec-support (3.11.0)
|
||||||
rspec_junit_formatter (0.5.1)
|
rspec_junit_formatter (0.5.1)
|
||||||
rspec-core (>= 2, < 4, != 2.12.0)
|
rspec-core (>= 2, < 4, != 2.12.0)
|
||||||
rubocop (1.30.0)
|
rubocop (1.30.1)
|
||||||
parallel (~> 1.10)
|
parallel (~> 1.10)
|
||||||
parser (>= 3.1.0.0)
|
parser (>= 3.1.0.0)
|
||||||
rainbow (>= 2.2.2, < 4.0)
|
rainbow (>= 2.2.2, < 4.0)
|
||||||
|
@ -582,7 +582,7 @@ GEM
|
||||||
unicode-display_width (>= 1.4.0, < 3.0)
|
unicode-display_width (>= 1.4.0, < 3.0)
|
||||||
rubocop-ast (1.18.0)
|
rubocop-ast (1.18.0)
|
||||||
parser (>= 3.1.1.0)
|
parser (>= 3.1.1.0)
|
||||||
rubocop-rails (2.14.2)
|
rubocop-rails (2.15.0)
|
||||||
activesupport (>= 4.2.0)
|
activesupport (>= 4.2.0)
|
||||||
rack (>= 1.1)
|
rack (>= 1.1)
|
||||||
rubocop (>= 1.7.0, < 2.0)
|
rubocop (>= 1.7.0, < 2.0)
|
||||||
|
@ -609,12 +609,12 @@ GEM
|
||||||
redis (>= 4.2.0)
|
redis (>= 4.2.0)
|
||||||
sidekiq-bulk (0.2.0)
|
sidekiq-bulk (0.2.0)
|
||||||
sidekiq
|
sidekiq
|
||||||
sidekiq-scheduler (4.0.0)
|
sidekiq-scheduler (4.0.1)
|
||||||
redis (>= 4.2.0)
|
redis (>= 4.2.0)
|
||||||
rufus-scheduler (~> 3.2)
|
rufus-scheduler (~> 3.2)
|
||||||
sidekiq (>= 4)
|
sidekiq (>= 4)
|
||||||
tilt (>= 1.4.0)
|
tilt (>= 1.4.0)
|
||||||
sidekiq-unique-jobs (7.1.23)
|
sidekiq-unique-jobs (7.1.25)
|
||||||
brpoplpush-redis_script (> 0.1.1, <= 2.0.0)
|
brpoplpush-redis_script (> 0.1.1, <= 2.0.0)
|
||||||
concurrent-ruby (~> 1.0, >= 1.0.5)
|
concurrent-ruby (~> 1.0, >= 1.0.5)
|
||||||
sidekiq (>= 5.0, < 8.0)
|
sidekiq (>= 5.0, < 8.0)
|
||||||
|
@ -681,7 +681,7 @@ GEM
|
||||||
unf_ext
|
unf_ext
|
||||||
unf_ext (0.0.8)
|
unf_ext (0.0.8)
|
||||||
unicode-display_width (2.1.0)
|
unicode-display_width (2.1.0)
|
||||||
uniform_notifier (1.14.2)
|
uniform_notifier (1.16.0)
|
||||||
validate_email (0.1.6)
|
validate_email (0.1.6)
|
||||||
activemodel (>= 3.0)
|
activemodel (>= 3.0)
|
||||||
mail (>= 2.2.5)
|
mail (>= 2.2.5)
|
||||||
|
@ -722,7 +722,7 @@ GEM
|
||||||
xorcist (1.1.2)
|
xorcist (1.1.2)
|
||||||
xpath (3.2.0)
|
xpath (3.2.0)
|
||||||
nokogiri (~> 1.8)
|
nokogiri (~> 1.8)
|
||||||
zeitwerk (2.5.4)
|
zeitwerk (2.6.0)
|
||||||
|
|
||||||
PLATFORMS
|
PLATFORMS
|
||||||
ruby
|
ruby
|
||||||
|
@ -736,7 +736,7 @@ DEPENDENCIES
|
||||||
better_errors (~> 2.9)
|
better_errors (~> 2.9)
|
||||||
binding_of_caller (~> 1.0)
|
binding_of_caller (~> 1.0)
|
||||||
blurhash (~> 0.1)
|
blurhash (~> 0.1)
|
||||||
bootsnap (~> 1.11.1)
|
bootsnap (~> 1.12.0)
|
||||||
brakeman (~> 5.2)
|
brakeman (~> 5.2)
|
||||||
browser
|
browser
|
||||||
bullet (~> 7.0)
|
bullet (~> 7.0)
|
||||||
|
@ -826,7 +826,7 @@ DEPENDENCIES
|
||||||
rspec-sidekiq (~> 3.1)
|
rspec-sidekiq (~> 3.1)
|
||||||
rspec_junit_formatter (~> 0.5)
|
rspec_junit_formatter (~> 0.5)
|
||||||
rubocop (~> 1.30)
|
rubocop (~> 1.30)
|
||||||
rubocop-rails (~> 2.14)
|
rubocop-rails (~> 2.15)
|
||||||
ruby-progressbar (~> 1.11)
|
ruby-progressbar (~> 1.11)
|
||||||
sanitize (~> 6.0)
|
sanitize (~> 6.0)
|
||||||
scenic (~> 1.6)
|
scenic (~> 1.6)
|
||||||
|
|
|
@ -15,7 +15,7 @@ module BrandingHelper
|
||||||
end
|
end
|
||||||
|
|
||||||
def _logo_as_symbol_icon
|
def _logo_as_symbol_icon
|
||||||
content_tag(:svg, tag(:use, href: '#logo-symbol-icon'), viewBox: '0 0 79 75', class: 'logo logo--icon')
|
content_tag(:svg, tag(:use, href: '#logo-symbol-icon'), viewBox: '0 0 79 79', class: 'logo logo--icon')
|
||||||
end
|
end
|
||||||
|
|
||||||
def render_logo
|
def render_logo
|
||||||
|
|
|
@ -133,12 +133,12 @@ $content-width: 840px;
|
||||||
|
|
||||||
.simple-navigation-active-leaf a {
|
.simple-navigation-active-leaf a {
|
||||||
color: $primary-text-color;
|
color: $primary-text-color;
|
||||||
background-color: $ui-highlight-color;
|
background-color: darken($ui-highlight-color, 2%);
|
||||||
border-bottom: 0;
|
border-bottom: 0;
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background-color: lighten($ui-highlight-color, 5%);
|
background-color: $ui-highlight-color;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -904,7 +904,7 @@ a.name-tag,
|
||||||
border: 0;
|
border: 0;
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: lighten($ui-highlight-color, 8%);
|
color: $highlight-text-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
dl:first-child .verified {
|
dl:first-child .verified {
|
||||||
|
|
|
@ -36,7 +36,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
&.unhandled-link {
|
&.unhandled-link {
|
||||||
color: lighten($ui-highlight-color, 8%);
|
color: $highlight-text-color;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -201,7 +201,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
&.active {
|
&.active {
|
||||||
color: $ui-highlight-color;
|
color: $highlight-text-color;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -58,8 +58,8 @@
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
|
|
||||||
&.checked {
|
&.checked {
|
||||||
border-color: lighten($ui-highlight-color, 8%);
|
border-color: lighten($ui-highlight-color, 4%);
|
||||||
background: lighten($ui-highlight-color, 8%);
|
background: lighten($ui-highlight-color, 4%);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -51,22 +51,16 @@
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
transition: all 100ms ease-in;
|
|
||||||
transition-property: background-color;
|
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
width: auto;
|
width: auto;
|
||||||
|
|
||||||
&:active,
|
&:active,
|
||||||
&:focus,
|
&:focus,
|
||||||
&:hover {
|
&:hover {
|
||||||
background-color: lighten($ui-highlight-color, 7%);
|
background-color: $ui-highlight-color;
|
||||||
transition: all 200ms ease-out;
|
|
||||||
transition-property: background-color;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
&--destructive {
|
&--destructive {
|
||||||
transition: none;
|
|
||||||
|
|
||||||
&:active,
|
&:active,
|
||||||
&:focus,
|
&:focus,
|
||||||
&:hover {
|
&:hover {
|
||||||
|
@ -916,11 +910,11 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.react-toggle--checked .react-toggle-track {
|
.react-toggle--checked .react-toggle-track {
|
||||||
background-color: $ui-highlight-color;
|
background-color: darken($ui-highlight-color, 2%);
|
||||||
}
|
}
|
||||||
|
|
||||||
.react-toggle--checked:is(:hover, :focus-within):not(.react-toggle--disabled) .react-toggle-track {
|
.react-toggle--checked:is(:hover, :focus-within):not(.react-toggle--disabled) .react-toggle-track {
|
||||||
background-color: lighten($ui-highlight-color, 10%);
|
background-color: $ui-highlight-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
.react-toggle-track-check {
|
.react-toggle-track-check {
|
||||||
|
@ -1216,14 +1210,14 @@ button.icon-button.active i.fa-retweet {
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: lighten($ui-highlight-color, 8%);
|
color: $highlight-text-color;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
|
||||||
&:hover,
|
&:hover,
|
||||||
&:focus,
|
&:focus,
|
||||||
&:active {
|
&:active {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
color: lighten($ui-highlight-color, 12%);
|
color: lighten($highlight-text-color, 4%);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -199,7 +199,7 @@
|
||||||
height: 3.9375rem;
|
height: 3.9375rem;
|
||||||
bottom: 1.3125rem;
|
bottom: 1.3125rem;
|
||||||
right: 1.3125rem;
|
right: 1.3125rem;
|
||||||
background: darken($ui-highlight-color, 3%);
|
background: darken($ui-highlight-color, 2%);
|
||||||
color: $white;
|
color: $white;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
font-size: 21px;
|
font-size: 21px;
|
||||||
|
@ -210,7 +210,7 @@
|
||||||
&:hover,
|
&:hover,
|
||||||
&:focus,
|
&:focus,
|
||||||
&:active {
|
&:active {
|
||||||
background: lighten($ui-highlight-color, 7%);
|
background: $ui-highlight-color;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -187,7 +187,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
a.unhandled-link {
|
a.unhandled-link {
|
||||||
color: lighten($ui-highlight-color, 8%);
|
color: $highlight-text-color;
|
||||||
|
|
||||||
.link-origin-tag {
|
.link-origin-tag {
|
||||||
color: $gold-star;
|
color: $gold-star;
|
||||||
|
|
|
@ -797,7 +797,7 @@
|
||||||
border-top: 0;
|
border-top: 0;
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: lighten($ui-highlight-color, 8%);
|
color: $highlight-text-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
dl:first-child .verified {
|
dl:first-child .verified {
|
||||||
|
|
|
@ -4,19 +4,17 @@ $black: #000000;
|
||||||
$classic-base-color: #282c37;
|
$classic-base-color: #282c37;
|
||||||
$classic-primary-color: #9baec8;
|
$classic-primary-color: #9baec8;
|
||||||
$classic-secondary-color: #d9e1e8;
|
$classic-secondary-color: #d9e1e8;
|
||||||
$classic-highlight-color: #2b90d9;
|
$classic-highlight-color: #6364ff;
|
||||||
|
|
||||||
$ui-base-color: $classic-base-color !default;
|
$ui-base-color: $classic-base-color !default;
|
||||||
$ui-primary-color: $classic-primary-color !default;
|
$ui-primary-color: $classic-primary-color !default;
|
||||||
$ui-secondary-color: $classic-secondary-color !default;
|
$ui-secondary-color: $classic-secondary-color !default;
|
||||||
|
$ui-highlight-color: $classic-highlight-color !default;
|
||||||
// Differences
|
|
||||||
$ui-highlight-color: #2b5fd9;
|
|
||||||
|
|
||||||
$darker-text-color: lighten($ui-primary-color, 20%) !default;
|
$darker-text-color: lighten($ui-primary-color, 20%) !default;
|
||||||
$dark-text-color: lighten($ui-primary-color, 12%) !default;
|
$dark-text-color: lighten($ui-primary-color, 12%) !default;
|
||||||
$secondary-text-color: lighten($ui-secondary-color, 6%) !default;
|
$secondary-text-color: lighten($ui-secondary-color, 6%) !default;
|
||||||
$highlight-text-color: $classic-highlight-color !default;
|
$highlight-text-color: lighten($ui-highlight-color, 8%) !default;
|
||||||
$action-button-color: #8d9ac2;
|
$action-button-color: #8d9ac2;
|
||||||
|
|
||||||
$inverted-text-color: $black !default;
|
$inverted-text-color: $black !default;
|
||||||
|
|
|
@ -83,7 +83,7 @@
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: baseline;
|
align-items: baseline;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
background: $ui-highlight-color;
|
background: darken($ui-highlight-color, 2%);
|
||||||
color: $primary-text-color;
|
color: $primary-text-color;
|
||||||
transition: all 100ms ease-in;
|
transition: all 100ms ease-in;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
|
@ -96,7 +96,7 @@
|
||||||
&:active,
|
&:active,
|
||||||
&:focus,
|
&:focus,
|
||||||
&:hover {
|
&:hover {
|
||||||
background-color: lighten($ui-highlight-color, 10%);
|
background-color: $ui-highlight-color;
|
||||||
transition: all 200ms ease-out;
|
transition: all 200ms ease-out;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -454,14 +454,14 @@ code {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
border: 0;
|
border: 0;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
background: $ui-highlight-color;
|
background: darken($ui-highlight-color, 2%);
|
||||||
color: $primary-text-color;
|
color: $primary-text-color;
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
line-height: inherit;
|
line-height: inherit;
|
||||||
height: auto;
|
height: auto;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
text-transform: uppercase;
|
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
text-transform: uppercase;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
@ -474,13 +474,10 @@ code {
|
||||||
margin-right: 0;
|
margin-right: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:hover {
|
|
||||||
background-color: lighten($ui-highlight-color, 5%);
|
|
||||||
}
|
|
||||||
|
|
||||||
&:active,
|
&:active,
|
||||||
&:focus {
|
&:focus,
|
||||||
background-color: darken($ui-highlight-color, 5%);
|
&:hover {
|
||||||
|
background-color: $ui-highlight-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:disabled:hover {
|
&:disabled:hover {
|
||||||
|
|
|
@ -5,7 +5,7 @@ $white: #ffffff;
|
||||||
$classic-base-color: #282c37;
|
$classic-base-color: #282c37;
|
||||||
$classic-primary-color: #9baec8;
|
$classic-primary-color: #9baec8;
|
||||||
$classic-secondary-color: #d9e1e8;
|
$classic-secondary-color: #d9e1e8;
|
||||||
$classic-highlight-color: #2b90d9;
|
$classic-highlight-color: #6364ff;
|
||||||
|
|
||||||
$ui-base-color: $classic-secondary-color !default;
|
$ui-base-color: $classic-secondary-color !default;
|
||||||
$ui-base-lighter-color: darken($ui-base-color, 57%);
|
$ui-base-lighter-color: darken($ui-base-color, 57%);
|
||||||
|
@ -15,6 +15,7 @@ $ui-secondary-color: $classic-base-color !default;
|
||||||
|
|
||||||
$primary-text-color: $black !default;
|
$primary-text-color: $black !default;
|
||||||
$darker-text-color: $classic-base-color !default;
|
$darker-text-color: $classic-base-color !default;
|
||||||
|
$highlight-text-color: darken($ui-highlight-color, 8%) !default;
|
||||||
$dark-text-color: #444b5d;
|
$dark-text-color: #444b5d;
|
||||||
$action-button-color: #606984;
|
$action-button-color: #606984;
|
||||||
|
|
||||||
|
|
|
@ -76,7 +76,7 @@
|
||||||
.button.logo-button {
|
.button.logo-button {
|
||||||
flex: 0 auto;
|
flex: 0 auto;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
background: $ui-highlight-color;
|
background: darken($ui-highlight-color, 2%);
|
||||||
color: $primary-text-color;
|
color: $primary-text-color;
|
||||||
text-transform: none;
|
text-transform: none;
|
||||||
line-height: 1.2;
|
line-height: 1.2;
|
||||||
|
@ -100,7 +100,7 @@
|
||||||
&:active,
|
&:active,
|
||||||
&:focus,
|
&:focus,
|
||||||
&:hover {
|
&:hover {
|
||||||
background: lighten($ui-highlight-color, 10%);
|
background: $ui-highlight-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:disabled,
|
&:disabled,
|
||||||
|
@ -267,7 +267,7 @@ a.button.logo-button {
|
||||||
display: block;
|
display: block;
|
||||||
font-size: 15px;
|
font-size: 15px;
|
||||||
line-height: 20px;
|
line-height: 20px;
|
||||||
color: lighten($ui-highlight-color, 8%);
|
color: $highlight-text-color;
|
||||||
border: 0;
|
border: 0;
|
||||||
background: transparent;
|
background: transparent;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
|
|
@ -34,7 +34,7 @@ $primary-text-color: $white !default;
|
||||||
$darker-text-color: $ui-primary-color !default;
|
$darker-text-color: $ui-primary-color !default;
|
||||||
$dark-text-color: $ui-base-lighter-color !default;
|
$dark-text-color: $ui-base-lighter-color !default;
|
||||||
$secondary-text-color: $ui-secondary-color !default;
|
$secondary-text-color: $ui-secondary-color !default;
|
||||||
$highlight-text-color: $ui-highlight-color !default;
|
$highlight-text-color: lighten($ui-highlight-color, 8%) !default;
|
||||||
$action-button-color: $ui-base-lighter-color !default;
|
$action-button-color: $ui-base-lighter-color !default;
|
||||||
$passive-text-color: $gold-star !default;
|
$passive-text-color: $gold-star !default;
|
||||||
$active-passive-text-color: $success-green !default;
|
$active-passive-text-color: $success-green !default;
|
||||||
|
|
Before Width: | Height: | Size: 650 B After Width: | Height: | Size: 639 B |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.9 KiB |
|
@ -1,2 +1,2 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="79" height="75" viewBox="0 0 79 75"><symbol id="logo-symbol-icon"><path d="M74.7135 16.6043C73.6199 8.54587 66.5351 2.19527 58.1366 0.964691C56.7196 0.756754 51.351 0 38.9148 0H38.822C26.3824 0 23.7135 0.756754 22.2966 0.964691C14.1319 2.16118 6.67571 7.86752 4.86669 16.0214C3.99657 20.0369 3.90371 24.4888 4.06535 28.5726C4.29578 34.4289 4.34049 40.275 4.877 46.1075C5.24791 49.9817 5.89495 53.8251 6.81328 57.6088C8.53288 64.5968 15.4938 70.4122 22.3138 72.7848C29.6155 75.259 37.468 75.6697 44.9919 73.971C45.8196 73.7801 46.6381 73.5586 47.4475 73.3063C49.2737 72.7302 51.4164 72.086 52.9915 70.9542C53.0131 70.9384 53.0308 70.9178 53.0433 70.8942C53.0558 70.8706 53.0628 70.8445 53.0637 70.8179V65.1661C53.0634 65.1412 53.0574 65.1167 53.0462 65.0944C53.035 65.0721 53.0189 65.0525 52.9992 65.0371C52.9794 65.0218 52.9564 65.011 52.9318 65.0056C52.9073 65.0002 52.8819 65.0003 52.8574 65.0059C48.0369 66.1472 43.0971 66.7193 38.141 66.7103C29.6118 66.7103 27.3178 62.6981 26.6609 61.0278C26.1329 59.5842 25.7976 58.0784 25.6636 56.5486C25.6622 56.5229 25.667 56.4973 25.6775 56.4738C25.688 56.4502 25.7039 56.4295 25.724 56.4132C25.7441 56.397 25.7678 56.3856 25.7931 56.3801C25.8185 56.3746 25.8448 56.3751 25.8699 56.3816C30.6101 57.5151 35.4693 58.0873 40.3455 58.086C41.5183 58.086 42.6876 58.086 43.8604 58.0553C48.7647 57.919 53.9339 57.6701 58.7591 56.7361C58.8794 56.7123 58.9998 56.6918 59.103 56.6611C66.7139 55.2124 73.9569 50.665 74.6929 39.1501C74.7204 38.6967 74.7892 34.4016 74.7892 33.9312C74.7926 32.3325 75.3085 22.5901 74.7135 16.6043ZM62.9996 45.3371H54.9966V25.9069C54.9966 21.8163 53.277 19.7302 49.7793 19.7302C45.9343 19.7302 44.0083 22.1981 44.0083 27.0727V37.7082H36.0534V27.0727C36.0534 22.1981 34.124 19.7302 30.279 19.7302C26.8019 19.7302 25.0651 21.8163 25.0617 25.9069V45.3371H17.0656V25.3172C17.0656 21.2266 18.1191 17.9769 20.2262 15.568C22.3998 13.1648 25.2509 11.9308 28.7898 11.9308C32.8859 11.9308 35.9812 13.492 38.0447 16.6111L40.036 19.9245L42.0308 16.6111C44.0943 13.492 47.1896 11.9308 51.2788 11.9308C54.8143 11.9308 57.6654 13.1648 59.8459 15.568C61.9529 17.9746 63.0065 21.2243 63.0065 25.3172L62.9996 45.3371Z" fill="currentColor"/></symbol><use xlink:href="#logo-symbol-icon" style="color:#fff" /></svg>
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="79" height="79" viewBox="0 0 79 75"><symbol id="logo-symbol-icon"><path d="M74.7135 16.6043C73.6199 8.54587 66.5351 2.19527 58.1366 0.964691C56.7196 0.756754 51.351 0 38.9148 0H38.822C26.3824 0 23.7135 0.756754 22.2966 0.964691C14.1319 2.16118 6.67571 7.86752 4.86669 16.0214C3.99657 20.0369 3.90371 24.4888 4.06535 28.5726C4.29578 34.4289 4.34049 40.275 4.877 46.1075C5.24791 49.9817 5.89495 53.8251 6.81328 57.6088C8.53288 64.5968 15.4938 70.4122 22.3138 72.7848C29.6155 75.259 37.468 75.6697 44.9919 73.971C45.8196 73.7801 46.6381 73.5586 47.4475 73.3063C49.2737 72.7302 51.4164 72.086 52.9915 70.9542C53.0131 70.9384 53.0308 70.9178 53.0433 70.8942C53.0558 70.8706 53.0628 70.8445 53.0637 70.8179V65.1661C53.0634 65.1412 53.0574 65.1167 53.0462 65.0944C53.035 65.0721 53.0189 65.0525 52.9992 65.0371C52.9794 65.0218 52.9564 65.011 52.9318 65.0056C52.9073 65.0002 52.8819 65.0003 52.8574 65.0059C48.0369 66.1472 43.0971 66.7193 38.141 66.7103C29.6118 66.7103 27.3178 62.6981 26.6609 61.0278C26.1329 59.5842 25.7976 58.0784 25.6636 56.5486C25.6622 56.5229 25.667 56.4973 25.6775 56.4738C25.688 56.4502 25.7039 56.4295 25.724 56.4132C25.7441 56.397 25.7678 56.3856 25.7931 56.3801C25.8185 56.3746 25.8448 56.3751 25.8699 56.3816C30.6101 57.5151 35.4693 58.0873 40.3455 58.086C41.5183 58.086 42.6876 58.086 43.8604 58.0553C48.7647 57.919 53.9339 57.6701 58.7591 56.7361C58.8794 56.7123 58.9998 56.6918 59.103 56.6611C66.7139 55.2124 73.9569 50.665 74.6929 39.1501C74.7204 38.6967 74.7892 34.4016 74.7892 33.9312C74.7926 32.3325 75.3085 22.5901 74.7135 16.6043ZM62.9996 45.3371H54.9966V25.9069C54.9966 21.8163 53.277 19.7302 49.7793 19.7302C45.9343 19.7302 44.0083 22.1981 44.0083 27.0727V37.7082H36.0534V27.0727C36.0534 22.1981 34.124 19.7302 30.279 19.7302C26.8019 19.7302 25.0651 21.8163 25.0617 25.9069V45.3371H17.0656V25.3172C17.0656 21.2266 18.1191 17.9769 20.2262 15.568C22.3998 13.1648 25.2509 11.9308 28.7898 11.9308C32.8859 11.9308 35.9812 13.492 38.0447 16.6111L40.036 19.9245L42.0308 16.6111C44.0943 13.492 47.1896 11.9308 51.2788 11.9308C54.8143 11.9308 57.6654 13.1648 59.8459 15.568C61.9529 17.9746 63.0065 21.2243 63.0065 25.3172L62.9996 45.3371Z" fill="currentColor"/></symbol><use xlink:href="#logo-symbol-icon" style="color:#fff" /></svg>
|
||||||
|
|
||||||
|
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.3 KiB |
|
@ -1,4 +1,4 @@
|
||||||
<svg width="61" height="65" viewBox="0 0 61 65" fill="none" xmlns="http://www.w3.org/2000/svg">
|
<svg width="65" height="65" viewBox="0 0 61 65" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
<path d="M60.7539 14.3904C59.8143 7.40642 53.7273 1.90257 46.5117 0.836066C45.2943 0.655854 40.6819 0 29.9973 0H29.9175C19.2299 0 16.937 0.655854 15.7196 0.836066C8.70488 1.87302 2.29885 6.81852 0.744617 13.8852C-0.00294988 17.3654 -0.0827298 21.2237 0.0561464 24.7629C0.254119 29.8384 0.292531 34.905 0.753482 39.9598C1.07215 43.3175 1.62806 46.6484 2.41704 49.9276C3.89445 55.9839 9.87499 61.0239 15.7344 63.0801C22.0077 65.2244 28.7542 65.5804 35.2184 64.1082C35.9295 63.9428 36.6318 63.7508 37.3252 63.5321C38.8971 63.0329 40.738 62.4745 42.0913 61.4937C42.1099 61.4799 42.1251 61.4621 42.1358 61.4417C42.1466 61.4212 42.1526 61.3986 42.1534 61.3755V56.4773C42.153 56.4557 42.1479 56.4345 42.1383 56.4151C42.1287 56.3958 42.1149 56.3788 42.0979 56.3655C42.0809 56.3522 42.0611 56.3429 42.04 56.3382C42.019 56.3335 41.9971 56.3336 41.9761 56.3384C37.8345 57.3276 33.5905 57.8234 29.3324 57.8156C22.0045 57.8156 20.0336 54.3384 19.4693 52.8908C19.0156 51.6397 18.7275 50.3346 18.6124 49.0088C18.6112 48.9866 18.6153 48.9643 18.6243 48.9439C18.6333 48.9236 18.647 48.9056 18.6643 48.8915C18.6816 48.8774 18.7019 48.8675 18.7237 48.8628C18.7455 48.858 18.7681 48.8585 18.7897 48.8641C22.8622 49.8465 27.037 50.3423 31.2265 50.3412C32.234 50.3412 33.2387 50.3412 34.2463 50.3146C38.4598 50.1964 42.9009 49.9808 47.0465 49.1713C47.1499 49.1506 47.2534 49.1329 47.342 49.1063C53.881 47.8507 60.1038 43.9097 60.7362 33.9301C60.7598 33.5372 60.8189 29.8148 60.8189 29.4071C60.8218 28.0215 61.2651 19.5781 60.7539 14.3904Z" fill="url(#paint0_linear_89_8)"/>
|
<path d="M60.7539 14.3904C59.8143 7.40642 53.7273 1.90257 46.5117 0.836066C45.2943 0.655854 40.6819 0 29.9973 0H29.9175C19.2299 0 16.937 0.655854 15.7196 0.836066C8.70488 1.87302 2.29885 6.81852 0.744617 13.8852C-0.00294988 17.3654 -0.0827298 21.2237 0.0561464 24.7629C0.254119 29.8384 0.292531 34.905 0.753482 39.9598C1.07215 43.3175 1.62806 46.6484 2.41704 49.9276C3.89445 55.9839 9.87499 61.0239 15.7344 63.0801C22.0077 65.2244 28.7542 65.5804 35.2184 64.1082C35.9295 63.9428 36.6318 63.7508 37.3252 63.5321C38.8971 63.0329 40.738 62.4745 42.0913 61.4937C42.1099 61.4799 42.1251 61.4621 42.1358 61.4417C42.1466 61.4212 42.1526 61.3986 42.1534 61.3755V56.4773C42.153 56.4557 42.1479 56.4345 42.1383 56.4151C42.1287 56.3958 42.1149 56.3788 42.0979 56.3655C42.0809 56.3522 42.0611 56.3429 42.04 56.3382C42.019 56.3335 41.9971 56.3336 41.9761 56.3384C37.8345 57.3276 33.5905 57.8234 29.3324 57.8156C22.0045 57.8156 20.0336 54.3384 19.4693 52.8908C19.0156 51.6397 18.7275 50.3346 18.6124 49.0088C18.6112 48.9866 18.6153 48.9643 18.6243 48.9439C18.6333 48.9236 18.647 48.9056 18.6643 48.8915C18.6816 48.8774 18.7019 48.8675 18.7237 48.8628C18.7455 48.858 18.7681 48.8585 18.7897 48.8641C22.8622 49.8465 27.037 50.3423 31.2265 50.3412C32.234 50.3412 33.2387 50.3412 34.2463 50.3146C38.4598 50.1964 42.9009 49.9808 47.0465 49.1713C47.1499 49.1506 47.2534 49.1329 47.342 49.1063C53.881 47.8507 60.1038 43.9097 60.7362 33.9301C60.7598 33.5372 60.8189 29.8148 60.8189 29.4071C60.8218 28.0215 61.2651 19.5781 60.7539 14.3904Z" fill="url(#paint0_linear_89_8)"/>
|
||||||
<path d="M50.3943 22.237V39.5876H43.5185V22.7481C43.5185 19.2029 42.0411 17.3949 39.036 17.3949C35.7325 17.3949 34.0778 19.5338 34.0778 23.7585V32.9759H27.2434V23.7585C27.2434 19.5338 25.5857 17.3949 22.2822 17.3949C19.2949 17.3949 17.8027 19.2029 17.8027 22.7481V39.5876H10.9298V22.237C10.9298 18.6918 11.835 15.8754 13.6453 13.7877C15.5128 11.7049 17.9623 10.6355 21.0028 10.6355C24.522 10.6355 27.1813 11.9885 28.9542 14.6917L30.665 17.5633L32.3788 14.6917C34.1517 11.9885 36.811 10.6355 40.3243 10.6355C43.3619 10.6355 45.8114 11.7049 47.6847 13.7877C49.4931 15.8734 50.3963 18.6899 50.3943 22.237Z" fill="white"/>
|
<path d="M50.3943 22.237V39.5876H43.5185V22.7481C43.5185 19.2029 42.0411 17.3949 39.036 17.3949C35.7325 17.3949 34.0778 19.5338 34.0778 23.7585V32.9759H27.2434V23.7585C27.2434 19.5338 25.5857 17.3949 22.2822 17.3949C19.2949 17.3949 17.8027 19.2029 17.8027 22.7481V39.5876H10.9298V22.237C10.9298 18.6918 11.835 15.8754 13.6453 13.7877C15.5128 11.7049 17.9623 10.6355 21.0028 10.6355C24.522 10.6355 27.1813 11.9885 28.9542 14.6917L30.665 17.5633L32.3788 14.6917C34.1517 11.9885 36.811 10.6355 40.3243 10.6355C43.3619 10.6355 45.8114 11.7049 47.6847 13.7877C49.4931 15.8734 50.3963 18.6899 50.3943 22.237Z" fill="white"/>
|
||||||
<defs>
|
<defs>
|
||||||
|
|
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 8.7 KiB After Width: | Height: | Size: 8.8 KiB |
|
@ -106,7 +106,7 @@
|
||||||
"compose_form.poll.remove_option": "Verwyder hierdie keuse",
|
"compose_form.poll.remove_option": "Verwyder hierdie keuse",
|
||||||
"compose_form.poll.switch_to_multiple": "Verander die peiling na verskeie keuses",
|
"compose_form.poll.switch_to_multiple": "Verander die peiling na verskeie keuses",
|
||||||
"compose_form.poll.switch_to_single": "Verander die peiling na 'n enkel keuse",
|
"compose_form.poll.switch_to_single": "Verander die peiling na 'n enkel keuse",
|
||||||
"compose_form.publish": "Publish",
|
"compose_form.publish": "Publisheer",
|
||||||
"compose_form.publish_loud": "{publish}!",
|
"compose_form.publish_loud": "{publish}!",
|
||||||
"compose_form.save_changes": "Stoor veranderinge",
|
"compose_form.save_changes": "Stoor veranderinge",
|
||||||
"compose_form.sensitive.hide": "{count, plural, one {Mark media as sensitive} other {Mark media as sensitive}}",
|
"compose_form.sensitive.hide": "{count, plural, one {Mark media as sensitive} other {Mark media as sensitive}}",
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
"account.follow": "متابعة",
|
"account.follow": "متابعة",
|
||||||
"account.followers": "مُتابِعون",
|
"account.followers": "مُتابِعون",
|
||||||
"account.followers.empty": "لا أحدَ يُتابع هذا المُستخدم إلى حد الآن.",
|
"account.followers.empty": "لا أحدَ يُتابع هذا المُستخدم إلى حد الآن.",
|
||||||
"account.followers_counter": "{count, plural, zero{لا مُتابع} one {مُتابعٌ واحِد} two{مُتابعانِ اِثنان} few{{counter} مُتابِعين} many{{counter} مُتابِعًا} other {{counter} مُتابع}}",
|
"account.followers_counter": "{count, plural, zero{لا مُتابع} one {مُتابعٌ واحِد} two {مُتابعانِ اِثنان} few {{counter} مُتابِعين} many {{counter} مُتابِعًا} other {{counter} مُتابع}}",
|
||||||
"account.following": "الإشتراكات",
|
"account.following": "الإشتراكات",
|
||||||
"account.following_counter": "{count, plural, zero{لا يُتابِع} one {يُتابِعُ واحد} two{يُتابِعُ اِثنان} few{يُتابِعُ {counter}} many{يُتابِعُ {counter}} other {يُتابِعُ {counter}}}",
|
"account.following_counter": "{count, plural, zero{لا يُتابِع} one {يُتابِعُ واحد} two{يُتابِعُ اِثنان} few{يُتابِعُ {counter}} many{يُتابِعُ {counter}} other {يُتابِعُ {counter}}}",
|
||||||
"account.follows.empty": "لا يُتابع هذا المُستخدمُ أيَّ أحدٍ حتى الآن.",
|
"account.follows.empty": "لا يُتابع هذا المُستخدمُ أيَّ أحدٍ حتى الآن.",
|
||||||
|
@ -95,7 +95,7 @@
|
||||||
"compose.language.change": "تغيير اللغة",
|
"compose.language.change": "تغيير اللغة",
|
||||||
"compose.language.search": "البحث عن لغة…",
|
"compose.language.search": "البحث عن لغة…",
|
||||||
"compose_form.direct_message_warning_learn_more": "تَعَلَّم المَزيد",
|
"compose_form.direct_message_warning_learn_more": "تَعَلَّم المَزيد",
|
||||||
"compose_form.encryption_warning": "Posts on Mastodon are not end-to-end encrypted. Do not share any dangerous information over Mastodon.",
|
"compose_form.encryption_warning": "إنّ المنشورات على ماستدون ليست مشفرة من النهاية إلى النهاية. لا تشارك أي معلومات حساسة عبر ماستدون.",
|
||||||
"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": "مُقفَل",
|
||||||
|
@ -106,7 +106,7 @@
|
||||||
"compose_form.poll.remove_option": "إزالة هذا الخيار",
|
"compose_form.poll.remove_option": "إزالة هذا الخيار",
|
||||||
"compose_form.poll.switch_to_multiple": "تغيِير الاستطلاع للسماح باِخيارات مُتعدِّدة",
|
"compose_form.poll.switch_to_multiple": "تغيِير الاستطلاع للسماح باِخيارات مُتعدِّدة",
|
||||||
"compose_form.poll.switch_to_single": "تغيِير الاستطلاع للسماح باِخيار واحد فقط",
|
"compose_form.poll.switch_to_single": "تغيِير الاستطلاع للسماح باِخيار واحد فقط",
|
||||||
"compose_form.publish": "Publish",
|
"compose_form.publish": "انشر",
|
||||||
"compose_form.publish_loud": "{publish}!",
|
"compose_form.publish_loud": "{publish}!",
|
||||||
"compose_form.save_changes": "احفظ التعديلات",
|
"compose_form.save_changes": "احفظ التعديلات",
|
||||||
"compose_form.sensitive.hide": "{count, plural, one {الإشارة إلى الوَسط كمُحتوى حسّاس} two{الإشارة إلى الوسطان كمُحتويان حسّاسان} other {الإشارة إلى الوسائط كمُحتويات حسّاسة}}",
|
"compose_form.sensitive.hide": "{count, plural, one {الإشارة إلى الوَسط كمُحتوى حسّاس} two{الإشارة إلى الوسطان كمُحتويان حسّاسان} other {الإشارة إلى الوسائط كمُحتويات حسّاسة}}",
|
||||||
|
@ -512,8 +512,8 @@
|
||||||
"trends.trending_now": "المتداولة الآن",
|
"trends.trending_now": "المتداولة الآن",
|
||||||
"ui.beforeunload": "سوف تفقد مسودتك إن تركت ماستدون.",
|
"ui.beforeunload": "سوف تفقد مسودتك إن تركت ماستدون.",
|
||||||
"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_area.title": "اسحب ثم أفلت للرفع",
|
"upload_area.title": "اسحب ثم أفلت للرفع",
|
||||||
"upload_button.label": "إضافة وسائط",
|
"upload_button.label": "إضافة وسائط",
|
||||||
"upload_error.limit": "لقد تم بلوغ الحد الأقصى المسموح به لإرسال الملفات.",
|
"upload_error.limit": "لقد تم بلوغ الحد الأقصى المسموح به لإرسال الملفات.",
|
||||||
|
|
|
@ -70,7 +70,7 @@
|
||||||
"column.blocks": "Blockierte Profile",
|
"column.blocks": "Blockierte Profile",
|
||||||
"column.bookmarks": "Lesezeichen",
|
"column.bookmarks": "Lesezeichen",
|
||||||
"column.community": "Lokale Zeitleiste",
|
"column.community": "Lokale Zeitleiste",
|
||||||
"column.direct": "Mensaxes directas",
|
"column.direct": "Direktnachrichten",
|
||||||
"column.directory": "Profile durchsuchen",
|
"column.directory": "Profile durchsuchen",
|
||||||
"column.domain_blocks": "Blockierte Domains",
|
"column.domain_blocks": "Blockierte Domains",
|
||||||
"column.favourites": "Favoriten",
|
"column.favourites": "Favoriten",
|
||||||
|
@ -95,7 +95,7 @@
|
||||||
"compose.language.change": "Sprache ändern",
|
"compose.language.change": "Sprache ändern",
|
||||||
"compose.language.search": "Sprachen durchsuchen...",
|
"compose.language.search": "Sprachen durchsuchen...",
|
||||||
"compose_form.direct_message_warning_learn_more": "Mehr erfahren",
|
"compose_form.direct_message_warning_learn_more": "Mehr erfahren",
|
||||||
"compose_form.encryption_warning": "Beiträge von Mastodon sind nicht Ende-zu-Ende verschlüsselt. Teile keine senible Infomartionen über Mastodon.",
|
"compose_form.encryption_warning": "Beiträge von Mastodon sind nicht Ende-zu-Ende verschlüsselt. Teile keine senible Informationen über Mastodon.",
|
||||||
"compose_form.hashtag_warning": "Dieser Beitrag wird nicht durch Hashtags entdeckbar sein, weil er ungelistet ist. Nur öffentliche Beiträge tauchen in Hashtag-Zeitleisten auf.",
|
"compose_form.hashtag_warning": "Dieser Beitrag wird nicht durch Hashtags entdeckbar sein, weil er ungelistet ist. Nur öffentliche Beiträge tauchen in Hashtag-Zeitleisten auf.",
|
||||||
"compose_form.lock_disclaimer": "Dein Profil ist nicht {locked}. Wer dir folgen will, kann das jederzeit tun und dann auch deine privaten Beiträge sehen.",
|
"compose_form.lock_disclaimer": "Dein Profil ist nicht {locked}. Wer dir folgen will, kann das jederzeit tun und dann auch deine privaten Beiträge sehen.",
|
||||||
"compose_form.lock_disclaimer.lock": "gesperrt",
|
"compose_form.lock_disclaimer.lock": "gesperrt",
|
||||||
|
@ -106,7 +106,7 @@
|
||||||
"compose_form.poll.remove_option": "Wahl entfernen",
|
"compose_form.poll.remove_option": "Wahl entfernen",
|
||||||
"compose_form.poll.switch_to_multiple": "Umfrage ändern, um mehrere Optionen zu erlauben",
|
"compose_form.poll.switch_to_multiple": "Umfrage ändern, um mehrere Optionen zu erlauben",
|
||||||
"compose_form.poll.switch_to_single": "Umfrage ändern, um eine einzige Wahl zu erlauben",
|
"compose_form.poll.switch_to_single": "Umfrage ändern, um eine einzige Wahl zu erlauben",
|
||||||
"compose_form.publish": "Publish",
|
"compose_form.publish": "Veröffentlichen",
|
||||||
"compose_form.publish_loud": "{publish}!",
|
"compose_form.publish_loud": "{publish}!",
|
||||||
"compose_form.save_changes": "Änderungen speichern",
|
"compose_form.save_changes": "Änderungen speichern",
|
||||||
"compose_form.sensitive.hide": "Medien als NSFW markieren",
|
"compose_form.sensitive.hide": "Medien als NSFW markieren",
|
||||||
|
@ -351,7 +351,7 @@
|
||||||
"notifications.filter.mentions": "Erwähnungen",
|
"notifications.filter.mentions": "Erwähnungen",
|
||||||
"notifications.filter.polls": "Ergebnisse der Umfrage",
|
"notifications.filter.polls": "Ergebnisse der Umfrage",
|
||||||
"notifications.filter.statuses": "Updates von Personen, denen du folgst",
|
"notifications.filter.statuses": "Updates von Personen, denen du folgst",
|
||||||
"notifications.grant_permission": "Zugriff gewährt.",
|
"notifications.grant_permission": "Berechtigung erteilen.",
|
||||||
"notifications.group": "{count} Benachrichtigungen",
|
"notifications.group": "{count} Benachrichtigungen",
|
||||||
"notifications.mark_as_read": "Alle Benachrichtigungen als gelesen markieren",
|
"notifications.mark_as_read": "Alle Benachrichtigungen als gelesen markieren",
|
||||||
"notifications.permission_denied": "Desktop-Benachrichtigungen können nicht aktiviert werden, da die Berechtigung verweigert wurde.",
|
"notifications.permission_denied": "Desktop-Benachrichtigungen können nicht aktiviert werden, da die Berechtigung verweigert wurde.",
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
"account.block": "Bloki @{name}",
|
"account.block": "Bloki @{name}",
|
||||||
"account.block_domain": "Bloki domajnon {domain}",
|
"account.block_domain": "Bloki domajnon {domain}",
|
||||||
"account.blocked": "Blokita",
|
"account.blocked": "Blokita",
|
||||||
"account.browse_more_on_origin_server": "Rigardi pli al la originala profilo",
|
"account.browse_more_on_origin_server": "Vidi pli ĉe la originala profilo",
|
||||||
"account.cancel_follow_request": "Nuligi peton de sekvado",
|
"account.cancel_follow_request": "Nuligi peton de sekvado",
|
||||||
"account.direct": "Rekte mesaĝi @{name}",
|
"account.direct": "Rekte mesaĝi @{name}",
|
||||||
"account.disable_notifications": "Ĉesu sciigi min kiam @{name} mesaĝi",
|
"account.disable_notifications": "Ĉesu sciigi min kiam @{name} mesaĝi",
|
||||||
|
@ -22,7 +22,7 @@
|
||||||
"account.following_counter": "{count, plural, one {{counter} Sekvato} other {{counter} Sekvatoj}}",
|
"account.following_counter": "{count, plural, one {{counter} Sekvato} other {{counter} Sekvatoj}}",
|
||||||
"account.follows.empty": "Tiu uzanto ankoraŭ ne sekvas iun.",
|
"account.follows.empty": "Tiu uzanto ankoraŭ ne sekvas iun.",
|
||||||
"account.follows_you": "Sekvas vin",
|
"account.follows_you": "Sekvas vin",
|
||||||
"account.hide_reblogs": "Kaŝi diskonigojn de @{name}",
|
"account.hide_reblogs": "Kaŝi plusendojn de @{name}",
|
||||||
"account.joined": "Kuniĝis {date}",
|
"account.joined": "Kuniĝis {date}",
|
||||||
"account.link_verified_on": "La posedanto de tiu ligilo estis kontrolita je {date}",
|
"account.link_verified_on": "La posedanto de tiu ligilo estis kontrolita je {date}",
|
||||||
"account.locked_info": "La privateco de tiu konto estas elektita kiel fermita. La posedanto povas mane akcepti tiun, kiu povas sekvi rin.",
|
"account.locked_info": "La privateco de tiu konto estas elektita kiel fermita. La posedanto povas mane akcepti tiun, kiu povas sekvi rin.",
|
||||||
|
@ -30,14 +30,14 @@
|
||||||
"account.mention": "Mencii @{name}",
|
"account.mention": "Mencii @{name}",
|
||||||
"account.moved_to": "{name} moviĝis al:",
|
"account.moved_to": "{name} moviĝis al:",
|
||||||
"account.mute": "Silentigi @{name}",
|
"account.mute": "Silentigi @{name}",
|
||||||
"account.mute_notifications": "Silentigi sciigojn de @{name}",
|
"account.mute_notifications": "Silentigi la sciigojn de @{name}",
|
||||||
"account.muted": "Silentigita",
|
"account.muted": "Silentigita",
|
||||||
"account.posts": "Mesaĝoj",
|
"account.posts": "Mesaĝoj",
|
||||||
"account.posts_with_replies": "Kun respondoj",
|
"account.posts_with_replies": "Mesaĝoj kaj respondoj",
|
||||||
"account.report": "Signali @{name}",
|
"account.report": "Signali @{name}",
|
||||||
"account.requested": "Atendo de aprobo. Alklaku por nuligi peton de sekvado",
|
"account.requested": "Atendo de aprobo. Alklaku por nuligi peton de sekvado",
|
||||||
"account.share": "Diskonigi la profilon de @{name}",
|
"account.share": "Kundividi la profilon de @{name}",
|
||||||
"account.show_reblogs": "Montri diskonigojn de @{name}",
|
"account.show_reblogs": "Montri la plusendojn de @{name}",
|
||||||
"account.statuses_counter": "{count, plural, one {{counter} Mesaĝo} other {{counter} Mesaĝoj}}",
|
"account.statuses_counter": "{count, plural, one {{counter} Mesaĝo} other {{counter} Mesaĝoj}}",
|
||||||
"account.unblock": "Malbloki @{name}",
|
"account.unblock": "Malbloki @{name}",
|
||||||
"account.unblock_domain": "Malbloki {domain}",
|
"account.unblock_domain": "Malbloki {domain}",
|
||||||
|
@ -74,7 +74,7 @@
|
||||||
"column.directory": "Trarigardi profilojn",
|
"column.directory": "Trarigardi profilojn",
|
||||||
"column.domain_blocks": "Blokitaj domajnoj",
|
"column.domain_blocks": "Blokitaj domajnoj",
|
||||||
"column.favourites": "Stelumoj",
|
"column.favourites": "Stelumoj",
|
||||||
"column.follow_requests": "Petoj de sekvado",
|
"column.follow_requests": "Demandoj de sekvado",
|
||||||
"column.home": "Hejmo",
|
"column.home": "Hejmo",
|
||||||
"column.lists": "Listoj",
|
"column.lists": "Listoj",
|
||||||
"column.mutes": "Silentigitaj uzantoj",
|
"column.mutes": "Silentigitaj uzantoj",
|
||||||
|
@ -99,7 +99,7 @@
|
||||||
"compose_form.hashtag_warning": "Ĉi tiu mesaĝo ne estos listigita per ajna kradvorto. Nur publikaj mesaĝoj estas serĉeblaj per kradvortoj.",
|
"compose_form.hashtag_warning": "Ĉi tiu mesaĝo ne estos listigita per ajna kradvorto. Nur publikaj mesaĝoj estas serĉeblaj per kradvortoj.",
|
||||||
"compose_form.lock_disclaimer": "Via konta ne estas {locked}. Iu ajn povas sekvi vin por vidi viajn mesaĝojn, kiuj estas nur por sekvantoj.",
|
"compose_form.lock_disclaimer": "Via konta ne estas {locked}. Iu ajn povas sekvi vin por vidi viajn mesaĝojn, kiuj estas nur por sekvantoj.",
|
||||||
"compose_form.lock_disclaimer.lock": "ŝlosita",
|
"compose_form.lock_disclaimer.lock": "ŝlosita",
|
||||||
"compose_form.placeholder": "Pri kio vi pensas?",
|
"compose_form.placeholder": "Kion vi pensas?",
|
||||||
"compose_form.poll.add_option": "Aldoni elekteblon",
|
"compose_form.poll.add_option": "Aldoni elekteblon",
|
||||||
"compose_form.poll.duration": "Balotenketa daŭro",
|
"compose_form.poll.duration": "Balotenketa daŭro",
|
||||||
"compose_form.poll.option_placeholder": "Elekteblo {number}",
|
"compose_form.poll.option_placeholder": "Elekteblo {number}",
|
||||||
|
@ -198,10 +198,10 @@
|
||||||
"explore.trending_tags": "Kradvortoj",
|
"explore.trending_tags": "Kradvortoj",
|
||||||
"follow_recommendations.done": "Farita",
|
"follow_recommendations.done": "Farita",
|
||||||
"follow_recommendations.heading": "Follow people you'd like to see posts from! Here are some suggestions.",
|
"follow_recommendations.heading": "Follow people you'd like to see posts from! Here are some suggestions.",
|
||||||
"follow_recommendations.lead": "Posts from people you follow will show up in chronological order on your home feed. Don't be afraid to make mistakes, you can unfollow people just as easily any time!",
|
"follow_recommendations.lead": "La mesaĝoj de personoj kiujn vi sekvas, aperos kronologie en via abonfluo. Ne timu erari, vi povas ĉesi sekvi facile iam ajn!",
|
||||||
"follow_request.authorize": "Rajtigi",
|
"follow_request.authorize": "Rajtigi",
|
||||||
"follow_request.reject": "Rifuzi",
|
"follow_request.reject": "Rifuzi",
|
||||||
"follow_requests.unlocked_explanation": "Kvankam via konto ne estas ŝlosita, la dungitaro de {domain} opiniis, ke vi eble volus revizii petojn de sekvadon el ĉi tiuj kontoj permane.",
|
"follow_requests.unlocked_explanation": "Kvankam via konto ne estas ŝlosita, la teamo de {domain} pensis ke vi eble volas kontroli la demandojn de sekvado de ĉi tiuj kontoj permane.",
|
||||||
"generic.saved": "Konservita",
|
"generic.saved": "Konservita",
|
||||||
"getting_started.developers": "Programistoj",
|
"getting_started.developers": "Programistoj",
|
||||||
"getting_started.directory": "Profilujo",
|
"getting_started.directory": "Profilujo",
|
||||||
|
@ -221,7 +221,7 @@
|
||||||
"hashtag.column_settings.tag_mode.none": "Neniu",
|
"hashtag.column_settings.tag_mode.none": "Neniu",
|
||||||
"hashtag.column_settings.tag_toggle": "Aldoni pliajn etikedojn por ĉi tiu kolumno",
|
"hashtag.column_settings.tag_toggle": "Aldoni pliajn etikedojn por ĉi tiu kolumno",
|
||||||
"home.column_settings.basic": "Bazaj agordoj",
|
"home.column_settings.basic": "Bazaj agordoj",
|
||||||
"home.column_settings.show_reblogs": "Montri diskonigojn",
|
"home.column_settings.show_reblogs": "Montri plusendojn",
|
||||||
"home.column_settings.show_replies": "Montri respondojn",
|
"home.column_settings.show_replies": "Montri respondojn",
|
||||||
"home.hide_announcements": "Kaŝi anoncojn",
|
"home.hide_announcements": "Kaŝi anoncojn",
|
||||||
"home.show_announcements": "Montri anoncojn",
|
"home.show_announcements": "Montri anoncojn",
|
||||||
|
@ -230,7 +230,7 @@
|
||||||
"intervals.full.minutes": "{number, plural, one {# minuto} other {# minutoj}}",
|
"intervals.full.minutes": "{number, plural, one {# minuto} other {# minutoj}}",
|
||||||
"keyboard_shortcuts.back": "reveni",
|
"keyboard_shortcuts.back": "reveni",
|
||||||
"keyboard_shortcuts.blocked": "malfermi la liston de blokitaj uzantoj",
|
"keyboard_shortcuts.blocked": "malfermi la liston de blokitaj uzantoj",
|
||||||
"keyboard_shortcuts.boost": "diskonigi",
|
"keyboard_shortcuts.boost": "Plusendi",
|
||||||
"keyboard_shortcuts.column": "fokusi mesaĝon en unu el la kolumnoj",
|
"keyboard_shortcuts.column": "fokusi mesaĝon en unu el la kolumnoj",
|
||||||
"keyboard_shortcuts.compose": "enfokusigi la tekstujon",
|
"keyboard_shortcuts.compose": "enfokusigi la tekstujon",
|
||||||
"keyboard_shortcuts.description": "Priskribo",
|
"keyboard_shortcuts.description": "Priskribo",
|
||||||
|
@ -259,7 +259,7 @@
|
||||||
"keyboard_shortcuts.start": "malfermi la kolumnon «por komenci»",
|
"keyboard_shortcuts.start": "malfermi la kolumnon «por komenci»",
|
||||||
"keyboard_shortcuts.toggle_hidden": "montri/kaŝi tekston malantaŭ enhava averto",
|
"keyboard_shortcuts.toggle_hidden": "montri/kaŝi tekston malantaŭ enhava averto",
|
||||||
"keyboard_shortcuts.toggle_sensitivity": "montri/kaŝi aŭdovidaĵojn",
|
"keyboard_shortcuts.toggle_sensitivity": "montri/kaŝi aŭdovidaĵojn",
|
||||||
"keyboard_shortcuts.toot": "komenci tute novan mesaĝon",
|
"keyboard_shortcuts.toot": "Krei novan mesaĝon",
|
||||||
"keyboard_shortcuts.unfocus": "malenfokusigi la tekstujon aŭ la serĉilon",
|
"keyboard_shortcuts.unfocus": "malenfokusigi la tekstujon aŭ la serĉilon",
|
||||||
"keyboard_shortcuts.up": "iri supren en la listo",
|
"keyboard_shortcuts.up": "iri supren en la listo",
|
||||||
"lightbox.close": "Fermi",
|
"lightbox.close": "Fermi",
|
||||||
|
@ -321,7 +321,7 @@
|
||||||
"notification.mention": "{name} menciis vin",
|
"notification.mention": "{name} menciis vin",
|
||||||
"notification.own_poll": "Via balotenketo finiĝitis",
|
"notification.own_poll": "Via balotenketo finiĝitis",
|
||||||
"notification.poll": "Partoprenita balotenketo finiĝis",
|
"notification.poll": "Partoprenita balotenketo finiĝis",
|
||||||
"notification.reblog": "{name} diskonigis vian mesaĝon",
|
"notification.reblog": "{name} plusendis vian mesaĝon",
|
||||||
"notification.status": "{name} ĵus afiŝita",
|
"notification.status": "{name} ĵus afiŝita",
|
||||||
"notification.update": "{name} redaktis afiŝon",
|
"notification.update": "{name} redaktis afiŝon",
|
||||||
"notifications.clear": "Forviŝi sciigojn",
|
"notifications.clear": "Forviŝi sciigojn",
|
||||||
|
@ -337,7 +337,7 @@
|
||||||
"notifications.column_settings.mention": "Mencioj:",
|
"notifications.column_settings.mention": "Mencioj:",
|
||||||
"notifications.column_settings.poll": "Balotenketaj rezultoj:",
|
"notifications.column_settings.poll": "Balotenketaj rezultoj:",
|
||||||
"notifications.column_settings.push": "Puŝsciigoj",
|
"notifications.column_settings.push": "Puŝsciigoj",
|
||||||
"notifications.column_settings.reblog": "Diskonigoj:",
|
"notifications.column_settings.reblog": "Plusendoj:",
|
||||||
"notifications.column_settings.show": "Montri en kolumno",
|
"notifications.column_settings.show": "Montri en kolumno",
|
||||||
"notifications.column_settings.sound": "Eligi sonon",
|
"notifications.column_settings.sound": "Eligi sonon",
|
||||||
"notifications.column_settings.status": "Novaj mesaĝoj:",
|
"notifications.column_settings.status": "Novaj mesaĝoj:",
|
||||||
|
@ -345,7 +345,7 @@
|
||||||
"notifications.column_settings.unread_notifications.highlight": "Marki nelegitajn sciigojn",
|
"notifications.column_settings.unread_notifications.highlight": "Marki nelegitajn sciigojn",
|
||||||
"notifications.column_settings.update": "Redaktoj:",
|
"notifications.column_settings.update": "Redaktoj:",
|
||||||
"notifications.filter.all": "Ĉiuj",
|
"notifications.filter.all": "Ĉiuj",
|
||||||
"notifications.filter.boosts": "Diskonigoj",
|
"notifications.filter.boosts": "Plusendoj",
|
||||||
"notifications.filter.favourites": "Stelumoj",
|
"notifications.filter.favourites": "Stelumoj",
|
||||||
"notifications.filter.follows": "Sekvoj",
|
"notifications.filter.follows": "Sekvoj",
|
||||||
"notifications.filter.mentions": "Mencioj",
|
"notifications.filter.mentions": "Mencioj",
|
||||||
|
@ -449,8 +449,8 @@
|
||||||
"status.admin_status": "Malfermi ĉi tiun mesaĝon en la kontrola interfaco",
|
"status.admin_status": "Malfermi ĉi tiun mesaĝon en la kontrola interfaco",
|
||||||
"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": "Malfari la plusendon",
|
||||||
"status.cannot_reblog": "Ĉi tiu mesaĝo ne diskonigeblas",
|
"status.cannot_reblog": "Ĉi tiu mesaĝo ne povas esti plusendita",
|
||||||
"status.copy": "Kopii la ligilon al la mesaĝo",
|
"status.copy": "Kopii la ligilon al la mesaĝo",
|
||||||
"status.delete": "Forigi",
|
"status.delete": "Forigi",
|
||||||
"status.detailed_status": "Detala konversacia vido",
|
"status.detailed_status": "Detala konversacia vido",
|
||||||
|
@ -475,8 +475,8 @@
|
||||||
"status.read_more": "Legi pli",
|
"status.read_more": "Legi pli",
|
||||||
"status.reblog": "Plusendi",
|
"status.reblog": "Plusendi",
|
||||||
"status.reblog_private": "Plusendi kiel la originala videbleco",
|
"status.reblog_private": "Plusendi kiel la originala videbleco",
|
||||||
"status.reblogged_by": "{name} diskonigis",
|
"status.reblogged_by": "{name} plusendis",
|
||||||
"status.reblogs.empty": "Ankoraŭ neniu diskonigis tiun mesaĝon. Kiam iu faros tion, tiu aperos ĉi tie.",
|
"status.reblogs.empty": "Neniu ankoraŭ plusendis la mesaĝon. Kiam iu faros tion, ili aperos ĉi tie.",
|
||||||
"status.redraft": "Forigi kaj reskribi",
|
"status.redraft": "Forigi kaj reskribi",
|
||||||
"status.remove_bookmark": "Forigi legosignon",
|
"status.remove_bookmark": "Forigi legosignon",
|
||||||
"status.reply": "Respondi",
|
"status.reply": "Respondi",
|
||||||
|
|
|
@ -106,7 +106,7 @@
|
||||||
"compose_form.poll.remove_option": "Eliminar esta opción",
|
"compose_form.poll.remove_option": "Eliminar esta opción",
|
||||||
"compose_form.poll.switch_to_multiple": "Modificar encuesta para permitir múltiples opciones",
|
"compose_form.poll.switch_to_multiple": "Modificar encuesta para permitir múltiples opciones",
|
||||||
"compose_form.poll.switch_to_single": "Modificar encuesta para permitir una única opción",
|
"compose_form.poll.switch_to_single": "Modificar encuesta para permitir una única opción",
|
||||||
"compose_form.publish": "Publish",
|
"compose_form.publish": "Publicar",
|
||||||
"compose_form.publish_loud": "¡{publish}!",
|
"compose_form.publish_loud": "¡{publish}!",
|
||||||
"compose_form.save_changes": "Guardar cambios",
|
"compose_form.save_changes": "Guardar cambios",
|
||||||
"compose_form.sensitive.hide": "Marcar multimedia como sensible",
|
"compose_form.sensitive.hide": "Marcar multimedia como sensible",
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
"announcement.announcement": "Fógra",
|
"announcement.announcement": "Fógra",
|
||||||
"attachments_list.unprocessed": "(unprocessed)",
|
"attachments_list.unprocessed": "(unprocessed)",
|
||||||
"autosuggest_hashtag.per_week": "{count} per week",
|
"autosuggest_hashtag.per_week": "{count} per week",
|
||||||
"boost_modal.combo": "You can press {combo} to skip this next time",
|
"boost_modal.combo": "Is féidir leat brúigh {combo} chun é seo a scipeáil an chéad uair eile",
|
||||||
"bundle_column_error.body": "Something went wrong while loading this component.",
|
"bundle_column_error.body": "Something went wrong while loading this component.",
|
||||||
"bundle_column_error.retry": "Bain triail as arís",
|
"bundle_column_error.retry": "Bain triail as arís",
|
||||||
"bundle_column_error.title": "Network error",
|
"bundle_column_error.title": "Network error",
|
||||||
|
@ -73,7 +73,7 @@
|
||||||
"column.direct": "Direct messages",
|
"column.direct": "Direct messages",
|
||||||
"column.directory": "Brabhsáil próifílí",
|
"column.directory": "Brabhsáil próifílí",
|
||||||
"column.domain_blocks": "Blocked domains",
|
"column.domain_blocks": "Blocked domains",
|
||||||
"column.favourites": "Favourites",
|
"column.favourites": "Roghanna",
|
||||||
"column.follow_requests": "Follow requests",
|
"column.follow_requests": "Follow requests",
|
||||||
"column.home": "Baile",
|
"column.home": "Baile",
|
||||||
"column.lists": "Liostaí",
|
"column.lists": "Liostaí",
|
||||||
|
@ -120,7 +120,7 @@
|
||||||
"confirmations.block.confirm": "Block",
|
"confirmations.block.confirm": "Block",
|
||||||
"confirmations.block.message": "Are you sure you want to block {name}?",
|
"confirmations.block.message": "Are you sure you want to block {name}?",
|
||||||
"confirmations.delete.confirm": "Delete",
|
"confirmations.delete.confirm": "Delete",
|
||||||
"confirmations.delete.message": "Are you sure you want to delete this status?",
|
"confirmations.delete.message": "An bhfuil tú cinnte gur mhaith leat an phostáil seo a scriosadh?",
|
||||||
"confirmations.delete_list.confirm": "Delete",
|
"confirmations.delete_list.confirm": "Delete",
|
||||||
"confirmations.delete_list.message": "Are you sure you want to permanently delete this list?",
|
"confirmations.delete_list.message": "Are you sure you want to permanently delete this list?",
|
||||||
"confirmations.discard_edit_media.confirm": "Faigh réidh de",
|
"confirmations.discard_edit_media.confirm": "Faigh réidh de",
|
||||||
|
@ -133,7 +133,7 @@
|
||||||
"confirmations.mute.explanation": "This will hide posts from them and posts mentioning them, but it will still allow them to see your posts and follow you.",
|
"confirmations.mute.explanation": "This will hide posts from them and posts mentioning them, but it will still allow them to see your posts and follow you.",
|
||||||
"confirmations.mute.message": "An bhfuil tú cinnte gur mhaith leat {name} a bhalbhú?",
|
"confirmations.mute.message": "An bhfuil tú cinnte gur mhaith leat {name} a bhalbhú?",
|
||||||
"confirmations.redraft.confirm": "Delete & redraft",
|
"confirmations.redraft.confirm": "Delete & redraft",
|
||||||
"confirmations.redraft.message": "Are you sure you want to delete this status and re-draft it? Favourites and boosts will be lost, and replies to the original post will be orphaned.",
|
"confirmations.redraft.message": "An bhfuil tú cinnte gur mhaith leat an phostáil sin a scriosadh agus athdhréachtú? Beidh roghanna agus treisithe caillte, agus beidh freagraí ar an bpostáil bhunúsach ina ndílleachtaí.",
|
||||||
"confirmations.reply.confirm": "Reply",
|
"confirmations.reply.confirm": "Reply",
|
||||||
"confirmations.reply.message": "Replying now will overwrite the message you are currently composing. Are you sure you want to proceed?",
|
"confirmations.reply.message": "Replying now will overwrite the message you are currently composing. Are you sure you want to proceed?",
|
||||||
"confirmations.unfollow.confirm": "Ná lean",
|
"confirmations.unfollow.confirm": "Ná lean",
|
||||||
|
@ -164,7 +164,7 @@
|
||||||
"emoji_button.symbols": "Symbols",
|
"emoji_button.symbols": "Symbols",
|
||||||
"emoji_button.travel": "Taisteal ⁊ Áiteanna",
|
"emoji_button.travel": "Taisteal ⁊ Áiteanna",
|
||||||
"empty_column.account_suspended": "Account suspended",
|
"empty_column.account_suspended": "Account suspended",
|
||||||
"empty_column.account_timeline": "No posts found",
|
"empty_column.account_timeline": "Níl postálacha ar bith anseo!",
|
||||||
"empty_column.account_unavailable": "Níl an phróifíl ar fáil",
|
"empty_column.account_unavailable": "Níl an phróifíl ar fáil",
|
||||||
"empty_column.blocks": "You haven't blocked any users yet.",
|
"empty_column.blocks": "You haven't blocked any users yet.",
|
||||||
"empty_column.bookmarked_statuses": "You don't have any bookmarked posts yet. When you bookmark one, it will show up here.",
|
"empty_column.bookmarked_statuses": "You don't have any bookmarked posts yet. When you bookmark one, it will show up here.",
|
||||||
|
@ -172,8 +172,8 @@
|
||||||
"empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
|
"empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
|
||||||
"empty_column.domain_blocks": "There are no blocked domains yet.",
|
"empty_column.domain_blocks": "There are no blocked domains yet.",
|
||||||
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!",
|
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!",
|
||||||
"empty_column.favourited_statuses": "You don't have any favourite posts yet. When you favourite one, it will show up here.",
|
"empty_column.favourited_statuses": "Níor roghnaigh tú postáil ar bith fós. Nuair a roghnaigh tú ceann, beidh sí le feiceáil anseo.",
|
||||||
"empty_column.favourites": "No one has favourited this post yet. When someone does, they will show up here.",
|
"empty_column.favourites": "Níor roghnaigh éinne an phostáil seo fós. Nuair a roghnaigh duine éigin, beidh siad le feiceáil anseo.",
|
||||||
"empty_column.follow_recommendations": "Looks like no suggestions could be generated for you. You can try using search to look for people you might know or explore trending hashtags.",
|
"empty_column.follow_recommendations": "Looks like no suggestions could be generated for you. You can try using search to look for people you might know or explore trending hashtags.",
|
||||||
"empty_column.follow_requests": "You don't have any follow requests yet. When you receive one, it will show up here.",
|
"empty_column.follow_requests": "You don't have any follow requests yet. When you receive one, it will show up here.",
|
||||||
"empty_column.hashtag": "There is nothing in this hashtag yet.",
|
"empty_column.hashtag": "There is nothing in this hashtag yet.",
|
||||||
|
@ -221,7 +221,7 @@
|
||||||
"hashtag.column_settings.tag_mode.none": "None of these",
|
"hashtag.column_settings.tag_mode.none": "None of these",
|
||||||
"hashtag.column_settings.tag_toggle": "Include additional tags in this column",
|
"hashtag.column_settings.tag_toggle": "Include additional tags in this column",
|
||||||
"home.column_settings.basic": "Basic",
|
"home.column_settings.basic": "Basic",
|
||||||
"home.column_settings.show_reblogs": "Show boosts",
|
"home.column_settings.show_reblogs": "Taispeáin treisithe",
|
||||||
"home.column_settings.show_replies": "Show replies",
|
"home.column_settings.show_replies": "Show replies",
|
||||||
"home.hide_announcements": "Hide announcements",
|
"home.hide_announcements": "Hide announcements",
|
||||||
"home.show_announcements": "Show announcements",
|
"home.show_announcements": "Show announcements",
|
||||||
|
@ -230,15 +230,15 @@
|
||||||
"intervals.full.minutes": "{number, plural, one {# minute} other {# minutes}}",
|
"intervals.full.minutes": "{number, plural, one {# minute} other {# minutes}}",
|
||||||
"keyboard_shortcuts.back": "to navigate back",
|
"keyboard_shortcuts.back": "to navigate back",
|
||||||
"keyboard_shortcuts.blocked": "to open blocked users list",
|
"keyboard_shortcuts.blocked": "to open blocked users list",
|
||||||
"keyboard_shortcuts.boost": "to boost",
|
"keyboard_shortcuts.boost": "Treisigh postáil",
|
||||||
"keyboard_shortcuts.column": "to focus a status in one of the columns",
|
"keyboard_shortcuts.column": "to focus a status in one of the columns",
|
||||||
"keyboard_shortcuts.compose": "to focus the compose textarea",
|
"keyboard_shortcuts.compose": "to focus the compose textarea",
|
||||||
"keyboard_shortcuts.description": "Description",
|
"keyboard_shortcuts.description": "Description",
|
||||||
"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": "to open status",
|
"keyboard_shortcuts.enter": "Oscail postáil",
|
||||||
"keyboard_shortcuts.favourite": "to favourite",
|
"keyboard_shortcuts.favourite": "Roghnaigh postáil",
|
||||||
"keyboard_shortcuts.favourites": "to open favourites list",
|
"keyboard_shortcuts.favourites": "Oscail liosta roghanna",
|
||||||
"keyboard_shortcuts.federated": "to open federated timeline",
|
"keyboard_shortcuts.federated": "to open federated timeline",
|
||||||
"keyboard_shortcuts.heading": "Keyboard Shortcuts",
|
"keyboard_shortcuts.heading": "Keyboard Shortcuts",
|
||||||
"keyboard_shortcuts.home": "to open home timeline",
|
"keyboard_shortcuts.home": "to open home timeline",
|
||||||
|
@ -252,14 +252,14 @@
|
||||||
"keyboard_shortcuts.open_media": "to open media",
|
"keyboard_shortcuts.open_media": "to open media",
|
||||||
"keyboard_shortcuts.pinned": "to open pinned posts list",
|
"keyboard_shortcuts.pinned": "to open pinned posts list",
|
||||||
"keyboard_shortcuts.profile": "Oscail próifíl an t-údar",
|
"keyboard_shortcuts.profile": "Oscail próifíl an t-údar",
|
||||||
"keyboard_shortcuts.reply": "to reply",
|
"keyboard_shortcuts.reply": "Freagair ar phostáil",
|
||||||
"keyboard_shortcuts.requests": "to open follow requests list",
|
"keyboard_shortcuts.requests": "to open follow requests list",
|
||||||
"keyboard_shortcuts.search": "to focus search",
|
"keyboard_shortcuts.search": "to focus search",
|
||||||
"keyboard_shortcuts.spoilers": "to show/hide CW field",
|
"keyboard_shortcuts.spoilers": "to show/hide CW field",
|
||||||
"keyboard_shortcuts.start": "to open \"get started\" column",
|
"keyboard_shortcuts.start": "to open \"get started\" column",
|
||||||
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
||||||
"keyboard_shortcuts.toggle_sensitivity": "to show/hide media",
|
"keyboard_shortcuts.toggle_sensitivity": "to show/hide media",
|
||||||
"keyboard_shortcuts.toot": "to start a brand new post",
|
"keyboard_shortcuts.toot": "Cuir tús le postáil nua",
|
||||||
"keyboard_shortcuts.unfocus": "to un-focus compose textarea/search",
|
"keyboard_shortcuts.unfocus": "to un-focus compose textarea/search",
|
||||||
"keyboard_shortcuts.up": "to move up in the list",
|
"keyboard_shortcuts.up": "to move up in the list",
|
||||||
"lightbox.close": "Close",
|
"lightbox.close": "Close",
|
||||||
|
@ -294,13 +294,13 @@
|
||||||
"navigation_bar.blocks": "Blocked users",
|
"navigation_bar.blocks": "Blocked users",
|
||||||
"navigation_bar.bookmarks": "Bookmarks",
|
"navigation_bar.bookmarks": "Bookmarks",
|
||||||
"navigation_bar.community_timeline": "Local timeline",
|
"navigation_bar.community_timeline": "Local timeline",
|
||||||
"navigation_bar.compose": "Compose new post",
|
"navigation_bar.compose": "Cum postáil nua",
|
||||||
"navigation_bar.direct": "Direct messages",
|
"navigation_bar.direct": "Direct messages",
|
||||||
"navigation_bar.discover": "Discover",
|
"navigation_bar.discover": "Discover",
|
||||||
"navigation_bar.domain_blocks": "Hidden domains",
|
"navigation_bar.domain_blocks": "Hidden domains",
|
||||||
"navigation_bar.edit_profile": "Cuir an phróifíl in eagar",
|
"navigation_bar.edit_profile": "Cuir an phróifíl in eagar",
|
||||||
"navigation_bar.explore": "Explore",
|
"navigation_bar.explore": "Explore",
|
||||||
"navigation_bar.favourites": "Favourites",
|
"navigation_bar.favourites": "Roghanna",
|
||||||
"navigation_bar.filters": "Focail bhalbhaithe",
|
"navigation_bar.filters": "Focail bhalbhaithe",
|
||||||
"navigation_bar.follow_requests": "Follow requests",
|
"navigation_bar.follow_requests": "Follow requests",
|
||||||
"navigation_bar.follows_and_followers": "Ag leanúint agus do do leanúint",
|
"navigation_bar.follows_and_followers": "Ag leanúint agus do do leanúint",
|
||||||
|
@ -315,20 +315,20 @@
|
||||||
"navigation_bar.public_timeline": "Federated timeline",
|
"navigation_bar.public_timeline": "Federated timeline",
|
||||||
"navigation_bar.security": "Security",
|
"navigation_bar.security": "Security",
|
||||||
"notification.admin.sign_up": "{name} signed up",
|
"notification.admin.sign_up": "{name} signed up",
|
||||||
"notification.favourite": "{name} favourited your status",
|
"notification.favourite": "Roghnaigh {name} do phostáil",
|
||||||
"notification.follow": "Lean {name} thú",
|
"notification.follow": "Lean {name} thú",
|
||||||
"notification.follow_request": "D'iarr {name} ort do chuntas a leanúint",
|
"notification.follow_request": "D'iarr {name} ort do chuntas a leanúint",
|
||||||
"notification.mention": "{name} mentioned you",
|
"notification.mention": "{name} mentioned you",
|
||||||
"notification.own_poll": "Your poll has ended",
|
"notification.own_poll": "Your poll has ended",
|
||||||
"notification.poll": "A poll you have voted in has ended",
|
"notification.poll": "A poll you have voted in has ended",
|
||||||
"notification.reblog": "{name} boosted your status",
|
"notification.reblog": "Threisigh {name} do phostáil",
|
||||||
"notification.status": "{name} just posted",
|
"notification.status": "Phostáil {name} díreach",
|
||||||
"notification.update": "Chuir {name} postáil in eagar",
|
"notification.update": "Chuir {name} postáil in eagar",
|
||||||
"notifications.clear": "Clear notifications",
|
"notifications.clear": "Clear notifications",
|
||||||
"notifications.clear_confirmation": "Are you sure you want to permanently clear all your notifications?",
|
"notifications.clear_confirmation": "Are you sure you want to permanently clear all your notifications?",
|
||||||
"notifications.column_settings.admin.sign_up": "New sign-ups:",
|
"notifications.column_settings.admin.sign_up": "New sign-ups:",
|
||||||
"notifications.column_settings.alert": "Desktop notifications",
|
"notifications.column_settings.alert": "Desktop notifications",
|
||||||
"notifications.column_settings.favourite": "Favourites:",
|
"notifications.column_settings.favourite": "Roghanna:",
|
||||||
"notifications.column_settings.filter_bar.advanced": "Display all categories",
|
"notifications.column_settings.filter_bar.advanced": "Display all categories",
|
||||||
"notifications.column_settings.filter_bar.category": "Quick filter bar",
|
"notifications.column_settings.filter_bar.category": "Quick filter bar",
|
||||||
"notifications.column_settings.filter_bar.show_bar": "Show filter bar",
|
"notifications.column_settings.filter_bar.show_bar": "Show filter bar",
|
||||||
|
@ -337,16 +337,16 @@
|
||||||
"notifications.column_settings.mention": "Mentions:",
|
"notifications.column_settings.mention": "Mentions:",
|
||||||
"notifications.column_settings.poll": "Poll results:",
|
"notifications.column_settings.poll": "Poll results:",
|
||||||
"notifications.column_settings.push": "Push notifications",
|
"notifications.column_settings.push": "Push notifications",
|
||||||
"notifications.column_settings.reblog": "Boosts:",
|
"notifications.column_settings.reblog": "Treisithe:",
|
||||||
"notifications.column_settings.show": "Show in column",
|
"notifications.column_settings.show": "Show in column",
|
||||||
"notifications.column_settings.sound": "Play sound",
|
"notifications.column_settings.sound": "Play sound",
|
||||||
"notifications.column_settings.status": "New posts:",
|
"notifications.column_settings.status": "Postálacha nua:",
|
||||||
"notifications.column_settings.unread_notifications.category": "Unread notifications",
|
"notifications.column_settings.unread_notifications.category": "Unread notifications",
|
||||||
"notifications.column_settings.unread_notifications.highlight": "Highlight unread notifications",
|
"notifications.column_settings.unread_notifications.highlight": "Highlight unread notifications",
|
||||||
"notifications.column_settings.update": "Eagair:",
|
"notifications.column_settings.update": "Eagair:",
|
||||||
"notifications.filter.all": "All",
|
"notifications.filter.all": "All",
|
||||||
"notifications.filter.boosts": "Boosts",
|
"notifications.filter.boosts": "Treisithe",
|
||||||
"notifications.filter.favourites": "Favourites",
|
"notifications.filter.favourites": "Roghanna",
|
||||||
"notifications.filter.follows": "Follows",
|
"notifications.filter.follows": "Follows",
|
||||||
"notifications.filter.mentions": "Mentions",
|
"notifications.filter.mentions": "Mentions",
|
||||||
"notifications.filter.polls": "Poll results",
|
"notifications.filter.polls": "Poll results",
|
||||||
|
@ -402,7 +402,7 @@
|
||||||
"report.category.subtitle": "Choose the best match",
|
"report.category.subtitle": "Choose the best match",
|
||||||
"report.category.title": "Tell us what's going on with this {type}",
|
"report.category.title": "Tell us what's going on with this {type}",
|
||||||
"report.category.title_account": "próifíl",
|
"report.category.title_account": "próifíl",
|
||||||
"report.category.title_status": "post",
|
"report.category.title_status": "postáil",
|
||||||
"report.close": "Déanta",
|
"report.close": "Déanta",
|
||||||
"report.comment.title": "Is there anything else you think we should know?",
|
"report.comment.title": "Is there anything else you think we should know?",
|
||||||
"report.forward": "Forward to {target}",
|
"report.forward": "Forward to {target}",
|
||||||
|
@ -435,7 +435,7 @@
|
||||||
"search_popout.search_format": "Advanced search format",
|
"search_popout.search_format": "Advanced search format",
|
||||||
"search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.",
|
"search_popout.tips.full_text": "Simple text returns statuses you have written, favourited, boosted, or have been mentioned in, as well as matching usernames, display names, and hashtags.",
|
||||||
"search_popout.tips.hashtag": "haischlib",
|
"search_popout.tips.hashtag": "haischlib",
|
||||||
"search_popout.tips.status": "status",
|
"search_popout.tips.status": "postáil",
|
||||||
"search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags",
|
"search_popout.tips.text": "Simple text returns matching display names, usernames and hashtags",
|
||||||
"search_popout.tips.user": "user",
|
"search_popout.tips.user": "user",
|
||||||
"search_results.accounts": "Daoine",
|
"search_results.accounts": "Daoine",
|
||||||
|
@ -449,8 +449,8 @@
|
||||||
"status.admin_status": "Open this status in the moderation interface",
|
"status.admin_status": "Open this status in the moderation interface",
|
||||||
"status.block": "Block @{name}",
|
"status.block": "Block @{name}",
|
||||||
"status.bookmark": "Bookmark",
|
"status.bookmark": "Bookmark",
|
||||||
"status.cancel_reblog_private": "Unboost",
|
"status.cancel_reblog_private": "Díthreisigh",
|
||||||
"status.cannot_reblog": "This post cannot be boosted",
|
"status.cannot_reblog": "Ní féidir an phostáil seo a threisiú",
|
||||||
"status.copy": "Copy link to status",
|
"status.copy": "Copy link to status",
|
||||||
"status.delete": "Scrios",
|
"status.delete": "Scrios",
|
||||||
"status.detailed_status": "Detailed conversation view",
|
"status.detailed_status": "Detailed conversation view",
|
||||||
|
@ -459,7 +459,7 @@
|
||||||
"status.edited": "Curtha in eagar in {date}",
|
"status.edited": "Curtha in eagar in {date}",
|
||||||
"status.edited_x_times": "Curtha in eagar {count, plural, one {{count} uair amháin} two {{count} uair} few {{count} uair} many {{count} uair} other {{count} uair}}",
|
"status.edited_x_times": "Curtha in eagar {count, plural, one {{count} uair amháin} two {{count} uair} few {{count} uair} many {{count} uair} other {{count} uair}}",
|
||||||
"status.embed": "Embed",
|
"status.embed": "Embed",
|
||||||
"status.favourite": "Favourite",
|
"status.favourite": "Rogha",
|
||||||
"status.filtered": "Filtered",
|
"status.filtered": "Filtered",
|
||||||
"status.history.created": "{name} created {date}",
|
"status.history.created": "{name} created {date}",
|
||||||
"status.history.edited": "Curtha in eagar ag {name} in {date}",
|
"status.history.edited": "Curtha in eagar ag {name} in {date}",
|
||||||
|
@ -473,10 +473,10 @@
|
||||||
"status.pin": "Pionnáil ar do phróifíl",
|
"status.pin": "Pionnáil ar do phróifíl",
|
||||||
"status.pinned": "Pinned post",
|
"status.pinned": "Pinned post",
|
||||||
"status.read_more": "Read more",
|
"status.read_more": "Read more",
|
||||||
"status.reblog": "Boost",
|
"status.reblog": "Treisigh",
|
||||||
"status.reblog_private": "Boost with original visibility",
|
"status.reblog_private": "Treisigh le léargas bunúsach",
|
||||||
"status.reblogged_by": "{name} boosted",
|
"status.reblogged_by": "Treisithe ag {name}",
|
||||||
"status.reblogs.empty": "No one has boosted this post yet. When someone does, they will show up here.",
|
"status.reblogs.empty": "Níor threisigh éinne an phostáil seo fós. Nuair a threisigh duine éigin, beidh siad le feiceáil anseo.",
|
||||||
"status.redraft": "Delete & re-draft",
|
"status.redraft": "Delete & re-draft",
|
||||||
"status.remove_bookmark": "Remove bookmark",
|
"status.remove_bookmark": "Remove bookmark",
|
||||||
"status.reply": "Reply",
|
"status.reply": "Reply",
|
||||||
|
|
|
@ -106,7 +106,7 @@
|
||||||
"compose_form.poll.remove_option": "Thoir an roghainn seo air falbh",
|
"compose_form.poll.remove_option": "Thoir an roghainn seo air falbh",
|
||||||
"compose_form.poll.switch_to_multiple": "Atharraich an cunntas-bheachd ach an gabh iomadh roghainn a thaghadh",
|
"compose_form.poll.switch_to_multiple": "Atharraich an cunntas-bheachd ach an gabh iomadh roghainn a thaghadh",
|
||||||
"compose_form.poll.switch_to_single": "Atharraich an cunntas-bheachd gus nach gabh ach aon roghainn a thaghadh",
|
"compose_form.poll.switch_to_single": "Atharraich an cunntas-bheachd gus nach gabh ach aon roghainn a thaghadh",
|
||||||
"compose_form.publish": "Publish",
|
"compose_form.publish": "Foillsich",
|
||||||
"compose_form.publish_loud": "{publish}!",
|
"compose_form.publish_loud": "{publish}!",
|
||||||
"compose_form.save_changes": "Sàbhail na h-atharraichean",
|
"compose_form.save_changes": "Sàbhail na h-atharraichean",
|
||||||
"compose_form.sensitive.hide": "{count, plural, one {Cuir comharra gu bheil am meadhan frionasach} two {Cuir comharra gu bheil na meadhanan frionasach} few {Cuir comharra gu bheil na meadhanan frionasach} other {Cuir comharra gu bheil na meadhanan frionasach}}",
|
"compose_form.sensitive.hide": "{count, plural, one {Cuir comharra gu bheil am meadhan frionasach} two {Cuir comharra gu bheil na meadhanan frionasach} few {Cuir comharra gu bheil na meadhanan frionasach} other {Cuir comharra gu bheil na meadhanan frionasach}}",
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
"account.badges.bot": "בוט",
|
"account.badges.bot": "בוט",
|
||||||
"account.badges.group": "קבוצה",
|
"account.badges.group": "קבוצה",
|
||||||
"account.block": "חסמי את @{name}",
|
"account.block": "חסמי את @{name}",
|
||||||
"account.block_domain": "חסמו את שם המתחם (דומיין) {domain}",
|
"account.block_domain": "חסמו את קהילת {domain}",
|
||||||
"account.blocked": "חסום",
|
"account.blocked": "חסום",
|
||||||
"account.browse_more_on_origin_server": "ראה יותר בפרופיל המקורי",
|
"account.browse_more_on_origin_server": "ראה יותר בפרופיל המקורי",
|
||||||
"account.cancel_follow_request": "בטל בקשת מעקב",
|
"account.cancel_follow_request": "בטל בקשת מעקב",
|
||||||
|
@ -32,20 +32,20 @@
|
||||||
"account.mute": "להשתיק את @{name}",
|
"account.mute": "להשתיק את @{name}",
|
||||||
"account.mute_notifications": "להסתיר התראות מ @{name}",
|
"account.mute_notifications": "להסתיר התראות מ @{name}",
|
||||||
"account.muted": "מושתק",
|
"account.muted": "מושתק",
|
||||||
"account.posts": "חצרוצים",
|
"account.posts": "פוסטים",
|
||||||
"account.posts_with_replies": "חצרוצים ותגובות",
|
"account.posts_with_replies": "פוסטים ותגובות",
|
||||||
"account.report": "דווח על @{name}",
|
"account.report": "דווח על @{name}",
|
||||||
"account.requested": "בהמתנה לאישור. לחצי כדי לבטל בקשת מעקב",
|
"account.requested": "בהמתנה לאישור. לחצי כדי לבטל בקשת מעקב",
|
||||||
"account.share": "שתף את הפרופיל של @{name}",
|
"account.share": "שתף את הפרופיל של @{name}",
|
||||||
"account.show_reblogs": "הצג הדהודים מאת @{name}",
|
"account.show_reblogs": "הצג הדהודים מאת @{name}",
|
||||||
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
|
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
|
||||||
"account.unblock": "הסר את החסימה של @{name}",
|
"account.unblock": "הסר את החסימה של @{name}",
|
||||||
"account.unblock_domain": "הסראת שם המתחם {domain}",
|
"account.unblock_domain": "הסירי את החסימה של קהילת {domain}",
|
||||||
"account.unblock_short": "הסר חסימה",
|
"account.unblock_short": "הסר חסימה",
|
||||||
"account.unendorse": "אל תקדם בפרופיל",
|
"account.unendorse": "אל תקדם בפרופיל",
|
||||||
"account.unfollow": "הפסקת מעקב",
|
"account.unfollow": "הפסקת מעקב",
|
||||||
"account.unmute": "הפסקת השתקת @{name}",
|
"account.unmute": "הפסקת השתקת @{name}",
|
||||||
"account.unmute_notifications": "להפסיק השתקת הודעות מ @{name}",
|
"account.unmute_notifications": "להפסיק השתקת התראות מ @{name}",
|
||||||
"account.unmute_short": "ביטול השתקה",
|
"account.unmute_short": "ביטול השתקה",
|
||||||
"account_note.placeholder": "יש ללחוץ כדי להוסיף הערות",
|
"account_note.placeholder": "יש ללחוץ כדי להוסיף הערות",
|
||||||
"admin.dashboard.daily_retention": "קצב שימור משתמשים (פר יום) אחרי ההרשמה",
|
"admin.dashboard.daily_retention": "קצב שימור משתמשים (פר יום) אחרי ההרשמה",
|
||||||
|
@ -54,49 +54,49 @@
|
||||||
"admin.dashboard.retention.cohort": "חודש רישום",
|
"admin.dashboard.retention.cohort": "חודש רישום",
|
||||||
"admin.dashboard.retention.cohort_size": "משתמשים חדשים",
|
"admin.dashboard.retention.cohort_size": "משתמשים חדשים",
|
||||||
"alert.rate_limited.message": "נא לנסות אחרי {retry_time, time, medium}.",
|
"alert.rate_limited.message": "נא לנסות אחרי {retry_time, time, medium}.",
|
||||||
"alert.rate_limited.title": "מגבלות מיכסה",
|
"alert.rate_limited.title": "חלה הגבלת קצב",
|
||||||
"alert.unexpected.message": "אירעה שגיאה בלתי צפויה.",
|
"alert.unexpected.message": "אירעה שגיאה בלתי צפויה.",
|
||||||
"alert.unexpected.title": "אופס!",
|
"alert.unexpected.title": "אופס!",
|
||||||
"announcement.announcement": "הודעה",
|
"announcement.announcement": "הכרזה",
|
||||||
"attachments_list.unprocessed": "(לא מעובד)",
|
"attachments_list.unprocessed": "(לא מעובד)",
|
||||||
"autosuggest_hashtag.per_week": "{count} לשבוע",
|
"autosuggest_hashtag.per_week": "{count} לשבוע",
|
||||||
"boost_modal.combo": "ניתן להקיש {combo} כדי לדלג בפעם הבאה",
|
"boost_modal.combo": "ניתן להקיש {combo} כדי לדלג בפעם הבאה",
|
||||||
"bundle_column_error.body": "משהו השתבש בעת הצגת הרכיב הזה.",
|
"bundle_column_error.body": "משהו השתבש בעת טעינת הרכיב הזה.",
|
||||||
"bundle_column_error.retry": "לנסות שוב",
|
"bundle_column_error.retry": "לנסות שוב",
|
||||||
"bundle_column_error.title": "שגיאת רשת",
|
"bundle_column_error.title": "שגיאת רשת",
|
||||||
"bundle_modal_error.close": "לסגור",
|
"bundle_modal_error.close": "לסגור",
|
||||||
"bundle_modal_error.message": "משהו השתבש בעת טעינת הרכיב הזה.",
|
"bundle_modal_error.message": "משהו השתבש בעת טעינת הרכיב הזה.",
|
||||||
"bundle_modal_error.retry": "לנסות שוב",
|
"bundle_modal_error.retry": "לנסות שוב",
|
||||||
"column.blocks": "חסימות",
|
"column.blocks": "משתמשים חסומים",
|
||||||
"column.bookmarks": "סימניות",
|
"column.bookmarks": "סימניות",
|
||||||
"column.community": "ציר זמן מקומי",
|
"column.community": "פיד שרת מקומי",
|
||||||
"column.direct": "הודעות ישירות",
|
"column.direct": "הודעות ישירות",
|
||||||
"column.directory": "גלוש פרופילים",
|
"column.directory": "עיין בפרופילים",
|
||||||
"column.domain_blocks": "Hidden domains",
|
"column.domain_blocks": "קהילות (שמות מתחם) מוסתרות",
|
||||||
"column.favourites": "חיבובים",
|
"column.favourites": "חיבובים",
|
||||||
"column.follow_requests": "בקשות מעקב",
|
"column.follow_requests": "בקשות מעקב",
|
||||||
"column.home": "בבית",
|
"column.home": "פיד הבית",
|
||||||
"column.lists": "רשימות",
|
"column.lists": "רשימות",
|
||||||
"column.mutes": "השתקות",
|
"column.mutes": "השתקות",
|
||||||
"column.notifications": "התראות",
|
"column.notifications": "התראות",
|
||||||
"column.pins": "Pinned toot",
|
"column.pins": "פווסטים נעוצים",
|
||||||
"column.public": "בפרהסיה",
|
"column.public": "פיד כללי (כל השרתים)",
|
||||||
"column_back_button.label": "חזרה",
|
"column_back_button.label": "בחזרה",
|
||||||
"column_header.hide_settings": "הסתרת העדפות",
|
"column_header.hide_settings": "הסתרת הגדרות",
|
||||||
"column_header.moveLeft_settings": "הזחת טור לשמאל",
|
"column_header.moveLeft_settings": "הזזת טור לשמאל",
|
||||||
"column_header.moveRight_settings": "הזחת טור לימין",
|
"column_header.moveRight_settings": "הזזת טור לימין",
|
||||||
"column_header.pin": "קיבוע",
|
"column_header.pin": "הצמדה",
|
||||||
"column_header.show_settings": "הצגת העדפות",
|
"column_header.show_settings": "הצגת העדפות",
|
||||||
"column_header.unpin": "שחרור קיבוע",
|
"column_header.unpin": "שחרור הצמדה",
|
||||||
"column_subheading.settings": "אפשרויות",
|
"column_subheading.settings": "אפשרויות",
|
||||||
"community.column_settings.local_only": "מקומי בלבד",
|
"community.column_settings.local_only": "מקומי בלבד",
|
||||||
"community.column_settings.media_only": "Media only",
|
"community.column_settings.media_only": "מדיה בלבד",
|
||||||
"community.column_settings.remote_only": "מרחוק בלבד",
|
"community.column_settings.remote_only": "מרוחק בלבד",
|
||||||
"compose.language.change": "Change language",
|
"compose.language.change": "שינוי שפת הפוסט",
|
||||||
"compose.language.search": "Search languages...",
|
"compose.language.search": "חיפוש שפות...",
|
||||||
"compose_form.direct_message_warning_learn_more": "מידע נוסף",
|
"compose_form.direct_message_warning_learn_more": "מידע נוסף",
|
||||||
"compose_form.encryption_warning": "Posts on Mastodon are not end-to-end encrypted. Do not share any dangerous information over Mastodon.",
|
"compose_form.encryption_warning": "פוסטים במסטודון לא מוצפנים מקצה לקצה. אל תשתפו מידע רגיש במסטודון.",
|
||||||
"compose_form.hashtag_warning": "This toot won't be listed under any hashtag as it is unlisted. Only public toots can be searched by hashtag.",
|
"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": "מה עובר לך בראש?",
|
||||||
|
@ -106,36 +106,36 @@
|
||||||
"compose_form.poll.remove_option": "הסר בחירה זו",
|
"compose_form.poll.remove_option": "הסר בחירה זו",
|
||||||
"compose_form.poll.switch_to_multiple": "אפשרו בחירה מרובה בסקר",
|
"compose_form.poll.switch_to_multiple": "אפשרו בחירה מרובה בסקר",
|
||||||
"compose_form.poll.switch_to_single": "אפשרו בחירה בודדת בסקר",
|
"compose_form.poll.switch_to_single": "אפשרו בחירה בודדת בסקר",
|
||||||
"compose_form.publish": "Publish",
|
"compose_form.publish": "פרסום",
|
||||||
"compose_form.publish_loud": "{publish}!",
|
"compose_form.publish_loud": "{publish}!",
|
||||||
"compose_form.save_changes": "שמירת שינויים",
|
"compose_form.save_changes": "שמירת שינויים",
|
||||||
"compose_form.sensitive.hide": "{count, plural, one {סימון מידע כרגיש} other {סימון מידע כרגיש}}",
|
"compose_form.sensitive.hide": "{count, plural, one {סימון מידע כרגיש} other {סימון מידע כרגיש}}",
|
||||||
"compose_form.sensitive.marked": "{count, plural, one {מידע מסומן כרגיש} other {מידע מסומן כרגיש}}",
|
"compose_form.sensitive.marked": "{count, plural, one {מידע מסומן כרגיש} other {מידע מסומן כרגיש}}",
|
||||||
"compose_form.sensitive.unmarked": "{count, plural, one {מידע לא מסומן כרגיש} other {מידע לא מסומן כרגיש}}",
|
"compose_form.sensitive.unmarked": "{count, plural, one {מידע לא מסומן כרגיש} other {מידע לא מסומן כרגיש}}",
|
||||||
"compose_form.spoiler.marked": "Text is hidden behind warning",
|
"compose_form.spoiler.marked": "הסר אזהרת תוכן",
|
||||||
"compose_form.spoiler.unmarked": "Text is not hidden",
|
"compose_form.spoiler.unmarked": "הוסף אזהרת תוכן",
|
||||||
"compose_form.spoiler_placeholder": "אזהרת תוכן",
|
"compose_form.spoiler_placeholder": "כתוב את האזהרה שלך כאן",
|
||||||
"confirmation_modal.cancel": "ביטול",
|
"confirmation_modal.cancel": "ביטול",
|
||||||
"confirmations.block.block_and_report": "לחסום ולדווח",
|
"confirmations.block.block_and_report": "לחסום ולדווח",
|
||||||
"confirmations.block.confirm": "לחסום",
|
"confirmations.block.confirm": "לחסום",
|
||||||
"confirmations.block.message": "לחסום את {name}?",
|
"confirmations.block.message": "האם את/ה בטוח/ה שברצונך למחוק את \"{name}\"?",
|
||||||
"confirmations.delete.confirm": "למחוק",
|
"confirmations.delete.confirm": "למחוק",
|
||||||
"confirmations.delete.message": "למחוק את ההודעה?",
|
"confirmations.delete.message": "בטוח/ה שאת/ה רוצה למחוק את ההודעה?",
|
||||||
"confirmations.delete_list.confirm": "למחוק",
|
"confirmations.delete_list.confirm": "למחוק",
|
||||||
"confirmations.delete_list.message": "האם אתם בטוחים שאתם רוצים למחוק את הרשימה לצמיתות?",
|
"confirmations.delete_list.message": "האם אתם בטוחים שאתם רוצים למחוק את הרשימה לצמיתות?",
|
||||||
"confirmations.discard_edit_media.confirm": "השלך",
|
"confirmations.discard_edit_media.confirm": "השלך",
|
||||||
"confirmations.discard_edit_media.message": "יש לך שינויים לא שמורים לתיאור המדיה. להשליך אותם בכל זאת?",
|
"confirmations.discard_edit_media.message": "יש לך שינויים לא שמורים לתיאור המדיה. להשליך אותם בכל זאת?",
|
||||||
"confirmations.domain_block.confirm": "הסתר קהילה שלמה",
|
"confirmations.domain_block.confirm": "חסמו לגמרי את שם המתחם (דומיין)",
|
||||||
"confirmations.domain_block.message": "באמת באמת לחסום את כל קהילת {domain}? ברב המקרים השתקות נבחרות של מספר משתמשים מסויימים צריכה להספיק.",
|
"confirmations.domain_block.message": "בטוחה שברצונך באמת לחסום את קהילת {domain}? ברב המקרים השתקה וחסימה של מספר משתמשים עשוייה להספיק. לא תראי תוכל מכלל שם המתחם בפידים הציבוריים או בהתראות שלך. העוקבים שלך מהקהילה הזאת יוסרו",
|
||||||
"confirmations.logout.confirm": "להתנתק",
|
"confirmations.logout.confirm": "להתנתק",
|
||||||
"confirmations.logout.message": "האם אתם בטוחים שאתם רוצים להתנתק?",
|
"confirmations.logout.message": "האם אתם בטוחים שאתם רוצים להתנתק?",
|
||||||
"confirmations.mute.confirm": "להשתיק",
|
"confirmations.mute.confirm": "להשתיק",
|
||||||
"confirmations.mute.explanation": "זה יסתיר חצרוצים שלהם וחצרוצים המזכירים אותם, אבל עדיין יתיר להם לראות פוסטים שלך ולעקוב אחריך.",
|
"confirmations.mute.explanation": "זה יסתיר פוסטים שלהם ופוסטים שמאזכרים אותם, אבל עדיין יתיר להם לראות פוסטים שלך ולעקוב אחריך.",
|
||||||
"confirmations.mute.message": "להשתיק את {name}?",
|
"confirmations.mute.message": "להשתיק את {name}?",
|
||||||
"confirmations.redraft.confirm": "מחק וערוך מחדש",
|
"confirmations.redraft.confirm": "מחק וערוך מחדש",
|
||||||
"confirmations.redraft.message": "Are you sure you want to delete this status and re-draft it? You will lose all replies, boosts and favourites to it.",
|
"confirmations.redraft.message": "בטוחה שאת רוצה למחוק ולהתחיל טיוטה חדשה? חיבובים והדהודים יאבדו, ותגובות לפוסט המקורי ישארו יתומות.",
|
||||||
"confirmations.reply.confirm": "הגב",
|
"confirmations.reply.confirm": "הגב",
|
||||||
"confirmations.reply.message": "הגבה עכשיו ידרוס את ההודעה שאתם כותבים כעת. האם אתם בטוחים שברצונכם להמשיך?",
|
"confirmations.reply.message": "תגובה עכשיו תדרוס את ההודעה שכבר התחלתים לכתוב. האם אתם בטוחים שברצונכם להמשיך?",
|
||||||
"confirmations.unfollow.confirm": "להפסיק מעקב",
|
"confirmations.unfollow.confirm": "להפסיק מעקב",
|
||||||
"confirmations.unfollow.message": "להפסיק מעקב אחרי {name}?",
|
"confirmations.unfollow.message": "להפסיק מעקב אחרי {name}?",
|
||||||
"conversation.delete": "מחיקת שיחה",
|
"conversation.delete": "מחיקת שיחה",
|
||||||
|
@ -149,7 +149,7 @@
|
||||||
"embed.instructions": "ניתן להטמיע את ההודעה באתרך ע\"י העתקת הקוד שלהלן.",
|
"embed.instructions": "ניתן להטמיע את ההודעה באתרך ע\"י העתקת הקוד שלהלן.",
|
||||||
"embed.preview": "דוגמא כיצד זה יראה:",
|
"embed.preview": "דוגמא כיצד זה יראה:",
|
||||||
"emoji_button.activity": "פעילות",
|
"emoji_button.activity": "פעילות",
|
||||||
"emoji_button.clear": "Clear",
|
"emoji_button.clear": "ניקוי",
|
||||||
"emoji_button.custom": "מיוחדים",
|
"emoji_button.custom": "מיוחדים",
|
||||||
"emoji_button.flags": "דגלים",
|
"emoji_button.flags": "דגלים",
|
||||||
"emoji_button.food": "אוכל ושתיה",
|
"emoji_button.food": "אוכל ושתיה",
|
||||||
|
@ -164,22 +164,22 @@
|
||||||
"emoji_button.symbols": "סמלים",
|
"emoji_button.symbols": "סמלים",
|
||||||
"emoji_button.travel": "טיולים ואתרים",
|
"emoji_button.travel": "טיולים ואתרים",
|
||||||
"empty_column.account_suspended": "חשבון מושהה",
|
"empty_column.account_suspended": "חשבון מושהה",
|
||||||
"empty_column.account_timeline": "No toots here!",
|
"empty_column.account_timeline": "אין עדיין אף פוסט!",
|
||||||
"empty_column.account_unavailable": "פרופיל לא זמין",
|
"empty_column.account_unavailable": "פרופיל לא זמין",
|
||||||
"empty_column.blocks": "עדיין לא חסמתם משתמשים אחרים.",
|
"empty_column.blocks": "עדיין לא חסמתם משתמשים אחרים.",
|
||||||
"empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.",
|
"empty_column.bookmarked_statuses": "You don't have any bookmarked toots yet. When you bookmark one, it will show up here.",
|
||||||
"empty_column.community": "טור הסביבה ריק. יש לפרסם משהו כדי שדברים יתרחילו להתגלגל!",
|
"empty_column.community": "פיד השרת המקומי ריק. יש לפרסם משהו כדי שדברים יתרחילו להתגלגל!",
|
||||||
"empty_column.direct": "אין לך שום הודעות פרטיות עדיין. כשתשלחו או תקבלו אחת, היא תופיע כאן.",
|
"empty_column.direct": "אין לך שום הודעות פרטיות עדיין. כשתשלחו או תקבלו אחת, היא תופיע כאן.",
|
||||||
"empty_column.domain_blocks": "There are no hidden domains yet.",
|
"empty_column.domain_blocks": "אין עדיין קהילות מוסתרות.",
|
||||||
"empty_column.explore_statuses": "אין נושאים חמים כרגע. אולי אחר כך!",
|
"empty_column.explore_statuses": "אין נושאים חמים כרגע. אולי אחר כך!",
|
||||||
"empty_column.favourited_statuses": "You don't have any favourite toots yet. When you favourite one, it will show up here.",
|
"empty_column.favourited_statuses": "אין עדיין פוסטים שחיבבת. כשתחבב את הראשון, הוא יופיע כאן.",
|
||||||
"empty_column.favourites": "No one has favourited this toot yet. When someone does, they will show up here.",
|
"empty_column.favourites": "עוד לא חיבבו את הפוסט הזה. כאשר זה יקרה, החיבובים יופיעו כאן.",
|
||||||
"empty_column.follow_recommendations": "נראה שלא ניתן לייצר המלצות עבורך. נסה/י להשתמש בחיפוש כדי למצוא אנשים מוכרים או לבדוק את הנושאים החמים.",
|
"empty_column.follow_recommendations": "נראה שלא ניתן לייצר המלצות עבורך. נסה/י להשתמש בחיפוש כדי למצוא אנשים מוכרים או לבדוק את הנושאים החמים.",
|
||||||
"empty_column.follow_requests": "אין לך שום בקשות מעקב עדיין. לכשיתקבלו כאלה, הן תופענה כאן.",
|
"empty_column.follow_requests": "אין לך שום בקשות מעקב עדיין. לכשיתקבלו כאלה, הן תופענה כאן.",
|
||||||
"empty_column.hashtag": "אין כלום בהאשתג הזה עדיין.",
|
"empty_column.hashtag": "אין כלום בהאשתג הזה עדיין.",
|
||||||
"empty_column.home": "אף אחד לא במעקב עדיין. אפשר לבקר ב{public} או להשתמש בחיפוש כדי להתחיל ולהכיר חצוצרנים אחרים. {suggestions}",
|
"empty_column.home": "אף אחד לא במעקב עדיין. אפשר לבקר ב{public} או להשתמש בחיפוש כדי להתחיל ולהכיר חצוצרנים אחרים. {suggestions}",
|
||||||
"empty_column.home.suggestions": "ראה/י כמה הצעות",
|
"empty_column.home.suggestions": "ראה/י כמה הצעות",
|
||||||
"empty_column.list": "אין עדיין מאום ברשימה.",
|
"empty_column.list": "אין עדיין פריטים ברשימה. כאשר חברים ברשימה הזאת יפרסמו פוסטים חדשים, הם יופיעו פה.",
|
||||||
"empty_column.lists": "אין לך שום רשימות עדיין. לכשיהיו, הן תופענה כאן.",
|
"empty_column.lists": "אין לך שום רשימות עדיין. לכשיהיו, הן תופענה כאן.",
|
||||||
"empty_column.mutes": "עוד לא השתקת שום משתמש.",
|
"empty_column.mutes": "עוד לא השתקת שום משתמש.",
|
||||||
"empty_column.notifications": "אין התראות עדיין. יאללה, הגיע הזמן להתחיל להתערבב.",
|
"empty_column.notifications": "אין התראות עדיין. יאללה, הגיע הזמן להתחיל להתערבב.",
|
||||||
|
@ -194,22 +194,22 @@
|
||||||
"explore.suggested_follows": "עבורך",
|
"explore.suggested_follows": "עבורך",
|
||||||
"explore.title": "סיור",
|
"explore.title": "סיור",
|
||||||
"explore.trending_links": "חדשות",
|
"explore.trending_links": "חדשות",
|
||||||
"explore.trending_statuses": "חצרוצים",
|
"explore.trending_statuses": "פוסטים",
|
||||||
"explore.trending_tags": "האשטאגים",
|
"explore.trending_tags": "האשטאגים",
|
||||||
"follow_recommendations.done": "בוצע",
|
"follow_recommendations.done": "בוצע",
|
||||||
"follow_recommendations.heading": "עקב/י אחרי אנשים שתרצה/י לראות את חצרוציהם! הנה כמה הצעות.",
|
"follow_recommendations.heading": "עקב/י אחרי אנשים שתרצה/י לראות את חצרוציהם! הנה כמה הצעות.",
|
||||||
"follow_recommendations.lead": "חצרוצים מאנשים במעקב יופיעו בסדר כרונולוגי בפיד הבית. אל תחששו מטעויות, אפשר להסיר מעקב באותה הקלות ובכל זמן!",
|
"follow_recommendations.lead": "חצרוצים מאנשים במעקב יופיעו בסדר כרונולוגי בפיד הבית. אל תחששו מטעויות, אפשר להסיר מעקב באותה הקלות ובכל זמן!",
|
||||||
"follow_request.authorize": "קבלה",
|
"follow_request.authorize": "הרשאה",
|
||||||
"follow_request.reject": "דחיה",
|
"follow_request.reject": "דחיה",
|
||||||
"follow_requests.unlocked_explanation": "למרות שחשבונך אינו נעול, צוות {domain} חושב שאולי כדאי לוודא את בקשות המעקב האלה ידנית.",
|
"follow_requests.unlocked_explanation": "למרות שחשבונך אינו נעול, צוות {domain} חושב שאולי כדאי לוודא את בקשות המעקב האלה ידנית.",
|
||||||
"generic.saved": "נשמר",
|
"generic.saved": "נשמר",
|
||||||
"getting_started.developers": "מפתחות",
|
"getting_started.developers": "מפתחות",
|
||||||
"getting_started.directory": "ספריית פרופילים",
|
"getting_started.directory": "מדריך פרופילים",
|
||||||
"getting_started.documentation": "תיעוד",
|
"getting_started.documentation": "תיעוד",
|
||||||
"getting_started.heading": "בואו נתחיל",
|
"getting_started.heading": "בואו נתחיל",
|
||||||
"getting_started.invite": "להזמין אנשים",
|
"getting_started.invite": "להזמין אנשים",
|
||||||
"getting_started.open_source_notice": "מסטודון היא תוכנה חופשית (בקוד פתוח). ניתן לתרום או לדווח על בעיות בגיטהאב: {github}.",
|
"getting_started.open_source_notice": "מסטודון היא תוכנה חופשית (בקוד פתוח). ניתן לתרום או לדווח על בעיות בגיטהאב: {github}.",
|
||||||
"getting_started.security": "Security",
|
"getting_started.security": "הגדרות חשבון",
|
||||||
"getting_started.terms": "תנאי שימוש",
|
"getting_started.terms": "תנאי שימוש",
|
||||||
"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}",
|
||||||
|
@ -218,8 +218,8 @@
|
||||||
"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": "אף אחד מאלה",
|
||||||
"hashtag.column_settings.tag_toggle": "Include additional tags in this column",
|
"hashtag.column_settings.tag_toggle": "כלול תגיות נוספות בטור זה",
|
||||||
"home.column_settings.basic": "למתחילים",
|
"home.column_settings.basic": "למתחילים",
|
||||||
"home.column_settings.show_reblogs": "הצגת הדהודים",
|
"home.column_settings.show_reblogs": "הצגת הדהודים",
|
||||||
"home.column_settings.show_replies": "הצגת תגובות",
|
"home.column_settings.show_replies": "הצגת תגובות",
|
||||||
|
@ -259,7 +259,7 @@
|
||||||
"keyboard_shortcuts.start": "to open \"get started\" column",
|
"keyboard_shortcuts.start": "to open \"get started\" column",
|
||||||
"keyboard_shortcuts.toggle_hidden": "הצגת/הסתרת טקסט מוסתר מאחורי אזהרת תוכן",
|
"keyboard_shortcuts.toggle_hidden": "הצגת/הסתרת טקסט מוסתר מאחורי אזהרת תוכן",
|
||||||
"keyboard_shortcuts.toggle_sensitivity": "הצגת/הסתרת מדיה",
|
"keyboard_shortcuts.toggle_sensitivity": "הצגת/הסתרת מדיה",
|
||||||
"keyboard_shortcuts.toot": "להתחיל חיצרוץ חדש",
|
"keyboard_shortcuts.toot": "להתחיל פוסט חדש",
|
||||||
"keyboard_shortcuts.unfocus": "לצאת מתיבת חיבור/חיפוש",
|
"keyboard_shortcuts.unfocus": "לצאת מתיבת חיבור/חיפוש",
|
||||||
"keyboard_shortcuts.up": "לנוע במעלה הרשימה",
|
"keyboard_shortcuts.up": "לנוע במעלה הרשימה",
|
||||||
"lightbox.close": "סגירה",
|
"lightbox.close": "סגירה",
|
||||||
|
@ -267,8 +267,8 @@
|
||||||
"lightbox.expand": "הרחבת קופסת צפייה בתמונה",
|
"lightbox.expand": "הרחבת קופסת צפייה בתמונה",
|
||||||
"lightbox.next": "הלאה",
|
"lightbox.next": "הלאה",
|
||||||
"lightbox.previous": "הקודם",
|
"lightbox.previous": "הקודם",
|
||||||
"limited_account_hint.action": "Show profile anyway",
|
"limited_account_hint.action": "הצג חשבון בכל זאת",
|
||||||
"limited_account_hint.title": "This profile has been hidden by the moderators of your server.",
|
"limited_account_hint.title": "פרופיל זה הוסתר ע\"י מנהלי השרת שלך.",
|
||||||
"lists.account.add": "הוסף לרשימה",
|
"lists.account.add": "הוסף לרשימה",
|
||||||
"lists.account.remove": "הסר מרשימה",
|
"lists.account.remove": "הסר מרשימה",
|
||||||
"lists.delete": "מחיקת רשימה",
|
"lists.delete": "מחיקת רשימה",
|
||||||
|
@ -288,32 +288,32 @@
|
||||||
"missing_indicator.label": "לא נמצא",
|
"missing_indicator.label": "לא נמצא",
|
||||||
"missing_indicator.sublabel": "לא ניתן היה למצוא את המשאב",
|
"missing_indicator.sublabel": "לא ניתן היה למצוא את המשאב",
|
||||||
"mute_modal.duration": "משך הזמן",
|
"mute_modal.duration": "משך הזמן",
|
||||||
"mute_modal.hide_notifications": "להסתיר הודעות מחשבון זה?",
|
"mute_modal.hide_notifications": "להסתיר התראות מחשבון זה?",
|
||||||
"mute_modal.indefinite": "ללא תאריך סיום",
|
"mute_modal.indefinite": "ללא תאריך סיום",
|
||||||
"navigation_bar.apps": "יישומונים לנייד",
|
"navigation_bar.apps": "יישומונים לנייד",
|
||||||
"navigation_bar.blocks": "חסימות",
|
"navigation_bar.blocks": "משתמשים חסומים",
|
||||||
"navigation_bar.bookmarks": "סימניות",
|
"navigation_bar.bookmarks": "סימניות",
|
||||||
"navigation_bar.community_timeline": "ציר זמן מקומי",
|
"navigation_bar.community_timeline": "פיד שרת מקומי",
|
||||||
"navigation_bar.compose": "Compose new toot",
|
"navigation_bar.compose": "צור פוסט חדש",
|
||||||
"navigation_bar.direct": "הודעות ישירות",
|
"navigation_bar.direct": "הודעות ישירות",
|
||||||
"navigation_bar.discover": "גלה",
|
"navigation_bar.discover": "גלה",
|
||||||
"navigation_bar.domain_blocks": "Hidden domains",
|
"navigation_bar.domain_blocks": "קהילות (שמות מתחם) חסומות",
|
||||||
"navigation_bar.edit_profile": "עריכת פרופיל",
|
"navigation_bar.edit_profile": "עריכת פרופיל",
|
||||||
"navigation_bar.explore": "חקור",
|
"navigation_bar.explore": "סיור",
|
||||||
"navigation_bar.favourites": "חיבובים",
|
"navigation_bar.favourites": "חיבובים",
|
||||||
"navigation_bar.filters": "מילים מושתקות",
|
"navigation_bar.filters": "מילים מושתקות",
|
||||||
"navigation_bar.follow_requests": "בקשות מעקב",
|
"navigation_bar.follow_requests": "בקשות מעקב",
|
||||||
"navigation_bar.follows_and_followers": "נעקבים ועוקבים",
|
"navigation_bar.follows_and_followers": "נעקבים ועוקבים",
|
||||||
"navigation_bar.info": "מידע נוסף",
|
"navigation_bar.info": "אודות שרת זה",
|
||||||
"navigation_bar.keyboard_shortcuts": "קיצורי מקלדת",
|
"navigation_bar.keyboard_shortcuts": "קיצורי מקלדת",
|
||||||
"navigation_bar.lists": "רשימות",
|
"navigation_bar.lists": "רשימות",
|
||||||
"navigation_bar.logout": "יציאה",
|
"navigation_bar.logout": "התנתקות",
|
||||||
"navigation_bar.mutes": "השתקות",
|
"navigation_bar.mutes": "השתקות",
|
||||||
"navigation_bar.personal": "אישי",
|
"navigation_bar.personal": "אישי",
|
||||||
"navigation_bar.pins": "חיצרוצים מקובעים",
|
"navigation_bar.pins": "פוסטים נעוצים",
|
||||||
"navigation_bar.preferences": "העדפות",
|
"navigation_bar.preferences": "העדפות",
|
||||||
"navigation_bar.public_timeline": "ציר זמן בין-קהילתי",
|
"navigation_bar.public_timeline": "ציר זמן בין-קהילתי",
|
||||||
"navigation_bar.security": "בטיחות",
|
"navigation_bar.security": "אבטחה",
|
||||||
"notification.admin.sign_up": "{name} נרשמו",
|
"notification.admin.sign_up": "{name} נרשמו",
|
||||||
"notification.favourite": "חצרוצך חובב על ידי {name}",
|
"notification.favourite": "חצרוצך חובב על ידי {name}",
|
||||||
"notification.follow": "{name} במעקב אחרייך",
|
"notification.follow": "{name} במעקב אחרייך",
|
||||||
|
@ -365,20 +365,20 @@
|
||||||
"poll.refresh": "רענון",
|
"poll.refresh": "רענון",
|
||||||
"poll.total_people": "{count, plural, one {# איש/אישה} other {# אנשים}}",
|
"poll.total_people": "{count, plural, one {# איש/אישה} other {# אנשים}}",
|
||||||
"poll.total_votes": "{count, plural, one {# קול} other {# קולות}}",
|
"poll.total_votes": "{count, plural, one {# קול} other {# קולות}}",
|
||||||
"poll.vote": "קול",
|
"poll.vote": "הצבעה",
|
||||||
"poll.voted": "הצבעת לתשובה זו",
|
"poll.voted": "הצבעת לתשובה זו",
|
||||||
"poll.votes": "{votes, plural, one {# קול} other {# קולות}}",
|
"poll.votes": "{votes, plural, one {# קול} other {# קולות}}",
|
||||||
"poll_button.add_poll": "הוספת סקר",
|
"poll_button.add_poll": "הוספת סקר",
|
||||||
"poll_button.remove_poll": "הסרת סקר",
|
"poll_button.remove_poll": "הסרת סקר",
|
||||||
"privacy.change": "שינוי פרטיות ההודעה",
|
"privacy.change": "שינוי פרטיות ההודעה",
|
||||||
"privacy.direct.long": "הצג רק למי שהודעה זו פונה אליו",
|
"privacy.direct.long": "רק למשתמשים מאוזכרים (mentioned)",
|
||||||
"privacy.direct.short": "אנשים מוזכרים בלבד",
|
"privacy.direct.short": "למאוזכרים בלבד",
|
||||||
"privacy.private.long": "הצג לעוקבים בלבד",
|
"privacy.private.long": "הצג לעוקבים בלבד",
|
||||||
"privacy.private.short": "עוקבים בלבד",
|
"privacy.private.short": "לעוקבים בלבד",
|
||||||
"privacy.public.long": "גלוי לכל",
|
"privacy.public.long": "גלוי לכל",
|
||||||
"privacy.public.short": "פומבי",
|
"privacy.public.short": "פומבי",
|
||||||
"privacy.unlisted.long": "גלוי לכל, אבל מוסתר מאמצעי גילוי",
|
"privacy.unlisted.long": "גלוי לכל, אבל מוסתר מאמצעי גילוי",
|
||||||
"privacy.unlisted.short": "לא לפיד הכללי",
|
"privacy.unlisted.short": "לא רשום (לא לפיד הכללי)",
|
||||||
"refresh": "רענון",
|
"refresh": "רענון",
|
||||||
"regeneration_indicator.label": "טוען…",
|
"regeneration_indicator.label": "טוען…",
|
||||||
"regeneration_indicator.sublabel": "פיד הבית שלך בהכנה!",
|
"regeneration_indicator.sublabel": "פיד הבית שלך בהכנה!",
|
||||||
|
@ -395,7 +395,7 @@
|
||||||
"relative_time.today": "היום",
|
"relative_time.today": "היום",
|
||||||
"reply_indicator.cancel": "ביטול",
|
"reply_indicator.cancel": "ביטול",
|
||||||
"report.block": "לחסום",
|
"report.block": "לחסום",
|
||||||
"report.block_explanation": "לא ניתן יהיה לראות את חצרוציהם. הם לא יוכלו לראות את חצרוציך או לעקוב אחריך. הם יוכלו לדעת שהם חסומים.",
|
"report.block_explanation": "לא ניתן יהיה לראות את הפוסטים שלהן. הן לא יוכלו לראות את הפוסטים שלך או לעקוב אחריך. הם יוכלו לדעת שהם חסומים.",
|
||||||
"report.categories.other": "אחר",
|
"report.categories.other": "אחר",
|
||||||
"report.categories.spam": "ספאם",
|
"report.categories.spam": "ספאם",
|
||||||
"report.categories.violation": "התוכן מפר אחד או יותר מחוקי השרת",
|
"report.categories.violation": "התוכן מפר אחד או יותר מחוקי השרת",
|
||||||
|
@ -451,7 +451,7 @@
|
||||||
"status.bookmark": "סימניה",
|
"status.bookmark": "סימניה",
|
||||||
"status.cancel_reblog_private": "הסרת הדהוד",
|
"status.cancel_reblog_private": "הסרת הדהוד",
|
||||||
"status.cannot_reblog": "לא ניתן להדהד הודעה זו",
|
"status.cannot_reblog": "לא ניתן להדהד הודעה זו",
|
||||||
"status.copy": "Copy link to status",
|
"status.copy": "העתק/י קישור לפוסט זה",
|
||||||
"status.delete": "מחיקה",
|
"status.delete": "מחיקה",
|
||||||
"status.detailed_status": "תצוגת שיחה מפורטת",
|
"status.detailed_status": "תצוגת שיחה מפורטת",
|
||||||
"status.direct": "הודעה ישירה ל@{name}",
|
"status.direct": "הודעה ישירה ל@{name}",
|
||||||
|
@ -469,8 +469,8 @@
|
||||||
"status.more": "עוד",
|
"status.more": "עוד",
|
||||||
"status.mute": "להשתיק את @{name}",
|
"status.mute": "להשתיק את @{name}",
|
||||||
"status.mute_conversation": "השתקת שיחה",
|
"status.mute_conversation": "השתקת שיחה",
|
||||||
"status.open": "הרחבת הודעה",
|
"status.open": "הרחבת פוסט זה",
|
||||||
"status.pin": "לקבע באודות",
|
"status.pin": "הצמדה לפרופיל שלי",
|
||||||
"status.pinned": "Pinned toot",
|
"status.pinned": "Pinned toot",
|
||||||
"status.read_more": "לקרוא עוד",
|
"status.read_more": "לקרוא עוד",
|
||||||
"status.reblog": "הדהוד",
|
"status.reblog": "הדהוד",
|
||||||
|
@ -480,7 +480,7 @@
|
||||||
"status.redraft": "מחיקה ועריכה מחדש",
|
"status.redraft": "מחיקה ועריכה מחדש",
|
||||||
"status.remove_bookmark": "הסרת סימניה",
|
"status.remove_bookmark": "הסרת סימניה",
|
||||||
"status.reply": "תגובה",
|
"status.reply": "תגובה",
|
||||||
"status.replyAll": "תגובה לכולם",
|
"status.replyAll": "תגובה לפתיל",
|
||||||
"status.report": "דיווח על @{name}",
|
"status.report": "דיווח על @{name}",
|
||||||
"status.sensitive_warning": "תוכן רגיש",
|
"status.sensitive_warning": "תוכן רגיש",
|
||||||
"status.share": "שיתוף",
|
"status.share": "שיתוף",
|
||||||
|
@ -488,15 +488,15 @@
|
||||||
"status.show_less_all": "להציג פחות מהכל",
|
"status.show_less_all": "להציג פחות מהכל",
|
||||||
"status.show_more": "הראה יותר",
|
"status.show_more": "הראה יותר",
|
||||||
"status.show_more_all": "להציג יותר מהכל",
|
"status.show_more_all": "להציג יותר מהכל",
|
||||||
"status.show_thread": "להציג סיב",
|
"status.show_thread": "הצג כחלק מפתיל",
|
||||||
"status.uncached_media_warning": "לא זמין",
|
"status.uncached_media_warning": "לא זמין",
|
||||||
"status.unmute_conversation": "הסרת השתקת שיחה",
|
"status.unmute_conversation": "הסרת השתקת שיחה",
|
||||||
"status.unpin": "לשחרר מקיבוע באודות",
|
"status.unpin": "לשחרר מקיבוע באודות",
|
||||||
"suggestions.dismiss": "להתעלם מהצעה",
|
"suggestions.dismiss": "להתעלם מהצעה",
|
||||||
"suggestions.header": "ייתכן שזה יעניין אותך…",
|
"suggestions.header": "ייתכן שזה יעניין אותך…",
|
||||||
"tabs_bar.federated_timeline": "ציר זמן בין-קהילתי",
|
"tabs_bar.federated_timeline": "פיד כללי (בין-קהילתי)",
|
||||||
"tabs_bar.home": "בבית",
|
"tabs_bar.home": "פיד הבית",
|
||||||
"tabs_bar.local_timeline": "ציר זמן מקומי",
|
"tabs_bar.local_timeline": "פיד שרת מקומי",
|
||||||
"tabs_bar.notifications": "התראות",
|
"tabs_bar.notifications": "התראות",
|
||||||
"tabs_bar.search": "חיפוש",
|
"tabs_bar.search": "חיפוש",
|
||||||
"time_remaining.days": "נותרו {number, plural, one {# יום} other {# ימים}}",
|
"time_remaining.days": "נותרו {number, plural, one {# יום} other {# ימים}}",
|
||||||
|
|
|
@ -95,7 +95,7 @@
|
||||||
"compose.language.change": "Ganti bahasa",
|
"compose.language.change": "Ganti bahasa",
|
||||||
"compose.language.search": "Telusuri bahasa...",
|
"compose.language.search": "Telusuri bahasa...",
|
||||||
"compose_form.direct_message_warning_learn_more": "Pelajari selengkapnya",
|
"compose_form.direct_message_warning_learn_more": "Pelajari selengkapnya",
|
||||||
"compose_form.encryption_warning": "Posts on Mastodon are not end-to-end encrypted. Do not share any dangerous information over Mastodon.",
|
"compose_form.encryption_warning": "Kiriman di Mastodon tidak dienkripsi end-to-end. Jangan bagikan informasi sensitif melalui Mastodon.",
|
||||||
"compose_form.hashtag_warning": "Toot ini tidak akan ada dalam daftar tagar manapun karena telah diatur sebagai tidak terdaftar. Hanya postingan publik yang bisa dicari dengan tagar.",
|
"compose_form.hashtag_warning": "Toot ini tidak akan ada dalam daftar tagar manapun karena telah diatur sebagai tidak terdaftar. Hanya postingan publik yang bisa dicari dengan tagar.",
|
||||||
"compose_form.lock_disclaimer": "Akun anda tidak {locked}. Semua orang dapat mengikuti anda untuk melihat postingan khusus untuk pengikut anda.",
|
"compose_form.lock_disclaimer": "Akun anda tidak {locked}. Semua orang dapat mengikuti anda untuk melihat postingan khusus untuk pengikut anda.",
|
||||||
"compose_form.lock_disclaimer.lock": "terkunci",
|
"compose_form.lock_disclaimer.lock": "terkunci",
|
||||||
|
|
|
@ -442,7 +442,7 @@
|
||||||
"search_results.all": "Omna",
|
"search_results.all": "Omna",
|
||||||
"search_results.hashtags": "Hashtagi",
|
"search_results.hashtags": "Hashtagi",
|
||||||
"search_results.nothing_found": "Ne povas ganar irgo per ca trovvorti",
|
"search_results.nothing_found": "Ne povas ganar irgo per ca trovvorti",
|
||||||
"search_results.statuses": "Toots",
|
"search_results.statuses": "Posti",
|
||||||
"search_results.statuses_fts_disabled": "Searching toots by their content is not enabled on this Mastodon server.",
|
"search_results.statuses_fts_disabled": "Searching toots by their content is not enabled on this Mastodon server.",
|
||||||
"search_results.total": "{count, number} {count, plural, one {rezulto} other {rezulti}}",
|
"search_results.total": "{count, number} {count, plural, one {rezulto} other {rezulti}}",
|
||||||
"status.admin_account": "Apertez jerintervizajo por @{name}",
|
"status.admin_account": "Apertez jerintervizajo por @{name}",
|
||||||
|
|
|
@ -106,7 +106,7 @@
|
||||||
"compose_form.poll.remove_option": "Vê hilbijarê rake",
|
"compose_form.poll.remove_option": "Vê hilbijarê rake",
|
||||||
"compose_form.poll.switch_to_multiple": "Rapirsî yê biguherînin da ku destûr bidin vebijarkên pirjimar",
|
"compose_form.poll.switch_to_multiple": "Rapirsî yê biguherînin da ku destûr bidin vebijarkên pirjimar",
|
||||||
"compose_form.poll.switch_to_single": "Rapirsîyê biguherîne da ku mafê bidî tenê vebijêrkek",
|
"compose_form.poll.switch_to_single": "Rapirsîyê biguherîne da ku mafê bidî tenê vebijêrkek",
|
||||||
"compose_form.publish": "Publish",
|
"compose_form.publish": "Biweşîne",
|
||||||
"compose_form.publish_loud": "{publish}!",
|
"compose_form.publish_loud": "{publish}!",
|
||||||
"compose_form.save_changes": "Guhertinan tomar bike",
|
"compose_form.save_changes": "Guhertinan tomar bike",
|
||||||
"compose_form.sensitive.hide": "{count, plural, one {Medya wekî hestiyar nîşan bide} other {Medya wekî hestiyar nîşan bide}}",
|
"compose_form.sensitive.hide": "{count, plural, one {Medya wekî hestiyar nîşan bide} other {Medya wekî hestiyar nîşan bide}}",
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
"account.joined": "Pievienojās {date}",
|
"account.joined": "Pievienojās {date}",
|
||||||
"account.link_verified_on": "Šīs saites piederība ir pārbaudīta {date}",
|
"account.link_verified_on": "Šīs saites piederība ir pārbaudīta {date}",
|
||||||
"account.locked_info": "Šī konta privātuma statuss ir slēgts. Īpašnieks izskatīs, kurš viņam drīkst sekot.",
|
"account.locked_info": "Šī konta privātuma statuss ir slēgts. Īpašnieks izskatīs, kurš viņam drīkst sekot.",
|
||||||
"account.media": "Mediji",
|
"account.media": "Multivide",
|
||||||
"account.mention": "Piemin @{name}",
|
"account.mention": "Piemin @{name}",
|
||||||
"account.moved_to": "{name} ir pārcelts uz:",
|
"account.moved_to": "{name} ir pārcelts uz:",
|
||||||
"account.mute": "Apklusināt @{name}",
|
"account.mute": "Apklusināt @{name}",
|
||||||
|
@ -90,7 +90,7 @@
|
||||||
"column_header.unpin": "Atspraust",
|
"column_header.unpin": "Atspraust",
|
||||||
"column_subheading.settings": "Iestatījumi",
|
"column_subheading.settings": "Iestatījumi",
|
||||||
"community.column_settings.local_only": "Tikai vietējie",
|
"community.column_settings.local_only": "Tikai vietējie",
|
||||||
"community.column_settings.media_only": "Tikai mediji",
|
"community.column_settings.media_only": "Tikai multivide",
|
||||||
"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...",
|
||||||
|
@ -109,9 +109,9 @@
|
||||||
"compose_form.publish": "Publicēt",
|
"compose_form.publish": "Publicēt",
|
||||||
"compose_form.publish_loud": "{publish}!",
|
"compose_form.publish_loud": "{publish}!",
|
||||||
"compose_form.save_changes": "Saglabāt izmaiņas",
|
"compose_form.save_changes": "Saglabāt izmaiņas",
|
||||||
"compose_form.sensitive.hide": "{count, plural, one {Atzīmēt mediju kā sensitīvu} other {Atzīmēt medijus kā sensitīvus}}",
|
"compose_form.sensitive.hide": "{count, plural, one {Atzīmēt multividi kā sensitīvu} other {Atzīmēt multivides kā sensitīvas}}",
|
||||||
"compose_form.sensitive.marked": "{count, plural, one {Medijs ir atzīmēts kā sensitīvs} other {Mediji ir atzīmēti kā sensitīvi}}",
|
"compose_form.sensitive.marked": "{count, plural, one {Multivide ir atzīmēta kā sensitīva} other {Multivides ir atzīmētas kā sensitīvas}}",
|
||||||
"compose_form.sensitive.unmarked": "{count, plural, one {Medijs nav atzīmēts kā sensitīvs} other {Mediji nav atzīmēti kā sensitīvi}}",
|
"compose_form.sensitive.unmarked": "{count, plural, one {Multivide nav atzīmēts kā sensitīva} other {Multivides nav atzīmētas kā sensitīvas}}",
|
||||||
"compose_form.spoiler.marked": "Noņemt satura brīdinājumu",
|
"compose_form.spoiler.marked": "Noņemt satura brīdinājumu",
|
||||||
"compose_form.spoiler.unmarked": "Pievienot satura brīdinājumu",
|
"compose_form.spoiler.unmarked": "Pievienot satura brīdinājumu",
|
||||||
"compose_form.spoiler_placeholder": "Ieraksti savu brīdinājumu šeit",
|
"compose_form.spoiler_placeholder": "Ieraksti savu brīdinājumu šeit",
|
||||||
|
@ -124,7 +124,7 @@
|
||||||
"confirmations.delete_list.confirm": "Dzēst",
|
"confirmations.delete_list.confirm": "Dzēst",
|
||||||
"confirmations.delete_list.message": "Vai tiešam vēlies neatgriezeniski dzēst šo sarakstu?",
|
"confirmations.delete_list.message": "Vai tiešam vēlies neatgriezeniski dzēst šo sarakstu?",
|
||||||
"confirmations.discard_edit_media.confirm": "Izmest",
|
"confirmations.discard_edit_media.confirm": "Izmest",
|
||||||
"confirmations.discard_edit_media.message": "Vai tev ir nesaglabātas izmaiņas mediju aprakstā vai priekšskatījumā, vai tomēr atmest tās?",
|
"confirmations.discard_edit_media.message": "Vai tev ir nesaglabātas izmaiņas multivides aprakstā vai priekšskatījumā, vai tomēr atmest tās?",
|
||||||
"confirmations.domain_block.confirm": "Bloķēt visu domēnu",
|
"confirmations.domain_block.confirm": "Bloķēt visu domēnu",
|
||||||
"confirmations.domain_block.message": "Vai tu tiešām, tiešam vēlies bloķēt visu domēnu {domain}? Lielākajā daļā gadījumu pietiek ja nobloķē vai apklusini kādu. Tu neredzēsi saturu vai paziņojumus no šī domēna nevienā laika līnijā. Tavi sekotāji no šī domēna tiks noņemti.",
|
"confirmations.domain_block.message": "Vai tu tiešām, tiešam vēlies bloķēt visu domēnu {domain}? Lielākajā daļā gadījumu pietiek ja nobloķē vai apklusini kādu. Tu neredzēsi saturu vai paziņojumus no šī domēna nevienā laika līnijā. Tavi sekotāji no šī domēna tiks noņemti.",
|
||||||
"confirmations.logout.confirm": "Iziet",
|
"confirmations.logout.confirm": "Iziet",
|
||||||
|
@ -171,7 +171,7 @@
|
||||||
"empty_column.community": "Vietējā ziņu lenta ir tukša. Uzraksti kaut ko publiski, lai viss notiktu!",
|
"empty_column.community": "Vietējā ziņu lenta ir tukša. Uzraksti kaut ko publiski, lai viss notiktu!",
|
||||||
"empty_column.direct": "Patrez tev nav privātu ziņu. Tiklīdz tādu nosūtīsi vai saņemsi, tās parādīsies šeit.",
|
"empty_column.direct": "Patrez tev nav privātu ziņu. Tiklīdz tādu nosūtīsi vai saņemsi, tās parādīsies šeit.",
|
||||||
"empty_column.domain_blocks": "Vēl nav neviena bloķēta domēna.",
|
"empty_column.domain_blocks": "Vēl nav neviena bloķēta domēna.",
|
||||||
"empty_column.explore_statuses": "Pašlaik nekas nav tendēts. Pārbaudiet vēlāk!",
|
"empty_column.explore_statuses": "Pašlaik nekā aktuāla nav. Pārbaudi vēlāk!",
|
||||||
"empty_column.favourited_statuses": "Patreiz tev nav neviena izceltā ieraksta. Kad kādu izcelsi, tas parādīsies šeit.",
|
"empty_column.favourited_statuses": "Patreiz tev nav neviena izceltā ieraksta. Kad kādu izcelsi, tas parādīsies šeit.",
|
||||||
"empty_column.favourites": "Neviens šo ziņojumu vel nav izcēlis. Kad būs, tie parādīsies šeit.",
|
"empty_column.favourites": "Neviens šo ziņojumu vel nav izcēlis. Kad būs, tie parādīsies šeit.",
|
||||||
"empty_column.follow_recommendations": "Šķiet, ka tev nevarēja ģenerēt ieteikumus. Vari mēģināt izmantot meklēšanu, lai meklētu cilvēkus, kurus tu varētu pazīt, vai izpētīt populārākās atsauces.",
|
"empty_column.follow_recommendations": "Šķiet, ka tev nevarēja ģenerēt ieteikumus. Vari mēģināt izmantot meklēšanu, lai meklētu cilvēkus, kurus tu varētu pazīt, vai izpētīt populārākās atsauces.",
|
||||||
|
@ -188,7 +188,7 @@
|
||||||
"error.unexpected_crash.explanation_addons": "Šo lapu nevarēja parādīt pareizi. Šo kļūdu, iespējams, izraisīja pārlūkprogrammas papildinājums vai automātiskās tulkošanas rīki.",
|
"error.unexpected_crash.explanation_addons": "Šo lapu nevarēja parādīt pareizi. Šo kļūdu, iespējams, izraisīja pārlūkprogrammas papildinājums vai automātiskās tulkošanas rīki.",
|
||||||
"error.unexpected_crash.next_steps": "Mēģini atsvaidzināt lapu. Ja tas nepalīdz, iespējams, varēsi lietot Mastodon, izmantojot citu pārlūkprogrammu vai vietējo lietotni.",
|
"error.unexpected_crash.next_steps": "Mēģini atsvaidzināt lapu. Ja tas nepalīdz, iespējams, varēsi lietot Mastodon, izmantojot citu pārlūkprogrammu vai vietējo lietotni.",
|
||||||
"error.unexpected_crash.next_steps_addons": "Mēģini tos atspējot un atsvaidzināt lapu. Ja tas nepalīdz, iespējams, varēsi lietot Mastodon, izmantojot citu pārlūkprogrammu vai vietējo lietotni.",
|
"error.unexpected_crash.next_steps_addons": "Mēģini tos atspējot un atsvaidzināt lapu. Ja tas nepalīdz, iespējams, varēsi lietot Mastodon, izmantojot citu pārlūkprogrammu vai vietējo lietotni.",
|
||||||
"errors.unexpected_crash.copy_stacktrace": "Iekopēt starpliktuvē",
|
"errors.unexpected_crash.copy_stacktrace": "Kopēt stacktrace uz starpliktuvi",
|
||||||
"errors.unexpected_crash.report_issue": "Ziņot par problēmu",
|
"errors.unexpected_crash.report_issue": "Ziņot par problēmu",
|
||||||
"explore.search_results": "Meklēšanas rezultāti",
|
"explore.search_results": "Meklēšanas rezultāti",
|
||||||
"explore.suggested_follows": "Tev",
|
"explore.suggested_follows": "Tev",
|
||||||
|
@ -207,7 +207,7 @@
|
||||||
"getting_started.directory": "Profila direktorija",
|
"getting_started.directory": "Profila direktorija",
|
||||||
"getting_started.documentation": "Dokumentācija",
|
"getting_started.documentation": "Dokumentācija",
|
||||||
"getting_started.heading": "Darba sākšana",
|
"getting_started.heading": "Darba sākšana",
|
||||||
"getting_started.invite": "Uzaiciniet cilvēkus",
|
"getting_started.invite": "Uzaicini cilvēkus",
|
||||||
"getting_started.open_source_notice": "Mastodon ir atvērtā koda programmatūra. Tu vari dot savu ieguldījumu vai arī ziņot par problēmām {github}.",
|
"getting_started.open_source_notice": "Mastodon ir atvērtā koda programmatūra. Tu vari dot savu ieguldījumu vai arī ziņot par problēmām {github}.",
|
||||||
"getting_started.security": "Konta iestatījumi",
|
"getting_started.security": "Konta iestatījumi",
|
||||||
"getting_started.terms": "Pakalpojuma noteikumi",
|
"getting_started.terms": "Pakalpojuma noteikumi",
|
||||||
|
@ -230,7 +230,7 @@
|
||||||
"intervals.full.minutes": "{number, plural, one {# minūte} other {# minūtes}}",
|
"intervals.full.minutes": "{number, plural, one {# minūte} other {# minūtes}}",
|
||||||
"keyboard_shortcuts.back": "Pāriet atpakaļ",
|
"keyboard_shortcuts.back": "Pāriet atpakaļ",
|
||||||
"keyboard_shortcuts.blocked": "Atvērt bloķēto lietotāju sarakstu",
|
"keyboard_shortcuts.blocked": "Atvērt bloķēto lietotāju sarakstu",
|
||||||
"keyboard_shortcuts.boost": "Palielināt ziņu",
|
"keyboard_shortcuts.boost": "Atbalstīt ziņu",
|
||||||
"keyboard_shortcuts.column": "Fokusēt kolonnu",
|
"keyboard_shortcuts.column": "Fokusēt kolonnu",
|
||||||
"keyboard_shortcuts.compose": "Fokusēt veidojamā teksta lauku",
|
"keyboard_shortcuts.compose": "Fokusēt veidojamā teksta lauku",
|
||||||
"keyboard_shortcuts.description": "Apraksts",
|
"keyboard_shortcuts.description": "Apraksts",
|
||||||
|
@ -245,11 +245,11 @@
|
||||||
"keyboard_shortcuts.hotkey": "Ātrais taustiņš",
|
"keyboard_shortcuts.hotkey": "Ātrais taustiņš",
|
||||||
"keyboard_shortcuts.legend": "Parādīt šo leģendu",
|
"keyboard_shortcuts.legend": "Parādīt šo leģendu",
|
||||||
"keyboard_shortcuts.local": "Atvērt vietējo ziņu lenti",
|
"keyboard_shortcuts.local": "Atvērt vietējo ziņu lenti",
|
||||||
"keyboard_shortcuts.mention": "Minējuma autors",
|
"keyboard_shortcuts.mention": "Pieminēt autoru",
|
||||||
"keyboard_shortcuts.muted": "Atvērt apklusināto lietotāju sarakstu",
|
"keyboard_shortcuts.muted": "Atvērt apklusināto lietotāju sarakstu",
|
||||||
"keyboard_shortcuts.my_profile": "Atvērt manu profilu",
|
"keyboard_shortcuts.my_profile": "Atvērt savu profilu",
|
||||||
"keyboard_shortcuts.notifications": "Atvērt paziņojumu kolonnu",
|
"keyboard_shortcuts.notifications": "Atvērt paziņojumu kolonnu",
|
||||||
"keyboard_shortcuts.open_media": "Atvērt mediju",
|
"keyboard_shortcuts.open_media": "Atvērt multividi",
|
||||||
"keyboard_shortcuts.pinned": "Atvērt piesprausto ziņu sarakstu",
|
"keyboard_shortcuts.pinned": "Atvērt piesprausto ziņu sarakstu",
|
||||||
"keyboard_shortcuts.profile": "Atvērt autora profilu",
|
"keyboard_shortcuts.profile": "Atvērt autora profilu",
|
||||||
"keyboard_shortcuts.reply": "Atbildēt",
|
"keyboard_shortcuts.reply": "Atbildēt",
|
||||||
|
@ -258,15 +258,15 @@
|
||||||
"keyboard_shortcuts.spoilers": "Rādīt/slēpt CW lauku",
|
"keyboard_shortcuts.spoilers": "Rādīt/slēpt CW lauku",
|
||||||
"keyboard_shortcuts.start": "Atvērt kolonnu “Darba sākšana”",
|
"keyboard_shortcuts.start": "Atvērt kolonnu “Darba sākšana”",
|
||||||
"keyboard_shortcuts.toggle_hidden": "Rādīt/slēpt tekstu aiz CW",
|
"keyboard_shortcuts.toggle_hidden": "Rādīt/slēpt tekstu aiz CW",
|
||||||
"keyboard_shortcuts.toggle_sensitivity": "Rādīt/slēpt mediju",
|
"keyboard_shortcuts.toggle_sensitivity": "Rādīt/slēpt multividi",
|
||||||
"keyboard_shortcuts.toot": "Sākt jaunu ziņu",
|
"keyboard_shortcuts.toot": "Sāc jaunu ziņu",
|
||||||
"keyboard_shortcuts.unfocus": "Atfokusēt teksta veidošanu/meklēšanu",
|
"keyboard_shortcuts.unfocus": "Atfokusēt teksta veidošanu/meklēšanu",
|
||||||
"keyboard_shortcuts.up": "Pārvietot sarakstā uz augšu",
|
"keyboard_shortcuts.up": "Pārvietot sarakstā uz augšu",
|
||||||
"lightbox.close": "Aizvērt",
|
"lightbox.close": "Aizvērt",
|
||||||
"lightbox.compress": "Saspiest attēla ietvaru",
|
"lightbox.compress": "Saspiest attēla skata lodziņu",
|
||||||
"lightbox.expand": "Paplašināt attēla ietvaru",
|
"lightbox.expand": "Izvērst attēla skata lodziņu",
|
||||||
"lightbox.next": "Tālāk",
|
"lightbox.next": "Tālāk",
|
||||||
"lightbox.previous": "Iepriekš",
|
"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": "Tava servera moderatori ir paslēpuši šo profilu.",
|
"limited_account_hint.title": "Tava servera moderatori ir paslēpuši šo profilu.",
|
||||||
"lists.account.add": "Pievienot sarakstam",
|
"lists.account.add": "Pievienot sarakstam",
|
||||||
|
@ -276,10 +276,10 @@
|
||||||
"lists.edit.submit": "Mainīt virsrakstu",
|
"lists.edit.submit": "Mainīt virsrakstu",
|
||||||
"lists.new.create": "Pievienot sarakstu",
|
"lists.new.create": "Pievienot sarakstu",
|
||||||
"lists.new.title_placeholder": "Jaunais saraksta nosaukums",
|
"lists.new.title_placeholder": "Jaunais saraksta nosaukums",
|
||||||
"lists.replies_policy.followed": "Jebkuram lietotājam, kuram seko",
|
"lists.replies_policy.followed": "Jebkurš sekots lietotājs",
|
||||||
"lists.replies_policy.list": "Saraksta dalībnieki",
|
"lists.replies_policy.list": "Saraksta dalībnieki",
|
||||||
"lists.replies_policy.none": "Nevienam",
|
"lists.replies_policy.none": "Nevienam",
|
||||||
"lists.replies_policy.title": "Rādīt atbildes:",
|
"lists.replies_policy.title": "Rādīt atbildes uz:",
|
||||||
"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, one {# jauna lieta} other {# jaunas lietas}}",
|
||||||
|
|
|
@ -106,7 +106,7 @@
|
||||||
"compose_form.poll.remove_option": "Levar aquesta opcion",
|
"compose_form.poll.remove_option": "Levar aquesta opcion",
|
||||||
"compose_form.poll.switch_to_multiple": "Cambiar lo sondatge per permetre de causidas multiplas",
|
"compose_form.poll.switch_to_multiple": "Cambiar lo sondatge per permetre de causidas multiplas",
|
||||||
"compose_form.poll.switch_to_single": "Cambiar lo sondatge per permetre una sola causida",
|
"compose_form.poll.switch_to_single": "Cambiar lo sondatge per permetre una sola causida",
|
||||||
"compose_form.publish": "Publish",
|
"compose_form.publish": "Publicar",
|
||||||
"compose_form.publish_loud": "{publish} !",
|
"compose_form.publish_loud": "{publish} !",
|
||||||
"compose_form.save_changes": "Salvar los cambiaments",
|
"compose_form.save_changes": "Salvar los cambiaments",
|
||||||
"compose_form.sensitive.hide": "Marcar coma sensible",
|
"compose_form.sensitive.hide": "Marcar coma sensible",
|
||||||
|
@ -396,7 +396,7 @@
|
||||||
"reply_indicator.cancel": "Anullar",
|
"reply_indicator.cancel": "Anullar",
|
||||||
"report.block": "Blocar",
|
"report.block": "Blocar",
|
||||||
"report.block_explanation": "You will not see their posts. They will not be able to see your posts or follow you. They will be able to tell that they are blocked.",
|
"report.block_explanation": "You will not see their posts. They will not be able to see your posts or follow you. They will be able to tell that they are blocked.",
|
||||||
"report.categories.other": "Other",
|
"report.categories.other": "Autre",
|
||||||
"report.categories.spam": "Spam",
|
"report.categories.spam": "Spam",
|
||||||
"report.categories.violation": "Content violates one or more server rules",
|
"report.categories.violation": "Content violates one or more server rules",
|
||||||
"report.category.subtitle": "Choose the best match",
|
"report.category.subtitle": "Choose the best match",
|
||||||
|
@ -427,9 +427,9 @@
|
||||||
"report.target": "Senhalar {target}",
|
"report.target": "Senhalar {target}",
|
||||||
"report.thanks.take_action": "Here are your options for controlling what you see on Mastodon:",
|
"report.thanks.take_action": "Here are your options for controlling what you see on Mastodon:",
|
||||||
"report.thanks.take_action_actionable": "While we review this, you can take action against @{name}:",
|
"report.thanks.take_action_actionable": "While we review this, you can take action against @{name}:",
|
||||||
"report.thanks.title": "Don't want to see this?",
|
"report.thanks.title": "Volètz pas veire aquò ?",
|
||||||
"report.thanks.title_actionable": "Thanks for reporting, we'll look into this.",
|
"report.thanks.title_actionable": "Thanks for reporting, we'll look into this.",
|
||||||
"report.unfollow": "Unfollow @{name}",
|
"report.unfollow": "Quitar de sègre {name}",
|
||||||
"report.unfollow_explanation": "You are following this account. To not see their posts in your home feed anymore, unfollow them.",
|
"report.unfollow_explanation": "You are following this account. To not see their posts in your home feed anymore, unfollow them.",
|
||||||
"search.placeholder": "Recercar",
|
"search.placeholder": "Recercar",
|
||||||
"search_popout.search_format": "Format recèrca avançada",
|
"search_popout.search_format": "Format recèrca avançada",
|
||||||
|
@ -439,7 +439,7 @@
|
||||||
"search_popout.tips.text": "Lo tèxte brut tòrna escais, noms d’utilizaire e etiquetas correspondents",
|
"search_popout.tips.text": "Lo tèxte brut tòrna escais, noms d’utilizaire e etiquetas correspondents",
|
||||||
"search_popout.tips.user": "utilizaire",
|
"search_popout.tips.user": "utilizaire",
|
||||||
"search_results.accounts": "Gents",
|
"search_results.accounts": "Gents",
|
||||||
"search_results.all": "All",
|
"search_results.all": "Tot",
|
||||||
"search_results.hashtags": "Etiquetas",
|
"search_results.hashtags": "Etiquetas",
|
||||||
"search_results.nothing_found": "Could not find anything for these search terms",
|
"search_results.nothing_found": "Could not find anything for these search terms",
|
||||||
"search_results.statuses": "Tuts",
|
"search_results.statuses": "Tuts",
|
||||||
|
@ -457,12 +457,12 @@
|
||||||
"status.direct": "Messatge per @{name}",
|
"status.direct": "Messatge per @{name}",
|
||||||
"status.edit": "Modificar",
|
"status.edit": "Modificar",
|
||||||
"status.edited": "Edited {date}",
|
"status.edited": "Edited {date}",
|
||||||
"status.edited_x_times": "Edited {count, plural, one {{count} time} other {{count} times}}",
|
"status.edited_x_times": "Modificat {count, plural, un {{count} còp} other {{count} còps}}",
|
||||||
"status.embed": "Embarcar",
|
"status.embed": "Embarcar",
|
||||||
"status.favourite": "Apondre als favorits",
|
"status.favourite": "Apondre als favorits",
|
||||||
"status.filtered": "Filtrat",
|
"status.filtered": "Filtrat",
|
||||||
"status.history.created": "{name} created {date}",
|
"status.history.created": "{name} o creèt lo {date}",
|
||||||
"status.history.edited": "{name} edited {date}",
|
"status.history.edited": "{name} o modifiquèt lo {date}",
|
||||||
"status.load_more": "Cargar mai",
|
"status.load_more": "Cargar mai",
|
||||||
"status.media_hidden": "Mèdia rescondut",
|
"status.media_hidden": "Mèdia rescondut",
|
||||||
"status.mention": "Mencionar",
|
"status.mention": "Mencionar",
|
||||||
|
@ -520,7 +520,7 @@
|
||||||
"upload_error.poll": "Lo mandadís de fichièr es pas autorizat pels sondatges.",
|
"upload_error.poll": "Lo mandadís de fichièr es pas autorizat pels sondatges.",
|
||||||
"upload_form.audio_description": "Descriure per las personas amb pèrdas auditivas",
|
"upload_form.audio_description": "Descriure per las personas amb pèrdas auditivas",
|
||||||
"upload_form.description": "Descripcion pels mal vesents",
|
"upload_form.description": "Descripcion pels mal vesents",
|
||||||
"upload_form.description_missing": "No description added",
|
"upload_form.description_missing": "Cap de descripcion pas aponduda",
|
||||||
"upload_form.edit": "Modificar",
|
"upload_form.edit": "Modificar",
|
||||||
"upload_form.thumbnail": "Cambiar la vinheta",
|
"upload_form.thumbnail": "Cambiar la vinheta",
|
||||||
"upload_form.undo": "Suprimir",
|
"upload_form.undo": "Suprimir",
|
||||||
|
|
|
@ -95,7 +95,7 @@
|
||||||
"compose.language.change": "Alterar idioma",
|
"compose.language.change": "Alterar idioma",
|
||||||
"compose.language.search": "Pesquisar idiomas...",
|
"compose.language.search": "Pesquisar idiomas...",
|
||||||
"compose_form.direct_message_warning_learn_more": "Saiba mais",
|
"compose_form.direct_message_warning_learn_more": "Saiba mais",
|
||||||
"compose_form.encryption_warning": "Posts on Mastodon are not end-to-end encrypted. Do not share any dangerous information over Mastodon.",
|
"compose_form.encryption_warning": "Postagens no Mastodon não são criptografadas de ponta-a-ponta. Não compartilhe nenhuma informação sensível no Mastodon.",
|
||||||
"compose_form.hashtag_warning": "Este toot não aparecerá em nenhuma hashtag porque está como não-listado. Somente toots públicos podem ser pesquisados por hashtag.",
|
"compose_form.hashtag_warning": "Este toot não aparecerá em nenhuma hashtag porque está como não-listado. Somente toots públicos podem ser pesquisados por hashtag.",
|
||||||
"compose_form.lock_disclaimer": "Seu perfil não está {locked}. Qualquer um pode te seguir e ver os toots privados.",
|
"compose_form.lock_disclaimer": "Seu perfil não está {locked}. Qualquer um pode te seguir e ver os toots privados.",
|
||||||
"compose_form.lock_disclaimer.lock": "trancado",
|
"compose_form.lock_disclaimer.lock": "trancado",
|
||||||
|
@ -106,7 +106,7 @@
|
||||||
"compose_form.poll.remove_option": "Remover opção",
|
"compose_form.poll.remove_option": "Remover opção",
|
||||||
"compose_form.poll.switch_to_multiple": "Permitir múltiplas escolhas",
|
"compose_form.poll.switch_to_multiple": "Permitir múltiplas escolhas",
|
||||||
"compose_form.poll.switch_to_single": "Opção única",
|
"compose_form.poll.switch_to_single": "Opção única",
|
||||||
"compose_form.publish": "Publish",
|
"compose_form.publish": "Publicar",
|
||||||
"compose_form.publish_loud": "{publish}!",
|
"compose_form.publish_loud": "{publish}!",
|
||||||
"compose_form.save_changes": "Salvar alterações",
|
"compose_form.save_changes": "Salvar alterações",
|
||||||
"compose_form.sensitive.hide": "{count, plural, one {Marcar mídia como sensível} other {Marcar mídias como sensível}}",
|
"compose_form.sensitive.hide": "{count, plural, one {Marcar mídia como sensível} other {Marcar mídias como sensível}}",
|
||||||
|
|
|
@ -32,7 +32,7 @@
|
||||||
"account.mute": "Nevšímaj si @{name}",
|
"account.mute": "Nevšímaj si @{name}",
|
||||||
"account.mute_notifications": "Stĺm oboznámenia od @{name}",
|
"account.mute_notifications": "Stĺm oboznámenia od @{name}",
|
||||||
"account.muted": "Nevšímaný/á",
|
"account.muted": "Nevšímaný/á",
|
||||||
"account.posts": "Príspevky",
|
"account.posts": "Príspevky/ov",
|
||||||
"account.posts_with_replies": "Príspevky, aj s odpoveďami",
|
"account.posts_with_replies": "Príspevky, aj s odpoveďami",
|
||||||
"account.report": "Nahlás @{name}",
|
"account.report": "Nahlás @{name}",
|
||||||
"account.requested": "Čaká na schválenie. Klikni pre zrušenie žiadosti",
|
"account.requested": "Čaká na schválenie. Klikni pre zrušenie žiadosti",
|
||||||
|
@ -93,7 +93,7 @@
|
||||||
"community.column_settings.media_only": "Iba médiá",
|
"community.column_settings.media_only": "Iba médiá",
|
||||||
"community.column_settings.remote_only": "Iba odľahlé",
|
"community.column_settings.remote_only": "Iba odľahlé",
|
||||||
"compose.language.change": "Zmeň jazyk",
|
"compose.language.change": "Zmeň jazyk",
|
||||||
"compose.language.search": "Search languages...",
|
"compose.language.search": "Hľadaj medzi jazykmi...",
|
||||||
"compose_form.direct_message_warning_learn_more": "Zisti viac",
|
"compose_form.direct_message_warning_learn_more": "Zisti viac",
|
||||||
"compose_form.encryption_warning": "Posts on Mastodon are not end-to-end encrypted. Do not share any dangerous information over Mastodon.",
|
"compose_form.encryption_warning": "Posts on Mastodon are not end-to-end encrypted. Do not share any dangerous information over Mastodon.",
|
||||||
"compose_form.hashtag_warning": "Tento toot nebude zobrazený pod žiadným haštagom lebo nieje listovaný. Iba verejné tooty môžu byť nájdené podľa haštagu.",
|
"compose_form.hashtag_warning": "Tento toot nebude zobrazený pod žiadným haštagom lebo nieje listovaný. Iba verejné tooty môžu byť nájdené podľa haštagu.",
|
||||||
|
@ -106,7 +106,7 @@
|
||||||
"compose_form.poll.remove_option": "Odstráň túto voľbu",
|
"compose_form.poll.remove_option": "Odstráň túto voľbu",
|
||||||
"compose_form.poll.switch_to_multiple": "Zmeň anketu pre povolenie viacerých možností",
|
"compose_form.poll.switch_to_multiple": "Zmeň anketu pre povolenie viacerých možností",
|
||||||
"compose_form.poll.switch_to_single": "Zmeň anketu na takú s jedinou voľbou",
|
"compose_form.poll.switch_to_single": "Zmeň anketu na takú s jedinou voľbou",
|
||||||
"compose_form.publish": "Publish",
|
"compose_form.publish": "Zverejni",
|
||||||
"compose_form.publish_loud": "{publish}!",
|
"compose_form.publish_loud": "{publish}!",
|
||||||
"compose_form.save_changes": "Ulož zmeny",
|
"compose_form.save_changes": "Ulož zmeny",
|
||||||
"compose_form.sensitive.hide": "Označ médiá ako chúlostivé",
|
"compose_form.sensitive.hide": "Označ médiá ako chúlostivé",
|
||||||
|
@ -149,7 +149,7 @@
|
||||||
"embed.instructions": "Umiestni kód uvedený nižšie pre pridanie tohto statusu na tvoju web stránku.",
|
"embed.instructions": "Umiestni kód uvedený nižšie pre pridanie tohto statusu na tvoju web stránku.",
|
||||||
"embed.preview": "Tu je ako to bude vyzerať:",
|
"embed.preview": "Tu je ako to bude vyzerať:",
|
||||||
"emoji_button.activity": "Aktivita",
|
"emoji_button.activity": "Aktivita",
|
||||||
"emoji_button.clear": "Clear",
|
"emoji_button.clear": "Vyčisti",
|
||||||
"emoji_button.custom": "Vlastné",
|
"emoji_button.custom": "Vlastné",
|
||||||
"emoji_button.flags": "Vlajky",
|
"emoji_button.flags": "Vlajky",
|
||||||
"emoji_button.food": "Jedlá a nápoje",
|
"emoji_button.food": "Jedlá a nápoje",
|
||||||
|
@ -169,7 +169,7 @@
|
||||||
"empty_column.blocks": "Ešte si nikoho nezablokoval/a.",
|
"empty_column.blocks": "Ešte si nikoho nezablokoval/a.",
|
||||||
"empty_column.bookmarked_statuses": "Ešte nemáš žiadné záložky. Keď si pridáš príspevok k záložkám, zobrazí sa tu.",
|
"empty_column.bookmarked_statuses": "Ešte nemáš žiadné záložky. Keď si pridáš príspevok k záložkám, zobrazí sa tu.",
|
||||||
"empty_column.community": "Lokálna časová os je prázdna. Napíšte niečo, aby sa to tu začalo hýbať!",
|
"empty_column.community": "Lokálna časová os je prázdna. Napíšte niečo, aby sa to tu začalo hýbať!",
|
||||||
"empty_column.direct": "You don't have any direct messages yet. When you send or receive one, it will show up here.",
|
"empty_column.direct": "Ešte nemáš žiadne priame správy. Keď nejakú pošleš, alebo dostaneš, ukáže sa tu.",
|
||||||
"empty_column.domain_blocks": "Žiadne domény ešte niesú skryté.",
|
"empty_column.domain_blocks": "Žiadne domény ešte niesú skryté.",
|
||||||
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!",
|
"empty_column.explore_statuses": "Nothing is trending right now. Check back later!",
|
||||||
"empty_column.favourited_statuses": "Nemáš obľúbené ešte žiadne príspevky. Keď si nejaký obľúbiš, bude zobrazený práve tu.",
|
"empty_column.favourited_statuses": "Nemáš obľúbené ešte žiadne príspevky. Keď si nejaký obľúbiš, bude zobrazený práve tu.",
|
||||||
|
@ -267,7 +267,7 @@
|
||||||
"lightbox.expand": "Rozšíriť náhľad obrázku",
|
"lightbox.expand": "Rozšíriť náhľad obrázku",
|
||||||
"lightbox.next": "Ďalšie",
|
"lightbox.next": "Ďalšie",
|
||||||
"lightbox.previous": "Predchádzajúci",
|
"lightbox.previous": "Predchádzajúci",
|
||||||
"limited_account_hint.action": "Show profile anyway",
|
"limited_account_hint.action": "Ukáž profil aj tak",
|
||||||
"limited_account_hint.title": "This profile has been hidden by the moderators of your server.",
|
"limited_account_hint.title": "This profile has been hidden by the moderators of your server.",
|
||||||
"lists.account.add": "Pridaj do zoznamu",
|
"lists.account.add": "Pridaj do zoznamu",
|
||||||
"lists.account.remove": "Odober zo zoznamu",
|
"lists.account.remove": "Odober zo zoznamu",
|
||||||
|
@ -372,10 +372,10 @@
|
||||||
"poll_button.remove_poll": "Odstráň anketu",
|
"poll_button.remove_poll": "Odstráň anketu",
|
||||||
"privacy.change": "Uprav súkromie príspevku",
|
"privacy.change": "Uprav súkromie príspevku",
|
||||||
"privacy.direct.long": "Pošli iba spomenutým užívateľom",
|
"privacy.direct.long": "Pošli iba spomenutým užívateľom",
|
||||||
"privacy.direct.short": "Direct",
|
"privacy.direct.short": "Iba spomenutým ľudom",
|
||||||
"privacy.private.long": "Pošli iba následovateľom",
|
"privacy.private.long": "Pošli iba následovateľom",
|
||||||
"privacy.private.short": "Followers-only",
|
"privacy.private.short": "Iba pre sledujúcich",
|
||||||
"privacy.public.long": "Visible for all",
|
"privacy.public.long": "Viditeľné pre všetkých",
|
||||||
"privacy.public.short": "Verejné",
|
"privacy.public.short": "Verejné",
|
||||||
"privacy.unlisted.long": "Visible for all, but opted-out of discovery features",
|
"privacy.unlisted.long": "Visible for all, but opted-out of discovery features",
|
||||||
"privacy.unlisted.short": "Verejne, ale nezobraziť v osi",
|
"privacy.unlisted.short": "Verejne, ale nezobraziť v osi",
|
||||||
|
|
|
@ -92,10 +92,10 @@
|
||||||
"community.column_settings.local_only": "Vetëm vendore",
|
"community.column_settings.local_only": "Vetëm vendore",
|
||||||
"community.column_settings.media_only": "Vetëm Media",
|
"community.column_settings.media_only": "Vetëm Media",
|
||||||
"community.column_settings.remote_only": "Vetëm të largëta",
|
"community.column_settings.remote_only": "Vetëm të largëta",
|
||||||
"compose.language.change": "Change language",
|
"compose.language.change": "Ndryshoni gjuhën",
|
||||||
"compose.language.search": "Search languages...",
|
"compose.language.search": "Kërkoni te gjuhët…",
|
||||||
"compose_form.direct_message_warning_learn_more": "Mësoni më tepër",
|
"compose_form.direct_message_warning_learn_more": "Mësoni më tepër",
|
||||||
"compose_form.encryption_warning": "Posts on Mastodon are not end-to-end encrypted. Do not share any dangerous information over Mastodon.",
|
"compose_form.encryption_warning": "Postimet në Mastodon nuk fshehtëzohen skaj-më-skaj. Mos ndani me të tjerë gjëra me spec në Mastodon.",
|
||||||
"compose_form.hashtag_warning": "Ky mesazh s’do të paraqitet nën ndonjë hashtag, ngaqë s’i është caktuar ndonjë. Vetëm mesazhet publike mund të kërkohen sipas hashtagësh.",
|
"compose_form.hashtag_warning": "Ky mesazh s’do të paraqitet nën ndonjë hashtag, ngaqë s’i është caktuar ndonjë. Vetëm mesazhet publike mund të kërkohen sipas hashtagësh.",
|
||||||
"compose_form.lock_disclaimer": "Llogaria juaj s’është {locked}. Mund ta ndjekë cilido, për të parë postimet tuaja vetëm për ndjekësit.",
|
"compose_form.lock_disclaimer": "Llogaria juaj s’është {locked}. Mund ta ndjekë cilido, për të parë postimet tuaja vetëm për ndjekësit.",
|
||||||
"compose_form.lock_disclaimer.lock": "e kyçur",
|
"compose_form.lock_disclaimer.lock": "e kyçur",
|
||||||
|
@ -106,7 +106,7 @@
|
||||||
"compose_form.poll.remove_option": "Hiqe këtë zgjedhje",
|
"compose_form.poll.remove_option": "Hiqe këtë zgjedhje",
|
||||||
"compose_form.poll.switch_to_multiple": "Ndrysho votimin për të lejuar shumë zgjedhje",
|
"compose_form.poll.switch_to_multiple": "Ndrysho votimin për të lejuar shumë zgjedhje",
|
||||||
"compose_form.poll.switch_to_single": "Ndrysho votimin për të lejuar vetëm një zgjedhje",
|
"compose_form.poll.switch_to_single": "Ndrysho votimin për të lejuar vetëm një zgjedhje",
|
||||||
"compose_form.publish": "Publish",
|
"compose_form.publish": "Botoje",
|
||||||
"compose_form.publish_loud": "{publish}!",
|
"compose_form.publish_loud": "{publish}!",
|
||||||
"compose_form.save_changes": "Ruaji ndryshimet",
|
"compose_form.save_changes": "Ruaji ndryshimet",
|
||||||
"compose_form.sensitive.hide": "{count, plural, one {Vëri shenjë medias si rezervat} other {Vëru shenjë mediave si rezervat}}",
|
"compose_form.sensitive.hide": "{count, plural, one {Vëri shenjë medias si rezervat} other {Vëru shenjë mediave si rezervat}}",
|
||||||
|
@ -149,7 +149,7 @@
|
||||||
"embed.instructions": "Trupëzojeni këtë gjendje në sajtin tuaj duke kopjuar kodin më poshtë.",
|
"embed.instructions": "Trupëzojeni këtë gjendje në sajtin tuaj duke kopjuar kodin më poshtë.",
|
||||||
"embed.preview": "Ja si do të duket:",
|
"embed.preview": "Ja si do të duket:",
|
||||||
"emoji_button.activity": "Veprimtari",
|
"emoji_button.activity": "Veprimtari",
|
||||||
"emoji_button.clear": "Clear",
|
"emoji_button.clear": "Spastroje",
|
||||||
"emoji_button.custom": "Vetjak",
|
"emoji_button.custom": "Vetjak",
|
||||||
"emoji_button.flags": "Flamuj",
|
"emoji_button.flags": "Flamuj",
|
||||||
"emoji_button.food": "Ushqim & Pije",
|
"emoji_button.food": "Ushqim & Pije",
|
||||||
|
@ -228,47 +228,47 @@
|
||||||
"intervals.full.days": "{number, plural, one {# ditë} other {# ditë}}",
|
"intervals.full.days": "{number, plural, one {# ditë} other {# ditë}}",
|
||||||
"intervals.full.hours": "{number, plural, one {# orë} other {# orë}}",
|
"intervals.full.hours": "{number, plural, one {# orë} other {# orë}}",
|
||||||
"intervals.full.minutes": "{number, plural, one {# minutë} other {# minuta}}",
|
"intervals.full.minutes": "{number, plural, one {# minutë} other {# minuta}}",
|
||||||
"keyboard_shortcuts.back": "për shkuarje mbrapsht",
|
"keyboard_shortcuts.back": "Për shkuarje mbrapsht",
|
||||||
"keyboard_shortcuts.blocked": "për hapje liste përdoruesish të bllokuar",
|
"keyboard_shortcuts.blocked": "Për hapje liste përdoruesish të bllokuar",
|
||||||
"keyboard_shortcuts.boost": "për përforcim",
|
"keyboard_shortcuts.boost": "Përforcim postimi",
|
||||||
"keyboard_shortcuts.column": "për kalim fokusi mbi një gjendje te një nga shtyllat",
|
"keyboard_shortcuts.column": "Fokusi mbi një shtyllë",
|
||||||
"keyboard_shortcuts.compose": "për kalim fokusi te fusha e hartimit të mesazheve",
|
"keyboard_shortcuts.compose": "Fokusi te fusha e hartimit të mesazheve",
|
||||||
"keyboard_shortcuts.description": "Përshkrim",
|
"keyboard_shortcuts.description": "Përshkrim",
|
||||||
"keyboard_shortcuts.direct": "për hapje shtylle mesazhesh të drejtpërdrejtë",
|
"keyboard_shortcuts.direct": "për hapje shtylle mesazhesh të drejtpërdrejtë",
|
||||||
"keyboard_shortcuts.down": "për zbritje poshtë nëpër listë",
|
"keyboard_shortcuts.down": "Për zbritje poshtë nëpër listë",
|
||||||
"keyboard_shortcuts.enter": "për hapje gjendjeje",
|
"keyboard_shortcuts.enter": "Për hapje postimi",
|
||||||
"keyboard_shortcuts.favourite": "për t’i vënë shenjë si të parapëlqyer",
|
"keyboard_shortcuts.favourite": "Për t’i vënë shenjë si të parapëlqyer një postimi",
|
||||||
"keyboard_shortcuts.favourites": "për hapje liste të parapëlqyerish",
|
"keyboard_shortcuts.favourites": "Për hapje liste të parapëlqyerish",
|
||||||
"keyboard_shortcuts.federated": "për hapje rrjedhe kohore të të federuarve",
|
"keyboard_shortcuts.federated": "Për hapje rrjedhe kohore të të federuarve",
|
||||||
"keyboard_shortcuts.heading": "Shkurtore tastiere",
|
"keyboard_shortcuts.heading": "Shkurtore tastiere",
|
||||||
"keyboard_shortcuts.home": "për hapje rrjedhe kohore vetjake",
|
"keyboard_shortcuts.home": "Për hapje rrjedhe kohore vetjake",
|
||||||
"keyboard_shortcuts.hotkey": "Tast përkatës",
|
"keyboard_shortcuts.hotkey": "Tast përkatës",
|
||||||
"keyboard_shortcuts.legend": "për shfaqje të kësaj legjende",
|
"keyboard_shortcuts.legend": "Për shfaqje të kësaj legjende",
|
||||||
"keyboard_shortcuts.local": "për hapje rrjedhe kohore vendore",
|
"keyboard_shortcuts.local": "Për hapje rrjedhe kohore vendore",
|
||||||
"keyboard_shortcuts.mention": "për përmendje të autorit",
|
"keyboard_shortcuts.mention": "Për përmendje të autorit",
|
||||||
"keyboard_shortcuts.muted": "për hapje liste përdoruesish të heshtuar",
|
"keyboard_shortcuts.muted": "Për hapje liste përdoruesish të heshtuar",
|
||||||
"keyboard_shortcuts.my_profile": "për hapjen e profilit tuaj",
|
"keyboard_shortcuts.my_profile": "Për hapjen e profilit tuaj",
|
||||||
"keyboard_shortcuts.notifications": "për hapje shtylle njoftimesh",
|
"keyboard_shortcuts.notifications": "Për hapje shtylle njoftimesh",
|
||||||
"keyboard_shortcuts.open_media": "për hapje mediash",
|
"keyboard_shortcuts.open_media": "Për hapje mediash",
|
||||||
"keyboard_shortcuts.pinned": "për hapje liste mesazhesh të fiksuar",
|
"keyboard_shortcuts.pinned": "Për hapje liste mesazhesh të fiksuar",
|
||||||
"keyboard_shortcuts.profile": "për hapje të profilit të autorit",
|
"keyboard_shortcuts.profile": "Për hapje të profilit të autorit",
|
||||||
"keyboard_shortcuts.reply": "për t’u përgjigjur",
|
"keyboard_shortcuts.reply": "Për t’iu përgjigjur një postimi",
|
||||||
"keyboard_shortcuts.requests": "për hapje liste kërkesash për ndjekje",
|
"keyboard_shortcuts.requests": "Për hapje liste kërkesash për ndjekje",
|
||||||
"keyboard_shortcuts.search": "për kalim fokusi te kërkimi",
|
"keyboard_shortcuts.search": "Për kalim fokusi te kërkimi",
|
||||||
"keyboard_shortcuts.spoilers": "për shfaqje/fshehje fushe CW",
|
"keyboard_shortcuts.spoilers": "Për shfaqje/fshehje fushe CW",
|
||||||
"keyboard_shortcuts.start": "për hapjen e shtyllës “fillojani”",
|
"keyboard_shortcuts.start": "Për hapjen e shtyllës “fillojani”",
|
||||||
"keyboard_shortcuts.toggle_hidden": "për shfaqje/fshehje teksti pas CW",
|
"keyboard_shortcuts.toggle_hidden": "Për shfaqje/fshehje teksti pas CW",
|
||||||
"keyboard_shortcuts.toggle_sensitivity": "për shfaqje/fshehje mediash",
|
"keyboard_shortcuts.toggle_sensitivity": "Për shfaqje/fshehje mediash",
|
||||||
"keyboard_shortcuts.toot": "për të filluar një mesazh fringo të ri",
|
"keyboard_shortcuts.toot": "Për të filluar një mesazh të ri",
|
||||||
"keyboard_shortcuts.unfocus": "për heqjen e fokusit nga fusha e hartimit të mesazheve apo kërkimeve",
|
"keyboard_shortcuts.unfocus": "Për heqjen e fokusit nga fusha e hartimit të mesazheve apo kërkimeve",
|
||||||
"keyboard_shortcuts.up": "për ngjitje sipër nëpër listë",
|
"keyboard_shortcuts.up": "Për ngjitje sipër nëpër listë",
|
||||||
"lightbox.close": "Mbylle",
|
"lightbox.close": "Mbylle",
|
||||||
"lightbox.compress": "Ngjeshe kuadratin e parjes së figurave",
|
"lightbox.compress": "Ngjeshe kuadratin e parjes së figurave",
|
||||||
"lightbox.expand": "Zgjeroje kuadratin e parjes së figurave",
|
"lightbox.expand": "Zgjeroje kuadratin e parjes së figurave",
|
||||||
"lightbox.next": "Pasuesja",
|
"lightbox.next": "Pasuesja",
|
||||||
"lightbox.previous": "E mëparshmja",
|
"lightbox.previous": "E mëparshmja",
|
||||||
"limited_account_hint.action": "Show profile anyway",
|
"limited_account_hint.action": "Shfaqe profilin sido qoftë",
|
||||||
"limited_account_hint.title": "This profile has been hidden by the moderators of your server.",
|
"limited_account_hint.title": "Ky profil është fshehur nga moderatorët e shërbyesit tuaj.",
|
||||||
"lists.account.add": "Shto në listë",
|
"lists.account.add": "Shto në listë",
|
||||||
"lists.account.remove": "Hiqe nga lista",
|
"lists.account.remove": "Hiqe nga lista",
|
||||||
"lists.delete": "Fshije listën",
|
"lists.delete": "Fshije listën",
|
||||||
|
|
|
@ -4,19 +4,17 @@ $black: #000000;
|
||||||
$classic-base-color: #282c37;
|
$classic-base-color: #282c37;
|
||||||
$classic-primary-color: #9baec8;
|
$classic-primary-color: #9baec8;
|
||||||
$classic-secondary-color: #d9e1e8;
|
$classic-secondary-color: #d9e1e8;
|
||||||
$classic-highlight-color: #2b90d9;
|
$classic-highlight-color: #6364ff;
|
||||||
|
|
||||||
$ui-base-color: $classic-base-color !default;
|
$ui-base-color: $classic-base-color !default;
|
||||||
$ui-primary-color: $classic-primary-color !default;
|
$ui-primary-color: $classic-primary-color !default;
|
||||||
$ui-secondary-color: $classic-secondary-color !default;
|
$ui-secondary-color: $classic-secondary-color !default;
|
||||||
|
$ui-highlight-color: $classic-highlight-color !default;
|
||||||
// Differences
|
|
||||||
$ui-highlight-color: #2b5fd9;
|
|
||||||
|
|
||||||
$darker-text-color: lighten($ui-primary-color, 20%) !default;
|
$darker-text-color: lighten($ui-primary-color, 20%) !default;
|
||||||
$dark-text-color: lighten($ui-primary-color, 12%) !default;
|
$dark-text-color: lighten($ui-primary-color, 12%) !default;
|
||||||
$secondary-text-color: lighten($ui-secondary-color, 6%) !default;
|
$secondary-text-color: lighten($ui-secondary-color, 6%) !default;
|
||||||
$highlight-text-color: $classic-highlight-color !default;
|
$highlight-text-color: lighten($ui-highlight-color, 8%) !default;
|
||||||
$action-button-color: #8d9ac2;
|
$action-button-color: #8d9ac2;
|
||||||
|
|
||||||
$inverted-text-color: $black !default;
|
$inverted-text-color: $black !default;
|
||||||
|
|
|
@ -5,7 +5,7 @@ $white: #ffffff;
|
||||||
$classic-base-color: #282c37;
|
$classic-base-color: #282c37;
|
||||||
$classic-primary-color: #9baec8;
|
$classic-primary-color: #9baec8;
|
||||||
$classic-secondary-color: #d9e1e8;
|
$classic-secondary-color: #d9e1e8;
|
||||||
$classic-highlight-color: #2b90d9;
|
$classic-highlight-color: #6364ff;
|
||||||
|
|
||||||
// Differences
|
// Differences
|
||||||
$success-green: lighten(#3c754d, 8%);
|
$success-green: lighten(#3c754d, 8%);
|
||||||
|
@ -17,10 +17,11 @@ $ui-base-color: $classic-secondary-color !default;
|
||||||
$ui-base-lighter-color: #b0c0cf;
|
$ui-base-lighter-color: #b0c0cf;
|
||||||
$ui-primary-color: #9bcbed;
|
$ui-primary-color: #9bcbed;
|
||||||
$ui-secondary-color: $classic-base-color !default;
|
$ui-secondary-color: $classic-base-color !default;
|
||||||
$ui-highlight-color: #2b90d9;
|
$ui-highlight-color: $classic-highlight-color !default;
|
||||||
|
|
||||||
$primary-text-color: $black !default;
|
$primary-text-color: $black !default;
|
||||||
$darker-text-color: $classic-base-color !default;
|
$darker-text-color: $classic-base-color !default;
|
||||||
|
$highlight-text-color: darken($ui-highlight-color, 8%) !default;
|
||||||
$dark-text-color: #444b5d;
|
$dark-text-color: #444b5d;
|
||||||
$action-button-color: #606984;
|
$action-button-color: #606984;
|
||||||
|
|
||||||
|
|
|
@ -133,12 +133,12 @@ $content-width: 840px;
|
||||||
|
|
||||||
.simple-navigation-active-leaf a {
|
.simple-navigation-active-leaf a {
|
||||||
color: $primary-text-color;
|
color: $primary-text-color;
|
||||||
background-color: $ui-highlight-color;
|
background-color: darken($ui-highlight-color, 2%);
|
||||||
border-bottom: 0;
|
border-bottom: 0;
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background-color: lighten($ui-highlight-color, 5%);
|
background-color: $ui-highlight-color;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -901,7 +901,7 @@ a.name-tag,
|
||||||
border: 0;
|
border: 0;
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: lighten($ui-highlight-color, 8%);
|
color: $highlight-text-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
dl:first-child .verified {
|
dl:first-child .verified {
|
||||||
|
|
|
@ -42,7 +42,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.button {
|
.button {
|
||||||
background-color: $ui-highlight-color;
|
background-color: darken($ui-highlight-color, 2%);
|
||||||
border: 10px none;
|
border: 10px none;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
@ -60,20 +60,16 @@
|
||||||
text-align: center;
|
text-align: center;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
transition: all 100ms ease-in;
|
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
width: auto;
|
width: auto;
|
||||||
|
|
||||||
&:active,
|
&:active,
|
||||||
&:focus,
|
&:focus,
|
||||||
&:hover {
|
&:hover {
|
||||||
background-color: lighten($ui-highlight-color, 10%);
|
background-color: $ui-highlight-color;
|
||||||
transition: all 200ms ease-out;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
&--destructive {
|
&--destructive {
|
||||||
transition: none;
|
|
||||||
|
|
||||||
&:active,
|
&:active,
|
||||||
&:focus,
|
&:focus,
|
||||||
&:hover {
|
&:hover {
|
||||||
|
@ -829,7 +825,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
a.unhandled-link {
|
a.unhandled-link {
|
||||||
color: lighten($ui-highlight-color, 8%);
|
color: $highlight-text-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
.status__content__spoiler-link {
|
.status__content__spoiler-link {
|
||||||
|
@ -899,7 +895,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
&.unhandled-link {
|
&.unhandled-link {
|
||||||
color: lighten($ui-highlight-color, 8%);
|
color: $highlight-text-color;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -912,7 +908,7 @@
|
||||||
display: block;
|
display: block;
|
||||||
font-size: 15px;
|
font-size: 15px;
|
||||||
line-height: 20px;
|
line-height: 20px;
|
||||||
color: lighten($ui-highlight-color, 8%);
|
color: $highlight-text-color;
|
||||||
border: 0;
|
border: 0;
|
||||||
background: transparent;
|
background: transparent;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
@ -2437,7 +2433,7 @@ a.account__display-name {
|
||||||
height: 3.9375rem;
|
height: 3.9375rem;
|
||||||
bottom: 1.3125rem;
|
bottom: 1.3125rem;
|
||||||
right: 1.3125rem;
|
right: 1.3125rem;
|
||||||
background: darken($ui-highlight-color, 3%);
|
background: darken($ui-highlight-color, 2%);
|
||||||
color: $white;
|
color: $white;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
font-size: 21px;
|
font-size: 21px;
|
||||||
|
@ -2448,7 +2444,7 @@ a.account__display-name {
|
||||||
&:hover,
|
&:hover,
|
||||||
&:focus,
|
&:focus,
|
||||||
&:active {
|
&:active {
|
||||||
background: lighten($ui-highlight-color, 7%);
|
background: $ui-highlight-color;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2881,11 +2877,11 @@ a.account__display-name {
|
||||||
}
|
}
|
||||||
|
|
||||||
.react-toggle--checked .react-toggle-track {
|
.react-toggle--checked .react-toggle-track {
|
||||||
background-color: $ui-highlight-color;
|
background-color: darken($ui-highlight-color, 2%);
|
||||||
}
|
}
|
||||||
|
|
||||||
.react-toggle--checked:is(:hover, :focus-within):not(.react-toggle--disabled) .react-toggle-track {
|
.react-toggle--checked:is(:hover, :focus-within):not(.react-toggle--disabled) .react-toggle-track {
|
||||||
background-color: lighten($ui-highlight-color, 10%);
|
background-color: $ui-highlight-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
.react-toggle-track-check {
|
.react-toggle-track-check {
|
||||||
|
@ -2974,7 +2970,7 @@ a.account__display-name {
|
||||||
}
|
}
|
||||||
|
|
||||||
&.active {
|
&.active {
|
||||||
color: $ui-highlight-color;
|
color: $highlight-text-color;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -3407,14 +3403,14 @@ a.status-card.compact:hover {
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: lighten($ui-highlight-color, 8%);
|
color: $highlight-text-color;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
|
||||||
&:hover,
|
&:hover,
|
||||||
&:focus,
|
&:focus,
|
||||||
&:active {
|
&:active {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
color: lighten($ui-highlight-color, 12%);
|
color: lighten($highlight-text-color, 4%);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -6427,8 +6423,8 @@ a.status-card.compact:hover {
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
|
|
||||||
&.checked {
|
&.checked {
|
||||||
border-color: lighten($ui-highlight-color, 8%);
|
border-color: lighten($ui-highlight-color, 4%);
|
||||||
background: lighten($ui-highlight-color, 8%);
|
background: lighten($ui-highlight-color, 4%);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -791,7 +791,7 @@
|
||||||
border-top: 0;
|
border-top: 0;
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: lighten($ui-highlight-color, 8%);
|
color: $highlight-text-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
dl:first-child .verified {
|
dl:first-child .verified {
|
||||||
|
|
|
@ -82,7 +82,7 @@
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: baseline;
|
align-items: baseline;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
background: $ui-highlight-color;
|
background: darken($ui-highlight-color, 2%);
|
||||||
color: $primary-text-color;
|
color: $primary-text-color;
|
||||||
transition: all 100ms ease-in;
|
transition: all 100ms ease-in;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
|
@ -95,7 +95,7 @@
|
||||||
&:active,
|
&:active,
|
||||||
&:focus,
|
&:focus,
|
||||||
&:hover {
|
&:hover {
|
||||||
background-color: lighten($ui-highlight-color, 10%);
|
background-color: $ui-highlight-color;
|
||||||
transition: all 200ms ease-out;
|
transition: all 200ms ease-out;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -463,14 +463,14 @@ code {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
border: 0;
|
border: 0;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
background: $ui-highlight-color;
|
background: darken($ui-highlight-color, 2%);
|
||||||
color: $primary-text-color;
|
color: $primary-text-color;
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
line-height: inherit;
|
line-height: inherit;
|
||||||
height: auto;
|
height: auto;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
text-transform: uppercase;
|
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
text-transform: uppercase;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
@ -483,13 +483,10 @@ code {
|
||||||
margin-right: 0;
|
margin-right: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:hover {
|
|
||||||
background-color: lighten($ui-highlight-color, 5%);
|
|
||||||
}
|
|
||||||
|
|
||||||
&:active,
|
&:active,
|
||||||
&:focus {
|
&:focus,
|
||||||
background-color: darken($ui-highlight-color, 5%);
|
&:hover {
|
||||||
|
background-color: $ui-highlight-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:disabled:hover {
|
&:disabled:hover {
|
||||||
|
|
|
@ -80,7 +80,7 @@
|
||||||
.button.logo-button {
|
.button.logo-button {
|
||||||
flex: 0 auto;
|
flex: 0 auto;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
background: $ui-highlight-color;
|
background: darken($ui-highlight-color, 2%);
|
||||||
color: $primary-text-color;
|
color: $primary-text-color;
|
||||||
text-transform: none;
|
text-transform: none;
|
||||||
line-height: 1.2;
|
line-height: 1.2;
|
||||||
|
@ -104,7 +104,7 @@
|
||||||
&:active,
|
&:active,
|
||||||
&:focus,
|
&:focus,
|
||||||
&:hover {
|
&:hover {
|
||||||
background: lighten($ui-highlight-color, 10%);
|
background: $ui-highlight-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:disabled,
|
&:disabled,
|
||||||
|
|
|
@ -34,7 +34,7 @@ $primary-text-color: $white !default;
|
||||||
$darker-text-color: $ui-primary-color !default;
|
$darker-text-color: $ui-primary-color !default;
|
||||||
$dark-text-color: $ui-base-lighter-color !default;
|
$dark-text-color: $ui-base-lighter-color !default;
|
||||||
$secondary-text-color: $ui-secondary-color !default;
|
$secondary-text-color: $ui-secondary-color !default;
|
||||||
$highlight-text-color: $ui-highlight-color !default;
|
$highlight-text-color: lighten($ui-highlight-color, 8%) !default;
|
||||||
$action-button-color: $ui-base-lighter-color !default;
|
$action-button-color: $ui-base-lighter-color !default;
|
||||||
$passive-text-color: $gold-star !default;
|
$passive-text-color: $gold-star !default;
|
||||||
$active-passive-text-color: $success-green !default;
|
$active-passive-text-color: $success-green !default;
|
||||||
|
|
|
@ -9,7 +9,6 @@ RSS::Builder.build do |doc|
|
||||||
|
|
||||||
@statuses.each do |status|
|
@statuses.each do |status|
|
||||||
doc.item do |item|
|
doc.item do |item|
|
||||||
item.title(l(status.created_at))
|
|
||||||
item.link(ActivityPub::TagManager.instance.url_for(status))
|
item.link(ActivityPub::TagManager.instance.url_for(status))
|
||||||
item.pub_date(status.created_at)
|
item.pub_date(status.created_at)
|
||||||
item.description(rss_status_content_format(status))
|
item.description(rss_status_content_format(status))
|
||||||
|
|
|
@ -7,7 +7,6 @@ RSS::Builder.build do |doc|
|
||||||
|
|
||||||
@statuses.each do |status|
|
@statuses.each do |status|
|
||||||
doc.item do |item|
|
doc.item do |item|
|
||||||
item.title(l(status.created_at))
|
|
||||||
item.link(ActivityPub::TagManager.instance.url_for(status))
|
item.link(ActivityPub::TagManager.instance.url_for(status))
|
||||||
item.pub_date(status.created_at)
|
item.pub_date(status.created_at)
|
||||||
item.description(rss_status_content_format(status))
|
item.description(rss_status_content_format(status))
|
||||||
|
|
|
@ -21,6 +21,14 @@ af:
|
||||||
username:
|
username:
|
||||||
invalid: moet slegs letters, nommers en onderstrepe bevat
|
invalid: moet slegs letters, nommers en onderstrepe bevat
|
||||||
reserved: is gereserveer
|
reserved: is gereserveer
|
||||||
|
admin/webhook:
|
||||||
|
attributes:
|
||||||
|
url:
|
||||||
|
invalid: is nie 'n geldige URL nie
|
||||||
|
doorkeeper/application:
|
||||||
|
attributes:
|
||||||
|
website:
|
||||||
|
invalid: is nie 'n geldige URL nie
|
||||||
status:
|
status:
|
||||||
attributes:
|
attributes:
|
||||||
reblog:
|
reblog:
|
||||||
|
|
|
@ -9,3 +9,13 @@ ast:
|
||||||
username: Nome d'usuariu
|
username: Nome d'usuariu
|
||||||
user/invite_request:
|
user/invite_request:
|
||||||
text: Motivu
|
text: Motivu
|
||||||
|
errors:
|
||||||
|
models:
|
||||||
|
admin/webhook:
|
||||||
|
attributes:
|
||||||
|
url:
|
||||||
|
invalid: nun ye una URL válida
|
||||||
|
doorkeeper/application:
|
||||||
|
attributes:
|
||||||
|
website:
|
||||||
|
invalid: nun ye una URL válida
|
||||||
|
|
|
@ -21,6 +21,14 @@ ca:
|
||||||
username:
|
username:
|
||||||
invalid: només pot contenir lletres, números i guions baixos
|
invalid: només pot contenir lletres, números i guions baixos
|
||||||
reserved: està reservat
|
reserved: està reservat
|
||||||
|
admin/webhook:
|
||||||
|
attributes:
|
||||||
|
url:
|
||||||
|
invalid: no és una URL vàlida
|
||||||
|
doorkeeper/application:
|
||||||
|
attributes:
|
||||||
|
website:
|
||||||
|
invalid: no és una URL vàlida
|
||||||
status:
|
status:
|
||||||
attributes:
|
attributes:
|
||||||
reblog:
|
reblog:
|
||||||
|
|
|
@ -21,6 +21,14 @@ cs:
|
||||||
username:
|
username:
|
||||||
invalid: musí obsahovat pouze písmena, číslice a podtržítka
|
invalid: musí obsahovat pouze písmena, číslice a podtržítka
|
||||||
reserved: je vyhrazeno
|
reserved: je vyhrazeno
|
||||||
|
admin/webhook:
|
||||||
|
attributes:
|
||||||
|
url:
|
||||||
|
invalid: není platná URL
|
||||||
|
doorkeeper/application:
|
||||||
|
attributes:
|
||||||
|
website:
|
||||||
|
invalid: není platná URL
|
||||||
status:
|
status:
|
||||||
attributes:
|
attributes:
|
||||||
reblog:
|
reblog:
|
||||||
|
|
|
@ -21,6 +21,14 @@ da:
|
||||||
username:
|
username:
|
||||||
invalid: må kun indeholde cifre, bogstaver og understreger
|
invalid: må kun indeholde cifre, bogstaver og understreger
|
||||||
reserved: er reserveret
|
reserved: er reserveret
|
||||||
|
admin/webhook:
|
||||||
|
attributes:
|
||||||
|
url:
|
||||||
|
invalid: "'er ikke en gyldig URL"
|
||||||
|
doorkeeper/application:
|
||||||
|
attributes:
|
||||||
|
website:
|
||||||
|
invalid: "'er ikke en gyldig URL"
|
||||||
status:
|
status:
|
||||||
attributes:
|
attributes:
|
||||||
reblog:
|
reblog:
|
||||||
|
|
|
@ -21,6 +21,14 @@ de:
|
||||||
username:
|
username:
|
||||||
invalid: nur Buchstaben, Ziffern und Unterstriche
|
invalid: nur Buchstaben, Ziffern und Unterstriche
|
||||||
reserved: ist reserviert
|
reserved: ist reserviert
|
||||||
|
admin/webhook:
|
||||||
|
attributes:
|
||||||
|
url:
|
||||||
|
invalid: ist keine gültige URL
|
||||||
|
doorkeeper/application:
|
||||||
|
attributes:
|
||||||
|
website:
|
||||||
|
invalid: ist keine gültige URL
|
||||||
status:
|
status:
|
||||||
attributes:
|
attributes:
|
||||||
reblog:
|
reblog:
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
en-GB:
|
|
@ -21,6 +21,14 @@ es-AR:
|
||||||
username:
|
username:
|
||||||
invalid: sólo letras, números y subguiones ("_")
|
invalid: sólo letras, números y subguiones ("_")
|
||||||
reserved: está reservado
|
reserved: está reservado
|
||||||
|
admin/webhook:
|
||||||
|
attributes:
|
||||||
|
url:
|
||||||
|
invalid: no es una dirección web válida
|
||||||
|
doorkeeper/application:
|
||||||
|
attributes:
|
||||||
|
website:
|
||||||
|
invalid: no es una dirección web válida
|
||||||
status:
|
status:
|
||||||
attributes:
|
attributes:
|
||||||
reblog:
|
reblog:
|
||||||
|
|
|
@ -21,6 +21,14 @@ es:
|
||||||
username:
|
username:
|
||||||
invalid: solo puede contener letras, números y guiones bajos
|
invalid: solo puede contener letras, números y guiones bajos
|
||||||
reserved: está reservado
|
reserved: está reservado
|
||||||
|
admin/webhook:
|
||||||
|
attributes:
|
||||||
|
url:
|
||||||
|
invalid: no es una URL válida
|
||||||
|
doorkeeper/application:
|
||||||
|
attributes:
|
||||||
|
website:
|
||||||
|
invalid: no es una URL válida
|
||||||
status:
|
status:
|
||||||
attributes:
|
attributes:
|
||||||
reblog:
|
reblog:
|
||||||
|
|
|
@ -21,6 +21,14 @@ fr:
|
||||||
username:
|
username:
|
||||||
invalid: seulement des lettres, des nombres et des tirets bas
|
invalid: seulement des lettres, des nombres et des tirets bas
|
||||||
reserved: est réservé
|
reserved: est réservé
|
||||||
|
admin/webhook:
|
||||||
|
attributes:
|
||||||
|
url:
|
||||||
|
invalid: n’est pas une URL valide
|
||||||
|
doorkeeper/application:
|
||||||
|
attributes:
|
||||||
|
website:
|
||||||
|
invalid: n’est pas une URL valide
|
||||||
status:
|
status:
|
||||||
attributes:
|
attributes:
|
||||||
reblog:
|
reblog:
|
||||||
|
|
|
@ -21,6 +21,14 @@ gl:
|
||||||
username:
|
username:
|
||||||
invalid: só letras, números e trazo baixo
|
invalid: só letras, números e trazo baixo
|
||||||
reserved: está reservado
|
reserved: está reservado
|
||||||
|
admin/webhook:
|
||||||
|
attributes:
|
||||||
|
url:
|
||||||
|
invalid: non é un URL válido
|
||||||
|
doorkeeper/application:
|
||||||
|
attributes:
|
||||||
|
website:
|
||||||
|
invalid: non é un URL válido
|
||||||
status:
|
status:
|
||||||
attributes:
|
attributes:
|
||||||
reblog:
|
reblog:
|
||||||
|
|
|
@ -21,6 +21,14 @@ hu:
|
||||||
username:
|
username:
|
||||||
invalid: csak betűket, számokat vagy alávonást tartalmazhat
|
invalid: csak betűket, számokat vagy alávonást tartalmazhat
|
||||||
reserved: fenntartott
|
reserved: fenntartott
|
||||||
|
admin/webhook:
|
||||||
|
attributes:
|
||||||
|
url:
|
||||||
|
invalid: nem érvényes URL
|
||||||
|
doorkeeper/application:
|
||||||
|
attributes:
|
||||||
|
website:
|
||||||
|
invalid: nem érvényes URL
|
||||||
status:
|
status:
|
||||||
attributes:
|
attributes:
|
||||||
reblog:
|
reblog:
|
||||||
|
|
|
@ -21,6 +21,14 @@ io:
|
||||||
username:
|
username:
|
||||||
invalid: mustas konsistar nur literi, nombri e sublinei
|
invalid: mustas konsistar nur literi, nombri e sublinei
|
||||||
reserved: rezervitas
|
reserved: rezervitas
|
||||||
|
admin/webhook:
|
||||||
|
attributes:
|
||||||
|
url:
|
||||||
|
invalid: ne esas valida URL
|
||||||
|
doorkeeper/application:
|
||||||
|
attributes:
|
||||||
|
website:
|
||||||
|
invalid: ne esas valida URL
|
||||||
status:
|
status:
|
||||||
attributes:
|
attributes:
|
||||||
reblog:
|
reblog:
|
||||||
|
|
|
@ -21,6 +21,14 @@ it:
|
||||||
username:
|
username:
|
||||||
invalid: solo lettere, numeri e trattini bassi
|
invalid: solo lettere, numeri e trattini bassi
|
||||||
reserved: è riservato
|
reserved: è riservato
|
||||||
|
admin/webhook:
|
||||||
|
attributes:
|
||||||
|
url:
|
||||||
|
invalid: non è un URL valido
|
||||||
|
doorkeeper/application:
|
||||||
|
attributes:
|
||||||
|
website:
|
||||||
|
invalid: non è un URL valido
|
||||||
status:
|
status:
|
||||||
attributes:
|
attributes:
|
||||||
reblog:
|
reblog:
|
||||||
|
|
|
@ -21,6 +21,14 @@ ja:
|
||||||
username:
|
username:
|
||||||
invalid: アルファベット・数字・アンダーバーの組み合わせで入力してください
|
invalid: アルファベット・数字・アンダーバーの組み合わせで入力してください
|
||||||
reserved: は予約されています
|
reserved: は予約されています
|
||||||
|
admin/webhook:
|
||||||
|
attributes:
|
||||||
|
url:
|
||||||
|
invalid: は無効なURLです
|
||||||
|
doorkeeper/application:
|
||||||
|
attributes:
|
||||||
|
website:
|
||||||
|
invalid: は無効なURLです
|
||||||
status:
|
status:
|
||||||
attributes:
|
attributes:
|
||||||
reblog:
|
reblog:
|
||||||
|
|
|
@ -21,6 +21,14 @@ ku:
|
||||||
username:
|
username:
|
||||||
invalid: pêdivî ye ku tenê tîp, hejmar û xêzikên jêrîn hebin
|
invalid: pêdivî ye ku tenê tîp, hejmar û xêzikên jêrîn hebin
|
||||||
reserved: hatiye bikaranîn
|
reserved: hatiye bikaranîn
|
||||||
|
admin/webhook:
|
||||||
|
attributes:
|
||||||
|
url:
|
||||||
|
invalid: ev girêdaneke nederbasdar e
|
||||||
|
doorkeeper/application:
|
||||||
|
attributes:
|
||||||
|
website:
|
||||||
|
invalid: ev girêdaneke nederbasdar e
|
||||||
status:
|
status:
|
||||||
attributes:
|
attributes:
|
||||||
reblog:
|
reblog:
|
||||||
|
|
|
@ -21,6 +21,14 @@ lv:
|
||||||
username:
|
username:
|
||||||
invalid: drīkst saturēt tikai burtus, ciparus un pasvītras
|
invalid: drīkst saturēt tikai burtus, ciparus un pasvītras
|
||||||
reserved: ir rezervēts
|
reserved: ir rezervēts
|
||||||
|
admin/webhook:
|
||||||
|
attributes:
|
||||||
|
url:
|
||||||
|
invalid: nav derīgs URL
|
||||||
|
doorkeeper/application:
|
||||||
|
attributes:
|
||||||
|
website:
|
||||||
|
invalid: nav derīgs URL
|
||||||
status:
|
status:
|
||||||
attributes:
|
attributes:
|
||||||
reblog:
|
reblog:
|
||||||
|
|
|
@ -21,6 +21,14 @@ pl:
|
||||||
username:
|
username:
|
||||||
invalid: może składać się tylko z liter, cyfr i podkreślników
|
invalid: może składać się tylko z liter, cyfr i podkreślników
|
||||||
reserved: jest zarezerwowana
|
reserved: jest zarezerwowana
|
||||||
|
admin/webhook:
|
||||||
|
attributes:
|
||||||
|
url:
|
||||||
|
invalid: nie jest poprawnym adresem URL
|
||||||
|
doorkeeper/application:
|
||||||
|
attributes:
|
||||||
|
website:
|
||||||
|
invalid: nie jest poprawnym adresem URL
|
||||||
status:
|
status:
|
||||||
attributes:
|
attributes:
|
||||||
reblog:
|
reblog:
|
||||||
|
|
|
@ -21,6 +21,14 @@ pt-PT:
|
||||||
username:
|
username:
|
||||||
invalid: apenas letras, números e underscores
|
invalid: apenas letras, números e underscores
|
||||||
reserved: está reservado
|
reserved: está reservado
|
||||||
|
admin/webhook:
|
||||||
|
attributes:
|
||||||
|
url:
|
||||||
|
invalid: não é um URL válido
|
||||||
|
doorkeeper/application:
|
||||||
|
attributes:
|
||||||
|
website:
|
||||||
|
invalid: não é um URL válido
|
||||||
status:
|
status:
|
||||||
attributes:
|
attributes:
|
||||||
reblog:
|
reblog:
|
||||||
|
|
|
@ -21,6 +21,14 @@ ru:
|
||||||
username:
|
username:
|
||||||
invalid: только буквы, цифры и символ подчёркивания
|
invalid: только буквы, цифры и символ подчёркивания
|
||||||
reserved: зарезервировано
|
reserved: зарезервировано
|
||||||
|
admin/webhook:
|
||||||
|
attributes:
|
||||||
|
url:
|
||||||
|
invalid: не является допустимым URL
|
||||||
|
doorkeeper/application:
|
||||||
|
attributes:
|
||||||
|
website:
|
||||||
|
invalid: не является допустимым URL
|
||||||
status:
|
status:
|
||||||
attributes:
|
attributes:
|
||||||
reblog:
|
reblog:
|
||||||
|
|
|
@ -21,6 +21,14 @@ sl:
|
||||||
username:
|
username:
|
||||||
invalid: samo črke, številke in podčrtaji
|
invalid: samo črke, številke in podčrtaji
|
||||||
reserved: je rezerviran
|
reserved: je rezerviran
|
||||||
|
admin/webhook:
|
||||||
|
attributes:
|
||||||
|
url:
|
||||||
|
invalid: ni veljaven URL
|
||||||
|
doorkeeper/application:
|
||||||
|
attributes:
|
||||||
|
website:
|
||||||
|
invalid: ni veljaven URL
|
||||||
status:
|
status:
|
||||||
attributes:
|
attributes:
|
||||||
reblog:
|
reblog:
|
||||||
|
|
|
@ -21,6 +21,14 @@ sq:
|
||||||
username:
|
username:
|
||||||
invalid: duhet të përmbajë vetëm shkronja, numra dhe nënvija
|
invalid: duhet të përmbajë vetëm shkronja, numra dhe nënvija
|
||||||
reserved: është i rezervuar
|
reserved: është i rezervuar
|
||||||
|
admin/webhook:
|
||||||
|
attributes:
|
||||||
|
url:
|
||||||
|
invalid: s’është URL e vlefshme
|
||||||
|
doorkeeper/application:
|
||||||
|
attributes:
|
||||||
|
website:
|
||||||
|
invalid: s’është URL
|
||||||
status:
|
status:
|
||||||
attributes:
|
attributes:
|
||||||
reblog:
|
reblog:
|
||||||
|
|
|
@ -21,6 +21,14 @@ tr:
|
||||||
username:
|
username:
|
||||||
invalid: sadece harfler, sayılar ve alt çizgiler
|
invalid: sadece harfler, sayılar ve alt çizgiler
|
||||||
reserved: kullanılamaz
|
reserved: kullanılamaz
|
||||||
|
admin/webhook:
|
||||||
|
attributes:
|
||||||
|
url:
|
||||||
|
invalid: geçerli bir URL değil
|
||||||
|
doorkeeper/application:
|
||||||
|
attributes:
|
||||||
|
website:
|
||||||
|
invalid: geçerli bir URL değil
|
||||||
status:
|
status:
|
||||||
attributes:
|
attributes:
|
||||||
reblog:
|
reblog:
|
||||||
|
|
|
@ -21,6 +21,14 @@ uk:
|
||||||
username:
|
username:
|
||||||
invalid: тільки літери, цифри та підкреслення
|
invalid: тільки літери, цифри та підкреслення
|
||||||
reserved: зарезервовано
|
reserved: зарезервовано
|
||||||
|
admin/webhook:
|
||||||
|
attributes:
|
||||||
|
url:
|
||||||
|
invalid: не є дійсною URL-адресою
|
||||||
|
doorkeeper/application:
|
||||||
|
attributes:
|
||||||
|
website:
|
||||||
|
invalid: не є дійсною URL-адресою
|
||||||
status:
|
status:
|
||||||
attributes:
|
attributes:
|
||||||
reblog:
|
reblog:
|
||||||
|
|
|
@ -21,6 +21,14 @@ vi:
|
||||||
username:
|
username:
|
||||||
invalid: chỉ chấp nhận ký tự, số và dấu gạch dưới
|
invalid: chỉ chấp nhận ký tự, số và dấu gạch dưới
|
||||||
reserved: bị cấm sử dụng
|
reserved: bị cấm sử dụng
|
||||||
|
admin/webhook:
|
||||||
|
attributes:
|
||||||
|
url:
|
||||||
|
invalid: không phải là một URL hợp lệ
|
||||||
|
doorkeeper/application:
|
||||||
|
attributes:
|
||||||
|
website:
|
||||||
|
invalid: không phải là một URL hợp lệ
|
||||||
status:
|
status:
|
||||||
attributes:
|
attributes:
|
||||||
reblog:
|
reblog:
|
||||||
|
|
|
@ -21,6 +21,10 @@ zh-CN:
|
||||||
username:
|
username:
|
||||||
invalid: 只能使用字母、数字和下划线
|
invalid: 只能使用字母、数字和下划线
|
||||||
reserved: 是保留关键字
|
reserved: 是保留关键字
|
||||||
|
admin/webhook:
|
||||||
|
attributes:
|
||||||
|
url:
|
||||||
|
invalid: 不是有效的 URL。
|
||||||
status:
|
status:
|
||||||
attributes:
|
attributes:
|
||||||
reblog:
|
reblog:
|
||||||
|
|
|
@ -21,6 +21,14 @@ zh-TW:
|
||||||
username:
|
username:
|
||||||
invalid: 只能有字母、數字及底線
|
invalid: 只能有字母、數字及底線
|
||||||
reserved: 是保留關鍵字
|
reserved: 是保留關鍵字
|
||||||
|
admin/webhook:
|
||||||
|
attributes:
|
||||||
|
url:
|
||||||
|
invalid: 不是有效的 URL
|
||||||
|
doorkeeper/application:
|
||||||
|
attributes:
|
||||||
|
website:
|
||||||
|
invalid: 不是有效的 URL
|
||||||
status:
|
status:
|
||||||
attributes:
|
attributes:
|
||||||
reblog:
|
reblog:
|
||||||
|
|
|
@ -8,10 +8,28 @@ af:
|
||||||
federation_hint_html: Met 'n rekening op %{instance} sal jy in staat wees om mense op enige Mastodon en federasie bediener te volg.
|
federation_hint_html: Met 'n rekening op %{instance} sal jy in staat wees om mense op enige Mastodon en federasie bediener te volg.
|
||||||
get_apps: Probeer 'n mobiele toepassing
|
get_apps: Probeer 'n mobiele toepassing
|
||||||
hosted_on: Mastodon gehuisves op %{domain}
|
hosted_on: Mastodon gehuisves op %{domain}
|
||||||
|
tagline: Gedesentraliseerde sosiale netwerk
|
||||||
admin:
|
admin:
|
||||||
|
domain_blocks:
|
||||||
|
existing_domain_block: Jy het alreeds strenger perke ingelê op %{name}.
|
||||||
trends:
|
trends:
|
||||||
only_allowed: Slegs toegelate
|
only_allowed: Slegs toegelate
|
||||||
trending: Gewild
|
trending: Gewild
|
||||||
|
webhooks:
|
||||||
|
add_new: Voeg end-punt by
|
||||||
|
delete: Wis uit
|
||||||
|
disable: Deaktiveer
|
||||||
|
disabled: Gedeaktiveer
|
||||||
|
edit: Redigeer end-punt
|
||||||
|
empty: Jy het tans geen opgestelde web-hoek end-punte nie.
|
||||||
|
enable: Aktiveer
|
||||||
|
enabled: Aktief
|
||||||
|
new: Nuwe web-hoek
|
||||||
|
rotate_secret: Roteer geheim
|
||||||
|
secret: Onderteken geheim
|
||||||
|
status: Status
|
||||||
|
title: Web-hoeke
|
||||||
|
webhook: Web-hoek
|
||||||
disputes:
|
disputes:
|
||||||
strikes:
|
strikes:
|
||||||
approve_appeal: Aanvaar appêl
|
approve_appeal: Aanvaar appêl
|
||||||
|
|
|
@ -42,7 +42,6 @@ ar:
|
||||||
two: منشورات
|
two: منشورات
|
||||||
zero: منشورات
|
zero: منشورات
|
||||||
status_count_before: نشروا
|
status_count_before: نشروا
|
||||||
tagline: اتبع أصدقائك وصديقاتك واكتشف آخرين وأخريات
|
|
||||||
terms: شروط الخدمة
|
terms: شروط الخدمة
|
||||||
unavailable_content: محتوى غير متوفر
|
unavailable_content: محتوى غير متوفر
|
||||||
unavailable_content_description:
|
unavailable_content_description:
|
||||||
|
@ -842,7 +841,6 @@ ar:
|
||||||
applications:
|
applications:
|
||||||
created: تم إنشاء التطبيق بنجاح
|
created: تم إنشاء التطبيق بنجاح
|
||||||
destroyed: تم حذف التطبيق بنجاح
|
destroyed: تم حذف التطبيق بنجاح
|
||||||
invalid_url: إن الرابط المقدم غير صالح
|
|
||||||
regenerate_token: إعادة توليد رمز النفاذ
|
regenerate_token: إعادة توليد رمز النفاذ
|
||||||
token_regenerated: تم إعادة إنشاء الرمز الوصول بنجاح
|
token_regenerated: تم إعادة إنشاء الرمز الوصول بنجاح
|
||||||
warning: كن حذرا مع هذه البيانات. لا تقم أبدا بمشاركتها مع الآخَرين!
|
warning: كن حذرا مع هذه البيانات. لا تقم أبدا بمشاركتها مع الآخَرين!
|
||||||
|
|
|
@ -24,7 +24,6 @@ ast:
|
||||||
one: artículu
|
one: artículu
|
||||||
other: artículos
|
other: artículos
|
||||||
status_count_before: Que crearon
|
status_count_before: Que crearon
|
||||||
tagline: Sigui a persones y conoz a más xente
|
|
||||||
terms: Términos del serviciu
|
terms: Términos del serviciu
|
||||||
unavailable_content_description:
|
unavailable_content_description:
|
||||||
domain: Sirvidor
|
domain: Sirvidor
|
||||||
|
@ -144,6 +143,8 @@ ast:
|
||||||
site_title: Nome del sirvidor
|
site_title: Nome del sirvidor
|
||||||
title: Axustes del sitiu
|
title: Axustes del sitiu
|
||||||
title: Alministración
|
title: Alministración
|
||||||
|
webhooks:
|
||||||
|
events: Eventos
|
||||||
admin_mailer:
|
admin_mailer:
|
||||||
new_pending_account:
|
new_pending_account:
|
||||||
body: Los detalles de la cuenta nueva tán embaxo. Pues aprobar o refugar esta aplicación.
|
body: Los detalles de la cuenta nueva tán embaxo. Pues aprobar o refugar esta aplicación.
|
||||||
|
@ -164,7 +165,6 @@ ast:
|
||||||
sensitive_content: Conteníu sensible
|
sensitive_content: Conteníu sensible
|
||||||
toot_layout: Distribución de los barritos
|
toot_layout: Distribución de los barritos
|
||||||
applications:
|
applications:
|
||||||
invalid_url: La URL apurrida nun ye válida
|
|
||||||
warning: Ten munchu curiáu con estos datos, ¡enxamás nun los compartas con naide!
|
warning: Ten munchu curiáu con estos datos, ¡enxamás nun los compartas con naide!
|
||||||
auth:
|
auth:
|
||||||
change_password: Contraseña
|
change_password: Contraseña
|
||||||
|
|
|
@ -29,7 +29,6 @@ bg:
|
||||||
one: състояние
|
one: състояние
|
||||||
other: състояния
|
other: състояния
|
||||||
status_count_before: Написали
|
status_count_before: Написали
|
||||||
tagline: Следвайте приятели и открийте нови
|
|
||||||
terms: Условия за ползване
|
terms: Условия за ползване
|
||||||
unavailable_content: Модерирани сървъри
|
unavailable_content: Модерирани сървъри
|
||||||
unavailable_content_description:
|
unavailable_content_description:
|
||||||
|
@ -178,8 +177,6 @@ bg:
|
||||||
application_mailer:
|
application_mailer:
|
||||||
settings: 'Промяна на предпочитанията за e-mail: %{link}'
|
settings: 'Промяна на предпочитанията за e-mail: %{link}'
|
||||||
view: 'Преглед:'
|
view: 'Преглед:'
|
||||||
applications:
|
|
||||||
invalid_url: Предоставеният URL е невалиден
|
|
||||||
auth:
|
auth:
|
||||||
didnt_get_confirmation: Не получих инструкции за потвърждение
|
didnt_get_confirmation: Не получих инструкции за потвърждение
|
||||||
forgot_password: Забравих си паролата
|
forgot_password: Забравих си паролата
|
||||||
|
|
|
@ -31,7 +31,6 @@ bn:
|
||||||
one: অবস্থা
|
one: অবস্থা
|
||||||
other: স্থিতিগুলি
|
other: স্থিতিগুলি
|
||||||
status_count_before: কে লিখেছে
|
status_count_before: কে লিখেছে
|
||||||
tagline: পরিচিতজনদের সাথে যুক্ত হন এবং নতুনদের সাথে পরিচিত হন
|
|
||||||
terms: ব্যবহারের শর্তাবলী
|
terms: ব্যবহারের শর্তাবলী
|
||||||
unavailable_content: অনুপলব্ধ সামগ্রী
|
unavailable_content: অনুপলব্ধ সামগ্রী
|
||||||
unavailable_content_description:
|
unavailable_content_description:
|
||||||
|
|
|
@ -38,7 +38,7 @@ ca:
|
||||||
one: publicació
|
one: publicació
|
||||||
other: publicacions
|
other: publicacions
|
||||||
status_count_before: Qui ha publicat
|
status_count_before: Qui ha publicat
|
||||||
tagline: Segueix els teus amics i descobreix-ne de nous
|
tagline: Xarxa social descentralitzada
|
||||||
terms: Condicions de servei
|
terms: Condicions de servei
|
||||||
unavailable_content: Servidors moderats
|
unavailable_content: Servidors moderats
|
||||||
unavailable_content_description:
|
unavailable_content_description:
|
||||||
|
@ -852,6 +852,26 @@ ca:
|
||||||
edit_preset: Edita l'avís predeterminat
|
edit_preset: Edita l'avís predeterminat
|
||||||
empty: Encara no has definit cap preavís.
|
empty: Encara no has definit cap preavís.
|
||||||
title: Gestiona les configuracions predefinides dels avisos
|
title: Gestiona les configuracions predefinides dels avisos
|
||||||
|
webhooks:
|
||||||
|
add_new: Afegir extrem
|
||||||
|
delete: Elimina
|
||||||
|
description_html: Un <strong>webhook</strong> habilita Mastodon per a empènyer <strong>notificacions en temps real</strong> sobre els esdeveniments escollits de la teva pròpia aplicació, per tant la teva aplicació pot <strong>activar reaccions automaticament</strong>.
|
||||||
|
disable: Desactiva
|
||||||
|
disabled: Desactivat
|
||||||
|
edit: Editar extrem
|
||||||
|
empty: Encara no tens cap extrem de webhook configurat.
|
||||||
|
enable: Activa
|
||||||
|
enabled: Actiu
|
||||||
|
enabled_events:
|
||||||
|
one: 1 esdeveniment activat
|
||||||
|
other: "%{count} esdeveniments activats"
|
||||||
|
events: Esdeveniments
|
||||||
|
new: Nou webhook
|
||||||
|
rotate_secret: Rota el secret
|
||||||
|
secret: Signant el secret
|
||||||
|
status: Estat
|
||||||
|
title: Webhooks
|
||||||
|
webhook: Webhook
|
||||||
admin_mailer:
|
admin_mailer:
|
||||||
new_appeal:
|
new_appeal:
|
||||||
actions:
|
actions:
|
||||||
|
@ -916,7 +936,6 @@ ca:
|
||||||
applications:
|
applications:
|
||||||
created: L'aplicació s'ha creat correctament
|
created: L'aplicació s'ha creat correctament
|
||||||
destroyed: L'aplicació s'ha suprimit correctament
|
destroyed: L'aplicació s'ha suprimit correctament
|
||||||
invalid_url: L'URL proporcionat no és correcte
|
|
||||||
regenerate_token: Torna a generar l'identificador d'accés
|
regenerate_token: Torna a generar l'identificador d'accés
|
||||||
token_regenerated: L'identificador d'accés s'ha generat correctament
|
token_regenerated: L'identificador d'accés s'ha generat correctament
|
||||||
warning: Aneu amb compte amb aquestes dades. No les compartiu mai amb ningú!
|
warning: Aneu amb compte amb aquestes dades. No les compartiu mai amb ningú!
|
||||||
|
|
|
@ -37,7 +37,6 @@ ckb:
|
||||||
one: دۆخ
|
one: دۆخ
|
||||||
other: پۆست
|
other: پۆست
|
||||||
status_count_before: لە لایەن یەکەوە
|
status_count_before: لە لایەن یەکەوە
|
||||||
tagline: دوای هاوڕێکان بکەوە و ئەوانەی نوێ بدۆزیەوە
|
|
||||||
terms: مەرجەکانی خزمەتگوزاری
|
terms: مەرجەکانی خزمەتگوزاری
|
||||||
unavailable_content: ڕاژەی چاودێریکراو
|
unavailable_content: ڕاژەی چاودێریکراو
|
||||||
unavailable_content_description:
|
unavailable_content_description:
|
||||||
|
@ -721,7 +720,6 @@ ckb:
|
||||||
applications:
|
applications:
|
||||||
created: بەرنامە بە سەرکەوتوویی دروست کرا
|
created: بەرنامە بە سەرکەوتوویی دروست کرا
|
||||||
destroyed: بەرنامە بە سەرکەوتوویی سڕدراوەتەوە
|
destroyed: بەرنامە بە سەرکەوتوویی سڕدراوەتەوە
|
||||||
invalid_url: بەستەری دابینکراو نادروستە
|
|
||||||
regenerate_token: دووبارە دروستکردنەوەی نیشانەی چوونە ژوورەوە
|
regenerate_token: دووبارە دروستکردنەوەی نیشانەی چوونە ژوورەوە
|
||||||
token_regenerated: کۆدی دەستپێگەیشتن بە سەرکەوتوویی دروستکرا
|
token_regenerated: کۆدی دەستپێگەیشتن بە سەرکەوتوویی دروستکرا
|
||||||
warning: زۆر ئاگاداربە لەم داتایە. هەرگیز لەگەڵ کەس دا هاوبەشی مەکە!
|
warning: زۆر ئاگاداربە لەم داتایە. هەرگیز لەگەڵ کەس دا هاوبەشی مەکە!
|
||||||
|
|
|
@ -35,7 +35,6 @@ co:
|
||||||
one: statutu
|
one: statutu
|
||||||
other: statuti
|
other: statuti
|
||||||
status_count_before: Chì anu pubblicatu
|
status_count_before: Chì anu pubblicatu
|
||||||
tagline: Siguità amichi è scopre ancu di più altri
|
|
||||||
terms: Cundizione di u serviziu
|
terms: Cundizione di u serviziu
|
||||||
unavailable_content: Cuntinutu micca dispunibule
|
unavailable_content: Cuntinutu micca dispunibule
|
||||||
unavailable_content_description:
|
unavailable_content_description:
|
||||||
|
@ -705,7 +704,6 @@ co:
|
||||||
applications:
|
applications:
|
||||||
created: Applicazione creata
|
created: Applicazione creata
|
||||||
destroyed: Applicazione sguassata
|
destroyed: Applicazione sguassata
|
||||||
invalid_url: L’URL ch’è stata pruvista ùn hè valida
|
|
||||||
regenerate_token: Creà un’altra fiscia d’accessu
|
regenerate_token: Creà un’altra fiscia d’accessu
|
||||||
token_regenerated: A fiscia d’accessu hè stata rigenerata
|
token_regenerated: A fiscia d’accessu hè stata rigenerata
|
||||||
warning: Abbadate à quessi dati. Ùn i date à nisunu!
|
warning: Abbadate à quessi dati. Ùn i date à nisunu!
|
||||||
|
|
|
@ -40,7 +40,7 @@ cs:
|
||||||
one: příspěvek
|
one: příspěvek
|
||||||
other: příspěvků
|
other: příspěvků
|
||||||
status_count_before: Kteří napsali
|
status_count_before: Kteří napsali
|
||||||
tagline: Sledujte své přátele a objevujte nové
|
tagline: Decentralizovaná sociální síť
|
||||||
terms: Podmínky používání
|
terms: Podmínky používání
|
||||||
unavailable_content: Moderované servery
|
unavailable_content: Moderované servery
|
||||||
unavailable_content_description:
|
unavailable_content_description:
|
||||||
|
@ -886,6 +886,28 @@ cs:
|
||||||
edit_preset: Upravit předlohu pro varování
|
edit_preset: Upravit předlohu pro varování
|
||||||
empty: Zatím jste nedefinovali žádné předlohy varování.
|
empty: Zatím jste nedefinovali žádné předlohy varování.
|
||||||
title: Spravovat předlohy pro varování
|
title: Spravovat předlohy pro varování
|
||||||
|
webhooks:
|
||||||
|
add_new: Přidat koncový bod
|
||||||
|
delete: Smazat
|
||||||
|
description_html: "<strong>Webhook</strong> umožňuje Mastodonu o vybraných událostech <strong>notifikovat v reálném čase</strong> vaši vlastní aplikaci, aby mohla <strong>automaticky spouštět reakce</strong>."
|
||||||
|
disable: Vypnout
|
||||||
|
disabled: Vypnuto
|
||||||
|
edit: Upravit koncový bod
|
||||||
|
empty: Nemáte ještě nastavené žádné koncové body webhooků.
|
||||||
|
enable: Zapnout
|
||||||
|
enabled: Aktivní
|
||||||
|
enabled_events:
|
||||||
|
few: "%{count} zapnuté události"
|
||||||
|
many: "%{count} zapnutých událostí"
|
||||||
|
one: 1 zapnutá událost
|
||||||
|
other: "%{count} zapnutých událostí"
|
||||||
|
events: Události
|
||||||
|
new: Nový webhook
|
||||||
|
rotate_secret: Obnovit klíč
|
||||||
|
secret: Podpisový klíč
|
||||||
|
status: Stav
|
||||||
|
title: Webhooky
|
||||||
|
webhook: Webhook
|
||||||
admin_mailer:
|
admin_mailer:
|
||||||
new_appeal:
|
new_appeal:
|
||||||
actions:
|
actions:
|
||||||
|
@ -950,7 +972,6 @@ cs:
|
||||||
applications:
|
applications:
|
||||||
created: Aplikace úspěšně vytvořena
|
created: Aplikace úspěšně vytvořena
|
||||||
destroyed: Aplikace úspěšně smazána
|
destroyed: Aplikace úspěšně smazána
|
||||||
invalid_url: Zadaná URL adresa je neplatná
|
|
||||||
regenerate_token: Znovu vygenerovat přístupový token
|
regenerate_token: Znovu vygenerovat přístupový token
|
||||||
token_regenerated: Přístupový token byl úspěšně vygenerován
|
token_regenerated: Přístupový token byl úspěšně vygenerován
|
||||||
warning: Zacházejte s těmito daty opatrně. Nikdy je s nikým nesdílejte!
|
warning: Zacházejte s těmito daty opatrně. Nikdy je s nikým nesdílejte!
|
||||||
|
@ -1334,7 +1355,7 @@ cs:
|
||||||
description_html: Zapnete-li <strong>dvoufázové ověřování</strong> pomocí ověřovací aplikace, k přihlášení budete u sebe muset mít svůj mobil, který pro Vás bude generovat kódy k opsání.
|
description_html: Zapnete-li <strong>dvoufázové ověřování</strong> pomocí ověřovací aplikace, k přihlášení budete u sebe muset mít svůj mobil, který pro Vás bude generovat kódy k opsání.
|
||||||
enable: Zapnout
|
enable: Zapnout
|
||||||
instructions_html: "<strong>Naskenujte tento QR kód do Google Authenticator nebo podobné TOTP aplikace na svém telefonu</strong>. Následně bude tato aplikace generovat kódy, které budete zadávat při přihlašování."
|
instructions_html: "<strong>Naskenujte tento QR kód do Google Authenticator nebo podobné TOTP aplikace na svém telefonu</strong>. Následně bude tato aplikace generovat kódy, které budete zadávat při přihlašování."
|
||||||
manual_instructions: 'Nemůžete-li načíst QR kód a potřebujete ho zadat ručně, zde je tajemství v textové podobě:'
|
manual_instructions: 'Nemůžete-li načíst QR kód a potřebujete ho zadat ručně, zde je klíč v textové podobě:'
|
||||||
setup: Nastavit
|
setup: Nastavit
|
||||||
wrong_code: Zadaný kód je neplatný! Je čas na serveru i zařízení generujícím kód správný?
|
wrong_code: Zadaný kód je neplatný! Je čas na serveru i zařízení generujícím kód správný?
|
||||||
pagination:
|
pagination:
|
||||||
|
|
|
@ -42,7 +42,6 @@ cy:
|
||||||
two: statwsau
|
two: statwsau
|
||||||
zero: statwsau
|
zero: statwsau
|
||||||
status_count_before: Ysgrifennwyd gan
|
status_count_before: Ysgrifennwyd gan
|
||||||
tagline: Dilyn ffrindiau a darganfod rhai newydd
|
|
||||||
terms: Telerau gwasanaeth
|
terms: Telerau gwasanaeth
|
||||||
unavailable_content: Cynnwys nad yw ar gael
|
unavailable_content: Cynnwys nad yw ar gael
|
||||||
unavailable_content_description:
|
unavailable_content_description:
|
||||||
|
@ -587,7 +586,6 @@ cy:
|
||||||
applications:
|
applications:
|
||||||
created: Cais wedi ei greu'n llwyddiannus
|
created: Cais wedi ei greu'n llwyddiannus
|
||||||
destroyed: Cais wedi ei ddileu'n llwyddiannus
|
destroyed: Cais wedi ei ddileu'n llwyddiannus
|
||||||
invalid_url: Mae'r URL a ddarparwyd yn annilys
|
|
||||||
regenerate_token: Adfywio tocyn mynediad
|
regenerate_token: Adfywio tocyn mynediad
|
||||||
token_regenerated: Adfywiwyd y tocyn mynediad yn llwyddiannus
|
token_regenerated: Adfywiwyd y tocyn mynediad yn llwyddiannus
|
||||||
warning: Byddwch yn ofalus a'r data hyn. Peidiwch a'i rannu byth!
|
warning: Byddwch yn ofalus a'r data hyn. Peidiwch a'i rannu byth!
|
||||||
|
|
|
@ -38,7 +38,7 @@ da:
|
||||||
one: indlæg
|
one: indlæg
|
||||||
other: indlæg
|
other: indlæg
|
||||||
status_count_before: Som har postet
|
status_count_before: Som har postet
|
||||||
tagline: Følg venner og opdag nye
|
tagline: Decentraliseret socialt netværk
|
||||||
terms: Tjenestevilkår
|
terms: Tjenestevilkår
|
||||||
unavailable_content: Modererede servere
|
unavailable_content: Modererede servere
|
||||||
unavailable_content_description:
|
unavailable_content_description:
|
||||||
|
@ -852,6 +852,26 @@ da:
|
||||||
edit_preset: Redigér advarselsforvalg
|
edit_preset: Redigér advarselsforvalg
|
||||||
empty: Ingen advarselsforvalg defineret endnu.
|
empty: Ingen advarselsforvalg defineret endnu.
|
||||||
title: Håndtérr advarselsforvalg
|
title: Håndtérr advarselsforvalg
|
||||||
|
webhooks:
|
||||||
|
add_new: Tilføj endepunkt
|
||||||
|
delete: Slet
|
||||||
|
description_html: En <strong>webhook</strong> lader Mastodon pushe <strong>notifikationer i realtid</strong> om valgte begivenheder til ens egen applikation, så denne <strong>automatisk kan udløse reaktioner</strong>.
|
||||||
|
disable: Deaktivér
|
||||||
|
disabled: Deaktiveret
|
||||||
|
edit: Redigér endepunkt
|
||||||
|
empty: Der er endnu ikke opsat nogen webhook-endepunkter.
|
||||||
|
enable: Aktivér
|
||||||
|
enabled: Aktiv
|
||||||
|
enabled_events:
|
||||||
|
one: 1 aktiv begivenhed
|
||||||
|
other: "%{count} aktive begivenheder"
|
||||||
|
events: Begivenheder
|
||||||
|
new: Ny webhook
|
||||||
|
rotate_secret: Rotér hemmelighed
|
||||||
|
secret: Signeringshemmelighed
|
||||||
|
status: Status
|
||||||
|
title: Webhooks
|
||||||
|
webhook: Webhook
|
||||||
admin_mailer:
|
admin_mailer:
|
||||||
new_appeal:
|
new_appeal:
|
||||||
actions:
|
actions:
|
||||||
|
@ -916,7 +936,6 @@ da:
|
||||||
applications:
|
applications:
|
||||||
created: Applikation oprettet
|
created: Applikation oprettet
|
||||||
destroyed: Applikation slettet
|
destroyed: Applikation slettet
|
||||||
invalid_url: Den angivne URL er ugyldig
|
|
||||||
regenerate_token: Regenerér adgangstoken
|
regenerate_token: Regenerér adgangstoken
|
||||||
token_regenerated: Adgangstoken regenereret
|
token_regenerated: Adgangstoken regenereret
|
||||||
warning: Vær meget påpasselig med disse data. Del dem aldrig med nogen!
|
warning: Vær meget påpasselig med disse data. Del dem aldrig med nogen!
|
||||||
|
|
|
@ -38,7 +38,7 @@ de:
|
||||||
one: Beitrag
|
one: Beitrag
|
||||||
other: Beiträge
|
other: Beiträge
|
||||||
status_count_before: mit
|
status_count_before: mit
|
||||||
tagline: Finde deine Freunde und entdecke neue
|
tagline: Dezentrales soziales Netzwerk
|
||||||
terms: Nutzungsbedingungen
|
terms: Nutzungsbedingungen
|
||||||
unavailable_content: Nicht verfügbarer Inhalt
|
unavailable_content: Nicht verfügbarer Inhalt
|
||||||
unavailable_content_description:
|
unavailable_content_description:
|
||||||
|
@ -428,6 +428,7 @@ de:
|
||||||
destroyed_msg: Die Domain-Blockade wurde rückgängig gemacht
|
destroyed_msg: Die Domain-Blockade wurde rückgängig gemacht
|
||||||
domain: Domain
|
domain: Domain
|
||||||
edit: Domainblockade bearbeiten
|
edit: Domainblockade bearbeiten
|
||||||
|
existing_domain_block: Du hast %{name} bereits stärker eingeschränkt.
|
||||||
existing_domain_block_html: Es gibt schon eine Blockade für %{name}, diese muss erst <a href="%{unblock_url}">aufgehoben</a> werden.
|
existing_domain_block_html: Es gibt schon eine Blockade für %{name}, diese muss erst <a href="%{unblock_url}">aufgehoben</a> werden.
|
||||||
new:
|
new:
|
||||||
create: Blockade einrichten
|
create: Blockade einrichten
|
||||||
|
@ -851,6 +852,26 @@ de:
|
||||||
edit_preset: Warnungsvorlage bearbeiten
|
edit_preset: Warnungsvorlage bearbeiten
|
||||||
empty: Du hast noch keine Warnungsvorlagen hinzugefügt.
|
empty: Du hast noch keine Warnungsvorlagen hinzugefügt.
|
||||||
title: Warnungsvorlagen verwalten
|
title: Warnungsvorlagen verwalten
|
||||||
|
webhooks:
|
||||||
|
add_new: Endpunkt hinzufügen
|
||||||
|
delete: Löschen
|
||||||
|
description_html: Ein <strong>Webhook</strong> ermöglicht Mastodon <strong>Echtzeitbenachrichtigungen</strong> über ausgewählte Ereignisse an deine eigene Anwendung zu senden damit deine Anwendung <strong>automatisch Reaktionen auslösen kann</strong>.
|
||||||
|
disable: Deaktivieren
|
||||||
|
disabled: Deaktiviert
|
||||||
|
edit: Endpunkt bearbeiten
|
||||||
|
empty: Du hast noch keine Webhook Endpunkte konfiguriert.
|
||||||
|
enable: Aktivieren
|
||||||
|
enabled: Aktiv
|
||||||
|
enabled_events:
|
||||||
|
one: 1 aktiviertes Ereignis
|
||||||
|
other: "%{count} aktivierte Ereignisse"
|
||||||
|
events: Ereignisse
|
||||||
|
new: Neuer Webhook
|
||||||
|
rotate_secret: Geheimen Schlüssel rotieren
|
||||||
|
secret: Signaturgeheimnis
|
||||||
|
status: Status
|
||||||
|
title: Webhooks
|
||||||
|
webhook: Webhook
|
||||||
admin_mailer:
|
admin_mailer:
|
||||||
new_appeal:
|
new_appeal:
|
||||||
actions:
|
actions:
|
||||||
|
@ -915,7 +936,6 @@ de:
|
||||||
applications:
|
applications:
|
||||||
created: Anwendung erfolgreich erstellt
|
created: Anwendung erfolgreich erstellt
|
||||||
destroyed: Anwendung erfolgreich gelöscht
|
destroyed: Anwendung erfolgreich gelöscht
|
||||||
invalid_url: Die angegebene URL ist ungültig
|
|
||||||
regenerate_token: Zugangs-Token neu erstellen
|
regenerate_token: Zugangs-Token neu erstellen
|
||||||
token_regenerated: Zugangs-Token neu erstellt
|
token_regenerated: Zugangs-Token neu erstellt
|
||||||
warning: Sei mit diesen Daten sehr vorsichtig. Teile sie mit niemandem!
|
warning: Sei mit diesen Daten sehr vorsichtig. Teile sie mit niemandem!
|
||||||
|
|
|
@ -1 +1,164 @@
|
||||||
|
---
|
||||||
af:
|
af:
|
||||||
|
activerecord:
|
||||||
|
attributes:
|
||||||
|
doorkeeper/application:
|
||||||
|
name: Toepassing naam
|
||||||
|
redirect_uri: Herlei URI
|
||||||
|
scopes: Bestekke
|
||||||
|
website: Toepassing webtuiste
|
||||||
|
errors:
|
||||||
|
models:
|
||||||
|
doorkeeper/application:
|
||||||
|
attributes:
|
||||||
|
redirect_uri:
|
||||||
|
fragment_present: kan nie 'n vragment bevat nie.
|
||||||
|
invalid_uri: moet 'n geldige URI wees.
|
||||||
|
relative_uri: moet 'n absolute URI wees.
|
||||||
|
secured_uri: moet 'n HTTPS/SSL URI wees.
|
||||||
|
doorkeeper:
|
||||||
|
applications:
|
||||||
|
buttons:
|
||||||
|
authorize: Magtig
|
||||||
|
cancel: Kanselleer
|
||||||
|
destroy: Vernietig
|
||||||
|
edit: Redigeer
|
||||||
|
submit: Dien in
|
||||||
|
confirmations:
|
||||||
|
destroy: Is jy seker?
|
||||||
|
edit:
|
||||||
|
title: Redigeer toepassing
|
||||||
|
form:
|
||||||
|
error: Oeps! Hersien jou vorm vir moontlike foute
|
||||||
|
help:
|
||||||
|
native_redirect_uri: Gebruik %{native_redirect_uri} vir plaaslike toetse
|
||||||
|
redirect_uri: Gebruik een lyn per URI
|
||||||
|
scopes: Verdeel omvang-grense met spasies. Los dit leeg om verstek omvange te gebruik.
|
||||||
|
index:
|
||||||
|
application: Toepassing
|
||||||
|
callback_url: Terugroep URL
|
||||||
|
delete: Wis uit
|
||||||
|
empty: Jy het geen toepassings nie.
|
||||||
|
name: Naam
|
||||||
|
new: Nuwe toepassing
|
||||||
|
scopes: Omvange
|
||||||
|
show: Vertoon
|
||||||
|
title: Jou toepassings
|
||||||
|
new:
|
||||||
|
title: Nuwe toepassing
|
||||||
|
show:
|
||||||
|
actions: Aksies
|
||||||
|
application_id: Kliënt sleutel
|
||||||
|
callback_urls: Terugroep URL'e
|
||||||
|
scopes: Omvange
|
||||||
|
secret: Kliënt geheim
|
||||||
|
title: 'Toepassing: %{name}'
|
||||||
|
authorizations:
|
||||||
|
buttons:
|
||||||
|
authorize: Magtig
|
||||||
|
deny: Weier
|
||||||
|
error:
|
||||||
|
title: "'n Fout het plaasgevind"
|
||||||
|
new:
|
||||||
|
prompt_html: "%{client_name} wil toegang hê tot jou rekening. Dit is a derde party toepassing. <strong>Indien jy dit nie vertrou nie, moet dit nie bemagtig word nie.</strong>"
|
||||||
|
review_permissions: Hersien toestemming
|
||||||
|
title: Benodig magtiging
|
||||||
|
show:
|
||||||
|
title: Kopieër hierdie magtigings kode en plaas dit in die toepassing.
|
||||||
|
authorized_applications:
|
||||||
|
buttons:
|
||||||
|
revoke: Herroep
|
||||||
|
confirmations:
|
||||||
|
revoke: Is jy seker?
|
||||||
|
index:
|
||||||
|
authorized_at: Bemagtig op %{date}
|
||||||
|
description_html: Hierdie is toepassings wat deur middel van die API toegang tot jou rekening kan verkry. As daar enige toepassings is wat jy nie herken nie, of 'n toepassing is wat wangedra, kan die bemagtiging herroep word.
|
||||||
|
last_used_at: Laas gebruik op %{date}
|
||||||
|
never_used: Noot gebruik nie
|
||||||
|
scopes: Magtiging
|
||||||
|
superapp: Intern
|
||||||
|
title: Jou gemagtigde toepassings
|
||||||
|
errors:
|
||||||
|
messages:
|
||||||
|
access_denied: Die hulpbron eienaar of magtigingsbediener het die aansoek afgekeur.
|
||||||
|
credential_flow_not_configured: Hulpbron Eienaar Wagwoord Geloofsbrewe vloei het gefaal omdat Doorkeeper.configure.resource_owner_from_credentials nie opgestel is nie.
|
||||||
|
flash:
|
||||||
|
applications:
|
||||||
|
create:
|
||||||
|
notice: Toepassing geskep.
|
||||||
|
destroy:
|
||||||
|
notice: Toepassing uitgewis.
|
||||||
|
update:
|
||||||
|
notice: Toepassing opdateer.
|
||||||
|
authorized_applications:
|
||||||
|
destroy:
|
||||||
|
notice: Toepassing herroep.
|
||||||
|
grouped_scopes:
|
||||||
|
access:
|
||||||
|
read: Slegs-lees toegang
|
||||||
|
read/write: Lees en skryf toegang
|
||||||
|
write: Slegs-skryf toegang
|
||||||
|
title:
|
||||||
|
accounts: Rekeninge
|
||||||
|
admin/accounts: Administrasie van rekeninge
|
||||||
|
admin/all: Alle administratiewe funksies
|
||||||
|
admin/reports: Administrasie van rapporteringe
|
||||||
|
all: Alles
|
||||||
|
blocks: Blokkeringe
|
||||||
|
bookmarks: Boekmerke
|
||||||
|
conversations: Gesprekke
|
||||||
|
crypto: End-tot-end enkripsie
|
||||||
|
favourites: Gunstelinge
|
||||||
|
filters: Filters
|
||||||
|
follow: Verhoudinge
|
||||||
|
lists: Lyste
|
||||||
|
media: Media aanhegsels
|
||||||
|
mutes: Dempinge
|
||||||
|
notifications: Kennisgewings
|
||||||
|
push: Stoot kennisgewings
|
||||||
|
reports: Rapporteringe
|
||||||
|
search: Soek
|
||||||
|
statuses: Plasings
|
||||||
|
layouts:
|
||||||
|
admin:
|
||||||
|
nav:
|
||||||
|
applications: Toepassings
|
||||||
|
oauth2_provider: OAuth2 Verskaffer
|
||||||
|
application:
|
||||||
|
title: Benodig OAuth bemagtiging
|
||||||
|
scopes:
|
||||||
|
admin:read: lees alle data op die bediener
|
||||||
|
admin:read:accounts: lees sensitiewe inligting vanaf alle rekeninge
|
||||||
|
admin:read:reports: lees sensitiewe inligting van alle verslae end aangeklaagde rekeninge
|
||||||
|
admin:write: verander alle data op die bediener
|
||||||
|
admin:write:accounts: voer modereer aksies uit op rekeninge
|
||||||
|
admin:write:reports: voer modereer aksies uit op verslae
|
||||||
|
crypto: gebruik end-tot-end enkripsie
|
||||||
|
follow: verander rekening verhoudinge
|
||||||
|
push: ontvang jou stootkennisgewings
|
||||||
|
read: lees die data van al jou rekeninge
|
||||||
|
read:accounts: sien rekening inligting
|
||||||
|
read:blocks: sien blokeringe
|
||||||
|
read:bookmarks: sien jou boekmerke
|
||||||
|
read:favourites: sien jou gunstelinge
|
||||||
|
read:filters: sien jou filters
|
||||||
|
read:lists: sien jou lyste
|
||||||
|
read:mutes: sien jou stilmake
|
||||||
|
read:notifications: sien jou kennisgewinge
|
||||||
|
read:reports: sien jou rapporteringe
|
||||||
|
read:search: soek namens jou
|
||||||
|
read:statuses: sien alle plasings
|
||||||
|
write: verander alle data van jou rekening
|
||||||
|
write:accounts: verander jou profiel
|
||||||
|
write:blocks: blokeer rekeninge en domeine
|
||||||
|
write:bookmarks: boekmerk plasings
|
||||||
|
write:conversations: demp en wis gesprekke uit
|
||||||
|
write:favourites: merk gunsteling plasings
|
||||||
|
write:filters: skep filters
|
||||||
|
write:follows: volg mense
|
||||||
|
write:lists: skep lyste
|
||||||
|
write:media: laai meda lêers op
|
||||||
|
write:mutes: demp mense en gesprekke
|
||||||
|
write:notifications: maak jou kennisgewings skoon
|
||||||
|
write:reports: rapporteer ander mense
|
||||||
|
write:statuses: publiseer plasings
|
||||||
|
|
|
@ -60,7 +60,8 @@ pt-BR:
|
||||||
error:
|
error:
|
||||||
title: Ocorreu um erro
|
title: Ocorreu um erro
|
||||||
new:
|
new:
|
||||||
review_permissions: Analisar permissões
|
prompt_html: O %{client_name} gostaria de ter permissão para acessar sua conta. É uma aplicação de terceiros. <strong>Se você não confia, então você não deve autorizá-lo.</strong>
|
||||||
|
review_permissions: Revisar permissões
|
||||||
title: Autorização necessária
|
title: Autorização necessária
|
||||||
show:
|
show:
|
||||||
title: Copie este código de autorização e cole no aplicativo.
|
title: Copie este código de autorização e cole no aplicativo.
|
||||||
|
@ -71,6 +72,8 @@ pt-BR:
|
||||||
revoke: Você tem certeza?
|
revoke: Você tem certeza?
|
||||||
index:
|
index:
|
||||||
authorized_at: Autorizado em %{date}
|
authorized_at: Autorizado em %{date}
|
||||||
|
description_html: Estas são as aplicações que podem acessar sua conta usando a API. Se houver aplicativos que você não reconhece ou com mau funcionamento, você pode revogar seu acesso.
|
||||||
|
last_used_at: Última vez usado em %{date}
|
||||||
never_used: Nunca usado
|
never_used: Nunca usado
|
||||||
scopes: Permissões
|
scopes: Permissões
|
||||||
superapp: Interno
|
superapp: Interno
|
||||||
|
@ -110,16 +113,23 @@ pt-BR:
|
||||||
destroy:
|
destroy:
|
||||||
notice: Aplicativo revogado.
|
notice: Aplicativo revogado.
|
||||||
grouped_scopes:
|
grouped_scopes:
|
||||||
|
access:
|
||||||
|
read: Acesso somente para leitura
|
||||||
|
read/write: Acesso de leitura e escrita
|
||||||
|
write: Acesso somente para escrita
|
||||||
title:
|
title:
|
||||||
accounts: Contas
|
accounts: Contas
|
||||||
|
admin/accounts: Administração de contas
|
||||||
|
admin/all: Todas as funções administrativas
|
||||||
|
admin/reports: Administração de relatórios
|
||||||
all: Tudo
|
all: Tudo
|
||||||
blocks: Blocos
|
blocks: Bloqueios
|
||||||
bookmarks: Salvos
|
bookmarks: Salvos
|
||||||
conversations: Conversas
|
conversations: Conversas
|
||||||
crypto: Criptografia de ponta a ponta
|
crypto: Criptografia de ponta a ponta
|
||||||
favourites: Favoritos
|
favourites: Favoritos
|
||||||
filters: Filtros
|
filters: Filtros
|
||||||
follow: Relações
|
follow: Relacionamentos
|
||||||
lists: Listas
|
lists: Listas
|
||||||
media: Mídias anexadas
|
media: Mídias anexadas
|
||||||
notifications: Notificações
|
notifications: Notificações
|
||||||
|
@ -161,6 +171,7 @@ pt-BR:
|
||||||
write:accounts: alterar seu perfil
|
write:accounts: alterar seu perfil
|
||||||
write:blocks: bloquear contas e domínios
|
write:blocks: bloquear contas e domínios
|
||||||
write:bookmarks: salvar toots
|
write:bookmarks: salvar toots
|
||||||
|
write:conversations: silenciar e excluir conversas
|
||||||
write:favourites: favoritar toots
|
write:favourites: favoritar toots
|
||||||
write:filters: criar filtros
|
write:filters: criar filtros
|
||||||
write:follows: seguir pessoas
|
write:follows: seguir pessoas
|
||||||
|
|
|
@ -36,7 +36,7 @@ el:
|
||||||
one: δημοσίευση
|
one: δημοσίευση
|
||||||
other: δημοσιεύσεις
|
other: δημοσιεύσεις
|
||||||
status_count_before: Που έγραψαν
|
status_count_before: Που έγραψαν
|
||||||
tagline: Ακολούθησε τους γνωστούς σου και ανακάλυψε νέους ανθρώπους
|
tagline: Αποκεντρωμένο κοινωνικό δίκτυο
|
||||||
terms: Όροι χρήσης
|
terms: Όροι χρήσης
|
||||||
unavailable_content: Μη διαθέσιμο
|
unavailable_content: Μη διαθέσιμο
|
||||||
unavailable_content_description:
|
unavailable_content_description:
|
||||||
|
@ -618,6 +618,12 @@ el:
|
||||||
edit_preset: Ενημέρωση προκαθορισμένης προειδοποίησης
|
edit_preset: Ενημέρωση προκαθορισμένης προειδοποίησης
|
||||||
empty: Δεν έχετε ακόμη ορίσει κάποια προεπιλογή προειδοποίησης.
|
empty: Δεν έχετε ακόμη ορίσει κάποια προεπιλογή προειδοποίησης.
|
||||||
title: Διαχείριση προκαθορισμένων προειδοποιήσεων
|
title: Διαχείριση προκαθορισμένων προειδοποιήσεων
|
||||||
|
webhooks:
|
||||||
|
delete: Διαγραφή
|
||||||
|
disable: Απενεργοποίηση
|
||||||
|
disabled: Απενεργοποιημένα
|
||||||
|
enable: Ενεργοποίηση
|
||||||
|
status: Κατάσταση
|
||||||
admin_mailer:
|
admin_mailer:
|
||||||
new_appeal:
|
new_appeal:
|
||||||
actions:
|
actions:
|
||||||
|
@ -658,7 +664,6 @@ el:
|
||||||
applications:
|
applications:
|
||||||
created: Η εφαρμογή δημιουργήθηκε επιτυχώς
|
created: Η εφαρμογή δημιουργήθηκε επιτυχώς
|
||||||
destroyed: Η εφαρμογή διαγράφηκε επιτυχώς
|
destroyed: Η εφαρμογή διαγράφηκε επιτυχώς
|
||||||
invalid_url: Το URL δεν είναι έγκυρο
|
|
||||||
regenerate_token: Αναδημιουργία του διακριτικού πρόσβασης (access token)
|
regenerate_token: Αναδημιουργία του διακριτικού πρόσβασης (access token)
|
||||||
token_regenerated: Το διακριτικό πρόσβασης (access token) αναδημιουργήθηκε επιτυχώς
|
token_regenerated: Το διακριτικό πρόσβασης (access token) αναδημιουργήθηκε επιτυχώς
|
||||||
warning: Μεγάλη προσοχή με αυτά τα στοιχεία. Μην τα μοιραστείς ποτέ με κανέναν!
|
warning: Μεγάλη προσοχή με αυτά τα στοιχεία. Μην τα μοιραστείς ποτέ με κανέναν!
|
||||||
|
|
|
@ -36,9 +36,8 @@ eo:
|
||||||
one: mesaĝo
|
one: mesaĝo
|
||||||
other: mesaĝoj
|
other: mesaĝoj
|
||||||
status_count_before: Kie skribiĝis
|
status_count_before: Kie skribiĝis
|
||||||
tagline: Sekvi amikojn kaj trovi iujn novajn
|
|
||||||
terms: Uzkondiĉoj
|
terms: Uzkondiĉoj
|
||||||
unavailable_content: Kontrolitaj serviloj
|
unavailable_content: Moderigitaj serviloj
|
||||||
unavailable_content_description:
|
unavailable_content_description:
|
||||||
domain: Servilo
|
domain: Servilo
|
||||||
reason: 'Kialo:'
|
reason: 'Kialo:'
|
||||||
|
@ -86,8 +85,8 @@ eo:
|
||||||
title: Plenumi kontrolan agon al %{acct}
|
title: Plenumi kontrolan agon al %{acct}
|
||||||
account_moderation_notes:
|
account_moderation_notes:
|
||||||
create: Lasi noton
|
create: Lasi noton
|
||||||
created_msg: Kontrola noto sukcese kreita!
|
created_msg: Noto de mederigado sukcese kreita!
|
||||||
destroyed_msg: Kontrola noto sukcese detruita!
|
destroyed_msg: Noto de moderigado sukcese detruita!
|
||||||
accounts:
|
accounts:
|
||||||
add_email_domain_block: Bloki retadresan domajnon
|
add_email_domain_block: Bloki retadresan domajnon
|
||||||
approve: Aprobi
|
approve: Aprobi
|
||||||
|
@ -140,8 +139,8 @@ eo:
|
||||||
all: Ĉio
|
all: Ĉio
|
||||||
pending: Pritraktata
|
pending: Pritraktata
|
||||||
suspended: Haltigita
|
suspended: Haltigita
|
||||||
title: Kontrolado
|
title: Moderigado
|
||||||
moderation_notes: Kontrolaj notoj
|
moderation_notes: Notoj de moderigado
|
||||||
most_recent_activity: Lasta ago
|
most_recent_activity: Lasta ago
|
||||||
most_recent_ip: Lasta IP
|
most_recent_ip: Lasta IP
|
||||||
no_account_selected: Neniu konto estis ŝanĝita ĉar neniu estis selektita
|
no_account_selected: Neniu konto estis ŝanĝita ĉar neniu estis selektita
|
||||||
|
@ -167,7 +166,7 @@ eo:
|
||||||
role: Permesoj
|
role: Permesoj
|
||||||
roles:
|
roles:
|
||||||
admin: Administranto
|
admin: Administranto
|
||||||
moderator: Kontrolanto
|
moderator: Moderigisto
|
||||||
staff: Teamo
|
staff: Teamo
|
||||||
user: Uzanto
|
user: Uzanto
|
||||||
search: Serĉi
|
search: Serĉi
|
||||||
|
@ -416,7 +415,7 @@ eo:
|
||||||
moderation:
|
moderation:
|
||||||
all: Ĉiuj
|
all: Ĉiuj
|
||||||
limited: Limigita
|
limited: Limigita
|
||||||
title: Kontrolo
|
title: Moderigado
|
||||||
private_comment: Privata komento
|
private_comment: Privata komento
|
||||||
public_comment: Publika komento
|
public_comment: Publika komento
|
||||||
purge: Purigu
|
purge: Purigu
|
||||||
|
@ -697,7 +696,6 @@ eo:
|
||||||
applications:
|
applications:
|
||||||
created: Aplikaĵo sukcese kreita
|
created: Aplikaĵo sukcese kreita
|
||||||
destroyed: Aplikaĵo sukcese forigita
|
destroyed: Aplikaĵo sukcese forigita
|
||||||
invalid_url: La URL donita ne estas valida
|
|
||||||
regenerate_token: Rekrei aliran ĵetonon
|
regenerate_token: Rekrei aliran ĵetonon
|
||||||
token_regenerated: Alira ĵetono sukcese rekreita
|
token_regenerated: Alira ĵetono sukcese rekreita
|
||||||
warning: Estu tre atenta kun ĉi tiu datumo. Neniam diskonigu ĝin al iu ajn!
|
warning: Estu tre atenta kun ĉi tiu datumo. Neniam diskonigu ĝin al iu ajn!
|
||||||
|
@ -950,7 +948,7 @@ eo:
|
||||||
only_redirect_html: Alie, vi povas <a href="%{path}">nur aldoni alidirekton en via profilo</a>.
|
only_redirect_html: Alie, vi povas <a href="%{path}">nur aldoni alidirekton en via profilo</a>.
|
||||||
other_data: Neniu alia datumo estos movita aŭtomate
|
other_data: Neniu alia datumo estos movita aŭtomate
|
||||||
moderation:
|
moderation:
|
||||||
title: Kontrolado
|
title: Moderigado
|
||||||
notification_mailer:
|
notification_mailer:
|
||||||
digest:
|
digest:
|
||||||
action: Vidi ĉiujn sciigojn
|
action: Vidi ĉiujn sciigojn
|
||||||
|
|
|
@ -38,7 +38,7 @@ es-AR:
|
||||||
one: mensaje
|
one: mensaje
|
||||||
other: mensajes
|
other: mensajes
|
||||||
status_count_before: Que enviaron
|
status_count_before: Que enviaron
|
||||||
tagline: Seguí a tus amigos y descubrí nueva gente
|
tagline: Red social descentralizada
|
||||||
terms: Términos del servicio
|
terms: Términos del servicio
|
||||||
unavailable_content: Servidores moderados
|
unavailable_content: Servidores moderados
|
||||||
unavailable_content_description:
|
unavailable_content_description:
|
||||||
|
@ -852,6 +852,26 @@ es-AR:
|
||||||
edit_preset: Editar preajuste de advertencia
|
edit_preset: Editar preajuste de advertencia
|
||||||
empty: Aún no ha definido ningún preajuste de advertencia.
|
empty: Aún no ha definido ningún preajuste de advertencia.
|
||||||
title: Administrar preajustes de advertencia
|
title: Administrar preajustes de advertencia
|
||||||
|
webhooks:
|
||||||
|
add_new: Agregar punto final
|
||||||
|
delete: Eliminar
|
||||||
|
description_html: Un <strong>webhook</strong> habilita a Mastodon a enviar <strong>notificaciones en tiempo real</strong> sobre los eventos elegidos a tu propia aplicación, así la misma puede <strong>activar automáticamente las reacciones</strong>.
|
||||||
|
disable: Deshabilitar
|
||||||
|
disabled: Deshabilitada
|
||||||
|
edit: Editar punto final
|
||||||
|
empty: Todavía no tenés configurado ningún punto final de webhook.
|
||||||
|
enable: Habilitar
|
||||||
|
enabled: Activar
|
||||||
|
enabled_events:
|
||||||
|
one: 1 evento habilitado
|
||||||
|
other: "%{count} eventos habilitados"
|
||||||
|
events: Eventos
|
||||||
|
new: Nuevo webhook
|
||||||
|
rotate_secret: Rotar secreto
|
||||||
|
secret: Firma secreta
|
||||||
|
status: Estado
|
||||||
|
title: Webhooks
|
||||||
|
webhook: Webhook
|
||||||
admin_mailer:
|
admin_mailer:
|
||||||
new_appeal:
|
new_appeal:
|
||||||
actions:
|
actions:
|
||||||
|
@ -916,7 +936,6 @@ es-AR:
|
||||||
applications:
|
applications:
|
||||||
created: Aplicación creada exitosamente
|
created: Aplicación creada exitosamente
|
||||||
destroyed: Aplicación eliminada exitosamente
|
destroyed: Aplicación eliminada exitosamente
|
||||||
invalid_url: La dirección web ofrecida no es válida
|
|
||||||
regenerate_token: Regenerar clave de acceso
|
regenerate_token: Regenerar clave de acceso
|
||||||
token_regenerated: Clave de acceso regenerada exitosamente
|
token_regenerated: Clave de acceso regenerada exitosamente
|
||||||
warning: Ojo con estos datos. ¡Nunca los compartas con nadie!
|
warning: Ojo con estos datos. ¡Nunca los compartas con nadie!
|
||||||
|
|
|
@ -38,7 +38,7 @@ es-MX:
|
||||||
one: estado
|
one: estado
|
||||||
other: estados
|
other: estados
|
||||||
status_count_before: Qué han escrito
|
status_count_before: Qué han escrito
|
||||||
tagline: Seguir a amigos existentes y descubre nuevos
|
tagline: Red social descentralizada
|
||||||
terms: Condiciones de servicio
|
terms: Condiciones de servicio
|
||||||
unavailable_content: Contenido no disponible
|
unavailable_content: Contenido no disponible
|
||||||
unavailable_content_description:
|
unavailable_content_description:
|
||||||
|
@ -428,6 +428,7 @@ es-MX:
|
||||||
destroyed_msg: El bloque de dominio se deshizo
|
destroyed_msg: El bloque de dominio se deshizo
|
||||||
domain: Dominio
|
domain: Dominio
|
||||||
edit: Editar nuevo dominio bloqueado
|
edit: Editar nuevo dominio bloqueado
|
||||||
|
existing_domain_block: Ya ha impuesto límites más estrictos a %{name}.
|
||||||
existing_domain_block_html: Ya ha impuesto límites más estrictos a %{name}, necesita <a href="%{unblock_url}">desbloquearlo primero</a>.
|
existing_domain_block_html: Ya ha impuesto límites más estrictos a %{name}, necesita <a href="%{unblock_url}">desbloquearlo primero</a>.
|
||||||
new:
|
new:
|
||||||
create: Crear bloque
|
create: Crear bloque
|
||||||
|
@ -915,7 +916,6 @@ es-MX:
|
||||||
applications:
|
applications:
|
||||||
created: Aplicación creada exitosamente
|
created: Aplicación creada exitosamente
|
||||||
destroyed: Apicación eliminada exitosamente
|
destroyed: Apicación eliminada exitosamente
|
||||||
invalid_url: La URL proporcionada es incorrecta
|
|
||||||
regenerate_token: Regenerar token de acceso
|
regenerate_token: Regenerar token de acceso
|
||||||
token_regenerated: Token de acceso regenerado exitosamente
|
token_regenerated: Token de acceso regenerado exitosamente
|
||||||
warning: Ten mucho cuidado con estos datos. ¡No los compartas con nadie!
|
warning: Ten mucho cuidado con estos datos. ¡No los compartas con nadie!
|
||||||
|
|