Merge branch 'main' into glitch-soc/merge-upstream
Conflicts: - `.github/dependabot.yml`: Changed upstream, while we modified it in glitch-soc to not get spammed by dependabot. Kept it removed. - `README.md`: Changed upstream, which has a very different version. Discarded upstream changes.main
|
@ -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
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v3
|
||||
- name: Install system dependencies
|
||||
run: |
|
||||
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`
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Set-up Node.js
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: 16.x
|
||||
cache: yarn
|
||||
- name: Intall dependencies
|
||||
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 #
|
||||
|
@ -61,6 +72,7 @@ jobs:
|
|||
env:
|
||||
CSS_FILE_NAME: stylelint.config.js
|
||||
DEFAULT_BRANCH: main
|
||||
NO_COLOR: 1 # https://github.com/xt0rted/stylelint-problem-matcher/issues/360
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
JAVASCRIPT_ES_CONFIG_FILE: .eslintrc.js
|
||||
LINTER_RULES_PATH: .
|
||||
|
|
4
Gemfile
|
@ -26,7 +26,7 @@ gem 'blurhash', '~> 0.1'
|
|||
|
||||
gem 'active_model_serializers', '~> 0.10'
|
||||
gem 'addressable', '~> 2.8'
|
||||
gem 'bootsnap', '~> 1.11.1', require: false
|
||||
gem 'bootsnap', '~> 1.12.0', require: false
|
||||
gem 'browser'
|
||||
gem 'charlock_holmes', '~> 0.7.7'
|
||||
gem 'chewy', '~> 7.2'
|
||||
|
@ -135,7 +135,7 @@ group :development do
|
|||
gem 'letter_opener_web', '~> 2.0'
|
||||
gem 'memory_profiler'
|
||||
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 'bundler-audit', '~> 0.9', require: false
|
||||
|
||||
|
|
32
Gemfile.lock
|
@ -114,7 +114,7 @@ GEM
|
|||
debug_inspector (>= 0.0.1)
|
||||
blurhash (0.1.6)
|
||||
ffi (~> 1.14)
|
||||
bootsnap (1.11.1)
|
||||
bootsnap (1.12.0)
|
||||
msgpack (~> 1.2)
|
||||
brakeman (5.2.3)
|
||||
browser (4.2.0)
|
||||
|
@ -122,7 +122,7 @@ GEM
|
|||
concurrent-ruby (~> 1.0, >= 1.0.5)
|
||||
redis (>= 1.0, <= 5.0)
|
||||
builder (3.2.4)
|
||||
bullet (7.0.1)
|
||||
bullet (7.0.2)
|
||||
activesupport (>= 3.0.0)
|
||||
uniform_notifier (~> 1.11)
|
||||
bundler-audit (0.9.1)
|
||||
|
@ -308,7 +308,7 @@ GEM
|
|||
rainbow (>= 2.0.0)
|
||||
i18n (1.10.0)
|
||||
concurrent-ruby (~> 1.0)
|
||||
i18n-tasks (1.0.10)
|
||||
i18n-tasks (1.0.11)
|
||||
activesupport (>= 4.0.2)
|
||||
ast (>= 2.1.0)
|
||||
better_html (~> 1.0)
|
||||
|
@ -397,11 +397,11 @@ GEM
|
|||
mime-types-data (3.2022.0105)
|
||||
mini_mime (1.1.2)
|
||||
mini_portile2 (2.8.0)
|
||||
minitest (5.15.0)
|
||||
msgpack (1.5.1)
|
||||
minitest (5.16.0)
|
||||
msgpack (1.5.2)
|
||||
multi_json (1.15.0)
|
||||
multipart-post (2.1.1)
|
||||
net-ldap (0.17.0)
|
||||
net-ldap (0.17.1)
|
||||
net-scp (3.0.0)
|
||||
net-ssh (>= 2.6.5, < 7.0.0)
|
||||
net-ssh (6.1.0)
|
||||
|
@ -414,7 +414,7 @@ GEM
|
|||
concurrent-ruby (~> 1.0, >= 1.0.2)
|
||||
sidekiq (>= 3.5)
|
||||
statsd-ruby (~> 1.4, >= 1.4.0)
|
||||
oj (3.13.13)
|
||||
oj (3.13.14)
|
||||
omniauth (1.9.1)
|
||||
hashie (>= 3.4.6)
|
||||
rack (>= 1.6.2, < 3)
|
||||
|
@ -513,7 +513,7 @@ GEM
|
|||
rails-dom-testing (2.0.3)
|
||||
activesupport (>= 4.2.0)
|
||||
nokogiri (>= 1.6)
|
||||
rails-html-sanitizer (1.4.2)
|
||||
rails-html-sanitizer (1.4.3)
|
||||
loofah (~> 2.3)
|
||||
rails-i18n (6.0.0)
|
||||
i18n (>= 0.7, < 2)
|
||||
|
@ -571,7 +571,7 @@ GEM
|
|||
rspec-support (3.11.0)
|
||||
rspec_junit_formatter (0.5.1)
|
||||
rspec-core (>= 2, < 4, != 2.12.0)
|
||||
rubocop (1.30.0)
|
||||
rubocop (1.30.1)
|
||||
parallel (~> 1.10)
|
||||
parser (>= 3.1.0.0)
|
||||
rainbow (>= 2.2.2, < 4.0)
|
||||
|
@ -582,7 +582,7 @@ GEM
|
|||
unicode-display_width (>= 1.4.0, < 3.0)
|
||||
rubocop-ast (1.18.0)
|
||||
parser (>= 3.1.1.0)
|
||||
rubocop-rails (2.14.2)
|
||||
rubocop-rails (2.15.0)
|
||||
activesupport (>= 4.2.0)
|
||||
rack (>= 1.1)
|
||||
rubocop (>= 1.7.0, < 2.0)
|
||||
|
@ -609,12 +609,12 @@ GEM
|
|||
redis (>= 4.2.0)
|
||||
sidekiq-bulk (0.2.0)
|
||||
sidekiq
|
||||
sidekiq-scheduler (4.0.0)
|
||||
sidekiq-scheduler (4.0.1)
|
||||
redis (>= 4.2.0)
|
||||
rufus-scheduler (~> 3.2)
|
||||
sidekiq (>= 4)
|
||||
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)
|
||||
concurrent-ruby (~> 1.0, >= 1.0.5)
|
||||
sidekiq (>= 5.0, < 8.0)
|
||||
|
@ -681,7 +681,7 @@ GEM
|
|||
unf_ext
|
||||
unf_ext (0.0.8)
|
||||
unicode-display_width (2.1.0)
|
||||
uniform_notifier (1.14.2)
|
||||
uniform_notifier (1.16.0)
|
||||
validate_email (0.1.6)
|
||||
activemodel (>= 3.0)
|
||||
mail (>= 2.2.5)
|
||||
|
@ -722,7 +722,7 @@ GEM
|
|||
xorcist (1.1.2)
|
||||
xpath (3.2.0)
|
||||
nokogiri (~> 1.8)
|
||||
zeitwerk (2.5.4)
|
||||
zeitwerk (2.6.0)
|
||||
|
||||
PLATFORMS
|
||||
ruby
|
||||
|
@ -736,7 +736,7 @@ DEPENDENCIES
|
|||
better_errors (~> 2.9)
|
||||
binding_of_caller (~> 1.0)
|
||||
blurhash (~> 0.1)
|
||||
bootsnap (~> 1.11.1)
|
||||
bootsnap (~> 1.12.0)
|
||||
brakeman (~> 5.2)
|
||||
browser
|
||||
bullet (~> 7.0)
|
||||
|
@ -826,7 +826,7 @@ DEPENDENCIES
|
|||
rspec-sidekiq (~> 3.1)
|
||||
rspec_junit_formatter (~> 0.5)
|
||||
rubocop (~> 1.30)
|
||||
rubocop-rails (~> 2.14)
|
||||
rubocop-rails (~> 2.15)
|
||||
ruby-progressbar (~> 1.11)
|
||||
sanitize (~> 6.0)
|
||||
scenic (~> 1.6)
|
||||
|
|
|
@ -15,7 +15,7 @@ module BrandingHelper
|
|||
end
|
||||
|
||||
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
|
||||
|
||||
def render_logo
|
||||
|
|
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="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>
|
||||
|
|
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.switch_to_multiple": "Verander die peiling na verskeie keuses",
|
||||
"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.save_changes": "Stoor veranderinge",
|
||||
"compose_form.sensitive.hide": "{count, plural, one {Mark media as sensitive} other {Mark media as sensitive}}",
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
"account.follow": "متابعة",
|
||||
"account.followers": "مُتابِعون",
|
||||
"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_counter": "{count, plural, zero{لا يُتابِع} one {يُتابِعُ واحد} two{يُتابِعُ اِثنان} few{يُتابِعُ {counter}} many{يُتابِعُ {counter}} other {يُتابِعُ {counter}}}",
|
||||
"account.follows.empty": "لا يُتابع هذا المُستخدمُ أيَّ أحدٍ حتى الآن.",
|
||||
|
@ -95,7 +95,7 @@
|
|||
"compose.language.change": "تغيير اللغة",
|
||||
"compose.language.search": "البحث عن لغة…",
|
||||
"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.lock_disclaimer": "حسابُك غير {locked}. يُمكن لأي شخص مُتابعتك لرؤية (منشورات المتابعين فقط).",
|
||||
"compose_form.lock_disclaimer.lock": "مُقفَل",
|
||||
|
@ -106,7 +106,7 @@
|
|||
"compose_form.poll.remove_option": "إزالة هذا الخيار",
|
||||
"compose_form.poll.switch_to_multiple": "تغيِير الاستطلاع للسماح باِخيارات مُتعدِّدة",
|
||||
"compose_form.poll.switch_to_single": "تغيِير الاستطلاع للسماح باِخيار واحد فقط",
|
||||
"compose_form.publish": "Publish",
|
||||
"compose_form.publish": "انشر",
|
||||
"compose_form.publish_loud": "{publish}!",
|
||||
"compose_form.save_changes": "احفظ التعديلات",
|
||||
"compose_form.sensitive.hide": "{count, plural, one {الإشارة إلى الوَسط كمُحتوى حسّاس} two{الإشارة إلى الوسطان كمُحتويان حسّاسان} other {الإشارة إلى الوسائط كمُحتويات حسّاسة}}",
|
||||
|
@ -512,8 +512,8 @@
|
|||
"trends.trending_now": "المتداولة الآن",
|
||||
"ui.beforeunload": "سوف تفقد مسودتك إن تركت ماستدون.",
|
||||
"units.short.billion": "{count} مليار",
|
||||
"units.short.million": "{count} مليون",
|
||||
"units.short.thousand": "{count} ألف",
|
||||
"units.short.million": "{count} مليون",
|
||||
"units.short.thousand": "{count} ألف",
|
||||
"upload_area.title": "اسحب ثم أفلت للرفع",
|
||||
"upload_button.label": "إضافة وسائط",
|
||||
"upload_error.limit": "لقد تم بلوغ الحد الأقصى المسموح به لإرسال الملفات.",
|
||||
|
|
|
@ -70,7 +70,7 @@
|
|||
"column.blocks": "Blockierte Profile",
|
||||
"column.bookmarks": "Lesezeichen",
|
||||
"column.community": "Lokale Zeitleiste",
|
||||
"column.direct": "Mensaxes directas",
|
||||
"column.direct": "Direktnachrichten",
|
||||
"column.directory": "Profile durchsuchen",
|
||||
"column.domain_blocks": "Blockierte Domains",
|
||||
"column.favourites": "Favoriten",
|
||||
|
@ -95,7 +95,7 @@
|
|||
"compose.language.change": "Sprache ändern",
|
||||
"compose.language.search": "Sprachen durchsuchen...",
|
||||
"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.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",
|
||||
|
@ -106,7 +106,7 @@
|
|||
"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_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.save_changes": "Änderungen speichern",
|
||||
"compose_form.sensitive.hide": "Medien als NSFW markieren",
|
||||
|
@ -351,7 +351,7 @@
|
|||
"notifications.filter.mentions": "Erwähnungen",
|
||||
"notifications.filter.polls": "Ergebnisse der Umfrage",
|
||||
"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.mark_as_read": "Alle Benachrichtigungen als gelesen markieren",
|
||||
"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_domain": "Bloki domajnon {domain}",
|
||||
"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.direct": "Rekte mesaĝi @{name}",
|
||||
"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.follows.empty": "Tiu uzanto ankoraŭ ne sekvas iun.",
|
||||
"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.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.",
|
||||
|
@ -30,14 +30,14 @@
|
|||
"account.mention": "Mencii @{name}",
|
||||
"account.moved_to": "{name} moviĝis al:",
|
||||
"account.mute": "Silentigi @{name}",
|
||||
"account.mute_notifications": "Silentigi sciigojn de @{name}",
|
||||
"account.mute_notifications": "Silentigi la sciigojn de @{name}",
|
||||
"account.muted": "Silentigita",
|
||||
"account.posts": "Mesaĝoj",
|
||||
"account.posts_with_replies": "Kun respondoj",
|
||||
"account.posts_with_replies": "Mesaĝoj kaj respondoj",
|
||||
"account.report": "Signali @{name}",
|
||||
"account.requested": "Atendo de aprobo. Alklaku por nuligi peton de sekvado",
|
||||
"account.share": "Diskonigi la profilon de @{name}",
|
||||
"account.show_reblogs": "Montri diskonigojn de @{name}",
|
||||
"account.share": "Kundividi la profilon de @{name}",
|
||||
"account.show_reblogs": "Montri la plusendojn de @{name}",
|
||||
"account.statuses_counter": "{count, plural, one {{counter} Mesaĝo} other {{counter} Mesaĝoj}}",
|
||||
"account.unblock": "Malbloki @{name}",
|
||||
"account.unblock_domain": "Malbloki {domain}",
|
||||
|
@ -74,7 +74,7 @@
|
|||
"column.directory": "Trarigardi profilojn",
|
||||
"column.domain_blocks": "Blokitaj domajnoj",
|
||||
"column.favourites": "Stelumoj",
|
||||
"column.follow_requests": "Petoj de sekvado",
|
||||
"column.follow_requests": "Demandoj de sekvado",
|
||||
"column.home": "Hejmo",
|
||||
"column.lists": "Listoj",
|
||||
"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.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.placeholder": "Pri kio vi pensas?",
|
||||
"compose_form.placeholder": "Kion vi pensas?",
|
||||
"compose_form.poll.add_option": "Aldoni elekteblon",
|
||||
"compose_form.poll.duration": "Balotenketa daŭro",
|
||||
"compose_form.poll.option_placeholder": "Elekteblo {number}",
|
||||
|
@ -198,10 +198,10 @@
|
|||
"explore.trending_tags": "Kradvortoj",
|
||||
"follow_recommendations.done": "Farita",
|
||||
"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.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",
|
||||
"getting_started.developers": "Programistoj",
|
||||
"getting_started.directory": "Profilujo",
|
||||
|
@ -221,7 +221,7 @@
|
|||
"hashtag.column_settings.tag_mode.none": "Neniu",
|
||||
"hashtag.column_settings.tag_toggle": "Aldoni pliajn etikedojn por ĉi tiu kolumno",
|
||||
"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.hide_announcements": "Kaŝi anoncojn",
|
||||
"home.show_announcements": "Montri anoncojn",
|
||||
|
@ -230,7 +230,7 @@
|
|||
"intervals.full.minutes": "{number, plural, one {# minuto} other {# minutoj}}",
|
||||
"keyboard_shortcuts.back": "reveni",
|
||||
"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.compose": "enfokusigi la tekstujon",
|
||||
"keyboard_shortcuts.description": "Priskribo",
|
||||
|
@ -259,7 +259,7 @@
|
|||
"keyboard_shortcuts.start": "malfermi la kolumnon «por komenci»",
|
||||
"keyboard_shortcuts.toggle_hidden": "montri/kaŝi tekston malantaŭ enhava averto",
|
||||
"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.up": "iri supren en la listo",
|
||||
"lightbox.close": "Fermi",
|
||||
|
@ -321,7 +321,7 @@
|
|||
"notification.mention": "{name} menciis vin",
|
||||
"notification.own_poll": "Via balotenketo finiĝitis",
|
||||
"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.update": "{name} redaktis afiŝon",
|
||||
"notifications.clear": "Forviŝi sciigojn",
|
||||
|
@ -337,7 +337,7 @@
|
|||
"notifications.column_settings.mention": "Mencioj:",
|
||||
"notifications.column_settings.poll": "Balotenketaj rezultoj:",
|
||||
"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.sound": "Eligi sonon",
|
||||
"notifications.column_settings.status": "Novaj mesaĝoj:",
|
||||
|
@ -345,7 +345,7 @@
|
|||
"notifications.column_settings.unread_notifications.highlight": "Marki nelegitajn sciigojn",
|
||||
"notifications.column_settings.update": "Redaktoj:",
|
||||
"notifications.filter.all": "Ĉiuj",
|
||||
"notifications.filter.boosts": "Diskonigoj",
|
||||
"notifications.filter.boosts": "Plusendoj",
|
||||
"notifications.filter.favourites": "Stelumoj",
|
||||
"notifications.filter.follows": "Sekvoj",
|
||||
"notifications.filter.mentions": "Mencioj",
|
||||
|
@ -449,8 +449,8 @@
|
|||
"status.admin_status": "Malfermi ĉi tiun mesaĝon en la kontrola interfaco",
|
||||
"status.block": "Bloki @{name}",
|
||||
"status.bookmark": "Aldoni al la legosignoj",
|
||||
"status.cancel_reblog_private": "Ne plu diskonigi",
|
||||
"status.cannot_reblog": "Ĉi tiu mesaĝo ne diskonigeblas",
|
||||
"status.cancel_reblog_private": "Malfari la plusendon",
|
||||
"status.cannot_reblog": "Ĉi tiu mesaĝo ne povas esti plusendita",
|
||||
"status.copy": "Kopii la ligilon al la mesaĝo",
|
||||
"status.delete": "Forigi",
|
||||
"status.detailed_status": "Detala konversacia vido",
|
||||
|
@ -475,8 +475,8 @@
|
|||
"status.read_more": "Legi pli",
|
||||
"status.reblog": "Plusendi",
|
||||
"status.reblog_private": "Plusendi kiel la originala videbleco",
|
||||
"status.reblogged_by": "{name} diskonigis",
|
||||
"status.reblogs.empty": "Ankoraŭ neniu diskonigis tiun mesaĝon. Kiam iu faros tion, tiu aperos ĉi tie.",
|
||||
"status.reblogged_by": "{name} plusendis",
|
||||
"status.reblogs.empty": "Neniu ankoraŭ plusendis la mesaĝon. Kiam iu faros tion, ili aperos ĉi tie.",
|
||||
"status.redraft": "Forigi kaj reskribi",
|
||||
"status.remove_bookmark": "Forigi legosignon",
|
||||
"status.reply": "Respondi",
|
||||
|
|
|
@ -106,7 +106,7 @@
|
|||
"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_single": "Modificar encuesta para permitir una única opción",
|
||||
"compose_form.publish": "Publish",
|
||||
"compose_form.publish": "Publicar",
|
||||
"compose_form.publish_loud": "¡{publish}!",
|
||||
"compose_form.save_changes": "Guardar cambios",
|
||||
"compose_form.sensitive.hide": "Marcar multimedia como sensible",
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
"announcement.announcement": "Fógra",
|
||||
"attachments_list.unprocessed": "(unprocessed)",
|
||||
"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.retry": "Bain triail as arís",
|
||||
"bundle_column_error.title": "Network error",
|
||||
|
@ -73,7 +73,7 @@
|
|||
"column.direct": "Direct messages",
|
||||
"column.directory": "Brabhsáil próifílí",
|
||||
"column.domain_blocks": "Blocked domains",
|
||||
"column.favourites": "Favourites",
|
||||
"column.favourites": "Roghanna",
|
||||
"column.follow_requests": "Follow requests",
|
||||
"column.home": "Baile",
|
||||
"column.lists": "Liostaí",
|
||||
|
@ -120,7 +120,7 @@
|
|||
"confirmations.block.confirm": "Block",
|
||||
"confirmations.block.message": "Are you sure you want to block {name}?",
|
||||
"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.message": "Are you sure you want to permanently delete this list?",
|
||||
"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.message": "An bhfuil tú cinnte gur mhaith leat {name} a bhalbhú?",
|
||||
"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.message": "Replying now will overwrite the message you are currently composing. Are you sure you want to proceed?",
|
||||
"confirmations.unfollow.confirm": "Ná lean",
|
||||
|
@ -164,7 +164,7 @@
|
|||
"emoji_button.symbols": "Symbols",
|
||||
"emoji_button.travel": "Taisteal ⁊ Áiteanna",
|
||||
"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.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.",
|
||||
|
@ -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.domain_blocks": "There are no blocked domains yet.",
|
||||
"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.favourites": "No one has favourited this post yet. When someone does, they 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": "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_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.",
|
||||
|
@ -221,7 +221,7 @@
|
|||
"hashtag.column_settings.tag_mode.none": "None of these",
|
||||
"hashtag.column_settings.tag_toggle": "Include additional tags in this column",
|
||||
"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.hide_announcements": "Hide announcements",
|
||||
"home.show_announcements": "Show announcements",
|
||||
|
@ -230,15 +230,15 @@
|
|||
"intervals.full.minutes": "{number, plural, one {# minute} other {# minutes}}",
|
||||
"keyboard_shortcuts.back": "to navigate back",
|
||||
"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.compose": "to focus the compose textarea",
|
||||
"keyboard_shortcuts.description": "Description",
|
||||
"keyboard_shortcuts.direct": "to open direct messages column",
|
||||
"keyboard_shortcuts.down": "to move down in the list",
|
||||
"keyboard_shortcuts.enter": "to open status",
|
||||
"keyboard_shortcuts.favourite": "to favourite",
|
||||
"keyboard_shortcuts.favourites": "to open favourites list",
|
||||
"keyboard_shortcuts.enter": "Oscail postáil",
|
||||
"keyboard_shortcuts.favourite": "Roghnaigh postáil",
|
||||
"keyboard_shortcuts.favourites": "Oscail liosta roghanna",
|
||||
"keyboard_shortcuts.federated": "to open federated timeline",
|
||||
"keyboard_shortcuts.heading": "Keyboard Shortcuts",
|
||||
"keyboard_shortcuts.home": "to open home timeline",
|
||||
|
@ -252,14 +252,14 @@
|
|||
"keyboard_shortcuts.open_media": "to open media",
|
||||
"keyboard_shortcuts.pinned": "to open pinned posts list",
|
||||
"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.search": "to focus search",
|
||||
"keyboard_shortcuts.spoilers": "to show/hide CW field",
|
||||
"keyboard_shortcuts.start": "to open \"get started\" column",
|
||||
"keyboard_shortcuts.toggle_hidden": "to show/hide text behind CW",
|
||||
"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.up": "to move up in the list",
|
||||
"lightbox.close": "Close",
|
||||
|
@ -294,13 +294,13 @@
|
|||
"navigation_bar.blocks": "Blocked users",
|
||||
"navigation_bar.bookmarks": "Bookmarks",
|
||||
"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.discover": "Discover",
|
||||
"navigation_bar.domain_blocks": "Hidden domains",
|
||||
"navigation_bar.edit_profile": "Cuir an phróifíl in eagar",
|
||||
"navigation_bar.explore": "Explore",
|
||||
"navigation_bar.favourites": "Favourites",
|
||||
"navigation_bar.favourites": "Roghanna",
|
||||
"navigation_bar.filters": "Focail bhalbhaithe",
|
||||
"navigation_bar.follow_requests": "Follow requests",
|
||||
"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.security": "Security",
|
||||
"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_request": "D'iarr {name} ort do chuntas a leanúint",
|
||||
"notification.mention": "{name} mentioned you",
|
||||
"notification.own_poll": "Your poll has ended",
|
||||
"notification.poll": "A poll you have voted in has ended",
|
||||
"notification.reblog": "{name} boosted your status",
|
||||
"notification.status": "{name} just posted",
|
||||
"notification.reblog": "Threisigh {name} do phostáil",
|
||||
"notification.status": "Phostáil {name} díreach",
|
||||
"notification.update": "Chuir {name} postáil in eagar",
|
||||
"notifications.clear": "Clear 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.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.category": "Quick filter bar",
|
||||
"notifications.column_settings.filter_bar.show_bar": "Show filter bar",
|
||||
|
@ -337,16 +337,16 @@
|
|||
"notifications.column_settings.mention": "Mentions:",
|
||||
"notifications.column_settings.poll": "Poll results:",
|
||||
"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.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.highlight": "Highlight unread notifications",
|
||||
"notifications.column_settings.update": "Eagair:",
|
||||
"notifications.filter.all": "All",
|
||||
"notifications.filter.boosts": "Boosts",
|
||||
"notifications.filter.favourites": "Favourites",
|
||||
"notifications.filter.boosts": "Treisithe",
|
||||
"notifications.filter.favourites": "Roghanna",
|
||||
"notifications.filter.follows": "Follows",
|
||||
"notifications.filter.mentions": "Mentions",
|
||||
"notifications.filter.polls": "Poll results",
|
||||
|
@ -402,7 +402,7 @@
|
|||
"report.category.subtitle": "Choose the best match",
|
||||
"report.category.title": "Tell us what's going on with this {type}",
|
||||
"report.category.title_account": "próifíl",
|
||||
"report.category.title_status": "post",
|
||||
"report.category.title_status": "postáil",
|
||||
"report.close": "Déanta",
|
||||
"report.comment.title": "Is there anything else you think we should know?",
|
||||
"report.forward": "Forward to {target}",
|
||||
|
@ -435,7 +435,7 @@
|
|||
"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.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.user": "user",
|
||||
"search_results.accounts": "Daoine",
|
||||
|
@ -449,8 +449,8 @@
|
|||
"status.admin_status": "Open this status in the moderation interface",
|
||||
"status.block": "Block @{name}",
|
||||
"status.bookmark": "Bookmark",
|
||||
"status.cancel_reblog_private": "Unboost",
|
||||
"status.cannot_reblog": "This post cannot be boosted",
|
||||
"status.cancel_reblog_private": "Díthreisigh",
|
||||
"status.cannot_reblog": "Ní féidir an phostáil seo a threisiú",
|
||||
"status.copy": "Copy link to status",
|
||||
"status.delete": "Scrios",
|
||||
"status.detailed_status": "Detailed conversation view",
|
||||
|
@ -459,7 +459,7 @@
|
|||
"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.embed": "Embed",
|
||||
"status.favourite": "Favourite",
|
||||
"status.favourite": "Rogha",
|
||||
"status.filtered": "Filtered",
|
||||
"status.history.created": "{name} created {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.pinned": "Pinned post",
|
||||
"status.read_more": "Read more",
|
||||
"status.reblog": "Boost",
|
||||
"status.reblog_private": "Boost with original visibility",
|
||||
"status.reblogged_by": "{name} boosted",
|
||||
"status.reblogs.empty": "No one has boosted this post yet. When someone does, they will show up here.",
|
||||
"status.reblog": "Treisigh",
|
||||
"status.reblog_private": "Treisigh le léargas bunúsach",
|
||||
"status.reblogged_by": "Treisithe ag {name}",
|
||||
"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.remove_bookmark": "Remove bookmark",
|
||||
"status.reply": "Reply",
|
||||
|
|
|
@ -106,7 +106,7 @@
|
|||
"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_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.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}}",
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
"account.badges.bot": "בוט",
|
||||
"account.badges.group": "קבוצה",
|
||||
"account.block": "חסמי את @{name}",
|
||||
"account.block_domain": "חסמו את שם המתחם (דומיין) {domain}",
|
||||
"account.block_domain": "חסמו את קהילת {domain}",
|
||||
"account.blocked": "חסום",
|
||||
"account.browse_more_on_origin_server": "ראה יותר בפרופיל המקורי",
|
||||
"account.cancel_follow_request": "בטל בקשת מעקב",
|
||||
|
@ -32,20 +32,20 @@
|
|||
"account.mute": "להשתיק את @{name}",
|
||||
"account.mute_notifications": "להסתיר התראות מ @{name}",
|
||||
"account.muted": "מושתק",
|
||||
"account.posts": "חצרוצים",
|
||||
"account.posts_with_replies": "חצרוצים ותגובות",
|
||||
"account.posts": "פוסטים",
|
||||
"account.posts_with_replies": "פוסטים ותגובות",
|
||||
"account.report": "דווח על @{name}",
|
||||
"account.requested": "בהמתנה לאישור. לחצי כדי לבטל בקשת מעקב",
|
||||
"account.share": "שתף את הפרופיל של @{name}",
|
||||
"account.show_reblogs": "הצג הדהודים מאת @{name}",
|
||||
"account.statuses_counter": "{count, plural, one {{counter} Toot} other {{counter} Toots}}",
|
||||
"account.unblock": "הסר את החסימה של @{name}",
|
||||
"account.unblock_domain": "הסראת שם המתחם {domain}",
|
||||
"account.unblock_domain": "הסירי את החסימה של קהילת {domain}",
|
||||
"account.unblock_short": "הסר חסימה",
|
||||
"account.unendorse": "אל תקדם בפרופיל",
|
||||
"account.unfollow": "הפסקת מעקב",
|
||||
"account.unmute": "הפסקת השתקת @{name}",
|
||||
"account.unmute_notifications": "להפסיק השתקת הודעות מ @{name}",
|
||||
"account.unmute_notifications": "להפסיק השתקת התראות מ @{name}",
|
||||
"account.unmute_short": "ביטול השתקה",
|
||||
"account_note.placeholder": "יש ללחוץ כדי להוסיף הערות",
|
||||
"admin.dashboard.daily_retention": "קצב שימור משתמשים (פר יום) אחרי ההרשמה",
|
||||
|
@ -54,49 +54,49 @@
|
|||
"admin.dashboard.retention.cohort": "חודש רישום",
|
||||
"admin.dashboard.retention.cohort_size": "משתמשים חדשים",
|
||||
"alert.rate_limited.message": "נא לנסות אחרי {retry_time, time, medium}.",
|
||||
"alert.rate_limited.title": "מגבלות מיכסה",
|
||||
"alert.rate_limited.title": "חלה הגבלת קצב",
|
||||
"alert.unexpected.message": "אירעה שגיאה בלתי צפויה.",
|
||||
"alert.unexpected.title": "אופס!",
|
||||
"announcement.announcement": "הודעה",
|
||||
"announcement.announcement": "הכרזה",
|
||||
"attachments_list.unprocessed": "(לא מעובד)",
|
||||
"autosuggest_hashtag.per_week": "{count} לשבוע",
|
||||
"boost_modal.combo": "ניתן להקיש {combo} כדי לדלג בפעם הבאה",
|
||||
"bundle_column_error.body": "משהו השתבש בעת הצגת הרכיב הזה.",
|
||||
"bundle_column_error.body": "משהו השתבש בעת טעינת הרכיב הזה.",
|
||||
"bundle_column_error.retry": "לנסות שוב",
|
||||
"bundle_column_error.title": "שגיאת רשת",
|
||||
"bundle_modal_error.close": "לסגור",
|
||||
"bundle_modal_error.message": "משהו השתבש בעת טעינת הרכיב הזה.",
|
||||
"bundle_modal_error.retry": "לנסות שוב",
|
||||
"column.blocks": "חסימות",
|
||||
"column.blocks": "משתמשים חסומים",
|
||||
"column.bookmarks": "סימניות",
|
||||
"column.community": "ציר זמן מקומי",
|
||||
"column.community": "פיד שרת מקומי",
|
||||
"column.direct": "הודעות ישירות",
|
||||
"column.directory": "גלוש פרופילים",
|
||||
"column.domain_blocks": "Hidden domains",
|
||||
"column.directory": "עיין בפרופילים",
|
||||
"column.domain_blocks": "קהילות (שמות מתחם) מוסתרות",
|
||||
"column.favourites": "חיבובים",
|
||||
"column.follow_requests": "בקשות מעקב",
|
||||
"column.home": "בבית",
|
||||
"column.home": "פיד הבית",
|
||||
"column.lists": "רשימות",
|
||||
"column.mutes": "השתקות",
|
||||
"column.notifications": "התראות",
|
||||
"column.pins": "Pinned toot",
|
||||
"column.public": "בפרהסיה",
|
||||
"column_back_button.label": "חזרה",
|
||||
"column_header.hide_settings": "הסתרת העדפות",
|
||||
"column_header.moveLeft_settings": "הזחת טור לשמאל",
|
||||
"column_header.moveRight_settings": "הזחת טור לימין",
|
||||
"column_header.pin": "קיבוע",
|
||||
"column.pins": "פווסטים נעוצים",
|
||||
"column.public": "פיד כללי (כל השרתים)",
|
||||
"column_back_button.label": "בחזרה",
|
||||
"column_header.hide_settings": "הסתרת הגדרות",
|
||||
"column_header.moveLeft_settings": "הזזת טור לשמאל",
|
||||
"column_header.moveRight_settings": "הזזת טור לימין",
|
||||
"column_header.pin": "הצמדה",
|
||||
"column_header.show_settings": "הצגת העדפות",
|
||||
"column_header.unpin": "שחרור קיבוע",
|
||||
"column_header.unpin": "שחרור הצמדה",
|
||||
"column_subheading.settings": "אפשרויות",
|
||||
"community.column_settings.local_only": "מקומי בלבד",
|
||||
"community.column_settings.media_only": "Media only",
|
||||
"community.column_settings.remote_only": "מרחוק בלבד",
|
||||
"compose.language.change": "Change language",
|
||||
"compose.language.search": "Search languages...",
|
||||
"community.column_settings.media_only": "מדיה בלבד",
|
||||
"community.column_settings.remote_only": "מרוחק בלבד",
|
||||
"compose.language.change": "שינוי שפת הפוסט",
|
||||
"compose.language.search": "חיפוש שפות...",
|
||||
"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.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.encryption_warning": "פוסטים במסטודון לא מוצפנים מקצה לקצה. אל תשתפו מידע רגיש במסטודון.",
|
||||
"compose_form.hashtag_warning": "פוסט זה לא יירשם תחת תגי הקבצה (האשטאגים) היות והנראות שלו היא 'לא רשום'. רק פוסטים ציבוריים יכולים להימצא באמצעות תגי הקבצה.",
|
||||
"compose_form.lock_disclaimer": "חשבונך אינו {locked}. כל אחד יוכל לעקוב אחריך כדי לקרוא את הודעותיך המיועדות לעוקבים בלבד.",
|
||||
"compose_form.lock_disclaimer.lock": "נעול",
|
||||
"compose_form.placeholder": "מה עובר לך בראש?",
|
||||
|
@ -106,36 +106,36 @@
|
|||
"compose_form.poll.remove_option": "הסר בחירה זו",
|
||||
"compose_form.poll.switch_to_multiple": "אפשרו בחירה מרובה בסקר",
|
||||
"compose_form.poll.switch_to_single": "אפשרו בחירה בודדת בסקר",
|
||||
"compose_form.publish": "Publish",
|
||||
"compose_form.publish": "פרסום",
|
||||
"compose_form.publish_loud": "{publish}!",
|
||||
"compose_form.save_changes": "שמירת שינויים",
|
||||
"compose_form.sensitive.hide": "{count, plural, one {סימון מידע כרגיש} other {סימון מידע כרגיש}}",
|
||||
"compose_form.sensitive.marked": "{count, plural, one {מידע מסומן כרגיש} other {מידע מסומן כרגיש}}",
|
||||
"compose_form.sensitive.unmarked": "{count, plural, one {מידע לא מסומן כרגיש} other {מידע לא מסומן כרגיש}}",
|
||||
"compose_form.spoiler.marked": "Text is hidden behind warning",
|
||||
"compose_form.spoiler.unmarked": "Text is not hidden",
|
||||
"compose_form.spoiler_placeholder": "אזהרת תוכן",
|
||||
"compose_form.spoiler.marked": "הסר אזהרת תוכן",
|
||||
"compose_form.spoiler.unmarked": "הוסף אזהרת תוכן",
|
||||
"compose_form.spoiler_placeholder": "כתוב את האזהרה שלך כאן",
|
||||
"confirmation_modal.cancel": "ביטול",
|
||||
"confirmations.block.block_and_report": "לחסום ולדווח",
|
||||
"confirmations.block.confirm": "לחסום",
|
||||
"confirmations.block.message": "לחסום את {name}?",
|
||||
"confirmations.block.message": "האם את/ה בטוח/ה שברצונך למחוק את \"{name}\"?",
|
||||
"confirmations.delete.confirm": "למחוק",
|
||||
"confirmations.delete.message": "למחוק את ההודעה?",
|
||||
"confirmations.delete.message": "בטוח/ה שאת/ה רוצה למחוק את ההודעה?",
|
||||
"confirmations.delete_list.confirm": "למחוק",
|
||||
"confirmations.delete_list.message": "האם אתם בטוחים שאתם רוצים למחוק את הרשימה לצמיתות?",
|
||||
"confirmations.discard_edit_media.confirm": "השלך",
|
||||
"confirmations.discard_edit_media.message": "יש לך שינויים לא שמורים לתיאור המדיה. להשליך אותם בכל זאת?",
|
||||
"confirmations.domain_block.confirm": "הסתר קהילה שלמה",
|
||||
"confirmations.domain_block.message": "באמת באמת לחסום את כל קהילת {domain}? ברב המקרים השתקות נבחרות של מספר משתמשים מסויימים צריכה להספיק.",
|
||||
"confirmations.domain_block.confirm": "חסמו לגמרי את שם המתחם (דומיין)",
|
||||
"confirmations.domain_block.message": "בטוחה שברצונך באמת לחסום את קהילת {domain}? ברב המקרים השתקה וחסימה של מספר משתמשים עשוייה להספיק. לא תראי תוכל מכלל שם המתחם בפידים הציבוריים או בהתראות שלך. העוקבים שלך מהקהילה הזאת יוסרו",
|
||||
"confirmations.logout.confirm": "להתנתק",
|
||||
"confirmations.logout.message": "האם אתם בטוחים שאתם רוצים להתנתק?",
|
||||
"confirmations.mute.confirm": "להשתיק",
|
||||
"confirmations.mute.explanation": "זה יסתיר חצרוצים שלהם וחצרוצים המזכירים אותם, אבל עדיין יתיר להם לראות פוסטים שלך ולעקוב אחריך.",
|
||||
"confirmations.mute.explanation": "זה יסתיר פוסטים שלהם ופוסטים שמאזכרים אותם, אבל עדיין יתיר להם לראות פוסטים שלך ולעקוב אחריך.",
|
||||
"confirmations.mute.message": "להשתיק את {name}?",
|
||||
"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.message": "הגבה עכשיו ידרוס את ההודעה שאתם כותבים כעת. האם אתם בטוחים שברצונכם להמשיך?",
|
||||
"confirmations.reply.message": "תגובה עכשיו תדרוס את ההודעה שכבר התחלתים לכתוב. האם אתם בטוחים שברצונכם להמשיך?",
|
||||
"confirmations.unfollow.confirm": "להפסיק מעקב",
|
||||
"confirmations.unfollow.message": "להפסיק מעקב אחרי {name}?",
|
||||
"conversation.delete": "מחיקת שיחה",
|
||||
|
@ -149,7 +149,7 @@
|
|||
"embed.instructions": "ניתן להטמיע את ההודעה באתרך ע\"י העתקת הקוד שלהלן.",
|
||||
"embed.preview": "דוגמא כיצד זה יראה:",
|
||||
"emoji_button.activity": "פעילות",
|
||||
"emoji_button.clear": "Clear",
|
||||
"emoji_button.clear": "ניקוי",
|
||||
"emoji_button.custom": "מיוחדים",
|
||||
"emoji_button.flags": "דגלים",
|
||||
"emoji_button.food": "אוכל ושתיה",
|
||||
|
@ -164,22 +164,22 @@
|
|||
"emoji_button.symbols": "סמלים",
|
||||
"emoji_button.travel": "טיולים ואתרים",
|
||||
"empty_column.account_suspended": "חשבון מושהה",
|
||||
"empty_column.account_timeline": "No toots here!",
|
||||
"empty_column.account_timeline": "אין עדיין אף פוסט!",
|
||||
"empty_column.account_unavailable": "פרופיל לא זמין",
|
||||
"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.community": "טור הסביבה ריק. יש לפרסם משהו כדי שדברים יתרחילו להתגלגל!",
|
||||
"empty_column.community": "פיד השרת המקומי ריק. יש לפרסם משהו כדי שדברים יתרחילו להתגלגל!",
|
||||
"empty_column.direct": "אין לך שום הודעות פרטיות עדיין. כשתשלחו או תקבלו אחת, היא תופיע כאן.",
|
||||
"empty_column.domain_blocks": "There are no hidden domains yet.",
|
||||
"empty_column.domain_blocks": "אין עדיין קהילות מוסתרות.",
|
||||
"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.favourites": "No one has favourited this toot yet. When someone does, they will show up here.",
|
||||
"empty_column.favourited_statuses": "אין עדיין פוסטים שחיבבת. כשתחבב את הראשון, הוא יופיע כאן.",
|
||||
"empty_column.favourites": "עוד לא חיבבו את הפוסט הזה. כאשר זה יקרה, החיבובים יופיעו כאן.",
|
||||
"empty_column.follow_recommendations": "נראה שלא ניתן לייצר המלצות עבורך. נסה/י להשתמש בחיפוש כדי למצוא אנשים מוכרים או לבדוק את הנושאים החמים.",
|
||||
"empty_column.follow_requests": "אין לך שום בקשות מעקב עדיין. לכשיתקבלו כאלה, הן תופענה כאן.",
|
||||
"empty_column.hashtag": "אין כלום בהאשתג הזה עדיין.",
|
||||
"empty_column.home": "אף אחד לא במעקב עדיין. אפשר לבקר ב{public} או להשתמש בחיפוש כדי להתחיל ולהכיר חצוצרנים אחרים. {suggestions}",
|
||||
"empty_column.home.suggestions": "ראה/י כמה הצעות",
|
||||
"empty_column.list": "אין עדיין מאום ברשימה.",
|
||||
"empty_column.list": "אין עדיין פריטים ברשימה. כאשר חברים ברשימה הזאת יפרסמו פוסטים חדשים, הם יופיעו פה.",
|
||||
"empty_column.lists": "אין לך שום רשימות עדיין. לכשיהיו, הן תופענה כאן.",
|
||||
"empty_column.mutes": "עוד לא השתקת שום משתמש.",
|
||||
"empty_column.notifications": "אין התראות עדיין. יאללה, הגיע הזמן להתחיל להתערבב.",
|
||||
|
@ -194,22 +194,22 @@
|
|||
"explore.suggested_follows": "עבורך",
|
||||
"explore.title": "סיור",
|
||||
"explore.trending_links": "חדשות",
|
||||
"explore.trending_statuses": "חצרוצים",
|
||||
"explore.trending_statuses": "פוסטים",
|
||||
"explore.trending_tags": "האשטאגים",
|
||||
"follow_recommendations.done": "בוצע",
|
||||
"follow_recommendations.heading": "עקב/י אחרי אנשים שתרצה/י לראות את חצרוציהם! הנה כמה הצעות.",
|
||||
"follow_recommendations.lead": "חצרוצים מאנשים במעקב יופיעו בסדר כרונולוגי בפיד הבית. אל תחששו מטעויות, אפשר להסיר מעקב באותה הקלות ובכל זמן!",
|
||||
"follow_request.authorize": "קבלה",
|
||||
"follow_request.authorize": "הרשאה",
|
||||
"follow_request.reject": "דחיה",
|
||||
"follow_requests.unlocked_explanation": "למרות שחשבונך אינו נעול, צוות {domain} חושב שאולי כדאי לוודא את בקשות המעקב האלה ידנית.",
|
||||
"generic.saved": "נשמר",
|
||||
"getting_started.developers": "מפתחות",
|
||||
"getting_started.directory": "ספריית פרופילים",
|
||||
"getting_started.directory": "מדריך פרופילים",
|
||||
"getting_started.documentation": "תיעוד",
|
||||
"getting_started.heading": "בואו נתחיל",
|
||||
"getting_started.invite": "להזמין אנשים",
|
||||
"getting_started.open_source_notice": "מסטודון היא תוכנה חופשית (בקוד פתוח). ניתן לתרום או לדווח על בעיות בגיטהאב: {github}.",
|
||||
"getting_started.security": "Security",
|
||||
"getting_started.security": "הגדרות חשבון",
|
||||
"getting_started.terms": "תנאי שימוש",
|
||||
"hashtag.column_header.tag_mode.all": "ו- {additional}",
|
||||
"hashtag.column_header.tag_mode.any": "או {additional}",
|
||||
|
@ -218,8 +218,8 @@
|
|||
"hashtag.column_settings.select.placeholder": "הזן תגי הקבצה…",
|
||||
"hashtag.column_settings.tag_mode.all": "כל אלה",
|
||||
"hashtag.column_settings.tag_mode.any": "כל אלה",
|
||||
"hashtag.column_settings.tag_mode.none": "אפאחד מאלה",
|
||||
"hashtag.column_settings.tag_toggle": "Include additional tags in this column",
|
||||
"hashtag.column_settings.tag_mode.none": "אף אחד מאלה",
|
||||
"hashtag.column_settings.tag_toggle": "כלול תגיות נוספות בטור זה",
|
||||
"home.column_settings.basic": "למתחילים",
|
||||
"home.column_settings.show_reblogs": "הצגת הדהודים",
|
||||
"home.column_settings.show_replies": "הצגת תגובות",
|
||||
|
@ -259,7 +259,7 @@
|
|||
"keyboard_shortcuts.start": "to open \"get started\" column",
|
||||
"keyboard_shortcuts.toggle_hidden": "הצגת/הסתרת טקסט מוסתר מאחורי אזהרת תוכן",
|
||||
"keyboard_shortcuts.toggle_sensitivity": "הצגת/הסתרת מדיה",
|
||||
"keyboard_shortcuts.toot": "להתחיל חיצרוץ חדש",
|
||||
"keyboard_shortcuts.toot": "להתחיל פוסט חדש",
|
||||
"keyboard_shortcuts.unfocus": "לצאת מתיבת חיבור/חיפוש",
|
||||
"keyboard_shortcuts.up": "לנוע במעלה הרשימה",
|
||||
"lightbox.close": "סגירה",
|
||||
|
@ -267,8 +267,8 @@
|
|||
"lightbox.expand": "הרחבת קופסת צפייה בתמונה",
|
||||
"lightbox.next": "הלאה",
|
||||
"lightbox.previous": "הקודם",
|
||||
"limited_account_hint.action": "Show profile anyway",
|
||||
"limited_account_hint.title": "This profile has been hidden by the moderators of your server.",
|
||||
"limited_account_hint.action": "הצג חשבון בכל זאת",
|
||||
"limited_account_hint.title": "פרופיל זה הוסתר ע\"י מנהלי השרת שלך.",
|
||||
"lists.account.add": "הוסף לרשימה",
|
||||
"lists.account.remove": "הסר מרשימה",
|
||||
"lists.delete": "מחיקת רשימה",
|
||||
|
@ -288,32 +288,32 @@
|
|||
"missing_indicator.label": "לא נמצא",
|
||||
"missing_indicator.sublabel": "לא ניתן היה למצוא את המשאב",
|
||||
"mute_modal.duration": "משך הזמן",
|
||||
"mute_modal.hide_notifications": "להסתיר הודעות מחשבון זה?",
|
||||
"mute_modal.hide_notifications": "להסתיר התראות מחשבון זה?",
|
||||
"mute_modal.indefinite": "ללא תאריך סיום",
|
||||
"navigation_bar.apps": "יישומונים לנייד",
|
||||
"navigation_bar.blocks": "חסימות",
|
||||
"navigation_bar.blocks": "משתמשים חסומים",
|
||||
"navigation_bar.bookmarks": "סימניות",
|
||||
"navigation_bar.community_timeline": "ציר זמן מקומי",
|
||||
"navigation_bar.compose": "Compose new toot",
|
||||
"navigation_bar.community_timeline": "פיד שרת מקומי",
|
||||
"navigation_bar.compose": "צור פוסט חדש",
|
||||
"navigation_bar.direct": "הודעות ישירות",
|
||||
"navigation_bar.discover": "גלה",
|
||||
"navigation_bar.domain_blocks": "Hidden domains",
|
||||
"navigation_bar.domain_blocks": "קהילות (שמות מתחם) חסומות",
|
||||
"navigation_bar.edit_profile": "עריכת פרופיל",
|
||||
"navigation_bar.explore": "חקור",
|
||||
"navigation_bar.explore": "סיור",
|
||||
"navigation_bar.favourites": "חיבובים",
|
||||
"navigation_bar.filters": "מילים מושתקות",
|
||||
"navigation_bar.follow_requests": "בקשות מעקב",
|
||||
"navigation_bar.follows_and_followers": "נעקבים ועוקבים",
|
||||
"navigation_bar.info": "מידע נוסף",
|
||||
"navigation_bar.info": "אודות שרת זה",
|
||||
"navigation_bar.keyboard_shortcuts": "קיצורי מקלדת",
|
||||
"navigation_bar.lists": "רשימות",
|
||||
"navigation_bar.logout": "יציאה",
|
||||
"navigation_bar.logout": "התנתקות",
|
||||
"navigation_bar.mutes": "השתקות",
|
||||
"navigation_bar.personal": "אישי",
|
||||
"navigation_bar.pins": "חיצרוצים מקובעים",
|
||||
"navigation_bar.pins": "פוסטים נעוצים",
|
||||
"navigation_bar.preferences": "העדפות",
|
||||
"navigation_bar.public_timeline": "ציר זמן בין-קהילתי",
|
||||
"navigation_bar.security": "בטיחות",
|
||||
"navigation_bar.security": "אבטחה",
|
||||
"notification.admin.sign_up": "{name} נרשמו",
|
||||
"notification.favourite": "חצרוצך חובב על ידי {name}",
|
||||
"notification.follow": "{name} במעקב אחרייך",
|
||||
|
@ -365,20 +365,20 @@
|
|||
"poll.refresh": "רענון",
|
||||
"poll.total_people": "{count, plural, one {# איש/אישה} other {# אנשים}}",
|
||||
"poll.total_votes": "{count, plural, one {# קול} other {# קולות}}",
|
||||
"poll.vote": "קול",
|
||||
"poll.vote": "הצבעה",
|
||||
"poll.voted": "הצבעת לתשובה זו",
|
||||
"poll.votes": "{votes, plural, one {# קול} other {# קולות}}",
|
||||
"poll_button.add_poll": "הוספת סקר",
|
||||
"poll_button.remove_poll": "הסרת סקר",
|
||||
"privacy.change": "שינוי פרטיות ההודעה",
|
||||
"privacy.direct.long": "הצג רק למי שהודעה זו פונה אליו",
|
||||
"privacy.direct.short": "אנשים מוזכרים בלבד",
|
||||
"privacy.direct.long": "רק למשתמשים מאוזכרים (mentioned)",
|
||||
"privacy.direct.short": "למאוזכרים בלבד",
|
||||
"privacy.private.long": "הצג לעוקבים בלבד",
|
||||
"privacy.private.short": "עוקבים בלבד",
|
||||
"privacy.private.short": "לעוקבים בלבד",
|
||||
"privacy.public.long": "גלוי לכל",
|
||||
"privacy.public.short": "פומבי",
|
||||
"privacy.unlisted.long": "גלוי לכל, אבל מוסתר מאמצעי גילוי",
|
||||
"privacy.unlisted.short": "לא לפיד הכללי",
|
||||
"privacy.unlisted.short": "לא רשום (לא לפיד הכללי)",
|
||||
"refresh": "רענון",
|
||||
"regeneration_indicator.label": "טוען…",
|
||||
"regeneration_indicator.sublabel": "פיד הבית שלך בהכנה!",
|
||||
|
@ -395,7 +395,7 @@
|
|||
"relative_time.today": "היום",
|
||||
"reply_indicator.cancel": "ביטול",
|
||||
"report.block": "לחסום",
|
||||
"report.block_explanation": "לא ניתן יהיה לראות את חצרוציהם. הם לא יוכלו לראות את חצרוציך או לעקוב אחריך. הם יוכלו לדעת שהם חסומים.",
|
||||
"report.block_explanation": "לא ניתן יהיה לראות את הפוסטים שלהן. הן לא יוכלו לראות את הפוסטים שלך או לעקוב אחריך. הם יוכלו לדעת שהם חסומים.",
|
||||
"report.categories.other": "אחר",
|
||||
"report.categories.spam": "ספאם",
|
||||
"report.categories.violation": "התוכן מפר אחד או יותר מחוקי השרת",
|
||||
|
@ -451,7 +451,7 @@
|
|||
"status.bookmark": "סימניה",
|
||||
"status.cancel_reblog_private": "הסרת הדהוד",
|
||||
"status.cannot_reblog": "לא ניתן להדהד הודעה זו",
|
||||
"status.copy": "Copy link to status",
|
||||
"status.copy": "העתק/י קישור לפוסט זה",
|
||||
"status.delete": "מחיקה",
|
||||
"status.detailed_status": "תצוגת שיחה מפורטת",
|
||||
"status.direct": "הודעה ישירה ל@{name}",
|
||||
|
@ -469,8 +469,8 @@
|
|||
"status.more": "עוד",
|
||||
"status.mute": "להשתיק את @{name}",
|
||||
"status.mute_conversation": "השתקת שיחה",
|
||||
"status.open": "הרחבת הודעה",
|
||||
"status.pin": "לקבע באודות",
|
||||
"status.open": "הרחבת פוסט זה",
|
||||
"status.pin": "הצמדה לפרופיל שלי",
|
||||
"status.pinned": "Pinned toot",
|
||||
"status.read_more": "לקרוא עוד",
|
||||
"status.reblog": "הדהוד",
|
||||
|
@ -480,7 +480,7 @@
|
|||
"status.redraft": "מחיקה ועריכה מחדש",
|
||||
"status.remove_bookmark": "הסרת סימניה",
|
||||
"status.reply": "תגובה",
|
||||
"status.replyAll": "תגובה לכולם",
|
||||
"status.replyAll": "תגובה לפתיל",
|
||||
"status.report": "דיווח על @{name}",
|
||||
"status.sensitive_warning": "תוכן רגיש",
|
||||
"status.share": "שיתוף",
|
||||
|
@ -488,15 +488,15 @@
|
|||
"status.show_less_all": "להציג פחות מהכל",
|
||||
"status.show_more": "הראה יותר",
|
||||
"status.show_more_all": "להציג יותר מהכל",
|
||||
"status.show_thread": "להציג סיב",
|
||||
"status.show_thread": "הצג כחלק מפתיל",
|
||||
"status.uncached_media_warning": "לא זמין",
|
||||
"status.unmute_conversation": "הסרת השתקת שיחה",
|
||||
"status.unpin": "לשחרר מקיבוע באודות",
|
||||
"suggestions.dismiss": "להתעלם מהצעה",
|
||||
"suggestions.header": "ייתכן שזה יעניין אותך…",
|
||||
"tabs_bar.federated_timeline": "ציר זמן בין-קהילתי",
|
||||
"tabs_bar.home": "בבית",
|
||||
"tabs_bar.local_timeline": "ציר זמן מקומי",
|
||||
"tabs_bar.federated_timeline": "פיד כללי (בין-קהילתי)",
|
||||
"tabs_bar.home": "פיד הבית",
|
||||
"tabs_bar.local_timeline": "פיד שרת מקומי",
|
||||
"tabs_bar.notifications": "התראות",
|
||||
"tabs_bar.search": "חיפוש",
|
||||
"time_remaining.days": "נותרו {number, plural, one {# יום} other {# ימים}}",
|
||||
|
|
|
@ -95,7 +95,7 @@
|
|||
"compose.language.change": "Ganti bahasa",
|
||||
"compose.language.search": "Telusuri bahasa...",
|
||||
"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.lock_disclaimer": "Akun anda tidak {locked}. Semua orang dapat mengikuti anda untuk melihat postingan khusus untuk pengikut anda.",
|
||||
"compose_form.lock_disclaimer.lock": "terkunci",
|
||||
|
|
|
@ -442,7 +442,7 @@
|
|||
"search_results.all": "Omna",
|
||||
"search_results.hashtags": "Hashtagi",
|
||||
"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.total": "{count, number} {count, plural, one {rezulto} other {rezulti}}",
|
||||
"status.admin_account": "Apertez jerintervizajo por @{name}",
|
||||
|
|
|
@ -106,7 +106,7 @@
|
|||
"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_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.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}}",
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
"account.joined": "Pievienojās {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.media": "Mediji",
|
||||
"account.media": "Multivide",
|
||||
"account.mention": "Piemin @{name}",
|
||||
"account.moved_to": "{name} ir pārcelts uz:",
|
||||
"account.mute": "Apklusināt @{name}",
|
||||
|
@ -90,7 +90,7 @@
|
|||
"column_header.unpin": "Atspraust",
|
||||
"column_subheading.settings": "Iestatījumi",
|
||||
"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",
|
||||
"compose.language.change": "Mainīt valodu",
|
||||
"compose.language.search": "Meklēt valodas...",
|
||||
|
@ -109,9 +109,9 @@
|
|||
"compose_form.publish": "Publicēt",
|
||||
"compose_form.publish_loud": "{publish}!",
|
||||
"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.marked": "{count, plural, one {Medijs ir atzīmēts kā sensitīvs} other {Mediji ir atzīmēti kā sensitīvi}}",
|
||||
"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.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 {Multivide ir atzīmēta kā sensitīva} other {Multivides ir atzīmētas kā sensitīvas}}",
|
||||
"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.unmarked": "Pievienot satura brīdinājumu",
|
||||
"compose_form.spoiler_placeholder": "Ieraksti savu brīdinājumu šeit",
|
||||
|
@ -124,7 +124,7 @@
|
|||
"confirmations.delete_list.confirm": "Dzēst",
|
||||
"confirmations.delete_list.message": "Vai tiešam vēlies neatgriezeniski dzēst šo sarakstu?",
|
||||
"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.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",
|
||||
|
@ -171,7 +171,7 @@
|
|||
"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.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.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.",
|
||||
|
@ -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.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.",
|
||||
"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",
|
||||
"explore.search_results": "Meklēšanas rezultāti",
|
||||
"explore.suggested_follows": "Tev",
|
||||
|
@ -207,7 +207,7 @@
|
|||
"getting_started.directory": "Profila direktorija",
|
||||
"getting_started.documentation": "Dokumentācija",
|
||||
"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.security": "Konta iestatījumi",
|
||||
"getting_started.terms": "Pakalpojuma noteikumi",
|
||||
|
@ -230,7 +230,7 @@
|
|||
"intervals.full.minutes": "{number, plural, one {# minūte} other {# minūtes}}",
|
||||
"keyboard_shortcuts.back": "Pāriet atpakaļ",
|
||||
"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.compose": "Fokusēt veidojamā teksta lauku",
|
||||
"keyboard_shortcuts.description": "Apraksts",
|
||||
|
@ -245,11 +245,11 @@
|
|||
"keyboard_shortcuts.hotkey": "Ātrais taustiņš",
|
||||
"keyboard_shortcuts.legend": "Parādīt šo leģendu",
|
||||
"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.my_profile": "Atvērt manu profilu",
|
||||
"keyboard_shortcuts.my_profile": "Atvērt savu profilu",
|
||||
"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.profile": "Atvērt autora profilu",
|
||||
"keyboard_shortcuts.reply": "Atbildēt",
|
||||
|
@ -258,15 +258,15 @@
|
|||
"keyboard_shortcuts.spoilers": "Rādīt/slēpt CW lauku",
|
||||
"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_sensitivity": "Rādīt/slēpt mediju",
|
||||
"keyboard_shortcuts.toot": "Sākt jaunu ziņu",
|
||||
"keyboard_shortcuts.toggle_sensitivity": "Rādīt/slēpt multividi",
|
||||
"keyboard_shortcuts.toot": "Sāc jaunu ziņu",
|
||||
"keyboard_shortcuts.unfocus": "Atfokusēt teksta veidošanu/meklēšanu",
|
||||
"keyboard_shortcuts.up": "Pārvietot sarakstā uz augšu",
|
||||
"lightbox.close": "Aizvērt",
|
||||
"lightbox.compress": "Saspiest attēla ietvaru",
|
||||
"lightbox.expand": "Paplašināt attēla ietvaru",
|
||||
"lightbox.compress": "Saspiest attēla skata lodziņu",
|
||||
"lightbox.expand": "Izvērst attēla skata lodziņu",
|
||||
"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.title": "Tava servera moderatori ir paslēpuši šo profilu.",
|
||||
"lists.account.add": "Pievienot sarakstam",
|
||||
|
@ -276,10 +276,10 @@
|
|||
"lists.edit.submit": "Mainīt virsrakstu",
|
||||
"lists.new.create": "Pievienot sarakstu",
|
||||
"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.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.subheading": "Tavi saraksti",
|
||||
"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.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.publish": "Publish",
|
||||
"compose_form.publish": "Publicar",
|
||||
"compose_form.publish_loud": "{publish} !",
|
||||
"compose_form.save_changes": "Salvar los cambiaments",
|
||||
"compose_form.sensitive.hide": "Marcar coma sensible",
|
||||
|
@ -396,7 +396,7 @@
|
|||
"reply_indicator.cancel": "Anullar",
|
||||
"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.categories.other": "Other",
|
||||
"report.categories.other": "Autre",
|
||||
"report.categories.spam": "Spam",
|
||||
"report.categories.violation": "Content violates one or more server rules",
|
||||
"report.category.subtitle": "Choose the best match",
|
||||
|
@ -427,9 +427,9 @@
|
|||
"report.target": "Senhalar {target}",
|
||||
"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.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.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.",
|
||||
"search.placeholder": "Recercar",
|
||||
"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.user": "utilizaire",
|
||||
"search_results.accounts": "Gents",
|
||||
"search_results.all": "All",
|
||||
"search_results.all": "Tot",
|
||||
"search_results.hashtags": "Etiquetas",
|
||||
"search_results.nothing_found": "Could not find anything for these search terms",
|
||||
"search_results.statuses": "Tuts",
|
||||
|
@ -457,12 +457,12 @@
|
|||
"status.direct": "Messatge per @{name}",
|
||||
"status.edit": "Modificar",
|
||||
"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.favourite": "Apondre als favorits",
|
||||
"status.filtered": "Filtrat",
|
||||
"status.history.created": "{name} created {date}",
|
||||
"status.history.edited": "{name} edited {date}",
|
||||
"status.history.created": "{name} o creèt lo {date}",
|
||||
"status.history.edited": "{name} o modifiquèt lo {date}",
|
||||
"status.load_more": "Cargar mai",
|
||||
"status.media_hidden": "Mèdia rescondut",
|
||||
"status.mention": "Mencionar",
|
||||
|
@ -520,7 +520,7 @@
|
|||
"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.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.thumbnail": "Cambiar la vinheta",
|
||||
"upload_form.undo": "Suprimir",
|
||||
|
|
|
@ -95,7 +95,7 @@
|
|||
"compose.language.change": "Alterar idioma",
|
||||
"compose.language.search": "Pesquisar idiomas...",
|
||||
"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.lock_disclaimer": "Seu perfil não está {locked}. Qualquer um pode te seguir e ver os toots privados.",
|
||||
"compose_form.lock_disclaimer.lock": "trancado",
|
||||
|
@ -106,7 +106,7 @@
|
|||
"compose_form.poll.remove_option": "Remover opção",
|
||||
"compose_form.poll.switch_to_multiple": "Permitir múltiplas escolhas",
|
||||
"compose_form.poll.switch_to_single": "Opção única",
|
||||
"compose_form.publish": "Publish",
|
||||
"compose_form.publish": "Publicar",
|
||||
"compose_form.publish_loud": "{publish}!",
|
||||
"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}}",
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
"account.mute": "Nevšímaj si @{name}",
|
||||
"account.mute_notifications": "Stĺm oboznámenia od @{name}",
|
||||
"account.muted": "Nevšímaný/á",
|
||||
"account.posts": "Príspevky",
|
||||
"account.posts": "Príspevky/ov",
|
||||
"account.posts_with_replies": "Príspevky, aj s odpoveďami",
|
||||
"account.report": "Nahlás @{name}",
|
||||
"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.remote_only": "Iba odľahlé",
|
||||
"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.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.",
|
||||
|
@ -106,7 +106,7 @@
|
|||
"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_single": "Zmeň anketu na takú s jedinou voľbou",
|
||||
"compose_form.publish": "Publish",
|
||||
"compose_form.publish": "Zverejni",
|
||||
"compose_form.publish_loud": "{publish}!",
|
||||
"compose_form.save_changes": "Ulož zmeny",
|
||||
"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.preview": "Tu je ako to bude vyzerať:",
|
||||
"emoji_button.activity": "Aktivita",
|
||||
"emoji_button.clear": "Clear",
|
||||
"emoji_button.clear": "Vyčisti",
|
||||
"emoji_button.custom": "Vlastné",
|
||||
"emoji_button.flags": "Vlajky",
|
||||
"emoji_button.food": "Jedlá a nápoje",
|
||||
|
@ -169,7 +169,7 @@
|
|||
"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.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.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.",
|
||||
|
@ -267,7 +267,7 @@
|
|||
"lightbox.expand": "Rozšíriť náhľad obrázku",
|
||||
"lightbox.next": "Ďalšie",
|
||||
"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.",
|
||||
"lists.account.add": "Pridaj do zoznamu",
|
||||
"lists.account.remove": "Odober zo zoznamu",
|
||||
|
@ -372,10 +372,10 @@
|
|||
"poll_button.remove_poll": "Odstráň anketu",
|
||||
"privacy.change": "Uprav súkromie príspevku",
|
||||
"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.short": "Followers-only",
|
||||
"privacy.public.long": "Visible for all",
|
||||
"privacy.private.short": "Iba pre sledujúcich",
|
||||
"privacy.public.long": "Viditeľné pre všetkých",
|
||||
"privacy.public.short": "Verejné",
|
||||
"privacy.unlisted.long": "Visible for all, but opted-out of discovery features",
|
||||
"privacy.unlisted.short": "Verejne, ale nezobraziť v osi",
|
||||
|
|
|
@ -92,10 +92,10 @@
|
|||
"community.column_settings.local_only": "Vetëm vendore",
|
||||
"community.column_settings.media_only": "Vetëm Media",
|
||||
"community.column_settings.remote_only": "Vetëm të largëta",
|
||||
"compose.language.change": "Change language",
|
||||
"compose.language.search": "Search languages...",
|
||||
"compose.language.change": "Ndryshoni gjuhën",
|
||||
"compose.language.search": "Kërkoni te gjuhët…",
|
||||
"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.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",
|
||||
|
@ -106,7 +106,7 @@
|
|||
"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_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.save_changes": "Ruaji ndryshimet",
|
||||
"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.preview": "Ja si do të duket:",
|
||||
"emoji_button.activity": "Veprimtari",
|
||||
"emoji_button.clear": "Clear",
|
||||
"emoji_button.clear": "Spastroje",
|
||||
"emoji_button.custom": "Vetjak",
|
||||
"emoji_button.flags": "Flamuj",
|
||||
"emoji_button.food": "Ushqim & Pije",
|
||||
|
@ -228,47 +228,47 @@
|
|||
"intervals.full.days": "{number, plural, one {# ditë} other {# ditë}}",
|
||||
"intervals.full.hours": "{number, plural, one {# orë} other {# orë}}",
|
||||
"intervals.full.minutes": "{number, plural, one {# minutë} other {# minuta}}",
|
||||
"keyboard_shortcuts.back": "për shkuarje mbrapsht",
|
||||
"keyboard_shortcuts.blocked": "për hapje liste përdoruesish të bllokuar",
|
||||
"keyboard_shortcuts.boost": "për përforcim",
|
||||
"keyboard_shortcuts.column": "për kalim fokusi mbi një gjendje te një nga shtyllat",
|
||||
"keyboard_shortcuts.compose": "për kalim fokusi te fusha e hartimit të mesazheve",
|
||||
"keyboard_shortcuts.back": "Për shkuarje mbrapsht",
|
||||
"keyboard_shortcuts.blocked": "Për hapje liste përdoruesish të bllokuar",
|
||||
"keyboard_shortcuts.boost": "Përforcim postimi",
|
||||
"keyboard_shortcuts.column": "Fokusi mbi një shtyllë",
|
||||
"keyboard_shortcuts.compose": "Fokusi te fusha e hartimit të mesazheve",
|
||||
"keyboard_shortcuts.description": "Përshkrim",
|
||||
"keyboard_shortcuts.direct": "për hapje shtylle mesazhesh të drejtpërdrejtë",
|
||||
"keyboard_shortcuts.down": "për zbritje poshtë nëpër listë",
|
||||
"keyboard_shortcuts.enter": "për hapje gjendjeje",
|
||||
"keyboard_shortcuts.favourite": "për t’i vënë shenjë si të parapëlqyer",
|
||||
"keyboard_shortcuts.favourites": "për hapje liste të parapëlqyerish",
|
||||
"keyboard_shortcuts.federated": "për hapje rrjedhe kohore të të federuarve",
|
||||
"keyboard_shortcuts.down": "Për zbritje poshtë nëpër listë",
|
||||
"keyboard_shortcuts.enter": "Për hapje postimi",
|
||||
"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.federated": "Për hapje rrjedhe kohore të të federuarve",
|
||||
"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.legend": "për shfaqje të kësaj legjende",
|
||||
"keyboard_shortcuts.local": "për hapje rrjedhe kohore vendore",
|
||||
"keyboard_shortcuts.mention": "për përmendje të autorit",
|
||||
"keyboard_shortcuts.muted": "për hapje liste përdoruesish të heshtuar",
|
||||
"keyboard_shortcuts.my_profile": "për hapjen e profilit tuaj",
|
||||
"keyboard_shortcuts.notifications": "për hapje shtylle njoftimesh",
|
||||
"keyboard_shortcuts.open_media": "për hapje mediash",
|
||||
"keyboard_shortcuts.pinned": "për hapje liste mesazhesh të fiksuar",
|
||||
"keyboard_shortcuts.profile": "për hapje të profilit të autorit",
|
||||
"keyboard_shortcuts.reply": "për t’u përgjigjur",
|
||||
"keyboard_shortcuts.requests": "për hapje liste kërkesash për ndjekje",
|
||||
"keyboard_shortcuts.search": "për kalim fokusi te kërkimi",
|
||||
"keyboard_shortcuts.spoilers": "për shfaqje/fshehje fushe CW",
|
||||
"keyboard_shortcuts.start": "për hapjen e shtyllës “fillojani”",
|
||||
"keyboard_shortcuts.toggle_hidden": "për shfaqje/fshehje teksti pas CW",
|
||||
"keyboard_shortcuts.toggle_sensitivity": "për shfaqje/fshehje mediash",
|
||||
"keyboard_shortcuts.toot": "për të filluar një mesazh fringo të ri",
|
||||
"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.legend": "Për shfaqje të kësaj legjende",
|
||||
"keyboard_shortcuts.local": "Për hapje rrjedhe kohore vendore",
|
||||
"keyboard_shortcuts.mention": "Për përmendje të autorit",
|
||||
"keyboard_shortcuts.muted": "Për hapje liste përdoruesish të heshtuar",
|
||||
"keyboard_shortcuts.my_profile": "Për hapjen e profilit tuaj",
|
||||
"keyboard_shortcuts.notifications": "Për hapje shtylle njoftimesh",
|
||||
"keyboard_shortcuts.open_media": "Për hapje mediash",
|
||||
"keyboard_shortcuts.pinned": "Për hapje liste mesazhesh të fiksuar",
|
||||
"keyboard_shortcuts.profile": "Për hapje të profilit të autorit",
|
||||
"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.search": "Për kalim fokusi te kërkimi",
|
||||
"keyboard_shortcuts.spoilers": "Për shfaqje/fshehje fushe CW",
|
||||
"keyboard_shortcuts.start": "Për hapjen e shtyllës “fillojani”",
|
||||
"keyboard_shortcuts.toggle_hidden": "Për shfaqje/fshehje teksti pas CW",
|
||||
"keyboard_shortcuts.toggle_sensitivity": "Për shfaqje/fshehje mediash",
|
||||
"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.up": "Për ngjitje sipër nëpër listë",
|
||||
"lightbox.close": "Mbylle",
|
||||
"lightbox.compress": "Ngjeshe kuadratin e parjes së figurave",
|
||||
"lightbox.expand": "Zgjeroje kuadratin e parjes së figurave",
|
||||
"lightbox.next": "Pasuesja",
|
||||
"lightbox.previous": "E mëparshmja",
|
||||
"limited_account_hint.action": "Show profile anyway",
|
||||
"limited_account_hint.title": "This profile has been hidden by the moderators of your server.",
|
||||
"limited_account_hint.action": "Shfaqe profilin sido qoftë",
|
||||
"limited_account_hint.title": "Ky profil është fshehur nga moderatorët e shërbyesit tuaj.",
|
||||
"lists.account.add": "Shto në listë",
|
||||
"lists.account.remove": "Hiqe nga lista",
|
||||
"lists.delete": "Fshije listën",
|
||||
|
|
|
@ -4,19 +4,17 @@ $black: #000000;
|
|||
$classic-base-color: #282c37;
|
||||
$classic-primary-color: #9baec8;
|
||||
$classic-secondary-color: #d9e1e8;
|
||||
$classic-highlight-color: #2b90d9;
|
||||
$classic-highlight-color: #6364ff;
|
||||
|
||||
$ui-base-color: $classic-base-color !default;
|
||||
$ui-primary-color: $classic-primary-color !default;
|
||||
$ui-secondary-color: $classic-secondary-color !default;
|
||||
|
||||
// Differences
|
||||
$ui-highlight-color: #2b5fd9;
|
||||
$ui-highlight-color: $classic-highlight-color !default;
|
||||
|
||||
$darker-text-color: lighten($ui-primary-color, 20%) !default;
|
||||
$dark-text-color: lighten($ui-primary-color, 12%) !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;
|
||||
|
||||
$inverted-text-color: $black !default;
|
||||
|
|
|
@ -5,7 +5,7 @@ $white: #ffffff;
|
|||
$classic-base-color: #282c37;
|
||||
$classic-primary-color: #9baec8;
|
||||
$classic-secondary-color: #d9e1e8;
|
||||
$classic-highlight-color: #2b90d9;
|
||||
$classic-highlight-color: #6364ff;
|
||||
|
||||
// Differences
|
||||
$success-green: lighten(#3c754d, 8%);
|
||||
|
@ -17,10 +17,11 @@ $ui-base-color: $classic-secondary-color !default;
|
|||
$ui-base-lighter-color: #b0c0cf;
|
||||
$ui-primary-color: #9bcbed;
|
||||
$ui-secondary-color: $classic-base-color !default;
|
||||
$ui-highlight-color: #2b90d9;
|
||||
$ui-highlight-color: $classic-highlight-color !default;
|
||||
|
||||
$primary-text-color: $black !default;
|
||||
$darker-text-color: $classic-base-color !default;
|
||||
$highlight-text-color: darken($ui-highlight-color, 8%) !default;
|
||||
$dark-text-color: #444b5d;
|
||||
$action-button-color: #606984;
|
||||
|
||||
|
|
|
@ -133,12 +133,12 @@ $content-width: 840px;
|
|||
|
||||
.simple-navigation-active-leaf a {
|
||||
color: $primary-text-color;
|
||||
background-color: $ui-highlight-color;
|
||||
background-color: darken($ui-highlight-color, 2%);
|
||||
border-bottom: 0;
|
||||
border-radius: 0;
|
||||
|
||||
&:hover {
|
||||
background-color: lighten($ui-highlight-color, 5%);
|
||||
background-color: $ui-highlight-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -901,7 +901,7 @@ a.name-tag,
|
|||
border: 0;
|
||||
|
||||
a {
|
||||
color: lighten($ui-highlight-color, 8%);
|
||||
color: $highlight-text-color;
|
||||
}
|
||||
|
||||
dl:first-child .verified {
|
||||
|
|
|
@ -42,7 +42,7 @@
|
|||
}
|
||||
|
||||
.button {
|
||||
background-color: $ui-highlight-color;
|
||||
background-color: darken($ui-highlight-color, 2%);
|
||||
border: 10px none;
|
||||
border-radius: 4px;
|
||||
box-sizing: border-box;
|
||||
|
@ -60,20 +60,16 @@
|
|||
text-align: center;
|
||||
text-decoration: none;
|
||||
text-overflow: ellipsis;
|
||||
transition: all 100ms ease-in;
|
||||
white-space: nowrap;
|
||||
width: auto;
|
||||
|
||||
&:active,
|
||||
&:focus,
|
||||
&:hover {
|
||||
background-color: lighten($ui-highlight-color, 10%);
|
||||
transition: all 200ms ease-out;
|
||||
background-color: $ui-highlight-color;
|
||||
}
|
||||
|
||||
&--destructive {
|
||||
transition: none;
|
||||
|
||||
&:active,
|
||||
&:focus,
|
||||
&:hover {
|
||||
|
@ -829,7 +825,7 @@
|
|||
}
|
||||
|
||||
a.unhandled-link {
|
||||
color: lighten($ui-highlight-color, 8%);
|
||||
color: $highlight-text-color;
|
||||
}
|
||||
|
||||
.status__content__spoiler-link {
|
||||
|
@ -899,7 +895,7 @@
|
|||
}
|
||||
|
||||
&.unhandled-link {
|
||||
color: lighten($ui-highlight-color, 8%);
|
||||
color: $highlight-text-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -912,7 +908,7 @@
|
|||
display: block;
|
||||
font-size: 15px;
|
||||
line-height: 20px;
|
||||
color: lighten($ui-highlight-color, 8%);
|
||||
color: $highlight-text-color;
|
||||
border: 0;
|
||||
background: transparent;
|
||||
padding: 0;
|
||||
|
@ -2437,7 +2433,7 @@ a.account__display-name {
|
|||
height: 3.9375rem;
|
||||
bottom: 1.3125rem;
|
||||
right: 1.3125rem;
|
||||
background: darken($ui-highlight-color, 3%);
|
||||
background: darken($ui-highlight-color, 2%);
|
||||
color: $white;
|
||||
border-radius: 50%;
|
||||
font-size: 21px;
|
||||
|
@ -2448,7 +2444,7 @@ a.account__display-name {
|
|||
&:hover,
|
||||
&:focus,
|
||||
&: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 {
|
||||
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 {
|
||||
background-color: lighten($ui-highlight-color, 10%);
|
||||
background-color: $ui-highlight-color;
|
||||
}
|
||||
|
||||
.react-toggle-track-check {
|
||||
|
@ -2974,7 +2970,7 @@ a.account__display-name {
|
|||
}
|
||||
|
||||
&.active {
|
||||
color: $ui-highlight-color;
|
||||
color: $highlight-text-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -3407,14 +3403,14 @@ a.status-card.compact:hover {
|
|||
}
|
||||
|
||||
a {
|
||||
color: lighten($ui-highlight-color, 8%);
|
||||
color: $highlight-text-color;
|
||||
text-decoration: none;
|
||||
|
||||
&:hover,
|
||||
&:focus,
|
||||
&:active {
|
||||
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;
|
||||
|
||||
&.checked {
|
||||
border-color: lighten($ui-highlight-color, 8%);
|
||||
background: lighten($ui-highlight-color, 8%);
|
||||
border-color: lighten($ui-highlight-color, 4%);
|
||||
background: lighten($ui-highlight-color, 4%);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -791,7 +791,7 @@
|
|||
border-top: 0;
|
||||
|
||||
a {
|
||||
color: lighten($ui-highlight-color, 8%);
|
||||
color: $highlight-text-color;
|
||||
}
|
||||
|
||||
dl:first-child .verified {
|
||||
|
|
|
@ -82,7 +82,7 @@
|
|||
display: flex;
|
||||
align-items: baseline;
|
||||
border-radius: 4px;
|
||||
background: $ui-highlight-color;
|
||||
background: darken($ui-highlight-color, 2%);
|
||||
color: $primary-text-color;
|
||||
transition: all 100ms ease-in;
|
||||
font-size: 14px;
|
||||
|
@ -95,7 +95,7 @@
|
|||
&:active,
|
||||
&:focus,
|
||||
&:hover {
|
||||
background-color: lighten($ui-highlight-color, 10%);
|
||||
background-color: $ui-highlight-color;
|
||||
transition: all 200ms ease-out;
|
||||
}
|
||||
|
||||
|
|
|
@ -463,14 +463,14 @@ code {
|
|||
width: 100%;
|
||||
border: 0;
|
||||
border-radius: 4px;
|
||||
background: $ui-highlight-color;
|
||||
background: darken($ui-highlight-color, 2%);
|
||||
color: $primary-text-color;
|
||||
font-size: 18px;
|
||||
line-height: inherit;
|
||||
height: auto;
|
||||
padding: 10px;
|
||||
text-transform: uppercase;
|
||||
text-decoration: none;
|
||||
text-transform: uppercase;
|
||||
text-align: center;
|
||||
box-sizing: border-box;
|
||||
cursor: pointer;
|
||||
|
@ -483,13 +483,10 @@ code {
|
|||
margin-right: 0;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
background-color: lighten($ui-highlight-color, 5%);
|
||||
}
|
||||
|
||||
&:active,
|
||||
&:focus {
|
||||
background-color: darken($ui-highlight-color, 5%);
|
||||
&:focus,
|
||||
&:hover {
|
||||
background-color: $ui-highlight-color;
|
||||
}
|
||||
|
||||
&:disabled:hover {
|
||||
|
|
|
@ -80,7 +80,7 @@
|
|||
.button.logo-button {
|
||||
flex: 0 auto;
|
||||
font-size: 14px;
|
||||
background: $ui-highlight-color;
|
||||
background: darken($ui-highlight-color, 2%);
|
||||
color: $primary-text-color;
|
||||
text-transform: none;
|
||||
line-height: 1.2;
|
||||
|
@ -104,7 +104,7 @@
|
|||
&:active,
|
||||
&:focus,
|
||||
&:hover {
|
||||
background: lighten($ui-highlight-color, 10%);
|
||||
background: $ui-highlight-color;
|
||||
}
|
||||
|
||||
&:disabled,
|
||||
|
|
|
@ -34,7 +34,7 @@ $primary-text-color: $white !default;
|
|||
$darker-text-color: $ui-primary-color !default;
|
||||
$dark-text-color: $ui-base-lighter-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;
|
||||
$passive-text-color: $gold-star !default;
|
||||
$active-passive-text-color: $success-green !default;
|
||||
|
|
|
@ -9,7 +9,6 @@ RSS::Builder.build do |doc|
|
|||
|
||||
@statuses.each do |status|
|
||||
doc.item do |item|
|
||||
item.title(l(status.created_at))
|
||||
item.link(ActivityPub::TagManager.instance.url_for(status))
|
||||
item.pub_date(status.created_at)
|
||||
item.description(rss_status_content_format(status))
|
||||
|
|
|
@ -7,7 +7,6 @@ RSS::Builder.build do |doc|
|
|||
|
||||
@statuses.each do |status|
|
||||
doc.item do |item|
|
||||
item.title(l(status.created_at))
|
||||
item.link(ActivityPub::TagManager.instance.url_for(status))
|
||||
item.pub_date(status.created_at)
|
||||
item.description(rss_status_content_format(status))
|
||||
|
|
|
@ -21,6 +21,14 @@ af:
|
|||
username:
|
||||
invalid: moet slegs letters, nommers en onderstrepe bevat
|
||||
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:
|
||||
attributes:
|
||||
reblog:
|
||||
|
|
|
@ -9,3 +9,13 @@ ast:
|
|||
username: Nome d'usuariu
|
||||
user/invite_request:
|
||||
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:
|
||||
invalid: només pot contenir lletres, números i guions baixos
|
||||
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:
|
||||
attributes:
|
||||
reblog:
|
||||
|
|
|
@ -21,6 +21,14 @@ cs:
|
|||
username:
|
||||
invalid: musí obsahovat pouze písmena, číslice a podtržítka
|
||||
reserved: je vyhrazeno
|
||||
admin/webhook:
|
||||
attributes:
|
||||
url:
|
||||
invalid: není platná URL
|
||||
doorkeeper/application:
|
||||
attributes:
|
||||
website:
|
||||
invalid: není platná URL
|
||||
status:
|
||||
attributes:
|
||||
reblog:
|
||||
|
|
|
@ -21,6 +21,14 @@ da:
|
|||
username:
|
||||
invalid: må kun indeholde cifre, bogstaver og understreger
|
||||
reserved: er reserveret
|
||||
admin/webhook:
|
||||
attributes:
|
||||
url:
|
||||
invalid: "'er ikke en gyldig URL"
|
||||
doorkeeper/application:
|
||||
attributes:
|
||||
website:
|
||||
invalid: "'er ikke en gyldig URL"
|
||||
status:
|
||||
attributes:
|
||||
reblog:
|
||||
|
|
|
@ -21,6 +21,14 @@ de:
|
|||
username:
|
||||
invalid: nur Buchstaben, Ziffern und Unterstriche
|
||||
reserved: ist reserviert
|
||||
admin/webhook:
|
||||
attributes:
|
||||
url:
|
||||
invalid: ist keine gültige URL
|
||||
doorkeeper/application:
|
||||
attributes:
|
||||
website:
|
||||
invalid: ist keine gültige URL
|
||||
status:
|
||||
attributes:
|
||||
reblog:
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
en-GB:
|
|
@ -21,6 +21,14 @@ es-AR:
|
|||
username:
|
||||
invalid: sólo letras, números y subguiones ("_")
|
||||
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:
|
||||
attributes:
|
||||
reblog:
|
||||
|
|
|
@ -21,6 +21,14 @@ es:
|
|||
username:
|
||||
invalid: solo puede contener letras, números y guiones bajos
|
||||
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:
|
||||
attributes:
|
||||
reblog:
|
||||
|
|
|
@ -21,6 +21,14 @@ fr:
|
|||
username:
|
||||
invalid: seulement des lettres, des nombres et des tirets bas
|
||||
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:
|
||||
attributes:
|
||||
reblog:
|
||||
|
|
|
@ -21,6 +21,14 @@ gl:
|
|||
username:
|
||||
invalid: só letras, números e trazo baixo
|
||||
reserved: está reservado
|
||||
admin/webhook:
|
||||
attributes:
|
||||
url:
|
||||
invalid: non é un URL válido
|
||||
doorkeeper/application:
|
||||
attributes:
|
||||
website:
|
||||
invalid: non é un URL válido
|
||||
status:
|
||||
attributes:
|
||||
reblog:
|
||||
|
|
|
@ -21,6 +21,14 @@ hu:
|
|||
username:
|
||||
invalid: csak betűket, számokat vagy alávonást tartalmazhat
|
||||
reserved: fenntartott
|
||||
admin/webhook:
|
||||
attributes:
|
||||
url:
|
||||
invalid: nem érvényes URL
|
||||
doorkeeper/application:
|
||||
attributes:
|
||||
website:
|
||||
invalid: nem érvényes URL
|
||||
status:
|
||||
attributes:
|
||||
reblog:
|
||||
|
|
|
@ -21,6 +21,14 @@ io:
|
|||
username:
|
||||
invalid: mustas konsistar nur literi, nombri e sublinei
|
||||
reserved: rezervitas
|
||||
admin/webhook:
|
||||
attributes:
|
||||
url:
|
||||
invalid: ne esas valida URL
|
||||
doorkeeper/application:
|
||||
attributes:
|
||||
website:
|
||||
invalid: ne esas valida URL
|
||||
status:
|
||||
attributes:
|
||||
reblog:
|
||||
|
|
|
@ -21,6 +21,14 @@ it:
|
|||
username:
|
||||
invalid: solo lettere, numeri e trattini bassi
|
||||
reserved: è riservato
|
||||
admin/webhook:
|
||||
attributes:
|
||||
url:
|
||||
invalid: non è un URL valido
|
||||
doorkeeper/application:
|
||||
attributes:
|
||||
website:
|
||||
invalid: non è un URL valido
|
||||
status:
|
||||
attributes:
|
||||
reblog:
|
||||
|
|
|
@ -21,6 +21,14 @@ ja:
|
|||
username:
|
||||
invalid: アルファベット・数字・アンダーバーの組み合わせで入力してください
|
||||
reserved: は予約されています
|
||||
admin/webhook:
|
||||
attributes:
|
||||
url:
|
||||
invalid: は無効なURLです
|
||||
doorkeeper/application:
|
||||
attributes:
|
||||
website:
|
||||
invalid: は無効なURLです
|
||||
status:
|
||||
attributes:
|
||||
reblog:
|
||||
|
|
|
@ -21,6 +21,14 @@ ku:
|
|||
username:
|
||||
invalid: pêdivî ye ku tenê tîp, hejmar û xêzikên jêrîn hebin
|
||||
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:
|
||||
attributes:
|
||||
reblog:
|
||||
|
|
|
@ -21,6 +21,14 @@ lv:
|
|||
username:
|
||||
invalid: drīkst saturēt tikai burtus, ciparus un pasvītras
|
||||
reserved: ir rezervēts
|
||||
admin/webhook:
|
||||
attributes:
|
||||
url:
|
||||
invalid: nav derīgs URL
|
||||
doorkeeper/application:
|
||||
attributes:
|
||||
website:
|
||||
invalid: nav derīgs URL
|
||||
status:
|
||||
attributes:
|
||||
reblog:
|
||||
|
|
|
@ -21,6 +21,14 @@ pl:
|
|||
username:
|
||||
invalid: może składać się tylko z liter, cyfr i podkreślników
|
||||
reserved: jest zarezerwowana
|
||||
admin/webhook:
|
||||
attributes:
|
||||
url:
|
||||
invalid: nie jest poprawnym adresem URL
|
||||
doorkeeper/application:
|
||||
attributes:
|
||||
website:
|
||||
invalid: nie jest poprawnym adresem URL
|
||||
status:
|
||||
attributes:
|
||||
reblog:
|
||||
|
|
|
@ -21,6 +21,14 @@ pt-PT:
|
|||
username:
|
||||
invalid: apenas letras, números e underscores
|
||||
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:
|
||||
attributes:
|
||||
reblog:
|
||||
|
|
|
@ -21,6 +21,14 @@ ru:
|
|||
username:
|
||||
invalid: только буквы, цифры и символ подчёркивания
|
||||
reserved: зарезервировано
|
||||
admin/webhook:
|
||||
attributes:
|
||||
url:
|
||||
invalid: не является допустимым URL
|
||||
doorkeeper/application:
|
||||
attributes:
|
||||
website:
|
||||
invalid: не является допустимым URL
|
||||
status:
|
||||
attributes:
|
||||
reblog:
|
||||
|
|
|
@ -21,6 +21,14 @@ sl:
|
|||
username:
|
||||
invalid: samo črke, številke in podčrtaji
|
||||
reserved: je rezerviran
|
||||
admin/webhook:
|
||||
attributes:
|
||||
url:
|
||||
invalid: ni veljaven URL
|
||||
doorkeeper/application:
|
||||
attributes:
|
||||
website:
|
||||
invalid: ni veljaven URL
|
||||
status:
|
||||
attributes:
|
||||
reblog:
|
||||
|
|
|
@ -21,6 +21,14 @@ sq:
|
|||
username:
|
||||
invalid: duhet të përmbajë vetëm shkronja, numra dhe nënvija
|
||||
reserved: është i rezervuar
|
||||
admin/webhook:
|
||||
attributes:
|
||||
url:
|
||||
invalid: s’është URL e vlefshme
|
||||
doorkeeper/application:
|
||||
attributes:
|
||||
website:
|
||||
invalid: s’është URL
|
||||
status:
|
||||
attributes:
|
||||
reblog:
|
||||
|
|
|
@ -21,6 +21,14 @@ tr:
|
|||
username:
|
||||
invalid: sadece harfler, sayılar ve alt çizgiler
|
||||
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:
|
||||
attributes:
|
||||
reblog:
|
||||
|
|
|
@ -21,6 +21,14 @@ uk:
|
|||
username:
|
||||
invalid: тільки літери, цифри та підкреслення
|
||||
reserved: зарезервовано
|
||||
admin/webhook:
|
||||
attributes:
|
||||
url:
|
||||
invalid: не є дійсною URL-адресою
|
||||
doorkeeper/application:
|
||||
attributes:
|
||||
website:
|
||||
invalid: не є дійсною URL-адресою
|
||||
status:
|
||||
attributes:
|
||||
reblog:
|
||||
|
|
|
@ -21,6 +21,14 @@ vi:
|
|||
username:
|
||||
invalid: chỉ chấp nhận ký tự, số và dấu gạch dưới
|
||||
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:
|
||||
attributes:
|
||||
reblog:
|
||||
|
|
|
@ -21,6 +21,10 @@ zh-CN:
|
|||
username:
|
||||
invalid: 只能使用字母、数字和下划线
|
||||
reserved: 是保留关键字
|
||||
admin/webhook:
|
||||
attributes:
|
||||
url:
|
||||
invalid: 不是有效的 URL。
|
||||
status:
|
||||
attributes:
|
||||
reblog:
|
||||
|
|
|
@ -21,6 +21,14 @@ zh-TW:
|
|||
username:
|
||||
invalid: 只能有字母、數字及底線
|
||||
reserved: 是保留關鍵字
|
||||
admin/webhook:
|
||||
attributes:
|
||||
url:
|
||||
invalid: 不是有效的 URL
|
||||
doorkeeper/application:
|
||||
attributes:
|
||||
website:
|
||||
invalid: 不是有效的 URL
|
||||
status:
|
||||
attributes:
|
||||
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.
|
||||
get_apps: Probeer 'n mobiele toepassing
|
||||
hosted_on: Mastodon gehuisves op %{domain}
|
||||
tagline: Gedesentraliseerde sosiale netwerk
|
||||
admin:
|
||||
domain_blocks:
|
||||
existing_domain_block: Jy het alreeds strenger perke ingelê op %{name}.
|
||||
trends:
|
||||
only_allowed: Slegs toegelate
|
||||
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:
|
||||
strikes:
|
||||
approve_appeal: Aanvaar appêl
|
||||
|
|
|
@ -42,7 +42,6 @@ ar:
|
|||
two: منشورات
|
||||
zero: منشورات
|
||||
status_count_before: نشروا
|
||||
tagline: اتبع أصدقائك وصديقاتك واكتشف آخرين وأخريات
|
||||
terms: شروط الخدمة
|
||||
unavailable_content: محتوى غير متوفر
|
||||
unavailable_content_description:
|
||||
|
@ -842,7 +841,6 @@ ar:
|
|||
applications:
|
||||
created: تم إنشاء التطبيق بنجاح
|
||||
destroyed: تم حذف التطبيق بنجاح
|
||||
invalid_url: إن الرابط المقدم غير صالح
|
||||
regenerate_token: إعادة توليد رمز النفاذ
|
||||
token_regenerated: تم إعادة إنشاء الرمز الوصول بنجاح
|
||||
warning: كن حذرا مع هذه البيانات. لا تقم أبدا بمشاركتها مع الآخَرين!
|
||||
|
|
|
@ -24,7 +24,6 @@ ast:
|
|||
one: artículu
|
||||
other: artículos
|
||||
status_count_before: Que crearon
|
||||
tagline: Sigui a persones y conoz a más xente
|
||||
terms: Términos del serviciu
|
||||
unavailable_content_description:
|
||||
domain: Sirvidor
|
||||
|
@ -144,6 +143,8 @@ ast:
|
|||
site_title: Nome del sirvidor
|
||||
title: Axustes del sitiu
|
||||
title: Alministración
|
||||
webhooks:
|
||||
events: Eventos
|
||||
admin_mailer:
|
||||
new_pending_account:
|
||||
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
|
||||
toot_layout: Distribución de los barritos
|
||||
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!
|
||||
auth:
|
||||
change_password: Contraseña
|
||||
|
|
|
@ -29,7 +29,6 @@ bg:
|
|||
one: състояние
|
||||
other: състояния
|
||||
status_count_before: Написали
|
||||
tagline: Следвайте приятели и открийте нови
|
||||
terms: Условия за ползване
|
||||
unavailable_content: Модерирани сървъри
|
||||
unavailable_content_description:
|
||||
|
@ -178,8 +177,6 @@ bg:
|
|||
application_mailer:
|
||||
settings: 'Промяна на предпочитанията за e-mail: %{link}'
|
||||
view: 'Преглед:'
|
||||
applications:
|
||||
invalid_url: Предоставеният URL е невалиден
|
||||
auth:
|
||||
didnt_get_confirmation: Не получих инструкции за потвърждение
|
||||
forgot_password: Забравих си паролата
|
||||
|
|
|
@ -31,7 +31,6 @@ bn:
|
|||
one: অবস্থা
|
||||
other: স্থিতিগুলি
|
||||
status_count_before: কে লিখেছে
|
||||
tagline: পরিচিতজনদের সাথে যুক্ত হন এবং নতুনদের সাথে পরিচিত হন
|
||||
terms: ব্যবহারের শর্তাবলী
|
||||
unavailable_content: অনুপলব্ধ সামগ্রী
|
||||
unavailable_content_description:
|
||||
|
|
|
@ -38,7 +38,7 @@ ca:
|
|||
one: publicació
|
||||
other: publicacions
|
||||
status_count_before: Qui ha publicat
|
||||
tagline: Segueix els teus amics i descobreix-ne de nous
|
||||
tagline: Xarxa social descentralitzada
|
||||
terms: Condicions de servei
|
||||
unavailable_content: Servidors moderats
|
||||
unavailable_content_description:
|
||||
|
@ -852,6 +852,26 @@ ca:
|
|||
edit_preset: Edita l'avís predeterminat
|
||||
empty: Encara no has definit cap preavís.
|
||||
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:
|
||||
new_appeal:
|
||||
actions:
|
||||
|
@ -916,7 +936,6 @@ ca:
|
|||
applications:
|
||||
created: L'aplicació s'ha creat 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
|
||||
token_regenerated: L'identificador d'accés s'ha generat correctament
|
||||
warning: Aneu amb compte amb aquestes dades. No les compartiu mai amb ningú!
|
||||
|
|
|
@ -37,7 +37,6 @@ ckb:
|
|||
one: دۆخ
|
||||
other: پۆست
|
||||
status_count_before: لە لایەن یەکەوە
|
||||
tagline: دوای هاوڕێکان بکەوە و ئەوانەی نوێ بدۆزیەوە
|
||||
terms: مەرجەکانی خزمەتگوزاری
|
||||
unavailable_content: ڕاژەی چاودێریکراو
|
||||
unavailable_content_description:
|
||||
|
@ -721,7 +720,6 @@ ckb:
|
|||
applications:
|
||||
created: بەرنامە بە سەرکەوتوویی دروست کرا
|
||||
destroyed: بەرنامە بە سەرکەوتوویی سڕدراوەتەوە
|
||||
invalid_url: بەستەری دابینکراو نادروستە
|
||||
regenerate_token: دووبارە دروستکردنەوەی نیشانەی چوونە ژوورەوە
|
||||
token_regenerated: کۆدی دەستپێگەیشتن بە سەرکەوتوویی دروستکرا
|
||||
warning: زۆر ئاگاداربە لەم داتایە. هەرگیز لەگەڵ کەس دا هاوبەشی مەکە!
|
||||
|
|
|
@ -35,7 +35,6 @@ co:
|
|||
one: statutu
|
||||
other: statuti
|
||||
status_count_before: Chì anu pubblicatu
|
||||
tagline: Siguità amichi è scopre ancu di più altri
|
||||
terms: Cundizione di u serviziu
|
||||
unavailable_content: Cuntinutu micca dispunibule
|
||||
unavailable_content_description:
|
||||
|
@ -705,7 +704,6 @@ co:
|
|||
applications:
|
||||
created: Applicazione creata
|
||||
destroyed: Applicazione sguassata
|
||||
invalid_url: L’URL ch’è stata pruvista ùn hè valida
|
||||
regenerate_token: Creà un’altra fiscia d’accessu
|
||||
token_regenerated: A fiscia d’accessu hè stata rigenerata
|
||||
warning: Abbadate à quessi dati. Ùn i date à nisunu!
|
||||
|
|
|
@ -40,7 +40,7 @@ cs:
|
|||
one: příspěvek
|
||||
other: příspěvků
|
||||
status_count_before: Kteří napsali
|
||||
tagline: Sledujte své přátele a objevujte nové
|
||||
tagline: Decentralizovaná sociální síť
|
||||
terms: Podmínky používání
|
||||
unavailable_content: Moderované servery
|
||||
unavailable_content_description:
|
||||
|
@ -886,6 +886,28 @@ cs:
|
|||
edit_preset: Upravit předlohu pro varování
|
||||
empty: Zatím jste nedefinovali žádné předlohy 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:
|
||||
new_appeal:
|
||||
actions:
|
||||
|
@ -950,7 +972,6 @@ cs:
|
|||
applications:
|
||||
created: Aplikace úspěšně vytvořena
|
||||
destroyed: Aplikace úspěšně smazána
|
||||
invalid_url: Zadaná URL adresa je neplatná
|
||||
regenerate_token: Znovu vygenerovat přístupový token
|
||||
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!
|
||||
|
@ -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í.
|
||||
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í."
|
||||
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
|
||||
wrong_code: Zadaný kód je neplatný! Je čas na serveru i zařízení generujícím kód správný?
|
||||
pagination:
|
||||
|
|
|
@ -42,7 +42,6 @@ cy:
|
|||
two: statwsau
|
||||
zero: statwsau
|
||||
status_count_before: Ysgrifennwyd gan
|
||||
tagline: Dilyn ffrindiau a darganfod rhai newydd
|
||||
terms: Telerau gwasanaeth
|
||||
unavailable_content: Cynnwys nad yw ar gael
|
||||
unavailable_content_description:
|
||||
|
@ -587,7 +586,6 @@ cy:
|
|||
applications:
|
||||
created: Cais wedi ei greu'n llwyddiannus
|
||||
destroyed: Cais wedi ei ddileu'n llwyddiannus
|
||||
invalid_url: Mae'r URL a ddarparwyd yn annilys
|
||||
regenerate_token: Adfywio tocyn mynediad
|
||||
token_regenerated: Adfywiwyd y tocyn mynediad yn llwyddiannus
|
||||
warning: Byddwch yn ofalus a'r data hyn. Peidiwch a'i rannu byth!
|
||||
|
|
|
@ -38,7 +38,7 @@ da:
|
|||
one: indlæg
|
||||
other: indlæg
|
||||
status_count_before: Som har postet
|
||||
tagline: Følg venner og opdag nye
|
||||
tagline: Decentraliseret socialt netværk
|
||||
terms: Tjenestevilkår
|
||||
unavailable_content: Modererede servere
|
||||
unavailable_content_description:
|
||||
|
@ -852,6 +852,26 @@ da:
|
|||
edit_preset: Redigér advarselsforvalg
|
||||
empty: Ingen advarselsforvalg defineret endnu.
|
||||
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:
|
||||
new_appeal:
|
||||
actions:
|
||||
|
@ -916,7 +936,6 @@ da:
|
|||
applications:
|
||||
created: Applikation oprettet
|
||||
destroyed: Applikation slettet
|
||||
invalid_url: Den angivne URL er ugyldig
|
||||
regenerate_token: Regenerér adgangstoken
|
||||
token_regenerated: Adgangstoken regenereret
|
||||
warning: Vær meget påpasselig med disse data. Del dem aldrig med nogen!
|
||||
|
|
|
@ -38,7 +38,7 @@ de:
|
|||
one: Beitrag
|
||||
other: Beiträge
|
||||
status_count_before: mit
|
||||
tagline: Finde deine Freunde und entdecke neue
|
||||
tagline: Dezentrales soziales Netzwerk
|
||||
terms: Nutzungsbedingungen
|
||||
unavailable_content: Nicht verfügbarer Inhalt
|
||||
unavailable_content_description:
|
||||
|
@ -428,6 +428,7 @@ de:
|
|||
destroyed_msg: Die Domain-Blockade wurde rückgängig gemacht
|
||||
domain: Domain
|
||||
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.
|
||||
new:
|
||||
create: Blockade einrichten
|
||||
|
@ -851,6 +852,26 @@ de:
|
|||
edit_preset: Warnungsvorlage bearbeiten
|
||||
empty: Du hast noch keine Warnungsvorlagen hinzugefügt.
|
||||
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:
|
||||
new_appeal:
|
||||
actions:
|
||||
|
@ -915,7 +936,6 @@ de:
|
|||
applications:
|
||||
created: Anwendung erfolgreich erstellt
|
||||
destroyed: Anwendung erfolgreich gelöscht
|
||||
invalid_url: Die angegebene URL ist ungültig
|
||||
regenerate_token: Zugangs-Token neu erstellen
|
||||
token_regenerated: Zugangs-Token neu erstellt
|
||||
warning: Sei mit diesen Daten sehr vorsichtig. Teile sie mit niemandem!
|
||||
|
|
|
@ -1 +1,164 @@
|
|||
---
|
||||
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:
|
||||
title: Ocorreu um erro
|
||||
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
|
||||
show:
|
||||
title: Copie este código de autorização e cole no aplicativo.
|
||||
|
@ -71,6 +72,8 @@ pt-BR:
|
|||
revoke: Você tem certeza?
|
||||
index:
|
||||
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
|
||||
scopes: Permissões
|
||||
superapp: Interno
|
||||
|
@ -110,16 +113,23 @@ pt-BR:
|
|||
destroy:
|
||||
notice: Aplicativo revogado.
|
||||
grouped_scopes:
|
||||
access:
|
||||
read: Acesso somente para leitura
|
||||
read/write: Acesso de leitura e escrita
|
||||
write: Acesso somente para escrita
|
||||
title:
|
||||
accounts: Contas
|
||||
admin/accounts: Administração de contas
|
||||
admin/all: Todas as funções administrativas
|
||||
admin/reports: Administração de relatórios
|
||||
all: Tudo
|
||||
blocks: Blocos
|
||||
blocks: Bloqueios
|
||||
bookmarks: Salvos
|
||||
conversations: Conversas
|
||||
crypto: Criptografia de ponta a ponta
|
||||
favourites: Favoritos
|
||||
filters: Filtros
|
||||
follow: Relações
|
||||
follow: Relacionamentos
|
||||
lists: Listas
|
||||
media: Mídias anexadas
|
||||
notifications: Notificações
|
||||
|
@ -161,6 +171,7 @@ pt-BR:
|
|||
write:accounts: alterar seu perfil
|
||||
write:blocks: bloquear contas e domínios
|
||||
write:bookmarks: salvar toots
|
||||
write:conversations: silenciar e excluir conversas
|
||||
write:favourites: favoritar toots
|
||||
write:filters: criar filtros
|
||||
write:follows: seguir pessoas
|
||||
|
|
|
@ -36,7 +36,7 @@ el:
|
|||
one: δημοσίευση
|
||||
other: δημοσιεύσεις
|
||||
status_count_before: Που έγραψαν
|
||||
tagline: Ακολούθησε τους γνωστούς σου και ανακάλυψε νέους ανθρώπους
|
||||
tagline: Αποκεντρωμένο κοινωνικό δίκτυο
|
||||
terms: Όροι χρήσης
|
||||
unavailable_content: Μη διαθέσιμο
|
||||
unavailable_content_description:
|
||||
|
@ -618,6 +618,12 @@ el:
|
|||
edit_preset: Ενημέρωση προκαθορισμένης προειδοποίησης
|
||||
empty: Δεν έχετε ακόμη ορίσει κάποια προεπιλογή προειδοποίησης.
|
||||
title: Διαχείριση προκαθορισμένων προειδοποιήσεων
|
||||
webhooks:
|
||||
delete: Διαγραφή
|
||||
disable: Απενεργοποίηση
|
||||
disabled: Απενεργοποιημένα
|
||||
enable: Ενεργοποίηση
|
||||
status: Κατάσταση
|
||||
admin_mailer:
|
||||
new_appeal:
|
||||
actions:
|
||||
|
@ -658,7 +664,6 @@ el:
|
|||
applications:
|
||||
created: Η εφαρμογή δημιουργήθηκε επιτυχώς
|
||||
destroyed: Η εφαρμογή διαγράφηκε επιτυχώς
|
||||
invalid_url: Το URL δεν είναι έγκυρο
|
||||
regenerate_token: Αναδημιουργία του διακριτικού πρόσβασης (access token)
|
||||
token_regenerated: Το διακριτικό πρόσβασης (access token) αναδημιουργήθηκε επιτυχώς
|
||||
warning: Μεγάλη προσοχή με αυτά τα στοιχεία. Μην τα μοιραστείς ποτέ με κανέναν!
|
||||
|
|
|
@ -36,9 +36,8 @@ eo:
|
|||
one: mesaĝo
|
||||
other: mesaĝoj
|
||||
status_count_before: Kie skribiĝis
|
||||
tagline: Sekvi amikojn kaj trovi iujn novajn
|
||||
terms: Uzkondiĉoj
|
||||
unavailable_content: Kontrolitaj serviloj
|
||||
unavailable_content: Moderigitaj serviloj
|
||||
unavailable_content_description:
|
||||
domain: Servilo
|
||||
reason: 'Kialo:'
|
||||
|
@ -86,8 +85,8 @@ eo:
|
|||
title: Plenumi kontrolan agon al %{acct}
|
||||
account_moderation_notes:
|
||||
create: Lasi noton
|
||||
created_msg: Kontrola noto sukcese kreita!
|
||||
destroyed_msg: Kontrola noto sukcese detruita!
|
||||
created_msg: Noto de mederigado sukcese kreita!
|
||||
destroyed_msg: Noto de moderigado sukcese detruita!
|
||||
accounts:
|
||||
add_email_domain_block: Bloki retadresan domajnon
|
||||
approve: Aprobi
|
||||
|
@ -140,8 +139,8 @@ eo:
|
|||
all: Ĉio
|
||||
pending: Pritraktata
|
||||
suspended: Haltigita
|
||||
title: Kontrolado
|
||||
moderation_notes: Kontrolaj notoj
|
||||
title: Moderigado
|
||||
moderation_notes: Notoj de moderigado
|
||||
most_recent_activity: Lasta ago
|
||||
most_recent_ip: Lasta IP
|
||||
no_account_selected: Neniu konto estis ŝanĝita ĉar neniu estis selektita
|
||||
|
@ -167,7 +166,7 @@ eo:
|
|||
role: Permesoj
|
||||
roles:
|
||||
admin: Administranto
|
||||
moderator: Kontrolanto
|
||||
moderator: Moderigisto
|
||||
staff: Teamo
|
||||
user: Uzanto
|
||||
search: Serĉi
|
||||
|
@ -416,7 +415,7 @@ eo:
|
|||
moderation:
|
||||
all: Ĉiuj
|
||||
limited: Limigita
|
||||
title: Kontrolo
|
||||
title: Moderigado
|
||||
private_comment: Privata komento
|
||||
public_comment: Publika komento
|
||||
purge: Purigu
|
||||
|
@ -697,7 +696,6 @@ eo:
|
|||
applications:
|
||||
created: Aplikaĵo sukcese kreita
|
||||
destroyed: Aplikaĵo sukcese forigita
|
||||
invalid_url: La URL donita ne estas valida
|
||||
regenerate_token: Rekrei aliran ĵetonon
|
||||
token_regenerated: Alira ĵetono sukcese rekreita
|
||||
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>.
|
||||
other_data: Neniu alia datumo estos movita aŭtomate
|
||||
moderation:
|
||||
title: Kontrolado
|
||||
title: Moderigado
|
||||
notification_mailer:
|
||||
digest:
|
||||
action: Vidi ĉiujn sciigojn
|
||||
|
|
|
@ -38,7 +38,7 @@ es-AR:
|
|||
one: mensaje
|
||||
other: mensajes
|
||||
status_count_before: Que enviaron
|
||||
tagline: Seguí a tus amigos y descubrí nueva gente
|
||||
tagline: Red social descentralizada
|
||||
terms: Términos del servicio
|
||||
unavailable_content: Servidores moderados
|
||||
unavailable_content_description:
|
||||
|
@ -852,6 +852,26 @@ es-AR:
|
|||
edit_preset: Editar preajuste de advertencia
|
||||
empty: Aún no ha definido ningún preajuste 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:
|
||||
new_appeal:
|
||||
actions:
|
||||
|
@ -916,7 +936,6 @@ es-AR:
|
|||
applications:
|
||||
created: Aplicación creada exitosamente
|
||||
destroyed: Aplicación eliminada exitosamente
|
||||
invalid_url: La dirección web ofrecida no es válida
|
||||
regenerate_token: Regenerar clave de acceso
|
||||
token_regenerated: Clave de acceso regenerada exitosamente
|
||||
warning: Ojo con estos datos. ¡Nunca los compartas con nadie!
|
||||
|
|
|
@ -38,7 +38,7 @@ es-MX:
|
|||
one: estado
|
||||
other: estados
|
||||
status_count_before: Qué han escrito
|
||||
tagline: Seguir a amigos existentes y descubre nuevos
|
||||
tagline: Red social descentralizada
|
||||
terms: Condiciones de servicio
|
||||
unavailable_content: Contenido no disponible
|
||||
unavailable_content_description:
|
||||
|
@ -428,6 +428,7 @@ es-MX:
|
|||
destroyed_msg: El bloque de dominio se deshizo
|
||||
domain: Dominio
|
||||
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>.
|
||||
new:
|
||||
create: Crear bloque
|
||||
|
@ -915,7 +916,6 @@ es-MX:
|
|||
applications:
|
||||
created: Aplicación creada exitosamente
|
||||
destroyed: Apicación eliminada exitosamente
|
||||
invalid_url: La URL proporcionada es incorrecta
|
||||
regenerate_token: Regenerar token de acceso
|
||||
token_regenerated: Token de acceso regenerado exitosamente
|
||||
warning: Ten mucho cuidado con estos datos. ¡No los compartas con nadie!
|
||||
|
|
|
@ -38,7 +38,7 @@ es:
|
|||
one: estado
|
||||
other: estados
|
||||
status_count_before: Qué han escrito
|
||||
tagline: Seguir a amigos existentes y descubre nuevos
|
||||
tagline: Red social descentralizada
|
||||
terms: Condiciones de servicio
|
||||
unavailable_content: Contenido no disponible
|
||||
unavailable_content_description:
|
||||
|
@ -852,6 +852,26 @@ es:
|
|||
edit_preset: Editar aviso predeterminado
|
||||
empty: Aún no has definido ningún preajuste de advertencia.
|
||||
title: Editar configuración predeterminada de avisos
|
||||
webhooks:
|
||||
add_new: Añadir endpoint
|
||||
delete: Eliminar
|
||||
description_html: Un <strong>webhook</strong> permite a Mastodon enviar <strong>notificaciones en tiempo real</strong> sobre los eventos elegidos a tu propia aplicación, para que tu aplicación pueda <strong>lanzar reacciones automáticamente</strong>.
|
||||
disable: Deshabilitar
|
||||
disabled: Deshabilitado
|
||||
edit: Editar endpoint
|
||||
empty: Aún no tienes ningún endpoint de webhook configurado.
|
||||
enable: Habilitar
|
||||
enabled: Activo
|
||||
enabled_events:
|
||||
one: 1 evento habilitado
|
||||
other: "%{count} eventos habilitados"
|
||||
events: Eventos
|
||||
new: Nuevo webhook
|
||||
rotate_secret: Rotar secreto
|
||||
secret: Firmando secreto
|
||||
status: Estado
|
||||
title: Webhooks
|
||||
webhook: Webhook
|
||||
admin_mailer:
|
||||
new_appeal:
|
||||
actions:
|
||||
|
@ -916,7 +936,6 @@ es:
|
|||
applications:
|
||||
created: Aplicación creada exitosamente
|
||||
destroyed: Apicación eliminada exitosamente
|
||||
invalid_url: La URL proporcionada es incorrecta
|
||||
regenerate_token: Regenerar token de acceso
|
||||
token_regenerated: Token de acceso regenerado exitosamente
|
||||
warning: Ten mucho cuidado con estos datos. ¡No los compartas con nadie!
|
||||
|
|
|
@ -35,7 +35,6 @@ et:
|
|||
one: postitust
|
||||
other: staatuseid
|
||||
status_count_before: Kes on avaldanud
|
||||
tagline: Jälgi sõpru ja leia uusi
|
||||
terms: Kasutustingimused
|
||||
unavailable_content: Sisu pole saadaval
|
||||
unavailable_content_description:
|
||||
|
@ -540,7 +539,6 @@ et:
|
|||
applications:
|
||||
created: Rakenduse loomine õnnestus
|
||||
destroyed: Rakenduse kustutamine õnnestus
|
||||
invalid_url: Antud URL on vale
|
||||
regenerate_token: Loo uus access token
|
||||
token_regenerated: Access tokeni loomine õnnestus
|
||||
warning: Olge nende andmetega ettevaatlikud. Ärge jagage neid kellegagi!
|
||||
|
|
|
@ -36,7 +36,6 @@ eu:
|
|||
one: bidalketa
|
||||
other: bidalketa
|
||||
status_count_before: Hauek
|
||||
tagline: Jarraitu lagunak eta egin berriak
|
||||
terms: Erabilera baldintzak
|
||||
unavailable_content: Eduki eskuraezina
|
||||
unavailable_content_description:
|
||||
|
@ -855,7 +854,6 @@ eu:
|
|||
applications:
|
||||
created: Aplikazioa ongi sortu da
|
||||
destroyed: Aplikazioa ongi ezabatu da
|
||||
invalid_url: Emandako URL-a baliogabea da
|
||||
regenerate_token: Birsortu sarbide token-a
|
||||
token_regenerated: Sarbide token-a ongi birsortu da
|
||||
warning: Kontuz datu hauekin, ez partekatu inoiz inorekin!
|
||||
|
|
|
@ -38,7 +38,6 @@ fa:
|
|||
one: چیز نوشتهاند
|
||||
other: چیز نوشتهاند
|
||||
status_count_before: که در کنار هم
|
||||
tagline: با دوستان خود در ارتباط باشید و دوستان تازه پیدا کنید
|
||||
terms: شرایط خدمت
|
||||
unavailable_content: محتوای ناموجود
|
||||
unavailable_content_description:
|
||||
|
@ -813,7 +812,6 @@ fa:
|
|||
applications:
|
||||
created: برنامه با موفقیت ساخته شد
|
||||
destroyed: برنامه با موفقیت پاک شد
|
||||
invalid_url: نشانی واردشده معتبر نیست
|
||||
regenerate_token: دوبارهسازی کد دسترسی
|
||||
token_regenerated: کد دسترسی با موفقیت ساخته شد
|
||||
warning: خیلی مواظب این اطلاعات باشید و آن را به هیچ کس ندهید!
|
||||
|
|
|
@ -38,7 +38,6 @@ fi:
|
|||
one: julkaisun
|
||||
other: julkaisua
|
||||
status_count_before: Julkaistu
|
||||
tagline: Seuraa ja löydä uusia kavereita
|
||||
terms: Käyttöehdot
|
||||
unavailable_content: Moderoidut palvelimet
|
||||
unavailable_content_description:
|
||||
|
@ -860,7 +859,6 @@ fi:
|
|||
applications:
|
||||
created: Sovelluksen luonti onnistui
|
||||
destroyed: Sovelluksen poisto onnistui
|
||||
invalid_url: Annettu URL on virheellinen
|
||||
regenerate_token: Luo pääsytunnus uudelleen
|
||||
token_regenerated: Pääsytunnuksen uudelleenluonti onnistui
|
||||
warning: Säilytä tietoa hyvin. Älä milloinkaan jaa sitä muille!
|
||||
|
|
|
@ -37,8 +37,8 @@ fr:
|
|||
status_count_after:
|
||||
one: message
|
||||
other: messages
|
||||
status_count_before: Qui a publié
|
||||
tagline: Suivez vos ami·e·s et découvrez-en de nouveaux·elles
|
||||
status_count_before: Ayant publié
|
||||
tagline: Réseau social décentralisé
|
||||
terms: Conditions d’utilisation
|
||||
unavailable_content: Serveurs modérés
|
||||
unavailable_content_description:
|
||||
|
@ -428,6 +428,7 @@ fr:
|
|||
destroyed_msg: Le blocage de domaine a été désactivé
|
||||
domain: Domaine
|
||||
edit: Modifier le blocage de domaine
|
||||
existing_domain_block: Vous avez déjà imposé des limites plus strictes à %{name}.
|
||||
existing_domain_block_html: Vous avez déjà imposé des limites plus strictes à %{name}, vous devez d’abord le/la <a href="%{unblock_url}">débloquer</a>.
|
||||
new:
|
||||
create: Créer le blocage
|
||||
|
@ -851,6 +852,25 @@ fr:
|
|||
edit_preset: Éditer les avertissements prédéfinis
|
||||
empty: Vous n'avez pas encore créé de paramètres prédéfinis pour les avertissements.
|
||||
title: Gérer les avertissements prédéfinis
|
||||
webhooks:
|
||||
add_new: Ajouter un point de terminaison
|
||||
delete: Supprimer
|
||||
description_html: Un <strong>point d'ancrage web</strong> permet à Mastodon d'envoyer des <strong>notifications en temps réel</strong> concernant des événements sélectionnés vers votre propre application, afin que celle-ci puisse <strong>déclencher automatiquement des réactions</strong>.
|
||||
disable: Désactiver
|
||||
disabled: Désactivé
|
||||
edit: Modifier le point de terminaison
|
||||
empty: Pour l'instant, vous n'avez configuré aucun lien d'ancrage web pour point de terminaison.
|
||||
enable: Activer
|
||||
enabled: Actif
|
||||
enabled_events:
|
||||
one: 1 événement activé
|
||||
other: "%{count} événements activés"
|
||||
events: Événements
|
||||
new: Nouveau point d’ancrage web
|
||||
rotate_secret: Effectuer une rotation du secret
|
||||
status: État
|
||||
title: Points d’ancrage web
|
||||
webhook: Point d’ancrage web
|
||||
admin_mailer:
|
||||
new_appeal:
|
||||
actions:
|
||||
|
@ -915,7 +935,6 @@ fr:
|
|||
applications:
|
||||
created: Application créée avec succès
|
||||
destroyed: Application supprimée avec succès
|
||||
invalid_url: L’URL fournie est invalide
|
||||
regenerate_token: Régénérer le jeton d’accès
|
||||
token_regenerated: Jeton d’accès régénéré avec succès
|
||||
warning: Soyez prudent·e avec ces données. Ne les partagez pas !
|
||||
|
@ -1519,6 +1538,9 @@ fr:
|
|||
pinned: Message épinglé
|
||||
reblogged: a partagé
|
||||
sensitive_content: Contenu sensible
|
||||
strikes:
|
||||
errors:
|
||||
too_late: Il est trop tard pour faire appel à cette sanction
|
||||
tags:
|
||||
does_not_match_previous_name: ne correspond pas au nom précédent
|
||||
terms:
|
||||
|
|
|
@ -40,7 +40,6 @@ gd:
|
|||
other: post
|
||||
two: phost
|
||||
status_count_before: A dh’fhoillsich
|
||||
tagline: Lean air caraidean ’s rùraich feadhainn ùra
|
||||
terms: Teirmichean na seirbheise
|
||||
unavailable_content: Frithealaichean fo mhaorsainneachd
|
||||
unavailable_content_description:
|
||||
|
@ -446,6 +445,7 @@ gd:
|
|||
destroyed_msg: Chan eil an àrainn ’ga bacadh tuilleadh
|
||||
domain: Àrainn
|
||||
edit: Deasaich bacadh na h-àrainne
|
||||
existing_domain_block: Chuir thu cuingeachaidhean nas teinne air %{name} mu thràth.
|
||||
existing_domain_block_html: Chuir thu cuingeachadh nas teinne air %{name} mu thràth, feumaidh tu a <a href="%{unblock_url}">dì-bhacadh</a> an toiseach.
|
||||
new:
|
||||
create: Cruthaich bacadh
|
||||
|
@ -949,7 +949,6 @@ gd:
|
|||
applications:
|
||||
created: Chaidh an t-iarrtas a chruthachadh
|
||||
destroyed: Chaidh an t-iarrtas a sguabadh às
|
||||
invalid_url: Tha an t-URL a thugadh seachad mì-dhligheach
|
||||
regenerate_token: Ath-ghin an tòcan inntrigidh
|
||||
token_regenerated: Chaidh an tòcan inntrigidh ath-ghintinn
|
||||
warning: Bi glè chùramach leis an dàta seo. Na co-roinn le duine sam bith e!
|
||||
|
|
|
@ -11,8 +11,8 @@ gl:
|
|||
apps: Aplicacións móbiles
|
||||
apps_platforms: Emprega Mastodon dende iOS, Android e outras plataformas
|
||||
browse_directory: Mira o directorio e filtra por intereses
|
||||
browse_local_posts: Navega polas publicacións públicas deste servidor en tempo real
|
||||
browse_public_posts: Navega polas publicacións públicas de Mastodon en tempo real
|
||||
browse_local_posts: Unha ollada aos últimos comentarios públicos neste servidor
|
||||
browse_public_posts: Cronoloxía en directo cos comentarios públicos en Mastodon
|
||||
contact: Contacto
|
||||
contact_missing: Non establecido
|
||||
contact_unavailable: Non dispoñíbel
|
||||
|
@ -31,14 +31,14 @@ gl:
|
|||
privacy_policy: Política de privacidade
|
||||
rules: Regras do servidor
|
||||
rules_html: 'Aquí tes un resumo das regras que debes seguir se queres ter unha conta neste servidor de Mastodon:'
|
||||
see_whats_happening: Ver o que está a acontecer
|
||||
see_whats_happening: Mira o que acontece
|
||||
server_stats: 'Estatísticas do servidor:'
|
||||
source_code: Código fonte
|
||||
status_count_after:
|
||||
one: publicación
|
||||
other: publicacións
|
||||
status_count_before: Que publicaron
|
||||
tagline: Segue ás túas amizades e coñece novas
|
||||
tagline: Rede social descentralizada
|
||||
terms: Termos do servizo
|
||||
unavailable_content: Contido non dispoñíbel
|
||||
unavailable_content_description:
|
||||
|
@ -852,6 +852,26 @@ gl:
|
|||
edit_preset: Editar aviso preestablecido
|
||||
empty: Non definiches os avisos prestablecidos.
|
||||
title: Xestionar avisos preestablecidos
|
||||
webhooks:
|
||||
add_new: Engadir punto de extremo
|
||||
delete: Eliminar
|
||||
description_html: Un <strong>webhook</strong> permítelle a Mastodon enviar <strong>notificacións en tempo real</strong> á túa aplicación acerca dos eventos elexidos e así, a aplicación <strong>activará automáticamente</strong> a súa programación.
|
||||
disable: Desactivar
|
||||
disabled: Desactivado
|
||||
edit: Editar extremo
|
||||
empty: Non tes configurado ningún punto extremo para o webhook.
|
||||
enable: Activar
|
||||
enabled: Activo
|
||||
enabled_events:
|
||||
one: 1 evento activado
|
||||
other: "%{count} eventos activados"
|
||||
events: Eventos
|
||||
new: Novo webhook
|
||||
rotate_secret: Rotar segredo
|
||||
secret: Segredo de acceso
|
||||
status: Estado
|
||||
title: Webhooks
|
||||
webhook: Webhook
|
||||
admin_mailer:
|
||||
new_appeal:
|
||||
actions:
|
||||
|
@ -916,7 +936,6 @@ gl:
|
|||
applications:
|
||||
created: Creouse con éxito este aplicativo
|
||||
destroyed: Eliminouse con éxito o aplicativo
|
||||
invalid_url: A URL proporcionada non é válida
|
||||
regenerate_token: Votar a xenerar o testemuño de acceso
|
||||
token_regenerated: Rexenerouse con éxito o testemuño de acceso
|
||||
warning: Ten moito tino con estos datos. Non os compartas nunca con ninguén!
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
---
|
||||
he:
|
||||
about:
|
||||
about_hashtag_html: אלו סטטוסים פומביים המתוייגים בתור<strong>#%{hashtag}</strong>. ניתן להגיב, להדהד או לחבב אותם אם יש לך חשבון בכל מקום בפדרציה.
|
||||
about_hashtag_html: אלו הודעות פומביות המתוייגות בתור<strong>#%{hashtag}</strong>. ניתן להגיב, להדהד או לחבב אותם אם יש לך חשבון בכל מקום שהוא בפדרציה.
|
||||
about_mastodon_html: מסטודון היא רשת חברתית <em>חופשית, מבוססת תוכנה חופשית ("קוד פתוח")</em>. כאלטרנטיבה <em>בלתי ריכוזית</em> לפלטפרומות המסחריות, מסטודון מאפשרת להמנע מהסיכונים הנלווים להפקדת התקשורת שלך בידי חברה יחידה. שמת את מבטחך בשרת אחד — לא משנה במי בחרת, תמיד אפשר לדבר עם כל שאר המשתמשים. לכל מי שרוצה יש את האפשרות להקים שרת מסטודון עצמאי, ולהשתתף ב<em>רשת החברתית</em> באופן חלק.
|
||||
about_this: אודות שרת זה
|
||||
active_count_after: פעיל
|
||||
|
@ -40,7 +40,6 @@ he:
|
|||
other: חצרוצים
|
||||
two: חצרוצים
|
||||
status_count_before: שכתבו
|
||||
tagline: מעקב אחרי חברים וגילוי חדשים
|
||||
terms: תנאי שימוש
|
||||
unavailable_content: שרתים מוגבלים
|
||||
unavailable_content_description:
|
||||
|
@ -885,6 +884,14 @@ he:
|
|||
edit_preset: ערוך/י טקסט מוכן מראש לאזהרה
|
||||
empty: לא הגדרת עדיין שום טקסט מוכן מראש לאזהרה.
|
||||
title: ניהול טקסטים מוכנים מראש לאזהרות
|
||||
webhooks:
|
||||
delete: מחיקה
|
||||
disable: כיבוי
|
||||
disabled: כבוי
|
||||
enable: אפשר
|
||||
enabled: פעילים
|
||||
events: אירועים
|
||||
status: סטטוס
|
||||
admin_mailer:
|
||||
new_appeal:
|
||||
actions:
|
||||
|
@ -949,7 +956,6 @@ he:
|
|||
applications:
|
||||
created: ישום נוצר בהצלחה
|
||||
destroyed: ישום נמחק בהצלחה
|
||||
invalid_url: כתובת הקישורית אינה חוקית
|
||||
regenerate_token: יצירת אסימון גישה מחדש
|
||||
token_regenerated: אסימון גישה יוצר מחדש בהצלחה
|
||||
warning: זהירות רבה נדרשת עם מידע זה. אין לחלוק אותו אף פעם עם אף אחד!
|
||||
|
|
|
@ -79,8 +79,6 @@ hr:
|
|||
application_mailer:
|
||||
settings: 'Promijeni postavke e-pošte: %{link}'
|
||||
view: 'Vidi:'
|
||||
applications:
|
||||
invalid_url: Unesena poveznica nije valjana
|
||||
auth:
|
||||
didnt_get_confirmation: Niste primili upute za potvrđivanje?
|
||||
forgot_password: Zaboravljena lozinka?
|
||||
|
|
|
@ -38,7 +38,7 @@ hu:
|
|||
one: bejegyzést írt
|
||||
other: bejegyzést írt
|
||||
status_count_before: Eddig
|
||||
tagline: Kövess barátokat és találj újakat
|
||||
tagline: Decentralizált szociális hálózat
|
||||
terms: Felhasználási feltételek
|
||||
unavailable_content: Kimoderált szerverek
|
||||
unavailable_content_description:
|
||||
|
@ -854,6 +854,26 @@ hu:
|
|||
edit_preset: Figyelmeztetés szerkesztése
|
||||
empty: Nem definiáltál még egyetlen figyelmeztetést sem.
|
||||
title: Figyelmeztetések
|
||||
webhooks:
|
||||
add_new: Végpont hozzáadása
|
||||
delete: Törlés
|
||||
description_html: Egy <strong>webhook</strong> lehetővé teszi a Mastodon számára, hogy <strong>valósidejű értesítéseket</strong> küldjön le a kiválasztott eseményekről a te alkalmazásodnak, így az alkalmazásod <strong>automatikusan reagálhat</strong> ezekre.
|
||||
disable: Letiltás
|
||||
disabled: Letiltva
|
||||
edit: Végpont szerkesztése
|
||||
empty: Még nincs beállított webhook végpontod.
|
||||
enable: Engedélyezés
|
||||
enabled: Aktív
|
||||
enabled_events:
|
||||
one: 1 engedélyezett esemény
|
||||
other: "%{count} engedélyezett esemény"
|
||||
events: Események
|
||||
new: Új webhook
|
||||
rotate_secret: Titok forgatása
|
||||
secret: Titok aláírása
|
||||
status: Állapot
|
||||
title: Webhookok
|
||||
webhook: Webhook
|
||||
admin_mailer:
|
||||
new_appeal:
|
||||
actions:
|
||||
|
@ -918,7 +938,6 @@ hu:
|
|||
applications:
|
||||
created: Alkalmazás sikeresen létrehozva
|
||||
destroyed: Alkalmazás sikeresen eltávolítva
|
||||
invalid_url: A megadott URL nem megfelelő
|
||||
regenerate_token: Hozzáférési kulcs újragenerálása
|
||||
token_regenerated: Hozzáférési kulcs sikeresen újragenerálva
|
||||
warning: Ez érzékeny adat. Soha ne oszd meg másokkal!
|
||||
|
|
|
@ -33,7 +33,6 @@ hy:
|
|||
one: գրառում
|
||||
other: ստատուս
|
||||
status_count_before: Որոնք արել են՝
|
||||
tagline: Հետեւիր ընկերներիդ եւ գտիր նորերին
|
||||
terms: Ծառայութեան պայմանները
|
||||
unavailable_content: Մոդերացուող սպասարկիչներ
|
||||
unavailable_content_description:
|
||||
|
@ -551,7 +550,6 @@ hy:
|
|||
view_profile: Նայել անձնական էջը
|
||||
view_status: Նայել գրառումը
|
||||
applications:
|
||||
invalid_url: Տրամադրուած URL անվաւեր է
|
||||
regenerate_token: Ստեղծել նոր հասանելիութեան կտրոն
|
||||
your_token: Քո մուտքի բանալին
|
||||
auth:
|
||||
|
|
|
@ -35,7 +35,7 @@ id:
|
|||
status_count_after:
|
||||
other: status
|
||||
status_count_before: Yang telah menulis
|
||||
tagline: Ikuti teman dan temukan yang baru
|
||||
tagline: Jejaring sosial terdesentralisasi
|
||||
terms: Kebijakan layanan
|
||||
unavailable_content: Konten tak tersedia
|
||||
unavailable_content_description:
|
||||
|
@ -833,6 +833,21 @@ id:
|
|||
edit_preset: Sunting preset peringatan
|
||||
empty: Anda belum mendefinisikan peringatan apapun.
|
||||
title: Kelola preset peringatan
|
||||
webhooks:
|
||||
add_new: Tambah titik akhir
|
||||
delete: Hapus
|
||||
disable: Matikan
|
||||
disabled: Nonaktif
|
||||
edit: Edit titik akhir
|
||||
enable: Aktifkan
|
||||
enabled: Aktif
|
||||
enabled_events:
|
||||
other: "%{count} acara aktif"
|
||||
events: Acara
|
||||
new: Webhook baru
|
||||
status: Status
|
||||
title: Webhook
|
||||
webhook: Webhook
|
||||
admin_mailer:
|
||||
new_appeal:
|
||||
actions:
|
||||
|
@ -897,7 +912,6 @@ id:
|
|||
applications:
|
||||
created: Aplikasi berhasil dibuat
|
||||
destroyed: Aplikasi berhasil dihapus
|
||||
invalid_url: URL tidak sesuai
|
||||
regenerate_token: Buat ulang token akses
|
||||
token_regenerated: Token akses berhasil dibuat ulang
|
||||
warning: Hati-hati dengan data ini. Jangan bagikan kepada siapapun!
|
||||
|
|
|
@ -38,7 +38,7 @@ io:
|
|||
one: posto
|
||||
other: posti
|
||||
status_count_before: Qua publikigis
|
||||
tagline: Sequez amiki e deskovrez nova personi
|
||||
tagline: Necentralizita sociala reto
|
||||
terms: Serveskondicioni
|
||||
unavailable_content: Jerata servili
|
||||
unavailable_content_description:
|
||||
|
@ -852,6 +852,26 @@ io:
|
|||
edit_preset: Modifikez avertfixito
|
||||
empty: Vu ne fixis irga avertfixito til nun.
|
||||
title: Jerez avertfixiti
|
||||
webhooks:
|
||||
add_new: Insertez finpunto
|
||||
delete: Efacez
|
||||
description_html: "<strong>Rethoko</strong> povigas Mastodon sendar <strong>samtempoavizi</strong> pri selektita eventi a vua sua apliko, por ke vua apliko povas <strong>automate kauzigar reakti</strong>."
|
||||
disable: Desaktivigez
|
||||
disabled: Desaktivigita
|
||||
edit: Modifikez finpunto
|
||||
empty: Vu ne havas irga ajustita finpunti ankore.
|
||||
enable: Aktivigez
|
||||
enabled: Aktiva
|
||||
enabled_events:
|
||||
one: 1 aktivigita evento
|
||||
other: "%{count} aktivigita eventi"
|
||||
events: Eventi
|
||||
new: Nova rethoko
|
||||
rotate_secret: Rotacigez sekreto
|
||||
secret: Signosekreto
|
||||
status: Stando
|
||||
title: Rethoki
|
||||
webhook: Rethok
|
||||
admin_mailer:
|
||||
new_appeal:
|
||||
actions:
|
||||
|
@ -916,7 +936,6 @@ io:
|
|||
applications:
|
||||
created: Apliko sucesoze kreesas
|
||||
destroyed: Apliko sucesoze efacesas
|
||||
invalid_url: La URL donita ne esas valida
|
||||
regenerate_token: Rifacez acesficho
|
||||
token_regenerated: Acesficho sucesoze riganesas
|
||||
warning: Sorgemez per ca informi. Ne partigez kun irgu!
|
||||
|
|