Compare commits

..

No commits in common. "2024.3" and "main" have entirely different histories.
2024.3 ... main

1156 changed files with 36445 additions and 69822 deletions

View File

@ -1,14 +1,14 @@
name: 🐞 Bug
description: File a bug
description: File a bug/issue
title: "[BUG] <title>"
labels: [Bug, Needs Triage]
body:
- type: checkboxes
attributes:
label: Is there an existing issue for this?
description: Please [search the issues](https://github.com/mastodon/mastodon-ios/issues) to see if an issue already exists for the bug you encountered. Please check also the [closed issues](https://github.com/mastodon/mastodon-ios/issues?q=is%3Aissue+is%3Aclosed).
description: Please search to see if an issue already exists for the bug you encountered.
options:
- label: I have searched the issues (both open and closed)
- label: I have searched the existing issues
required: true
- type: textarea
attributes:
@ -41,7 +41,7 @@ body:
examples:
- **Device**: iPhone X
- **OS**: iOS 15.3
- **Version**: `2023.15`
- **Version**: v1.3.0
- **Build**: 103
value: |
- Device:
@ -59,4 +59,4 @@ body:
Tip: You can attach images or video or log files by clicking this area to highlight it and then dragging files in.
validations:
required: false
required: false

View File

@ -1,48 +0,0 @@
---
name: 🛠️ Feature Request
description: Suggest an idea to help us improve
title: "[Feature]: "
labels:
- "feature_request"
body:
- type: markdown
attributes:
value: |
**Thanks :heart: for taking the time to fill out this feature request report!**
We kindly ask that you search to see if an issue [already exists](https://github.com/mastodon/mastodon-ios/issues?q=is%3Aissue+sort%3Acreated-desc+) for your feature.
We are also happy to accept contributions from our users. For more details see [here](https://github.com/mastodon/mastodon-ios/blob/develop/Documentation/CONTRIBUTING.md).
- type: textarea
attributes:
label: Description
description: |
A clear and concise description of the feature you're interested in.
validations:
required: true
- type: textarea
attributes:
label: Suggested Solution
description: |
Describe the solution you'd like. A clear and concise description of what you want to happen.
validations:
required: true
- type: textarea
attributes:
label: Alternatives
description: |
Describe alternatives you've considered.
A clear and concise description of any alternative solutions or features you've considered.
validations:
required: false
- type: textarea
attributes:
label: Additional Context
description: |
Add any other context about the problem here.
validations:
required: false

View File

@ -11,6 +11,7 @@ function finish() {
trap finish EXIT
SDK="${SDK:-iphoneos}"
WORKSPACE="${WORKSPACE:-Mastodon.xcworkspace}"
SCHEME="${SCHEME:-Mastodon}"
CONFIGURATION=${CONFIGURATION:-Release}
@ -40,10 +41,12 @@ echo "GITHUB_TAG_NAME=build-$CURRENT_PROJECT_VERSION" >> $GITHUB_ENV
agvtool new-version -all $CURRENT_PROJECT_VERSION
xcrun xcodebuild clean \
-workspace "${WORKSPACE}" \
-scheme "${SCHEME}" \
-configuration "${CONFIGURATION}"
xcrun xcodebuild archive \
-workspace "${WORKSPACE}" \
-scheme "${SCHEME}" \
-configuration "${CONFIGURATION}" \
-destination generic/platform=iOS \

View File

@ -5,8 +5,8 @@ set -eo pipefail
# build with SwiftPM:
# https://developer.apple.com/documentation/swift_packages/building_swift_packages_or_apps_that_use_them_in_continuous_integration_workflows
xcodebuild \
xcodebuild -workspace Mastodon.xcworkspace \
-scheme Mastodon \
-destination "platform=iOS Simulator,name=iPhone SE (3rd generation)" \
-destination "platform=iOS Simulator,name=iPhone SE (2nd generation)" \
clean \
build | xcpretty

View File

@ -1,7 +1,7 @@
#!/bin/bash
brew install swiftgen@6.6.2
brew install sourcery@2.1.3
# workaround https://github.com/CocoaPods/CocoaPods/issues/11355
# sed -i '' $'1s/^/source "https:\\/\\/github.com\\/CocoaPods\\/Specs.git"\\\n\\\n/' Podfile
# Install Ruby Bundler
gem install bundler:2.3.11
@ -11,3 +11,5 @@ bundle install
# Setup notification endpoint
bundle exec arkana
bundle exec pod install

View File

@ -1,40 +0,0 @@
name: Deploy App Store
on:
workflow_dispatch:
push:
branches:
- develop
- release*
jobs:
deploy_appstore:
name: Deploy App Store
runs-on: macos-13
steps:
- name: Install SSH key
uses: webfactory/ssh-agent@v0.5.3
with:
ssh-private-key: |
${{ secrets.MATCH_SSH_PRIVATE_KEY }}
- name: Checkout Repository
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Build Environment
env:
NotificationEndpointDebug: ${{ secrets.NotificationEndpointDebug }}
NotificationEndpointRelease: ${{ secrets.NotificationEndpointRelease }}
run: exec ./.github/scripts/setup.sh
- name: Select required Xcode version
run: sudo xcode-select -switch /Applications/Xcode_15.0.1.app
- name: Deploy App Store
env:
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }}
ITC_KEY_ID: ${{ secrets.APPSTORE_KEY_ID }}
ITC_ISSUER_ID: ${{ secrets.APPSTORE_ISSUER_ID }}
ITC_KEY: ${{ secrets.APPSTORE_PRIVATE_KEY }}
run: bundle exec fastlane ios deploy_appstore
- name: Tag commit
uses: tvdias/github-tagger@v0.0.1
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
tag: "${{ env.GITHUB_TAG_NAME }}"

74
.github/workflows/develop-build.yml vendored Normal file
View File

@ -0,0 +1,74 @@
name: Build for Develop TestFlight
on:
push:
branches:
- develop
- release*
- ci-test
jobs:
build:
name: Build
runs-on: macOS-12
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup
env:
NotificationEndpointDebug: ${{ secrets.NotificationEndpointDebug }}
NotificationEndpointRelease: ${{ secrets.NotificationEndpointRelease }}
run: exec ./.github/scripts/setup.sh
- name: Install codemagic-cli-tools
uses: actions/setup-python@v4
with:
python-version: '3.11'
- run: |
pip3 install codemagic-cli-tools
- run: |
codemagic-cli-tools --version || true
- name: Import Code-Signing Certificates
uses: Apple-Actions/import-codesign-certs@v1 # https://github.com/Apple-Actions/import-codesign-certs
with:
keychain: build-p12
p12-file-base64: ${{ secrets.BUILD_CERTIFICATE_BASE64 }}
p12-password: ${{ secrets.P12_PASSWORD }}
- name: Download Provisioning Profiles
uses: Apple-Actions/download-provisioning-profiles@v1 # https://github.com/Apple-Actions/download-provisioning-profiles
with:
bundle-id: org.joinmastodon.app
issuer-id: ${{ secrets.APPSTORE_ISSUER_ID }}
api-key-id: ${{ secrets.APPSTORE_KEY_ID }}
api-private-key: ${{ secrets.APPSTORE_PRIVATE_KEY }}
- name: Build
env:
ENV_APP_ID: ${{ secrets.APP_ID }}
ENV_ISSUER_ID: ${{ secrets.APPSTORE_ISSUER_ID }}
ENV_API_KEY_ID: ${{ secrets.APPSTORE_KEY_ID }}
ENV_API_PRIVATE_KEY: ${{ secrets.APPSTORE_PRIVATE_KEY }}
ENV_API_PRIVATE_KEY_BASE64: ${{ secrets.APP_STORE_CONNECT_KEY_BASE64 }}
run: exec ./.github/scripts/build-release.sh
- name: Upload TestFlight Build
uses: Apple-Actions/upload-testflight-build@master
with:
app-path: .build/Artifacts/Mastodon.ipa/Mastodon.ipa
issuer-id: ${{ secrets.APPSTORE_ISSUER_ID }}
api-key-id: ${{ secrets.APPSTORE_KEY_ID }}
api-private-key: ${{ secrets.APPSTORE_PRIVATE_KEY }}
- name: Tag commit
uses: tvdias/github-tagger@v0.0.1
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
tag: "${{ env.GITHUB_TAG_NAME }}"
- name: Clean up keychain and provisioning profile
if: ${{ always() }}
run: |
security delete-keychain build-p12.keychain-db

View File

@ -3,29 +3,29 @@ name: CI
on:
push:
branches:
- master
- develop
- feature/*
- feature-*
- issue/*
- issue-*
- master
- develop
- feature/*
- feature-*
- issue/*
- issue-*
pull_request:
branches:
- develop
- develop
# macOS environments: https://github.com/actions/virtual-environments/tree/main/images/macos
jobs:
build:
name: CI build
runs-on: macos-13
runs-on: macos-12
steps:
- name: Repository
- name: checkout
uses: actions/checkout@v2
- name: Setup Build Environment
env:
- name: setup
env:
NotificationEndpointDebug: ${{ secrets.NotificationEndpointDebug }}
NotificationEndpointRelease: ${{ secrets.NotificationEndpointRelease }}
run: exec ./.github/scripts/setup.sh
- name: Build App
run: bundle exec fastlane ios build_only
- name: build
run: exec ./.github/scripts/build.sh

13
.gitignore vendored
View File

@ -88,8 +88,6 @@ fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots/**/*.png
fastlane/test_output
fastlane/.env
fastlane/devices.txt
# Code Injection
# After new code Injection tools there's a generated folder /iOSInjectionProject
@ -127,13 +125,4 @@ Localization/StringsConvertor/output
.DS_Store
env/**/**
!env/.env
## Ruby ###
vendor/
.bundle/
# IDEs
.idea
.vscode
!env/.env

View File

@ -1 +0,0 @@
3.0.3

View File

@ -13,6 +13,7 @@
- [Fuzi](https://github.com/cezheng/Fuzi)
- [Kanna](https://github.com/tid-kijyun/Kanna)
- [KeychainAccess](https://github.com/kishikawakatsumi/KeychainAccess.git)
- [Kingfisher](https://github.com/onevcat/Kingfisher)
- [MetaTextKit](https://github.com/TwidereProject/MetaTextKit)
- [Nuke-FLAnimatedImage-Plugin](https://github.com/kean/Nuke-FLAnimatedImage-Plugin)
- [Nuke](https://github.com/kean/Nuke)

View File

@ -1,21 +0,0 @@
# Deployment
## Your Device
### As a Mastodon Collaborator WITH access to the Mastodon Apple Developer Program
To ensure you're able to build the App for your Device please create a `fastlane/devices.txt` and add your device's UDID.
You may use `fastlane/devices.text.example` as a starting point. Please note that fastlane expects you to use tabs in this file.
After adding your device please run `bundle exec fastlane ios register_devices` to add your device(s) to the Apple Develper Account.
Then run `bundle exec fastlane ios update_certificates` to re-generate the Codesigning Provisioning Profiles.
You should now be able to run the App using Xcode on your Device.
### As a Mastodon Contributor WITHOUT access to the Mastodon Apple Developer Program
To run the App on your Device you'll need to take care of Codesigning yourself by adjusting the App's Codesigning Settings in Xcode to your needs.
## App Store
We're using [Fastlane](https://fastlane.tools) to deploy the App to App Store Connect. Please see the [Fastlane README](../fastlane/README.md) on the available commands.

View File

@ -1,96 +0,0 @@
# How it works
The app is currently build for iOS and iPadOS. We use the MVVM architecture to construct the whole app. Some design detail may not be the best practice. And any suggestions for improvements are welcome.
## Data
A typical status timeline fetches results from the database using a predicate that fetch the active account's entities. Then data source dequeues an item then configure the view. Likes many other MVVM applications. The app binds the Core Data entity to view via Combine publisher. Because the RunLoop dispatch drawing on the next loop. So we could return quickly.
## Layout
A timeline has many posts and each post has many components. For example avatar, name, username, timestamp, content, media, toolbar and e.t.c. The app uses `AutoLayout` with `UIStackView` to place it and control whether it should hide or not.
## Performance
Although it's easily loading timeline with hundreds of thousands of entities due to the Core Data fault mechanism. Some old devices may have slow performance when I/O bottleneck. There are three potential profile chances for entities:
- preload fulfill
- layout in background
- limit the data fetching
## SwiftUI
Some view models already migrate to `@Published` annotated output. It's future-proof support for SwiftUI. There are some views already transformed to `SwiftUI` likes `MastodonRegisterView` and `ReportReasonView`.
# Take it apart
## Targets
The app builds with those targets:
- Mastodon: the app itself
- NotificationService: E2E push notification service
- ShareActionExtension: iOS share action
- MastodonIntent: Siri shortcuts
## MastodonSDK
There is a self-hosted Swift Package that contains the common libraries to build this app.
- CoreDataStack: Core Data model definition and util methods
- MastodonAsset: image and font assets
- MastodonCommon: store App Group ID
- MastodonCore: the logic for the app
- MastodonExtension: system API extension utility
- MastodonLocalization: i18n resources
- MastodonSDK: Mastodon API client
- MastodonUI: App UI components
#### CoreDataStack
App uses Core Data as the backend to persist all entitles from the server. So the app has the capability to keep the timeline and notifications. Another reason for using a database is it makes the app could respond to entity changes between different sources. For example, a user could skim in the home timeline and then interact with the same post on other pages with favorite or reblog action. Core Data will handle the property modifications and notify the home timeline to update the view.
To simplify the database operations. There is only one persistent store for all accounts. We use `domain` to identify entity for different servers (a.k.a instance). Do not mix the `domain` with the Mastodon remote server name. For example. The domain is `mastodon.online` whereever the post (e.g. post come from `mstdn.jp`) and friends from for the account sign in `mastodon.online`. Also, do not only rely on `id` because it has conflict potential between different `domain`. The unique predicate is `domain` + `id`.
The app use "One stack, two context" setup. There is one main managed object context for UI displaying and another background managed context for entities creating and updating. We assert the background context performs in a queue. Also, the app could accept mulitple background context model. Then the flag `-com.apple.CoreData.ConcurrencyDebug 1` will be usful.
###### How to create a new Entity
First, select the `CoreData.xcdatamodeld` file and in menu `Editor > Add Model Version…` to create a new version. Make sure active the new version in the inspect panel. e.g. `Model Version. Current > "Core Data 5"`
Then use the `Add Entity` button create new Entity.
1. Give a name in data model inspect panel.
2. Also, set the `Module` to `CoreDataStack`.
3. Set the `Codegen` to `Manual/None`. We use `Sourcery` to generate the template code.
4. Create the `Entity.swift` file and declear the properties and relationships.
###### How to add or remove property for Entity
We using the Core Data lightweight migration. Please check the rules detail [here](https://developer.apple.com/documentation/coredata/using_lightweight_migration). And keep in mind that we using two-way relationship. And a relationship could be one-to-one, one-to-many/many-to-one.
Tip:
Please check the `Soucery` and use that generates getter and setter for properties and relationships. It's could save you time. To take the benefit from the dynamic property. We can declare a raw value property and then use compute property to construct the struct we want (e.g. `Feed.acct`). Or control the primitive by hand and declare the mirror type for this value (e.g `Status.attachments`).
###### How to persist the Entity
Please check the `Persistence+Status.swift`. We follow the pattern: migrate the old one if exists. Otherwise, create a new one. (Maybe some improvements could be adopted?)
#### MastodonAsset
Sourcery powered assets package.
#### MastodonCommon
Shared code for preference and configuration.
### MastodonCore
The core logic to drive the app.
#### MastodonExtension
Utility extension codes for SDK.
#### MastodonLocalization
Sourcery powered i18n package.
#### MastodonSDK
Mastodon API wrapper with Combine style API.
#### MastodonUI
Mastodon app UI components.
## NotificationService
Mastodon server accepts push notification register and we use the [toot-relay](https://github.com/DagAgren/toot-relay) to pass the server notifications to APNs. The message is E2E encrypted. The app will create an on-device private key for notification and save it into the keychain.
When the push notification is incoming. iOS will spawn our NotificationService extension to handle the message. At that time the message is decrypted and displayed as a banner or in-app silent notification event when the app is in the foreground. All the notification count and deep-link logic are handled by the main app.
## ShareActionExtension
The iOS Share Extension allows users to share links or media from other apps. The app uses the same implementation for the main app and the share extension. Then different is less available memoery for extension so maybe some memory bounded task could crash the app. (Plesae file the issue)
## MastodonIntent
iOS Siri shortcut supports. It allows iOS directly publish posts via Shortcut without app launching.

View File

@ -2,35 +2,30 @@
## Requirements
- Xcode 14+
- Swift 5.7+
- iOS 16.0+
- Xcode 13+
- Swift 5.5+
- iOS 14.0+
Install the latest version of Xcode from the App Store or Apple Developer Download website. Also, we assert you have the [Homebrew](https://brew.sh) package manager.
This guide may not suit your machine and actually setup procedure may change in the future. Please file an issue or open a Pull Request if there are any problems.
This guide may not suit your machine and actually setup procedure may change in the future. Please file the issue or Pull Request if there are any problems.
### Swiftgen and Sourcery
## CocoaPods
The app use [CocoaPods]() and [Arkana](https://github.com/rogerluan/arkana). Ruby Gems are managed through Bundler. The M1 Mac needs virtual ruby env to workaround compatibility issues. Make sure you have [Rosetta](https://support.apple.com/en-us/HT211861) installed if you are using the M1 Mac.
This app uses [SwiftGen](https://github.com/SwiftGen/SwiftGen) and [Sourcery](https://github.com/krzysztofzablocki/Sourcery) for Code Generation.
> [!NOTE]
> Both tools are optional. Using the following command will install them system wide:
#### Intel Mac
```zsh
brew install swiftgen
brew install sourcery
gem install bundler
bundle install
```
### Arkana
The app uses [Arkana](https://github.com/rogerluan/arkana). Ruby Gems are managed through Bundler. Make sure you have [Rosetta](https://support.apple.com/en-us/HT211861) installed if you are using the M1 Mac.
#### M1 Mac
```zsh
# install the rbenv
brew install rbenv
# configure the terminal
which ruby
# > /usr/bin/ruby
echo 'eval "$(rbenv init -)"' >> ~/.zprofile
@ -38,25 +33,37 @@ source ~/.zprofile
which ruby
# > /Users/mainasuk/.rbenv/shims/ruby
# restart the terminal
# select ruby
rbenv install --list
# here we use the latest 3.0.x version
rbenv install 3.0.3
rbenv global 3.0.3
ruby --version
# > ruby 3.0.3p157 (2021-11-24 revision 3fb7d2cadc) [arm64-darwin21]
# install ruby (we use the version defined in .ruby-version)
rbenv install
# install gem dependencies
gem install bundler
bundle install
```
## Bootstrap
```zsh
# make a clean build
bundle install
bundle exec pod clean
# setup arkana
# please check the `.env.example` to create your's or use the empty example directly
bundle exec arkana -e ./env/.env
# open project
xed .
# clean pods
bundle exec pod clean
# make install
bundle exec pod install --repo-update
# open workspace
open Mastodon.xcworkspace
```
The Arkana plugin will setup the push notification endpoint. You can use the empty template from `./env/.env` or use your own `.env` file. To setup the push notification. Please check section `Push Notification` below.
@ -64,7 +71,6 @@ The Arkana plugin will setup the push notification endpoint. You can use the emp
The app requires the `App Group` capability. To make sure it works for your developer membership. Please check [AppSecret.swift](../MastodonSDK/Sources/MastodonCore/AppSecret.swift) file and set another unique `groupID` and update `App Group` settings.
#### Push Notification (Optional)
The app is compatible with [toot-relay](https://github.com/DagAgren/toot-relay) APNs. You can set your push notification endpoint via Arkana. There are two endpoints:
- NotificationEndpointDebug: for `DEBUG` usage. e.g. `https://<your.domin>/relay-to/development`
- NotificationEndpointRelease: for `RELEASE` usage. e.g. `https://<your.domin>/relay-to/production`
@ -76,12 +82,11 @@ Note:
Please check and set the `notification.Topic` to the app BundleID in [toot-relay.go](https://github.com/DagAgren/toot-relay/blob/f9d6894040509881fee845972cd38ec6cd8f5a11/toot-relay.go#L112). The server needs use a reverse proxy to port this relay on 443 port with valid domain and HTTPS certificate.
## Start
1. Open `Mastodon.xcodeproj`
2. Wait for the Swift Package Dependencies to be resolved.
1. Open `Mastodon.xcworkspace`
2. Wait for the Swift Package Dependencies resolved.
2. Check the signing settings make sure to choose a team. [More info…](https://help.apple.com/xcode/mac/current/#/dev23aab79b4)
3. Select `Mastodon` scheme and device then run it. (Command + R)
## What's next
We welcome contributions! And if you have an interest to contribute code, [here is a document](How-it-works.md) that describes the app architecture and what tech stack it uses.
We welcome contributions! And if you have an interest to contribute codes. Here is a document that describes the app architecture and what's tech stack it uses.

View File

@ -21,6 +21,7 @@ xcodebuild \
test \
-showdestinations \
-derivedDataPath '~/Downloads/MastodonBuild/Derived' \
-workspace Mastodon.xcworkspace \
-scheme 'Mastodon - Snapshot'
# output
@ -46,6 +47,7 @@ TEST_RUNNER_login_domain='<Domain>' \
xcodebuild \
test \
-derivedDataPath '~/Downloads/MastodonBuild/Derived' \
-workspace Mastodon.xcworkspace \
-scheme 'Mastodon - Snapshot' \
-sdk iphonesimulator \
-destination 'platform=iOS Simulator,name=iPhone 13 Pro Max' \
@ -86,6 +88,7 @@ TEST_RUNNER_login_domain='<domain.com>' \
xcodebuild \
test \
-derivedDataPath '~/Downloads/MastodonBuild/Derived' \
-workspace Mastodon.xcworkspace \
-scheme 'Mastodon - Snapshot' \
-sdk iphonesimulator \
-destination 'platform=iOS Simulator,name=iPhone 13 Pro Max' \

View File

@ -1,9 +1,7 @@
source "https://rubygems.org"
gem 'arkana'
gem "cocoapods"
gem "cocoapods-clean"
gem "xcpretty"
# Fastlane
gem "fastlane"
plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile')
eval_gemfile(plugins_path) if File.exist?(plugins_path)

View File

@ -1,207 +1,92 @@
GEM
remote: https://rubygems.org/
specs:
CFPropertyList (3.0.6)
CFPropertyList (3.0.5)
rexml
addressable (2.8.5)
activesupport (6.1.7)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 1.6, < 2)
minitest (>= 5.1)
tzinfo (~> 2.0)
zeitwerk (~> 2.3)
addressable (2.8.1)
public_suffix (>= 2.0.2, < 6.0)
arkana (1.5.0)
algoliasearch (1.27.5)
httpclient (~> 2.8, >= 2.8.3)
json (>= 1.5.1)
arkana (1.2.0)
colorize (~> 0.8)
dotenv (~> 2.7)
rainbow (~> 3.1.1)
yaml (~> 0.2)
artifactory (3.0.15)
atomos (0.1.3)
aws-eventstream (1.2.0)
aws-partitions (1.833.0)
aws-sdk-core (3.185.0)
aws-eventstream (~> 1, >= 1.0.2)
aws-partitions (~> 1, >= 1.651.0)
aws-sigv4 (~> 1.5)
jmespath (~> 1, >= 1.6.1)
aws-sdk-kms (1.72.0)
aws-sdk-core (~> 3, >= 3.184.0)
aws-sigv4 (~> 1.1)
aws-sdk-s3 (1.136.0)
aws-sdk-core (~> 3, >= 3.181.0)
aws-sdk-kms (~> 1)
aws-sigv4 (~> 1.6)
aws-sigv4 (1.6.0)
aws-eventstream (~> 1, >= 1.0.2)
babosa (1.0.4)
claide (1.1.0)
colored (1.2)
cocoapods (1.11.3)
addressable (~> 2.8)
claide (>= 1.0.2, < 2.0)
cocoapods-core (= 1.11.3)
cocoapods-deintegrate (>= 1.0.3, < 2.0)
cocoapods-downloader (>= 1.4.0, < 2.0)
cocoapods-plugins (>= 1.0.0, < 2.0)
cocoapods-search (>= 1.0.0, < 2.0)
cocoapods-trunk (>= 1.4.0, < 2.0)
cocoapods-try (>= 1.1.0, < 2.0)
colored2 (~> 3.1)
escape (~> 0.0.4)
fourflusher (>= 2.3.0, < 3.0)
gh_inspector (~> 1.0)
molinillo (~> 0.8.0)
nap (~> 1.0)
ruby-macho (>= 1.0, < 3.0)
xcodeproj (>= 1.21.0, < 2.0)
cocoapods-clean (0.0.1)
cocoapods-core (1.11.3)
activesupport (>= 5.0, < 7)
addressable (~> 2.8)
algoliasearch (~> 1.0)
concurrent-ruby (~> 1.1)
fuzzy_match (~> 2.0.4)
nap (~> 1.0)
netrc (~> 0.11)
public_suffix (~> 4.0)
typhoeus (~> 1.0)
cocoapods-deintegrate (1.0.5)
cocoapods-downloader (1.6.3)
cocoapods-plugins (1.0.0)
nap
cocoapods-search (1.0.1)
cocoapods-trunk (1.6.0)
nap (>= 0.8, < 2.0)
netrc (~> 0.11)
cocoapods-try (1.2.0)
colored2 (3.1.2)
commander (4.6.0)
highline (~> 2.0.0)
declarative (0.0.20)
digest-crc (0.6.5)
rake (>= 12.0.0, < 14.0.0)
domain_name (0.5.20190701)
unf (>= 0.0.5, < 1.0.0)
colorize (0.8.1)
concurrent-ruby (1.1.10)
dotenv (2.8.1)
emoji_regex (3.2.3)
excon (0.104.0)
faraday (1.10.3)
faraday-em_http (~> 1.0)
faraday-em_synchrony (~> 1.0)
faraday-excon (~> 1.1)
faraday-httpclient (~> 1.0)
faraday-multipart (~> 1.0)
faraday-net_http (~> 1.0)
faraday-net_http_persistent (~> 1.0)
faraday-patron (~> 1.0)
faraday-rack (~> 1.0)
faraday-retry (~> 1.0)
ruby2_keywords (>= 0.0.4)
faraday-cookie_jar (0.0.7)
faraday (>= 0.8.0)
http-cookie (~> 1.0.0)
faraday-em_http (1.0.0)
faraday-em_synchrony (1.0.0)
faraday-excon (1.1.0)
faraday-httpclient (1.0.1)
faraday-multipart (1.0.4)
multipart-post (~> 2)
faraday-net_http (1.0.1)
faraday-net_http_persistent (1.2.0)
faraday-patron (1.0.0)
faraday-rack (1.0.0)
faraday-retry (1.0.3)
faraday_middleware (1.2.0)
faraday (~> 1.0)
fastimage (2.2.7)
fastlane (2.216.0)
CFPropertyList (>= 2.3, < 4.0.0)
addressable (>= 2.8, < 3.0.0)
artifactory (~> 3.0)
aws-sdk-s3 (~> 1.0)
babosa (>= 1.0.3, < 2.0.0)
bundler (>= 1.12.0, < 3.0.0)
colored
commander (~> 4.6)
dotenv (>= 2.1.1, < 3.0.0)
emoji_regex (>= 0.1, < 4.0)
excon (>= 0.71.0, < 1.0.0)
faraday (~> 1.0)
faraday-cookie_jar (~> 0.0.6)
faraday_middleware (~> 1.0)
fastimage (>= 2.1.0, < 3.0.0)
gh_inspector (>= 1.1.2, < 2.0.0)
google-apis-androidpublisher_v3 (~> 0.3)
google-apis-playcustomapp_v1 (~> 0.1)
google-cloud-storage (~> 1.31)
highline (~> 2.0)
http-cookie (~> 1.0.5)
json (< 3.0.0)
jwt (>= 2.1.0, < 3)
mini_magick (>= 4.9.4, < 5.0.0)
multipart-post (>= 2.0.0, < 3.0.0)
naturally (~> 2.2)
optparse (~> 0.1.1)
plist (>= 3.1.0, < 4.0.0)
rubyzip (>= 2.0.0, < 3.0.0)
security (= 0.1.3)
simctl (~> 1.6.3)
terminal-notifier (>= 2.0.0, < 3.0.0)
terminal-table (~> 3)
tty-screen (>= 0.6.3, < 1.0.0)
tty-spinner (>= 0.8.0, < 1.0.0)
word_wrap (~> 1.0.0)
xcodeproj (>= 1.13.0, < 2.0.0)
xcpretty (~> 0.3.0)
xcpretty-travis-formatter (>= 0.0.3)
fastlane-plugin-versioning (0.5.2)
escape (0.0.4)
ethon (0.15.0)
ffi (>= 1.15.0)
ffi (1.15.5)
fourflusher (2.3.1)
fuzzy_match (2.0.4)
gh_inspector (1.1.3)
google-apis-androidpublisher_v3 (0.50.0)
google-apis-core (>= 0.11.0, < 2.a)
google-apis-core (0.11.1)
addressable (~> 2.5, >= 2.5.1)
googleauth (>= 0.16.2, < 2.a)
httpclient (>= 2.8.1, < 3.a)
mini_mime (~> 1.0)
representable (~> 3.0)
retriable (>= 2.0, < 4.a)
rexml
webrick
google-apis-iamcredentials_v1 (0.17.0)
google-apis-core (>= 0.11.0, < 2.a)
google-apis-playcustomapp_v1 (0.13.0)
google-apis-core (>= 0.11.0, < 2.a)
google-apis-storage_v1 (0.19.0)
google-apis-core (>= 0.9.0, < 2.a)
google-cloud-core (1.6.0)
google-cloud-env (~> 1.0)
google-cloud-errors (~> 1.0)
google-cloud-env (1.6.0)
faraday (>= 0.17.3, < 3.0)
google-cloud-errors (1.3.1)
google-cloud-storage (1.44.0)
addressable (~> 2.8)
digest-crc (~> 0.4)
google-apis-iamcredentials_v1 (~> 0.1)
google-apis-storage_v1 (~> 0.19.0)
google-cloud-core (~> 1.6)
googleauth (>= 0.16.2, < 2.a)
mini_mime (~> 1.0)
googleauth (1.8.1)
faraday (>= 0.17.3, < 3.a)
jwt (>= 1.4, < 3.0)
multi_json (~> 1.11)
os (>= 0.9, < 2.0)
signet (>= 0.16, < 2.a)
highline (2.0.3)
http-cookie (1.0.5)
domain_name (~> 0.5)
httpclient (2.8.3)
jmespath (1.6.2)
json (2.6.3)
jwt (2.7.1)
mini_magick (4.12.0)
mini_mime (1.1.5)
multi_json (1.15.0)
multipart-post (2.3.0)
i18n (1.12.0)
concurrent-ruby (~> 1.0)
json (2.6.2)
minitest (5.16.3)
molinillo (0.8.0)
nanaimo (0.3.0)
naturally (2.2.1)
optparse (0.1.1)
os (1.1.4)
plist (3.7.0)
nap (1.1.0)
netrc (0.11.0)
public_suffix (4.0.7)
rainbow (3.1.1)
rake (13.0.6)
representable (3.2.0)
declarative (< 0.1.0)
trailblazer-option (>= 0.1.1, < 0.2.0)
uber (< 0.2.0)
retriable (3.1.2)
rexml (3.2.6)
rexml (3.2.5)
rouge (2.0.7)
ruby2_keywords (0.0.5)
rubyzip (2.3.2)
security (0.1.3)
signet (0.18.0)
addressable (~> 2.8)
faraday (>= 0.17.5, < 3.a)
jwt (>= 1.5, < 3.0)
multi_json (~> 1.10)
simctl (1.6.10)
CFPropertyList
naturally
terminal-notifier (2.0.0)
terminal-table (3.0.2)
unicode-display_width (>= 1.1.1, < 3)
trailblazer-option (0.1.2)
tty-cursor (0.7.1)
tty-screen (0.8.1)
tty-spinner (0.9.3)
tty-cursor (~> 0.7)
uber (0.1.0)
unf (0.1.4)
unf_ext
unf_ext (0.0.8.2)
unicode-display_width (2.5.0)
webrick (1.8.1)
word_wrap (1.0.0)
xcodeproj (1.23.0)
ruby-macho (2.5.1)
typhoeus (1.4.0)
ethon (>= 0.9.0)
tzinfo (2.0.5)
concurrent-ruby (~> 1.0)
xcodeproj (1.22.0)
CFPropertyList (>= 2.3.3, < 4.0)
atomos (~> 0.1.3)
claide (>= 1.0.2, < 2.0)
@ -210,9 +95,8 @@ GEM
rexml (~> 3.2.4)
xcpretty (0.3.0)
rouge (~> 2.0.7)
xcpretty-travis-formatter (1.0.1)
xcpretty (~> 0.2, >= 0.0.7)
yaml (0.2.1)
yaml (0.2.0)
zeitwerk (2.6.3)
PLATFORMS
arm64-darwin-21
@ -222,9 +106,9 @@ PLATFORMS
DEPENDENCIES
arkana
fastlane
fastlane-plugin-versioning
cocoapods
cocoapods-clean
xcpretty
BUNDLED WITH
2.4.6
2.3.17

View File

@ -71,7 +71,7 @@
<key>a11y.plural.count.characters_left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@character_count@</string>
<string>%#@character_count@ left</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
@ -79,15 +79,15 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>zero</key>
<string>no characters left</string>
<string>no characters</string>
<key>one</key>
<string>1 character left</string>
<string>1 character</string>
<key>few</key>
<string>%ld characters left</string>
<string>%ld characters</string>
<key>many</key>
<string>%ld characters left</string>
<string>%ld characters</string>
<key>other</key>
<string>%ld characters left</string>
<string>%ld characters</string>
</dict>
</dict>
<key>plural.count.followed_by_and_mutual</key>
@ -231,28 +231,6 @@
<string>%ld reblogs</string>
</dict>
</dict>
<key>plural.count.reblog_a11y</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@reblog_count@</string>
<key>reblog_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>zero</key>
<string>0 re-blogs</string>
<key>one</key>
<string>1 re-blog</string>
<key>few</key>
<string>%ld re-blogs</string>
<key>many</key>
<string>%ld re-blogs</string>
<key>other</key>
<string>%ld re-blogs</string>
</dict>
</dict>
<key>plural.count.reply</key>
<dict>
<key>NSStringLocalizedFormatKey</key>

View File

@ -27,7 +27,7 @@ If there are new translations, Crowdin pushes new commits to a branch called `l1
To update or add new translations, the workflow is as follows:
1. Merge the PR with `l10n_develop` into `develop`. It's usually called `New Crowdin Updates`
2. Run `update_localization.sh` on your computer.
2. Run `update.localization.sh` on your computer.
3. Commit the changes and push `develop`.
[crowdin-mastodon-ios]: https://crowdin.com/project/mastodon-for-ios

View File

@ -1,51 +0,0 @@
"16wxgf" = "Publicar en Mastodon";
"751xkl" = "Conteniu de Texto";
"CsR7G2" = "Publicar en Mastodon";
"HZSGTr" = "Qué conteniu publicar?";
"HdGikU" = "Publicación fallida";
"KDNTJ4" = "Motivo d'o Fallo";
"RHxKOw" = "Ninviar Publicación con conteniu de texto";
"RxSqsb" = "Publicación";
"WCIR3D" = "Publicar ${content} en Mastodon";
"ZKJSNu" = "Publicación";
"ZS1XaK" = "${content}";
"ZbSjzC" = "Visibilidat";
"Zo4jgJ" = "Visibilidat d'o Post";
"apSxMG-dYQ5NN" = "I hai ${count} opcions que coinciden con «Publico».";
"apSxMG-ehFLjY" = "I hai ${count} opcions que coinciden con «Solo seguidores».";
"ayoYEb-dYQ5NN" = "${content}, Publico";
"ayoYEb-ehFLjY" = "${content}, Nomás Seguidores";
"dUyuGg" = "Publicar en Mastodon";
"dYQ5NN" = "Publico";
"ehFLjY" = "Solo Seguidores";
"gfePDu" = "Publicación fallida. ${failureReason}";
"k7dbKQ" = "Publicación ninviada con exito.";
"oGiqmY-dYQ5NN" = "Nomás per confirmar, querebas «Publico»?";
"oGiqmY-ehFLjY" = "Nomás per confirmar, querebas «Nomás seguidores»?";
"rM6dvp" = "URL";
"ryJLwG" = "Publicación ninviada con exito. ";

View File

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>There are ${count} options matching ${content}. - 2</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>I hai %#@count_option@ coincidencias con «${content}».</string>
<key>count_option</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>%ld</string>
<key>one</key>
<string>1 opción</string>
<key>other</key>
<string>%ld opcions</string>
</dict>
</dict>
<key>There are ${count} options matching ${visibility}.</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>I hai %#@count_option@ coincidencias con «${visibility}».</string>
<key>count_option</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>%ld</string>
<key>one</key>
<string>1 opción</string>
<key>other</key>
<string>%ld opcions</string>
</dict>
</dict>
</dict>
</plist>

View File

@ -1,4 +1,4 @@
"16wxgf" = "النَّشرُ عَلَى ماستدون";
"16wxgf" = "النَّشرُ عَلَى مَاستودُون";
"751xkl" = "محتوى نصي";
@ -32,7 +32,7 @@
"ayoYEb-ehFLjY" = "${content}، المُتابِعُون فقط";
"dUyuGg" = "النَّشرُ عَلَى ماستدون";
"dUyuGg" = "النَّشرُ عَلَى مَاستودُون";
"dYQ5NN" = "لِلعَامَّة";

View File

@ -1,51 +0,0 @@
"16wxgf" = "Апублікаваць у Mastodon";
"751xkl" = "Тэкставае змесціва";
"CsR7G2" = "Апублікаваць у Mastodon";
"HZSGTr" = "Які кантэнт публікаваць?";
"HdGikU" = "Памылка пры публікацыі";
"KDNTJ4" = "Прычына памылкі";
"RHxKOw" = "Адправіць допіс з тэкстам";
"RxSqsb" = "Допіс";
"WCIR3D" = "Апублікаваць ${content} у Mastodon";
"ZKJSNu" = "Допіс";
"ZS1XaK" = "${content}";
"ZbSjzC" = "Бачнасць";
"Zo4jgJ" = "Бачнасць допісу";
"apSxMG-dYQ5NN" = "Знойдзена ${count} варыянтаў, якія адпавядаюць \"Публічны\".";
"apSxMG-ehFLjY" = "Знойдзена ${count} варыянтаў, якія адпавядаюць \"Толькі для падпісчыкаў\".";
"ayoYEb-dYQ5NN" = "${content}, публічны";
"ayoYEb-ehFLjY" = "${content}, толькі для падпісчыкаў";
"dUyuGg" = "Апублікаваць у Mastodon";
"dYQ5NN" = "Публічны";
"ehFLjY" = "Толькі для падпісчыкаў";
"gfePDu" = "Памылка пры публікацыі. ${failureReason}";
"k7dbKQ" = "Допіс паспяхова адпраўлены.";
"oGiqmY-dYQ5NN" = "Вы хочаце, каб гэты допіс быў \"Публічны\"?";
"oGiqmY-ehFLjY" = "Вы хочаце, каб гэты допіс быў \"Толькі для падпісчыкаў\"?";
"rM6dvp" = "URL";
"ryJLwG" = "Допіс паспяхова адпраўлены. ";

View File

@ -1,46 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>There are ${count} options matching ${content}. - 2</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>Знойдзена %#@count_option@, якія адпавядаюць "${content}".</string>
<key>count_option</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>%ld</string>
<key>one</key>
<string>варыянт</string>
<key>few</key>
<string>%ld варыянты</string>
<key>many</key>
<string>%ld варыянтаў</string>
<key>other</key>
<string>%ld варыянтаў</string>
</dict>
</dict>
<key>There are ${count} options matching ${visibility}.</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>Знойдзена %#@count_option@, якія адпавядаюць "${visibility}".</string>
<key>count_option</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>%ld</string>
<key>one</key>
<string>варыянт</string>
<key>few</key>
<string>%ld варыянты</string>
<key>many</key>
<string>%ld варыянтаў</string>
<key>other</key>
<string>%ld варыянтаў</string>
</dict>
</dict>
</dict>
</plist>

View File

@ -22,7 +22,7 @@
"ZbSjzC" = "Visibilitat";
"Zo4jgJ" = "Visibilitat de la publicació";
"Zo4jgJ" = "Visibilitat de la Publicació";
"apSxMG-dYQ5NN" = "Hi ha ${count} opcions que coincideixen amb Públic.";
@ -30,9 +30,9 @@
"ayoYEb-dYQ5NN" = "${content}, Públic";
"ayoYEb-ehFLjY" = "${content}, Només seguidors";
"ayoYEb-ehFLjY" = "${content}, Només Seguidors";
"dUyuGg" = "Publica a Mastodon";
"dUyuGg" = "Publicació";
"dYQ5NN" = "Públic";

View File

@ -13,7 +13,7 @@
<key>NSStringFormatValueTypeKey</key>
<string>%ld</string>
<key>one</key>
<string>1 možnost</string>
<string>1 option</string>
<key>few</key>
<string>%ld options</string>
<key>many</key>
@ -25,7 +25,7 @@
<key>There are ${count} options matching ${visibility}.</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>Existuje %#@count_option@ odpovídající „${visibility}“.</string>
<string>There are %#@count_option@ matching ${visibility}.</string>
<key>count_option</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
@ -33,7 +33,7 @@
<key>NSStringFormatValueTypeKey</key>
<string>%ld</string>
<key>one</key>
<string>1 možnost</string>
<string>1 option</string>
<key>few</key>
<string>%ld options</string>
<key>many</key>

View File

@ -1,51 +1,51 @@
"16wxgf" = "Postio ar Mastodon";
"16wxgf" = "Post on Mastodon";
"751xkl" = "Cynnwys Testun";
"751xkl" = "Text Content";
"CsR7G2" = "Postio ar Mastodon";
"CsR7G2" = "Post on Mastodon";
"HZSGTr" = "Pa gynnwys i bostio?";
"HZSGTr" = "What content to post?";
"HdGikU" = "Methwyd postio";
"HdGikU" = "Posting failed";
"KDNTJ4" = "Rheswm y Gwall";
"KDNTJ4" = "Failure Reason";
"RHxKOw" = "Cyhoeddi Post â chynnwys testun";
"RHxKOw" = "Send Post with text content";
"RxSqsb" = "Post";
"WCIR3D" = "Postio ${content} ar Mastodon";
"WCIR3D" = "Post ${content} on Mastodon";
"ZKJSNu" = "Post";
"ZS1XaK" = "${content}";
"ZbSjzC" = "Preifatrwydd";
"ZbSjzC" = "Visibility";
"Zo4jgJ" = "Preifatrwydd Post";
"Zo4jgJ" = "Post Visibility";
"apSxMG-dYQ5NN" = "Ceir ${count} opsiwn ar gyfer Cyhoeddus.";
"apSxMG-dYQ5NN" = "There are ${count} options matching Public.";
"apSxMG-ehFLjY" = "Ceir ${count} opsiwn ar gyfer Dilynwyr yn Unig.";
"apSxMG-ehFLjY" = "There are ${count} options matching Followers Only.";
"ayoYEb-dYQ5NN" = "${content}, Cyhoeddus";
"ayoYEb-dYQ5NN" = "${content}, Public";
"ayoYEb-ehFLjY" = "${content}, Dilynwyr yn Unig";
"ayoYEb-ehFLjY" = "${content}, Followers Only";
"dUyuGg" = "Postio ar Mastodon";
"dUyuGg" = "Post on Mastodon";
"dYQ5NN" = "Cyhoeddus";
"dYQ5NN" = "Public";
"ehFLjY" = "Dilynwyr yn unig";
"ehFLjY" = "Followers Only";
"gfePDu" = "Methwyd postio. ${failureReason}";
"gfePDu" = "Posting failed. ${failureReason}";
"k7dbKQ" = "Cyhoeddwyd y post yn llwyddiannus.";
"k7dbKQ" = "Post was sent successfully.";
"oGiqmY-dYQ5NN" = "I gadarnhau, rydych chi am ddewis Cyhoeddus?";
"oGiqmY-dYQ5NN" = "Just to confirm, you wanted Public?";
"oGiqmY-ehFLjY" = "I gadarnhau, rydych chi am ddewis Dilynwyr yn Unig?";
"oGiqmY-ehFLjY" = "Just to confirm, you wanted Followers Only?";
"rM6dvp" = "URL";
"ryJLwG" = "Cyhoeddwyd y post yn llwyddiannus. ";
"ryJLwG" = "Post was sent successfully. ";

View File

@ -5,7 +5,7 @@
<key>There are ${count} options matching ${content}. - 2</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>Ceir %#@count_option@ ar gyfer '${content}'.</string>
<string>There are %#@count_option@ matching ${content}.</string>
<key>count_option</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
@ -13,23 +13,23 @@
<key>NSStringFormatValueTypeKey</key>
<string>%ld</string>
<key>zero</key>
<string>%ld opsiynau</string>
<string>%ld options</string>
<key>one</key>
<string>%ld opsiwn</string>
<string>1 option</string>
<key>two</key>
<string>%ld opsiwn</string>
<string>%ld options</string>
<key>few</key>
<string>%ld opsiwn</string>
<string>%ld options</string>
<key>many</key>
<string>%ld o opsiynau</string>
<string>%ld options</string>
<key>other</key>
<string>%ld o opsiynau</string>
<string>%ld options</string>
</dict>
</dict>
<key>There are ${count} options matching ${visibility}.</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>Ceir %#@count_option@ ar gyfer '${visibility}'.</string>
<string>There are %#@count_option@ matching ${visibility}.</string>
<key>count_option</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
@ -37,17 +37,17 @@
<key>NSStringFormatValueTypeKey</key>
<string>%ld</string>
<key>zero</key>
<string>%ld opsiynau</string>
<string>%ld options</string>
<key>one</key>
<string>%ld opsiwn</string>
<string>1 option</string>
<key>two</key>
<string>%ld opsiwn</string>
<string>%ld options</string>
<key>few</key>
<string>%ld opsiwn</string>
<string>%ld options</string>
<key>many</key>
<string>%ld o opsiynau</string>
<string>%ld options</string>
<key>other</key>
<string>%ld opsiwn</string>
<string>%ld options</string>
</dict>
</dict>
</dict>

View File

@ -1,12 +1,12 @@
"16wxgf" = "Auf Mastodon veröffentlichen";
"16wxgf" = "Auf Mastodon posten";
"751xkl" = "Textinhalt";
"CsR7G2" = "Auf Mastodon veröffentlichen";
"CsR7G2" = "Auf Mastodon posten";
"HZSGTr" = "Welcher Inhalt soll veröffentlicht werden?";
"HZSGTr" = "Welcher Inhalt soll gepostet werden?";
"HdGikU" = "Veröffentlichen fehlgeschlagen";
"HdGikU" = "Posten fehlgeschlagen";
"KDNTJ4" = "Fehlerursache";

View File

@ -1,51 +0,0 @@
"16wxgf" = "Ανάρτηση στο Mastodon";
"751xkl" = "Περιεχόμενο Κειμένου";
"CsR7G2" = "Ανάρτηση στο Mastodon";
"HZSGTr" = "Τι περιεχόμενο θα αναρτήσεις;";
"HdGikU" = "Αποτυχία δημοσίευσης";
"KDNTJ4" = "Λόγος Αποτυχίας";
"RHxKOw" = "Αποστολή ανάρτησης με περιεχόμενο κειμένου";
"RxSqsb" = "Ανάρτηση";
"WCIR3D" = "Ανάρτηση ${content} στο Mastodon";
"ZKJSNu" = "Ανάρτηση";
"ZS1XaK" = "${content}";
"ZbSjzC" = "Ορατότητα";
"Zo4jgJ" = "Ορατότητα Ανάρτησης";
"apSxMG-dYQ5NN" = "Υπάρχουν ${count} επιλογές που ταιριάζουν στο «Δημόσιο».";
"apSxMG-ehFLjY" = "Υπάρχουν ${count} επιλογές που ταιριάζουν στο «Μόνο για Ακόλουθους».";
"ayoYEb-dYQ5NN" = "${content}, Δημόσιο";
"ayoYEb-ehFLjY" = "${content}, Μόνο Ακόλουθοι";
"dUyuGg" = "Ανάρτηση στο Mastodon";
"dYQ5NN" = "Δημόσιο";
"ehFLjY" = "Μόνο Ακόλουθοι";
"gfePDu" = "Αποτυχία ανάρτησης. ${failureReason}";
"k7dbKQ" = "Η ανάρτηση στάλθηκε με επιτυχία.";
"oGiqmY-dYQ5NN" = "Απλά για να επιβεβαίωση, θες «Δημόσιο»;";
"oGiqmY-ehFLjY" = "Απλά για επιβεβαίωση, θες «Μόνο Ακόλουθοι»;";
"rM6dvp" = "URL";
"ryJLwG" = "Η ανάρτηση στάλθηκε με επιτυχία. ";

View File

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>There are ${count} options matching ${content}. - 2</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>Υπάρχουν %#@count_option@ που ταιριάζουν με το ${content}.</string>
<key>count_option</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>%ld</string>
<key>one</key>
<string>1 επιλογή</string>
<key>other</key>
<string>%ld επιλογές</string>
</dict>
</dict>
<key>There are ${count} options matching ${visibility}.</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>Υπάρχουν %#@count_option@ που ταιριάζουν με το ${visibility}.</string>
<key>count_option</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>%ld</string>
<key>one</key>
<string>1 επιλογή</string>
<key>other</key>
<string>%ld επιλογές</string>
</dict>
</dict>
</dict>
</plist>

View File

@ -1,51 +0,0 @@
"16wxgf" = "Post on Mastodon";
"751xkl" = "Text Content";
"CsR7G2" = "Post on Mastodon";
"HZSGTr" = "What content to post?";
"HdGikU" = "Posting failed";
"KDNTJ4" = "Failure Reason";
"RHxKOw" = "Send Post with text content";
"RxSqsb" = "Post";
"WCIR3D" = "Post ${content} on Mastodon";
"ZKJSNu" = "Post";
"ZS1XaK" = "${content}";
"ZbSjzC" = "Visibility";
"Zo4jgJ" = "Post Visibility";
"apSxMG-dYQ5NN" = "There are ${count} options matching Public.";
"apSxMG-ehFLjY" = "There are ${count} options matching Followers Only.";
"ayoYEb-dYQ5NN" = "${content}, Public";
"ayoYEb-ehFLjY" = "${content}, Followers Only";
"dUyuGg" = "Post on Mastodon";
"dYQ5NN" = "Public";
"ehFLjY" = "Followers Only";
"gfePDu" = "Posting failed. ${failureReason}";
"k7dbKQ" = "Post was sent successfully.";
"oGiqmY-dYQ5NN" = "Just to confirm, you wanted Public?";
"oGiqmY-ehFLjY" = "Just to confirm, you wanted Followers Only?";
"rM6dvp" = "URL";
"ryJLwG" = "Post was sent successfully. ";

View File

@ -1,46 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>There are ${count} options matching ${content}. - 2</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>There are %#@count_option@ matching ${content}.</string>
<key>count_option</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>%ld</string>
<key>one</key>
<string>1 option</string>
<key>two</key>
<string>%ld options</string>
<key>many</key>
<string>%ld options</string>
<key>other</key>
<string>%ld options</string>
</dict>
</dict>
<key>There are ${count} options matching ${visibility}.</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>There are %#@count_option@ matching ${visibility}.</string>
<key>count_option</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>%ld</string>
<key>one</key>
<string>1 option</string>
<key>two</key>
<string>%ld options</string>
<key>many</key>
<string>%ld options</string>
<key>other</key>
<string>%ld options</string>
</dict>
</dict>
</dict>
</plist>

View File

@ -1,51 +0,0 @@
"16wxgf" = "Post on Mastodon";
"751xkl" = "Text Content";
"CsR7G2" = "Post on Mastodon";
"HZSGTr" = "What content to post?";
"HdGikU" = "Posting failed";
"KDNTJ4" = "Failure Reason";
"RHxKOw" = "Send Post with text content";
"RxSqsb" = "Գրառում";
"WCIR3D" = "Post ${content} on Mastodon";
"ZKJSNu" = "Գրառում";
"ZS1XaK" = "${content}";
"ZbSjzC" = "Տեսանելիութիւն";
"Zo4jgJ" = "Post Visibility";
"apSxMG-dYQ5NN" = "There are ${count} options matching Public.";
"apSxMG-ehFLjY" = "There are ${count} options matching Followers Only.";
"ayoYEb-dYQ5NN" = "${content}, Public";
"ayoYEb-ehFLjY" = "${content}, Followers Only";
"dUyuGg" = "Post on Mastodon";
"dYQ5NN" = "Հրապարակային";
"ehFLjY" = "Followers Only";
"gfePDu" = "Posting failed. ${failureReason}";
"k7dbKQ" = "Post was sent successfully.";
"oGiqmY-dYQ5NN" = "Just to confirm, you wanted Public?";
"oGiqmY-ehFLjY" = "Just to confirm, you wanted Followers Only?";
"rM6dvp" = "URL";
"ryJLwG" = "Post was sent successfully. ";

View File

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>There are ${count} options matching ${content}. - 2</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>There are %#@count_option@ matching ${content}.</string>
<key>count_option</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>%ld</string>
<key>one</key>
<string>1 option</string>
<key>other</key>
<string>%ld options</string>
</dict>
</dict>
<key>There are ${count} options matching ${visibility}.</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>There are %#@count_option@ matching ${visibility}.</string>
<key>count_option</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>%ld</string>
<key>one</key>
<string>1 տարբերակ</string>
<key>other</key>
<string>%ld տարբերակ</string>
</dict>
</dict>
</dict>
</plist>

View File

@ -4,13 +4,13 @@
"CsR7G2" = "Buat Postingan di Mastodon";
"HZSGTr" = "Konten apa yang ingin diposting?";
"HZSGTr" = "What content to post?";
"HdGikU" = "Gagal memposting";
"KDNTJ4" = "Alasan Kegagalan";
"RHxKOw" = "Kirim Postingan dengan konten berupa teks";
"RHxKOw" = "Send Post with text content";
"RxSqsb" = "Postingan";
@ -24,9 +24,9 @@
"Zo4jgJ" = "Visibilitas Postingan";
"apSxMG-dYQ5NN" = "Tidak ada ${count} opsi yang cocok dengan 'Publik'.";
"apSxMG-dYQ5NN" = "There are ${count} options matching Public.";
"apSxMG-ehFLjY" = "Tidak ada ${count} opsi yang cocok dengan 'Untuk Pengikut Saja'.";
"apSxMG-ehFLjY" = "There are ${count} options matching Followers Only.";
"ayoYEb-dYQ5NN" = "${content}, Publik";

View File

@ -5,7 +5,7 @@
<key>There are ${count} options matching ${content}. - 2</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>Ada %#@count_option@ yang cocok dengan ${content}.</string>
<string>There are %#@count_option@ matching ${content}.</string>
<key>count_option</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
@ -13,13 +13,13 @@
<key>NSStringFormatValueTypeKey</key>
<string>%ld</string>
<key>other</key>
<string>%ld opsi</string>
<string>%ld options</string>
</dict>
</dict>
<key>There are ${count} options matching ${visibility}.</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>Ada %#@count_option@ yang cocok dengan ${visibility}.</string>
<string>There are %#@count_option@ matching ${visibility}.</string>
<key>count_option</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
@ -27,7 +27,7 @@
<key>NSStringFormatValueTypeKey</key>
<string>%ld</string>
<key>other</key>
<string>%ld opsi</string>
<string>%ld options</string>
</dict>
</dict>
</dict>

View File

@ -4,13 +4,13 @@
"CsR7G2" = "Mastodonに投稿";
"HZSGTr" = "なにを投稿しますか?";
"HZSGTr" = "What content to post?";
"HdGikU" = "投稿に失敗しました";
"KDNTJ4" = "失敗の理由";
"RHxKOw" = "テキストコンテンツを投稿";
"RHxKOw" = "Send Post with text content";
"RxSqsb" = "投稿";

View File

@ -5,7 +5,7 @@
<key>There are ${count} options matching ${content}. - 2</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>「${content}」にマッチするオプションが %#@count_option@ あります。</string>
<string>There are %#@count_option@ matching ${content}.</string>
<key>count_option</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
@ -13,13 +13,13 @@
<key>NSStringFormatValueTypeKey</key>
<string>%ld</string>
<key>other</key>
<string>%ld </string>
<string>%ld options</string>
</dict>
</dict>
<key>There are ${count} options matching ${visibility}.</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>「${visibility}」にマッチするオプションが %#@count_option@ あります。</string>
<string>There are %#@count_option@ matching ${visibility}.</string>
<key>count_option</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
@ -27,7 +27,7 @@
<key>NSStringFormatValueTypeKey</key>
<string>%ld</string>
<key>other</key>
<string>%ld </string>
<string>%ld options</string>
</dict>
</dict>
</dict>

View File

@ -1,14 +1,14 @@
"16wxgf" = "Mastodon에 게시하기";
"16wxgf" = "Post on Mastodon";
"751xkl" = "Text Content";
"CsR7G2" = "Mastodon에 게시하기";
"CsR7G2" = "Post on Mastodon";
"HZSGTr" = "What content to post?";
"HdGikU" = "게시 실패";
"HdGikU" = "Posting failed";
"KDNTJ4" = "실패 원인";
"KDNTJ4" = "Failure Reason";
"RHxKOw" = "Send Post with text content";
@ -16,7 +16,7 @@
"WCIR3D" = "Post ${content} on Mastodon";
"ZKJSNu" = "게시";
"ZKJSNu" = "Post";
"ZS1XaK" = "${content}";

View File

@ -1,51 +1,51 @@
"16wxgf" = "Publicē Mastodon";
"16wxgf" = "Post on Mastodon";
"751xkl" = "Teksta Saturu";
"751xkl" = "Text Content";
"CsR7G2" = "Publicē Mastodon";
"CsR7G2" = "Post on Mastodon";
"HZSGTr" = "Kādu saturu publicēt?";
"HZSGTr" = "What content to post?";
"HdGikU" = "Publicēšana neizdevās";
"HdGikU" = "Posting failed";
"KDNTJ4" = "Neizdošanās Iemesls";
"KDNTJ4" = "Failure Reason";
"RHxKOw" = "Sūtīt Ziņu ar teksta saturu";
"RHxKOw" = "Send Post with text content";
"RxSqsb" = "Ziņa";
"WCIR3D" = "Publicēt ${content} Mastodon";
"WCIR3D" = "Post ${content} on Mastodon";
"ZKJSNu" = "Ziņa";
"ZKJSNu" = "Post";
"ZS1XaK" = "${content}";
"ZbSjzC" = "Redzamība";
"ZbSjzC" = "Visibility";
"Zo4jgJ" = "Ziņu Redzamība";
"Zo4jgJ" = "Post Visibility";
"apSxMG-dYQ5NN" = "Ir ${count} opcijas, kas atbilst “Publisks”.";
"apSxMG-dYQ5NN" = "There are ${count} options matching Public.";
"apSxMG-ehFLjY" = "Ir ${count} opcijas, kas atbilst “Tikai Sekotājiem”.";
"apSxMG-ehFLjY" = "There are ${count} options matching Followers Only.";
"ayoYEb-dYQ5NN" = "${content}, Publisks";
"ayoYEb-dYQ5NN" = "${content}, Public";
"ayoYEb-ehFLjY" = "${content}, Tikai Sekotājiem";
"ayoYEb-ehFLjY" = "${content}, Followers Only";
"dUyuGg" = "Publicē Mastodon";
"dUyuGg" = "Post on Mastodon";
"dYQ5NN" = "Publisks";
"ehFLjY" = "Tikai sekotājiem";
"gfePDu" = "Publicēšana neizdevās. ${failureReason}";
"gfePDu" = "Posting failed. ${failureReason}";
"k7dbKQ" = "Ziņa tika veiksmīgi nosūtīta.";
"k7dbKQ" = "Post was sent successfully.";
"oGiqmY-dYQ5NN" = "Tikai apstiprinājumam, tu vēlējies \"Publisks\"?";
"oGiqmY-dYQ5NN" = "Just to confirm, you wanted Public?";
"oGiqmY-ehFLjY" = "Tikai apstiprinājumam, tu vēlējies \"Tikai Sekotājiem\"?";
"oGiqmY-ehFLjY" = "Just to confirm, you wanted Followers Only?";
"rM6dvp" = "URL";
"ryJLwG" = "Ziņa tika veiksmīgi nosūtīta. ";
"ryJLwG" = "Post was sent successfully. ";

View File

@ -5,7 +5,7 @@
<key>There are ${count} options matching ${content}. - 2</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>Ir %#@count_option@, kas atbilst “${content}”.</string>
<string>There are %#@count_option@ matching ${content}.</string>
<key>count_option</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
@ -13,17 +13,17 @@
<key>NSStringFormatValueTypeKey</key>
<string>%ld</string>
<key>zero</key>
<string>%ld opciju</string>
<string>%ld options</string>
<key>one</key>
<string>1 opcija</string>
<string>1 option</string>
<key>other</key>
<string>%ld opcijas</string>
<string>%ld options</string>
</dict>
</dict>
<key>There are ${count} options matching ${visibility}.</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>Ir %#@count_option@, kas atbilst “${visibility}”.</string>
<string>There are %#@count_option@ matching ${visibility}.</string>
<key>count_option</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
@ -31,11 +31,11 @@
<key>NSStringFormatValueTypeKey</key>
<string>%ld</string>
<key>zero</key>
<string>%ld izvēles</string>
<string>%ld options</string>
<key>one</key>
<string>1 izvēle</string>
<string>1 option</string>
<key>other</key>
<string>%ld izvēles</string>
<string>%ld options</string>
</dict>
</dict>
</dict>

View File

@ -1,51 +0,0 @@
"16wxgf" = "Mastodon တွင် ပို့စ်တင်ရန်";
"751xkl" = "အကြောင်းအရာ";
"CsR7G2" = "Mastodon တွင် ပို့စ်တင်ရန်";
"HZSGTr" = "ဘယ်အကြောင်းအရာကို ပို့စ်တင်မလဲ?";
"HdGikU" = "ပို့စ်တင််ခြင်း မအောင်မြင်ပါ";
"KDNTJ4" = "မအောင်မြင်ရသည့် အကြောင်းပြချက်";
"RHxKOw" = "ပို့စ်ကို အကြောင်းအရာနှင့်တကွ တင်ရန်";
"RxSqsb" = "ပို့စ်";
"WCIR3D" = "${content} ကို Mastodon တွင် ပိုစ့်တင်ရန်";
"ZKJSNu" = "ပို့စ်";
"ZS1XaK" = "${content}";
"ZbSjzC" = "မြင်နိုင်မှု";
"Zo4jgJ" = "ပို့်စ်မြင်နိုင်မှု";
"apSxMG-dYQ5NN" = "Public နှင့် ကိုက်ညီသော ရွေးချယ်စရာ ${count} ခု ရှိသည်။";
"apSxMG-ehFLjY" = "Followers Only နှင့် ကိုက်ညီသော ရွေးချယ်စရာ ${count} ခု ရှိသည်။";
"ayoYEb-dYQ5NN" = "${content}, အများမြင်";
"ayoYEb-ehFLjY" = "${content}, စောင့်ကြည့်သူများ သီးသန့်";
"dUyuGg" = "Mastodon တွင် ပို့စ်တင်ရန်";
"dYQ5NN" = "အများမြင်";
"ehFLjY" = "စောင့်ကြည့်သူများသီးသန့်";
"gfePDu" = "ပို့စ်တင််ခြင်း မအောင်မြင်ပါ၊ ${failureReason}";
"k7dbKQ" = "ပို့စ်ကို အောင်မြင်စွာ ပို့ခဲ့သည်";
"oGiqmY-dYQ5NN" = "\"အများမြင်\" ကို ရွေးမည်် သေချာပါသလား?";
"oGiqmY-ehFLjY" = "\"စောင့်ကြည့်သူများသီးသန့်\" ကို ရွေးမည်် သေချာပါသလား?";
"rM6dvp" = "URL";
"ryJLwG" = "ပို့စ်ကို အောင်မြင်စွာ ပို့ခဲ့သည်";

View File

@ -1,34 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>There are ${count} options matching ${content}. - 2</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>${content} နှင့် ကိုက်ညီသော ရွေးချယ်စရာ %#@count_option@ ခု ရှိသည်။</string>
<key>count_option</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>%ld</string>
<key>other</key>
<string>ရွေးချယ်စရာ %ld ခု</string>
</dict>
</dict>
<key>There are ${count} options matching ${visibility}.</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>${visibility} နှင့် ကိုက်ညီသော ရွေးချယ်စရာ %#@count_option@ ခု ရှိသည်။</string>
<key>count_option</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>%ld</string>
<key>other</key>
<string>ရွေးချယ်စရာ %ld ခု</string>
</dict>
</dict>
</dict>
</plist>

View File

@ -42,9 +42,9 @@
"k7dbKQ" = "Het bericht is succesvol verzonden.";
"oGiqmY-dYQ5NN" = "Ter bevestiging: wilde je Openbaar?";
"oGiqmY-dYQ5NN" = "Wilde u Openbaar?";
"oGiqmY-ehFLjY" = "Ter bevestiging: wilde je Alleen volgers?";
"oGiqmY-ehFLjY" = "Wilde u Alleen Volgers?";
"rM6dvp" = "URL";

View File

@ -15,7 +15,7 @@
<key>one</key>
<string>1 optie</string>
<key>other</key>
<string>%ld opties</string>
<string>%ld options</string>
</dict>
</dict>
<key>There are ${count} options matching ${visibility}.</key>
@ -31,7 +31,7 @@
<key>one</key>
<string>1 optie</string>
<key>other</key>
<string>%ld opties</string>
<string>%ld options</string>
</dict>
</dict>
</dict>

View File

@ -1,51 +0,0 @@
"16wxgf" = "Dodaj post na Mastodon";
"751xkl" = "Treść tekstowa";
"CsR7G2" = "Postuj na Mastodonie";
"HZSGTr" = "Jaką zawartość postować?";
"HdGikU" = "Publikowanie nie powiodło się";
"KDNTJ4" = "Powód niepowodzenia";
"RHxKOw" = "Wyślij post z tekstem";
"RxSqsb" = "Wpis";
"WCIR3D" = "Postuj ${content} na Mastodonie";
"ZKJSNu" = "Postuj";
"ZS1XaK" = "${content}";
"ZbSjzC" = "Widoczność";
"Zo4jgJ" = "Widoczność postu";
"apSxMG-dYQ5NN" = "Istnieją ${count} opcje pasujące do „Publiczne”.";
"apSxMG-ehFLjY" = "Istnieje ${count} opcji pasujących do 'Tylko obserwujący'.";
"ayoYEb-dYQ5NN" = "${content}, Publiczny";
"ayoYEb-ehFLjY" = "${content}, Tylko obserwujący";
"dUyuGg" = "Postuj na Mastodonie";
"dYQ5NN" = "Publiczny";
"ehFLjY" = "Tylko dla obserwujących";
"gfePDu" = "Postowanie nie powiodło się. ${failureReason}";
"k7dbKQ" = "Wysłano post pomyślnie.";
"oGiqmY-dYQ5NN" = "Czy na pewno chciałeś 'Publiczne'?";
"oGiqmY-ehFLjY" = "Czy na pewno chcesz 'Tylko dla obserwujących'?";
"rM6dvp" = "Adres URL";
"ryJLwG" = "Wysłano post pomyślnie. ";

View File

@ -1,46 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>There are ${count} options matching ${content}. - 2</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>Jest %#@count_option@ pasujących do '${content}'.</string>
<key>count_option</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>%ld</string>
<key>one</key>
<string>%ld Opcja</string>
<key>few</key>
<string>%ld Opcji</string>
<key>many</key>
<string>%ld Opcji</string>
<key>other</key>
<string>%ld Opcje</string>
</dict>
</dict>
<key>There are ${count} options matching ${visibility}.</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>Jest %#@count_option@ pasujących do '${visibility}'.</string>
<key>count_option</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>%ld</string>
<key>one</key>
<string>%ld Opcja</string>
<key>few</key>
<string>%ld Opcji</string>
<key>many</key>
<string>%ld Opcji</string>
<key>other</key>
<string>%ld Opcje</string>
</dict>
</dict>
</dict>
</plist>

View File

@ -40,7 +40,7 @@
"gfePDu" = "Posting failed. ${failureReason}";
"k7dbKQ" = "Publicação correctamente enviada.";
"k7dbKQ" = "Post was sent successfully.";
"oGiqmY-dYQ5NN" = "Just to confirm, you wanted Public?";
@ -48,4 +48,4 @@
"rM6dvp" = "URL";
"ryJLwG" = "Publicação correctamente enviada. ";
"ryJLwG" = "Post was sent successfully. ";

View File

@ -24,9 +24,9 @@
"Zo4jgJ" = "การมองเห็นโพสต์";
"apSxMG-dYQ5NN" = "มี ${count} ตัวเลือกที่ตรงกับ ‘สาธารณะ’";
"apSxMG-dYQ5NN" = "มี ${count} ตัวเลือกที่ตรงกันกับ ‘สาธารณะ’";
"apSxMG-ehFLjY" = "มี ${count} ตัวเลือกที่ตรงกับ ‘ผู้ติดตามเท่านั้น’";
"apSxMG-ehFLjY" = "มี ${count} ตัวเลือกที่ตรงกันกับ ‘ผู้ติดตามเท่านั้น’";
"ayoYEb-dYQ5NN" = "${content}, สาธารณะ";

View File

@ -5,7 +5,7 @@
<key>There are ${count} options matching ${content}. - 2</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>มี %#@count_option@ ที่ตรงกับ ${content}</string>
<string>มี %#@count_option@ ที่ตรงกันกั${content}</string>
<key>count_option</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
@ -19,7 +19,7 @@
<key>There are ${count} options matching ${visibility}.</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>มี %#@count_option@ ที่ตรงกับ ${visibility}</string>
<string>มี %#@count_option@ ที่ตรงกันกั${visibility}</string>
<key>count_option</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>

View File

@ -1,51 +1,51 @@
"16wxgf" = "Поділитись в Mastodon";
"16wxgf" = "Post on Mastodon";
"751xkl" = "Текстовий вміст";
"751xkl" = "Text Content";
"CsR7G2" = "Поділитись в Mastodon";
"CsR7G2" = "Post on Mastodon";
"HZSGTr" = "Який зміст допису?";
"HZSGTr" = "What content to post?";
"HdGikU" = "Помилка при надсиланні";
"HdGikU" = "Posting failed";
"KDNTJ4" = "Причина помилки";
"KDNTJ4" = "Failure Reason";
"RHxKOw" = "Надіслати пост із текстом";
"RHxKOw" = "Send Post with text content";
"RxSqsb" = "Допис";
"RxSqsb" = "Post";
"WCIR3D" = "Опублікувати ${content} на Mastodon";
"WCIR3D" = "Post ${content} on Mastodon";
"ZKJSNu" = "Допис";
"ZKJSNu" = "Post";
"ZS1XaK" = "${content}";
"ZbSjzC" = "Видимість";
"ZbSjzC" = "Visibility";
"Zo4jgJ" = "Видимість допису";
"Zo4jgJ" = "Post Visibility";
"apSxMG-dYQ5NN" = "Знайдено ${count} варіантів, що задовольняють \"Публічні\".";
"apSxMG-dYQ5NN" = "There are ${count} options matching Public.";
"apSxMG-ehFLjY" = "Знайдено ${count} варіантів, які відповідають \"Тільки для підписників\".";
"apSxMG-ehFLjY" = "There are ${count} options matching Followers Only.";
"ayoYEb-dYQ5NN" = "${content}, публічний";
"ayoYEb-dYQ5NN" = "${content}, Public";
"ayoYEb-ehFLjY" = "${content}, тільки підписники";
"ayoYEb-ehFLjY" = "${content}, Followers Only";
"dUyuGg" = "Поділитись в Mastodon";
"dUyuGg" = "Post on Mastodon";
"dYQ5NN" = "Публічно";
"dYQ5NN" = "Public";
"ehFLjY" = "Тільки для підписників";
"ehFLjY" = "Followers Only";
"gfePDu" = "Помилка. ${failureReason}";
"gfePDu" = "Posting failed. ${failureReason}";
"k7dbKQ" = "Допис успішно відправлено.";
"k7dbKQ" = "Post was sent successfully.";
"oGiqmY-dYQ5NN" = "Вам дійсно потрібні \"Публічно\"?";
"oGiqmY-dYQ5NN" = "Just to confirm, you wanted Public?";
"oGiqmY-ehFLjY" = "Вам дійсно потрібні \"Тільки для підписників\"?";
"oGiqmY-ehFLjY" = "Just to confirm, you wanted Followers Only?";
"rM6dvp" = "URL";
"ryJLwG" = "Допис успішно відправлено. ";
"ryJLwG" = "Post was sent successfully. ";

View File

@ -5,7 +5,7 @@
<key>There are ${count} options matching ${content}. - 2</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>Знайдено %#@count_option@ відповідних '${content}.</string>
<string>There are %#@count_option@ matching ${content}.</string>
<key>count_option</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
@ -13,19 +13,19 @@
<key>NSStringFormatValueTypeKey</key>
<string>%ld</string>
<key>one</key>
<string>параметр</string>
<string>1 option</string>
<key>few</key>
<string>%ld параметри</string>
<string>%ld options</string>
<key>many</key>
<string>%ld параметрів</string>
<string>%ld options</string>
<key>other</key>
<string>%ld параметрів</string>
<string>%ld options</string>
</dict>
</dict>
<key>There are ${count} options matching ${visibility}.</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>Знайдено %#@count_option@ відповідних '${visibility}.</string>
<string>There are %#@count_option@ matching ${visibility}.</string>
<key>count_option</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
@ -33,13 +33,13 @@
<key>NSStringFormatValueTypeKey</key>
<string>%ld</string>
<key>one</key>
<string>параметр</string>
<string>1 option</string>
<key>few</key>
<string>%ld параметри</string>
<string>%ld options</string>
<key>many</key>
<string>%ld параметрів</string>
<string>%ld options</string>
<key>other</key>
<string>%ld параметрів</string>
<string>%ld options</string>
</dict>
</dict>
</dict>

View File

@ -53,7 +53,7 @@ extension Parser {
].joined()
let value = [
"\"",
pair.value.replacingOccurrences(of: "%s", with: "%@").replacingOccurrences(of: "\"", with: "\\\""),
pair.value.replacingOccurrences(of: "%s", with: "%@"),
"\""
].joined()
let line = [

View File

@ -1,3 +1,4 @@
import os.log
import Foundation
// conver i18n JSON templates to strings files
@ -11,13 +12,15 @@ private func convert(from inputDirectoryURL: URL, to outputDirectory: URL) {
for inputLanguageDirectoryURL in inputLanguageDirectoryURLs {
let language = inputLanguageDirectoryURL.lastPathComponent
guard let mappedLanguage = map(language: language) else { continue }
os_log("%{public}s[%{public}ld], %{public}s: process %s -> %s", ((#file as NSString).lastPathComponent), #line, #function, language, mappedLanguage)
let fileURLs = try FileManager.default.contentsOfDirectory(
at: inputLanguageDirectoryURL,
includingPropertiesForKeys: [.nameKey, .isDirectoryKey],
options: []
)
for jsonURL in fileURLs where jsonURL.pathExtension == "json" {
os_log("%{public}s[%{public}ld], %{public}s: process %s", ((#file as NSString).lastPathComponent), #line, #function, jsonURL.debugDescription)
let filename = jsonURL.deletingPathExtension().lastPathComponent
guard let (mappedFilename, keyStyle) = map(filename: filename) else { continue }
guard let bundle = bundle(filename: filename) else { continue }
@ -37,6 +40,7 @@ private func convert(from inputDirectoryURL: URL, to outputDirectory: URL) {
}
}
} catch {
os_log("%{public}s[%{public}ld], %{public}s: %s", ((#file as NSString).lastPathComponent), #line, #function, error.localizedDescription)
exit(1)
}
}
@ -70,9 +74,6 @@ private func map(language: String) -> String? {
case "th.lproj": return "th" // Thai
case "tr.lproj": return "tr" // Turkish
case "vi.lproj": return "vi" // Vietnamese
case "el.lproj": return "el" // Greek
case "be.lproj": return "be" // Belarussian
case "hy.lproj": return "hy" // Armenian
default: return nil
}
}
@ -100,6 +101,7 @@ private func process(url: URL, keyStyle: Parser.KeyStyle) throws -> String {
let strings = parser.generateStrings(keyStyle: keyStyle)
return strings
} catch {
os_log("%{public}s[%{public}ld], %{public}s: error: %s", ((#file as NSString).lastPathComponent), #line, #function, error.localizedDescription)
throw error
}
}
@ -116,13 +118,15 @@ private func move(from inputDirectoryURL: URL, to outputDirectoryURL: URL, pathE
let language = inputLanguageDirectoryURL.lastPathComponent
guard let mappedLanguage = map(language: language) else { continue }
let outputDirectoryURL = outputDirectoryURL.appendingPathComponent(mappedLanguage + ".lproj", isDirectory: true)
os_log("%{public}s[%{public}ld], %{public}s: process %s -> %s", ((#file as NSString).lastPathComponent), #line, #function, language, mappedLanguage)
let fileURLs = try FileManager.default.contentsOfDirectory(
at: inputLanguageDirectoryURL,
includingPropertiesForKeys: [.nameKey, .isDirectoryKey],
options: []
)
for dictURL in fileURLs where dictURL.pathExtension == pathExtension {
os_log("%{public}s[%{public}ld], %{public}s: process %s", ((#file as NSString).lastPathComponent), #line, #function, dictURL.debugDescription)
let filename = dictURL.deletingPathExtension().lastPathComponent
let outputFileURL = outputDirectoryURL.appendingPathComponent(filename).appendingPathExtension(pathExtension)
@ -131,6 +135,7 @@ private func move(from inputDirectoryURL: URL, to outputDirectoryURL: URL, pathE
}
}
} catch {
os_log("%{public}s[%{public}ld], %{public}s: %s", ((#file as NSString).lastPathComponent), #line, #function, error.localizedDescription)
exit(2)
}
}

View File

@ -71,7 +71,7 @@
<key>a11y.plural.count.characters_left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@character_count@</string>
<string>%#@character_count@ left</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
@ -79,15 +79,15 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>zero</key>
<string>no characters left</string>
<string>no characters</string>
<key>one</key>
<string>1 character left</string>
<string>1 character</string>
<key>few</key>
<string>%ld characters left</string>
<string>%ld characters</string>
<key>many</key>
<string>%ld characters left</string>
<string>%ld characters</string>
<key>other</key>
<string>%ld characters left</string>
<string>%ld characters</string>
</dict>
</dict>
<key>plural.count.followed_by_and_mutual</key>
@ -231,28 +231,6 @@
<string>%ld reblogs</string>
</dict>
</dict>
<key>plural.count.reblog_a11y</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@reblog_count@</string>
<key>reblog_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>zero</key>
<string>0 re-blogs</string>
<key>one</key>
<string>1 re-blog</string>
<key>few</key>
<string>%ld re-blogs</string>
<key>many</key>
<string>%ld re-blogs</string>
<key>other</key>
<string>%ld re-blogs</string>
</dict>
</dict>
<key>plural.count.reply</key>
<dict>
<key>NSStringLocalizedFormatKey</key>

View File

@ -15,6 +15,10 @@
"title": "Vote Failure",
"poll_ended": "The poll has ended"
},
"discard_post_content": {
"title": "Discard Draft",
"message": "Confirm to discard composed post content."
},
"publish_post_failure": {
"title": "Publish Failure",
"message": "Failed to publish the post.\nPlease check your internet connection.",
@ -47,29 +51,6 @@
"clean_cache": {
"title": "Clean Cache",
"message": "Successfully cleaned %s cache."
},
"translation_failed": {
"title": "Note",
"message": "Translation failed. Maybe the administrator has not enabled translations on this server or this server is running an older version of Mastodon where translations are not yet supported.",
"button": "OK"
},
"media_missing_alt_text": {
"title": "Media Missing Alt Text",
"message": "%d of your images are missing alt text.\nPost Anyway?",
"cancel": "Cancel",
"post": "Post"
},
"boost_a_post": {
"title_boost": "Boost Post?",
"title_unboost": "Unboost Post?",
"cancel": "Cancel",
"boost": "Boost",
"unboost": "Unboost"
},
"unfollow_user": {
"title": "Unfollow %@?",
"cancel": "Cancel",
"unfollow": "Unfollow"
}
},
"controls": {
@ -94,9 +75,9 @@
"save_photo": "Save Photo",
"copy_photo": "Copy Photo",
"sign_in": "Log in",
"sign_up": "Create account",
"see_more": "See More",
"preview": "Preview",
"copy": "Copy",
"share": "Share",
"share_user": "Share %s",
"share_post": "Share Post",
@ -110,26 +91,13 @@
"block_domain": "Block %s",
"unblock_domain": "Unblock %s",
"settings": "Settings",
"delete": "Delete",
"translate_post": {
"title": "Translate from %s",
"unknown_language": "Unknown"
},
"edit_post": "Edit",
"bookmark": "Bookmark",
"remove_bookmark": "Remove Bookmark",
"follow": "Follow %s",
"unfollow": "Unfollow %s"
"delete": "Delete"
},
"tabs": {
"home": "Home",
"search_and_explore": "Search and Explore",
"notifications": "Notifications",
"profile": "Profile",
"a11y": {
"search": "Search",
"explore": "Explore"
}
"search": "Search",
"notification": "Notification",
"profile": "Profile"
},
"keyboard": {
"common": {
@ -164,8 +132,6 @@
"sensitive_content": "Sensitive Content",
"media_content_warning": "Tap anywhere to reveal",
"tap_to_reveal": "Tap to reveal",
"load_embed": "Load Embed",
"link_via_user": "%s via %s",
"poll": {
"vote": "Vote",
"closed": "Closed"
@ -187,12 +153,7 @@
"show_image": "Show image",
"show_gif": "Show GIF",
"show_video_player": "Show video player",
"share_link_in_post": "Share Link in Post",
"tap_then_hold_to_show_menu": "Tap then hold to show menu",
"a11y_labels": {
"reblog": "Re-blog",
"unreblog": "Undo re-blog"
}
"tap_then_hold_to_show_menu": "Tap then hold to show menu"
},
"tag": {
"url": "URL",
@ -207,30 +168,6 @@
"private": "Only their followers can see this post.",
"private_from_me": "Only my followers can see this post.",
"direct": "Only mentioned user can see this post."
},
"translation": {
"translated_from": "Translated from %s using %s",
"unknown_language": "Unknown",
"unknown_provider": "Unknown",
"show_original": "Show Original"
},
"media": {
"accessibility_label": "%s, attachment %d of %d",
"expand_image_hint": "Expands the image. Double-tap and hold to show actions",
"expand_gif_hint": "Expands the GIF. Double-tap and hold to show actions",
"expand_video_hint": "Shows the video player. Double-tap and hold to show actions"
},
"posted_via_application": "%s via %s",
"buttons": {
"reblogs_title": "Reblogs",
"favorites_title": "Favorites",
"edit_history_title": "Edit History",
"edit_history_detail": "Last edit %s"
},
"edited_at_timestamp_prefix": "Edited %s",
"edit_history": {
"title": "Edit History",
"original_post": "Original Post · %s"
}
},
"friendship": {
@ -240,11 +177,10 @@
"pending": "Pending",
"block": "Block",
"block_user": "Block %s",
"block_domain": "Block domain %s",
"block_domain": "Block %s",
"unblock": "Unblock",
"unblock_user": "Unblock %s",
"blocked": "Blocked",
"domain_blocked": "Domain Blocked",
"mute": "Mute",
"mute_user": "Mute %s",
"unmute": "Unmute",
@ -274,49 +210,25 @@
"user_suspended_warning": "%ss account has been suspended."
}
}
},
"user_list": {
"no_verified_link": "No verified link",
"followers_count": "%@ followers"
}
},
"scene": {
"welcome": {
"log_in": "Log In",
"learn_more": "Learn more",
"join_default_server": "Join %@",
"pick_server": "Pick another server",
"separator": {
"or": "or"
},
"education": {
"mastodon": {
"title": "Welcome to Mastodon",
"description": "Mastodon is a decentralized social network, meaning no single company controls it. Its made up of many independently-run servers, all connected together."
},
"servers": {
"title": "What are servers?",
"description": "Every Mastodon account is hosted on a server — each with its own values, rules, & admins. No matter which one you pick, you can follow and interact with people on any server."
},
"a11y": {
"what_is_mastodon": {
"title": "What is Mastodon?"
}
}
}
"slogan": "Social networking\nback in your hands.",
"get_started": "Get Started",
"log_in": "Log In"
},
"login": {
"title": "Welcome back",
"subtitle": "Log you in on the server you created your account on.",
"server_search_field": {
"placeholder": "Enter URL or search for your server"
"placeholder": "Enter URL or search for your server"
}
},
"server_picker": {
"title": "Pick Server",
"title": "Mastodon is made of users in different servers.",
"subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.",
"button": {
"language": "Language",
"signup_speed": "Sign-up Speed",
"category": {
"all": "All",
"all_accessiblity_description": "Category: All",
@ -348,41 +260,18 @@
"finding_servers": "Finding available servers...",
"bad_network": "Something went wrong while loading the data. Check your internet connection.",
"no_results": "No results"
},
"signup_speed": {
"all": "All",
"instant": "Instant Sign-up",
"manually_reviewed": "Manual Review"
},
"language": {
"all": "All"
},
"search": {
"placeholder": "Search name or URL"
},
"no_server_selected_hint": "Well pick a server based on your language if you continue without making a selection."
},
"privacy": {
"title": "Privacy",
"description": "Although the Mastodon app does not collect any data, the server you sign up through may have a different policy. Take a minute to review and agree to the Mastodon app privacy policy and your servers privacy policy.",
"policy": {
"ios": "Privacy Policy - Mastodon for iOS",
"server": "Privacy Policy - %s"
},
"button": {
"confirm": "I Agree"
}
},
"register": {
"title": "Create Account",
"title": "Lets get you set up on %s",
"lets_get_you_set_up_on_domain": "Lets get you set up on %s",
"input": {
"avatar": {
"delete": "Delete"
},
"username": {
"placeholder": "username",
"duplicate_prompt": "This username is taken.",
"suggestion": "amazing_%@"
"duplicate_prompt": "This username is taken."
},
"display_name": {
"placeholder": "display name"
@ -392,7 +281,6 @@
},
"password": {
"placeholder": "password",
"confirmation_placeholder": "Confirm Password",
"require": "Your password needs at least:",
"character_limit": "8 characters",
"accessibility": {
@ -417,7 +305,7 @@
"reason": {
"blocked": "%s contains a disallowed email provider",
"unreachable": "%s does not seem to exist",
"taken": "%s is already taken. How about:",
"taken": "%s is already in use",
"reserved": "%s is a reserved keyword",
"accepted": "%s must be accepted",
"blank": "%s is required",
@ -435,37 +323,33 @@
}
},
"server_rules": {
"title": "Server Rules",
"subtitle": "By continuing, you agree to follow by the following rules set and enforced by the **%s** moderators.",
"title": "Some ground rules.",
"subtitle": "These are set and enforced by the %s moderators.",
"prompt": "By continuing, youre subject to the terms of service and privacy policy for %s.",
"terms_of_service": "terms of service",
"privacy_policy": "privacy policy",
"button": {
"confirm": "I Agree",
"disagree": "Disagree"
"confirm": "I Agree"
}
},
"confirm_email": {
"title": "Check Your Inbox",
"tap_the_link_we_emailed_to_you_to_verify_your_account": "Tap the link we sent you to verify %@. Well wait right here.",
"title": "One last thing.",
"subtitle": "Tap the link we emailed to you to verify your account.",
"tap_the_link_we_emailed_to_you_to_verify_your_account": "Tap the link we emailed to you to verify your account",
"button": {
"open_email_app": "Open Email App",
"resend": "Resend"
},
"dont_receive_email": {
"title": "Check your Email",
"title": "Check your email",
"description": "Check if your email address is correct as well as your junk folder if you havent.",
"resend_email": "Resend Email"
},
"open_email_app": {
"title": "Check your Inbox.",
"title": "Check your inbox.",
"description": "We just sent you an email. Check your junk folder if you havent.",
"mail": "Mail",
"open_email_client": "Open Email Client"
},
"didnt_get_link": {
"prefix": "Didnt get a link?",
"resend_in": "Resend (%@)",
"resend_now": "Resend now."
}
},
"home_timeline": {
@ -476,20 +360,19 @@
"published": "Published!",
"Publishing": "Publishing post...",
"accessibility": {
"logo_label": "Mastodon",
"logo_label": "Logo Button",
"logo_hint": "Tap to scroll to top and tap again to previous location"
}
}
},
"suggestion_account": {
"title": "Popular on Mastodon",
"follow_all": "Follow all"
"title": "Find People to Follow",
"follow_explain": "When you follow someone, youll see their posts in your home feed."
},
"compose": {
"title": {
"new_post": "New Post",
"new_reply": "New Reply",
"edit_post": "Edit Post"
"new_reply": "New Reply"
},
"media_selection": {
"camera": "Take Photo",
@ -513,7 +396,6 @@
"server_processing_state": "Server Processing..."
},
"poll": {
"title": "Poll",
"duration_time": "Duration: %s",
"thirty_minutes": "30 minutes",
"one_hour": "1 Hour",
@ -523,11 +405,7 @@
"seven_days": "7 Days",
"option_number": "Option %ld",
"the_poll_is_invalid": "The poll is invalid",
"the_poll_has_empty_option": "The poll has empty option",
"add_option": "Add Option",
"remove_option": "Remove Option",
"move_up": "Move Up",
"move_down": "Move Down"
"the_poll_has_empty_option": "The poll has empty option"
},
"content_warning": {
"placeholder": "Write an accurate warning here..."
@ -559,12 +437,6 @@
"toggle_content_warning": "Toggle Content Warning",
"append_attachment_entry": "Add Attachment - %s",
"select_visibility_entry": "Select Visibility - %s"
},
"language": {
"title": "Post Language",
"suggested": "Suggested",
"recent": "Recent",
"other": "Other Language…"
}
},
"profile": {
@ -572,16 +444,11 @@
"follows_you": "Follows You"
},
"dashboard": {
"my_posts": "posts",
"my_following": "following",
"my_followers": "followers",
"other_posts": "posts",
"other_following": "following",
"other_followers": "followers",
"familiar_followers": "mutuals"
"posts": "posts",
"following": "following",
"followers": "followers"
},
"fields": {
"joined": "Joined",
"add_row": "Add Row",
"placeholder": {
"label": "Label",
@ -623,14 +490,6 @@
"confirm_hide_reblogs": {
"title": "Hide Reblogs",
"message": "Confirm to hide reblogs"
},
"confirm_block_domain": {
"title": "Block domain",
"message": "Confirm to block domain %s"
},
"confirm_unblock_domain": {
"title": "Unblock domain",
"message": "Confirm to unblock domain %s"
}
},
"accessibility": {
@ -678,20 +537,16 @@
}
},
"searching": {
"posts": "Posts matching \"%s\"",
"people": "People matching \"%s\"",
"profile": "Go to @%s@%s",
"url": "Open URL in Mastodon",
"hashtag": "Go to #%s",
"no_user": {
"title": "No User Account Found",
"message": "There's no Useraccount \"%s\" on %s"
"segment": {
"all": "All",
"people": "People",
"hashtags": "Hashtags",
"posts": "Posts"
},
"empty_state": {
"no_results": "No results"
},
"recent_search": "Recent searches",
"clear_all": "Clear all",
"clear": "Clear"
}
},
@ -706,7 +561,7 @@
"intro": "These are the posts gaining traction in your corner of Mastodon."
},
"favorite": {
"title": "Favorites"
"title": "Your Favorites"
},
"notification": {
"title": {
@ -737,80 +592,60 @@
"title": "Post from %s"
},
"settings": {
"overview": {
"title": "Settings",
"general": "General",
"notifications": "Notifications",
"support_mastodon": "Support Mastodon",
"about_mastodon": "About Mastodon",
"server_details": "Server Details",
"logout": "Logout %@"
},
"about_mastodon": {
"title": "About",
"more_settings": "Even More Settings",
"contribute_to_mastodon": "Contribute to Mastodon",
"privacy_policy": "Privacy Policy",
"clear_media_storage": "Clear Media Storage"
},
"server_details": {
"about": "About",
"rules": "Rules",
"about_instance": {
"title": "Administrator",
"message_admin": "Message Admin",
"legal_notice": "A legal notice"
}
},
"general": {
"title": "General",
"title": "Settings",
"section": {
"appearance": {
"section_title": "Appearance",
"dark": "Dark",
"light": "Light",
"system": "Use Device Appearance"
"title": "Appearance",
"automatic": "Automatic",
"light": "Always Light",
"dark": "Always Dark"
},
"ask_before": {
"section_title": "Ask before…",
"posting_without_alt_text": "Posting without Alt Text",
"unfollowing_someone": "Unfollowing Someone",
"boosting_a_post": "Boosting a Post",
"deleting_a_post": "Deleting a Post"
"look_and_feel": {
"title": "Look and Feel",
"use_system": "Use System",
"really_dark": "Really Dark",
"sorta_dark": "Sorta Dark",
"light": "Light"
},
"design": {
"section_title": "Design",
"show_animations": "Play Animated Avatars and Emoji"
"notifications": {
"title": "Notifications",
"favorites": "Favorites my post",
"follows": "Follows me",
"boosts": "Reblogs my post",
"mentions": "Mentions me",
"trigger": {
"anyone": "anyone",
"follower": "a follower",
"follow": "anyone I follow",
"noone": "no one",
"title": "Notify me when"
}
},
"language": {
"section_title": "Language",
"default_post_language": "Default Post Language"
"preference": {
"title": "Preferences",
"true_black_dark_mode": "True black dark mode",
"disable_avatar_animation": "Disable animated avatars",
"disable_emoji_animation": "Disable animated emojis",
"using_default_browser": "Use default browser to open links",
"open_links_in_mastodon": "Open links in Mastodon"
},
"links": {
"section_title": "Links",
"open_in_mastodon": "Open in Mastodon",
"open_in_browser": "Open in Browser"
"boring_zone": {
"title": "The Boring Zone",
"account_settings": "Account Settings",
"terms": "Terms of Service",
"privacy": "Privacy Policy"
},
"spicy_zone": {
"title": "The Spicy Zone",
"clear": "Clear Media Cache",
"signout": "Sign Out"
}
},
"notifications": {
"title": "Notifications",
"policy": {
"title": "Get Notifications from",
"anyone": "Anyone",
"followers": "People who follow you",
"follow": "People you follow",
"noone": "No one"
},
"alert": {
"mentions_and_replies": "Mentions & Replies",
"boosts": "Boosts",
"favorites": "Favorites",
"new_followers": "New Followers"
},
"disabled": {
"notification_hint": "Turn on notifications from your device settings to see updates on your lock screen.",
"go_to_settings": "Go to Notification Settings"
}
"footer": {
"mastodon_description": "Mastodon is open source software. You can report issues on GitHub at %s (%s)"
},
"keyboard": {
"close_settings_window": "Close Settings Window"
}
},
"report": {
@ -880,67 +715,13 @@
"dismiss_account_switcher": "Dismiss Account Switcher",
"add_account": "Add Account"
},
"wizard": {
"new_in_mastodon": "New in Mastodon",
"multiple_account_switch_intro_description": "Switch between multiple accounts by holding the profile button.",
"accessibility_hint": "Double tap to dismiss this wizard"
},
"bookmark": {
"title": "Bookmarks"
},
"followed_tags": {
"title": "Followed Tags",
"header": {
"posts": "posts",
"participants": "participants",
"posts_today": "posts today"
},
"actions": {
"follow": "Follow",
"unfollow": "Unfollow"
}
}
},
"extension": {
"open_in": {
"invalid_link_error": "This doesn't seem to be a valid Mastodon link."
}
},
"widget": {
"common": {
"unsupported_widget_family": "Sorry but this Widget family is unsupported.",
"user_not_logged_in": "Please open Mastodon to log in to an Account."
},
"followers_count": {
"configuration_display_name": "Followers",
"configuration_description": "Show number of followers.",
"title": "FOLLOWERS",
"followers_today": "%s followers today"
},
"multiple_followers": {
"configuration_display_name": "Multiple followers",
"configuration_description": "Show number of followers for multiple accounts.",
"mock_user": {
"display_name": "Another follower",
"account_name": "another@follower.social"
}
},
"latest_followers": {
"configuration_display_name": "Latest followers",
"configuration_description": "Show latest followers.",
"title": "Latest followers",
"last_update": "Last update: %s"
},
"hashtag": {
"configuration": {
"display_name": "Hashtag",
"description": "Shows a recent post with the selected hashtag."
},
"not_found": {
"account_name": "John Mastodon",
"account": "@johnMastodon@no-such.account",
"content": "Sorry, we couldnt find any posts with the hashtag <a>#%@</a>. Please try a <a>#DifferentHashtag</a> or check the widget settings."
},
"placeholder": {
"account_name": "John Mastodon",
"account": "@johnMastodon@no-such.account",
"content": "This is how a post with a <a>#hashtag</a> would look. Pick whichever <a>#hashtag</a> you want in the widget settings."
}
}
}
}

View File

@ -1,481 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>a11y.plural.count.unread.notification</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@notification_count_unread_notification@</string>
<key>notification_count_unread_notification</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 notificación no leyida</string>
<key>other</key>
<string>%ld notificacions no leyidas</string>
</dict>
</dict>
<key>a11y.plural.count.input_limit_exceeds</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>Limite de dentrada superau en %#@character_count@ caracters</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 caracter</string>
<key>other</key>
<string>%ld caracters</string>
</dict>
</dict>
<key>a11y.plural.count.input_limit_remains</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>Limite de dentrada restante: %#@character_count@ caracters</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 caracter</string>
<key>other</key>
<string>%ld caracters</string>
</dict>
</dict>
<key>a11y.plural.count.characters_left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@character_count@</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 character left</string>
<key>other</key>
<string>%ld characters left</string>
</dict>
</dict>
<key>plural.count.followed_by_and_mutual</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@names@%#@count_mutual@</string>
<key>names</key>
<dict>
<key>one</key>
<string></string>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>other</key>
<string></string>
</dict>
<key>count_mutual</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>Seguiu per %1$@ y unatro mutuo</string>
<key>other</key>
<string>Seguiu per %1$@ y %ld mutuos</string>
</dict>
</dict>
<key>plural.count.metric_formatted.post</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%@ %#@post_count@</string>
<key>post_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>publicación</string>
<key>other</key>
<string>publicacions</string>
</dict>
</dict>
<key>plural.count.media</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@media_count@</string>
<key>media_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 media</string>
<key>other</key>
<string>%ld media</string>
</dict>
</dict>
<key>plural.count.post</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@post_count@</string>
<key>post_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 publicación</string>
<key>other</key>
<string>%ld publicacions</string>
</dict>
</dict>
<key>plural.count.favorite</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@favorite_count@</string>
<key>favorite_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 favorito</string>
<key>other</key>
<string>%ld favoritos</string>
</dict>
</dict>
<key>plural.count.reblog</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@reblog_count@</string>
<key>reblog_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 reblogueo</string>
<key>other</key>
<string>%ld reblogueos</string>
</dict>
</dict>
<key>plural.count.reblog_a11y</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@reblog_count@</string>
<key>reblog_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 re-blog</string>
<key>other</key>
<string>%ld re-blogs</string>
</dict>
</dict>
<key>plural.count.reply</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@reply_count@</string>
<key>reply_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 respuesta</string>
<key>other</key>
<string>%ld respuestas</string>
</dict>
</dict>
<key>plural.count.vote</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@vote_count@</string>
<key>vote_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 voto</string>
<key>other</key>
<string>%ld votos</string>
</dict>
</dict>
<key>plural.count.voter</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@voter_count@</string>
<key>voter_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 votante</string>
<key>other</key>
<string>%ld votantes</string>
</dict>
</dict>
<key>plural.people_talking</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_people_talking@</string>
<key>count_people_talking</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 persona charrando</string>
<key>other</key>
<string>%ld personas son charrando d'esto</string>
</dict>
</dict>
<key>plural.count.following</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_following@</string>
<key>count_following</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 seguindo</string>
<key>other</key>
<string>%ld seguindo</string>
</dict>
</dict>
<key>plural.count.follower</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_follower@</string>
<key>count_follower</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 seguidor</string>
<key>other</key>
<string>%ld seguidores</string>
</dict>
</dict>
<key>date.year.left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_year_left@</string>
<key>count_year_left</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 anyo restante</string>
<key>other</key>
<string>%ld anyos restantes</string>
</dict>
</dict>
<key>date.month.left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_month_left@</string>
<key>count_month_left</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 mes restante</string>
<key>other</key>
<string>%ld meses restantes</string>
</dict>
</dict>
<key>date.day.left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_day_left@</string>
<key>count_day_left</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 día restante</string>
<key>other</key>
<string>%ld días restantes</string>
</dict>
</dict>
<key>date.hour.left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_hour_left@</string>
<key>count_hour_left</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 hora restante</string>
<key>other</key>
<string>%ld horas restantes</string>
</dict>
</dict>
<key>date.minute.left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_minute_left@</string>
<key>count_minute_left</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 minuto restant</string>
<key>other</key>
<string>%ld minutos restants</string>
</dict>
</dict>
<key>date.second.left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_second_left@</string>
<key>count_second_left</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 segundo restante</string>
<key>other</key>
<string>%ld segundos restantes</string>
</dict>
</dict>
<key>date.year.ago.abbr</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_year_ago_abbr@</string>
<key>count_year_ago_abbr</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>Fa 1 anyo</string>
<key>other</key>
<string>Fa %ld anyos</string>
</dict>
</dict>
<key>date.month.ago.abbr</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_month_ago_abbr@</string>
<key>count_month_ago_abbr</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>Fa 1 mes</string>
<key>other</key>
<string>Fa %ld meses</string>
</dict>
</dict>
<key>date.day.ago.abbr</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_day_ago_abbr@</string>
<key>count_day_ago_abbr</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>Fa 1 día</string>
<key>other</key>
<string>Fa %ld días</string>
</dict>
</dict>
<key>date.hour.ago.abbr</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_hour_ago_abbr@</string>
<key>count_hour_ago_abbr</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>Fa 1 h</string>
<key>other</key>
<string>Fa %ld h</string>
</dict>
</dict>
<key>date.minute.ago.abbr</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_minute_ago_abbr@</string>
<key>count_minute_ago_abbr</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>Fa 1 min</string>
<key>other</key>
<string>Fa %ld min</string>
</dict>
</dict>
<key>date.second.ago.abbr</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_second_ago_abbr@</string>
<key>count_second_ago_abbr</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>Fa 1 s</string>
<key>other</key>
<string>Fa %ld s</string>
</dict>
</dict>
</dict>
</plist>

View File

@ -1,945 +0,0 @@
{
"common": {
"alerts": {
"common": {
"please_try_again": "Per favor, torna a intentar-lo.",
"please_try_again_later": "Per favor, torna a intentar-lo mas enta debant."
},
"sign_up_failure": {
"title": "Error en rechistrar-se"
},
"server_error": {
"title": "Error d'o servidor"
},
"vote_failure": {
"title": "Voto fallido",
"poll_ended": "La enquesta ha rematau"
},
"publish_post_failure": {
"title": "Error de publicación",
"message": "No s'ha puesto publicar la publicación. Per favor, revise la suya connexión a internet.",
"attachments_message": {
"video_attach_with_photo": "No puetz adchuntar un video a una publicación que ya contiene imachens.",
"more_than_one_video": "No puetz adchuntar mas d'un video."
}
},
"edit_profile_failure": {
"title": "Error en a Edición d'o Perfil",
"message": "No s'ha puesto editar lo perfil. Per favor, intenta-lo de nuevo."
},
"sign_out": {
"title": "Zarrar Sesión",
"message": "Yes seguro de que quiers zarrar la sesión?",
"confirm": "Zarrar Sesión"
},
"block_domain": {
"title": "Yes realment seguro, de verdat, que quiers blocar %s a lo completo? En a mayoría d'os casos, uns pocos bloqueyos u silenciaus concretos son suficients y preferibles. No veyerás conteniu d'ixe dominio y totz los tuyos seguidores d'ixe dominio serán eliminaus.",
"block_entire_domain": "Blocar Dominio"
},
"save_photo_failure": {
"title": "Error en Alzar Foto",
"message": "Per favor, activa lo permiso d'acceso a la biblioteca de fotos pa alzar la foto."
},
"delete_post": {
"title": "Yes seguro de que quiers eliminar esta publicación?",
"message": "Yes seguro de que quiers borrar esta publicación?"
},
"clean_cache": {
"title": "Limpiar Caché",
"message": "S'ha limpiau con exito %s de caché."
},
"translation_failed": {
"title": "Note",
"message": "Translation failed. Maybe the administrator has not enabled translations on this server or this server is running an older version of Mastodon where translations are not yet supported.",
"button": "OK"
},
"media_missing_alt_text": {
"title": "Media Missing Alt Text",
"message": "%d of your images are missing alt text.\nPost Anyway?",
"cancel": "Cancel",
"post": "Post"
},
"boost_a_post": {
"title_boost": "Boost Post?",
"title_unboost": "Unboost Post?",
"cancel": "Cancel",
"boost": "Boost",
"unboost": "Unboost"
},
"unfollow_user": {
"title": "Unfollow %@?",
"cancel": "Cancel",
"unfollow": "Unfollow"
}
},
"controls": {
"actions": {
"back": "Dezaga",
"next": "Siguient",
"previous": "Anterior",
"open": "Ubrir",
"add": "Anyadir",
"remove": "Eliminar",
"edit": "Editar",
"save": "Alzar",
"ok": "Acceptar",
"done": "Feito",
"confirm": "Confirmar",
"continue": "Continar",
"compose": "Redactar",
"cancel": "Cancelar",
"discard": "Descartar",
"try_again": "Intenta-lo de nuevo",
"take_photo": "Prener foto",
"save_photo": "Alzar foto",
"copy_photo": "Copiar foto",
"sign_in": "Iniciar sesión",
"see_more": "Veyer mas",
"preview": "Vista previa",
"copy": "Copy",
"share": "Compartir",
"share_user": "Compartir %s",
"share_post": "Compartir publicación",
"open_in_safari": "Ubrir en Safari",
"open_in_browser": "Ubrir en o navegador",
"find_people": "Troba chent a la quala seguir",
"manually_search": "Millor fer una busqueda manual",
"skip": "Omitir",
"reply": "Responder",
"report_user": "Reportar a %s",
"block_domain": "Blocar %s",
"unblock_domain": "Desbloquiar %s",
"settings": "Configuración",
"delete": "Borrar",
"translate_post": {
"title": "Translate from %s",
"unknown_language": "Unknown"
},
"edit_post": "Edit",
"bookmark": "Bookmark",
"remove_bookmark": "Remove Bookmark",
"follow": "Follow %s",
"unfollow": "Unfollow %s"
},
"tabs": {
"home": "Inicio",
"search_and_explore": "Search and Explore",
"notifications": "Notificacions",
"profile": "Perfil",
"a11y": {
"search": "Search",
"explore": "Explore"
}
},
"keyboard": {
"common": {
"switch_to_tab": "Cambiar a %s",
"compose_new_post": "Escribir Nueva Publicación",
"show_favorites": "Amostrar Favoritos",
"open_settings": "Ubrir Configuración"
},
"timeline": {
"previous_status": "Publicación Anterior",
"next_status": "Siguient Publicación",
"open_status": "Ubrir Publicación",
"open_author_profile": "Ubrir Perfil de l'Autor",
"open_reblogger_profile": "Ubrir Perfil d'o Reblogueador",
"reply_status": "Responder Publicación",
"toggle_reblog": "Commutar lo Reblogueo en a Publicación",
"toggle_favorite": "Commutar la Marca de Favorito en a Publicación",
"toggle_content_warning": "Alternar l'Alvertencia de Conteniu",
"preview_image": "Previsualizar Imachen"
},
"segmented_control": {
"previous_section": "Sección Anterior",
"next_section": "Siguient Sección"
}
},
"status": {
"user_reblogged": "%s lo reblogueó",
"user_replied_to": "En respuesta a %s",
"show_post": "Amostrar Publicación",
"show_user_profile": "Amostrar perfil de l'usuario",
"content_warning": "Alvertencia de Conteniu",
"sensitive_content": "Conteniu sensible",
"media_content_warning": "Preta en qualsequier puesto pa amostrar",
"tap_to_reveal": "Tocar pa revelar",
"load_embed": "Load Embed",
"link_via_user": "%s via %s",
"poll": {
"vote": "Vota",
"closed": "Zarrau"
},
"meta_entity": {
"url": "Vinclo: %s",
"hashtag": "Hashtag: %s",
"mention": "Amostrar lo perfil: %s",
"email": "Adreza de correu: %s"
},
"actions": {
"reply": "Responder",
"reblog": "Rebloguear",
"unreblog": "Desfer reblogueo",
"favorite": "Favorito",
"unfavorite": "No favorito",
"menu": "Menú",
"hide": "Amagar",
"show_image": "Amostrar imachen",
"show_gif": "Amostrar GIF",
"show_video_player": "Amostrar reproductor de video",
"share_link_in_post": "Share Link in Post",
"tap_then_hold_to_show_menu": "Toca, dimpués mantiene pa amostrar lo menú",
"a11y_labels": {
"reblog": "Re-blog",
"unreblog": "Undo re-blog"
}
},
"tag": {
"url": "URL",
"mention": "Mención",
"link": "Vinclo",
"hashtag": "Etiqueta",
"email": "E-mail",
"emoji": "Emoji"
},
"visibility": {
"unlisted": "Totz pueden veyer este post pero no amostrar-lo en una linia de tiempo publica.",
"private": "Nomás los suyos seguidores pueden veyer este mensache.",
"private_from_me": "Nomás los míos seguidores pueden veyer este mensache.",
"direct": "Nomás l'usuario mencionau puede veyer este mensache."
},
"translation": {
"translated_from": "Translated from %s using %s",
"unknown_language": "Unknown",
"unknown_provider": "Unknown",
"show_original": "Show Original"
},
"media": {
"accessibility_label": "%s, attachment %d of %d",
"expand_image_hint": "Expands the image. Double-tap and hold to show actions",
"expand_gif_hint": "Expands the GIF. Double-tap and hold to show actions",
"expand_video_hint": "Shows the video player. Double-tap and hold to show actions"
},
"posted_via_application": "%s via %s",
"buttons": {
"reblogs_title": "Reblogs",
"favorites_title": "Favorites",
"edit_history_title": "Edit History",
"edit_history_detail": "Last edit %s"
},
"edited_at_timestamp_prefix": "Edited %s",
"edit_history": {
"title": "Edit History",
"original_post": "Original Post · %s"
}
},
"friendship": {
"follow": "Seguir",
"following": "Seguindo",
"request": "Solicitut",
"pending": "Pendient",
"block": "Blocar",
"block_user": "Blocar a %s",
"block_domain": "Block domain %s",
"unblock": "Desbloquiar",
"unblock_user": "Desbloquiar a %s",
"blocked": "Blocau",
"domain_blocked": "Domain Blocked",
"mute": "Silenciar",
"mute_user": "Silenciar a %s",
"unmute": "Desmutear",
"unmute_user": "Desmutear a %s",
"muted": "Silenciau",
"edit_info": "Editar Info",
"show_reblogs": "Amostrar los retuts",
"hide_reblogs": "Amagar los reblogs"
},
"timeline": {
"filtered": "Filtrau",
"timestamp": {
"now": "Agora"
},
"loader": {
"load_missing_posts": "Cargar publicacions faltantes",
"loading_missing_posts": "Cargando publicacions faltantes...",
"show_more_replies": "Amostrar mas respuestas"
},
"header": {
"no_status_found": "No s'ha trobau garra publicación",
"blocking_warning": "No puetz veyer lo perfil d'este usuario\n dica que lo desbloqueyes.\nLo tuyo perfil se veye asinas pa ell.",
"user_blocking_warning": "No puetz veyer lo perfil de %s\n dica que lo desbloqueyes.\nLo tuyo perfil se veye asinas pa ell.",
"blocked_warning": "No puetz veyer lo perfil d'este usuario\n dica que te desbloqueye.",
"user_blocked_warning": "No puetz veyer lo perfil de %s\n dica que te desbloqueye.",
"suspended_warning": "Este usuario ha estau suspendiu.",
"user_suspended_warning": "La cuenta de %s ha estau suspendida."
}
}
},
"user_list": {
"no_verified_link": "No verified link",
"followers_count": "%@ followers"
}
},
"scene": {
"welcome": {
"log_in": "Iniciar sesión",
"learn_more": "Learn more",
"join_default_server": "Join %@",
"pick_server": "Pick another server",
"separator": {
"or": "or"
},
"education": {
"mastodon": {
"title": "Welcome to Mastodon",
"description": "Mastodon is a decentralized social network, meaning no single company controls it. Its made up of many independently-run servers, all connected together."
},
"servers": {
"title": "What are servers?",
"description": "Every Mastodon account is hosted on a server — each with its own values, rules, & admins. No matter which one you pick, you can follow and interact with people on any server."
},
"a11y": {
"what_is_mastodon": {
"title": "What is Mastodon?"
}
}
}
},
"login": {
"title": "Welcome back",
"subtitle": "Dentrar en o servidor an que creyiés la cuenta.",
"server_search_field": {
"placeholder": "Escribir la URL u buscar lo tuyo servidor"
}
},
"server_picker": {
"title": "Pick Server",
"button": {
"language": "Language",
"signup_speed": "Sign-up Speed",
"category": {
"all": "Totas",
"all_accessiblity_description": "Categoría: Totas",
"academia": "academicos",
"activism": "activismo",
"food": "minchada",
"furry": "furry",
"games": "chuegos",
"general": "cheneral",
"journalism": "periodismo",
"lgbt": "lgbt",
"regional": "rechional",
"art": "arte",
"music": "mosica",
"tech": "tecnolochía"
},
"see_less": "Veyer Menos",
"see_more": "Veyer Más"
},
"label": {
"language": "IDIOMA",
"users": "USUARIOS",
"category": "CATEGORÍA"
},
"input": {
"search_servers_or_enter_url": "Mirar comunidatz u escribir URL"
},
"empty_state": {
"finding_servers": "Trobando servidors disponibles...",
"bad_network": "Bella cosa ha iu malament en cargar los datos. Compreba la tuya connexión a Internet.",
"no_results": "Sin resultaus"
},
"signup_speed": {
"all": "All",
"instant": "Instant Sign-up",
"manually_reviewed": "Manual Review"
},
"language": {
"all": "All"
},
"search": {
"placeholder": "Search name or URL"
},
"no_server_selected_hint": "Well pick a server based on your language if you continue without making a selection."
},
"privacy": {
"title": "Privacy",
"description": "Although the Mastodon app does not collect any data, the server you sign up through may have a different policy. Take a minute to review and agree to the Mastodon app privacy policy and your servers privacy policy.",
"policy": {
"ios": "Privacy Policy - Mastodon for iOS",
"server": "Privacy Policy - %s"
},
"button": {
"confirm": "I Agree"
}
},
"register": {
"title": "Create Account",
"input": {
"avatar": {
"delete": "Borrar"
},
"username": {
"placeholder": "nombre d'usuario",
"duplicate_prompt": "Este nombre d'usuario ya ye en uso.",
"suggestion": "amazing_%@"
},
"display_name": {
"placeholder": "nombre a amostrar"
},
"email": {
"placeholder": "correu electronico"
},
"password": {
"placeholder": "clau",
"confirmation_placeholder": "Confirm Password",
"require": "La tuya clau ha de contener como minimo:",
"character_limit": "8 caracters",
"accessibility": {
"checked": "marcau",
"unchecked": "sin marcar"
},
"hint": "La tuya clau ameneste tener a lo menos ueito caracters"
},
"invite": {
"registration_user_invite_request": "Per qué quiers unir-te?"
}
},
"error": {
"item": {
"username": "Nombre d'usuario",
"email": "Correu electronico",
"password": "Clau",
"agreement": "Acceptación",
"locale": "Idioma",
"reason": "Motivo"
},
"reason": {
"blocked": "%s contiene un furnidor de correu no permitiu",
"unreachable": "%s pareixe no existir",
"taken": "%s is already taken. How about:",
"reserved": "%s ye una parola clau reservada",
"accepted": "%s ha d'estar acceptau",
"blank": "Se requiere %s",
"invalid": "%s no ye valido",
"too_long": "%s ye masiau largo",
"too_short": "%s ye masiau tallo",
"inclusion": "%s no ye una valor admitida"
},
"special": {
"username_invalid": "Lo nombre d'usuario solo puede contener caracters alfanumericos y guións baixos",
"username_too_long": "Lo nombre d'usuario ye masiau largo (no puede tener mas de 30 caracters)",
"email_invalid": "Esta no ye una adreza de correu electronico valida",
"password_too_short": "La clau ye masiau curta (ha de tener a lo menos 8 caracters)"
}
}
},
"server_rules": {
"title": "Server Rules",
"subtitle": "By continuing, you agree to follow by the following rules set and enforced by the **%s** moderators.",
"prompt": "Si continas serás sucheto a los termins de servicio y la politica de privacidat de %s.",
"terms_of_service": "termins d'o servicio",
"privacy_policy": "politica de privacidat",
"button": {
"confirm": "I Agree",
"disagree": "Disagree"
}
},
"confirm_email": {
"title": "Check Your Inbox",
"tap_the_link_we_emailed_to_you_to_verify_your_account": "Tap the link we sent you to verify %@. Well wait right here.",
"button": {
"resend": "Reninviar"
},
"dont_receive_email": {
"title": "Check your Email",
"description": "Compreba que la tuya adreza de correu electronico sía correcta y revisa la carpeta de correu no deseyau si no l'has feito ya.",
"resend_email": "Tornar a Ninviar Correu Electronico"
},
"open_email_app": {
"title": "Check your Inbox.",
"description": "T'acabamos de ninviar un correu electronico. Revisa la tuya carpeta de correu no deseyau si no l'has feito ya.",
"mail": "Correu",
"open_email_client": "Ubrir Client de Correu Electronico"
},
"didnt_get_link": {
"prefix": "Didnt get a link?",
"resend_in": "Resend (%@)",
"resend_now": "Resend now."
}
},
"home_timeline": {
"title": "Inicio",
"navigation_bar_state": {
"offline": "Sin Connexión",
"new_posts": "Veyer nuevas publicacions",
"published": "Publicau!",
"Publishing": "Publicación en curso...",
"accessibility": {
"logo_label": "Mastodon",
"logo_hint": "Toca pa desplazar-te enta alto y toca de nuevo pa la localización anterior"
}
}
},
"suggestion_account": {
"title": "Popular on Mastodon",
"follow_all": "Follow all"
},
"compose": {
"title": {
"new_post": "Nueva Publicación",
"new_reply": "Nueva Respuesta",
"edit_post": "Edit Post"
},
"media_selection": {
"camera": "Fer Foto",
"photo_library": "Galería de Fotos",
"browse": "Explorar"
},
"content_input_placeholder": "Escribe u apega lo que tiengas en mente",
"compose_action": "Publicar",
"replying_to_user": "en respuesta a %s",
"attachment": {
"photo": "foto",
"video": "video",
"attachment_broken": "Este %s ye roto y no puede\npuyar-se a Mastodon.",
"description_photo": "Describe la foto pa los usuarios con dificultat visual...",
"description_video": "Describe lo video pa los usuarios con dificultat visual...",
"load_failed": "Fallo de carga",
"upload_failed": "Fallo de carga",
"can_not_recognize_this_media_attachment": "No se puede reconocer este adchunto multimedia",
"attachment_too_large": "Adchunto masiau gran",
"compressing_state": "Comprimindo...",
"server_processing_state": "Lo servidor ye procesando..."
},
"poll": {
"title": "Poll",
"duration_time": "Duración: %s",
"thirty_minutes": "30 minutos",
"one_hour": "1 Hora",
"six_hours": "6 Horas",
"one_day": "1 Día",
"three_days": "3 Días",
"seven_days": "7 Días",
"option_number": "Opción %ld",
"the_poll_is_invalid": "La enquesta ye invalida",
"the_poll_has_empty_option": "La enquesta tiene opcions vuedas",
"add_option": "Add Option",
"remove_option": "Remove Option",
"move_up": "Move Up",
"move_down": "Move Down"
},
"content_warning": {
"placeholder": "Escribe una alvertencia precisa aquí..."
},
"visibility": {
"public": "Publica",
"unlisted": "Sin listar",
"private": "Solo seguidores",
"direct": "Solo la chent que yo menciono"
},
"auto_complete": {
"space_to_add": "Espacio pa anyadir"
},
"accessibility": {
"append_attachment": "Anyadir Adchunto",
"append_poll": "Anyadir Enqüesta",
"remove_poll": "Eliminar Enqüesta",
"custom_emoji_picker": "Selector de Emojis Personalizaus",
"enable_content_warning": "Activar Alvertencia de Conteniu",
"disable_content_warning": "Desactivar Alvertencia de Conteniu",
"post_visibility_menu": "Menú de Visibilidat d'a Publicación",
"post_options": "Opcions d'o tut",
"posting_as": "Publicando como %s"
},
"keyboard": {
"discard_post": "Descartar Publicación",
"publish_post": "Publicar",
"toggle_poll": "Commutar Enqüesta",
"toggle_content_warning": "Commutar Alvertencia de Conteniu",
"append_attachment_entry": "Anyadir Adchunto - %s",
"select_visibility_entry": "Triar Visibilidat - %s"
},
"language": {
"title": "Post Language",
"suggested": "Suggested",
"recent": "Recent",
"other": "Other Language…"
}
},
"profile": {
"header": {
"follows_you": "Te sigue"
},
"dashboard": {
"my_posts": "posts",
"my_following": "following",
"my_followers": "followers",
"other_posts": "posts",
"other_following": "following",
"other_followers": "followers",
"familiar_followers": "mutuals"
},
"fields": {
"joined": "Joined",
"add_row": "Anyadir Ringlera",
"placeholder": {
"label": "Nombre pa lo campo",
"content": "Conteniu"
},
"verified": {
"short": "Verificau en %s",
"long": "La propiedat d'este vinclo ha estau verificada lo %s"
}
},
"segmented_control": {
"posts": "Publicacions",
"replies": "Respuestas",
"posts_and_replies": "Publicacions y respuestas",
"media": "Multimedia",
"about": "Sobre"
},
"relationship_action_alert": {
"confirm_mute_user": {
"title": "Silenciar cuenta",
"message": "Confirmar pa silenciar %s"
},
"confirm_unmute_user": {
"title": "Deixar de Silenciar Cuenta",
"message": "Confirmar pa deixar de silenciar a %s"
},
"confirm_block_user": {
"title": "Blocar cuenta",
"message": "Confirmar pa blocar a %s"
},
"confirm_unblock_user": {
"title": "Desbloquiar cuenta",
"message": "Confirmar pa desbloquiar a %s"
},
"confirm_show_reblogs": {
"title": "Amostrar los reblogs",
"message": "Confimrar pa amostrar los reblogs"
},
"confirm_hide_reblogs": {
"title": "Amagar los reblogs",
"message": "Comfirmar pa amagar los reblogs"
},
"confirm_block_domain": {
"title": "Block domain",
"message": "Confirm to block domain %s"
},
"confirm_unblock_domain": {
"title": "Unblock domain",
"message": "Confirm to unblock domain %s"
}
},
"accessibility": {
"show_avatar_image": "Amostrar imachen d'o avatar",
"edit_avatar_image": "Editar imachen d'o avatar",
"show_banner_image": "Amostrar imachen de banner",
"double_tap_to_open_the_list": "Preta dos vegadas pa ubrir la lista"
}
},
"follower": {
"title": "seguidor",
"footer": "No s'amuestran los seguidores d'atros servidors."
},
"following": {
"title": "seguindo",
"footer": "No s'amuestran los seguius d'atros servidors."
},
"familiarFollowers": {
"title": "Seguidores que conoixes",
"followed_by_names": "Seguiu per %s"
},
"favorited_by": {
"title": "Feito favorito per"
},
"reblogged_by": {
"title": "Reblogueado per"
},
"search": {
"title": "Buscar",
"search_bar": {
"placeholder": "Buscar etiquetas y usuarios",
"cancel": "Cancelar"
},
"recommend": {
"button_text": "Veyer Totas",
"hash_tag": {
"title": "Tendencias en Mastodon",
"description": "Etiquetas que son recibindo pro atención",
"people_talking": "%s personas son charrando d'esto"
},
"accounts": {
"title": "Cuentas que talment quieras seguir",
"description": "Puede que faiga goyo seguir estas cuentas",
"follow": "Seguir"
}
},
"searching": {
"posts": "Posts matching \"%s\"",
"people": "People matching \"%s\"",
"profile": "Go to @%s@%s",
"url": "Open URL in Mastodon",
"hashtag": "Go to #%s",
"no_user": {
"title": "No User Account Found",
"message": "There's no Useraccount \"%s\" on %s"
},
"empty_state": {
"no_results": "Sin resultaus"
},
"recent_search": "Busquedas recients",
"clear_all": "Clear all",
"clear": "Borrar"
}
},
"discovery": {
"tabs": {
"posts": "Publicacions",
"hashtags": "Etiquetas",
"news": "Noticias",
"community": "Comunidat",
"for_you": "Pa Tu"
},
"intro": "Estas son las publicacions que son ganando tracción en a tuya rincón de Mastodon."
},
"favorite": {
"title": "Favorites"
},
"notification": {
"title": {
"Everything": "Tot",
"Mentions": "Mencions"
},
"notification_description": {
"followed_you": "te siguió",
"favorited_your_post": "ha marcau como favorita la tuya publicación",
"reblogged_your_post": "reblogueó la tuya publicación",
"mentioned_you": "te mencionó",
"request_to_follow_you": "solicitó seguir-te",
"poll_has_ended": "enqüesta ha rematau"
},
"keyobard": {
"show_everything": "Amostrar Tot",
"show_mentions": "Amostrar Mencions"
},
"follow_request": {
"accept": "Acceptar",
"accepted": "Acceptau",
"reject": "refusar",
"rejected": "Refusau"
}
},
"thread": {
"back_title": "Publicación",
"title": "Publicación de %s"
},
"settings": {
"overview": {
"title": "Settings",
"general": "General",
"notifications": "Notifications",
"support_mastodon": "Support Mastodon",
"about_mastodon": "About Mastodon",
"server_details": "Server Details",
"logout": "Logout %@"
},
"about_mastodon": {
"title": "About",
"more_settings": "Even More Settings",
"contribute_to_mastodon": "Contribute to Mastodon",
"privacy_policy": "Privacy Policy",
"clear_media_storage": "Clear Media Storage"
},
"server_details": {
"about": "About",
"rules": "Rules",
"about_instance": {
"title": "Administrator",
"message_admin": "Message Admin",
"legal_notice": "A legal notice"
}
},
"general": {
"title": "General",
"appearance": {
"section_title": "Appearance",
"dark": "Dark",
"light": "Light",
"system": "Use Device Appearance"
},
"ask_before": {
"section_title": "Ask before…",
"posting_without_alt_text": "Posting without Alt Text",
"unfollowing_someone": "Unfollowing Someone",
"boosting_a_post": "Boosting a Post",
"deleting_a_post": "Deleting a Post"
},
"design": {
"section_title": "Design",
"show_animations": "Play Animated Avatars and Emoji"
},
"language": {
"section_title": "Language",
"default_post_language": "Default Post Language"
},
"links": {
"section_title": "Links",
"open_in_mastodon": "Open in Mastodon",
"open_in_browser": "Open in Browser"
}
},
"notifications": {
"title": "Notifications",
"policy": {
"title": "Get Notifications from",
"anyone": "Anyone",
"followers": "People who follow you",
"follow": "People you follow",
"noone": "No one"
},
"alert": {
"mentions_and_replies": "Mentions & Replies",
"boosts": "Boosts",
"favorites": "Favorites",
"new_followers": "New Followers"
},
"disabled": {
"notification_hint": "Turn on notifications from your device settings to see updates on your lock screen.",
"go_to_settings": "Go to Notification Settings"
}
}
},
"report": {
"title_report": "Reportar",
"title": "Reportar %s",
"step1": "Paso 1 de 2",
"step2": "Paso 2 de 2",
"content1": "I hai belatra publicación que te fería goyo d'anyadir a lo reporte?",
"content2": "I hai bella cosa que los moderadors habrían de saber sobre este reporte?",
"report_sent_title": "Gracias per denunciar, estudiaremos esto.",
"send": "Ninviar Denuncia",
"skip_to_send": "Ninviar sin comentarios",
"text_placeholder": "Escribe u apega comentarios adicionals",
"reported": "DENUNCIAU",
"step_one": {
"step_1_of_4": "Paso 1 de 4",
"whats_wrong_with_this_post": "Qué i hai de malo con esta publicación?",
"whats_wrong_with_this_account": "Qué i hai de malo con esta cuenta?",
"whats_wrong_with_this_username": "Qué i hai de malo con %s?",
"select_the_best_match": "Tría la millor opción",
"i_dont_like_it": "No me fa goyo",
"it_is_not_something_you_want_to_see": "No ye bella cosa que quieras veyer",
"its_spam": "Ye spam",
"malicious_links_fake_engagement_or_repetetive_replies": "Vinclos maliciosos, compromisos falsos u respuestas repetitivas",
"it_violates_server_rules": "Viola las reglas d'o servidor",
"you_are_aware_that_it_breaks_specific_rules": "Yes conscient de que infrinche las normas especificas",
"its_something_else": "Ye bella cosa mas",
"the_issue_does_not_fit_into_other_categories": "Lo problema no encaixa en atras categorías"
},
"step_two": {
"step_2_of_4": "Paso 2 de 4",
"which_rules_are_being_violated": "Qué normas se son violando?",
"select_all_that_apply": "Tría totz los que correspondan",
"i_just_dont_like_it": "Nomás no me fa goyo"
},
"step_three": {
"step_3_of_4": "Paso 3 de 4",
"are_there_any_posts_that_back_up_this_report": "I hai bella publicación que refirme este informe?",
"select_all_that_apply": "Tría totz los que correspondan"
},
"step_four": {
"step_4_of_4": "Paso 4 de 4",
"is_there_anything_else_we_should_know": "I hai bella cosa mas que habríanos de saber?"
},
"step_final": {
"dont_want_to_see_this": "No quiers veyer esto?",
"when_you_see_something_you_dont_like_on_mastodon_you_can_remove_the_person_from_your_experience.": "Quan veigas bella cosa que no te fa goyo en Mastodon, puetz sacar a la persona d'a tuya experiencia.",
"unfollow": "Deixar de seguir",
"unfollowed": "Ha deixau de seguir-te",
"unfollow_user": "Deixar de seguir a %s",
"mute_user": "Silenciar a %s",
"you_wont_see_their_posts_or_reblogs_in_your_home_feed_they_wont_know_they_ve_been_muted": "No veyerás las suyas publicacions u reblogueos en a tuya linia temporal. No sabrán que han estau silenciaus.",
"block_user": "Blocar a %s",
"they_will_no_longer_be_able_to_follow_or_see_your_posts_but_they_can_see_if_theyve_been_blocked": "Ya no podrán estar capaces de seguir-te u veyer las tuyas publicacions, pero pueden veyer si han estau blocaus.",
"while_we_review_this_you_can_take_action_against_user": "Mientres revisamos esto, puetz prener medidas contra %s"
}
},
"preview": {
"keyboard": {
"close_preview": "Zarrar Previsualización",
"show_next": "Amostrar Siguient",
"show_previous": "Amostrar Anterior"
}
},
"account_list": {
"tab_bar_hint": "Perfil triau actualment: %s. Fe un doble toque y mantiene pretau pa amostrar lo selector de cuentas",
"dismiss_account_switcher": "Descartar lo selector de cuentas",
"add_account": "Anyadir cuenta"
},
"bookmark": {
"title": "Marcapachinas"
},
"followed_tags": {
"title": "Followed Tags",
"header": {
"posts": "posts",
"participants": "participants",
"posts_today": "posts today"
},
"actions": {
"follow": "Follow",
"unfollow": "Unfollow"
}
}
},
"extension": {
"open_in": {
"invalid_link_error": "This doesn't seem to be a valid Mastodon link."
}
},
"widget": {
"common": {
"unsupported_widget_family": "Sorry but this Widget family is unsupported.",
"user_not_logged_in": "Please open Mastodon to log in to an Account."
},
"followers_count": {
"configuration_display_name": "Followers",
"configuration_description": "Show number of followers.",
"title": "FOLLOWERS",
"followers_today": "%s followers today"
},
"multiple_followers": {
"configuration_display_name": "Multiple followers",
"configuration_description": "Show number of followers for multiple accounts.",
"mock_user": {
"display_name": "Another follower",
"account_name": "another@follower.social"
}
},
"latest_followers": {
"configuration_display_name": "Latest followers",
"configuration_description": "Show latest followers.",
"title": "Latest followers",
"last_update": "Last update: %s"
},
"hashtag": {
"configuration": {
"display_name": "Hashtag",
"description": "Shows a recent post with the selected hashtag."
},
"not_found": {
"account_name": "John Mastodon",
"account": "@johnMastodon@no-such.account",
"content": "Sorry, we couldnt find any posts with the hashtag <a>#%@</a>. Please try a <a>#DifferentHashtag</a> or check the widget settings."
},
"placeholder": {
"account_name": "John Mastodon",
"account": "@johnMastodon@no-such.account",
"content": "This is how a post with a <a>#hashtag</a> would look. Pick whichever <a>#hashtag</a> you want in the widget settings."
}
}
}
}

View File

@ -1,6 +0,0 @@
{
"NSCameraUsageDescription": "S'usa pa quitar fotos pa las publicacions",
"NSPhotoLibraryAddUsageDescription": "S'usa pa alzar fotos en a Galería de Fotos",
"NewPostShortcutItemTitle": "Nueva Publicación",
"SearchShortcutItemTitle": "Buscar"
}

View File

@ -77,7 +77,7 @@
<key>a11y.plural.count.characters_left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@character_count@</string>
<string>%#@character_count@ left</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
@ -85,17 +85,17 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>zero</key>
<string>%ld characters left</string>
<string>لَا حَرف</string>
<key>one</key>
<string>1 character left</string>
<string>حَرفٌ واحِد</string>
<key>two</key>
<string>%ld characters left</string>
<string>حَرفانِ اِثنان</string>
<key>few</key>
<string>%ld characters left</string>
<string>%ld characters</string>
<key>many</key>
<string>%ld characters left</string>
<string>%ld characters</string>
<key>other</key>
<string>%ld characters left</string>
<string>%ld حَرف</string>
</dict>
</dict>
<key>plural.count.followed_by_and_mutual</key>
@ -261,30 +261,6 @@
<string>%ld إعادَة تَدوين</string>
</dict>
</dict>
<key>plural.count.reblog_a11y</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@reblog_count@</string>
<key>reblog_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>zero</key>
<string>%ld re-blogs</string>
<key>one</key>
<string>1 re-blog</string>
<key>two</key>
<string>%ld re-blogs</string>
<key>few</key>
<string>%ld re-blogs</string>
<key>many</key>
<string>%ld re-blogs</string>
<key>other</key>
<string>%ld re-blogs</string>
</dict>
</dict>
<key>plural.count.reply</key>
<dict>
<key>NSStringLocalizedFormatKey</key>

View File

@ -15,6 +15,10 @@
"title": "إخفاقٌ فِي التَّصويت",
"poll_ended": "اِنتَهَى اِستِطلاعُ الرَّأي"
},
"discard_post_content": {
"title": "التخلص من المسودة",
"message": "أكِّد للتخلص مِن مُحتوى مَنشور مؤلَّف."
},
"publish_post_failure": {
"title": "إخفاق في عمليَّة النشر",
"message": "فَشَلَ نَشر المَنشور.\nيُرجى التحقق من اتصالك بالإنترنت.",
@ -47,29 +51,6 @@
"clean_cache": {
"title": "مَحوُ ذاكِرَةِ التَّخزينِ المُؤقَّت",
"message": "مُحِيَ ما مَساحَتُهُ %s مِن ذاكِرَةِ التَّخزينِ المُؤقَّت بِنجاح."
},
"translation_failed": {
"title": "مُلاحظة",
"message": "فشلت الترجمة. ربما لم يتمكن مدير الخادم من تفعيل الترجمات على هذا الخادم أو هذا الخادم يقوم بتشغيل نسخة قديمة من ماستدون حيث الترجمات غير مدعومة بعد.",
"button": "حسنًا"
},
"media_missing_alt_text": {
"title": "Media Missing Alt Text",
"message": "%d of your images are missing alt text.\nPost Anyway?",
"cancel": "Cancel",
"post": "Post"
},
"boost_a_post": {
"title_boost": "Boost Post?",
"title_unboost": "Unboost Post?",
"cancel": "Cancel",
"boost": "Boost",
"unboost": "Unboost"
},
"unfollow_user": {
"title": "Unfollow %@?",
"cancel": "Cancel",
"unfollow": "Unfollow"
}
},
"controls": {
@ -94,9 +75,9 @@
"save_photo": "حفظ الصورة",
"copy_photo": "نسخ الصورة",
"sign_in": "تسجيلُ الدخول",
"sign_up": "Create account",
"see_more": "عرض المزيد",
"preview": "مُعاينة",
"copy": "نَسخ",
"share": "المُشارك",
"share_user": "مُشارَكَةُ %s",
"share_post": "مشارك المنشور",
@ -110,26 +91,13 @@
"block_domain": "حظر %s",
"unblock_domain": "رفع الحظر عن %s",
"settings": "الإعدادات",
"delete": "حذف",
"translate_post": {
"title": "الترجَمَة مِن %s",
"unknown_language": "غير مَعرُوفة"
},
"edit_post": "تعديل",
"bookmark": "إضافة إلى الفواصل المرجعية",
"remove_bookmark": "إزالة الفاصلة المرجعية",
"follow": "متابعة %s",
"unfollow": "ألغِ متابعة %s"
"delete": "حذف"
},
"tabs": {
"home": "الرَّئِيسَة",
"search_and_explore": "البَحث وَالاِستِكشاف",
"notifications": "الإشعارات",
"profile": "المِلَفُّ التَّعريفِيّ",
"a11y": {
"search": "البحث",
"explore": "استكشف"
}
"search": "البَحث",
"notification": "الإشعارات",
"profile": "المِلَفُّ التَّعريفِيّ"
},
"keyboard": {
"common": {
@ -164,8 +132,6 @@
"sensitive_content": "مُحتَوى حَسَّاس",
"media_content_warning": "اُنقُر لِلكَشف",
"tap_to_reveal": "اُنقُر لِلكَشف",
"load_embed": "تحميل المُضمَن",
"link_via_user": "%s عبر %s",
"poll": {
"vote": "صَوِّت",
"closed": "انتهى"
@ -187,12 +153,7 @@
"show_image": "أظْهِرِ الصُّورَة",
"show_gif": "أظْهِر GIF",
"show_video_player": "أظْهِر مُشَغِّلَ المَقاطِعِ المَرئِيَّة",
"share_link_in_post": "مُشارَكَة الرابِط فِي مَنشور",
"tap_then_hold_to_show_menu": "اُنقُر مُطَوَّلًا لِإظْهَارِ القائِمَة",
"a11y_labels": {
"reblog": "إعادة التدوين",
"unreblog": "التراجع عن إعادة التدوين"
}
"tap_then_hold_to_show_menu": "اُنقُر مُطَوَّلًا لِإظْهَارِ القائِمَة"
},
"tag": {
"url": "عنوان URL",
@ -207,30 +168,6 @@
"private": "فَقَطْ مُتابِعينَهُم مَن يُمكِنُهُم رُؤيَةُ هَذَا المَنشُور.",
"private_from_me": "فَقَطْ مُتابِعيني أنَا مَن يُمكِنُهُم رُؤيَةُ هَذَا المَنشُور.",
"direct": "المُستخدمِونَ المُشارِ إليهم فَقَطْ مَن يُمكِنُهُم رُؤيَةُ هَذَا المَنشُور."
},
"translation": {
"translated_from": "الترجَمَة مِن %s بِاستِخدَام %s",
"unknown_language": "غير مَعرُوفة",
"unknown_provider": "غير مَعرُوف",
"show_original": "إظهار الأصل"
},
"media": {
"accessibility_label": "%s، مرفق %d من %d",
"expand_image_hint": "Expands the image. Double-tap and hold to show actions",
"expand_gif_hint": "Expands the GIF. Double-tap and hold to show actions",
"expand_video_hint": "Shows the video player. Double-tap and hold to show actions"
},
"posted_via_application": "%s عبر %s",
"buttons": {
"reblogs_title": "المعاد تدوينها",
"favorites_title": "المفضلة",
"edit_history_title": "سِجِلّ التعديلات",
"edit_history_detail": "آخر تعديل %s"
},
"edited_at_timestamp_prefix": "عُدّل في %s",
"edit_history": {
"title": "سِجِلّ التعديلات",
"original_post": "المنشور الأصلي · %s"
}
},
"friendship": {
@ -240,11 +177,10 @@
"pending": "قيد المُراجعة",
"block": "حظر",
"block_user": "حَظرُ %s",
"block_domain": "Block domain %s",
"block_domain": "حظر %s",
"unblock": "رفع الحَظر",
"unblock_user": "رفع الحَظر عن %s",
"blocked": "محظور",
"domain_blocked": "Domain Blocked",
"mute": "كَتم",
"mute_user": "كَتمُ %s",
"unmute": "رفع الكتم",
@ -274,49 +210,25 @@
"user_suspended_warning": "لقد أُوقِفَ حِساب %s."
}
}
},
"user_list": {
"no_verified_link": "رابط غير متحقق منه",
"followers_count": "%@ متابعين"
}
},
"scene": {
"welcome": {
"log_in": "تسجيلُ الدخول",
"learn_more": "تعلم المزيد",
"join_default_server": "انضم إلى %@",
"pick_server": "اختر خادمًا آخر",
"separator": {
"or": "أو"
},
"education": {
"mastodon": {
"title": "أهلًا بك على ماستدون",
"description": "ماستدون شبكة اجتماعية لامركزية، بمعنى أنه ليس هناك شركة واحدة تتحكم فيها. وهي تتألف من العديد من الخوادم التي تدار بشكل مستقل، وجميعها متصلة معا."
},
"servers": {
"title": "ما هي الخوادم؟",
"description": "تتم استضافة كل حساب ماستدون على خادم - ولكل منها قيمه وقواعده ومسؤوليه الخاصين. بغض النظر عن الشخص الذي تختاره ، يمكنك متابعة الأشخاص والتفاعل معهم على أي خادم."
},
"a11y": {
"what_is_mastodon": {
"title": "ما هو ماستدون؟"
}
}
}
"slogan": "شبكات التواصل الاجتماعي\nمرة أُخرى بين يديك.",
"get_started": "ابدأ الآن",
"log_in": "تسجيلُ الدخول"
},
"login": {
"title": "مرحباً بك مجددًا",
"subtitle": "سَجِّل دُخولَكَ إلى الخادِم الَّذي أنشأتَ حِسابَكَ فيه.",
"title": "Welcome back",
"subtitle": "Log you in on the server you created your account on.",
"server_search_field": {
"placeholder": "أدخِل عُنوانَ URL أو اِبحَث عَنِ الخادِمِ الخاصّ بِك"
"placeholder": "Enter URL or search for your server"
}
},
"server_picker": {
"title": "اختر خادمًا",
"title": "اِختر خادِم،\nأيًّا مِنهُم.",
"subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.",
"button": {
"language": "اللغة",
"signup_speed": "سرعة التسجيل",
"category": {
"all": "الكُل",
"all_accessiblity_description": "الفِئَة: الكُل",
@ -342,47 +254,24 @@
"category": "الفئة"
},
"input": {
"search_servers_or_enter_url": "اِبحث عَن مُجتَمَعَات أو أدخِل عُنوانَ URL"
"search_servers_or_enter_url": "Search communities or enter URL"
},
"empty_state": {
"finding_servers": "يجري إيجاد خوادم متوفِّرَة...",
"bad_network": "حدث خطأٌ ما أثناء تحميل البيانات. تحقَّق من اتصالك بالإنترنت.",
"no_results": "لا توجد نتائج"
},
"signup_speed": {
"all": "الكل",
"instant": "تسجيل فوري",
"manually_reviewed": "مراجعة يدوية"
},
"language": {
"all": "الكل"
},
"search": {
"placeholder": "البحث عن اسم أو رابط تشعّبي URL"
},
"no_server_selected_hint": "سوف نختار خادماً بناءً على لغتك إذا قمت بالمتابعة دون إجراء إختيار."
},
"privacy": {
"title": "الخصوصية",
"description": "على الرغم من أن تطبيق ماستدون لا يجمع أي بيانات، فإن الخادم الذي قمت بالتسجيل من خلاله قد تكون له سياسة مختلفة. خذ دقيقة للمراجعة والموافقة على سياسة خصوصية تطبيق ماستدون وسياسة الخصوصية الخاصة بخادمك.",
"policy": {
"ios": "سياسة الخصوصية - ماستدون لنظام التشغيل iOS",
"server": "سياسة الخصوصية - %s"
},
"button": {
"confirm": "أوافق"
}
},
"register": {
"title": "إنشاء حساب",
"title": "أخبرنا عن نفسك.",
"lets_get_you_set_up_on_domain": "دَعنا نَبدَأُ بِإعدادِكَ عَلَى %s",
"input": {
"avatar": {
"delete": "حذف"
},
"username": {
"placeholder": "اِسمُ مُستَخدِم",
"duplicate_prompt": "اِسم المُستَخدِم هذا مأخوذٌ بالفعل.",
"suggestion": "مذهل_%@"
"duplicate_prompt": "اِسم المُستَخدِم هذا مأخوذٌ بالفعل."
},
"display_name": {
"placeholder": "اِسمُ عَرض"
@ -392,7 +281,6 @@
},
"password": {
"placeholder": "رمز سري",
"confirmation_placeholder": "أكّد كلمة السر",
"require": "رمز المرور الخاص بك يجب أن يحتوي على الأقل:",
"character_limit": "ثمانيةُ خانات",
"accessibility": {
@ -417,7 +305,7 @@
"reason": {
"blocked": "يحتوي %s على موفِّر خدمة بريد إلكتروني غير مسموح به",
"unreachable": "يبدوا أنَّ %s غير موجود",
"taken": "%s مأخوذ بالفعل. ماذا عن:",
"taken": "إنَّ %s مُستخدَمٌ بالفعل",
"reserved": "إنَّ %s عبارة عن كلمة مفتاحيَّة محجوزة",
"accepted": "يجب أن يُقبل %s",
"blank": "%s مَطلوب",
@ -435,20 +323,21 @@
}
},
"server_rules": {
"title": "Server Rules",
"subtitle": "By continuing, you agree to follow by the following rules set and enforced by the **%s** moderators.",
"title": "بعض القواعد الأساسية.",
"subtitle": "سُنَّت هذه القواعد من قِبل مشرفي %s.",
"prompt": "في حال إختيارك للمواصلة، أنت تخضع لشروط الخدمة وسياسة الخصوصية لِـ%s.",
"terms_of_service": "شُرُوط الخِدمَة",
"privacy_policy": "سِياسَة الخُصُوصيَّة",
"button": {
"confirm": "أوافق",
"disagree": "Disagree"
"confirm": "أنا مُوافِق"
}
},
"confirm_email": {
"title": "تحقَّق من بريدك الوارِد",
"tap_the_link_we_emailed_to_you_to_verify_your_account": "اضغط على الرابط الذي أرسلناه إليك للتحقق من %@. سننتظر هنا.",
"title": "شيءٌ أخير.",
"subtitle": "أنقر على الرابط المرسل إليك لاستيثاق حسابك.",
"tap_the_link_we_emailed_to_you_to_verify_your_account": "اُنقُر عَلَى الرَّابِطِ الَّذي أرسَلناهُ إليكَ عَبرَ البَريدِ الإلِكتُرُونيّ لِلتَّحَقُقِ مِن حِسابِك",
"button": {
"open_email_app": "فتح تطبيق البريد الإلكتروني",
"resend": "إعادَةُ الإرسال"
},
"dont_receive_email": {
@ -461,11 +350,6 @@
"description": "لقد أرسلنا لك بريدًا إلكترونيًا للتو. تحقق من مجلد البريد غير الهام الخاص بك إذا لم تكن قد فعلت ذلك.",
"mail": "البريد",
"open_email_client": "فتح عميل البريد الإلكتروني"
},
"didnt_get_link": {
"prefix": "ألم تحصل على رابط؟",
"resend_in": "إعادة إرسال (%@)",
"resend_now": "أعد الإرسال الآن."
}
},
"home_timeline": {
@ -476,20 +360,19 @@
"published": "تمَّ النَّشر!",
"Publishing": "يَجري نَشر المُشارَكَة...",
"accessibility": {
"logo_label": "ماستدون",
"logo_label": "ُّزِرُّ الشِّعار",
"logo_hint": "اُنقُر لِلتمريرِ لأعلى واُنقُر مَرّةً أُخرَى لِلذَّهابِ إلَى المَوقِعِ السَّابِق"
}
}
},
"suggestion_account": {
"title": "رائج على ماستدون",
"follow_all": "اتبع الكل"
"title": "ابحث عن أشخاص لمتابعتهم",
"follow_explain": "عِندَ مُتابَعَتِكَ لأحدِهِم، سَوف تَرى مَنشوراته في تغذيَتِكَ الرئيسة."
},
"compose": {
"title": {
"new_post": "مَنشُورٌ جَديد",
"new_reply": "رَدٌّ جديد",
"edit_post": "تعديل المنشور"
"new_reply": "رَدٌّ جديد"
},
"media_selection": {
"camera": "اِلتِقاطُ صُورَة",
@ -513,7 +396,6 @@
"server_processing_state": "مُعالجة الخادم جارِيَة..."
},
"poll": {
"title": "استطلاع رأي",
"duration_time": "المُدَّة: %s",
"thirty_minutes": "ثلاثون دقيقة",
"one_hour": "ساعةٌ واحدة",
@ -523,11 +405,7 @@
"seven_days": "سبعةُ أيام",
"option_number": "الخيار %ld",
"the_poll_is_invalid": "الاِستِطلاعُ غيرُ صالِح",
"the_poll_has_empty_option": "يوجَدُ خِيارٌ فارِغٌ فِي الاِستِطلاع",
"add_option": "إضافة خيار",
"remove_option": "إزالة الخيار",
"move_up": "أنقله إلى أعلى",
"move_down": "أنقله إلى أسفل"
"the_poll_has_empty_option": "يوجَدُ خِيارٌ فارِغٌ فِي الاِستِطلاع"
},
"content_warning": {
"placeholder": "اكتب تَحذيرًا دَقيقًا هُنا..."
@ -549,7 +427,7 @@
"enable_content_warning": "تفعيل تحذير المُحتَوى",
"disable_content_warning": "تعطيل تحذير المُحتَوى",
"post_visibility_menu": "قائمة ظهور المنشور",
"post_options": "خياراتُ المَنشور",
"post_options": "Post Options",
"posting_as": "نَشر كَـ %s"
},
"keyboard": {
@ -559,12 +437,6 @@
"toggle_content_warning": "تبديل تحذير المُحتَوى",
"append_attachment_entry": "إضافة مُرفَق - %s",
"select_visibility_entry": "اختر مدى الظهور - %s"
},
"language": {
"title": "لغة النشر",
"suggested": "المقترحَة",
"recent": "الأخيرة",
"other": "لغات أخرى…"
}
},
"profile": {
@ -572,16 +444,11 @@
"follows_you": "يُتابِعُك"
},
"dashboard": {
"my_posts": "مَنشورات",
"my_following": "مُتابَعُون",
"my_followers": "مُتابِعُون",
"other_posts": "مَنشورات",
"other_following": "مُتابَعُون",
"other_followers": "مُتابِعُون",
"familiar_followers": "متابعة متبادلة"
"posts": "مَنشورات",
"following": "مُتابَع",
"followers": "مُتابِع"
},
"fields": {
"joined": "انضم في",
"add_row": "إضافة صف",
"placeholder": {
"label": "التسمية",
@ -623,14 +490,6 @@
"confirm_hide_reblogs": {
"title": "إخفاء إعادات التدوين",
"message": "التأكيد لِإخفاء إعادات التدوين"
},
"confirm_block_domain": {
"title": "Block domain",
"message": "Confirm to block domain %s"
},
"confirm_unblock_domain": {
"title": "Unblock domain",
"message": "Confirm to unblock domain %s"
}
},
"accessibility": {
@ -678,20 +537,16 @@
}
},
"searching": {
"posts": "Posts matching \"%s\"",
"people": "People matching \"%s\"",
"profile": "Go to @%s@%s",
"url": "Open URL in Mastodon",
"hashtag": "Go to #%s",
"no_user": {
"title": "No User Account Found",
"message": "There's no Useraccount \"%s\" on %s"
"segment": {
"all": "الكُل",
"people": "أشخاص",
"hashtags": "وُسُوم",
"posts": "مَنشُورات"
},
"empty_state": {
"no_results": "لا تُوجَدُ نتائِج"
},
"recent_search": "عَمَليَّاُت البَحثِ الأخيرَة",
"clear_all": "Clear all",
"clear": "مَحو"
}
},
@ -706,7 +561,7 @@
"intro": "هَذِهِ هِيَ المَنشُوراتُ الَّتي تَكْتَسِبُ شَعبِيَّةً فِي الرُّكنِ الخاصِّ بِكَ مِن مَاستُودون."
},
"favorite": {
"title": "المفضلة"
"title": "مُفضَّلَتُك"
},
"notification": {
"title": {
@ -737,79 +592,60 @@
"title": "مَنشور مِن %s"
},
"settings": {
"overview": {
"title": "Settings",
"general": "General",
"notifications": "Notifications",
"support_mastodon": "Support Mastodon",
"about_mastodon": "About Mastodon",
"server_details": "Server Details",
"logout": "Logout %@"
},
"about_mastodon": {
"title": "About",
"more_settings": "Even More Settings",
"contribute_to_mastodon": "Contribute to Mastodon",
"privacy_policy": "Privacy Policy",
"clear_media_storage": "Clear Media Storage"
},
"server_details": {
"about": "About",
"rules": "Rules",
"about_instance": {
"title": "Administrator",
"message_admin": "Message Admin",
"legal_notice": "A legal notice"
}
},
"general": {
"title": "General",
"title": "الإعدادات",
"section": {
"appearance": {
"section_title": "Appearance",
"dark": "Dark",
"light": "Light",
"system": "Use Device Appearance"
"title": "المَظهر",
"automatic": "تلقائي",
"light": "مضيءٌ دائمًا",
"dark": "مظلمٌ دائِمًا"
},
"ask_before": {
"section_title": "Ask before…",
"posting_without_alt_text": "Posting without Alt Text",
"unfollowing_someone": "Unfollowing Someone",
"boosting_a_post": "Boosting a Post",
"deleting_a_post": "Deleting a Post"
"look_and_feel": {
"title": "المَظهَرُ وَالشُّعُور",
"use_system": "استخدم النِظام",
"really_dark": "مُظلمٌ حَقًّا",
"sorta_dark": "مُظلمٌ نوعًا ما",
"light": "مُضيء"
},
"design": {
"section_title": "Design",
"show_animations": "Play Animated Avatars and Emoji"
"notifications": {
"title": "الإشعارات",
"favorites": "بِالإعْجاب بِمَنشوري",
"follows": "بِمُتابَعَتي",
"boosts": "بِإعادَةِ تدوينِ مَنشوري",
"mentions": "بِالإشارَةِ إليّ",
"trigger": {
"anyone": "أيُّ شخصٍ",
"follower": "مُتابِعٌ",
"follow": "أي شخص أُتابِعُه",
"noone": "لَا أحد",
"title": "أشعِرني عِندما يَقومُ"
}
},
"language": {
"section_title": "Language",
"default_post_language": "Default Post Language"
"preference": {
"title": "التَّفضيلات",
"true_black_dark_mode": "النَّمَطُ الأسوَدُ الداكِنُ الحَقيقي",
"disable_avatar_animation": "تَعطيلُ الصوَرِ الرمزيَّةِ المُتحرِّكَة",
"disable_emoji_animation": "تَعطيلُ الرُموزِ التَّعبيريَّةِ المُتحرِّكَة",
"using_default_browser": "اِستِخدامُ المُتصفِّحِ الاِفتراضي لِفتحِ الرَّوابِط",
"open_links_in_mastodon": "فَتحُ الرَّوابِطِ فِي مَاستودُون"
},
"links": {
"section_title": "Links",
"open_in_mastodon": "Open in Mastodon",
"open_in_browser": "Open in Browser"
"boring_zone": {
"title": "المنطِقَةُ المُملَّة",
"account_settings": "إعداداتُ الحِساب",
"terms": "شُرُوطُ الخِدمَة",
"privacy": "سِياسَةُ الخُصوصيَّة"
},
"spicy_zone": {
"title": "المنطِقَةُ اللَّاذِعَة",
"clear": "مَحوُ ذاكِرَةِ التَّخزينِ المُؤقَّتِ لِلوسائِط",
"signout": "تَسجيلُ الخُروج"
}
},
"notifications": {
"title": "Notifications",
"policy": {
"title": "Get Notifications from",
"anyone": "Anyone",
"followers": "People who follow you",
"follow": "People you follow",
"noone": "No one"
},
"alert": {
"mentions_and_replies": "Mentions & Replies",
"boosts": "Boosts",
"favorites": "Favorites",
"new_followers": "New Followers"
},
"disabled": {
"notification_hint": "Turn on notifications from your device settings to see updates on your lock screen.",
"go_to_settings": "Go to Notification Settings"
}
"footer": {
"mastodon_description": "ماستودون بَرنامجٌ مَفتُوحُ المَصدَر. يُمكِنُكَ المُساهَمَةُ، أوِ الإبلاغُ عَنِ المُشكِلات عَن طريق مِنصَّة جيت هاب (GitHub) في %s (%s)"
},
"keyboard": {
"close_settings_window": "إغلاق نافذة الإعدادات"
}
},
"report": {
@ -879,67 +715,13 @@
"dismiss_account_switcher": "تجاهُل مبدِّل الحِساب",
"add_account": "إضافَةُ حِساب"
},
"wizard": {
"new_in_mastodon": "جديد في ماستودون",
"multiple_account_switch_intro_description": "بدِّل بين حسابات متعددة عبر الاستمرار بالضغط على زر الملف الشخصي.",
"accessibility_hint": "انقر نقرًا مزدوجًا لتجاهُل النافذة المنبثقة"
},
"bookmark": {
"title": "العَلاماتُ المَرجعيَّة"
},
"followed_tags": {
"title": "وُسُومُ المُتابَع",
"header": {
"posts": "مَنشورات",
"participants": "المُشارِكُون",
"posts_today": "مَنشوراتُ اليَوم"
},
"actions": {
"follow": "مُتابَعَة",
"unfollow": "إلغاءُ المُتابَعَة"
}
}
},
"extension": {
"open_in": {
"invalid_link_error": "لا يبدو أن هذا رابط ماستدون صالح."
}
},
"widget": {
"common": {
"unsupported_widget_family": "Sorry but this Widget family is unsupported.",
"user_not_logged_in": "الرجاء فتح ماستدون لتسجيل الدخول إلى حساب."
},
"followers_count": {
"configuration_display_name": "المتابِعون",
"configuration_description": "إظهار عدد المتابعين.",
"title": "المتابِعون",
"followers_today": "%s followers today"
},
"multiple_followers": {
"configuration_display_name": "متابعين متعددين",
"configuration_description": "إظهار عدد المتابعين لحسابات متعددة.",
"mock_user": {
"display_name": "متابع آخر",
"account_name": "another@follower.social"
}
},
"latest_followers": {
"configuration_display_name": "أحدث المتابعين",
"configuration_description": "إظهار أحدث المتابِعين.",
"title": "أحدث المتابعين",
"last_update": "آخر تحديث: %s"
},
"hashtag": {
"configuration": {
"display_name": "وسم",
"description": "Shows a recent post with the selected hashtag."
},
"not_found": {
"account_name": "John Mastodon",
"account": "@johnMastodon@no-such.account",
"content": "Sorry, we couldnt find any posts with the hashtag <a>#%@</a>. Please try a <a>#DifferentHashtag</a> or check the widget settings."
},
"placeholder": {
"account_name": "John Mastodon",
"account": "@johnMastodon@no-such.account",
"content": "This is how a post with a <a>#hashtag</a> would look. Pick whichever <a>#hashtag</a> you want in the widget settings."
}
}
}
}

View File

@ -1,601 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>a11y.plural.count.unread.notification</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@notification_count_unread_notification@</string>
<key>notification_count_unread_notification</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 непрачытанае апавяшчэнне</string>
<key>few</key>
<string>%ld непрачытаныя апавяшчэнні</string>
<key>many</key>
<string>%ld непрачытаных апавяшчэнняў</string>
<key>other</key>
<string>%ld непрачытаных апавяшчэнняў</string>
</dict>
</dict>
<key>a11y.plural.count.input_limit_exceeds</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>Ліміт уводу перавышаны на %#@character_count@</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 сімвал</string>
<key>few</key>
<string>%ld сімвалы</string>
<key>many</key>
<string>%ld сімвалаў</string>
<key>other</key>
<string>%ld сімвалаў</string>
</dict>
</dict>
<key>a11y.plural.count.input_limit_remains</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>Ліміт уводу застаецца %#@character_count@</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 сімвал</string>
<key>few</key>
<string>%ld сімвалы</string>
<key>many</key>
<string>%ld сімвалаў</string>
<key>other</key>
<string>%ld сімвалаў</string>
</dict>
</dict>
<key>a11y.plural.count.characters_left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@character_count@</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>Застаўся 1 сімвал</string>
<key>few</key>
<string>Засталіся %ld сімвалы</string>
<key>many</key>
<string>Засталося %ld сімвалаў</string>
<key>other</key>
<string>Засталося %ld сімвалаў</string>
</dict>
</dict>
<key>plural.count.followed_by_and_mutual</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@names@%#@count_mutual@</string>
<key>names</key>
<dict>
<key>one</key>
<string></string>
<key>few</key>
<string></string>
<key>many</key>
<string></string>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>other</key>
<string></string>
</dict>
<key>count_mutual</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>%1$@ і яшчэ 1 чалавек падпісаны</string>
<key>few</key>
<string>%1$@ і яшчэ %ld чалавекі падпісаны</string>
<key>many</key>
<string>%1$@ і яшчэ %ld чалавек падпісаны</string>
<key>other</key>
<string>%1$@ і яшчэ %ld чалавек падпісаны</string>
</dict>
</dict>
<key>plural.count.metric_formatted.post</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%@ %#@post_count@</string>
<key>post_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>допіс</string>
<key>few</key>
<string>допісы</string>
<key>many</key>
<string>допісаў</string>
<key>other</key>
<string>допісаў</string>
</dict>
</dict>
<key>plural.count.media</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@media_count@</string>
<key>media_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 медыя</string>
<key>few</key>
<string>%ld медыя</string>
<key>many</key>
<string>%ld медыя</string>
<key>other</key>
<string>%ld медыя</string>
</dict>
</dict>
<key>plural.count.post</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@post_count@</string>
<key>post_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 допіс</string>
<key>few</key>
<string>%ld допісы</string>
<key>many</key>
<string>%ld допісаў</string>
<key>other</key>
<string>%ld допісаў</string>
</dict>
</dict>
<key>plural.count.favorite</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@favorite_count@</string>
<key>favorite_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 дадаў у абранае</string>
<key>few</key>
<string>%ld дадалі ў абранае</string>
<key>many</key>
<string>%ld дадалі ў абранае</string>
<key>other</key>
<string>%ld дадалі ў абранае</string>
</dict>
</dict>
<key>plural.count.reblog</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@reblog_count@</string>
<key>reblog_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 пашырэнне</string>
<key>few</key>
<string>%ld пашырэнні</string>
<key>many</key>
<string>%ld пашырэнняў</string>
<key>other</key>
<string>%ld пашырэнняў</string>
</dict>
</dict>
<key>plural.count.reblog_a11y</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@reblog_count@</string>
<key>reblog_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 пашырэнне</string>
<key>few</key>
<string>%ld пашырэнні</string>
<key>many</key>
<string>%ld пашырэнняў</string>
<key>other</key>
<string>%ld пашырэнняў</string>
</dict>
</dict>
<key>plural.count.reply</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@reply_count@</string>
<key>reply_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 адказ</string>
<key>few</key>
<string>%ld адказы</string>
<key>many</key>
<string>%ld адказаў</string>
<key>other</key>
<string>%ld адказаў</string>
</dict>
</dict>
<key>plural.count.vote</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@vote_count@</string>
<key>vote_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 голас</string>
<key>few</key>
<string>%ld галасы</string>
<key>many</key>
<string>%ld галасоў</string>
<key>other</key>
<string>%ld галасоў</string>
</dict>
</dict>
<key>plural.count.voter</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@voter_count@</string>
<key>voter_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 удзельнік</string>
<key>few</key>
<string>%ld удзельнікі</string>
<key>many</key>
<string>%ld удзельнікаў</string>
<key>other</key>
<string>%ld удзельнікаў</string>
</dict>
</dict>
<key>plural.people_talking</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_people_talking@</string>
<key>count_people_talking</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 чалавек размаўляе</string>
<key>few</key>
<string>%ld чалавекі размаўляюць</string>
<key>many</key>
<string>%ld чалавек размаўляюць</string>
<key>other</key>
<string>%ld чалавек размаўляюць</string>
</dict>
</dict>
<key>plural.count.following</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_following@</string>
<key>count_following</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 падпісаны</string>
<key>few</key>
<string>%ld падпісаныя</string>
<key>many</key>
<string>%ld падпісаных</string>
<key>other</key>
<string>%ld падпісаных</string>
</dict>
</dict>
<key>plural.count.follower</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_follower@</string>
<key>count_follower</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 падпісчык</string>
<key>few</key>
<string>%ld падпісчыкі</string>
<key>many</key>
<string>%ld падпісчыкаў</string>
<key>other</key>
<string>%ld падпісчыкаў</string>
</dict>
</dict>
<key>date.year.left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_year_left@</string>
<key>count_year_left</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>Застаўся 1 год</string>
<key>few</key>
<string>%ld гады засталося</string>
<key>many</key>
<string>%ld гадоў засталося</string>
<key>other</key>
<string>%ld гадоў засталося</string>
</dict>
</dict>
<key>date.month.left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_month_left@</string>
<key>count_month_left</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>Застаўся 1 месяц</string>
<key>few</key>
<string>%ld месяцы засталося</string>
<key>many</key>
<string>%ld месяцаў засталося</string>
<key>other</key>
<string>%ld месяцаў засталося</string>
</dict>
</dict>
<key>date.day.left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_day_left@</string>
<key>count_day_left</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>Застаўся 1 дзень</string>
<key>few</key>
<string>%ld дні засталося</string>
<key>many</key>
<string>%ld дзён засталося</string>
<key>other</key>
<string>%ld дзён засталося</string>
</dict>
</dict>
<key>date.hour.left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_hour_left@</string>
<key>count_hour_left</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>Засталася 1 гадзіна</string>
<key>few</key>
<string>%ld гадзіны засталося</string>
<key>many</key>
<string>%ld гадзін засталося</string>
<key>other</key>
<string>%ld гадзін засталося</string>
</dict>
</dict>
<key>date.minute.left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_minute_left@</string>
<key>count_minute_left</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>Засталася 1 хвіліна</string>
<key>few</key>
<string>%ld хвіліны засталося</string>
<key>many</key>
<string>%ld хвілін засталося</string>
<key>other</key>
<string>%ld хвілін засталося</string>
</dict>
</dict>
<key>date.second.left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_second_left@</string>
<key>count_second_left</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>Засталася 1 секунда</string>
<key>few</key>
<string>%ld секунды засталося</string>
<key>many</key>
<string>%ld секунд засталося</string>
<key>other</key>
<string>%ld секунд засталося</string>
</dict>
</dict>
<key>date.year.ago.abbr</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_year_ago_abbr@</string>
<key>count_year_ago_abbr</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 год таму</string>
<key>few</key>
<string>%ld гады таму</string>
<key>many</key>
<string>%ld гадоў таму</string>
<key>other</key>
<string>%ld гадоў таму</string>
</dict>
</dict>
<key>date.month.ago.abbr</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_month_ago_abbr@</string>
<key>count_month_ago_abbr</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 месяц таму</string>
<key>few</key>
<string>%ld месяцы таму</string>
<key>many</key>
<string>%ld месяцаў таму</string>
<key>other</key>
<string>%ld месяцаў таму</string>
</dict>
</dict>
<key>date.day.ago.abbr</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_day_ago_abbr@</string>
<key>count_day_ago_abbr</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 дзень таму</string>
<key>few</key>
<string>%ld дні таму</string>
<key>many</key>
<string>%ld дзён таму</string>
<key>other</key>
<string>%ld дзён таму</string>
</dict>
</dict>
<key>date.hour.ago.abbr</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_hour_ago_abbr@</string>
<key>count_hour_ago_abbr</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 гадзіну таму</string>
<key>few</key>
<string>%ld гадзіны таму</string>
<key>many</key>
<string>%ld гадзін таму</string>
<key>other</key>
<string>%ld гадзін таму</string>
</dict>
</dict>
<key>date.minute.ago.abbr</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_minute_ago_abbr@</string>
<key>count_minute_ago_abbr</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 хвіліну таму</string>
<key>few</key>
<string>%ld хвіліны таму</string>
<key>many</key>
<string>%ld хвілін таму</string>
<key>other</key>
<string>%ld хвілін таму</string>
</dict>
</dict>
<key>date.second.ago.abbr</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_second_ago_abbr@</string>
<key>count_second_ago_abbr</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 секунду таму</string>
<key>few</key>
<string>%ld секунды таму</string>
<key>many</key>
<string>%ld секунд таму</string>
<key>other</key>
<string>%ld секунд таму</string>
</dict>
</dict>
</dict>
</plist>

View File

@ -1,945 +0,0 @@
{
"common": {
"alerts": {
"common": {
"please_try_again": "Паспрабуйце яшчэ раз.",
"please_try_again_later": "Паўтарыце спробу пазней."
},
"sign_up_failure": {
"title": "Памылка пры рэгістрацыі"
},
"server_error": {
"title": "Памылка сервера"
},
"vote_failure": {
"title": "Памылка пры галасаванні",
"poll_ended": "Апытанне завяршылася"
},
"publish_post_failure": {
"title": "Памылка пры публікацыі",
"message": "Не ўдалося апублікаваць допіс.\nПраверце злучэнне з інтэрнэтам.",
"attachments_message": {
"video_attach_with_photo": "Немагчыма прымацаваць відэа да допісу, які ўжо змяшчае выявы.",
"more_than_one_video": "Немагчыма дадаць больш за адно відэа."
}
},
"edit_profile_failure": {
"title": "Памылка пры рэдагаванні профілю",
"message": "Не атрымалася змяніць профіль. Паспрабуйце яшчэ раз."
},
"sign_out": {
"title": "Выйсці",
"message": "Вы ўпэўненыя, што хочаце выйсці?",
"confirm": "Выйсці"
},
"block_domain": {
"title": "Вы абсалютна дакладна ўпэўнены, што хочаце заблакіраваць %s зусім? У большасці выпадкаў, дастаткова некалькіх мэтавых блакіровак ці ігнараванняў. Вы перастанеце бачыць змесціва з гэтага дамену і вашы падпіскі з гэтага дамену будуць выдаленыя.",
"block_entire_domain": "Заблакіраваць дамен"
},
"save_photo_failure": {
"title": "Памылка пры захаванні фотам",
"message": "Дайце дазвол на доступ да бібліятэкі фатаграфій, каб захаваць фатаграфію."
},
"delete_post": {
"title": "Выдаліць допіс",
"message": "Вы ўпэўненыя, што хочаце выдаліць гэты допіс?"
},
"clean_cache": {
"title": "Ачысціць кэш",
"message": "Паспяхова ачышчаны %s кэшу."
},
"translation_failed": {
"title": "Нататка",
"message": "Збой перакладу. Магчыма, адміністратар не ўключыў пераклады на гэтым серверы або гэты сервер працуе са старой версіяй Mastodon, дзе пераклады яшчэ не падтрымліваюцца.",
"button": "Добра"
},
"media_missing_alt_text": {
"title": "У медыя адсутнічае альтэрнатыўны тэкст",
"message": "%d выявы не маюць альтэрнатыўны тэкст. Усё роўна апублікаваць?",
"cancel": "Скасаваць",
"post": "Допіс"
},
"boost_a_post": {
"title_boost": "Пашырыць допіс?",
"title_unboost": "Прыбраць допіс?",
"cancel": "Скасаваць",
"boost": "Пашырыць",
"unboost": "Прыбраць"
},
"unfollow_user": {
"title": "Адпісацца ад %@?",
"cancel": "Скасаваць",
"unfollow": "Адпісацца"
}
},
"controls": {
"actions": {
"back": "Назад",
"next": "Далей",
"previous": "Назад",
"open": "Адкрыць",
"add": "Дадаць",
"remove": "Выдаліць",
"edit": "Рэдагаваць",
"save": "Захаваць",
"ok": "OK",
"done": "Гатова",
"confirm": "Пацвердзіць",
"continue": "Працягнуць",
"compose": "Стварыць",
"cancel": "Скасаваць",
"discard": "Скасаваць",
"try_again": "Паўтарыце спробу",
"take_photo": "Зрабіць фота",
"save_photo": "Захаваць фота",
"copy_photo": "Капіраваць фота",
"sign_in": "Увайсці",
"see_more": "Паказаць больш",
"preview": "Перадпрагляд",
"copy": "Скапіраваць",
"share": "Абагуліць",
"share_user": "Абагуліць %s",
"share_post": "Абагуліць допіс",
"open_in_safari": "Адкрыць у Safari",
"open_in_browser": "Адкрыць у браўзеры",
"find_people": "Знайсці людзей, каб падпісацца",
"manually_search": "Замест гэтага шукайце ўручную",
"skip": "Прапусціць",
"reply": "Адказаць",
"report_user": "Паскардзіцца на %s",
"block_domain": "Заблакіраваць %s",
"unblock_domain": "Разблакіраваць %s",
"settings": "Налады",
"delete": "Выдаліць",
"translate_post": {
"title": "Перакласці з %s",
"unknown_language": "Невядомая"
},
"edit_post": "Рэдагаваць",
"bookmark": "Закладка",
"remove_bookmark": "Выдаліць закладку",
"follow": "Падпісацца на %s",
"unfollow": "Адпісацца ад %s"
},
"tabs": {
"home": "Галоўная",
"search_and_explore": "Шукайце і адкрывайце",
"notifications": "Апавяшчэнні",
"profile": "Профіль",
"a11y": {
"search": "Пошук",
"explore": "Агляд"
}
},
"keyboard": {
"common": {
"switch_to_tab": "Пераключыць на %s",
"compose_new_post": "Стварыць новы допіс",
"show_favorites": "Паказаць абраныя",
"open_settings": "Адкрыць налады"
},
"timeline": {
"previous_status": "Папярэдні допіс",
"next_status": "Наступны допіс",
"open_status": "Адкрыць допіс",
"open_author_profile": "Адкрыць профіль аўтара",
"open_reblogger_profile": "Адкрыць профіль пашырыўшага",
"reply_status": "Адказаць на допіс",
"toggle_reblog": "Пашырыць ці ўбраць пашырэнне",
"toggle_favorite": "Дадаць ці прыбраць з абранага",
"toggle_content_warning": "Уключыць/адключыць папярэджанне аб змесціве",
"preview_image": "Перадпрагляд відарыса"
},
"segmented_control": {
"previous_section": "Папярэдні раздзел",
"next_section": "Наступны раздзел"
}
},
"status": {
"user_reblogged": "%s пашырыў",
"user_replied_to": "Адказаў %s",
"show_post": "Паказаць допіс",
"show_user_profile": "Паказаць профіль карыстальніка",
"content_warning": "Папярэджанне аб змесціве",
"sensitive_content": "Далікатнае змесціва",
"media_content_warning": "Націсніце ў любым месцы, каб паказаць",
"tap_to_reveal": "Націсніце, каб паказаць",
"load_embed": "Загрузіць убудаваны",
"link_via_user": "%s праз %s",
"poll": {
"vote": "Прагаласаваць",
"closed": "Завершана"
},
"meta_entity": {
"url": "Спасылка: %s",
"hashtag": "Хэштэг: %s",
"mention": "Паказаць профіль: %s",
"email": "Электронная пошта: %s"
},
"actions": {
"reply": "Адказаць",
"reblog": "Пашырыць",
"unreblog": "Скасаваць пашырэнне",
"favorite": "Абранае",
"unfavorite": "Выдаліць з абраных",
"menu": "Меню",
"hide": "Схаваць",
"show_image": "Паказаць відарыс",
"show_gif": "Паказаць GIF",
"show_video_player": "Паказаць відэаплэер",
"share_link_in_post": "Падзяліцеся спасылкай у допісе",
"tap_then_hold_to_show_menu": "Націсніце і ўтрымлівайце, каб паказаць меню",
"a11y_labels": {
"reblog": "Пашырыць",
"unreblog": "Скасаваць пашырэнне"
}
},
"tag": {
"url": "URL",
"mention": "Згадванне",
"link": "Спасылка",
"hashtag": "Хэштэг",
"email": "Электронная пошта",
"emoji": "Эмодзі"
},
"visibility": {
"unlisted": "Кожны можа бачыць гэты допіс, але ён не адлюстроўваецца ў публічнай стужцы.",
"private": "Толькі іх падпісчыкі могуць бачыць гэты допіс.",
"private_from_me": "Толькі мае падпісчыкі могуць бачыць гэты допіс.",
"direct": "Толькі згаданы карыстальнік можа бачыць гэты пост."
},
"translation": {
"translated_from": "Перакладзена з %s з дапамогай %s",
"unknown_language": "Невядомая",
"unknown_provider": "Невядомы",
"show_original": "Паказаць арыгінал"
},
"media": {
"accessibility_label": "%s, далучэнне %d з %d",
"expand_image_hint": "Разгортванне відарыса. Двойчы націсніце і ўтрымлівайце, каб паказаць дзеянні",
"expand_gif_hint": "Разгортванне GIF. Двойчы націсніце і ўтрымлівайце, каб паказаць дзеянні",
"expand_video_hint": "Паказ відэаплэера. Двойчы націсніце і ўтрымлівайце, каб паказаць дзеянні"
},
"posted_via_application": "%s праз %s",
"buttons": {
"reblogs_title": "Пашырэнні",
"favorites_title": "Абраныя",
"edit_history_title": "Гісторыя рэдагавання",
"edit_history_detail": "Апошняе рэдагаванне %s"
},
"edited_at_timestamp_prefix": "Адрэдагавана %s",
"edit_history": {
"title": "Гісторыя рэдагавання",
"original_post": "Арыгінальнае паведамленне · %s"
}
},
"friendship": {
"follow": "Падпісацца",
"following": "Падпісаны",
"request": "Запыт",
"pending": "Чакаецца",
"block": "Заблакіраваць",
"block_user": "Заблакіраваць %s",
"block_domain": "Заблакіраваць дамен %s",
"unblock": "Разблакіраваць",
"unblock_user": "Разблакіраваць %s",
"blocked": "Заблакіраваны",
"domain_blocked": "Дамен заблакіраваны",
"mute": "Ігнараваць",
"mute_user": "Ігнараваць %s",
"unmute": "Не ігнараваць",
"unmute_user": "Не ігнараваць %s",
"muted": "Ігнаруецца",
"edit_info": "Рэдагаваць інфармацыю",
"show_reblogs": "Паказаць пашырэнні",
"hide_reblogs": "Схаваць пашырэнні"
},
"timeline": {
"filtered": "Адфільтравана",
"timestamp": {
"now": "Толькі што"
},
"loader": {
"load_missing_posts": "Загрузіць адсутныя допісы",
"loading_missing_posts": "Загрузка адсутных допісаў...",
"show_more_replies": "Паказаць больш адказаў"
},
"header": {
"no_status_found": "Допіс не знойдзены",
"blocking_warning": "Вы не можаце праглядаць профіль гэтага карыстальніка, \nпакуль не разблакіруеце яго.\nВось так для іх выглядае ваш профіль.",
"user_blocking_warning": "Вы не можаце праглядаць профіль %s, \nпакуль не разблакіруеце яго.\nВось так для іх выглядае ваш профіль.",
"blocked_warning": "Вы не можаце праглядаць профіль гэтага карыстальніка, \nпакуль ён не разблакіруе вас.",
"user_blocked_warning": "Вы не можаце праглядаць профіль %s, \nпакуль ён не разблакіруе вас.",
"suspended_warning": "Уліковы запіс гэтага карыстальніка прыпынены.",
"user_suspended_warning": "Уліковы запіс %s прыпынены."
}
}
},
"user_list": {
"no_verified_link": "Няма спраўджанай спасылкі",
"followers_count": "%@ падпісчыкаў"
}
},
"scene": {
"welcome": {
"log_in": "Увайсці",
"learn_more": "Даведацца больш",
"join_default_server": "Далучыцца да %@",
"pick_server": "Выбраць іншы сервер",
"separator": {
"or": "або"
},
"education": {
"mastodon": {
"title": "Вітаем у Mastodon",
"description": "Mastodon - гэта дэцэнтралізаваная сацыяльная сетка, што азначае, што ні адна кампанія не кантралюе яе. Ён складаецца з мноства незалежна працуюць сервераў, злучаных разам."
},
"servers": {
"title": "Што такое серверы?",
"description": "Кожны акаўнт Mastodon размяшчаецца на серверы - кожны са сваімі каштоўнасцямі, правіламі і адміністратарамі. Незалежна ад таго, які сервер вы вылучыце, вы можаце сачыць і ўзаемадзейнічаць з людзьмі на любым серверы."
},
"a11y": {
"what_is_mastodon": {
"title": "Што такое Mastodon?"
}
}
}
},
"login": {
"title": "З вяртаннем",
"subtitle": "Увайдзіце на серверы, дзе вы стварылі свой уліковы запіс.",
"server_search_field": {
"placeholder": "Увядзіце URL або адрас сервера"
}
},
"server_picker": {
"title": "Абярыце сервер",
"button": {
"language": "Мова",
"signup_speed": "Хуткасць рэгістрацыі",
"category": {
"all": "Усе",
"all_accessiblity_description": "Катэгорыя: Усе",
"academia": "акадэмія",
"activism": "актывізм",
"food": "ежа",
"furry": "фуры",
"games": "гульні",
"general": "асноўныя",
"journalism": "журналістыка",
"lgbt": "лгбт",
"regional": "рэгіянальныя",
"art": "мастацтва",
"music": "музыка",
"tech": "тэхналогіі"
},
"see_less": "Паказаць менш",
"see_more": "Паказаць больш"
},
"label": {
"language": "МОВА",
"users": "КАРЫСТАЛЬНІКІ",
"category": "КАТЭГОРЫЯ"
},
"input": {
"search_servers_or_enter_url": "Знайдзіце супольнасць або ўвядзіце URL"
},
"empty_state": {
"finding_servers": "Пошук даступных сервераў...",
"bad_network": "Нешта пайшло не так падчас загрузкі даных. Праверце інтэрнэт-злучэнне.",
"no_results": "Няма вынікаў"
},
"signup_speed": {
"all": "Усе",
"instant": "Імгненная рэгістрацыя",
"manually_reviewed": "Агляд кіраўніцтва"
},
"language": {
"all": "Усе"
},
"search": {
"placeholder": "Назва пошуку або URL-адрас"
},
"no_server_selected_hint": "Калі вы не выберыце сервер, то мы выберам яго на аснове вашай мовы."
},
"privacy": {
"title": "Прыватнасць",
"description": "Хоць праграма Mastodon не збірае ніякіх даных, сервер, праз які вы зарэгістраваліся, можа мець іншую палітыку. Знайдзіце хвілінку, каб азнаёміцца і пагадзіцца з палітыкай прыватнасці праграмы Mastodon і палітыкай прыватнасці вашага сервера.",
"policy": {
"ios": "Палітыка прыватнасці - Mastodon для iOS",
"server": "Палітыка прыватнасці - %s"
},
"button": {
"confirm": "Я згодны"
}
},
"register": {
"title": "Стварыць уліковы запіс",
"input": {
"avatar": {
"delete": "Выдаліць"
},
"username": {
"placeholder": "імя карыстальніка",
"duplicate_prompt": "Гэта імя карыстальніка занята.",
"suggestion": адзвычайны_%@"
},
"display_name": {
"placeholder": "бачнае імя"
},
"email": {
"placeholder": "электронная пошта"
},
"password": {
"placeholder": "пароль",
"confirmation_placeholder": "Пацвердзіць пароль",
"require": "Ваш пароль павінен мець як мінімум:",
"character_limit": "8 сімвалаў",
"accessibility": {
"checked": "адзначаны галачкай",
"unchecked": "галачка знятая"
},
"hint": "Ваш пароль павінен змяшчаць мінімум восем сімвалаў"
},
"invite": {
"registration_user_invite_request": "Чаму вы жадаеце далучыцца?"
}
},
"error": {
"item": {
"username": "Імя карыстальніка",
"email": "Электронная пошта",
"password": "Пароль",
"agreement": "Пагадненне",
"locale": "Мова",
"reason": "Прычына"
},
"reason": {
"blocked": "%s змяшчае забароненага пастаўшчыка email",
"unreachable": "%s не існуе",
"taken": "%s ужо занята. Як наконт:",
"reserved": "%s з'яўляецца зарэзерваваным ключавым словам",
"accepted": "%s павінна быць прынята",
"blank": "%s абавязковы",
"invalid": "%s несапраўдны",
"too_long": "%s занадта доўгі",
"too_short": "%s занадта кароткі",
"inclusion": "%s не з'яўляецца значэннем, якое падтрымліваецца"
},
"special": {
"username_invalid": "Імя карыстальніка павінна змяшчаць толькі літары, лічбы і знак падкрэслівання",
"username_too_long": "Імя карыстальніка занадта доўгае (не можа быць больш за 30 сімвалаў)",
"email_invalid": "Несапраўдны адрас электроннай пошты",
"password_too_short": "Пароль занадта кароткі (павінен быць не менш за 8 сімвалаў)"
}
}
},
"server_rules": {
"title": "Правілы сервера",
"subtitle": "Працягваючы, вы згаджаецеся выконваць правілы, устаноўленыя мадэратарам **%s**.",
"prompt": "Працягваючы, вы згаджаецеся з умовамі выкарыстання і палітыкай канфідэнцыяльнасці %s.",
"terms_of_service": "умовы выкарыстання",
"privacy_policy": "палітыка канфідэнцыяльнасці",
"button": {
"confirm": "Я згодны",
"disagree": "Не згодны"
}
},
"confirm_email": {
"title": "Праверце паштовую скрыню",
"tap_the_link_we_emailed_to_you_to_verify_your_account": "Націсніце на спасылку, якую мы адправілі вам для праверкі %@. Мы чакаем вас тут.",
"button": {
"resend": "Адправіць паўторна"
},
"dont_receive_email": {
"title": "Праверце электронную пошту",
"description": "Праверце, ці правільны ваш адрас электроннай пошты, а таксама папку са спамам, калі вы гэтага яшчэ не зрабілі.",
"resend_email": "Адправіць email паўторна"
},
"open_email_app": {
"title": "Праверыць свой паштовую скрыню.",
"description": "Мы толькі што даслалі вам электронны ліст. Праверце папку са спамам, калі не знайшлі яго.",
"mail": "Пошта",
"open_email_client": "Адкрыць паштовы кліент"
},
"didnt_get_link": {
"prefix": "Не атрымалі спасылку?",
"resend_in": "Адправіць паўторна (%@)",
"resend_now": "Адпраўце зараз паўторна."
}
},
"home_timeline": {
"title": "Галоўная",
"navigation_bar_state": {
"offline": "Па-за сеткай",
"new_posts": "Паказаць новыя",
"published": "Апублікавана!",
"Publishing": "Допіс публікуецца...",
"accessibility": {
"logo_label": "Mastodon",
"logo_hint": "Націсніце, каб пракруціць уверх, і зноў націсніце, каб перайсці да папярэдняга месца"
}
}
},
"suggestion_account": {
"title": "Папулярна ў Mastodon",
"follow_all": "Падпісацца на ўсіх"
},
"compose": {
"title": {
"new_post": "Новы допіс",
"new_reply": "Новы адказ",
"edit_post": "Рэдагаваць допіс"
},
"media_selection": {
"camera": "Зрабіць фота",
"photo_library": "Галерэя",
"browse": "Агляд"
},
"content_input_placeholder": "Напішыце тое, аб чым думаеце",
"compose_action": "Апублікаваць",
"replying_to_user": "адказ %s",
"attachment": {
"photo": "фота",
"video": "відэа",
"attachment_broken": "Гэты %s пашкоджаны і не можа быць\nзапампаваны ў Mastodon.",
"description_photo": "Апішыце фота для людзей са слабым зрокам...",
"description_video": "Апішыце відэа для людзей са слабым зрокам...",
"load_failed": "Не ўдалося загрузіць",
"upload_failed": "Не ўдалося запампаваць",
"can_not_recognize_this_media_attachment": "Немагчыма распазнаць гэты медыяфайл",
"attachment_too_large": "Далучэнне занадта вялікае",
"compressing_state": "Сцісканне...",
"server_processing_state": "Апрацоўка сервера..."
},
"poll": {
"title": "Апытанне",
"duration_time": "Працягласць: %s",
"thirty_minutes": "30 хвілін",
"one_hour": "1 гадзіна",
"six_hours": "6 гадзін",
"one_day": "1 дзень",
"three_days": "3 дні",
"seven_days": "7 дзён",
"option_number": "Варыянт %ld",
"the_poll_is_invalid": "Апытанне мае памылкі",
"the_poll_has_empty_option": "Апытанне мае пусты варыянт",
"add_option": "Дадаць варыянт",
"remove_option": "Выдаліць варыянт",
"move_up": "Перамясціць уверх",
"move_down": "Перамясціць уніз"
},
"content_warning": {
"placeholder": "Напішыце сваё папярэджанне тут..."
},
"visibility": {
"public": "Публічны",
"unlisted": "Не ў спісе",
"private": "Толькі для падпісчыкаў",
"direct": "Толькі людзі, якіх я згадаў"
},
"auto_complete": {
"space_to_add": "Прабел, каб дадаць"
},
"accessibility": {
"append_attachment": "Дадаць далучэнне",
"append_poll": "Дадаць апытанне",
"remove_poll": "Выдаліць апытанне",
"custom_emoji_picker": "Меню карыстальніцкіх эмодзі",
"enable_content_warning": "Уключыць папярэджанне аб змесціве",
"disable_content_warning": "Адключыць папярэджанне аб змесціве",
"post_visibility_menu": "Меню бачнасці допісу",
"post_options": "Параметры допісу",
"posting_as": "Апублікаваць як %s"
},
"keyboard": {
"discard_post": "Скасаваць допіс",
"publish_post": "Апублікаваць допіс",
"toggle_poll": "Адкрыць/закрыць апытанне",
"toggle_content_warning": "Уключыць/адключыць папярэджанне аб змесціве",
"append_attachment_entry": "Дадаць далучэнне - %s",
"select_visibility_entry": "Выберыце бачнасць - %s"
},
"language": {
"title": "Мова допісу",
"suggested": "Прапанаваныя",
"recent": "Нядаўні",
"other": "Іншая мова…"
}
},
"profile": {
"header": {
"follows_you": "Падпісаны(-а) на вас"
},
"dashboard": {
"my_posts": "допісы",
"my_following": "падпісаны",
"my_followers": "падпісчыкі",
"other_posts": "допісы",
"other_following": "падпісаны",
"other_followers": "падпісчыкі",
"familiar_followers": "узаемныя адносіны"
},
"fields": {
"joined": "Далучыўся",
"add_row": "Дадаць радок",
"placeholder": {
"label": "Пазнака",
"content": "Змесціва"
},
"verified": {
"short": "Спраўджана %s",
"long": "Права ўласнасці на гэтую спасылку праверана %s"
}
},
"segmented_control": {
"posts": "Допісы",
"replies": "Адказы",
"posts_and_replies": "Допісы і адказы",
"media": "Медыя",
"about": "Аб"
},
"relationship_action_alert": {
"confirm_mute_user": {
"title": "Ігнараваць уліковы запіс",
"message": "Ігнараваць %s?"
},
"confirm_unmute_user": {
"title": "Не ігнараваць уліковы запіс",
"message": "Не ігнараваць %s?"
},
"confirm_block_user": {
"title": "Заблакіраваць уліковы запіс",
"message": "Заблакіраваць %s?"
},
"confirm_unblock_user": {
"title": "Разблакіраваць уліковы запіс",
"message": "Разблакіраваць %s?"
},
"confirm_show_reblogs": {
"title": "Паказаць пашырэнні",
"message": "Пацвердзіце, каб паказаць пашырэнні"
},
"confirm_hide_reblogs": {
"title": "Схаваць пашырэнні",
"message": "Пацвердзіце, каб схаваць пашырэнні"
},
"confirm_block_domain": {
"title": "Заблакіраваць дамен",
"message": "Заблакіраваць дамен %s?"
},
"confirm_unblock_domain": {
"title": "Разблакіраваць дамен",
"message": "Разблакіраваць дамен %s?"
}
},
"accessibility": {
"show_avatar_image": "Паказаць аватар карыстальніка",
"edit_avatar_image": "Рэдагаваць аватар",
"show_banner_image": "Паказаць відарыс банера",
"double_tap_to_open_the_list": "Двойчы націсніце, каб адкрыць спіс"
}
},
"follower": {
"title": "падпісчык",
"footer": "Падпісчыкі з іншых сервераў не адлюстроўваюцца."
},
"following": {
"title": "падпісаны",
"footer": "Падпіскі з іншых сервераў не адлюстроўваюцца."
},
"familiarFollowers": {
"title": "Падпісчыкі, якіх вы ведаеце",
"followed_by_names": "Мае сярод падпісчыкаў %s"
},
"favorited_by": {
"title": "Дадалі ў абранае"
},
"reblogged_by": {
"title": "Пашырана"
},
"search": {
"title": "Пошук",
"search_bar": {
"placeholder": "Пошук хэштэгаў і карыстальнікаў",
"cancel": "Скасаваць"
},
"recommend": {
"button_text": "Прагледзець усе",
"hash_tag": {
"title": "Папулярныя ў Mastodon",
"description": "Хэштэгі, якія прыцягваюць увагу",
"people_talking": "%s чалавек размаўляе"
},
"accounts": {
"title": "Вам могуць спадабацца",
"description": "Магчыма, вы захочаце падпісацца на гэтыя профілі",
"follow": "Падпісацца"
}
},
"searching": {
"posts": "Супадзенне паведамленняў \"%s\"",
"people": "Супадзенне профіляў \"%s\"",
"profile": "Перайсці да @%s@%s",
"url": "Адкрыць спасылку ў Mastodon",
"hashtag": "Перайсці да #%s",
"no_user": {
"title": "Уліковы запіс карыстальніка не знойдзены",
"message": "На %s няма ўліковага запісу карыстальніка \"%s\""
},
"empty_state": {
"no_results": "Няма вынікаў"
},
"recent_search": "Нядаўнія запыты",
"clear_all": "Ачысціць усё",
"clear": "Ачысціць"
}
},
"discovery": {
"tabs": {
"posts": "Допісы",
"hashtags": "Хэштэгі",
"news": "Навіны",
"community": "Супольнасць",
"for_you": "Для вас"
},
"intro": "Допісы, што набіраюць папулярнасць у вашым кутку Mastodon."
},
"favorite": {
"title": "Абраны"
},
"notification": {
"title": {
"Everything": "Усе",
"Mentions": "Згадванні"
},
"notification_description": {
"followed_you": "падпісаўся на вас",
"favorited_your_post": "дадаў ваш допіс у абранае",
"reblogged_your_post": "пашырыў ваш допіс",
"mentioned_you": "згадаў вас",
"request_to_follow_you": "адправіў запыт на падпіску",
"poll_has_ended": "апытанне завяршылася"
},
"keyobard": {
"show_everything": "Паказаць усё",
"show_mentions": "Паказаць згадванні"
},
"follow_request": {
"accept": "Прыняць",
"accepted": "Прынята",
"reject": "адхіліць",
"rejected": "Адхілена"
}
},
"thread": {
"back_title": "Допіс",
"title": "Допіс ад %s"
},
"settings": {
"overview": {
"title": "Налады",
"general": "Агульныя",
"notifications": "Апавяшчэнні",
"support_mastodon": "Падтрымаць Mastodon",
"about_mastodon": "Пра Mastodon",
"server_details": "Інфармацыя аб серверы",
"logout": "Выйсці з %@"
},
"about_mastodon": {
"title": "Аб",
"more_settings": "Яшчэ больш налад",
"contribute_to_mastodon": "Унесці ўклад у Mastodon",
"privacy_policy": "Палітыка канфідэнцыяльнасці",
"clear_media_storage": "Ачысціце сховішча мультымедыя"
},
"server_details": {
"about": "Пра сервер",
"rules": "Правілы",
"about_instance": {
"title": "Адміністратар",
"message_admin": "Напісаць адміністратару",
"legal_notice": "Прававая інфармацыя"
}
},
"general": {
"title": "Агульныя",
"appearance": {
"section_title": "Знешні выгляд",
"dark": "Цёмная",
"light": "Светлая",
"system": "Выкарыстоўваць сістэмную тэму"
},
"ask_before": {
"section_title": "Спытайце перад…",
"posting_without_alt_text": "Публікацыя без альтэрнатыўнага тэксту",
"unfollowing_someone": "Адмена падпіскі на кагосьці",
"boosting_a_post": "Пашырэнне допісу",
"deleting_a_post": "Выдаленне допісу"
},
"design": {
"section_title": "Афармленне",
"show_animations": "Прайграваць аніміраваныя аватары і эмодзі"
},
"language": {
"section_title": "Мова",
"default_post_language": "Мова допісаў па змаўчанні"
},
"links": {
"section_title": "Спасылкі",
"open_in_mastodon": "Адкрываць у Mastodon",
"open_in_browser": "Адкрываць у браўзеры"
}
},
"notifications": {
"title": "Апавяшчэнні",
"policy": {
"title": "Атрымліваць апавяшчэнні ад",
"anyone": "Усіх",
"followers": "Людзей, якія падпісаны на вас",
"follow": "Людзей, на якіх вы падпісаны",
"noone": "Нікога"
},
"alert": {
"mentions_and_replies": "Згадванні & Адказы",
"boosts": "Пашырэнні",
"favorites": "Упадабаныя",
"new_followers": "Новыя падпісчыкі"
},
"disabled": {
"notification_hint": "Уключыце апавяшчэнні ў наладах прылады, каб бачыць абнаўлення на экране блакіроўкі.",
"go_to_settings": "Перайсці ў налады апавяшчэнняў"
}
}
},
"report": {
"title_report": "Скарга",
"title": "Паскардзіцца на %s",
"step1": "Крок 1 з 2",
"step2": "Крок 2 з 2",
"content1": "Ці ёсць іншыя допісы, якія вы хацелі б дадаць да скаргі?",
"content2": "Ці ёсць што-небудзь, што мадэратары павінны ведаць аб гэтай скарзе?",
"report_sent_title": "Дзякуй за вашу скаргу, мы яе разгледзім.",
"send": "Адправіць скаргу",
"skip_to_send": "Дасылаю без каментарыя",
"text_placeholder": "Увядзіце або ўстаўце дадатковыя каментарыі",
"reported": "Мае скаргі",
"step_one": {
"step_1_of_4": "Крок 1 з 4",
"whats_wrong_with_this_post": "Што не так з гэтым допісам?",
"whats_wrong_with_this_account": "Што не так з гэтым уліковым запісам?",
"whats_wrong_with_this_username": "Што не так з %s?",
"select_the_best_match": "Выберыце найлепшы варыянт",
"i_dont_like_it": "Мне не падабаецца",
"it_is_not_something_you_want_to_see": "Гэта не тое, што вы хочаце бачыць",
"its_spam": "Гэта спам",
"malicious_links_fake_engagement_or_repetetive_replies": "Шкодныя спасылкі, фальшывыя ўзаемадзеянні або адказы, што паўтараюцца",
"it_violates_server_rules": "Гэта парушае правілы сервера",
"you_are_aware_that_it_breaks_specific_rules": "Вам вядома, што гэта парушае пэўныя правілы",
"its_something_else": "Гэта нешта іншае",
"the_issue_does_not_fit_into_other_categories": "Гэта праблема не падпадае ні пад адну з катэгорыі"
},
"step_two": {
"step_2_of_4": "Крок 2 з 4",
"which_rules_are_being_violated": "Якія правілы былі парушаны?",
"select_all_that_apply": "Абярыце ўсе варыянты, што падыходзяць",
"i_just_dont_like_it": "Мне не падабаецца"
},
"step_three": {
"step_3_of_4": "Крок 3 з 4",
"are_there_any_posts_that_back_up_this_report": "Ці ёсць допісы, якія пацвярджаюць гэтую скаргу?",
"select_all_that_apply": "Абярыце ўсе варыянты, што падыходзяць"
},
"step_four": {
"step_4_of_4": "Крок 4 з 4",
"is_there_anything_else_we_should_know": "Што-небудзь яшчэ, што мы павінны ведаць?"
},
"step_final": {
"dont_want_to_see_this": "Не хочаце бачыць гэта?",
"when_you_see_something_you_dont_like_on_mastodon_you_can_remove_the_person_from_your_experience.": "Калі вы бачыце на Mastodon нешта, што вам не падабаецца, вы можаце выдаліць чалавека са свайго асяроддзя.",
"unfollow": "Адпісацца",
"unfollowed": "Адпісаліся",
"unfollow_user": "Адпісацца ад %s",
"mute_user": "Ігнараваць %s",
"you_wont_see_their_posts_or_reblogs_in_your_home_feed_they_wont_know_they_ve_been_muted": "Вы не ўбачыце іх допісы або пашырэнні ў сваёй хатняй стужцы. Яны не даведаюцца, што вы іх ігнаруеце.",
"block_user": "Заблакіраваць %s",
"they_will_no_longer_be_able_to_follow_or_see_your_posts_but_they_can_see_if_theyve_been_blocked": "Яны больш не змогуць падпісвацца на вас або бачыць вашыя допісы, але змогуць бачыць, што яны былі заблакіраваны.",
"while_we_review_this_you_can_take_action_against_user": "Пакуль мы разглядаем яе, вы можаце прыняць меры супраць %s"
}
},
"preview": {
"keyboard": {
"close_preview": "Зачыніць перадпрагляд",
"show_next": "Паказаць наступнае",
"show_previous": "Паказаць папярэдняе"
}
},
"account_list": {
"tab_bar_hint": "Бягучы профіль: %s. Двойчы націсніце і ўтрымлівайце, каб паказаць пераключальнік уліковых запісаў",
"dismiss_account_switcher": "Закрыць пераключальнік уліковых запісаў",
"add_account": "Дадаць уліковы запіс"
},
"bookmark": {
"title": "Закладкі"
},
"followed_tags": {
"title": "Тэгі, за якімі вы сочыце",
"header": {
"posts": "допісаў",
"participants": "ўдзельнікі",
"posts_today": "допісаў сёння"
},
"actions": {
"follow": "Падпісацца",
"unfollow": "Адпісацца"
}
}
},
"extension": {
"open_in": {
"invalid_link_error": "Здаецца, гэта несапраўдная спасылка на Mastodon."
}
},
"widget": {
"common": {
"unsupported_widget_family": "Выбачайце, але гэта сямейства віджэтаў не падтрымліваецца.",
"user_not_logged_in": "Калі ласка, адкрыйце Mastodon, каб увайсці ў уліковы запіс."
},
"followers_count": {
"configuration_display_name": "Падпісчыкі",
"configuration_description": "Паказаць колькасць падпісчыкаў.",
"title": "ПАДПІСЧЫКІ",
"followers_today": "%s падпісчыкаў сёння"
},
"multiple_followers": {
"configuration_display_name": "Больш падпісчыкаў",
"configuration_description": "Паказаць колькасць падпісчыкаў для некалькіх акаўнтаў.",
"mock_user": {
"display_name": "Яшчэ адзін паслядоўнік",
"account_name": "another@follower.social"
}
},
"latest_followers": {
"configuration_display_name": "Апошнія падпісчыкі",
"configuration_description": "Паказаць апошніх падпісчыкаў.",
"title": "Апошнія падпісчыкі",
"last_update": "Апошняе абнаўленне: %s"
},
"hashtag": {
"configuration": {
"display_name": "Хэштэг",
"description": "Паказвае нядаўні допіс з выбраным хэштэгам."
},
"not_found": {
"account_name": "Джон Мастадон",
"account": "@johnMastodon@no-such.account",
"content": "На жаль, мы не змаглі знайсці допісы з хэштэгам <a>#%@</a>. Калі ласка, паспрабуйце <a>#ІншыХэштэг</a> або праверце налады віджэта."
},
"placeholder": {
"account_name": "Джон Мастадон",
"account": "@johnMastodon@no-such.account",
"content": "Вось як будзе выглядаць допіс з <a>#хэштэгам</a>. Выберыце любы <a>#хэштэг</a> у наладах віджэта."
}
}
}
}

View File

@ -1,6 +0,0 @@
{
"NSCameraUsageDescription": "Выкарыстоўваецца, каб зрабіць фатаграфію для статусу допісу",
"NSPhotoLibraryAddUsageDescription": "Выкарыстоўваецца для захавання фатаграфій у бібліятэку",
"NewPostShortcutItemTitle": "Новы допіс",
"SearchShortcutItemTitle": "Пошук"
}

View File

@ -53,7 +53,7 @@
<key>a11y.plural.count.characters_left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@character_count@</string>
<string>resten %#@character_count@</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
@ -61,9 +61,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 caràcter restant</string>
<string>1 caràcter</string>
<key>other</key>
<string>%ld caràcters restants</string>
<string>%ld caràcters</string>
</dict>
</dict>
<key>plural.count.followed_by_and_mutual</key>
@ -173,22 +173,6 @@
<string>%ld impulsos</string>
</dict>
</dict>
<key>plural.count.reblog_a11y</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@reblog_count@</string>
<key>reblog_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 impuls</string>
<key>other</key>
<string>%ld impulsos</string>
</dict>
</dict>
<key>plural.count.reply</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
@ -424,7 +408,7 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>fa 1 dia</string>
<string>fa 1 día</string>
<key>other</key>
<string>fa %ld dies</string>
</dict>
@ -440,7 +424,7 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>fa 1 h</string>
<string>fa 1h</string>
<key>other</key>
<string>fa %ld hores</string>
</dict>
@ -456,9 +440,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>fa 1 min</string>
<string>fa 1 minut</string>
<key>other</key>
<string>fa %ld min</string>
<string>fa %ld minuts</string>
</dict>
</dict>
<key>date.second.ago.abbr</key>
@ -472,9 +456,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>fa 1 s</string>
<string>fa 1 segon</string>
<key>other</key>
<string>fa %ld s</string>
<string>fa %ld segons</string>
</dict>
</dict>
</dict>

View File

@ -2,74 +2,55 @@
"common": {
"alerts": {
"common": {
"please_try_again": "Torna-ho a provar.",
"please_try_again_later": "Prova-ho més tard."
"please_try_again": "Si us plau intenta-ho de nou.",
"please_try_again_later": "Si us plau, prova-ho més tard."
},
"sign_up_failure": {
"title": "Error en el registre"
},
"server_error": {
"title": "Error del servidor"
"title": "Error del Servidor"
},
"vote_failure": {
"title": "Error en votar",
"title": "Error del Vot",
"poll_ended": "L'enquesta ha finalitzat"
},
"discard_post_content": {
"title": "Descarta l'esborrany",
"message": "Confirma per a descartar el contingut de la publicació composta."
},
"publish_post_failure": {
"title": "Error en publicar",
"message": "No s'ha pogut enviar la publicació.\nComprova la connexió a Internet.",
"title": "Error de Publicació",
"message": "No s'ha pogut enviar la publicació.\nComprova la teva connexió a Internet.",
"attachments_message": {
"video_attach_with_photo": "No es pot adjuntar un vídeo a un tut que ja contingui imatges.",
"more_than_one_video": "No es pot adjuntar més d'un vídeo."
"video_attach_with_photo": "No es pot adjuntar un vídeo a una publicació que ja contingui imatges.",
"more_than_one_video": "No pots adjuntar més d'un vídeo."
}
},
"edit_profile_failure": {
"title": "Error en editar el perfil",
"message": "No es pot editar el perfil. Torna-ho a provar."
"title": "Error al Editar el Perfil",
"message": "No es pot editar el perfil. Si us plau torna-ho a provar."
},
"sign_out": {
"title": "Tanca la sessió",
"message": "Segur que vols tancar la sessió?",
"confirm": "Tanca la sessió"
"title": "Tancar Sessió",
"message": "Estàs segur que vols tancar la sessió?",
"confirm": "Tancar Sessió"
},
"block_domain": {
"title": "Estàs totalment segur que vols bloquejar per complet %s? En la majoria dels casos bloquejar o silenciar uns pocs objectius és suficient i preferible. No veureu contingut daquest domini i se suprimirà qualsevol dels vostres seguidors daquest domini.",
"block_entire_domain": "Bloca el domini"
"title": "Estàs segur, realment segur que vols bloquejar totalment %s? En la majoria dels casos bloquejar o silenciar uns pocs objectius és suficient i preferible. No veureu contingut daquest domini i se suprimirà qualsevol dels vostres seguidors daquest domini.",
"block_entire_domain": "Bloquejar Domini"
},
"save_photo_failure": {
"title": "Error en desar la foto",
"message": "Activa el permís d'accés a la biblioteca de fotos per a desar-la."
"title": "Error al Desar la Foto",
"message": "Activa el permís d'accés a la biblioteca de fotos per desar-la."
},
"delete_post": {
"title": "Eliminar la publicació",
"message": "Segur que vols eliminar aquesta publicació?"
"title": "Esborrar Publicació",
"message": "Estàs segur que vols suprimir aquesta publicació?"
},
"clean_cache": {
"title": "Esborra la memòria cau",
"message": "S'han esborrat %s de memòria cau."
},
"translation_failed": {
"title": "Nota",
"message": "La traducció ha fallat. Potser l'administrador d'aquest servidor no ha activat les traduccions o està executant una versió vella de Mastodon on les traduccions encara no eren suportades.",
"button": "D'acord"
},
"media_missing_alt_text": {
"title": "Media Missing Alt Text",
"message": "%d of your images are missing alt text.\nPost Anyway?",
"cancel": "Cancel",
"post": "Post"
},
"boost_a_post": {
"title_boost": "Boost Post?",
"title_unboost": "Unboost Post?",
"cancel": "Cancel",
"boost": "Boost",
"unboost": "Unboost"
},
"unfollow_user": {
"title": "Unfollow %@?",
"cancel": "Cancel",
"unfollow": "Unfollow"
"title": "Neteja la memòria cau",
"message": "S'ha netejat correctament la memòria cau de %s."
}
},
"controls": {
@ -86,67 +67,54 @@
"done": "Fet",
"confirm": "Confirma",
"continue": "Continua",
"compose": "Redacta",
"compose": "Composa",
"cancel": "Cancel·la",
"discard": "Descarta",
"try_again": "Torna a provar",
"take_photo": "Fes una foto",
"save_photo": "Desa la foto",
"copy_photo": "Copia la foto",
"sign_in": "Inicia sessió",
"see_more": "Mostra'n més",
"sign_in": "Iniciar sessió",
"sign_up": "Crea un compte",
"see_more": "Veure més",
"preview": "Vista prèvia",
"copy": "Copia",
"share": "Comparteix",
"share_user": "Comparteix %s",
"share_post": "Comparteix la publicació",
"share_user": "Compartir %s",
"share_post": "Compartir Publicació",
"open_in_safari": "Obrir a Safari",
"open_in_browser": "Obre al navegador",
"find_people": "Busca persones a seguir",
"manually_search": "Millor cerca manualment",
"manually_search": "Cerca manualment a canvi",
"skip": "Omet",
"reply": "Respon",
"report_user": "Denuncia %s",
"block_domain": "Bloca %s",
"unblock_domain": "Desbloca %s",
"report_user": "Informa sobre %s",
"block_domain": "Bloqueja %s",
"unblock_domain": "Desbloqueja %s",
"settings": "Configuració",
"delete": "Suprimeix",
"translate_post": {
"title": "Tradueix del: %s",
"unknown_language": "Desconegut"
},
"edit_post": "Edita",
"bookmark": "Marcador",
"remove_bookmark": "Elimina el marcador",
"follow": "Segueix a %s",
"unfollow": "Deixa de seguir %s"
"delete": "Suprimeix"
},
"tabs": {
"home": "Inici",
"search_and_explore": "Cerca i Explora",
"notifications": "Notificacions",
"profile": "Perfil",
"a11y": {
"search": "Cerca",
"explore": "Explora"
}
"search": "Cerca",
"notification": "Notificació",
"profile": "Perfil"
},
"keyboard": {
"common": {
"switch_to_tab": "Canviar a %s",
"compose_new_post": "Redacta un Nou Tut",
"compose_new_post": "Redacta un nova publicació",
"show_favorites": "Mostra els Favorits",
"open_settings": "Obre la configuració"
},
"timeline": {
"previous_status": "Tut Anterior",
"next_status": "Tut Següent",
"open_status": "Obre el Tut",
"open_author_profile": "Obre el perfil de l'autor",
"open_reblogger_profile": "Obre el perfil de l'impuls",
"reply_status": "Respon a la publicació",
"toggle_reblog": "Commuta l'Impuls del Tut",
"toggle_favorite": "Commuta el Favorit del Tut",
"previous_status": "Publicació anterior",
"next_status": "Publicació següent",
"open_status": "Obre la publicació",
"open_author_profile": "Obre el Perfil de l'Autor",
"open_reblogger_profile": "Obre el Perfil del Impulsor",
"reply_status": "Respon a la Publicació",
"toggle_reblog": "Commuta l'Impuls de la Publicació",
"toggle_favorite": "Commuta el Favorit de la Publicació",
"toggle_content_warning": "Commuta l'Avís de Contingut",
"preview_image": "Vista prèvia de l'Imatge"
},
@ -158,41 +126,34 @@
"status": {
"user_reblogged": "%s ha impulsat",
"user_replied_to": "Ha respòs a %s",
"show_post": "Mostra el Tut",
"show_post": "Mostra la Publicació",
"show_user_profile": "Mostra el perfil de l'usuari",
"content_warning": "Advertència de Contingut",
"sensitive_content": "Contingut sensible",
"media_content_warning": "Toca qualsevol lloc per a mostrar",
"tap_to_reveal": "Toca per a mostrar",
"load_embed": "Carregar incrustat",
"link_via_user": "%s través de %s",
"poll": {
"vote": "Vota",
"closed": "Finalitzada"
},
"meta_entity": {
"url": "Enllaç: %s",
"hashtag": "Etiqueta: %s",
"mention": "Mostra el perfil: %s",
"hashtag": "Etiqueta %s",
"mention": "Mostra el Perfil: %s",
"email": "Correu electrònic: %s"
},
"actions": {
"reply": "Respon",
"reblog": "Impulsa",
"unreblog": "Desfés l'impuls",
"reblog": "Impuls",
"unreblog": "Desfer l'impuls",
"favorite": "Favorit",
"unfavorite": "Desfés el favorit",
"unfavorite": "Desfer Favorit",
"menu": "Menú",
"hide": "Amaga",
"show_image": "Mostra la imatge",
"show_gif": "Mostra el GIF",
"show_video_player": "Mostra el reproductor de vídeo",
"share_link_in_post": "Compartir l'Enllaç en el Tut",
"tap_then_hold_to_show_menu": "Toca i manté per a veure el menú",
"a11y_labels": {
"reblog": "Impulsa",
"unreblog": "Desfés l'impuls"
}
"tap_then_hold_to_show_menu": "Toca i manté per a veure el menú"
},
"tag": {
"url": "URL",
@ -200,51 +161,26 @@
"link": "Enllaç",
"hashtag": "Etiqueta",
"email": "Correu electrònic",
"emoji": "Emojis"
"emoji": "Emoji"
},
"visibility": {
"unlisted": "Tothom pot veure aquesta publicació, però no es mostra en la línia de temps pública.",
"private": "Només els seus seguidors poden veure aquest tut.",
"private_from_me": "Només els meus seguidors poden veure aquest tut.",
"direct": "Només l'usuari mencionat pot veure aquest tut."
},
"translation": {
"translated_from": "Traduït del %s fent servir %s",
"unknown_language": "Desconegut",
"unknown_provider": "Desconegut",
"show_original": "Mostra l'Original"
},
"media": {
"accessibility_label": "%s, adjunt %d de %d",
"expand_image_hint": "Expandeix l'imatge. Toca dues vegades i manté pressionat per a mostrar les opcions",
"expand_gif_hint": "Expandeix el GIF. Toca dues vegades i manté pressionat per a mostrar les opcions",
"expand_video_hint": "Mostra el reproductor de vídeo. Toca dues vegades i manté pressionat per a mostrar les opcions"
},
"posted_via_application": "%s via %s",
"buttons": {
"reblogs_title": "Impulsos",
"favorites_title": "Favorits",
"edit_history_title": "Edita l'Historial",
"edit_history_detail": "Darrera edició: %s"
},
"edited_at_timestamp_prefix": "Editat %s",
"edit_history": {
"title": "Edita l'Historial",
"original_post": "Tut Original · %s"
"unlisted": "Tothom pot veure aquesta publicació però no es mostra en la línia de temps pública.",
"private": "Només els seus seguidors poden veure aquesta publicació.",
"private_from_me": "Només els meus seguidors poden veure aquesta publicació.",
"direct": "Només l'usuari mencionat pot veure aquesta publicació."
}
},
"friendship": {
"follow": "Segueix",
"following": "Seguint",
"request": "Sol·licitud",
"request": "Petició",
"pending": "Pendent",
"block": "Bloca",
"block_user": "Bloca %s",
"block_domain": "Block domain %s",
"unblock": "Desbloca",
"unblock_user": "Desbloca %s",
"blocked": "Blocat",
"domain_blocked": "Domain Blocked",
"block": "Bloqueja",
"block_user": "Bloqueja %s",
"block_domain": "Bloqueja %s",
"unblock": "Desbloqueja",
"unblock_user": "Desbloqueja %s",
"blocked": "Bloquejat",
"mute": "Silencia",
"mute_user": "Silencia %s",
"unmute": "Deixa de silenciar",
@ -260,50 +196,27 @@
"now": "Ara"
},
"loader": {
"load_missing_posts": "Carrega els tuts restants",
"loading_missing_posts": "Carregant els tuts restants...",
"load_missing_posts": "Carrega les publicacions faltants",
"loading_missing_posts": "Carregant les publicacions faltants...",
"show_more_replies": "Mostra més respostes"
},
"header": {
"no_status_found": "No s'ha Trobat cap Tut",
"blocking_warning": "No pots veure el perfil d'aquest usuari\nfins que el desbloquis.\nEl teu perfil els sembla així.",
"user_blocking_warning": "No pots veure el perfil de %s\nfins que el desbloquis.\nEl teu perfil els sembla així.",
"blocked_warning": "No pots veure el perfil d'aquest usuari\nfins que et desbloqui.",
"user_blocked_warning": "No pots veure el perfil de %s\nfins que et desbloqui.",
"no_status_found": "No s'ha trobat cap publicació",
"blocking_warning": "No pots veure el perfil d'aquest usuari\n fins que el desbloquegis.\nEl teu perfil els sembla així.",
"user_blocking_warning": "No pots veure el perfil de %s\n fins que el desbloquegis.\nEl teu perfil els sembla així.",
"blocked_warning": "No pots veure el perfil d'aquest usuari\nfins que et desbloquegi.",
"user_blocked_warning": "No pots veure el perfil de %s\n fins que et desbloquegi.",
"suspended_warning": "Aquest usuari ha estat suspès.",
"user_suspended_warning": "El compte de %s ha estat suspès."
}
}
},
"user_list": {
"no_verified_link": "Enllaç no verificat",
"followers_count": "%@ seguidors"
}
},
"scene": {
"welcome": {
"log_in": "Inicia sessió",
"learn_more": "Més informació",
"join_default_server": "Uneix-te a %@",
"pick_server": "Tria un altre servidor",
"separator": {
"or": "o"
},
"education": {
"mastodon": {
"title": "Benvingut a Mastodon",
"description": "Mastodon és un xarxa social descentralitzada, el que significa que cap empresa la controla. Es composa de molts servidors administrats independentment, tots interconnectats."
},
"servers": {
"title": "Què son els servidors?",
"description": "Cada compte a Mastodon esta allotjat en un servidor, cadascún d'ells amb els seus propis valors, normes i administradors. Tant és quin trïis, podràs seguir i interactuar amb gent de qualsevol servidor."
},
"a11y": {
"what_is_mastodon": {
"title": "Què és Mastodon?"
}
}
}
"slogan": "Xarxa social\nde nou a les teves mans.",
"get_started": "Comença",
"log_in": "Inicia sessió"
},
"login": {
"title": "Ben tornat",
@ -313,10 +226,9 @@
}
},
"server_picker": {
"title": "Tria un Servidor",
"title": "Mastodon està fet d'usuaris en diferents comunitats.",
"subtitle": "Tria un servidor en funció de la teva regió, interessos o un de propòsit general. Seguiràs podent connectar amb tothom a Mastodon, independentment del servidor.",
"button": {
"language": "Llengua",
"signup_speed": "Velocitat de registre",
"category": {
"all": "Totes",
"all_accessiblity_description": "Categoria: Totes",
@ -348,41 +260,18 @@
"finding_servers": "Cercant els servidors disponibles...",
"bad_network": "Alguna cosa no ha anat bé en carregar les dades. Comprova la teva connexió a Internet.",
"no_results": "No hi ha resultats"
},
"signup_speed": {
"all": "Tots",
"instant": "Registre instàntani",
"manually_reviewed": "Revisió manual"
},
"language": {
"all": "Totes"
},
"search": {
"placeholder": "Cerca nom o URL"
},
"no_server_selected_hint": "Escollirem un servidor basat en la teva llengua si continues sense res seleccionat.\nElegiremos un servidor basado en su idioma si continúa sin hacer una selección."
},
"privacy": {
"title": "Privacitat",
"description": "Tot i que l'aplicació Mastodon no recull cap dada, el servidor mitjançant el qual et registres pot tenir una política diferent. Pren un minut per revisar i acceptar la política de privadesa de l'aplicació Mastodon i la política de privadesa del teu servidor.",
"policy": {
"ios": "Política de Privacitat - Mastodon per a iOS",
"server": "Politìca de Privacitat - %s"
},
"button": {
"confirm": "Hi estic d'acord"
}
},
"register": {
"title": "Crear un compte",
"title": "Anem a configurar-te a %s",
"lets_get_you_set_up_on_domain": "Anem a configurar-te a %s",
"input": {
"avatar": {
"delete": "Suprimeix"
},
"username": {
"placeholder": "nom d'usuari",
"duplicate_prompt": "Aquest nom d'usuari ja està en ús.",
"suggestion": "increible_%@"
"duplicate_prompt": "Aquest nom d'usuari ja està en ús."
},
"display_name": {
"placeholder": "nom visible"
@ -392,7 +281,6 @@
},
"password": {
"placeholder": "contrasenya",
"confirmation_placeholder": "Confirma la Contrasenya",
"require": "La teva contrasenya com a mínim necessita:",
"character_limit": "8 caràcters",
"accessibility": {
@ -417,7 +305,7 @@
"reason": {
"blocked": "%s conté un proveïdor de correu electrònic no autoritzat",
"unreachable": "%s sembla que no existeix",
"taken": "%s ja està agafat. Què et sembla:",
"taken": "%s ja sestà fent servir",
"reserved": "%s és una paraula clau reservada",
"accepted": "%s ha de ser acceptat",
"blank": "%s és requerit",
@ -435,24 +323,25 @@
}
},
"server_rules": {
"title": "Server Rules",
"subtitle": "By continuing, you agree to follow by the following rules set and enforced by the **%s** moderators.",
"title": "Algunes regles bàsiques.",
"subtitle": "Aquestes regles estan establertes i aplicades per els moderadors de %s.",
"prompt": "Al continuar, estàs subjecte als termes de servei i a la política de privacitat de %s.",
"terms_of_service": "termes del servei",
"privacy_policy": "política de privadesa",
"button": {
"confirm": "Hi estic d'acord",
"disagree": "Disagree"
"confirm": "Hi estic d'acord"
}
},
"confirm_email": {
"title": "Comprova la Teva Safata d'entrada",
"tap_the_link_we_emailed_to_you_to_verify_your_account": "Toca l'enllaç que t'hem enviat per a verificar %@. Esperarem aquí mateix.",
"title": "Una última cosa.",
"subtitle": "Toca l'enllaç del correu electrònic que t'hem enviat per a confirmar el teu compte.",
"tap_the_link_we_emailed_to_you_to_verify_your_account": "Toca l'enllaç del correu electrònic que t'hem enviat per a confirmar el teu compte",
"button": {
"open_email_app": "Obre l'aplicació de correu",
"resend": "Reenvia"
},
"dont_receive_email": {
"title": "Revisa el teu correu",
"title": "Comprova el teu correu",
"description": "Comprova que la teva adreça de correu electrònic és correcte i revisa la carpeta de correu brossa si encara no ho has fet.",
"resend_email": "Torna a enviar el correu"
},
@ -461,35 +350,29 @@
"description": "Acabem d'enviar-te un correu electrònic. Revisa la carpeta de correu brossa si encara no ho has fet.",
"mail": "Correu electrònic",
"open_email_client": "Obre el Client de Correu electrònic"
},
"didnt_get_link": {
"prefix": "No has rebut l'enllaç?",
"resend_in": "Torna a enviar (%@)",
"resend_now": "Reenvia ara."
}
},
"home_timeline": {
"title": "Inici",
"navigation_bar_state": {
"offline": "Fora de línia",
"new_posts": "Veure nous tuts",
"new_posts": "Veure noves publicacions",
"published": "Publicat!",
"Publishing": "S'està publicant...",
"accessibility": {
"logo_label": "Mastodon",
"logo_label": "Botó de logotip",
"logo_hint": "Toca per desplaçar-te cap a dalt i torna a toca de nou per tornar a la ubicació anterior"
}
}
},
"suggestion_account": {
"title": "Popular a Mastodon",
"follow_all": "Seguir a tothom"
"title": "Cerca Persones a Seguir",
"follow_explain": "Quan segueixes algú, veuràs les seves publicacions a Inici."
},
"compose": {
"title": {
"new_post": "Nou Tut",
"new_reply": "Nova Resposta",
"edit_post": "Edita el Tut"
"new_post": "Nova publicació",
"new_reply": "Nova Resposta"
},
"media_selection": {
"camera": "Fes una Foto",
@ -503,8 +386,8 @@
"photo": "foto",
"video": "vídeo",
"attachment_broken": "Aquest %s està trencat i no pot ser\ncarregat a Mastodon.",
"description_photo": "Descriu la foto per a les persones amb diversitat funcional...",
"description_video": "Descriu el vídeo per a les persones amb diversitat funcional...",
"description_photo": "Descriu la foto per als disminuïts visuals...",
"description_video": "Descriu el vídeo per als disminuïts visuals...",
"load_failed": "Ha fallat la càrrega",
"upload_failed": "Pujada fallida",
"can_not_recognize_this_media_attachment": "No es pot reconèixer aquest adjunt multimèdia",
@ -513,7 +396,6 @@
"server_processing_state": "Servidor processant..."
},
"poll": {
"title": "Enquesta",
"duration_time": "Durada: %s",
"thirty_minutes": "30 minuts",
"one_hour": "1 Hora",
@ -523,11 +405,7 @@
"seven_days": "7 Dies",
"option_number": "Opció %ld",
"the_poll_is_invalid": "L'enquesta no és vàlida",
"the_poll_has_empty_option": "L'enquesta té una opció buida",
"add_option": "Afegeix Opció",
"remove_option": "Treu Opció",
"move_up": "Desplaça Amunt",
"move_down": "Desplaça Avall"
"the_poll_has_empty_option": "L'enquesta té una opció buida"
},
"content_warning": {
"placeholder": "Escriu un advertiment precís aquí..."
@ -548,23 +426,17 @@
"custom_emoji_picker": "Selector d'Emoji Personalitzat",
"enable_content_warning": "Activa l'Avís de Contingut",
"disable_content_warning": "Desactiva l'Avís de Contingut",
"post_visibility_menu": "Menú de Visibilitat del Tut",
"post_options": "Opcions del Tut",
"post_visibility_menu": "Menú de Visibilitat de Publicació",
"post_options": "Opcions del tut",
"posting_as": "Publicant com a %s"
},
"keyboard": {
"discard_post": "Descarta el Tut",
"publish_post": "Envia el Tut",
"discard_post": "Descarta la Publicació",
"publish_post": "Envia la Publicació",
"toggle_poll": "Commuta l'enquesta",
"toggle_content_warning": "Commuta l'Avís de Contingut",
"append_attachment_entry": "Afegeix Adjunt - %s",
"select_visibility_entry": "Selecciona la Visibilitat - %s"
},
"language": {
"title": "Llengua del Tut",
"suggested": "Suggerit",
"recent": "Recent",
"other": "Altre Llengua…"
}
},
"profile": {
@ -572,16 +444,11 @@
"follows_you": "Et segueix"
},
"dashboard": {
"my_posts": "tuts",
"my_following": "seguint",
"my_followers": "seguidors",
"other_posts": "tuts",
"other_following": "seguint",
"other_followers": "seguidors",
"familiar_followers": "mutu"
"posts": "publicacions",
"following": "seguint",
"followers": "seguidors"
},
"fields": {
"joined": "S'hi va unir",
"add_row": "Afegeix fila",
"placeholder": {
"label": "Etiqueta",
@ -593,9 +460,9 @@
}
},
"segmented_control": {
"posts": "Tuts",
"posts": "Publicacions",
"replies": "Respostes",
"posts_and_replies": "Tuts i Respostes",
"posts_and_replies": "Publicacions i Respostes",
"media": "Mèdia",
"about": "Quant a"
},
@ -609,12 +476,12 @@
"message": "Confirma deixar de silenciar a %s"
},
"confirm_block_user": {
"title": "Bloca el Compte",
"message": "Confirma per a blocar %s"
"title": "Bloqueja el Compte",
"message": "Confirma per a bloquejar %s"
},
"confirm_unblock_user": {
"title": "Desbloca el Compte",
"message": "Confirma per a desblocar %s"
"title": "Desbloqueja el Compte",
"message": "Confirma per a desbloquejar %s"
},
"confirm_show_reblogs": {
"title": "Mostra els Impulsos",
@ -623,14 +490,6 @@
"confirm_hide_reblogs": {
"title": "Amaga Impulsos",
"message": "Confirma per a amagar els impulsos"
},
"confirm_block_domain": {
"title": "Block domain",
"message": "Confirm to block domain %s"
},
"confirm_unblock_domain": {
"title": "Unblock domain",
"message": "Confirm to unblock domain %s"
}
},
"accessibility": {
@ -656,7 +515,7 @@
"title": "Preferit per"
},
"reblogged_by": {
"title": "Impulsat Per"
"title": "Impulsat per"
},
"search": {
"title": "Cerca",
@ -678,35 +537,31 @@
}
},
"searching": {
"posts": "Tuts coincidents amb \"%s\"",
"people": "Perfils coincidents amb \"%s\"",
"profile": "Vés a @%s@%s",
"url": "Obre l'enllaç a Mastodon",
"hashtag": "Vés a #%s",
"no_user": {
"title": "No User Account Found",
"message": "There's no Useraccount \"%s\" on %s"
"segment": {
"all": "Tots",
"people": "Gent",
"hashtags": "Etiquetes",
"posts": "Publicacions"
},
"empty_state": {
"no_results": "No hi ha resultats"
},
"recent_search": "Cerques recents",
"clear_all": "Esborra-ho tot",
"clear": "Neteja"
}
},
"discovery": {
"tabs": {
"posts": "Tuts",
"posts": "Publicacions",
"hashtags": "Etiquetes",
"news": "Notícies",
"community": "Comunitat",
"for_you": "Per a tu"
},
"intro": "Aquests son els tuts que criden l'atenció en el teu racó de Mastodon."
"intro": "Aquestes son les publicacions que criden l'atenció en el teu racó de Mastodon."
},
"favorite": {
"title": "Favorits"
"title": "Els teus Favorits"
},
"notification": {
"title": {
@ -733,83 +588,64 @@
}
},
"thread": {
"back_title": "Tut",
"title": "Tut de %s"
"back_title": "Publicació",
"title": "Publicació de %s"
},
"settings": {
"overview": {
"title": "Settings",
"general": "General",
"notifications": "Notifications",
"support_mastodon": "Support Mastodon",
"about_mastodon": "About Mastodon",
"server_details": "Server Details",
"logout": "Logout %@"
},
"about_mastodon": {
"title": "About",
"more_settings": "Even More Settings",
"contribute_to_mastodon": "Contribute to Mastodon",
"privacy_policy": "Privacy Policy",
"clear_media_storage": "Clear Media Storage"
},
"server_details": {
"about": "About",
"rules": "Rules",
"about_instance": {
"title": "Administrator",
"message_admin": "Message Admin",
"legal_notice": "A legal notice"
}
},
"general": {
"title": "General",
"title": "Configuració",
"section": {
"appearance": {
"section_title": "Appearance",
"dark": "Dark",
"light": "Light",
"system": "Use Device Appearance"
"title": "Aparença",
"automatic": "Automàtic",
"light": "Sempre Clara",
"dark": "Sempre Fosca"
},
"ask_before": {
"section_title": "Ask before…",
"posting_without_alt_text": "Posting without Alt Text",
"unfollowing_someone": "Unfollowing Someone",
"boosting_a_post": "Boosting a Post",
"deleting_a_post": "Deleting a Post"
"look_and_feel": {
"title": "Aspecte i Comportament",
"use_system": "Usa el del Sistema",
"really_dark": "Realment Negre",
"sorta_dark": "Una Mena de Fosc",
"light": "Clar"
},
"design": {
"section_title": "Design",
"show_animations": "Play Animated Avatars and Emoji"
"notifications": {
"title": "Notificacions",
"favorites": "Ha afavorit el meu estat",
"follows": "Em segueix",
"boosts": "Ha impulsat el meu estat",
"mentions": "M'ha mencionat",
"trigger": {
"anyone": "algú",
"follower": "un seguidor",
"follow": "a qualsevol que segueixi",
"noone": "ningú",
"title": "Notifica'm quan"
}
},
"language": {
"section_title": "Language",
"default_post_language": "Default Post Language"
"preference": {
"title": "Preferències",
"true_black_dark_mode": "Mode negre fosc autèntic",
"disable_avatar_animation": "Desactiva avatars animats",
"disable_emoji_animation": "Desactiva emojis animats",
"using_default_browser": "Utilitza el navegador predeterminat per a obrir enllaços",
"open_links_in_mastodon": "Obre enllaços a Mastodon"
},
"links": {
"section_title": "Links",
"open_in_mastodon": "Open in Mastodon",
"open_in_browser": "Open in Browser"
"boring_zone": {
"title": "La Zona Avorrida",
"account_settings": "Paràmetres del Compte",
"terms": "Termes de Servei",
"privacy": "Política de Privacitat"
},
"spicy_zone": {
"title": "La Zona Picant",
"clear": "Esborra la memòria cau de Mèdia",
"signout": "Tancar Sessió"
}
},
"notifications": {
"title": "Notifications",
"policy": {
"title": "Get Notifications from",
"anyone": "Anyone",
"followers": "People who follow you",
"follow": "People you follow",
"noone": "No one"
},
"alert": {
"mentions_and_replies": "Mentions & Replies",
"boosts": "Boosts",
"favorites": "Favorites",
"new_followers": "New Followers"
},
"disabled": {
"notification_hint": "Turn on notifications from your device settings to see updates on your lock screen.",
"go_to_settings": "Go to Notification Settings"
}
"footer": {
"mastodon_description": "Mastodon és un programari de codi obert. Pots informar de problemes a GitHub a %s (%s)"
},
"keyboard": {
"close_settings_window": "Tancar la Finestra de Configuració"
}
},
"report": {
@ -817,7 +653,7 @@
"title": "Informa sobre %s",
"step1": "Pas 1 de 2",
"step2": "Pas 2 de 2",
"content1": "Hi ha algun altre tut que vulguis afegir a l'informe?",
"content1": "Hi ha alguna altre publicació que vulguis afegir a l'informe?",
"content2": "Hi ha alguna cosa que els moderadors hagin de saber sobre aquest informe?",
"report_sent_title": "Gràcies per informar, ho investigarem.",
"send": "Envia Informe",
@ -826,7 +662,7 @@
"reported": "REPORTAT",
"step_one": {
"step_1_of_4": "Pas 1 de 4",
"whats_wrong_with_this_post": "Quin és el problema amb aquest tut?",
"whats_wrong_with_this_post": "Quin és el problema amb aquesta publicació?",
"whats_wrong_with_this_account": "Quin és el problema amb aquest compte?",
"whats_wrong_with_this_username": "Quin és el problema amb %s?",
"select_the_best_match": "Selecciona la millor coincidència",
@ -847,7 +683,7 @@
},
"step_three": {
"step_3_of_4": "Pas 3 de 4",
"are_there_any_posts_that_back_up_this_report": "Hi ha alguns tuts que recolzin aquest informe?",
"are_there_any_posts_that_back_up_this_report": "Hi ha alguna publicació que recolzi aquest informe?",
"select_all_that_apply": "Selecciona tot el que correspongui"
},
"step_four": {
@ -856,14 +692,14 @@
},
"step_final": {
"dont_want_to_see_this": "No vols veure això?",
"when_you_see_something_you_dont_like_on_mastodon_you_can_remove_the_person_from_your_experience.": "Quan veus alguna cosa que no t'agrada a Mastodon, pots eliminar la persona de la teva experiència.",
"when_you_see_something_you_dont_like_on_mastodon_you_can_remove_the_person_from_your_experience.": "Quan veus alguna cosa que no t'agrada a Mastodon, pots eliminar la persona de la vostra experiència.",
"unfollow": "Deixa de seguir",
"unfollowed": "S'ha deixat de seguir",
"unfollow_user": "Deixa de seguir %s",
"mute_user": "Silencia %s",
"you_wont_see_their_posts_or_reblogs_in_your_home_feed_they_wont_know_they_ve_been_muted": "No veuràs els seus tuts o impulsos a la teva línia de temps personal. No sabran que han estat silenciats.",
"you_wont_see_their_posts_or_reblogs_in_your_home_feed_they_wont_know_they_ve_been_muted": "No veuràs les seves publicacions o impulsos a la teva línia de temps personal. No sabran que han estat silenciats.",
"block_user": "Bloca %s",
"they_will_no_longer_be_able_to_follow_or_see_your_posts_but_they_can_see_if_theyve_been_blocked": "Ja no podran seguir ni veure els teus tuts, però poden veure si han estat blocats.",
"they_will_no_longer_be_able_to_follow_or_see_your_posts_but_they_can_see_if_theyve_been_blocked": "Ja no podran seguir ni veure les teves publicacions, però poden veure si han estat bloquejats.",
"while_we_review_this_you_can_take_action_against_user": "Mentre ho revisem, pots prendre mesures contra %s"
}
},
@ -879,67 +715,13 @@
"dismiss_account_switcher": "Descartar el commutador de comptes",
"add_account": "Afegir compte"
},
"wizard": {
"new_in_mastodon": "Nou a Mastodon",
"multiple_account_switch_intro_description": "Commuta entre diversos comptes mantenint premut el botó del perfil.",
"accessibility_hint": "Toca dues vegades per descartar l'assistent"
},
"bookmark": {
"title": "Marcadors"
},
"followed_tags": {
"title": "Etiquetes seguides",
"header": {
"posts": "tuts",
"participants": "participants",
"posts_today": "tuts d'avui"
},
"actions": {
"follow": "Segueix",
"unfollow": "Deixa de seguir"
}
}
},
"extension": {
"open_in": {
"invalid_link_error": "Aquest no sembla ser un enllaç vàlid de Mastodon."
}
},
"widget": {
"common": {
"unsupported_widget_family": "Ho sentim però aquesta familia de ginys no està suportada.",
"user_not_logged_in": "Si us plau obre Mastodon per a iniciar sessió en un Compte."
},
"followers_count": {
"configuration_display_name": "Seguidors",
"configuration_description": "Mostra el número de seguidors.",
"title": "SEGUIDORS",
"followers_today": "%s seguidors avui"
},
"multiple_followers": {
"configuration_display_name": "Múltiples seguidors",
"configuration_description": "Mostra el número de seguidors per a múltiples comptes.",
"mock_user": {
"display_name": "Un altre seguidor",
"account_name": "unaltre@seguidor.social"
}
},
"latest_followers": {
"configuration_display_name": "Els darrers seguidors",
"configuration_description": "Mostra els darrers seguidors.",
"title": "Els darrers seguidors",
"last_update": "Darrera actualització: %s"
},
"hashtag": {
"configuration": {
"display_name": "Etiqueta",
"description": "Mostra un tut recent amb l'etiqueta seleccionada."
},
"not_found": {
"account_name": "John Mastodon",
"account": "@johnMastodon@no-existeix-el.compte",
"content": "Ho sentim, no hem pogut trobar cap tut amb l'etiqueta <a>#%@</a>. Si us plau, prova una <a>#EtiquetaDiferent</a> o revisa la configuració del giny."
},
"placeholder": {
"account_name": "John Mastodon",
"account": "@johnMastodon@no-existeix-el.compte",
"content": "Així és com es veuría un tut amb <a>#etiqueta</a>. Tria la <a>#etiqueta</a> que vulguis en la configuració del giny."
}
}
}
}

View File

@ -53,7 +53,7 @@
<key>a11y.plural.count.characters_left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@character_count@</string>
<string>%#@character_count@ left</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
@ -61,9 +61,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 character left</string>
<string>1 character</string>
<key>other</key>
<string>%ld characters left</string>
<string>%ld characters</string>
</dict>
</dict>
<key>plural.count.followed_by_and_mutual</key>
@ -173,22 +173,6 @@
<string>%ld پۆستکردنەوە</string>
</dict>
</dict>
<key>plural.count.reblog_a11y</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@reblog_count@</string>
<key>reblog_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 re-blog</string>
<key>other</key>
<string>%ld re-blogs</string>
</dict>
</dict>
<key>plural.count.reply</key>
<dict>
<key>NSStringLocalizedFormatKey</key>

View File

@ -15,6 +15,10 @@
"title": "نەتوانرا دەنگ بدرێت",
"poll_ended": "دەنگدانەکە کۆتایی هاتووە"
},
"discard_post_content": {
"title": "ڕەشنووس هەڵمەگرە",
"message": "دڵنیا ببەوە بۆ وازهێنان لە ناوەڕۆکەت."
},
"publish_post_failure": {
"title": "نەتوانرا پۆستەکە بکرێت",
"message": "نەتوانرا پۆستەکە بکرێت.\nتکایە لە بەردەستبوونی هێڵی ئینتەرنێت دڵنیا بە.",
@ -47,29 +51,6 @@
"clean_cache": {
"title": "بیرگە پاک بکەوە",
"message": "سەرکەوتووانە بیرگەی %s پاک کرایەوە."
},
"translation_failed": {
"title": "Note",
"message": "Translation failed. Maybe the administrator has not enabled translations on this server or this server is running an older version of Mastodon where translations are not yet supported.",
"button": "OK"
},
"media_missing_alt_text": {
"title": "Media Missing Alt Text",
"message": "%d of your images are missing alt text.\nPost Anyway?",
"cancel": "Cancel",
"post": "Post"
},
"boost_a_post": {
"title_boost": "Boost Post?",
"title_unboost": "Unboost Post?",
"cancel": "Cancel",
"boost": "Boost",
"unboost": "Unboost"
},
"unfollow_user": {
"title": "Unfollow %@?",
"cancel": "Cancel",
"unfollow": "Unfollow"
}
},
"controls": {
@ -94,9 +75,9 @@
"save_photo": "هەڵی بگرە",
"copy_photo": "لەبەری بگرەوە",
"sign_in": "Log in",
"sign_up": "Create account",
"see_more": "زیاتر ببینە",
"preview": "پێشبینین",
"copy": "Copy",
"share": "هاوبەشی بکە",
"share_user": "%s هاوبەش بکە",
"share_post": "هاوبەشی بکە",
@ -110,26 +91,13 @@
"block_domain": "%s ئاستەنگ بکە",
"unblock_domain": "%s ئاستەنگ مەکە",
"settings": "رێکخستنەکان",
"delete": "بیسڕەوە",
"translate_post": {
"title": "Translate from %s",
"unknown_language": "Unknown"
},
"edit_post": "Edit",
"bookmark": "Bookmark",
"remove_bookmark": "Remove Bookmark",
"follow": "Follow %s",
"unfollow": "Unfollow %s"
"delete": "بیسڕەوە"
},
"tabs": {
"home": "ماڵەوە",
"search_and_explore": "Search and Explore",
"notifications": "Notifications",
"profile": "پرۆفایل",
"a11y": {
"search": "Search",
"explore": "Explore"
}
"search": "بگەڕێ",
"notification": "ئاگادارکردنەوەکان",
"profile": "پرۆفایل"
},
"keyboard": {
"common": {
@ -164,8 +132,6 @@
"sensitive_content": "ناوەڕۆکی هەستیار",
"media_content_warning": "دەستی پیا بنێ بۆ نیشاندانی",
"tap_to_reveal": "دەستی پیا بنێ بۆ نیشاندانی",
"load_embed": "Load Embed",
"link_via_user": "%s via %s",
"poll": {
"vote": "دەنگ بدە",
"closed": "داخراوە"
@ -187,12 +153,7 @@
"show_image": "وێنەکە نیشان بدە",
"show_gif": "گیفەکە نیشان بدە",
"show_video_player": "ڤیدیۆکە لێ بدە",
"share_link_in_post": "Share Link in Post",
"tap_then_hold_to_show_menu": "دەستی پیا بنێ و بیگرە بۆ نیشاندانی پێڕستەکە",
"a11y_labels": {
"reblog": "Re-blog",
"unreblog": "Undo re-blog"
}
"tap_then_hold_to_show_menu": "دەستی پیا بنێ و بیگرە بۆ نیشاندانی پێڕستەکە"
},
"tag": {
"url": "بەستەر",
@ -207,30 +168,6 @@
"private": "تەنیا شوێنکەوتووەکانی دەتوانن ئەم پۆستە ببینن.",
"private_from_me": "تەنیا شوێنکەوتووەکانم دەتوانن ئەم پۆستە ببینن.",
"direct": "تەنیا بەکارهێنەرە ئاماژە پێکراوەکە دەتوانێت ئەم پۆستە ببینێت."
},
"translation": {
"translated_from": "Translated from %s using %s",
"unknown_language": "Unknown",
"unknown_provider": "Unknown",
"show_original": "Show Original"
},
"media": {
"accessibility_label": "%s, attachment %d of %d",
"expand_image_hint": "Expands the image. Double-tap and hold to show actions",
"expand_gif_hint": "Expands the GIF. Double-tap and hold to show actions",
"expand_video_hint": "Shows the video player. Double-tap and hold to show actions"
},
"posted_via_application": "%s via %s",
"buttons": {
"reblogs_title": "Reblogs",
"favorites_title": "Favorites",
"edit_history_title": "Edit History",
"edit_history_detail": "Last edit %s"
},
"edited_at_timestamp_prefix": "Edited %s",
"edit_history": {
"title": "Edit History",
"original_post": "Original Post · %s"
}
},
"friendship": {
@ -240,11 +177,10 @@
"pending": "داوات کردووە",
"block": "ئاستەنگی بکە",
"block_user": "%s ئاستەنگ بکە",
"block_domain": "Block domain %s",
"block_domain": "%s ئاستەنگ بکە",
"unblock": "ئاستەنگی مەکە",
"unblock_user": "%s ئاستەنگ مەکە",
"blocked": "ئاستەنگ کراوە",
"domain_blocked": "Domain Blocked",
"mute": "بێدەنگی بکە",
"mute_user": "%s بێدەنگە",
"unmute": "بێدەنگی مەکە",
@ -274,36 +210,13 @@
"user_suspended_warning": "هەژماری %s ڕاگیراوە."
}
}
},
"user_list": {
"no_verified_link": "No verified link",
"followers_count": "%@ followers"
}
},
"scene": {
"welcome": {
"log_in": "بچۆ ژوورەوە",
"learn_more": "Learn more",
"join_default_server": "Join %@",
"pick_server": "Pick another server",
"separator": {
"or": "or"
},
"education": {
"mastodon": {
"title": "Welcome to Mastodon",
"description": "Mastodon is a decentralized social network, meaning no single company controls it. Its made up of many independently-run servers, all connected together."
},
"servers": {
"title": "What are servers?",
"description": "Every Mastodon account is hosted on a server — each with its own values, rules, & admins. No matter which one you pick, you can follow and interact with people on any server."
},
"a11y": {
"what_is_mastodon": {
"title": "What is Mastodon?"
}
}
}
"slogan": "تۆڕی کۆمەڵایەتی\nلەژێر دەستەکانت.",
"get_started": "دەست پێ بکە",
"log_in": "بچۆ ژوورەوە"
},
"login": {
"title": "Welcome back",
@ -313,10 +226,9 @@
}
},
"server_picker": {
"title": "Pick Server",
"title": "ماستۆدۆن لە چەندان بەکارهێنەر پێک دێت کە لە ڕاژەکاری جیاواز دان.",
"subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.",
"button": {
"language": "Language",
"signup_speed": "Sign-up Speed",
"category": {
"all": "هەموو",
"all_accessiblity_description": "بەش: هەموو",
@ -348,41 +260,18 @@
"finding_servers": "ڕاژەکار دەدۆزرێتەوە...",
"bad_network": "هەڵەیەک ڕوویدا لە کاتی بارکردن. لە هەبوونی هێڵی ئینتەرنێت دڵنیا بە.",
"no_results": "ئەنجام نییە"
},
"signup_speed": {
"all": "All",
"instant": "Instant Sign-up",
"manually_reviewed": "Manual Review"
},
"language": {
"all": "All"
},
"search": {
"placeholder": "Search name or URL"
},
"no_server_selected_hint": "Well pick a server based on your language if you continue without making a selection."
},
"privacy": {
"title": "Privacy",
"description": "Although the Mastodon app does not collect any data, the server you sign up through may have a different policy. Take a minute to review and agree to the Mastodon app privacy policy and your servers privacy policy.",
"policy": {
"ios": "Privacy Policy - Mastodon for iOS",
"server": "Privacy Policy - %s"
},
"button": {
"confirm": "I Agree"
}
},
"register": {
"title": "Create Account",
"title": "خۆت تۆمار بکە لە %s",
"lets_get_you_set_up_on_domain": "Lets get you set up on %s",
"input": {
"avatar": {
"delete": "بیسڕەوە"
},
"username": {
"placeholder": "ناوی بەکارهێنەر",
"duplicate_prompt": "ئەم ناوە گیراوە.",
"suggestion": "amazing_%@"
"duplicate_prompt": "ئەم ناوە گیراوە."
},
"display_name": {
"placeholder": "ناوی نیشاندان"
@ -392,7 +281,6 @@
},
"password": {
"placeholder": "تێپەڕوشە",
"confirmation_placeholder": "Confirm Password",
"require": "تێپەڕوشەکەت لایەنی کەم پێویستیی هەیە بە:",
"character_limit": "8 پیت",
"accessibility": {
@ -417,7 +305,7 @@
"reason": {
"blocked": "%s خزمەتگوزارییەکی ئیمێڵی ڕێپێنەدراو بەکار دەهێنێت",
"unreachable": "%s بوونی نییە",
"taken": "%s is already taken. How about:",
"taken": "%s بەکار هێنراوە لەلایەن یەکێکی تر",
"reserved": "%s وشەیەکی گیراوە",
"accepted": "%s دەبێت قبووڵ بکرێت",
"blank": "%s پێویستە",
@ -435,37 +323,33 @@
}
},
"server_rules": {
"title": "Server Rules",
"subtitle": "By continuing, you agree to follow by the following rules set and enforced by the **%s** moderators.",
"title": "یاساکانی ڕاژەکار",
"subtitle": "ئەمانە لەلایەن چاودێرەکانی %s دانراون و ناچار دەکرێن.",
"prompt": "بەردەوامبوونت واتای ڕازیبوونتە بە مەرجەکانی خزمەتگوزاری و سیاسەتی تایبەتێتیی %s.",
"terms_of_service": "مەرجەکانی بەکارهێنان",
"privacy_policy": "سیاسەتی تایبەتێتی",
"button": {
"confirm": "I Agree",
"disagree": "Disagree"
"confirm": "ڕازیم"
}
},
"confirm_email": {
"title": "Check Your Inbox",
"tap_the_link_we_emailed_to_you_to_verify_your_account": "Tap the link we sent you to verify %@. Well wait right here.",
"title": "کۆتا شت.",
"subtitle": "بۆ پشتڕاستکردنەوەی هەژمارەکەت ئەو بەستەرە بکەوە کە بە ئیمێڵ بۆمان ناردوویت.",
"tap_the_link_we_emailed_to_you_to_verify_your_account": "Tap the link we emailed to you to verify your account",
"button": {
"open_email_app": "بەرنامەی ئیمێڵەکەت بکەوە",
"resend": "بینێرەوە"
},
"dont_receive_email": {
"title": "Check your Email",
"title": "ئیمێڵەکەت ببینە",
"description": "دڵنیا بە لەوەی ئیمێڵەکەت دروستە و هەموو بوخچەکانت بگەڕێ.",
"resend_email": "ئیمێڵەکە بنێرەوە"
},
"open_email_app": {
"title": "Check your Inbox.",
"title": "ئیمێڵەکانت ببینە.",
"description": "ئیمێڵێکمان بۆ ناردیت. هەموو بوخچەکانت ببینە.",
"mail": "Mail",
"open_email_client": "بەرنامەی ئیمێڵەکەت بکەوە"
},
"didnt_get_link": {
"prefix": "Didnt get a link?",
"resend_in": "Resend (%@)",
"resend_now": "Resend now."
}
},
"home_timeline": {
@ -476,20 +360,19 @@
"published": "بڵاوکرایەوە!",
"Publishing": "پۆستەکە بڵاو دەکرێتەوە...",
"accessibility": {
"logo_label": "Mastodon",
"logo_label": "Logo Button",
"logo_hint": "Tap to scroll to top and tap again to previous location"
}
}
},
"suggestion_account": {
"title": "Popular on Mastodon",
"follow_all": "Follow all"
"title": "خەڵک بدۆزەوە",
"follow_explain": "کاتێک شوێنی یەکێک دەکەویت، پۆستەکانی دێتە بەردەمت."
},
"compose": {
"title": {
"new_post": "پۆستی نوێ",
"new_reply": "وەڵامی نوێ",
"edit_post": "Edit Post"
"new_reply": "وەڵامی نوێ"
},
"media_selection": {
"camera": "وێنە بگرە",
@ -513,7 +396,6 @@
"server_processing_state": "Server Processing..."
},
"poll": {
"title": "Poll",
"duration_time": "کات: %s",
"thirty_minutes": "30 خولەک",
"one_hour": "1 کاتژمێر",
@ -523,11 +405,7 @@
"seven_days": "7 ڕۆژ",
"option_number": "بژاردەی %ld",
"the_poll_is_invalid": "The poll is invalid",
"the_poll_has_empty_option": "The poll has empty option",
"add_option": "Add Option",
"remove_option": "Remove Option",
"move_up": "Move Up",
"move_down": "Move Down"
"the_poll_has_empty_option": "The poll has empty option"
},
"content_warning": {
"placeholder": "ئاگادارییەکەت لێرە بنووسە..."
@ -559,12 +437,6 @@
"toggle_content_warning": "ئاگاداریی ناوەڕۆک نیشان بدە",
"append_attachment_entry": "پێوەکراوی پێوە بکە - %s",
"select_visibility_entry": "شێوازی دەرکەوتن هەڵبژێرە - %s"
},
"language": {
"title": "Post Language",
"suggested": "Suggested",
"recent": "Recent",
"other": "Other Language…"
}
},
"profile": {
@ -572,16 +444,11 @@
"follows_you": "Follows You"
},
"dashboard": {
"my_posts": "posts",
"my_following": "following",
"my_followers": "followers",
"other_posts": "posts",
"other_following": "following",
"other_followers": "followers",
"familiar_followers": "mutuals"
"posts": "پۆستەکان",
"following": "شوێنکەوتن",
"followers": "شوێنکەوتوو"
},
"fields": {
"joined": "Joined",
"add_row": "ڕیز زیاد بکە",
"placeholder": {
"label": "ناونیشان",
@ -623,14 +490,6 @@
"confirm_hide_reblogs": {
"title": "Hide Reblogs",
"message": "Confirm to hide reblogs"
},
"confirm_block_domain": {
"title": "Block domain",
"message": "Confirm to block domain %s"
},
"confirm_unblock_domain": {
"title": "Unblock domain",
"message": "Confirm to unblock domain %s"
}
},
"accessibility": {
@ -678,20 +537,16 @@
}
},
"searching": {
"posts": "Posts matching \"%s\"",
"people": "People matching \"%s\"",
"profile": "Go to @%s@%s",
"url": "Open URL in Mastodon",
"hashtag": "Go to #%s",
"no_user": {
"title": "No User Account Found",
"message": "There's no Useraccount \"%s\" on %s"
"segment": {
"all": "هەمووی",
"people": "خەڵک",
"hashtags": "هاشتاگ",
"posts": "پۆست"
},
"empty_state": {
"no_results": "هیچ ئەنجامێک نەدۆزرایەوە"
},
"recent_search": "گەڕانەکانی پێشترت",
"clear_all": "Clear all",
"clear": "بیانسڕەوە"
}
},
@ -706,7 +561,7 @@
"intro": "پۆست هەیە سەرنجیان لەسەرە لە گۆشەکەی تۆ."
},
"favorite": {
"title": "Favorites"
"title": "بەدڵبووەکانت"
},
"notification": {
"title": {
@ -737,79 +592,60 @@
"title": "پۆستی %s"
},
"settings": {
"overview": {
"title": "Settings",
"general": "General",
"notifications": "Notifications",
"support_mastodon": "Support Mastodon",
"about_mastodon": "About Mastodon",
"server_details": "Server Details",
"logout": "Logout %@"
},
"about_mastodon": {
"title": "About",
"more_settings": "Even More Settings",
"contribute_to_mastodon": "Contribute to Mastodon",
"privacy_policy": "Privacy Policy",
"clear_media_storage": "Clear Media Storage"
},
"server_details": {
"about": "About",
"rules": "Rules",
"about_instance": {
"title": "Administrator",
"message_admin": "Message Admin",
"legal_notice": "A legal notice"
}
},
"general": {
"title": "General",
"title": "رێکخستنەکان",
"section": {
"appearance": {
"section_title": "Appearance",
"dark": "Dark",
"light": "Light",
"system": "Use Device Appearance"
"title": "ڕووخسار",
"automatic": "خۆکار",
"light": "ڕووناک",
"dark": "تاریک"
},
"ask_before": {
"section_title": "Ask before…",
"posting_without_alt_text": "Posting without Alt Text",
"unfollowing_someone": "Unfollowing Someone",
"boosting_a_post": "Boosting a Post",
"deleting_a_post": "Deleting a Post"
"look_and_feel": {
"title": "ڕووخسار و هەست",
"use_system": "سیستەم",
"really_dark": "زۆر تاریک",
"sorta_dark": "کەم تاریک",
"light": "ڕووناک"
},
"design": {
"section_title": "Design",
"show_animations": "Play Animated Avatars and Emoji"
"notifications": {
"title": "ئاماژەکان نیشان بدە",
"favorites": "پۆستەکەمی بەدڵ دەبێت",
"follows": "شوێنم دەکەوێت",
"boosts": "پۆستەکەم پۆست دەکاتەوە",
"mentions": "ئاماژەم پێ دەکات",
"trigger": {
"anyone": "هەرکەسێک",
"follower": "شوێنکەوتووێکم",
"follow": "هەرکەسێک شوێنی دەکەوم",
"noone": "هیچکەس",
"title": "ئاگادارم بکەوە کاتێک"
}
},
"language": {
"section_title": "Language",
"default_post_language": "Default Post Language"
"preference": {
"title": "پەسەندەکان",
"true_black_dark_mode": "دۆخی ڕەش",
"disable_avatar_animation": "وێنە جووڵاوەکان ناچالاک بکە",
"disable_emoji_animation": "ئیمۆجییە جووڵاوەکان ناچالاک بکە",
"using_default_browser": "وێبگەڕی بنەڕەت بەکار بهێنە بۆ کردنەوەی بەستەرەکان",
"open_links_in_mastodon": "بەستەرەکان لەناو ماستۆدۆن بکەوە"
},
"links": {
"section_title": "Links",
"open_in_mastodon": "Open in Mastodon",
"open_in_browser": "Open in Browser"
"boring_zone": {
"title": "ناوچە بێنازەکە",
"account_settings": "ڕێکخستنەکانی هەژمار",
"terms": "مەرجەکانی بەکارهێنان",
"privacy": "سیاسەتی تایبەتێتی"
},
"spicy_zone": {
"title": "ناوچەی گەرم",
"clear": "بیرگە پاک بکەوە",
"signout": "دەربچۆ"
}
},
"notifications": {
"title": "Notifications",
"policy": {
"title": "Get Notifications from",
"anyone": "Anyone",
"followers": "People who follow you",
"follow": "People you follow",
"noone": "No one"
},
"alert": {
"mentions_and_replies": "Mentions & Replies",
"boosts": "Boosts",
"favorites": "Favorites",
"new_followers": "New Followers"
},
"disabled": {
"notification_hint": "Turn on notifications from your device settings to see updates on your lock screen.",
"go_to_settings": "Go to Notification Settings"
}
"footer": {
"mastodon_description": "ماستۆدۆن پڕۆژەیەکی سەرچاوەکراوەیە. دەتوانیت لە گیتهەب لە کێشەکان ئاگادارمان بکەیتەوە: %s (%s)"
},
"keyboard": {
"close_settings_window": "ڕێخستنەکان دابخە"
}
},
"report": {
@ -879,67 +715,13 @@
"dismiss_account_switcher": "پێڕستی هەژمارەکان دابخە",
"add_account": "هەژمارێک زیاد بکە"
},
"wizard": {
"new_in_mastodon": "نوێ",
"multiple_account_switch_intro_description": "هەژمارەکەت بگۆڕە بە دەستڕاگرتن لەسەر دوگمەی پرۆفایلەکە.",
"accessibility_hint": "دوو جار دەستی پیا بنێ بۆ داخستنی"
},
"bookmark": {
"title": "Bookmarks"
},
"followed_tags": {
"title": "Followed Tags",
"header": {
"posts": "posts",
"participants": "participants",
"posts_today": "posts today"
},
"actions": {
"follow": "Follow",
"unfollow": "Unfollow"
}
}
},
"extension": {
"open_in": {
"invalid_link_error": "This doesn't seem to be a valid Mastodon link."
}
},
"widget": {
"common": {
"unsupported_widget_family": "Sorry but this Widget family is unsupported.",
"user_not_logged_in": "Please open Mastodon to log in to an Account."
},
"followers_count": {
"configuration_display_name": "Followers",
"configuration_description": "Show number of followers.",
"title": "FOLLOWERS",
"followers_today": "%s followers today"
},
"multiple_followers": {
"configuration_display_name": "Multiple followers",
"configuration_description": "Show number of followers for multiple accounts.",
"mock_user": {
"display_name": "Another follower",
"account_name": "another@follower.social"
}
},
"latest_followers": {
"configuration_display_name": "Latest followers",
"configuration_description": "Show latest followers.",
"title": "Latest followers",
"last_update": "Last update: %s"
},
"hashtag": {
"configuration": {
"display_name": "Hashtag",
"description": "Shows a recent post with the selected hashtag."
},
"not_found": {
"account_name": "John Mastodon",
"account": "@johnMastodon@no-such.account",
"content": "Sorry, we couldnt find any posts with the hashtag <a>#%@</a>. Please try a <a>#DifferentHashtag</a> or check the widget settings."
},
"placeholder": {
"account_name": "John Mastodon",
"account": "@johnMastodon@no-such.account",
"content": "This is how a post with a <a>#hashtag</a> would look. Pick whichever <a>#hashtag</a> you want in the widget settings."
}
}
}
}

View File

@ -65,7 +65,7 @@
<key>a11y.plural.count.characters_left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@character_count@</string>
<string>%#@character_count@ left</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
@ -73,13 +73,13 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 character left</string>
<string>1 znak</string>
<key>few</key>
<string>%ld characters left</string>
<string>%ld znaky</string>
<key>many</key>
<string>%ld characters left</string>
<string>%ld znaků</string>
<key>other</key>
<string>%ld characters left</string>
<string>%ld znaků</string>
</dict>
</dict>
<key>plural.count.followed_by_and_mutual</key>
@ -217,26 +217,6 @@
<string>%ld reblogs</string>
</dict>
</dict>
<key>plural.count.reblog_a11y</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@reblog_count@</string>
<key>reblog_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 re-blog</string>
<key>few</key>
<string>%ld re-blogs</string>
<key>many</key>
<string>%ld re-blogs</string>
<key>other</key>
<string>%ld re-blogs</string>
</dict>
</dict>
<key>plural.count.reply</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
@ -348,7 +328,7 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 sledující</string>
<string>1 follower</string>
<key>few</key>
<string>%ld followers</string>
<key>many</key>
@ -408,7 +388,7 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>zbývá 1 den</string>
<string>1 day left</string>
<key>few</key>
<string>%ld days left</string>
<key>many</key>
@ -428,7 +408,7 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>zbývá 1h</string>
<string>1 hour left</string>
<key>few</key>
<string>%ld hours left</string>
<key>many</key>
@ -448,7 +428,7 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>zbývá 1m</string>
<string>1 minute left</string>
<key>few</key>
<string>%ld minutes left</string>
<key>many</key>
@ -468,7 +448,7 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>zbývá 1s</string>
<string>1 second left</string>
<key>few</key>
<string>%ld seconds left</string>
<key>many</key>
@ -488,7 +468,7 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>před 1 rokem</string>
<string>1y ago</string>
<key>few</key>
<string>%ldy ago</string>
<key>many</key>
@ -508,7 +488,7 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>před 1 měcícem</string>
<string>1M ago</string>
<key>few</key>
<string>%ldM ago</string>
<key>many</key>
@ -528,7 +508,7 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>před 1 dnem</string>
<string>1d ago</string>
<key>few</key>
<string>%ldd ago</string>
<key>many</key>
@ -548,7 +528,7 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>před 1h</string>
<string>1h ago</string>
<key>few</key>
<string>%ldh ago</string>
<key>many</key>
@ -568,7 +548,7 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>před 1min</string>
<string>1m ago</string>
<key>few</key>
<string>%ldm ago</string>
<key>many</key>
@ -588,7 +568,7 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>před 1s</string>
<string>1s ago</string>
<key>few</key>
<string>%lds ago</string>
<key>many</key>

View File

@ -15,6 +15,10 @@
"title": "Selhání hlasování",
"poll_ended": "Anketa skončila"
},
"discard_post_content": {
"title": "Zahodit koncept",
"message": "Potvrďte odstranění obsahu složeného příspěvku."
},
"publish_post_failure": {
"title": "Publikování selhalo",
"message": "Nepodařilo se publikovat příspěvek.\nZkontrolujte prosím připojení k internetu.",
@ -47,29 +51,6 @@
"clean_cache": {
"title": "Vyčistit mezipaměť",
"message": "Úspěšně vyčištěno %s mezipaměti."
},
"translation_failed": {
"title": "Poznámka",
"message": "Překlad se nezdařil. Správce možná nepovolil překlad na tomto serveru nebo tento server používá starší verzi Mastodonu, kde překlady ještě nejsou podporovány.",
"button": "OK"
},
"media_missing_alt_text": {
"title": "Media Missing Alt Text",
"message": "%d of your images are missing alt text.\nPost Anyway?",
"cancel": "Cancel",
"post": "Post"
},
"boost_a_post": {
"title_boost": "Boost Post?",
"title_unboost": "Unboost Post?",
"cancel": "Cancel",
"boost": "Boost",
"unboost": "Unboost"
},
"unfollow_user": {
"title": "Unfollow %@?",
"cancel": "Cancel",
"unfollow": "Unfollow"
}
},
"controls": {
@ -94,9 +75,9 @@
"save_photo": "Uložit fotku",
"copy_photo": "Kopírovat fotografii",
"sign_in": "Přihlásit se",
"sign_up": "Vytvořit účet",
"see_more": "Zobrazit více",
"preview": "Náhled",
"copy": "Kopírovat",
"share": "Sdílet",
"share_user": "Sdílet %s",
"share_post": "Sdílet příspěvek",
@ -110,26 +91,13 @@
"block_domain": "Blokovat %s",
"unblock_domain": "Odblokovat %s",
"settings": "Nastavení",
"delete": "Smazat",
"translate_post": {
"title": "Přeložit z %s",
"unknown_language": "Neznámý"
},
"edit_post": "Upravit",
"bookmark": "Záložka",
"remove_bookmark": "Odstranit záložku",
"follow": "Sledovat %s",
"unfollow": "Přestat sledovat %s"
"delete": "Smazat"
},
"tabs": {
"home": "Domů",
"search_and_explore": "Hledat a zkoumat",
"notifications": "Oznámení",
"profile": "Profil",
"a11y": {
"search": "Hledat",
"explore": "Prozkoumat"
}
"search": "Hledat",
"notification": "Oznamování",
"profile": "Profil"
},
"keyboard": {
"common": {
@ -145,8 +113,8 @@
"open_author_profile": "Otevřít profil autora",
"open_reblogger_profile": "Otevřít rebloggerův profil",
"reply_status": "Odpovědět na příspěvek",
"toggle_reblog": "Přepnout Reblog na příspěvku",
"toggle_favorite": "Přepnout Oblíbené na příspěvku",
"toggle_reblog": "Toggle Reblog on Post",
"toggle_favorite": "Toggle Favorite on Post",
"toggle_content_warning": "Přepnout varování obsahu",
"preview_image": "Náhled obrázku"
},
@ -156,7 +124,7 @@
}
},
"status": {
"user_reblogged": "%s boostnul",
"user_reblogged": "%s reblogged",
"user_replied_to": "Odpověděl %s",
"show_post": "Zobrazit příspěvek",
"show_user_profile": "Zobrazit profil uživatele",
@ -164,8 +132,6 @@
"sensitive_content": "Citlivý obsah",
"media_content_warning": "Klepnutím kdekoli zobrazíte",
"tap_to_reveal": "Klepnutím zobrazit",
"load_embed": "Načíst vložené",
"link_via_user": "%s přes %s",
"poll": {
"vote": "Hlasovat",
"closed": "Uzavřeno"
@ -179,7 +145,7 @@
"actions": {
"reply": "Odpovědět",
"reblog": "Boostnout",
"unreblog": "Vrátit boost",
"unreblog": "Undo reblog",
"favorite": "Oblíbit",
"unfavorite": "Odebrat z oblízených",
"menu": "Nabídka",
@ -187,12 +153,7 @@
"show_image": "Zobrazit obrázek",
"show_gif": "Zobrazit GIF",
"show_video_player": "Zobrazit video přehrávač",
"share_link_in_post": "Sdílet odkaz v příspěvku",
"tap_then_hold_to_show_menu": "Klepnutím podržte pro zobrazení nabídky",
"a11y_labels": {
"reblog": "Boost",
"unreblog": "Vrátit boost"
}
"tap_then_hold_to_show_menu": "Klepnutím podržte pro zobrazení nabídky"
},
"tag": {
"url": "URL",
@ -207,30 +168,6 @@
"private": "Pouze jejich sledující mohou vidět tento příspěvek.",
"private_from_me": "Pouze moji sledující mohou vidět tento příspěvek.",
"direct": "Pouze zmíněný uživatel může vidět tento příspěvek."
},
"translation": {
"translated_from": "Přeloženo z %s pomocí %s",
"unknown_language": "Neznámý",
"unknown_provider": "Neznámý",
"show_original": "Zobrazit originál"
},
"media": {
"accessibility_label": "%s, příloha %d z %d",
"expand_image_hint": "Rozšíří obrázek. Dvojitým klepnutím a podržením zobrazíte akce",
"expand_gif_hint": "Rozšíří GIF. Dvojitým klepnutím a podržením zobrazíte akce",
"expand_video_hint": "Zobrazí přehrávač videa. Dvojitým klepnutím a podržením zobrazíte akce"
},
"posted_via_application": "%s přes %s",
"buttons": {
"reblogs_title": "Boosty",
"favorites_title": "Oblíbení",
"edit_history_title": "Historie úprav",
"edit_history_detail": "Poslední úprava %s"
},
"edited_at_timestamp_prefix": "Upraveno %s",
"edit_history": {
"title": "Historie úprav",
"original_post": "Původní příspěvek · %s"
}
},
"friendship": {
@ -240,19 +177,18 @@
"pending": "Čekající",
"block": "Blokovat",
"block_user": "Blokovat %s",
"block_domain": "Block domain %s",
"block_domain": "Blokovat %s",
"unblock": "Odblokovat",
"unblock_user": "Odblokovat %s",
"blocked": "Blokovaný",
"domain_blocked": "Domain Blocked",
"mute": "Skrýt",
"mute_user": "Skrýt %s",
"unmute": "Odkrýt",
"unmute_user": "Odkrýt %s",
"muted": "Skrytý",
"edit_info": "Upravit informace",
"show_reblogs": "Zobrazit Boosty",
"hide_reblogs": "Skrýt Boosty"
"show_reblogs": "Show Reblogs",
"hide_reblogs": "Hide Reblogs"
},
"timeline": {
"filtered": "Filtrováno",
@ -274,49 +210,25 @@
"user_suspended_warning": "Účet %s byl pozastaven."
}
}
},
"user_list": {
"no_verified_link": "Žádný ověřený odkaz",
"followers_count": "%@ sledujících"
}
},
"scene": {
"welcome": {
"log_in": "Přihlásit se",
"learn_more": "Zjistit více",
"join_default_server": "Připojit se k %@",
"pick_server": "Vybrat jiný server",
"separator": {
"or": "nebo"
},
"education": {
"mastodon": {
"title": "Vítejte na Mastodonu",
"description": "Mastodon je decentralizovaná sociální síť, což znamená, že ji neovládá žádná jednotlivá společnost. Skládá se z mnoha nezávisle spravovaných serverů, všechny jsou propojeny dohromady."
},
"servers": {
"title": "Co jsou to servery?",
"description": "Každý účet Mastodon je hostován na serveru — každý s vlastními hodnotami, pravidly a správci. Bez ohledu na to, který si vyberete, můžete sledovat a komunikovat s lidmi na jakémkoliv serveru."
},
"a11y": {
"what_is_mastodon": {
"title": "Co je Mastodon?"
}
}
}
"slogan": "Sociální sítě opět ve vašich rukou.",
"get_started": "Začínáme",
"log_in": "Přihlásit se"
},
"login": {
"title": "Vítej zpět",
"title": "Vítejte zpět",
"subtitle": "Přihlaste se na serveru, na kterém jste si vytvořili účet.",
"server_search_field": {
"placeholder": "Zadejte URL nebo vyhledávejte váš server"
}
},
"server_picker": {
"title": "Vybrat server",
"title": "Mastodon tvoří uživatelé z různých serverů.",
"subtitle": "Vyberte server založený ve vašem regionu, podle zájmů nebo podle obecného účelu. Stále můžete chatovat s kýmkoli na Mastodonu bez ohledu na vaše servery.",
"button": {
"language": "Jazyk",
"signup_speed": "Rychlosti registrace",
"category": {
"all": "Vše",
"all_accessiblity_description": "Kategorie: Vše",
@ -348,41 +260,18 @@
"finding_servers": "Hledání dostupných serverů...",
"bad_network": "Při načítání dat nastala chyba. Zkontrolujte připojení k internetu.",
"no_results": "Žádné výsledky"
},
"signup_speed": {
"all": "Všechny",
"instant": "Okamžitá registrace",
"manually_reviewed": "S ruční kontrolou"
},
"language": {
"all": "Všechny"
},
"search": {
"placeholder": "Hledat jméno nebo URL"
},
"no_server_selected_hint": "Pokud budete pokračovat bez výběru, vybereme server založený na Vašem jazyce."
},
"privacy": {
"title": "Soukromí",
"description": "Přestože aplikace Mastodon neshromažďuje žádná data, server, který se přihlásíte, může mít jiné zásady. Udělejte si minutu na to, abyste zkontrolovali a souhlasili se zásadami ochrany osobních údajů aplikací Mastodon a se zásadami ochrany osobních údajů vašeho serveru.",
"policy": {
"ios": "Zásady ochrany osobních údajů - Mastodon pro iOS",
"server": "Zásady ochrany osobních údajů - %s"
},
"button": {
"confirm": "Souhlasím"
}
},
"register": {
"title": "Vytvořit účet",
"title": "Pojďme si nastavit %s",
"lets_get_you_set_up_on_domain": "Pojďme si nastavit %s",
"input": {
"avatar": {
"delete": "Smazat"
},
"username": {
"placeholder": "uživatelské jméno",
"duplicate_prompt": "Toto uživatelské jméno je použito.",
"suggestion": "super_%@"
"duplicate_prompt": "Toto uživatelské jméno je použito."
},
"display_name": {
"placeholder": "zobrazované jméno"
@ -392,7 +281,6 @@
},
"password": {
"placeholder": "heslo",
"confirmation_placeholder": "Potvrdit heslo",
"require": "Heslo musí být alespoň:",
"character_limit": "8 znaků",
"accessibility": {
@ -417,7 +305,7 @@
"reason": {
"blocked": "%s používá zakázanou e-mailovou službu",
"unreachable": "%s pravděpodobně neexistuje",
"taken": "%s je již obsazen. Co takhle:",
"taken": "%s se již používá",
"reserved": "%s je rezervované klíčové slovo",
"accepted": "%s musí být přijato",
"blank": "%s je vyžadováno",
@ -435,24 +323,25 @@
}
},
"server_rules": {
"title": "Server Rules",
"subtitle": "By continuing, you agree to follow by the following rules set and enforced by the **%s** moderators.",
"title": "Některá základní pravidla.",
"subtitle": "Ty nastavují a prosazují moderátoři %s.",
"prompt": "Pokračováním budete podléhat podmínkám služby a zásad ochrany osobních údajů pro uživatele %s.",
"terms_of_service": "podmínky služby",
"privacy_policy": "zásady ochrany osobních údajů",
"button": {
"confirm": "Souhlasím",
"disagree": "Disagree"
"confirm": "Souhlasím"
}
},
"confirm_email": {
"title": "Zkontrolujte si příchozí poštu",
"tap_the_link_we_emailed_to_you_to_verify_your_account": "Klepněte na odkaz, který jsme vám poslali, abyste ověřili %@. Budeme tu na vás čekat.",
"title": "Ještě jedna věc.",
"subtitle": "Klepněte na odkaz, který jsme vám poslali e-mailem, abyste ověřili Váš účet.",
"tap_the_link_we_emailed_to_you_to_verify_your_account": "Klepněte na odkaz, který jsme vám poslali e-mailem, abyste ověřili Váš účet",
"button": {
"open_email_app": "Otevřít e-mailovou aplikaci",
"resend": "Poslat znovu"
},
"dont_receive_email": {
"title": "Zkontrolujte váš email",
"title": "Zkontrolujte svůj e-mail",
"description": "Zkontrolujte, zda je vaše e-mailová adresa správná, stejně jako složka nevyžádané pošty, pokud ji máte.",
"resend_email": "Znovu odeslat e-mail"
},
@ -461,11 +350,6 @@
"description": "Právě jsme vám poslali e-mail. Zkontrolujte složku nevyžádané zprávy, pokud ji máte.",
"mail": "Pošta",
"open_email_client": "Otevřít e-mailového klienta"
},
"didnt_get_link": {
"prefix": "Nedostali jste odkaz?",
"resend_in": "Znovu odeslat (%@)",
"resend_now": "Odeslat znovu."
}
},
"home_timeline": {
@ -476,20 +360,19 @@
"published": "Publikováno!",
"Publishing": "Publikování příspěvku...",
"accessibility": {
"logo_label": "Mastodon",
"logo_label": "Tlačítko s logem",
"logo_hint": "Klepnutím přejdete nahoru a znovu klepněte na předchozí místo"
}
}
},
"suggestion_account": {
"title": "Populární na Mastodonu",
"follow_all": "Sledovat všechny"
"title": "Najít lidi pro sledování",
"follow_explain": "Když někoho sledujete, uvidíte jejich příspěvky ve vašem domovském kanálu."
},
"compose": {
"title": {
"new_post": "Nový příspěvek",
"new_reply": "Nová odpověď",
"edit_post": "Upravit"
"new_reply": "Nová odpověď"
},
"media_selection": {
"camera": "Vyfotit",
@ -513,7 +396,6 @@
"server_processing_state": "Zpracování serveru..."
},
"poll": {
"title": "Anketa",
"duration_time": "Doba trvání: %s",
"thirty_minutes": "30 minut",
"one_hour": "1 hodina",
@ -523,11 +405,7 @@
"seven_days": "7 dní",
"option_number": "Možnost %ld",
"the_poll_is_invalid": "Anketa je neplatná",
"the_poll_has_empty_option": "Anketa má prázdnou možnost",
"add_option": "Přidat možnost",
"remove_option": "Odebrat možnost",
"move_up": "Přesunout nahoru",
"move_down": "Přesunout níže"
"the_poll_has_empty_option": "Anketa má prázdnou možnost"
},
"content_warning": {
"placeholder": "Zde napište přesné varování..."
@ -559,12 +437,6 @@
"toggle_content_warning": "Přepnout varování obsahu",
"append_attachment_entry": "Přidat přílohu - %s",
"select_visibility_entry": "Vyberte viditelnost - %s"
},
"language": {
"title": "Jazyk příspěvku",
"suggested": "Navrhované",
"recent": "Nedávné",
"other": "Jiný jazyk…"
}
},
"profile": {
@ -572,16 +444,11 @@
"follows_you": "Sleduje vás"
},
"dashboard": {
"my_posts": "příspěvky",
"my_following": "sledování",
"my_followers": "sledující",
"other_posts": "příspěvky",
"other_following": "sledování",
"other_followers": "sledující",
"familiar_followers": "vzájemní"
"posts": "příspěvky",
"following": "sledování",
"followers": "sledující"
},
"fields": {
"joined": "Připojen/a",
"add_row": "Přidat řádek",
"placeholder": {
"label": "Označení",
@ -617,20 +484,12 @@
"message": "Potvrďte odblokování %s"
},
"confirm_show_reblogs": {
"title": "Zobrazit Reblogy",
"message": "Potvrdit zobrazení reblogů"
"title": "Show Reblogs",
"message": "Confirm to show reblogs"
},
"confirm_hide_reblogs": {
"title": "Skrýt Reblogy",
"message": "Potvrďte skrytí reblogů"
},
"confirm_block_domain": {
"title": "Block domain",
"message": "Confirm to block domain %s"
},
"confirm_unblock_domain": {
"title": "Unblock domain",
"message": "Confirm to unblock domain %s"
"title": "Hide Reblogs",
"message": "Confirm to hide reblogs"
}
},
"accessibility": {
@ -656,7 +515,7 @@
"title": "Oblíben"
},
"reblogged_by": {
"title": "Boost od"
"title": "Reblogged By"
},
"search": {
"title": "Hledat",
@ -678,20 +537,16 @@
}
},
"searching": {
"posts": "Příspěvky s \"%s\"",
"people": "Profily s \"%s\"",
"profile": "Přejít na @%s@%s",
"url": "Otevřít URL v Mastodonu",
"hashtag": "Přejít na #%s",
"no_user": {
"title": "Nebyl nalezen žádný uživatelský účet",
"message": "Neexistuje žádný uživatelský účet \"%s\" na %s"
"segment": {
"all": "Vše",
"people": "Lidé",
"hashtags": "Hashtagy",
"posts": "Příspěvky"
},
"empty_state": {
"no_results": "Žádné výsledky"
},
"recent_search": "Nedávná hledání",
"clear_all": "Vymazat vše",
"clear": "Vymazat"
}
},
@ -706,7 +561,7 @@
"intro": "Toto jsou příspěvky, které získávají pozornost ve vašem koutu Mastodonu."
},
"favorite": {
"title": "Oblíbené"
"title": "Vaše oblíbené"
},
"notification": {
"title": {
@ -737,79 +592,60 @@
"title": "Příspěvek od %s"
},
"settings": {
"overview": {
"title": "Nastavení",
"general": "Obecné",
"notifications": "Oznámení",
"support_mastodon": "Podpořte Mastodon",
"about_mastodon": "O Mastodonu",
"server_details": "Podrobnosti o serveru",
"logout": "Odhlásit %@"
},
"about_mastodon": {
"title": "O nás",
"more_settings": "Ještě více nastavení",
"contribute_to_mastodon": "Přispějte kód do Mastodonu",
"privacy_policy": "Zásady ochrany osobních údajů",
"clear_media_storage": "Vymazat úložiště médií"
},
"server_details": {
"about": "O serveru",
"rules": "Pravidla",
"about_instance": {
"title": "Správce",
"message_admin": "Napsat správci",
"legal_notice": "Právní oznámení"
}
},
"general": {
"title": "Obecné",
"title": "Nastavení",
"section": {
"appearance": {
"section_title": "Vzhled",
"dark": "Tmavý",
"light": "Světlý",
"system": "Použít vzhled zařízení"
"title": "Vzhled",
"automatic": "Automaticky",
"light": "Vždy světlý",
"dark": "Vždy tmavý"
},
"ask_before": {
"section_title": "Ask before…",
"posting_without_alt_text": "Posting without Alt Text",
"unfollowing_someone": "Unfollowing Someone",
"boosting_a_post": "Boosting a Post",
"deleting_a_post": "Deleting a Post"
"look_and_feel": {
"title": "Vzhled a chování",
"use_system": "Použít systém",
"really_dark": "Skutečně tmavý",
"sorta_dark": "Sorta Dark",
"light": "Světlý"
},
"design": {
"section_title": "Vzhled",
"show_animations": "Přehrát animované Avatary a Emoji"
"notifications": {
"title": "Upozornění",
"favorites": "Oblíbil si můj příspěvek",
"follows": "Sleduje mě",
"boosts": "Boostnul můj příspěvek",
"mentions": "Zmiňuje mě",
"trigger": {
"anyone": "kdokoliv",
"follower": "sledující",
"follow": "kdokoli, koho sleduji",
"noone": "nikdo",
"title": "Upozornit, když"
}
},
"language": {
"section_title": "Language",
"default_post_language": "Default Post Language"
"preference": {
"title": "Předvolby",
"true_black_dark_mode": "Skutečný černý tmavý režim",
"disable_avatar_animation": "Zakázat animované avatary",
"disable_emoji_animation": "Zakázat animované emoji",
"using_default_browser": "Použít výchozí prohlížeč pro otevírání odkazů",
"open_links_in_mastodon": "Otevřít odkazy v Mastodonu"
},
"links": {
"section_title": "Odkazy",
"open_in_mastodon": "Otevřít v Mastodonu",
"open_in_browser": "Otevřít v prohlížeči"
"boring_zone": {
"title": "Nudná část",
"account_settings": "Nastavení účtu",
"terms": "Podmínky služby",
"privacy": "Zásady ochrany osobních údajů"
},
"spicy_zone": {
"title": "Ostrá část",
"clear": "Vymazat mezipaměť médií",
"signout": "Odhlásit se"
}
},
"notifications": {
"title": "Oznámení",
"policy": {
"title": "Dostávat oznámení od",
"anyone": "Kdokoliv",
"followers": "Lidé, kteří vás sledují",
"follow": "Lidé, které sledujete",
"noone": "Nikdo"
},
"alert": {
"mentions_and_replies": "Zmínění a odpovědi",
"boosts": "Boosty",
"favorites": "Oblíbené",
"new_followers": "Noví sledující"
},
"disabled": {
"notification_hint": "Zapněte oznámení z nastavení zařízení pro zobrazení aktualizací na zamykací obrazovce.",
"go_to_settings": "Přejít do nastavení oznámení"
}
"footer": {
"mastodon_description": "Mastodon je open source software. Na GitHub můžete nahlásit problémy na %s (%s)"
},
"keyboard": {
"close_settings_window": "Zavřít okno nastavení"
}
},
"report": {
@ -879,67 +715,13 @@
"dismiss_account_switcher": "Zrušit přepínač účtů",
"add_account": "Přidat účet"
},
"wizard": {
"new_in_mastodon": "Nový v Mastodonu",
"multiple_account_switch_intro_description": "Přepínání mezi více účty podržením tlačítka profilu.",
"accessibility_hint": "Dvojitým poklepáním tohoto průvodce odmítnete"
},
"bookmark": {
"title": "Záložky"
},
"followed_tags": {
"title": "Sledované štítky",
"header": {
"posts": "příspěvky",
"participants": "účastníci",
"posts_today": "příspěvky dnes"
},
"actions": {
"follow": "Sledovat",
"unfollow": "Přestat sledovat"
}
}
},
"extension": {
"open_in": {
"invalid_link_error": "Nezdá se, že by to byl platný odkaz Mastodon."
}
},
"widget": {
"common": {
"unsupported_widget_family": "Omlouváme se, ale tato rodina widgetů není podporována.",
"user_not_logged_in": "Pro přihlášení k účtu otevřete prosím Mastodon."
},
"followers_count": {
"configuration_display_name": "Sledujících",
"configuration_description": "Zobrazit počet sledujících.",
"title": "SLEDUJÍCÍ",
"followers_today": "%s sledujících dnes"
},
"multiple_followers": {
"configuration_display_name": "Více sledujících",
"configuration_description": "Zobrazit počet sledujících pro více účtů.",
"mock_user": {
"display_name": "Další sledující",
"account_name": "another@follower.social"
}
},
"latest_followers": {
"configuration_display_name": "Nejnovější sledující",
"configuration_description": "Zobrazit nejnovější sledující.",
"title": "Nejnovější sledující",
"last_update": "Poslední aktualizace: %s"
},
"hashtag": {
"configuration": {
"display_name": "Hashtag",
"description": "Zobrazí poslední příspěvek s vybraným hashtagem."
},
"not_found": {
"account_name": "John Mastodon",
"account": "@johnMastodon@no-such.account",
"content": "Omlouváme se, nepodařilo se nám najít žádné příspěvky s hashtag <a>#%@</a>. Zkuste prosím <a>#DifferentHashtag</a> nebo zkontrolujte nastavení widgetu."
},
"placeholder": {
"account_name": "John Mastodon",
"account": "@johnMastodon@no-such.account",
"content": "Takto by vypadal příspěvek s <a>#hashtag</a>. Vyberte si jakýkoliv <a>#hashtag</a> který chcete v nastavení widgetu."
}
}
}
}

View File

@ -13,23 +13,23 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>zero</key>
<string>%ld hysbysiad heb ei ddarllen</string>
<string>%ld unread notification</string>
<key>one</key>
<string>%ld hysbysiad heb ei ddarllen</string>
<string>1 unread notification</string>
<key>two</key>
<string>%ld hysbysiad heb eu darllen</string>
<string>%ld unread notification</string>
<key>few</key>
<string>%ld hysbysiad heb eu darllen</string>
<string>%ld unread notification</string>
<key>many</key>
<string>%ld hysbysiad heb eu darllen</string>
<string>%ld unread notification</string>
<key>other</key>
<string>%ld hysbysiad heb eu darllen</string>
<string>%ld unread notification</string>
</dict>
</dict>
<key>a11y.plural.count.input_limit_exceeds</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>Mae'r terfyn mewnbwn yn fwy na %#@character_count@</string>
<string>Input limit exceeds %#@character_count@</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
@ -37,23 +37,23 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>zero</key>
<string>%ld nod</string>
<string>%ld characters</string>
<key>one</key>
<string>%ld nod</string>
<string>1 character</string>
<key>two</key>
<string>%ld nod</string>
<string>%ld characters</string>
<key>few</key>
<string>%ld nod</string>
<string>%ld characters</string>
<key>many</key>
<string>%ld nod</string>
<string>%ld characters</string>
<key>other</key>
<string>%ld nod</string>
<string>%ld nodau</string>
</dict>
</dict>
<key>a11y.plural.count.input_limit_remains</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>Mae'r terfyn mewnbwn yn %#@character_count@</string>
<string>Input limit remains %#@character_count@</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
@ -61,23 +61,23 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>zero</key>
<string>%ld nod</string>
<string>%ld characters</string>
<key>one</key>
<string>%ld nod</string>
<string>1 character</string>
<key>two</key>
<string>%ld nod</string>
<string>%ld characters</string>
<key>few</key>
<string>%ld nod</string>
<string>%ld characters</string>
<key>many</key>
<string>%ld nod</string>
<string>%ld characters</string>
<key>other</key>
<string>%ld nod</string>
<string>%ld characters</string>
</dict>
</dict>
<key>a11y.plural.count.characters_left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@character_count@</string>
<string>%#@character_count@ left</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
@ -85,17 +85,17 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>zero</key>
<string>%ld characters left</string>
<string>%ld characters</string>
<key>one</key>
<string>1 character left</string>
<string>1 character</string>
<key>two</key>
<string>%ld characters left</string>
<string>%ld characters</string>
<key>few</key>
<string>%ld characters left</string>
<string>%ld characters</string>
<key>many</key>
<string>%ld characters left</string>
<string>%ld characters</string>
<key>other</key>
<string>%ld characters left</string>
<string>%ld characters</string>
</dict>
</dict>
<key>plural.count.followed_by_and_mutual</key>
@ -128,17 +128,17 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>zero</key>
<string>Dilynwyd gan %1$@, a %ld mewn cyffredin</string>
<string>Followed by %1$@, and %ld mutuals</string>
<key>one</key>
<string>Dilynwyd gan %1$@, a pherson gyffredin</string>
<string>Followed by %1$@, and another mutual</string>
<key>two</key>
<string>Dilynwyd gan %1$@, a %ld mewn cyffredin</string>
<string>Followed by %1$@, and %ld mutuals</string>
<key>few</key>
<string>Dilynwyd gan %1$@, a %ld mewn cyffredin</string>
<string>Followed by %1$@, and %ld mutuals</string>
<key>many</key>
<string>Dilynwyd gan %1$@, a %ld mewn cyffredin</string>
<string>Followed by %1$@, and %ld mutuals</string>
<key>other</key>
<string>Dilynwyd gan %1$@, a %ld mewn cyffredin</string>
<string>Followed by %1$@, and %ld mutuals</string>
</dict>
</dict>
<key>plural.count.metric_formatted.post</key>
@ -152,17 +152,17 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>zero</key>
<string>t</string>
<string>post</string>
<key>one</key>
<string>t</string>
<string>post</string>
<key>two</key>
<string>tŵt</string>
<string>postiau</string>
<key>few</key>
<string>tŵt</string>
<string>posts</string>
<key>many</key>
<string>tŵt</string>
<string>posts</string>
<key>other</key>
<string>postiadau</string>
<string>postiau</string>
</dict>
</dict>
<key>plural.count.media</key>
@ -176,17 +176,17 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>zero</key>
<string>%ld cyfrwng</string>
<string>%ld media</string>
<key>one</key>
<string>%ld cyfrwng</string>
<string>1 media</string>
<key>two</key>
<string>%ld gyfrwng</string>
<string>%ld media</string>
<key>few</key>
<string>%ld cyfrwng</string>
<string>%ld media</string>
<key>many</key>
<string>%ld cyfrwng</string>
<string>%ld media</string>
<key>other</key>
<string>%ld cyfrwng</string>
<string>%ld media</string>
</dict>
</dict>
<key>plural.count.post</key>
@ -200,17 +200,17 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>zero</key>
<string>%ld post</string>
<string>%ld posts</string>
<key>one</key>
<string>%ld post</string>
<string>1 post</string>
<key>two</key>
<string>%ld bost</string>
<string>%ld posts</string>
<key>few</key>
<string>%ld post</string>
<string>%ld posts</string>
<key>many</key>
<string>%ld post</string>
<string>%ld posts</string>
<key>other</key>
<string>%ld post</string>
<string>%ld posts</string>
</dict>
</dict>
<key>plural.count.favorite</key>
@ -224,17 +224,17 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>zero</key>
<string>%ld ffefrynnau</string>
<string>%ld favorites</string>
<key>one</key>
<string>%ld ffefryn</string>
<string>1 favorite</string>
<key>two</key>
<string>%ld ffefryn</string>
<string>%ld favorites</string>
<key>few</key>
<string>%ld ffefryn</string>
<string>%ld favorites</string>
<key>many</key>
<string>%ld ffefryn</string>
<string>%ld favorites</string>
<key>other</key>
<string>%ld ffefryn</string>
<string>%ld favorites</string>
</dict>
</dict>
<key>plural.count.reblog</key>
@ -248,41 +248,17 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>zero</key>
<string>%ld ailflogiau</string>
<string>%ld reblogs</string>
<key>one</key>
<string>%ld ailflog</string>
<string>1 reblog</string>
<key>two</key>
<string>%ld ailflog</string>
<string>%ld reblogs</string>
<key>few</key>
<string>%ld ailflog</string>
<string>%ld reblogs</string>
<key>many</key>
<string>%ld ailflog</string>
<string>%ld reblogs</string>
<key>other</key>
<string>%ld o ailflogiau</string>
</dict>
</dict>
<key>plural.count.reblog_a11y</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@reblog_count@</string>
<key>reblog_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>zero</key>
<string>%ld re-blogs</string>
<key>one</key>
<string>1 re-blog</string>
<key>two</key>
<string>%ld re-blogs</string>
<key>few</key>
<string>%ld re-blogs</string>
<key>many</key>
<string>%ld re-blogs</string>
<key>other</key>
<string>%ld re-blogs</string>
<string>%ld reblogs</string>
</dict>
</dict>
<key>plural.count.reply</key>
@ -296,17 +272,17 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>zero</key>
<string>%ld ymatebau</string>
<string>%ld replies</string>
<key>one</key>
<string>%ld ymateb</string>
<string>1 reply</string>
<key>two</key>
<string>%ld ymateb</string>
<string>%ld replies</string>
<key>few</key>
<string>%ld ymateb</string>
<string>%ld replies</string>
<key>many</key>
<string>%ld o ymatebau</string>
<string>%ld replies</string>
<key>other</key>
<string>%ld ymateb</string>
<string>%ld replies</string>
</dict>
</dict>
<key>plural.count.vote</key>
@ -320,17 +296,17 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>zero</key>
<string>%ld pleidleisiau</string>
<string>%ld votes</string>
<key>one</key>
<string>%ld pleidlais</string>
<string>1 vote</string>
<key>two</key>
<string>%ld bleidlais</string>
<string>%ld votes</string>
<key>few</key>
<string>%ld phleidlais</string>
<string>%ld votes</string>
<key>many</key>
<string>%ld pleidlais</string>
<string>%ld votes</string>
<key>other</key>
<string>%ld pleidlais</string>
<string>%ld votes</string>
</dict>
</dict>
<key>plural.count.voter</key>
@ -344,17 +320,17 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>zero</key>
<string>%ld pleidleiswyr</string>
<string>%ld voters</string>
<key>one</key>
<string>%ld pleidleisiwr</string>
<string>1 voter</string>
<key>two</key>
<string>%ld bleidleisiwr</string>
<string>%ld voters</string>
<key>few</key>
<string>%ld phleidleisiwr</string>
<string>%ld voters</string>
<key>many</key>
<string>%ld pleidleisiwr</string>
<string>%ld voters</string>
<key>other</key>
<string>%ld pleidleisiwr</string>
<string>%ld voters</string>
</dict>
</dict>
<key>plural.people_talking</key>
@ -368,17 +344,17 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>zero</key>
<string>%ld person yn trafod</string>
<string>%ld people talking</string>
<key>one</key>
<string>%ld person yn trafod</string>
<string>1 people talking</string>
<key>two</key>
<string>%ld berson yn trafod</string>
<string>%ld people talking</string>
<key>few</key>
<string>%ld o bobl yn trafod</string>
<string>%ld people talking</string>
<key>many</key>
<string>%ld o bobl yn trafod</string>
<string>%ld people talking</string>
<key>other</key>
<string>%ld o bobl yn trafod</string>
<string>%ld people talking</string>
</dict>
</dict>
<key>plural.count.following</key>
@ -392,17 +368,17 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>zero</key>
<string>%ld yn dilyn</string>
<string>%ld following</string>
<key>one</key>
<string>%ld yn dilyn</string>
<string>1 following</string>
<key>two</key>
<string>%ld yn dilyn</string>
<string>%ld following</string>
<key>few</key>
<string>%ld yn dilyn</string>
<string>%ld following</string>
<key>many</key>
<string>%ld yn dilyn</string>
<string>%ld following</string>
<key>other</key>
<string>%ld yn dilyn</string>
<string>%ld following</string>
</dict>
</dict>
<key>plural.count.follower</key>
@ -416,17 +392,17 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>zero</key>
<string>%ld dilynwyr</string>
<string>%ld followers</string>
<key>one</key>
<string>%ld dilynwr</string>
<string>1 follower</string>
<key>two</key>
<string>%ld ddilynwr</string>
<string>%ld followers</string>
<key>few</key>
<string>%ld dilynwr</string>
<string>%ld followers</string>
<key>many</key>
<string>%ld o ddilynwyr</string>
<string>%ld followers</string>
<key>other</key>
<string>%ld dilynwr</string>
<string>%ld followers</string>
</dict>
</dict>
<key>date.year.left</key>
@ -440,17 +416,17 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>zero</key>
<string>%ld blwyddyn ar ôl</string>
<string>%ld years left</string>
<key>one</key>
<string>%ld blwyddyn ar ôl</string>
<string>1 year left</string>
<key>two</key>
<string>%ld flwyddyn ar ôl</string>
<string>%ld years left</string>
<key>few</key>
<string>%ld blwyddyn ar ôl</string>
<string>%ld years left</string>
<key>many</key>
<string>%ld blwyddyn ar ôl</string>
<string>%ld years left</string>
<key>other</key>
<string>%ld blwyddyn ar ôl</string>
<string>%ld years left</string>
</dict>
</dict>
<key>date.month.left</key>
@ -464,17 +440,17 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>zero</key>
<string>%ld mis ar ôl</string>
<string>%ld months left</string>
<key>one</key>
<string>%ld mis ar ôl</string>
<string>1 months left</string>
<key>two</key>
<string>%ld fis ar ôl</string>
<string>%ld months left</string>
<key>few</key>
<string>%ld mis ar ôl</string>
<string>%ld months left</string>
<key>many</key>
<string>%ld mis ar ôl</string>
<string>%ld months left</string>
<key>other</key>
<string>%ld mis ar ôl</string>
<string>%ld months left</string>
</dict>
</dict>
<key>date.day.left</key>
@ -488,17 +464,17 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>zero</key>
<string>%ld diwrnod ar ôl</string>
<string>%ld days left</string>
<key>one</key>
<string>%ld diwrnod ar ôl</string>
<string>1 day left</string>
<key>two</key>
<string>%ld ddiwrnod ar ôl</string>
<string>%ld days left</string>
<key>few</key>
<string>%ld diwrnod ar ôl</string>
<string>%ld days left</string>
<key>many</key>
<string>%ld diwrnod ar ôl</string>
<string>%ld days left</string>
<key>other</key>
<string>%ld diwrnod ar ôl</string>
<string>%ld days left</string>
</dict>
</dict>
<key>date.hour.left</key>
@ -512,17 +488,17 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>zero</key>
<string>%ld awr ar ôl</string>
<string>%ld hours left</string>
<key>one</key>
<string>%ld awr ar ôl</string>
<string>1 hour left</string>
<key>two</key>
<string>%ld awr ar ôl</string>
<string>%ld hours left</string>
<key>few</key>
<string>%ld awr ar ôl</string>
<string>%ld hours left</string>
<key>many</key>
<string>%ld awr ar ôl</string>
<string>%ld hours left</string>
<key>other</key>
<string>%ld awr ar ôl</string>
<string>%ld hours left</string>
</dict>
</dict>
<key>date.minute.left</key>
@ -536,17 +512,17 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>zero</key>
<string>%ld munud ar ôl</string>
<string>%ld minutes left</string>
<key>one</key>
<string>%ld munud ar ôl</string>
<string>1 minute left</string>
<key>two</key>
<string>%ld funud ar ôl</string>
<string>%ld minutes left</string>
<key>few</key>
<string>%ld munud ar ôl</string>
<string>%ld minutes left</string>
<key>many</key>
<string>%ld munud ar ôl</string>
<string>%ld minutes left</string>
<key>other</key>
<string>%ld munud ar ôl</string>
<string>%ld minutes left</string>
</dict>
</dict>
<key>date.second.left</key>
@ -560,17 +536,17 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>zero</key>
<string>%ld eiliad ar ôl</string>
<string>%ld seconds left</string>
<key>one</key>
<string>%ld eiliad ar ôl</string>
<string>1 second left</string>
<key>two</key>
<string>%ld eiliad ar ôl</string>
<string>%ld seconds left</string>
<key>few</key>
<string>%ld eiliad ar ôl</string>
<string>%ld seconds left</string>
<key>many</key>
<string>%ld eiliad ar ôl</string>
<string>%ld seconds left</string>
<key>other</key>
<string>%ld eiliad ar ôl</string>
<string>%ld seconds left</string>
</dict>
</dict>
<key>date.year.ago.abbr</key>
@ -584,17 +560,17 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>zero</key>
<string>%ld blwyddyn yn ôl</string>
<string>%ldy ago</string>
<key>one</key>
<string>%ld blwyddyn yn ôl</string>
<string>1y ago</string>
<key>two</key>
<string>%ld flwyddyn yn ôl</string>
<string>%ldy ago</string>
<key>few</key>
<string>%ld blwyddyn yn ôl</string>
<string>%ldy ago</string>
<key>many</key>
<string>%ld blwyddyn yn ôl</string>
<string>%ldy ago</string>
<key>other</key>
<string>%ld blwyddyn yn ôl</string>
<string>%ldy ago</string>
</dict>
</dict>
<key>date.month.ago.abbr</key>
@ -608,17 +584,17 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>zero</key>
<string>%ld munud yn ôl</string>
<string>%ldM ago</string>
<key>one</key>
<string>%ld munud yn ôl</string>
<string>1M ago</string>
<key>two</key>
<string>%ld funud yn ôl</string>
<string>%ldM ago</string>
<key>few</key>
<string>%ld munud yn ôl</string>
<string>%ldM ago</string>
<key>many</key>
<string>%ld munud yn ôl</string>
<string>%ldM ago</string>
<key>other</key>
<string>%ld munud yn ôl</string>
<string>%ldM ago</string>
</dict>
</dict>
<key>date.day.ago.abbr</key>
@ -632,17 +608,17 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>zero</key>
<string>%ldd yn ôl</string>
<string>%ldd ago</string>
<key>one</key>
<string>%ldd yn ôl</string>
<string>1d ago</string>
<key>two</key>
<string>%ldd yn ôl</string>
<string>%ldd ago</string>
<key>few</key>
<string>%ldd yn ôl</string>
<string>%ldd ago</string>
<key>many</key>
<string>%ldd yn ôl</string>
<string>%ldd ago</string>
<key>other</key>
<string>%ldd yn ôl</string>
<string>%ldd ago</string>
</dict>
</dict>
<key>date.hour.ago.abbr</key>
@ -656,17 +632,17 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>zero</key>
<string>%ld awr yn ôl</string>
<string>%ldh ago</string>
<key>one</key>
<string>%ld awr yn ôl</string>
<string>1h ago</string>
<key>two</key>
<string>%ld awr yn ôl</string>
<string>%ldh ago</string>
<key>few</key>
<string>%ld awr yn ôl</string>
<string>%ldh ago</string>
<key>many</key>
<string>%ld awr yn ôl</string>
<string>%ldh ago</string>
<key>other</key>
<string>%ld awr yn ôl</string>
<string>%ldh ago</string>
</dict>
</dict>
<key>date.minute.ago.abbr</key>
@ -680,17 +656,17 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>zero</key>
<string>%ld munud yn ôl</string>
<string>%ldm ago</string>
<key>one</key>
<string>%ld munud yn ôl</string>
<string>1m ago</string>
<key>two</key>
<string>%ld funud yn ôl</string>
<string>%ldm ago</string>
<key>few</key>
<string>%ld munud yn ôl</string>
<string>%ldm ago</string>
<key>many</key>
<string>%ld munud yn ôl</string>
<string>%ldm ago</string>
<key>other</key>
<string>%ld munud yn ôl</string>
<string>%ldm ago</string>
</dict>
</dict>
<key>date.second.ago.abbr</key>
@ -704,17 +680,17 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>zero</key>
<string>%ld eiliad yn ôl</string>
<string>%lds ago</string>
<key>one</key>
<string>%ld eiliad yn ôl</string>
<string>1s ago</string>
<key>two</key>
<string>%ld eiliad yn ôl</string>
<string>%lds ago</string>
<key>few</key>
<string>%ld eiliad yn ôl</string>
<string>%lds ago</string>
<key>many</key>
<string>%ld eiliad yn ôl</string>
<string>%lds ago</string>
<key>other</key>
<string>%ld eiliad yn ôl</string>
<string>%lds ago</string>
</dict>
</dict>
</dict>

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{
"NSCameraUsageDescription": "Defnyddir hwn i gymryd llun am bost",
"NSPhotoLibraryAddUsageDescription": "Defnyddir hwn i gadw llun yn eich Photo Library",
"NSCameraUsageDescription": "Used to take photo for post status",
"NSPhotoLibraryAddUsageDescription": "Used to save photo into the Photo Library",
"NewPostShortcutItemTitle": "Post Newydd",
"SearchShortcutItemTitle": "Chwilio"
}

View File

@ -15,7 +15,7 @@
<key>one</key>
<string>1 unread notification</string>
<key>other</key>
<string>%ld unread notifications</string>
<string>%ld unread notification</string>
</dict>
</dict>
<key>a11y.plural.count.input_limit_exceeds</key>
@ -53,7 +53,7 @@
<key>a11y.plural.count.characters_left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@character_count@</string>
<string>%#@character_count@ left</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
@ -61,9 +61,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 character left</string>
<string>1 character</string>
<key>other</key>
<string>%ld characters left</string>
<string>%ld characters</string>
</dict>
</dict>
<key>plural.count.followed_by_and_mutual</key>
@ -173,22 +173,6 @@
<string>%ld reblogs</string>
</dict>
</dict>
<key>plural.count.reblog_a11y</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@reblog_count@</string>
<key>reblog_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 re-blog</string>
<key>other</key>
<string>%ld re-blogs</string>
</dict>
</dict>
<key>plural.count.reply</key>
<dict>
<key>NSStringLocalizedFormatKey</key>

View File

@ -2,19 +2,23 @@
"common": {
"alerts": {
"common": {
"please_try_again": "Prøv venligst igen.",
"please_try_again_later": "Prøv venligst igen senere."
"please_try_again": "Please try again.",
"please_try_again_later": "Please try again later."
},
"sign_up_failure": {
"title": "Tilmeldingsfejl"
"title": "Sign Up Failure"
},
"server_error": {
"title": "Serverfejl"
"title": "Server Error"
},
"vote_failure": {
"title": "Vote Failure",
"poll_ended": "The poll has ended"
},
"discard_post_content": {
"title": "Discard Draft",
"message": "Confirm to discard composed post content."
},
"publish_post_failure": {
"title": "Publish Failure",
"message": "Failed to publish the post.\nPlease check your internet connection.",
@ -47,29 +51,6 @@
"clean_cache": {
"title": "Clean Cache",
"message": "Successfully cleaned %s cache."
},
"translation_failed": {
"title": "Note",
"message": "Translation failed. Maybe the administrator has not enabled translations on this server or this server is running an older version of Mastodon where translations are not yet supported.",
"button": "OK"
},
"media_missing_alt_text": {
"title": "Media Missing Alt Text",
"message": "%d of your images are missing alt text.\nPost Anyway?",
"cancel": "Cancel",
"post": "Post"
},
"boost_a_post": {
"title_boost": "Boost Post?",
"title_unboost": "Unboost Post?",
"cancel": "Cancel",
"boost": "Boost",
"unboost": "Unboost"
},
"unfollow_user": {
"title": "Unfollow %@?",
"cancel": "Cancel",
"unfollow": "Unfollow"
}
},
"controls": {
@ -94,9 +75,9 @@
"save_photo": "Save Photo",
"copy_photo": "Copy Photo",
"sign_in": "Log in",
"sign_up": "Create account",
"see_more": "See More",
"preview": "Preview",
"copy": "Copy",
"share": "Share",
"share_user": "Share %s",
"share_post": "Share Post",
@ -110,26 +91,13 @@
"block_domain": "Block %s",
"unblock_domain": "Unblock %s",
"settings": "Settings",
"delete": "Delete",
"translate_post": {
"title": "Translate from %s",
"unknown_language": "Unknown"
},
"edit_post": "Edit",
"bookmark": "Bookmark",
"remove_bookmark": "Remove Bookmark",
"follow": "Follow %s",
"unfollow": "Unfollow %s"
"delete": "Delete"
},
"tabs": {
"home": "Home",
"search_and_explore": "Search and Explore",
"notifications": "Notifications",
"profile": "Profile",
"a11y": {
"search": "Search",
"explore": "Explore"
}
"search": "Search",
"notification": "Notification",
"profile": "Profile"
},
"keyboard": {
"common": {
@ -164,8 +132,6 @@
"sensitive_content": "Sensitive Content",
"media_content_warning": "Tap anywhere to reveal",
"tap_to_reveal": "Tap to reveal",
"load_embed": "Load Embed",
"link_via_user": "%s via %s",
"poll": {
"vote": "Vote",
"closed": "Closed"
@ -187,12 +153,7 @@
"show_image": "Show image",
"show_gif": "Show GIF",
"show_video_player": "Show video player",
"share_link_in_post": "Share Link in Post",
"tap_then_hold_to_show_menu": "Tap then hold to show menu",
"a11y_labels": {
"reblog": "Re-blog",
"unreblog": "Undo re-blog"
}
"tap_then_hold_to_show_menu": "Tap then hold to show menu"
},
"tag": {
"url": "URL",
@ -207,30 +168,6 @@
"private": "Only their followers can see this post.",
"private_from_me": "Only my followers can see this post.",
"direct": "Only mentioned user can see this post."
},
"translation": {
"translated_from": "Translated from %s using %s",
"unknown_language": "Unknown",
"unknown_provider": "Unknown",
"show_original": "Show Original"
},
"media": {
"accessibility_label": "%s, attachment %d of %d",
"expand_image_hint": "Expands the image. Double-tap and hold to show actions",
"expand_gif_hint": "Expands the GIF. Double-tap and hold to show actions",
"expand_video_hint": "Shows the video player. Double-tap and hold to show actions"
},
"posted_via_application": "%s via %s",
"buttons": {
"reblogs_title": "Reblogs",
"favorites_title": "Favorites",
"edit_history_title": "Edit History",
"edit_history_detail": "Last edit %s"
},
"edited_at_timestamp_prefix": "Edited %s",
"edit_history": {
"title": "Edit History",
"original_post": "Original Post · %s"
}
},
"friendship": {
@ -240,11 +177,10 @@
"pending": "Pending",
"block": "Block",
"block_user": "Block %s",
"block_domain": "Block domain %s",
"block_domain": "Block %s",
"unblock": "Unblock",
"unblock_user": "Unblock %s",
"blocked": "Blocked",
"domain_blocked": "Domain Blocked",
"mute": "Mute",
"mute_user": "Mute %s",
"unmute": "Unmute",
@ -274,36 +210,13 @@
"user_suspended_warning": "%ss account has been suspended."
}
}
},
"user_list": {
"no_verified_link": "No verified link",
"followers_count": "%@ followers"
}
},
"scene": {
"welcome": {
"log_in": "Log In",
"learn_more": "Learn more",
"join_default_server": "Join %@",
"pick_server": "Pick another server",
"separator": {
"or": "or"
},
"education": {
"mastodon": {
"title": "Welcome to Mastodon",
"description": "Mastodon is a decentralized social network, meaning no single company controls it. Its made up of many independently-run servers, all connected together."
},
"servers": {
"title": "What are servers?",
"description": "Every Mastodon account is hosted on a server — each with its own values, rules, & admins. No matter which one you pick, you can follow and interact with people on any server."
},
"a11y": {
"what_is_mastodon": {
"title": "What is Mastodon?"
}
}
}
"slogan": "Social networking\nback in your hands.",
"get_started": "Get Started",
"log_in": "Log In"
},
"login": {
"title": "Welcome back",
@ -313,10 +226,9 @@
}
},
"server_picker": {
"title": "Pick Server",
"title": "Mastodon is made of users in different servers.",
"subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.",
"button": {
"language": "Language",
"signup_speed": "Sign-up Speed",
"category": {
"all": "All",
"all_accessiblity_description": "Category: All",
@ -348,41 +260,18 @@
"finding_servers": "Finding available servers...",
"bad_network": "Something went wrong while loading the data. Check your internet connection.",
"no_results": "No results"
},
"signup_speed": {
"all": "All",
"instant": "Instant Sign-up",
"manually_reviewed": "Manual Review"
},
"language": {
"all": "All"
},
"search": {
"placeholder": "Search name or URL"
},
"no_server_selected_hint": "Well pick a server based on your language if you continue without making a selection."
},
"privacy": {
"title": "Privacy",
"description": "Although the Mastodon app does not collect any data, the server you sign up through may have a different policy. Take a minute to review and agree to the Mastodon app privacy policy and your servers privacy policy.",
"policy": {
"ios": "Privacy Policy - Mastodon for iOS",
"server": "Privacy Policy - %s"
},
"button": {
"confirm": "I Agree"
}
},
"register": {
"title": "Create Account",
"title": "Lets get you set up on %s",
"lets_get_you_set_up_on_domain": "Lets get you set up on %s",
"input": {
"avatar": {
"delete": "Delete"
},
"username": {
"placeholder": "username",
"duplicate_prompt": "This username is taken.",
"suggestion": "amazing_%@"
"duplicate_prompt": "This username is taken."
},
"display_name": {
"placeholder": "display name"
@ -392,7 +281,6 @@
},
"password": {
"placeholder": "password",
"confirmation_placeholder": "Confirm Password",
"require": "Your password needs at least:",
"character_limit": "8 characters",
"accessibility": {
@ -417,7 +305,7 @@
"reason": {
"blocked": "%s contains a disallowed email provider",
"unreachable": "%s does not seem to exist",
"taken": "%s is already taken. How about:",
"taken": "%s is already in use",
"reserved": "%s is a reserved keyword",
"accepted": "%s must be accepted",
"blank": "%s is required",
@ -435,37 +323,33 @@
}
},
"server_rules": {
"title": "Server Rules",
"subtitle": "By continuing, you agree to follow by the following rules set and enforced by the **%@** moderators.",
"title": "Some ground rules.",
"subtitle": "These are set and enforced by the %s moderators.",
"prompt": "By continuing, youre subject to the terms of service and privacy policy for %s.",
"terms_of_service": "terms of service",
"privacy_policy": "privacy policy",
"button": {
"confirm": "I Agree",
"disagree": "Disagree"
"confirm": "I Agree"
}
},
"confirm_email": {
"title": "Check Your Inbox",
"tap_the_link_we_emailed_to_you_to_verify_your_account": "Tap the link we sent you to verify %@. Well wait right here.",
"title": "One last thing.",
"subtitle": "Tap the link we emailed to you to verify your account.",
"tap_the_link_we_emailed_to_you_to_verify_your_account": "Tap the link we emailed to you to verify your account",
"button": {
"open_email_app": "Open Email App",
"resend": "Resend"
},
"dont_receive_email": {
"title": "Check your Email",
"title": "Check your email",
"description": "Check if your email address is correct as well as your junk folder if you havent.",
"resend_email": "Resend Email"
},
"open_email_app": {
"title": "Check your Inbox.",
"title": "Check your inbox.",
"description": "We just sent you an email. Check your junk folder if you havent.",
"mail": "Mail",
"open_email_client": "Open Email Client"
},
"didnt_get_link": {
"prefix": "Didnt get a link?",
"resend_in": "Resend (%@)",
"resend_now": "Resend now."
}
},
"home_timeline": {
@ -476,20 +360,19 @@
"published": "Published!",
"Publishing": "Publishing post...",
"accessibility": {
"logo_label": "Mastodon",
"logo_label": "Logo Button",
"logo_hint": "Tap to scroll to top and tap again to previous location"
}
}
},
"suggestion_account": {
"title": "Popular on Mastodon",
"follow_all": "Follow all"
"title": "Find People to Follow",
"follow_explain": "When you follow someone, youll see their posts in your home feed."
},
"compose": {
"title": {
"new_post": "New Post",
"new_reply": "New Reply",
"edit_post": "Edit Post"
"new_reply": "New Reply"
},
"media_selection": {
"camera": "Take Photo",
@ -513,7 +396,6 @@
"server_processing_state": "Server Processing..."
},
"poll": {
"title": "Poll",
"duration_time": "Duration: %s",
"thirty_minutes": "30 minutes",
"one_hour": "1 Hour",
@ -523,11 +405,7 @@
"seven_days": "7 Days",
"option_number": "Option %ld",
"the_poll_is_invalid": "The poll is invalid",
"the_poll_has_empty_option": "The poll has empty option",
"add_option": "Add Option",
"remove_option": "Remove Option",
"move_up": "Move Up",
"move_down": "Move Down"
"the_poll_has_empty_option": "The poll has empty option"
},
"content_warning": {
"placeholder": "Write an accurate warning here..."
@ -559,12 +437,6 @@
"toggle_content_warning": "Toggle Content Warning",
"append_attachment_entry": "Add Attachment - %s",
"select_visibility_entry": "Select Visibility - %s"
},
"language": {
"title": "Post Language",
"suggested": "Suggested",
"recent": "Recent",
"other": "Other Language…"
}
},
"profile": {
@ -572,16 +444,11 @@
"follows_you": "Follows You"
},
"dashboard": {
"my_posts": "posts",
"my_following": "following",
"my_followers": "followers",
"other_posts": "posts",
"other_following": "following",
"other_followers": "followers",
"familiar_followers": "mutuals"
"posts": "posts",
"following": "following",
"followers": "followers"
},
"fields": {
"joined": "Joined",
"add_row": "Add Row",
"placeholder": {
"label": "Label",
@ -623,14 +490,6 @@
"confirm_hide_reblogs": {
"title": "Hide Reblogs",
"message": "Confirm to hide reblogs"
},
"confirm_block_domain": {
"title": "Block domain",
"message": "Confirm to block domain %s"
},
"confirm_unblock_domain": {
"title": "Unblock domain",
"message": "Confirm to unblock domain %s"
}
},
"accessibility": {
@ -678,20 +537,16 @@
}
},
"searching": {
"posts": "Posts matching \"%s\"",
"people": "People matching \"%s\"",
"profile": "Go to @%s@%s",
"url": "Open URL in Mastodon",
"hashtag": "Go to #%s",
"no_user": {
"title": "No User Account Found",
"message": "There's no Useraccount \"%s\" on %s"
"segment": {
"all": "All",
"people": "People",
"hashtags": "Hashtags",
"posts": "Posts"
},
"empty_state": {
"no_results": "No results"
},
"recent_search": "Recent searches",
"clear_all": "Clear all",
"clear": "Clear"
}
},
@ -706,7 +561,7 @@
"intro": "These are the posts gaining traction in your corner of Mastodon."
},
"favorite": {
"title": "Favorites"
"title": "Your Favorites"
},
"notification": {
"title": {
@ -737,79 +592,60 @@
"title": "Post from %s"
},
"settings": {
"overview": {
"title": "Settings",
"general": "General",
"notifications": "Notifications",
"support_mastodon": "Support Mastodon",
"about_mastodon": "About Mastodon",
"server_details": "Server Details",
"logout": "Logout %@"
},
"about_mastodon": {
"title": "About",
"more_settings": "Even More Settings",
"contribute_to_mastodon": "Contribute to Mastodon",
"privacy_policy": "Privacy Policy",
"clear_media_storage": "Clear Media Storage"
},
"server_details": {
"about": "About",
"rules": "Rules",
"about_instance": {
"title": "Administrator",
"message_admin": "Message Admin",
"legal_notice": "A legal notice"
}
},
"general": {
"title": "General",
"title": "Settings",
"section": {
"appearance": {
"section_title": "Appearance",
"dark": "Dark",
"light": "Light",
"system": "Use Device Appearance"
"title": "Appearance",
"automatic": "Automatic",
"light": "Always Light",
"dark": "Always Dark"
},
"ask_before": {
"section_title": "Ask before…",
"posting_without_alt_text": "Posting without Alt Text",
"unfollowing_someone": "Unfollowing Someone",
"boosting_a_post": "Boosting a Post",
"deleting_a_post": "Deleting a Post"
"look_and_feel": {
"title": "Look and Feel",
"use_system": "Use System",
"really_dark": "Really Dark",
"sorta_dark": "Sorta Dark",
"light": "Light"
},
"design": {
"section_title": "Design",
"show_animations": "Play Animated Avatars and Emoji"
"notifications": {
"title": "Notifications",
"favorites": "Favorites my post",
"follows": "Follows me",
"boosts": "Reblogs my post",
"mentions": "Mentions me",
"trigger": {
"anyone": "anyone",
"follower": "a follower",
"follow": "anyone I follow",
"noone": "no one",
"title": "Notify me when"
}
},
"language": {
"section_title": "Language",
"default_post_language": "Default Post Language"
"preference": {
"title": "Preferences",
"true_black_dark_mode": "True black dark mode",
"disable_avatar_animation": "Disable animated avatars",
"disable_emoji_animation": "Disable animated emojis",
"using_default_browser": "Use default browser to open links",
"open_links_in_mastodon": "Open links in Mastodon"
},
"links": {
"section_title": "Links",
"open_in_mastodon": "Open in Mastodon",
"open_in_browser": "Open in Browser"
"boring_zone": {
"title": "The Boring Zone",
"account_settings": "Account Settings",
"terms": "Terms of Service",
"privacy": "Privacy Policy"
},
"spicy_zone": {
"title": "The Spicy Zone",
"clear": "Clear Media Cache",
"signout": "Sign Out"
}
},
"notifications": {
"title": "Notifications",
"policy": {
"title": "Get Notifications from",
"anyone": "Anyone",
"followers": "People who follow you",
"follow": "People you follow",
"noone": "No one"
},
"alert": {
"mentions_and_replies": "Mentions & Replies",
"boosts": "Boosts",
"favorites": "Favorites",
"new_followers": "New Followers"
},
"disabled": {
"notification_hint": "Turn on notifications from your device settings to see updates on your lock screen.",
"go_to_settings": "Go to Notification Settings"
}
"footer": {
"mastodon_description": "Mastodon is open source software. You can report issues on GitHub at %s (%s)"
},
"keyboard": {
"close_settings_window": "Close Settings Window"
}
},
"report": {
@ -879,67 +715,13 @@
"dismiss_account_switcher": "Dismiss Account Switcher",
"add_account": "Add Account"
},
"wizard": {
"new_in_mastodon": "New in Mastodon",
"multiple_account_switch_intro_description": "Switch between multiple accounts by holding the profile button.",
"accessibility_hint": "Double tap to dismiss this wizard"
},
"bookmark": {
"title": "Bookmarks"
},
"followed_tags": {
"title": "Followed Tags",
"header": {
"posts": "posts",
"participants": "participants",
"posts_today": "posts today"
},
"actions": {
"follow": "Follow",
"unfollow": "Unfollow"
}
}
},
"extension": {
"open_in": {
"invalid_link_error": "This doesn't seem to be a valid Mastodon link."
}
},
"widget": {
"common": {
"unsupported_widget_family": "Sorry but this Widget family is unsupported.",
"user_not_logged_in": "Please open Mastodon to log in to an Account."
},
"followers_count": {
"configuration_display_name": "Followers",
"configuration_description": "Show number of followers.",
"title": "FOLLOWERS",
"followers_today": "%s followers today"
},
"multiple_followers": {
"configuration_display_name": "Multiple followers",
"configuration_description": "Show number of followers for multiple accounts.",
"mock_user": {
"display_name": "Another follower",
"account_name": "another@follower.social"
}
},
"latest_followers": {
"configuration_display_name": "Latest followers",
"configuration_description": "Show latest followers.",
"title": "Latest followers",
"last_update": "Last update: %s"
},
"hashtag": {
"configuration": {
"display_name": "Hashtag",
"description": "Shows a recent post with the selected hashtag."
},
"not_found": {
"account_name": "John Mastodon",
"account": "@johnMastodon@no-such.account",
"content": "Sorry, we couldnt find any posts with the hashtag <a>#%@</a>. Please try a <a>#DifferentHashtag</a> or check the widget settings."
},
"placeholder": {
"account_name": "John Mastodon",
"account": "@johnMastodon@no-such.account",
"content": "This is how a post with a <a>#hashtag</a> would look. Pick whichever <a>#hashtag</a> you want in the widget settings."
}
}
}
}

View File

@ -37,7 +37,7 @@
<key>a11y.plural.count.input_limit_remains</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>Noch %#@character_count@ Zeichen übrig</string>
<string>Noch %#@character_count@ übrig</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
@ -53,7 +53,7 @@
<key>a11y.plural.count.characters_left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@character_count@</string>
<string>%#@character_count@ left</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
@ -61,9 +61,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 Zeichen übrig</string>
<string>1 character</string>
<key>other</key>
<string>%ld Zeichen übrig</string>
<string>%ld characters</string>
</dict>
</dict>
<key>plural.count.followed_by_and_mutual</key>
@ -173,22 +173,6 @@
<string>%ld Reblogs</string>
</dict>
</dict>
<key>plural.count.reblog_a11y</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@reblog_count@</string>
<key>reblog_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 re-blog</string>
<key>other</key>
<string>%ld re-blogs</string>
</dict>
</dict>
<key>plural.count.reply</key>
<dict>
<key>NSStringLocalizedFormatKey</key>

View File

@ -15,6 +15,10 @@
"title": "Fehler bei Abstimmung",
"poll_ended": "Die Umfrage ist beendet"
},
"discard_post_content": {
"title": "Entwurf verwerfen",
"message": "Bestätige, um den Beitrag zu verwerfen."
},
"publish_post_failure": {
"title": "Fehler bei Veröffentlichung",
"message": "Fehler beim Veröffentlichen des Beitrags.\nBitte überprüfe deine Internetverbindung.",
@ -41,35 +45,12 @@
"message": "Bitte aktiviere den Zugriff auf die Fotobibliothek, um das Foto zu speichern."
},
"delete_post": {
"title": "Beiträge löschen",
"title": "Bist du dir sicher, dass du diesen Beitrag löschen möchtest?",
"message": "Bist du dir sicher, dass du diesen Beitrag löschen willst?"
},
"clean_cache": {
"title": "Zwischenspeicher leeren",
"message": "%s erfolgreich aus dem Cache gelöscht."
},
"translation_failed": {
"title": "Hinweis",
"message": "Übersetzung fehlgeschlagen. Möglicherweise haben die Administrator*innen die Übersetzungen auf diesem Server nicht aktiviert oder dieser Server läuft mit einer älteren Version von Mastodon, in der Übersetzungen noch nicht unterstützt wurden.",
"button": "OK"
},
"media_missing_alt_text": {
"title": "Medien haben keinen Alt-Text",
"message": "Bei %d Ihrer Bilder fehlt der Alt-Text.\nTrotzdem posten?",
"cancel": "Abbrechen",
"post": "Veröffentlichen"
},
"boost_a_post": {
"title_boost": "Beitrag teilen?",
"title_unboost": "Beitrag nicht mehr teilen?",
"cancel": "Abbrechen",
"boost": "Teilen",
"unboost": "Beitrag nicht mehr teilen"
},
"unfollow_user": {
"title": "%@ entfolgen?",
"cancel": "Abbrechen",
"unfollow": "Nicht mehr folgen"
}
},
"controls": {
@ -85,7 +66,7 @@
"ok": "OK",
"done": "Fertig",
"confirm": "Bestätigen",
"continue": "Weiter",
"continue": "Fortfahren",
"compose": "Neue Nachricht",
"cancel": "Abbrechen",
"discard": "Verwerfen",
@ -94,9 +75,9 @@
"save_photo": "Foto speichern",
"copy_photo": "Foto kopieren",
"sign_in": "Anmelden",
"sign_up": "Konto erstellen",
"see_more": "Mehr anzeigen",
"preview": "Vorschau",
"copy": "Kopieren",
"share": "Teilen",
"share_user": "%s teilen",
"share_post": "Beitrag teilen",
@ -110,26 +91,13 @@
"block_domain": "%s blockieren",
"unblock_domain": "Blockierung von %s aufheben",
"settings": "Einstellungen",
"delete": "Löschen",
"translate_post": {
"title": "Von %s übersetzen",
"unknown_language": "Unbekannt"
},
"edit_post": "Bearbeiten",
"bookmark": "Lesezeichen",
"remove_bookmark": "Lesezeichen entfernen",
"follow": "%s folgen",
"unfollow": "%s entfolgen"
"delete": "Löschen"
},
"tabs": {
"home": "Startseite",
"search_and_explore": "Suchen und Entdecken",
"notifications": "Mitteilungen",
"profile": "Profil",
"a11y": {
"search": "Suchen",
"explore": "Entdecken"
}
"search": "Suche",
"notification": "Benachrichtigungen",
"profile": "Profil"
},
"keyboard": {
"common": {
@ -164,8 +132,6 @@
"sensitive_content": "NSFW-Inhalt",
"media_content_warning": "Tippe irgendwo zum Anzeigen",
"tap_to_reveal": "Zum Anzeigen tippen",
"load_embed": "Eingebettetes laden",
"link_via_user": "%s via %s",
"poll": {
"vote": "Abstimmen",
"closed": "Beendet"
@ -173,8 +139,8 @@
"meta_entity": {
"url": "Link: %s",
"hashtag": "Hashtag: %s",
"mention": "Profil anzeigen: %s",
"email": "E-Mail-Adresse: %s"
"mention": "Show Profile: %s",
"email": "Email address: %s"
},
"actions": {
"reply": "Antworten",
@ -186,13 +152,8 @@
"hide": "Verstecken",
"show_image": "Bild anzeigen",
"show_gif": "GIF anzeigen",
"show_video_player": "Filmwiedergabe anzeigen",
"share_link_in_post": "Link im Beitrag teilen",
"tap_then_hold_to_show_menu": "Halte gedrückt um das Menü anzuzeigen",
"a11y_labels": {
"reblog": "Teilen",
"unreblog": "Nicht mehr teilen"
}
"show_video_player": "Zeige Video-Player",
"tap_then_hold_to_show_menu": "Halte gedrückt um das Menü anzuzeigen"
},
"tag": {
"url": "URL",
@ -204,55 +165,30 @@
},
"visibility": {
"unlisted": "Jeder kann diesen Post sehen, aber nicht in der öffentlichen Timeline zeigen.",
"private": "Nur die, die dem Autor folgen, können diesen Beitrag sehen.",
"private_from_me": "Nur die, die mir folgen, können diesen Beitrag sehen.",
"private": "Nur Follower des Authors können diesen Beitrag sehen.",
"private_from_me": "Nur meine Follower können diesen Beitrag sehen.",
"direct": "Nur erwähnte Benutzer können diesen Beitrag sehen."
},
"translation": {
"translated_from": "Übersetzt von %s mit %s",
"unknown_language": "Unbekannt",
"unknown_provider": "Unbekannt",
"show_original": "Original anzeigen"
},
"media": {
"accessibility_label": "%s, Anhang %d von %d",
"expand_image_hint": "Erweitert das Bild. Doppeltippen und halten um Aktionen anzuzeigen.",
"expand_gif_hint": "Erweitert das GIF. Doppeltippen und halten um Aktionen anzuzeigen.",
"expand_video_hint": "Zeigt die Filmwiedergabe. Doppeltippen und halten um Aktionen anzuzeigen."
},
"posted_via_application": "%s via %s",
"buttons": {
"reblogs_title": "Geteilte Beiträge",
"favorites_title": "Gefällt",
"edit_history_title": "Verlauf",
"edit_history_detail": "Letzte Änderung %s"
},
"edited_at_timestamp_prefix": "Bearbeitet %s",
"edit_history": {
"title": "Verlauf",
"original_post": "Originalstatus · %s"
}
},
"friendship": {
"follow": "Folgen",
"following": "Gefolgt",
"following": "Folge Ich",
"request": "Anfragen",
"pending": "In Warteschlange",
"block": "Blockieren",
"block_user": "%s blockieren",
"block_domain": "Domain %s sperren",
"block_domain": "%s blockieren",
"unblock": "Blockierung aufheben",
"unblock_user": "Blockierung von %s aufheben",
"blocked": "Blockiert",
"domain_blocked": "Domain gesperrt",
"mute": "Stummschalten",
"mute_user": "%s stummschalten",
"unmute": "Nicht mehr stummschalten",
"unmute_user": "%s nicht mehr stummschalten",
"muted": "Stummgeschaltet",
"edit_info": "Information bearbeiten",
"show_reblogs": "Teilen anzeigen",
"hide_reblogs": "Teilen ausblenden"
"show_reblogs": "Reblogs anzeigen",
"hide_reblogs": "Reblogs ausblenden"
},
"timeline": {
"filtered": "Gefiltert",
@ -261,7 +197,7 @@
},
"loader": {
"load_missing_posts": "Fehlende Beiträge laden",
"loading_missing_posts": "Fehlende Beiträge werden geladen …",
"loading_missing_posts": "Lade fehlende Beiträge...",
"show_more_replies": "Weitere Antworten anzeigen"
},
"header": {
@ -274,36 +210,13 @@
"user_suspended_warning": "Das Konto von %s wurde gesperrt."
}
}
},
"user_list": {
"no_verified_link": "Kein bestätigter Link",
"followers_count": "%@ Follower"
}
},
"scene": {
"welcome": {
"log_in": "Anmelden",
"learn_more": "Mehr erfahren",
"join_default_server": "%@ beitreten",
"pick_server": "Einen anderen Server auswählen",
"separator": {
"or": "oder"
},
"education": {
"mastodon": {
"title": "Willkommen bei Mastodon!",
"description": "Mastodon ist ein dezentrales, soziales Netzwerk. Das bedeutet, dass es nicht von einem einzigen Unternehmen kontrolliert wird. Das Netzwerk besteht aus unabhängig voneinander betriebenen Servern, die miteinander verbunden sind."
},
"servers": {
"title": "Was sind Server?",
"description": "Jedes Mastodon-Konto wird auf einem Server gehostet. Jeder Server hat dabei seine eigenen Werte, Regeln und Administrator*innen. Aber egal, für welchen Server Du Dich entscheidest: Du kannst mit Leuten von anderen Servern interagieren und ihnen folgen."
},
"a11y": {
"what_is_mastodon": {
"title": "Was ist Mastodon?"
}
}
}
"slogan": "Soziale Netzwerke wieder in deinen Händen.",
"get_started": "Registrieren",
"log_in": "Anmelden"
},
"login": {
"title": "Willkommen zurück",
@ -313,10 +226,9 @@
}
},
"server_picker": {
"title": "Server auswählen",
"title": "Wähle einen Server,\nbeliebigen Server.",
"subtitle": "Wähle einen Server basierend auf deinen Interessen oder deiner Region oder einfach einen allgemeinen. Du kannst trotzdem mit jedem interagieren, egal auf welchem Server.",
"button": {
"language": "Sprache",
"signup_speed": "Registrierungsprozess",
"category": {
"all": "Alle",
"all_accessiblity_description": "Kategorie: Alle",
@ -345,44 +257,21 @@
"search_servers_or_enter_url": "Suche nach einer Community oder gib eine URL ein"
},
"empty_state": {
"finding_servers": "Verfügbare Server werden gesucht",
"finding_servers": "Verfügbare Server werden gesucht...",
"bad_network": "Beim Laden der Daten ist etwas schief gelaufen. Überprüfe deine Internetverbindung.",
"no_results": "Keine Ergebnisse"
},
"signup_speed": {
"all": "Alle",
"instant": "Sofort",
"manually_reviewed": "Manuelle Überprüfung"
},
"language": {
"all": "Alle Sprachen"
},
"search": {
"placeholder": "Server oder URL eingeben"
},
"no_server_selected_hint": "Wenn Sie fortfahren, ohne eine Auswahl zu treffen, wird ein Server auf der Grundlage Ihrer Sprache ausgewählt."
},
"privacy": {
"title": "Datenschutz",
"description": "Obwohl die Mastodon-App keine Daten sammelt, kann der Server, über den Sie sich anmelden, eine andere Richtlinie haben. Nehmen Sie sich eine Minute Zeit, um die Datenschutzrichtlinie der Mastodon-App und die Datenschutzrichtlinie Ihres Servers zu lesen und zu akzeptieren.",
"policy": {
"ios": "Datenschutzerklärung - Mastodon für iOS",
"server": "Datenschutzerklärung - %s"
},
"button": {
"confirm": "Ich stimme zu"
}
},
"register": {
"title": "Konto erstellen",
"title": "Erzähle uns von dir.",
"lets_get_you_set_up_on_domain": "Okay, lass uns mit %s anfangen",
"input": {
"avatar": {
"delete": "Löschen"
},
"username": {
"placeholder": "Benutzername",
"duplicate_prompt": "Dieser Benutzername ist vergeben.",
"suggestion": "%@_ist_super"
"duplicate_prompt": "Dieser Benutzername ist vergeben."
},
"display_name": {
"placeholder": "Anzeigename"
@ -392,7 +281,6 @@
},
"password": {
"placeholder": "Passwort",
"confirmation_placeholder": "Passwort wiederholen",
"require": "Anforderungen an dein Passwort:",
"character_limit": "8 Zeichen",
"accessibility": {
@ -417,7 +305,7 @@
"reason": {
"blocked": "%s verwendet einen nicht erlaubten E-Mail-Anbieter",
"unreachable": "%s scheint nicht zu existieren",
"taken": "%s ist leider schon vergeben. Wie wäre es mit:",
"taken": "%s wird bereits verwendet",
"reserved": "%s ist ein reserviertes Schlüsselwort",
"accepted": "%s muss akzeptiert werden",
"blank": "%s ist erforderlich",
@ -435,37 +323,33 @@
}
},
"server_rules": {
"title": "Server-Regeln",
"subtitle": "Solltest du fortfahren, erklärst du dich mit den Serverregeln, die die Moderator*innen von **%s** aufgestellt haben und durchsetzen werden, einverstanden.",
"title": "Einige Grundregeln.",
"subtitle": "Diese Regeln werden von den Administratoren von %s festgelegt.",
"prompt": "Wenn du fortfährst, unterliegst du den Nutzungsbedingungen und den Datenschutzrichtlinien für %s.",
"terms_of_service": "Nutzungsbedingungen",
"privacy_policy": "Datenschutzerklärung",
"button": {
"confirm": "Ich stimme zu",
"disagree": "Ablehnen"
"confirm": "Ich stimme zu"
}
},
"confirm_email": {
"title": "Überprüfe deinen Posteingang",
"tap_the_link_we_emailed_to_you_to_verify_your_account": "Bitte klicke auf den Link, den wir an %@ geschickt haben, um dich zu verifizieren. Wir warten bis dahin einfach hier.",
"title": "Noch eine letzte Sache.",
"subtitle": "Schaue kurz in dein E-Mail-Postfach und tippe den Link an, den wir dir gesendet haben.",
"tap_the_link_we_emailed_to_you_to_verify_your_account": "Schaue kurz in dein E-Mail-Postfach und tippe den Link an, den wir dir gesendet haben",
"button": {
"open_email_app": "E-Mail-App öffnen",
"resend": "Erneut senden"
},
"dont_receive_email": {
"title": "Check deine Emails",
"title": "Bitte überprüfe deine E-Mails",
"description": "Überprüfe, ob deine E-Mail-Adresse korrekt ist und sieh im Spam-Ordner nach, falls du es noch nicht getan hast.",
"resend_email": "E-Mail erneut versenden"
},
"open_email_app": {
"title": "Check dein Emailpostfach.",
"title": "Überprüfe deinen Posteingang.",
"description": "Wir haben dir gerade eine E-Mail geschickt. Überprüfe deinen Spam-Ordner, falls du es noch nicht getan hast.",
"mail": "E-Mail",
"mail": "Mail",
"open_email_client": "E-Mail-Client öffnen"
},
"didnt_get_link": {
"prefix": "Kein Link angekommen?",
"resend_in": "Erneut senden (%@)",
"resend_now": "Erneut senden."
}
},
"home_timeline": {
@ -474,22 +358,21 @@
"offline": "Offline",
"new_posts": "Neue Beiträge anzeigen",
"published": "Veröffentlicht!",
"Publishing": "Beitrag wird veröffentlicht",
"Publishing": "Beitrag wird veröffentlicht...",
"accessibility": {
"logo_label": "Mastodon",
"logo_label": "Logo-Button",
"logo_hint": "Zum Scrollen nach oben tippen und zum vorherigen Ort erneut tippen"
}
}
},
"suggestion_account": {
"title": "Beliebt auf Mastodon",
"follow_all": "Allen folgen"
"title": "Finde Personen zum Folgen",
"follow_explain": "Wenn du jemandem folgst, dann siehst du deren Beiträge in deinem Home-Feed."
},
"compose": {
"title": {
"new_post": "Neuer Beitrag",
"new_reply": "Neue Antwort",
"edit_post": "Beitrag bearbeiten"
"new_reply": "Neue Antwort"
},
"media_selection": {
"camera": "Foto aufnehmen",
@ -503,17 +386,16 @@
"photo": "Foto",
"video": "Video",
"attachment_broken": "Dieses %s scheint defekt zu sein und\nkann nicht auf Mastodon hochgeladen werden.",
"description_photo": "Für Menschen mit Sehbehinderung beschreiben",
"description_video": "Für Menschen mit Sehbehinderung beschreiben",
"description_photo": "Für Menschen mit Sehbehinderung beschreiben...",
"description_video": "Für Menschen mit Sehbehinderung beschreiben...",
"load_failed": "Laden fehlgeschlagen",
"upload_failed": "Upload fehlgeschlagen",
"can_not_recognize_this_media_attachment": "Medienanhang wurde nicht erkannt",
"attachment_too_large": "Anhang zu groß",
"compressing_state": "wird komprimiert …",
"server_processing_state": "Serververarbeitung"
"compressing_state": "Komprimieren...",
"server_processing_state": "Serververarbeitung..."
},
"poll": {
"title": "Umfrage",
"duration_time": "Dauer: %s",
"thirty_minutes": "30 Minuten",
"one_hour": "1 Stunde",
@ -523,14 +405,10 @@
"seven_days": "7 Tage",
"option_number": "Auswahlmöglichkeit %ld",
"the_poll_is_invalid": "Die Umfrage ist ungültig",
"the_poll_has_empty_option": "Die Umfrage hat eine leere Option",
"add_option": "Option hinzufügen",
"remove_option": "Option entfernen",
"move_up": "Nach oben",
"move_down": "Nach unten"
"the_poll_has_empty_option": "Die Umfrage hat eine leere Option"
},
"content_warning": {
"placeholder": "Hier eine Inhaltswarnung schreiben …"
"placeholder": "Schreibe eine Inhaltswarnung hier..."
},
"visibility": {
"public": "Öffentlich",
@ -549,8 +427,8 @@
"enable_content_warning": "Inhaltswarnung einschalten",
"disable_content_warning": "Inhaltswarnung ausschalten",
"post_visibility_menu": "Sichtbarkeitsmenü",
"post_options": "Beitragsoptionen",
"posting_as": "Veröffentlichen als %s"
"post_options": "Post Options",
"posting_as": "Posting as %s"
},
"keyboard": {
"discard_post": "Beitrag verwerfen",
@ -559,12 +437,6 @@
"toggle_content_warning": "Inhaltswarnung umschalten",
"append_attachment_entry": "Anhang hinzufügen - %s",
"select_visibility_entry": "Sichtbarkeit auswählen - %s"
},
"language": {
"title": "Beitragssprache",
"suggested": "Empfohlen",
"recent": "Kürzlich",
"other": "Andere Sprache…"
}
},
"profile": {
@ -572,16 +444,11 @@
"follows_you": "Folgt dir"
},
"dashboard": {
"my_posts": "Beiträge",
"my_following": "folge ich",
"my_followers": "Follower",
"other_posts": "Beiträge",
"other_following": "folge ich",
"other_followers": "Followers",
"familiar_followers": "mutuals"
"posts": "Beiträge",
"following": "Gefolgte",
"followers": "Folgende"
},
"fields": {
"joined": "Beigetreten",
"add_row": "Zeile hinzufügen",
"placeholder": {
"label": "Bezeichnung",
@ -617,20 +484,12 @@
"message": "Bestätige %s zu entsperren"
},
"confirm_show_reblogs": {
"title": "Teilen anzeigen",
"message": "Bestätigen, um Teilen anzuzeigen"
"title": "Reblogs anzeigen",
"message": "Bestätigen um Reblogs anzuzeigen"
},
"confirm_hide_reblogs": {
"title": "Teilen ausblenden",
"message": "Bestätigen, um Teilen auszublenden"
},
"confirm_block_domain": {
"title": "Domain sperren",
"message": "Bestätigen, um die Domain %s zu sperren"
},
"confirm_unblock_domain": {
"title": "Domain entsperren",
"message": "Bestätigen, um die Sperre der Domäne %s aufzuheben"
"title": "Reblogs ausblenden",
"message": "Confirm to hide reblogs"
}
},
"accessibility": {
@ -641,15 +500,15 @@
}
},
"follower": {
"title": "Folgende",
"footer": "Folgende, die nicht auf deinem Server registriert sind, werden nicht angezeigt."
"title": "Follower",
"footer": "Folger, die nicht auf deinem Server registriert sind, werden nicht angezeigt."
},
"following": {
"title": "Gefolgte",
"title": "Folgende",
"footer": "Gefolgte, die nicht auf deinem Server registriert sind, werden nicht angezeigt."
},
"familiarFollowers": {
"title": "Folgende, die du kennst",
"title": "Follower, die dir bekannt vorkommen",
"followed_by_names": "Gefolgt von %s"
},
"favorited_by": {
@ -673,25 +532,21 @@
},
"accounts": {
"title": "Konten, die dir gefallen könnten",
"description": "Vielleicht gefallen dir diese Konten",
"description": "Vielleicht gefallen dir diese Benutzer",
"follow": "Folgen"
}
},
"searching": {
"posts": "Beiträge passend zu \"%s\"",
"people": "Profile passend zu \"%s\"",
"profile": "Gehe zu @%s@%s",
"url": "URL in Mastodon öffnen",
"hashtag": "Wechseln zu #%s",
"no_user": {
"title": "Kein Benutzerkonto gefunden",
"message": "Es gibt kein Benutzerkonto „%s” auf %s"
"segment": {
"all": "Alles",
"people": "Personen",
"hashtags": "Hashtags",
"posts": "Beiträge"
},
"empty_state": {
"no_results": "Keine Ergebnisse"
},
"recent_search": "Zuletzt gesucht",
"clear_all": "Alles löschen",
"clear": "Zurücksetzen"
}
},
@ -706,7 +561,7 @@
"intro": "Dies sind die Beiträge, die in deiner Umgebung auf Mastodon beliebter werden."
},
"favorite": {
"title": "Gefällt"
"title": "Deine Favoriten"
},
"notification": {
"title": {
@ -737,79 +592,60 @@
"title": "Beitrag von %s"
},
"settings": {
"overview": {
"title": "Einstellungen",
"general": "Allgemein",
"notifications": "Benachrichtigungen",
"support_mastodon": "Mastodon unterstützen",
"about_mastodon": "Über Mastodon",
"server_details": "Serverdetails",
"logout": "%@ abmelden"
},
"about_mastodon": {
"title": "Über",
"more_settings": "Noch mehr Einstellungen",
"contribute_to_mastodon": "Zu Mastodon beitragen",
"privacy_policy": "Datenschutzerklärung",
"clear_media_storage": "Medienspeicher löschen"
},
"server_details": {
"about": "Über",
"rules": "Regeln",
"about_instance": {
"title": "Administrator*in",
"message_admin": "Administrator anschreiben",
"legal_notice": "Rechtliches"
}
},
"general": {
"title": "Allgemein",
"title": "Einstellungen",
"section": {
"appearance": {
"section_title": "Farbschema",
"dark": "Dunkel",
"light": "Hell",
"system": "Einstellungen des Geräts übernehmen"
"title": "Darstellung",
"automatic": "Automatisch",
"light": "Immer hell",
"dark": "Immer dunkel"
},
"ask_before": {
"section_title": "Aktionen abfragen…",
"posting_without_alt_text": "Posten ohne Alt-Text",
"unfollowing_someone": "Jemanden nicht mehr folgen",
"boosting_a_post": "Einen Beitrag teilen",
"deleting_a_post": "Einen Beitrag löschen"
"look_and_feel": {
"title": "Erscheinungsbild",
"use_system": "Systemeinstellung benutzen",
"really_dark": "Wirklich dunkel",
"sorta_dark": "Ziemlich dunkel",
"light": "Hell"
},
"design": {
"section_title": "Design",
"show_animations": "Animierte Profilbilder und Emoji abspielen"
"notifications": {
"title": "Benachrichtigungen",
"favorites": "Meinen Beitrag favorisiert",
"follows": "Mir folgt",
"boosts": "Meinen Beitrag teilt",
"mentions": "Mich erwähnt",
"trigger": {
"anyone": "jeder",
"follower": "ein Folgender",
"follow": "ein von mir Gefolgter",
"noone": "niemand",
"title": "Benachrichtige mich, wenn"
}
},
"language": {
"section_title": "Sprache",
"default_post_language": "Standard-Beitragssprache"
"preference": {
"title": "Präferenzen",
"true_black_dark_mode": "Vollständig dunkler Dunkelmodus",
"disable_avatar_animation": "Animierte Profilbilder deaktivieren",
"disable_emoji_animation": "Animierte Emojis deaktivieren",
"using_default_browser": "Standardbrowser zum Öffnen von Links verwenden",
"open_links_in_mastodon": "Links in Mastodon öffnen"
},
"links": {
"section_title": "Links",
"open_in_mastodon": "In Mastodon öffnen",
"open_in_browser": "Im Browser öffnen"
"boring_zone": {
"title": "Der langweilige Bereich",
"account_settings": "Kontoeinstellungen",
"terms": "Allgemeine Geschäftsbedingungen",
"privacy": "Datenschutzerklärung"
},
"spicy_zone": {
"title": "Der Gefährliche Bereich",
"clear": "Medien-Cache leeren",
"signout": "Abmelden"
}
},
"notifications": {
"title": "Mitteilungen",
"policy": {
"title": "Mitteilungen erhalten von",
"anyone": "Jeder",
"followers": "Leute, die dir folgen",
"follow": "Leute, denen ich folge",
"noone": "Niemand"
},
"alert": {
"mentions_and_replies": "Erwähnungen und Antworten",
"boosts": "Geteilte Beiträge",
"favorites": "Favoriten",
"new_followers": "Neue Follower"
},
"disabled": {
"notification_hint": "Schalte Benachrichtigungen in den Geräteeinstellungen ein, um Aktualisierungen von deinem Sperrbildschirm aus zu sehen.",
"go_to_settings": "Gehe zu den Benachrichtigungseinstellungen"
}
"footer": {
"mastodon_description": "Mastodon ist quelloffene Software. Du kannst auf GitHub unter %s (%s) Probleme melden"
},
"keyboard": {
"close_settings_window": "Einstellungsfenster schließen"
}
},
"report": {
@ -879,67 +715,13 @@
"dismiss_account_switcher": "Dialog zum Wechseln des Kontos schließen",
"add_account": "Konto hinzufügen"
},
"wizard": {
"new_in_mastodon": "Neu in Mastodon",
"multiple_account_switch_intro_description": "Wechsel zwischen mehreren Konten durch Drücken der Profil-Schaltfläche.",
"accessibility_hint": "Doppeltippen, um diesen Assistenten zu schließen"
},
"bookmark": {
"title": "Lesezeichen"
},
"followed_tags": {
"title": "Gefolgte Hashtags",
"header": {
"posts": "Beiträge",
"participants": "Teilnehmer*innen",
"posts_today": "Beiträge heute"
},
"actions": {
"follow": "Folgen",
"unfollow": "Entfolgen"
}
}
},
"extension": {
"open_in": {
"invalid_link_error": "Dies scheint kein gültiger Mastodon-Link zu sein."
}
},
"widget": {
"common": {
"unsupported_widget_family": "Entschuldigung, aber diese Widget-Größe wird nicht unterstützt.",
"user_not_logged_in": "Bitte öffne Mastodon und melde dich mit einem Konto an."
},
"followers_count": {
"configuration_display_name": "Follower",
"configuration_description": "Anzahl der Follower anzeigen.",
"title": "FOLLOWER",
"followers_today": "%s Follower heute"
},
"multiple_followers": {
"configuration_display_name": "Mehrere Follower",
"configuration_description": "Anzahl der Follower für mehrere Konten anzeigen.",
"mock_user": {
"display_name": "Ein weiterer Follower",
"account_name": "weiterer@follower.social"
}
},
"latest_followers": {
"configuration_display_name": "Neueste Follower",
"configuration_description": "Aktuelle Follower anzeigen.",
"title": "Neueste Follower",
"last_update": "Letzte Aktualisierung: %s"
},
"hashtag": {
"configuration": {
"display_name": "Hashtag",
"description": "Zeigt einen aktuellen Beitrag mit dem ausgewählten Hashtag."
},
"not_found": {
"account_name": "Eugen Rochko",
"account": "@johnMastodon@no-such.account",
"content": "Sorry, we couldnt find any posts with the hashtag <a>#%@</a>. Please try a <a>#DifferentHashtag</a> or check the widget settings."
},
"placeholder": {
"account_name": "John Mastodon",
"account": "@johnMastodon@no-such.account",
"content": "This is how a post with a <a>#hashtag</a> would look. Pick whichever <a>#hashtag</a> you want in the widget settings."
}
}
}
}

View File

@ -1,481 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>a11y.plural.count.unread.notification</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@notification_count_unread_notification@</string>
<key>notification_count_unread_notification</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 μη αναγνωσμένη ειδοποίηση</string>
<key>other</key>
<string>%ld μη αναγνωσμένες ειδοποιήσεις</string>
</dict>
</dict>
<key>a11y.plural.count.input_limit_exceeds</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>Το όριο εισόδου υπερβαίνει το %#@character_count@</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 χαρακτήρας</string>
<key>other</key>
<string>%ld χαρακτήρες</string>
</dict>
</dict>
<key>a11y.plural.count.input_limit_remains</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>Το όριο εισόδου παραμένει %#@character_count@</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 χαρακτήρας</string>
<key>other</key>
<string>%ld χαρακτήρες</string>
</dict>
</dict>
<key>a11y.plural.count.characters_left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@character_count@</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>απομένει 1 χαρακτήρας</string>
<key>other</key>
<string>απομένουν %ld χαρακτήρες</string>
</dict>
</dict>
<key>plural.count.followed_by_and_mutual</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@names@%#@count_mutual@</string>
<key>names</key>
<dict>
<key>one</key>
<string></string>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>other</key>
<string></string>
</dict>
<key>count_mutual</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>Ακολουθείται από %1$@ και έναν ακόμα κοινό</string>
<key>other</key>
<string>Ακολουθείται από %1$@, και %ld κοινούς</string>
</dict>
</dict>
<key>plural.count.metric_formatted.post</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%@ %#@post_count@</string>
<key>post_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>ανάρτηση</string>
<key>other</key>
<string>αναρτήσεις</string>
</dict>
</dict>
<key>plural.count.media</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@media_count@</string>
<key>media_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 πολυμέσο</string>
<key>other</key>
<string>%ld πολυμέσα</string>
</dict>
</dict>
<key>plural.count.post</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@post_count@</string>
<key>post_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 ανάρτηση</string>
<key>other</key>
<string>%ld αναρτήσεις</string>
</dict>
</dict>
<key>plural.count.favorite</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@favorite_count@</string>
<key>favorite_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 αγαπημένο</string>
<key>other</key>
<string>%ld αγαπημένα</string>
</dict>
</dict>
<key>plural.count.reblog</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@reblog_count@</string>
<key>reblog_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 αναδημοσίευση</string>
<key>other</key>
<string>%ld αναδημοσιεύσεις</string>
</dict>
</dict>
<key>plural.count.reblog_a11y</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@reblog_count@</string>
<key>reblog_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 αναδημοσίευση</string>
<key>other</key>
<string>%ld αναδημοσιεύσεις</string>
</dict>
</dict>
<key>plural.count.reply</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@reply_count@</string>
<key>reply_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 απάντηση</string>
<key>other</key>
<string>%ld απαντήσεις</string>
</dict>
</dict>
<key>plural.count.vote</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@vote_count@</string>
<key>vote_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 ψήφος</string>
<key>other</key>
<string>%ld ψήφοι</string>
</dict>
</dict>
<key>plural.count.voter</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@voter_count@</string>
<key>voter_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 ψηφοφόρος</string>
<key>other</key>
<string>%ld ψηφοφόροι</string>
</dict>
</dict>
<key>plural.people_talking</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_people_talking@</string>
<key>count_people_talking</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 άτομο που μιλάει</string>
<key>other</key>
<string>%ld άτομα μιλούν</string>
</dict>
</dict>
<key>plural.count.following</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_following@</string>
<key>count_following</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 ακολουθεί</string>
<key>other</key>
<string>%ld ακολουθούν</string>
</dict>
</dict>
<key>plural.count.follower</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_follower@</string>
<key>count_follower</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 ακόλουθος</string>
<key>other</key>
<string>%ld ακόλουθοι</string>
</dict>
</dict>
<key>date.year.left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_year_left@</string>
<key>count_year_left</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>Απομένει 1 χρόνος</string>
<key>other</key>
<string>Απομένουν %ld χρόνια</string>
</dict>
</dict>
<key>date.month.left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_month_left@</string>
<key>count_month_left</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>Απομένει 1 μήνας</string>
<key>other</key>
<string>Απομένουν %ld μήνες</string>
</dict>
</dict>
<key>date.day.left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_day_left@</string>
<key>count_day_left</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>Απομένει 1 ημέρα</string>
<key>other</key>
<string>απομένουν %ld ημέρες</string>
</dict>
</dict>
<key>date.hour.left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_hour_left@</string>
<key>count_hour_left</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>απομένει 1 ώρα</string>
<key>other</key>
<string>απομένουν %ld ώρες</string>
</dict>
</dict>
<key>date.minute.left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_minute_left@</string>
<key>count_minute_left</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>απομένει 1 λεπτό</string>
<key>other</key>
<string>Απομένουν %ld λεπτά</string>
</dict>
</dict>
<key>date.second.left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_second_left@</string>
<key>count_second_left</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>απομένει 1 δευτερόλεπτο</string>
<key>other</key>
<string>Απομένουν %ld δευτερόλεπτα</string>
</dict>
</dict>
<key>date.year.ago.abbr</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_year_ago_abbr@</string>
<key>count_year_ago_abbr</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1χρ πριν</string>
<key>other</key>
<string>%ldχρ πριν</string>
</dict>
</dict>
<key>date.month.ago.abbr</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_month_ago_abbr@</string>
<key>count_month_ago_abbr</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1μην πριν</string>
<key>other</key>
<string>%ldμην πριν</string>
</dict>
</dict>
<key>date.day.ago.abbr</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_day_ago_abbr@</string>
<key>count_day_ago_abbr</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>%1ημ πριν</string>
<key>other</key>
<string>%ldημ πριν</string>
</dict>
</dict>
<key>date.hour.ago.abbr</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_hour_ago_abbr@</string>
<key>count_hour_ago_abbr</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1ώ πριν</string>
<key>other</key>
<string>%ldώ πριν</string>
</dict>
</dict>
<key>date.minute.ago.abbr</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_minute_ago_abbr@</string>
<key>count_minute_ago_abbr</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1λ πριν</string>
<key>other</key>
<string>%ldλ πριν</string>
</dict>
</dict>
<key>date.second.ago.abbr</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_second_ago_abbr@</string>
<key>count_second_ago_abbr</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1δλ πριν</string>
<key>other</key>
<string>%ldδλ πριν</string>
</dict>
</dict>
</dict>
</plist>

View File

@ -1,945 +0,0 @@
{
"common": {
"alerts": {
"common": {
"please_try_again": "Παρακαλώ προσπάθησε ξανά.",
"please_try_again_later": "Παρακαλώ δοκίμασε ξανά αργότερα."
},
"sign_up_failure": {
"title": "Αποτυχία Εγγραφής"
},
"server_error": {
"title": "Σφάλμα Διακομιστή"
},
"vote_failure": {
"title": "Αποτυχία Ψήφου",
"poll_ended": "Η δημοσκόπηση έληξε"
},
"publish_post_failure": {
"title": "Αποτυχία Ανάρτησης",
"message": "Αποτυχία δημοσίευσης της ανάρτησης.\nΠαρακαλούμε έλεγξε τη σύνδεσή σου στο διαδίκτυο.",
"attachments_message": {
"video_attach_with_photo": "Δε γίνεται να προσθέσεις βίντεο σε ανάρτηση που ήδη περιέχει εικόνες.",
"more_than_one_video": "Δεν γίνεται να επισυνάψεις περισσότερα από 1 βίντεο."
}
},
"edit_profile_failure": {
"title": "Σφάλμα Επεξεργασίας Προφίλ",
"message": "Αδυναμία επεξεργασίας προφίλ. Παρακαλώ δοκίμασε ξανά."
},
"sign_out": {
"title": "Αποσύνδεση",
"message": "Είσαι βέβαιος ότι θες να αποσυνδεθείς;",
"confirm": "Αποσύνδεση"
},
"block_domain": {
"title": "Σίγουρα θες να αποκλείσεις ολόκληρο τον %s; Συνήθως μερικοί συγκεκριμένοι αποκλεισμοί ή σιγάσεις επαρκούν και προτιμούνται. Δε θα βλέπεις περιεχόμενο από αυτό τον τομέα. Όσους ακόλουθους έχεις σε αυτόν τον τομέα θα αφαιρεθούν.",
"block_entire_domain": "Αποκλεισμός Τομέα"
},
"save_photo_failure": {
"title": "Αποτυχία Αποθήκευσης Φωτογραφίας",
"message": "Παρακαλώ ενεργοποίησε την άδεια πρόσβασης στη βιβλιοθήκη φωτογραφιών για να αποθηκεύσεις τη φωτογραφία."
},
"delete_post": {
"title": "Διαγραφή Ανάρτησης",
"message": "Είσαι βέβαιος ότι θες να διαγράψεις την ανάρτηση;"
},
"clean_cache": {
"title": "Εκκαθάριση Προσωρινής Μνήμης",
"message": "Επιτυχής καθαρισμός %s προσωρινής μνήμης."
},
"translation_failed": {
"title": "Σημείωση",
"message": "Η μετάφραση απέτυχε. Ίσως ο διαχειριστής δεν έχει ενεργοποιήσει μεταφράσεις σε αυτόν τον διακομιστή ή αυτός ο διακομιστής εκτελεί μια παλαιότερη έκδοση του Mastodon όπου οι μεταφράσεις δεν υποστηρίζονται ακόμα.",
"button": "ΟΚ"
},
"media_missing_alt_text": {
"title": "Το πολυμέσο Δεν Έχει Εναλλακτικό Κείμενο",
"message": "%d από τις εικόνες σου δεν έχει εναλλακτικό κείμενο. Ανάρτηση ούτως ή άλλως;",
"cancel": "Άκυρο",
"post": "Ανάρτηση"
},
"boost_a_post": {
"title_boost": "Ενίσχυση Ανάρτησης;",
"title_unboost": "Αναίρεση Ενίσχυσης Ανάρτησης;",
"cancel": "Άκυρο",
"boost": "Ενίσχυση",
"unboost": "Ακύρωση ενίσχυσης"
},
"unfollow_user": {
"title": "Άρση ακολούθησης του %@;",
"cancel": "Άκυρο",
"unfollow": "Άρση ακολούθησης"
}
},
"controls": {
"actions": {
"back": "Πίσω",
"next": "Επόμενο",
"previous": "Προηγούμενο",
"open": "Άνοιγμα",
"add": "Προσθήκη",
"remove": "Αφαίρεση",
"edit": "Επεξεργασία",
"save": "Αποθήκευση",
"ok": "ΟΚ",
"done": "Έγινε",
"confirm": "Επιβεβαίωση",
"continue": "Συνέχεια",
"compose": "Σύνταξη",
"cancel": "Άκυρο",
"discard": "Απόρριψη",
"try_again": "Προσπάθησε ξανά",
"take_photo": "Λήψη Φωτογραφίας",
"save_photo": "Αποθήκευση Φωτογραφίας",
"copy_photo": "Αντιγραφή Φωτογραφίας",
"sign_in": "Σύνδεση",
"see_more": "Δες Περισσότερα",
"preview": "Προεπισκόπηση",
"copy": "Αντιγραφή",
"share": "Κοινοποίηση",
"share_user": "Κοινοποίηση %s",
"share_post": "Κοινοποίηση Ανάρτησης",
"open_in_safari": "Άνοιγμα στο Safari",
"open_in_browser": "Άνοιγμα στον Περιηγητή",
"find_people": "Βρες άτομα για να ακολουθήσεις",
"manually_search": "Μη αυτόματη αναζήτηση",
"skip": "Παράλειψη",
"reply": "Απάντηση",
"report_user": "Αναφορά %s",
"block_domain": "Αποκλεισμός %s",
"unblock_domain": "Άρση αποκλεισμού %s",
"settings": "Ρυθμίσεις",
"delete": "Διαγραφή",
"translate_post": {
"title": "Μετάφραση από %s",
"unknown_language": "Άγνωστο"
},
"edit_post": "Επεξεργασία",
"bookmark": "Σελιδοδείκτης",
"remove_bookmark": "Αφαίρεση σελιδοδείκτη",
"follow": "Ακολούθησε %s",
"unfollow": "Κατάργηση ακολούθησης του %s"
},
"tabs": {
"home": "Αρχική",
"search_and_explore": "Αναζήτηση και Εξερεύνηση",
"notifications": "Ειδοποιήσεις",
"profile": "Προφίλ",
"a11y": {
"search": "Αναζήτηση",
"explore": "Εξερεύνηση"
}
},
"keyboard": {
"common": {
"switch_to_tab": "Εναλλαγή σε %s",
"compose_new_post": "Σύνταξη Νέας Ανάρτησης",
"show_favorites": "Εμφάνιση Αγαπημένων",
"open_settings": "Άνοιγμα Ρυθμίσεων"
},
"timeline": {
"previous_status": "Προηγούμενη Ανάρτηση",
"next_status": "Επόμενη Ανάρτηση",
"open_status": "Άνοιγμα Ανάρτησης",
"open_author_profile": "Άνοιγμα Προφίλ Συντάκτη",
"open_reblogger_profile": "Άνοιγμα Προφίλ Του Reblogger",
"reply_status": "Απάντηση στην Ανάρτηση",
"toggle_reblog": "Εναλλαγή Αναδημοσίευσης στην Ανάρτηση",
"toggle_favorite": "Εναλλαγή Αγαπημένου στην Ανάρτηση",
"toggle_content_warning": "Εναλλαγή Προειδοποίησης Περιεχομένου",
"preview_image": "Προεπισκόπηση Εικόνας"
},
"segmented_control": {
"previous_section": "Προηγούμενη Ενότητα",
"next_section": "Επόμενη Ενότητα"
}
},
"status": {
"user_reblogged": "%s αναδημοσίευσε",
"user_replied_to": "Απάντησε στον χρήστη %s",
"show_post": "Εμφάνιση Ανάρτησης",
"show_user_profile": "Εμφάνιση προφίλ χρήστη",
"content_warning": "Προειδοποίηση Περιεχομένου",
"sensitive_content": "Ευαίσθητο Περιεχόμενο",
"media_content_warning": "Πάτα οπουδήποτε για εμφάνιση",
"tap_to_reveal": "Πάτα για εμφάνιση",
"load_embed": "Φόρτωση Ενσωμάτωσης",
"link_via_user": "%s μέσω %s",
"poll": {
"vote": "Ψήφισε",
"closed": "Κλειστή"
},
"meta_entity": {
"url": "Σύνδεσμος: %s",
"hashtag": "Ετικέτα: %s",
"mention": "Εμφάνιση Προφίλ: %s",
"email": "Διεύθυνση email: %s"
},
"actions": {
"reply": "Απάντηση",
"reblog": "Αναδημοσίευση",
"unreblog": "Αναίρεση αναδημοσίευσης",
"favorite": "Αγαπημένο",
"unfavorite": "Αφαίρεση από αγαπημένα",
"menu": "Μενού",
"hide": "Απόκρυψη",
"show_image": "Εμφάνιση εικόνας",
"show_gif": "Εμφάνιση GIF",
"show_video_player": "Εμφάνιση προγράμματος αναπαραγωγής βίντεο",
"share_link_in_post": "Κοινοποίηση Συνδέσμου στην Ανάρτηση",
"tap_then_hold_to_show_menu": "Πάτα παρατεταμένα για εμφάνιση μενού",
"a11y_labels": {
"reblog": "Αναδημοσίευση",
"unreblog": "Αναίρεση αναδημοσίευσης"
}
},
"tag": {
"url": "URL",
"mention": "Επισήμανση",
"link": "Σύνδεσμος",
"hashtag": "Ετικέτα",
"email": "Email",
"emoji": "Emoji"
},
"visibility": {
"unlisted": "Όλοι μπορούν να δουν αυτή την ανάρτηση, αλλά δεν εμφανίζεται στη δημόσια ροή.",
"private": "Μόνο οι ακόλουθοί τους μπορούν να δουν αυτή την ανάρτηση.",
"private_from_me": "Μόνο οι ακόλουθοί μου μπορούν να δουν αυτή την ανάρτηση.",
"direct": "Μόνο ο αναφερόμενος χρήστης μπορεί να δει αυτή την ανάρτηση."
},
"translation": {
"translated_from": "Μεταφράστηκε από %s χρησιμοποιώντας το %s",
"unknown_language": "Άγνωστο",
"unknown_provider": "Άγνωστο",
"show_original": "Εμφάνιση Αρχικού"
},
"media": {
"accessibility_label": "%s, συνημμένο %d από %d",
"expand_image_hint": "Επεκτείνει την εικόνα. Πάτα δύο φορές και κράτα πατημένο για εμφάνιση ενεργειών",
"expand_gif_hint": "Επεκτείνει το GIF. Πάτα δύο φορές και κράτα πατημένο για να εμφανίσεις τις ενέργειες",
"expand_video_hint": "Εμφανίζει το πρόγραμμα αναπαραγωγής βίντεο. Πάτα δύο φορές και κράτα πατημένο για να δείς τις ενέργειες"
},
"posted_via_application": "%s μέσω %s",
"buttons": {
"reblogs_title": "Αναδημοσιεύσεις",
"favorites_title": "Αγαπημένα",
"edit_history_title": "Επεξεργασία Ιστορικού",
"edit_history_detail": "Τελευταία επεξεργασία %s"
},
"edited_at_timestamp_prefix": "Επεξεργάστηκε στις %s",
"edit_history": {
"title": "Επεξεργασία Ιστορικού",
"original_post": "Αρχική Ανάρτηση · %s"
}
},
"friendship": {
"follow": "Ακολούθησε",
"following": "Ακολουθείς",
"request": "Αίτημα",
"pending": "Εκκρεμεί",
"block": "Αποκλεισμός",
"block_user": "Αποκλεισμός %s",
"block_domain": "Αποκλεισμός τομέα %s",
"unblock": "Άρση αποκλεισμού",
"unblock_user": "Άρση αποκλεισμού %s",
"blocked": "Αποκλείστηκε",
"domain_blocked": "Ο Τομέας αποκλείστηκε",
"mute": "Σίγαση",
"mute_user": "Σίγαση %s",
"unmute": "Κατάργηση σίγασης",
"unmute_user": "Κατάργηση σίγασης %s",
"muted": "Σε Σίγαση",
"edit_info": "Επεξεργασία Πληροφοριών",
"show_reblogs": "Εμφάνιση Αναδημοσιεύσεων",
"hide_reblogs": "Απόκρυψη Αναδημοσιεύσεων"
},
"timeline": {
"filtered": "Φιλτραρισμένα",
"timestamp": {
"now": "Τώρα"
},
"loader": {
"load_missing_posts": "Φόρτωση αναρτήσεων που λείπουν",
"loading_missing_posts": "Φόρτωση αναρτήσεων που λείπουν...",
"show_more_replies": "Εμφάνιση περισσότερων απαντήσεων"
},
"header": {
"no_status_found": "Δεν Βρέθηκε Ανάρτηση",
"blocking_warning": "Δεν μπορείς να δεις το προφίλ αυτού του χρήστη\nμέχρι να τον ξεμπλοκάρεις.\nΤο προφίλ σου μοιάζει έτσι και σε αυτόν.",
"user_blocking_warning": "Δεν μπορείς να δεις το προφίλ του %s\nμέχρι να τον ξεμπλοκάρεις.\nΤο προφίλ σου μοιάζει έτσι κι σ' αυτούς.",
"blocked_warning": "Δεν μπορείς να δεις το προφίλ αυτού του χρήστη\nμέχρι να σε ξεμπλοκάρει.",
"user_blocked_warning": "Δεν μπορείς να δεις το προφίλ %s\nμέχρι να σε ξεμπλοκάρουν.",
"suspended_warning": "Αυτός ο χρήστης έχει ανασταλεί.",
"user_suspended_warning": "Ο λογαριασμός του %s έχει ανασταλεί."
}
}
},
"user_list": {
"no_verified_link": "Χωρίς επαληθευμένο σύνδεσμο",
"followers_count": "%@ ακόλουθοι"
}
},
"scene": {
"welcome": {
"log_in": "Σύνδεση",
"learn_more": "Μάθε περισσότερα",
"join_default_server": "Γίνε μέλος %@",
"pick_server": "Διάλεξε άλλο διακομιστή",
"separator": {
"or": "ή"
},
"education": {
"mastodon": {
"title": "Καλώς ήρθες στο Mastodon",
"description": "Το Mastodon είναι ένα αποκεντρωμένο κοινωνικό δίκτυο που σημαίνει ότι καμία εταιρεία δεν το ελέγχει. Αποτελείται από πολλούς ανεξάρτητους διακομιστές, όλοι συνδεδεμένοι μαζί."
},
"servers": {
"title": "Τι είναι οι διακομιστές;",
"description": "Κάθε λογαριασμός Mastodon φιλοξενείται σε ένα διακομιστή - ο καθένας με τις δικές του αξίες, κανόνες και διαχειριστές. Ανεξάρτητα από το ποιον μπορεί να επιλέξεις, μπορείς να ακολουθήσεις και να αλληλεπιδράσεις με άτομα από οποιονδήποτε διακομιστή."
},
"a11y": {
"what_is_mastodon": {
"title": "Τι είναι το Mastodon;"
}
}
}
},
"login": {
"title": "Καλωσόρισες και πάλι",
"subtitle": "Συνδέσου στο διακομιστή στον οποίο δημιούργησες τον λογαριασμό σου.",
"server_search_field": {
"placeholder": "Εισαγωγή URL ή αναζήτησε τον διακομιστή σου"
}
},
"server_picker": {
"title": "Επιλογή Διακομιστή",
"button": {
"language": "Γλώσσα",
"signup_speed": "Ταχύτητα Εγγραφής",
"category": {
"all": "Όλοι",
"all_accessiblity_description": "Κατηγορία: Όλα",
"academia": "ακαδημαϊκά",
"activism": "ακτιβισμός",
"food": "φαγητό",
"furry": "γούνινο",
"games": "παιχνίδια",
"general": "γενικά",
"journalism": "δημοσιογραφία",
"lgbt": "λοατκι",
"regional": "τοπικό",
"art": "τέχνη",
"music": "μουσική",
"tech": "τεχνολογία"
},
"see_less": "Δες Λιγότερα",
"see_more": "Δες Περισσότερα"
},
"label": {
"language": "ΓΛΩΣΣΑ",
"users": "ΧΡΗΣΤΕΣ",
"category": "ΚΑΤΗΓΟΡΙΑ"
},
"input": {
"search_servers_or_enter_url": "Αναζήτησε κοινότητες ή εισήγαγε URL"
},
"empty_state": {
"finding_servers": "Εύρεση διαθέσιμων διακομιστών...",
"bad_network": "Κάτι πήγε στραβά κατά τη φόρτωση των δεδομένων. Έλεγξε τη σύνδεσή σου στο διαδίκτυο.",
"no_results": "Κανένα αποτέλεσμα"
},
"signup_speed": {
"all": "Όλες",
"instant": "Άμεση Εγγραφή",
"manually_reviewed": "Χειροκίνητη Αξιολόγηση"
},
"language": {
"all": "Όλες"
},
"search": {
"placeholder": "Αναζήτηση ονόματος ή URL"
},
"no_server_selected_hint": "Θα επιλέξουμε έναν διακομιστή με βάση τη γλώσσα σου αν συνεχίσεις χωρίς να κάνεις κάποια επιλογή."
},
"privacy": {
"title": "Απόρρητο",
"description": "Αν και η εφαρμογή Mastodon δε συλλέγει δεδομένα, ο διακομιστής που εγγράφεσαι μπορεί να έχει διαφορετική πολιτική. Πάρε ένα λεπτό για να ελέγξεις και να συμφωνήσεις με την πολιτική απορρήτου της εφαρμογής Mastodon και την πολιτική απορρήτου του διακομιστή σου.",
"policy": {
"ios": "Πολιτική Απορρήτου - Mastodon για iOS",
"server": "Πολιτική Απορρήτου - %s"
},
"button": {
"confirm": "Συμφωνώ"
}
},
"register": {
"title": "Δημιουργία Λογαριασμού",
"input": {
"avatar": {
"delete": "Διαγραφή"
},
"username": {
"placeholder": "όνομα χρήστη",
"duplicate_prompt": "Αυτό το όνομα χρήστη χρησιμοποιείται.",
"suggestion": "εκπληκτικό_%@"
},
"display_name": {
"placeholder": "εμφανιζόμενο όνομα"
},
"email": {
"placeholder": "email"
},
"password": {
"placeholder": "κωδικός πρόσβασης",
"confirmation_placeholder": "Επιβεβαίωση Κωδικού Πρόσβασης",
"require": "Ο κωδικός σου χρειάζεται τουλάχιστον:",
"character_limit": "8 χαρακτήρες",
"accessibility": {
"checked": "επιλεγμένο",
"unchecked": "μη επιλεγμένο"
},
"hint": "Ο κωδικός πρόσβασής σου χρειάζεται τουλάχιστον οκτώ χαρακτήρες"
},
"invite": {
"registration_user_invite_request": "Γιατί θέλεις να συμμετάσχεις;"
}
},
"error": {
"item": {
"username": "Όνομα χρήστη",
"email": "Email",
"password": "Κωδικός πρόσβασης",
"agreement": "Συμφωνία",
"locale": "Γλώσσα",
"reason": "Αιτιολογία"
},
"reason": {
"blocked": "%s περιέχει πάροχο μη επιτρεπόμενων email",
"unreachable": "%s δεν φαίνεται να υπάρχει",
"taken": "%s χρησιμοποιείται ήδη. Τι θα έλεγες για:",
"reserved": "%s είναι δεσμευμένη λέξη-κλειδί",
"accepted": "%s πρέπει να γίνει αποδεκτό",
"blank": "%s απαιτείται",
"invalid": "%s δεν είναι έγκυρο",
"too_long": "%s είναι πολύ μεγάλο",
"too_short": "%s είναι πολύ μικρό",
"inclusion": "%s δεν είναι υποστηριζόμενη τιμή"
},
"special": {
"username_invalid": "Το όνομα χρήστη πρέπει να περιέχει μόνο αλφαριθμητικούς χαρακτήρες και κάτω παύλες",
"username_too_long": "Το όνομα χρήστη είναι πολύ μεγάλο (δεν μπορεί να υπερβαίνει τους 30 χαρακτήρες)",
"email_invalid": "Αυτή η διεύθυνση email δεν είναι έγκυρη",
"password_too_short": "Ο κωδικός πρόσβασης είναι πολύ μικρός (πρέπει να είναι τουλάχιστον 8 χαρακτήρες)"
}
}
},
"server_rules": {
"title": "Server Rules",
"subtitle": "By continuing, you agree to follow by the following rules set and enforced by the **%s** moderators.",
"prompt": "Συνεχίζοντας, υπόκεισαι στους όρους της υπηρεσίας και της πολιτικής απορρήτου για %s.",
"terms_of_service": "όροι υπηρεσίας",
"privacy_policy": "πολιτική απορρήτου",
"button": {
"confirm": "Συμφωνώ",
"disagree": "Disagree"
}
},
"confirm_email": {
"title": "Έλεγξε τα Εισερχόμενα σου",
"tap_the_link_we_emailed_to_you_to_verify_your_account": "Πάτησε το σύνδεσμο που σού στείλαμε για να επαληθεύσεις το %@. Θα σε περιμένουμε εδώ.",
"button": {
"resend": "Επαναποστολή"
},
"dont_receive_email": {
"title": "Έλεγξε το Email σου",
"description": "Έλεγξε αν η διεύθυνση email σου είναι σωστή καθώς και τον φάκελο ανεπιθύμητης αλληλογραφίας σας αν δεν το έχεις κάνει ήδη.",
"resend_email": "Επαναποστολή Email"
},
"open_email_app": {
"title": "Έλεγξε τα Εισερχόμενα σου.",
"description": "Μόλις σου στείλαμε ένα email. Έλεγξε το φάκελο ανεπιθύμητης αλληλογραφίας αν δεν το έχεις κάνει ήδη.",
"mail": "Mail",
"open_email_client": "Άνοιγμα Πελάτη Email"
},
"didnt_get_link": {
"prefix": "Δεν έλαβες τον σύνδεσμο;",
"resend_in": "Επαναποστολή (%@)",
"resend_now": "Επαναποστολή τώρα."
}
},
"home_timeline": {
"title": "Αρχική",
"navigation_bar_state": {
"offline": "Εκτός σύνδεσης",
"new_posts": "Δες νέες αναρτήσεις",
"published": "Δημοσιεύθηκε!",
"Publishing": "Δημοσίευση ανάρτησης...",
"accessibility": {
"logo_label": "Mastodon",
"logo_hint": "Πάτα για κύλιση στην κορυφή και πάτα ξανά για προηγούμενη τοποθεσία"
}
}
},
"suggestion_account": {
"title": "Δημοφιλή στο Mastodon",
"follow_all": "Ακολούθησε τους όλους"
},
"compose": {
"title": {
"new_post": "Νέα Ανάρτηση",
"new_reply": "Νέα Απάντηση",
"edit_post": "Επεξεργασία Ανάρτησης"
},
"media_selection": {
"camera": "Λήψη Φωτογραφίας",
"photo_library": "Βιβλιοθήκη Φωτογραφιών",
"browse": "Περιήγηση"
},
"content_input_placeholder": "Πληκτρολόγησε ή επικόλλησε τί έχεις στο μυαλό σου",
"compose_action": "Δημοσίευση",
"replying_to_user": "απάντηση σε %s",
"attachment": {
"photo": "φωτογραφία",
"video": "βίντεο",
"attachment_broken": "Το %s έχει χαλάσει και δεν μπορεί να\nφορτωθεί στο Mastodon.",
"description_photo": "Περιέγραψε τη φωτογραφία για τα άτομα με προβλήματα όρασης...",
"description_video": "Περιέγραψε το βίντεο για τα άτομα με προβλήματα όρασης...",
"load_failed": "Αποτυχία Φόρτωσης",
"upload_failed": "Η Μεταφόρτωση Απέτυχε",
"can_not_recognize_this_media_attachment": "Αυτό το συνημμένο πολυμέσων δεν μπορεί να αναγνωριστεί",
"attachment_too_large": "Υπερβολικά μεγάλο συνημμένο",
"compressing_state": "Συμπίεση...",
"server_processing_state": "Επεξεργασία Διακομιστή..."
},
"poll": {
"title": "Δημοσκόπηση",
"duration_time": "Διάρκεια: %s",
"thirty_minutes": "30 λεπτά",
"one_hour": "1 Ώρα",
"six_hours": "6 Ώρες",
"one_day": "1 Ημέρα",
"three_days": "3 Ημέρες",
"seven_days": "7 Ημέρες",
"option_number": "Επιλογή %ld",
"the_poll_is_invalid": "Η δημοσκόπηση δεν είναι έγκυρη",
"the_poll_has_empty_option": "Η δημοσκόπηση έχει κενή επιλογή",
"add_option": "Προσθήκη Επιλογής",
"remove_option": "Αφαίρεση Επιλογής",
"move_up": "Μετακίνηση Πάνω",
"move_down": "Μετακίνηση Κάτω"
},
"content_warning": {
"placeholder": "Γράψε εδώ μια ακριβή προειδοποίηση..."
},
"visibility": {
"public": "Δημόσιο",
"unlisted": "Μη καταχωρημένο",
"private": "Μόνο ακόλουθοι",
"direct": "Μόνο άτομα που επισημαίνω"
},
"auto_complete": {
"space_to_add": "\"Διάστημα\" για προσθήκη"
},
"accessibility": {
"append_attachment": "Προσθήκη Συνημμένου",
"append_poll": "Προσθήκη Δημοσκ.",
"remove_poll": "Αφαίρεση Δημοσκόπησης",
"custom_emoji_picker": "Προσαρμοσμένος Επιλογέας Emoji",
"enable_content_warning": "Ενεργοποίηση Προειδοποίησης Περιεχομένου",
"disable_content_warning": "Απενεργοποίηση Προειδοποίησης Περιεχομένου",
"post_visibility_menu": "Μενού Ορατότητας Ανάρτησης",
"post_options": "Επιλογές Ανάρτησης",
"posting_as": "Ανάρτηση ως %s"
},
"keyboard": {
"discard_post": "Απόρριψη Ανάρτησης",
"publish_post": "Δημοσίευση Ανάρτησης",
"toggle_poll": "Εναλλαγή Δημοσκόπησης",
"toggle_content_warning": "Εναλλαγή Προειδοποίησης Περιεχομένου",
"append_attachment_entry": "Προσθήκη Συνημμένου - %s",
"select_visibility_entry": "Επιλογή ορατότητας - %s"
},
"language": {
"title": "Γλώσσα Ανάρτησης",
"suggested": "Προτεινόμενες",
"recent": "Πρόσφατα",
"other": "Άλλη γλώσσα…"
}
},
"profile": {
"header": {
"follows_you": "Σε Ακολουθεί"
},
"dashboard": {
"my_posts": "αναρτήσεις",
"my_following": "ακολουθείς",
"my_followers": "ακόλουθοι",
"other_posts": "αναρτήσεις",
"other_following": "ακολουθεί",
"other_followers": "ακόλουθοι",
"familiar_followers": "κοινοί"
},
"fields": {
"joined": "Έγινε μέλος",
"add_row": "Προσθήκη Γραμμής",
"placeholder": {
"label": "Ετικέτα",
"content": "Περιεχόμενο"
},
"verified": {
"short": "Επαληθεύτηκε στις %s",
"long": "Η ιδιοκτησία αυτού του συνδέσμου ελέχθηκε στις %s"
}
},
"segmented_control": {
"posts": "Αναρτήσεις",
"replies": "Απαντήσεις",
"posts_and_replies": "Αναρτήσεις και Απαντήσεις",
"media": "Πολυμέσα",
"about": "Σχετικά"
},
"relationship_action_alert": {
"confirm_mute_user": {
"title": "Σίγαση Λογαριασμού",
"message": "Επιβεβαίωσε για σίγαση %s"
},
"confirm_unmute_user": {
"title": "Άρση Σίγασης Λογαριασμού",
"message": "Επιβεβαίωσε για άρση σίγασης %s"
},
"confirm_block_user": {
"title": "Αποκλεισμός Λογαριασμού",
"message": "Επιβεβαίωση αποκλεισμού %s"
},
"confirm_unblock_user": {
"title": "Άρση Αποκλεισμού Λογαριασμού",
"message": "Επιβεβαίωση άρσης αποκλεισμού %s"
},
"confirm_show_reblogs": {
"title": "Εμφάνιση Αναδημοσιεύσεων",
"message": "Επιβεβαίωση εμφάνισης αναδημοσιεύσεων"
},
"confirm_hide_reblogs": {
"title": "Απόκρυψη Αναδημοσιεύσεων",
"message": "Επιβεβαίωση απόκρυψης αναδημοσιεύσεων"
},
"confirm_block_domain": {
"title": "Αποκλεισμός τομέα",
"message": "Επιβεβαίωση αποκλεισμού τομέα %s"
},
"confirm_unblock_domain": {
"title": "Άρση αποκλεισμού τομέα",
"message": "Επιβεβαίωση άρσης αποκλεισμού τομέα %s"
}
},
"accessibility": {
"show_avatar_image": "Εμφάνιση εικόνας avatar",
"edit_avatar_image": "Επεξεργασία εικόνας avatar",
"show_banner_image": "Εμφάνιση εικόνας banner",
"double_tap_to_open_the_list": "Διπλό πάτημα για άνοιγμα της λίστας"
}
},
"follower": {
"title": "ακόλουθος",
"footer": "Οι ακόλουθοι από άλλους διακομιστές δεν εμφανίζονται."
},
"following": {
"title": "ακολουθεί",
"footer": "Δεν εμφανίζονται ακολουθήσεις από άλλους διακομιστές."
},
"familiarFollowers": {
"title": "Ακόλουθοι που γνωρίζεις",
"followed_by_names": "Ακολουθείται από %s"
},
"favorited_by": {
"title": "Αγαπημένο Από"
},
"reblogged_by": {
"title": "Αναδημοσίευση Από"
},
"search": {
"title": "Αναζήτηση",
"search_bar": {
"placeholder": "Αναζήτησε ετικέτες και χρήστες",
"cancel": "Άκυρο"
},
"recommend": {
"button_text": "Προβολή Όλων",
"hash_tag": {
"title": "Δημοφιλή στο Mastodon",
"description": "Ετικέτες που τραβάνε την προσοχή",
"people_talking": "%s άτομα μιλάνε"
},
"accounts": {
"title": "Λογαριασμοί που μπορεί να σου αρέσουν",
"description": "Μπορεί να θες να ακολουθήσεις αυτούς τους λογαριασμούς",
"follow": "Ακολούθησε"
}
},
"searching": {
"posts": "Αναρτήσεις που ταιριάζουν με «%s»",
"people": "Άτομα που ταιριάζουν με «%s»",
"profile": "Μετάβαση στο @%s@%s",
"url": "Άνοιγμα URL στο Mastodon",
"hashtag": "Μετάβαση στο #%s",
"no_user": {
"title": "Δεν Βρέθηκε Λογαριασμός Χρήστη",
"message": "Δεν υπάρχει λογαριασμός χρήστη \"%s\" στο %s"
},
"empty_state": {
"no_results": "Κανένα αποτέλεσμα"
},
"recent_search": "Πρόσφατες αναζητήσεις",
"clear_all": "Εκκαθάριση όλων",
"clear": "Εκκαθάριση"
}
},
"discovery": {
"tabs": {
"posts": "Αναρτήσεις",
"hashtags": "Ετικέτες",
"news": "Ειδήσεις",
"community": "Κοινότητα",
"for_you": "Για Σένα"
},
"intro": "Αυτές είναι οι αναρτήσεις που κερδίζουν την προσοχή στη δική σου γωνιά του Mastodon."
},
"favorite": {
"title": "Αγαπημένα"
},
"notification": {
"title": {
"Everything": "Όλα",
"Mentions": "Επισημάνσεις"
},
"notification_description": {
"followed_you": "σε ακολούθησε",
"favorited_your_post": "σημείωσε ως αγαπημένη την ανάρτησή σου",
"reblogged_your_post": "αναδημοσίευσε την ανάρτηση σου",
"mentioned_you": "σε επισήμανε",
"request_to_follow_you": "ζήτησε να σε ακολουθήσει",
"poll_has_ended": "η δημοσκόπηση έληξε"
},
"keyobard": {
"show_everything": "Εμφάνιση Όλων",
"show_mentions": "Εμφάνιση Επισημάνσεων"
},
"follow_request": {
"accept": "Αποδοχή",
"accepted": "Αποδέχθηκε",
"reject": "απόρριψη",
"rejected": "Απορρίφθηκε"
}
},
"thread": {
"back_title": "Ανάρτηση",
"title": "Ανάρτηση από %s"
},
"settings": {
"overview": {
"title": "Ρυθμίσεις",
"general": "Γενικά",
"notifications": "Ειδοποιήσεις",
"support_mastodon": "Υποστήριξε το Mastodon",
"about_mastodon": "Σχετικά με το Mastodon",
"server_details": "Λεπτομέρειες Διακομιστή",
"logout": "Αποσύνδεση %@"
},
"about_mastodon": {
"title": "Σχετικά",
"more_settings": "Ακόμα Περισσότερες Ρυθμίσεις",
"contribute_to_mastodon": "Συνείσφερε στο Mastodon",
"privacy_policy": "Πολιτική Απορρήτου",
"clear_media_storage": "Εκκαθάριση Χώρου Αποθήκευσης Πολυμέσων"
},
"server_details": {
"about": "Σχετικά",
"rules": "Κανόνες",
"about_instance": {
"title": "Διαχειριστής",
"message_admin": "Στείλε μήνυμα σε διαχειριστή",
"legal_notice": "Μια νομική ειδοποίηση"
}
},
"general": {
"title": "Γενικά",
"appearance": {
"section_title": "Εμφάνιση",
"dark": "Σκοτεινό",
"light": "Φωτεινό",
"system": "Χρήση Εμφάνισης Συσκευής"
},
"ask_before": {
"section_title": "Ρώτησε πριν…",
"posting_without_alt_text": "Ανάρτηση χωρίς Εναλλακτικό Κείμενο",
"unfollowing_someone": "Άρση Ακολούθησης Κάποιου",
"boosting_a_post": "Ενίσχυση μιας Ανάρτησης",
"deleting_a_post": "Διαγραφή μιας Ανάρτησης"
},
"design": {
"section_title": "Σχεδίαση",
"show_animations": "Αναπαραγωγή κινούμενων Avatars και Emoji"
},
"language": {
"section_title": "Γλώσσα",
"default_post_language": "Προεπιλεγμένη Γλώσσα Ανάρτησης"
},
"links": {
"section_title": "Σύνδεσμοι",
"open_in_mastodon": "Άνοιγμα στο Mastodon",
"open_in_browser": "Άνοιγμα στον Περιηγητή"
}
},
"notifications": {
"title": "Ειδοποιήσεις",
"policy": {
"title": "Λήψη Ειδοποιήσεων από",
"anyone": "Οποιοσδήποτε",
"followers": "Άτομα που σε ακολουθούν",
"follow": "Άτομα που ακολουθείς",
"noone": "Κανένας"
},
"alert": {
"mentions_and_replies": "Αναφορές & Απαντήσεις",
"boosts": "Ενισχύσεις",
"favorites": "Αγαπημένα",
"new_followers": "Νέοι Ακόλουθοι"
},
"disabled": {
"notification_hint": "Ενεργοποίησε τις ειδοποιήσεις από τις ρυθμίσεις της συσκευής σου για να βλέπεις ενημερώσεις στην οθόνη κλειδώματος.",
"go_to_settings": "Μετάβαση στις Ρυθμίσεις Ειδοποιήσεων"
}
}
},
"report": {
"title_report": "Αναφορά",
"title": "Αναφορά %s",
"step1": "Βήμα 1 από 2",
"step2": "Βήμα 2 από 2",
"content1": "Υπάρχουν άλλες αναρτήσεις που θα ήθελες να προσθέσεις στην αναφορά;",
"content2": "Υπάρχει κάτι που οι συντονιστές θα πρέπει να γνωρίζουν για αυτή την αναφορά;",
"report_sent_title": "Σε ευχαριστούμε για την αναφορά, θα το διερευνήσουμε.",
"send": "Αποστολή Αναφοράς",
"skip_to_send": "Αποστολή χωρίς σχόλιο",
"text_placeholder": "Πληκτρολόγησε ή επικόλλησε επιπρόσθετα σχόλια",
"reported": "ΑΝΑΦΈΡΘΗΚΕ",
"step_one": {
"step_1_of_4": "Βήμα 1 από 4",
"whats_wrong_with_this_post": "Τι πάει στραβά με αυτή την ανάρτηση;",
"whats_wrong_with_this_account": "Τι πάει στραβά με αυτόν τον λογαριασμό;",
"whats_wrong_with_this_username": "Τι πάει στραβά με τον/την %s;",
"select_the_best_match": "Διάλεξε την καλύτερη αντιστοίχιση",
"i_dont_like_it": "Δεν μου αρέσει",
"it_is_not_something_you_want_to_see": "Δεν είναι κάτι που θα ήθελες να δεις",
"its_spam": "Είναι σπαμ",
"malicious_links_fake_engagement_or_repetetive_replies": "Κακόβουλοι σύνδεσμοι, πλαστή αλληλεπίδραση ή επαναλαμβανόμενες απαντήσεις",
"it_violates_server_rules": "Παραβαίνει τους κανόνες του διακομιστή",
"you_are_aware_that_it_breaks_specific_rules": "Γνωρίζεις ότι παραβιάζει συγκεκριμένους κανόνες",
"its_something_else": "Είναι κάτι άλλο",
"the_issue_does_not_fit_into_other_categories": "Το ζήτημα δεν ταιριάζει σε άλλες κατηγορίες"
},
"step_two": {
"step_2_of_4": "Βήμα 2 από 4",
"which_rules_are_being_violated": "Ποιοι κανόνες παραβιάζονται;",
"select_all_that_apply": "Επίλεξε όλα όσα ισχύουν",
"i_just_dont_like_it": "Απλώς δεν μου αρέσει"
},
"step_three": {
"step_3_of_4": "Βήμα 3 από 4",
"are_there_any_posts_that_back_up_this_report": "Υπάρχουν αναρτήσεις που τεκμηριώνουν αυτή την αναφορά;",
"select_all_that_apply": "Επίλεξε όλα όσα ισχύουν"
},
"step_four": {
"step_4_of_4": "Βήμα 4 από 4",
"is_there_anything_else_we_should_know": "Υπάρχει κάτι άλλο που πρέπει να γνωρίζουμε;"
},
"step_final": {
"dont_want_to_see_this": "Δε θες να το βλέπεις;",
"when_you_see_something_you_dont_like_on_mastodon_you_can_remove_the_person_from_your_experience.": "Όταν βλέπεις κάτι που δε σου αρέσει στο Mastodon, μπορείς να αφαιρέσεις το άτομο από την εμπειρία σου.",
"unfollow": "Άρση ακολούθησης",
"unfollowed": "Σταμάτησες να ακολουθείς",
"unfollow_user": "Άρση ακολούθησης του %s",
"mute_user": "Σίγαση %s",
"you_wont_see_their_posts_or_reblogs_in_your_home_feed_they_wont_know_they_ve_been_muted": "Δε θα βλέπεις τις αναρτήσεις ή τις αναδημοσιεύσεις τους στην αρχική σελίδα σου. Δε θα ξέρει ότι βρίσκεται σε σίγαση.",
"block_user": "Αποκλεισμός %s",
"they_will_no_longer_be_able_to_follow_or_see_your_posts_but_they_can_see_if_theyve_been_blocked": "Δε θα μπορούν πλέον να σε ακολουθούν ή να βλέπουν τις αναρτήσεις σου, αλλά μπορούν να δουν αν έχουν αποκλειστεί.",
"while_we_review_this_you_can_take_action_against_user": "Ενώ το εξετάζουμε, μπορείς να δράσεις εναντίον του %s"
}
},
"preview": {
"keyboard": {
"close_preview": "Κλείσιμο Προεπισκόπησης",
"show_next": "Εμφάνιση Επομένου",
"show_previous": "Εμφάνιση Προηγούμενου"
}
},
"account_list": {
"tab_bar_hint": "Τρέχον επιλεγμένο προφίλ: %s. Πάτα δύο φορές και κράτησε πατημένο για να εμφανίσεις την εναλλαγή λογαριασμού",
"dismiss_account_switcher": "Απόρριψη Εναλλαγής Λογαριασμού",
"add_account": "Προσθήκη Λογαριασμού"
},
"bookmark": {
"title": "Σελιδοδείκτες"
},
"followed_tags": {
"title": "Ακολουθούμενες Ετικέτες",
"header": {
"posts": "αναρτήσεις",
"participants": "συμμετέχοντες",
"posts_today": "αναρτήσεις σήμερα"
},
"actions": {
"follow": "Ακολούθησε",
"unfollow": "Άρση ακολούθησης"
}
}
},
"extension": {
"open_in": {
"invalid_link_error": "Αυτό δεν φαίνεται να είναι ένας έγκυρος σύνδεσμος Mastodon."
}
},
"widget": {
"common": {
"unsupported_widget_family": "Λυπούμαστε, αλλά αυτή η οικογένεια Widget δεν υποστηρίζεται.",
"user_not_logged_in": "Παρακαλώ άνοιξε το Mastodon για να συνδεθείς σε έναν Λογαριασμό."
},
"followers_count": {
"configuration_display_name": "Ακόλουθοι",
"configuration_description": "Εμφάνιση αριθμού των ακολούθων.",
"title": "ΑΚΟΛΟΥΘΟΙ",
"followers_today": "%s ακόλουθοι σήμερα"
},
"multiple_followers": {
"configuration_display_name": "Πολλαπλοί ακόλουθοι",
"configuration_description": "Εμφάνιση αριθμού ακολούθων για πολλαπλούς λογαριασμούς.",
"mock_user": {
"display_name": "Κι άλλος ακόλουθος",
"account_name": "another@follower.social"
}
},
"latest_followers": {
"configuration_display_name": "Τελευταίοι ακόλουθοι",
"configuration_description": "Εμφάνιση πιο πρόσφατων ακολούθων.",
"title": "Τελευταίοι ακόλουθοι",
"last_update": "Τελευταία ενημέρωση: %s"
},
"hashtag": {
"configuration": {
"display_name": "Ετικέτα",
"description": "Εμφανίζει μια πρόσφατη ανάρτηση με την επιλεγμένη ετικέτα."
},
"not_found": {
"account_name": "John Mastodon",
"account": "@johnMastodon@no-such.account",
"content": "Λυπούμαστε, δεν μπορέσαμε να βρούμε αναρτήσεις με την ετικέτα <a>#%@</a>. Παρακαλώ δοκίμασε ένα <a>#DifferentHashtag</a> ή έλεγξε τις ρυθμίσεις widget."
},
"placeholder": {
"account_name": "Γιάννης Mastodon",
"account": "@johnMastodon@no-such.account",
"content": "Έτσι θα φαινόταν μια ανάρτηση με <a>#hashtag</a>. Επίλεξε όποιο <a>#hashtag</a> θες στις ρυθμίσεις widget."
}
}
}
}

View File

@ -1,6 +0,0 @@
{
"NSCameraUsageDescription": "Χρησιμοποιείται για λήψη φωτογραφίας για την κατάσταση της ανάρτησης",
"NSPhotoLibraryAddUsageDescription": "Χρησιμοποιείται για αποθήκευση φωτογραφιών στις Φωτογραφίες",
"NewPostShortcutItemTitle": "Νέα Ανάρτηση",
"SearchShortcutItemTitle": "Αναζήτηση"
}

View File

@ -15,7 +15,7 @@
<key>one</key>
<string>1 unread notification</string>
<key>other</key>
<string>%ld unread notifications</string>
<string>%ld unread notification</string>
</dict>
</dict>
<key>a11y.plural.count.input_limit_exceeds</key>
@ -53,7 +53,7 @@
<key>a11y.plural.count.characters_left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@character_count@</string>
<string>%#@character_count@ left</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
@ -61,9 +61,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 character left</string>
<string>1 character</string>
<key>other</key>
<string>%ld characters left</string>
<string>%ld characters</string>
</dict>
</dict>
<key>plural.count.followed_by_and_mutual</key>
@ -173,22 +173,6 @@
<string>%ld reblogs</string>
</dict>
</dict>
<key>plural.count.reblog_a11y</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@reblog_count@</string>
<key>reblog_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 re-blog</string>
<key>other</key>
<string>%ld re-blogs</string>
</dict>
</dict>
<key>plural.count.reply</key>
<dict>
<key>NSStringLocalizedFormatKey</key>

View File

@ -15,6 +15,10 @@
"title": "Vote Failure",
"poll_ended": "The poll has ended"
},
"discard_post_content": {
"title": "Discard Draft",
"message": "Confirm to discard composed post content."
},
"publish_post_failure": {
"title": "Publish Failure",
"message": "Failed to publish the post.\nPlease check your internet connection.",
@ -47,29 +51,6 @@
"clean_cache": {
"title": "Clean Cache",
"message": "Successfully cleaned %s cache."
},
"translation_failed": {
"title": "Note",
"message": "Translation failed. Maybe the administrator has not enabled translations on this server or this server is running an older version of Mastodon where translations are not yet supported.",
"button": "OK"
},
"media_missing_alt_text": {
"title": "Media Missing Alt Text",
"message": "%d of your images are missing alt text.\nPost Anyway?",
"cancel": "Cancel",
"post": "Post"
},
"boost_a_post": {
"title_boost": "Boost Post?",
"title_unboost": "Unboost Post?",
"cancel": "Cancel",
"boost": "Boost",
"unboost": "Unboost"
},
"unfollow_user": {
"title": "Unfollow %@?",
"cancel": "Cancel",
"unfollow": "Unfollow"
}
},
"controls": {
@ -94,9 +75,9 @@
"save_photo": "Save Photo",
"copy_photo": "Copy Photo",
"sign_in": "Log in",
"sign_up": "Create account",
"see_more": "See More",
"preview": "Preview",
"copy": "Copy",
"share": "Share",
"share_user": "Share %s",
"share_post": "Share Post",
@ -110,26 +91,13 @@
"block_domain": "Block %s",
"unblock_domain": "Unblock %s",
"settings": "Settings",
"delete": "Delete",
"translate_post": {
"title": "Translate from %s",
"unknown_language": "Unknown"
},
"edit_post": "Edit",
"bookmark": "Bookmark",
"remove_bookmark": "Remove Bookmark",
"follow": "Follow %s",
"unfollow": "Unfollow %s"
"delete": "Delete"
},
"tabs": {
"home": "Home",
"search_and_explore": "Search and Explore",
"notifications": "Notifications",
"profile": "Profile",
"a11y": {
"search": "Search",
"explore": "Explore"
}
"search": "Search",
"notification": "Notification",
"profile": "Profile"
},
"keyboard": {
"common": {
@ -164,8 +132,6 @@
"sensitive_content": "Sensitive Content",
"media_content_warning": "Tap anywhere to reveal",
"tap_to_reveal": "Tap to reveal",
"load_embed": "Load Embed",
"link_via_user": "%s via %s",
"poll": {
"vote": "Vote",
"closed": "Closed"
@ -187,12 +153,7 @@
"show_image": "Show image",
"show_gif": "Show GIF",
"show_video_player": "Show video player",
"share_link_in_post": "Share Link in Post",
"tap_then_hold_to_show_menu": "Tap then hold to show menu",
"a11y_labels": {
"reblog": "Re-blog",
"unreblog": "Undo re-blog"
}
"tap_then_hold_to_show_menu": "Tap then hold to show menu"
},
"tag": {
"url": "URL",
@ -207,30 +168,6 @@
"private": "Only their followers can see this post.",
"private_from_me": "Only my followers can see this post.",
"direct": "Only mentioned user can see this post."
},
"translation": {
"translated_from": "Translated from %s using %s",
"unknown_language": "Unknown",
"unknown_provider": "Unknown",
"show_original": "Show Original"
},
"media": {
"accessibility_label": "%s, attachment %d of %d",
"expand_image_hint": "Expands the image. Double-tap and hold to show actions",
"expand_gif_hint": "Expands the GIF. Double-tap and hold to show actions",
"expand_video_hint": "Shows the video player. Double-tap and hold to show actions"
},
"posted_via_application": "%s via %s",
"buttons": {
"reblogs_title": "Reblogs",
"favorites_title": "Favorites",
"edit_history_title": "Edit History",
"edit_history_detail": "Last edit %s"
},
"edited_at_timestamp_prefix": "Edited %s",
"edit_history": {
"title": "Edit History",
"original_post": "Original Post · %s"
}
},
"friendship": {
@ -240,11 +177,10 @@
"pending": "Pending",
"block": "Block",
"block_user": "Block %s",
"block_domain": "Block domain %s",
"block_domain": "Block %s",
"unblock": "Unblock",
"unblock_user": "Unblock %s",
"blocked": "Blocked",
"domain_blocked": "Domain Blocked",
"mute": "Mute",
"mute_user": "Mute %s",
"unmute": "Unmute",
@ -274,36 +210,13 @@
"user_suspended_warning": "%ss account has been suspended."
}
}
},
"user_list": {
"no_verified_link": "No verified link",
"followers_count": "%@ followers"
}
},
"scene": {
"welcome": {
"log_in": "Log In",
"learn_more": "Learn more",
"join_default_server": "Join %@",
"pick_server": "Pick another server",
"separator": {
"or": "or"
},
"education": {
"mastodon": {
"title": "Welcome to Mastodon",
"description": "Mastodon is a decentralized social network, meaning no single company controls it. Its made up of many independently-run servers, all connected together."
},
"servers": {
"title": "What are servers?",
"description": "Every Mastodon account is hosted on a server — each with its own values, rules, & admins. No matter which one you pick, you can follow and interact with people on any server."
},
"a11y": {
"what_is_mastodon": {
"title": "What is Mastodon?"
}
}
}
"slogan": "Social networking\nback in your hands.",
"get_started": "Get Started",
"log_in": "Log In"
},
"login": {
"title": "Welcome back",
@ -313,10 +226,9 @@
}
},
"server_picker": {
"title": "Pick Server",
"title": "Mastodon is made of users in different servers.",
"subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.",
"button": {
"language": "Language",
"signup_speed": "Sign-up Speed",
"category": {
"all": "All",
"all_accessiblity_description": "Category: All",
@ -348,41 +260,18 @@
"finding_servers": "Finding available servers...",
"bad_network": "Something went wrong while loading the data. Check your internet connection.",
"no_results": "No results"
},
"signup_speed": {
"all": "All",
"instant": "Instant Sign-up",
"manually_reviewed": "Manual Review"
},
"language": {
"all": "All"
},
"search": {
"placeholder": "Search name or URL"
},
"no_server_selected_hint": "Well pick a server based on your language if you continue without making a selection."
},
"privacy": {
"title": "Privacy",
"description": "Although the Mastodon app does not collect any data, the server you sign up through may have a different policy. Take a minute to review and agree to the Mastodon app privacy policy and your servers privacy policy.",
"policy": {
"ios": "Privacy Policy - Mastodon for iOS",
"server": "Privacy Policy - %s"
},
"button": {
"confirm": "I Agree"
}
},
"register": {
"title": "Create Account",
"title": "Lets get you set up on %s",
"lets_get_you_set_up_on_domain": "Lets get you set up on %s",
"input": {
"avatar": {
"delete": "Delete"
},
"username": {
"placeholder": "username",
"duplicate_prompt": "This username is taken.",
"suggestion": "amazing_%@"
"duplicate_prompt": "This username is taken."
},
"display_name": {
"placeholder": "display name"
@ -392,7 +281,6 @@
},
"password": {
"placeholder": "password",
"confirmation_placeholder": "Confirm Password",
"require": "Your password needs at least:",
"character_limit": "8 characters",
"accessibility": {
@ -417,7 +305,7 @@
"reason": {
"blocked": "%s contains a disallowed email provider",
"unreachable": "%s does not seem to exist",
"taken": "%s is already taken. How about:",
"taken": "%s is already in use",
"reserved": "%s is a reserved keyword",
"accepted": "%s must be accepted",
"blank": "%s is required",
@ -435,37 +323,33 @@
}
},
"server_rules": {
"title": "Server Rules",
"subtitle": "By continuing, you agree to follow by the following rules set and enforced by the **%@** moderators.",
"title": "Some ground rules.",
"subtitle": "These are set and enforced by the %s moderators.",
"prompt": "By continuing, youre subject to the terms of service and privacy policy for %s.",
"terms_of_service": "terms of service",
"privacy_policy": "privacy policy",
"button": {
"confirm": "I Agree",
"disagree": "Disagree"
"confirm": "I Agree"
}
},
"confirm_email": {
"title": "Check Your Inbox",
"tap_the_link_we_emailed_to_you_to_verify_your_account": "Tap the link we sent you to verify %@. Well wait right here.",
"title": "One last thing.",
"subtitle": "Tap the link we emailed to you to verify your account.",
"tap_the_link_we_emailed_to_you_to_verify_your_account": "Tap the link we emailed to you to verify your account",
"button": {
"open_email_app": "Open Email App",
"resend": "Resend"
},
"dont_receive_email": {
"title": "Check your Email",
"title": "Check your email",
"description": "Check if your email address is correct as well as your junk folder if you havent.",
"resend_email": "Resend Email"
},
"open_email_app": {
"title": "Check your Inbox.",
"title": "Check your inbox.",
"description": "We just sent you an email. Check your junk folder if you havent.",
"mail": "Mail",
"open_email_client": "Open Email Client"
},
"didnt_get_link": {
"prefix": "Didnt get a link?",
"resend_in": "Resend (%@)",
"resend_now": "Resend now."
}
},
"home_timeline": {
@ -476,20 +360,19 @@
"published": "Published!",
"Publishing": "Publishing post...",
"accessibility": {
"logo_label": "Mastodon",
"logo_label": "Logo Button",
"logo_hint": "Tap to scroll to top and tap again to previous location"
}
}
},
"suggestion_account": {
"title": "Popular on Mastodon",
"follow_all": "Follow all"
"title": "Find People to Follow",
"follow_explain": "When you follow someone, youll see their posts in your home feed."
},
"compose": {
"title": {
"new_post": "New Post",
"new_reply": "New Reply",
"edit_post": "Edit Post"
"new_reply": "New Reply"
},
"media_selection": {
"camera": "Take Photo",
@ -513,7 +396,6 @@
"server_processing_state": "Server Processing..."
},
"poll": {
"title": "Poll",
"duration_time": "Duration: %s",
"thirty_minutes": "30 minutes",
"one_hour": "1 Hour",
@ -523,11 +405,7 @@
"seven_days": "7 Days",
"option_number": "Option %ld",
"the_poll_is_invalid": "The poll is invalid",
"the_poll_has_empty_option": "The poll has empty option",
"add_option": "Add Option",
"remove_option": "Remove Option",
"move_up": "Move Up",
"move_down": "Move Down"
"the_poll_has_empty_option": "The poll has empty option"
},
"content_warning": {
"placeholder": "Write an accurate warning here..."
@ -559,12 +437,6 @@
"toggle_content_warning": "Toggle Content Warning",
"append_attachment_entry": "Add Attachment - %s",
"select_visibility_entry": "Select Visibility - %s"
},
"language": {
"title": "Post Language",
"suggested": "Suggested",
"recent": "Recent",
"other": "Other Language…"
}
},
"profile": {
@ -572,16 +444,11 @@
"follows_you": "Follows You"
},
"dashboard": {
"my_posts": "posts",
"my_following": "following",
"my_followers": "followers",
"other_posts": "posts",
"other_following": "following",
"other_followers": "followers",
"familiar_followers": "mutuals"
"posts": "posts",
"following": "following",
"followers": "followers"
},
"fields": {
"joined": "Joined",
"add_row": "Add Row",
"placeholder": {
"label": "Label",
@ -623,14 +490,6 @@
"confirm_hide_reblogs": {
"title": "Hide Reblogs",
"message": "Confirm to hide reblogs"
},
"confirm_block_domain": {
"title": "Block domain",
"message": "Confirm to block domain %s"
},
"confirm_unblock_domain": {
"title": "Unblock domain",
"message": "Confirm to unblock domain %s"
}
},
"accessibility": {
@ -678,20 +537,16 @@
}
},
"searching": {
"posts": "Posts matching \"%s\"",
"people": "People matching \"%s\"",
"profile": "Go to @%s@%s",
"url": "Open URL in Mastodon",
"hashtag": "Go to #%s",
"no_user": {
"title": "No User Account Found",
"message": "There's no Useraccount \"%s\" on %s"
"segment": {
"all": "All",
"people": "People",
"hashtags": "Hashtags",
"posts": "Posts"
},
"empty_state": {
"no_results": "No results"
},
"recent_search": "Recent searches",
"clear_all": "Clear all",
"clear": "Clear"
}
},
@ -706,7 +561,7 @@
"intro": "These are the posts gaining traction in your corner of Mastodon."
},
"favorite": {
"title": "Favorites"
"title": "Your Favorites"
},
"notification": {
"title": {
@ -737,79 +592,60 @@
"title": "Post from %s"
},
"settings": {
"overview": {
"title": "Settings",
"general": "General",
"notifications": "Notifications",
"support_mastodon": "Support Mastodon",
"about_mastodon": "About Mastodon",
"server_details": "Server Details",
"logout": "Logout %@"
},
"about_mastodon": {
"title": "About",
"more_settings": "Even More Settings",
"contribute_to_mastodon": "Contribute to Mastodon",
"privacy_policy": "Privacy Policy",
"clear_media_storage": "Clear Media Storage"
},
"server_details": {
"about": "About",
"rules": "Rules",
"about_instance": {
"title": "Administrator",
"message_admin": "Message Admin",
"legal_notice": "A legal notice"
}
},
"general": {
"title": "General",
"title": "Settings",
"section": {
"appearance": {
"section_title": "Appearance",
"dark": "Dark",
"light": "Light",
"system": "Use Device Appearance"
"title": "Appearance",
"automatic": "Automatic",
"light": "Always Light",
"dark": "Always Dark"
},
"ask_before": {
"section_title": "Ask before…",
"posting_without_alt_text": "Posting without Alt Text",
"unfollowing_someone": "Unfollowing Someone",
"boosting_a_post": "Boosting a Post",
"deleting_a_post": "Deleting a Post"
"look_and_feel": {
"title": "Look and Feel",
"use_system": "Use System",
"really_dark": "Really Dark",
"sorta_dark": "Sorta Dark",
"light": "Light"
},
"design": {
"section_title": "Design",
"show_animations": "Play Animated Avatars and Emoji"
"notifications": {
"title": "Notifications",
"favorites": "Favorites my post",
"follows": "Follows me",
"boosts": "Reblogs my post",
"mentions": "Mentions me",
"trigger": {
"anyone": "anyone",
"follower": "a follower",
"follow": "anyone I follow",
"noone": "no one",
"title": "Notify me when"
}
},
"language": {
"section_title": "Language",
"default_post_language": "Default Post Language"
"preference": {
"title": "Preferences",
"true_black_dark_mode": "True black dark mode",
"disable_avatar_animation": "Disable animated avatars",
"disable_emoji_animation": "Disable animated emojis",
"using_default_browser": "Use default browser to open links",
"open_links_in_mastodon": "Open links in Mastodon"
},
"links": {
"section_title": "Links",
"open_in_mastodon": "Open in Mastodon",
"open_in_browser": "Open in Browser"
"boring_zone": {
"title": "The Boring Zone",
"account_settings": "Account Settings",
"terms": "Terms of Service",
"privacy": "Privacy Policy"
},
"spicy_zone": {
"title": "The Spicy Zone",
"clear": "Clear Media Cache",
"signout": "Sign Out"
}
},
"notifications": {
"title": "Notifications",
"policy": {
"title": "Get Notifications from",
"anyone": "Anyone",
"followers": "People who follow you",
"follow": "People you follow",
"noone": "No one"
},
"alert": {
"mentions_and_replies": "Mentions & Replies",
"boosts": "Boosts",
"favorites": "Favorites",
"new_followers": "New Followers"
},
"disabled": {
"notification_hint": "Turn on notifications from your device settings to see updates on your lock screen.",
"go_to_settings": "Go to Notification Settings"
}
"footer": {
"mastodon_description": "Mastodon is open source software. You can report issues on GitHub at %s (%s)"
},
"keyboard": {
"close_settings_window": "Close Settings Window"
}
},
"report": {
@ -879,67 +715,13 @@
"dismiss_account_switcher": "Dismiss Account Switcher",
"add_account": "Add Account"
},
"wizard": {
"new_in_mastodon": "New in Mastodon",
"multiple_account_switch_intro_description": "Switch between multiple accounts by holding the profile button.",
"accessibility_hint": "Double tap to dismiss this wizard"
},
"bookmark": {
"title": "Bookmarks"
},
"followed_tags": {
"title": "Followed Tags",
"header": {
"posts": "posts",
"participants": "participants",
"posts_today": "posts today"
},
"actions": {
"follow": "Follow",
"unfollow": "Unfollow"
}
}
},
"extension": {
"open_in": {
"invalid_link_error": "This doesn't seem to be a valid Mastodon link."
}
},
"widget": {
"common": {
"unsupported_widget_family": "Sorry but this Widget family is unsupported.",
"user_not_logged_in": "Please open Mastodon to log in to an Account."
},
"followers_count": {
"configuration_display_name": "Followers",
"configuration_description": "Show number of followers.",
"title": "FOLLOWERS",
"followers_today": "%s followers today"
},
"multiple_followers": {
"configuration_display_name": "Multiple followers",
"configuration_description": "Show number of followers for multiple accounts.",
"mock_user": {
"display_name": "Another follower",
"account_name": "another@follower.social"
}
},
"latest_followers": {
"configuration_display_name": "Latest followers",
"configuration_description": "Show latest followers.",
"title": "Latest followers",
"last_update": "Last update: %s"
},
"hashtag": {
"configuration": {
"display_name": "Hashtag",
"description": "Shows a recent post with the selected hashtag."
},
"not_found": {
"account_name": "John Mastodon",
"account": "@johnMastodon@no-such.account",
"content": "Sorry, we couldnt find any posts with the hashtag <a>#%@</a>. Please try a <a>#DifferentHashtag</a> or check the widget settings."
},
"placeholder": {
"account_name": "John Mastodon",
"account": "@johnMastodon@no-such.account",
"content": "This is how a post with a <a>#hashtag</a> would look. Pick whichever <a>#hashtag</a> you want in the widget settings."
}
}
}
}

View File

@ -15,7 +15,7 @@
<key>one</key>
<string>1 unread notification</string>
<key>other</key>
<string>%ld unread notifications</string>
<string>%ld unread notification</string>
</dict>
</dict>
<key>a11y.plural.count.input_limit_exceeds</key>
@ -53,17 +53,23 @@
<key>a11y.plural.count.characters_left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@character_count@</string>
<string>%#@character_count@ left</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>zero</key>
<string>no characters</string>
<key>one</key>
<string>1 character left</string>
<string>1 character</string>
<key>few</key>
<string>%ld characters</string>
<key>many</key>
<string>%ld characters</string>
<key>other</key>
<string>%ld characters left</string>
<string>%ld characters</string>
</dict>
</dict>
<key>plural.count.followed_by_and_mutual</key>
@ -173,22 +179,6 @@
<string>%ld reblogs</string>
</dict>
</dict>
<key>plural.count.reblog_a11y</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@reblog_count@</string>
<key>reblog_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 re-blog</string>
<key>other</key>
<string>%ld re-blogs</string>
</dict>
</dict>
<key>plural.count.reply</key>
<dict>
<key>NSStringLocalizedFormatKey</key>

View File

@ -15,6 +15,10 @@
"title": "Vote Failure",
"poll_ended": "The poll has ended"
},
"discard_post_content": {
"title": "Discard Draft",
"message": "Confirm to discard composed post content."
},
"publish_post_failure": {
"title": "Publish Failure",
"message": "Failed to publish the post.\nPlease check your internet connection.",
@ -47,29 +51,6 @@
"clean_cache": {
"title": "Clean Cache",
"message": "Successfully cleaned %s cache."
},
"translation_failed": {
"title": "Note",
"message": "Translation failed. Maybe the administrator has not enabled translations on this server or this server is running an older version of Mastodon where translations are not yet supported.",
"button": "OK"
},
"media_missing_alt_text": {
"title": "Media Missing Alt Text",
"message": "%d of your images are missing alt text.\nPost Anyway?",
"cancel": "Cancel",
"post": "Post"
},
"boost_a_post": {
"title_boost": "Boost Post?",
"title_unboost": "Unboost Post?",
"cancel": "Cancel",
"boost": "Boost",
"unboost": "Unboost"
},
"unfollow_user": {
"title": "Unfollow %@?",
"cancel": "Cancel",
"unfollow": "Unfollow"
}
},
"controls": {
@ -94,9 +75,9 @@
"save_photo": "Save Photo",
"copy_photo": "Copy Photo",
"sign_in": "Log in",
"sign_up": "Create account",
"see_more": "See More",
"preview": "Preview",
"copy": "Copy",
"share": "Share",
"share_user": "Share %s",
"share_post": "Share Post",
@ -110,26 +91,13 @@
"block_domain": "Block %s",
"unblock_domain": "Unblock %s",
"settings": "Settings",
"delete": "Delete",
"translate_post": {
"title": "Translate from %s",
"unknown_language": "Unknown"
},
"edit_post": "Edit",
"bookmark": "Bookmark",
"remove_bookmark": "Remove Bookmark",
"follow": "Follow %s",
"unfollow": "Unfollow %s"
"delete": "Delete"
},
"tabs": {
"home": "Home",
"search_and_explore": "Search and Explore",
"notifications": "Notifications",
"profile": "Profile",
"a11y": {
"search": "Search",
"explore": "Explore"
}
"search": "Search",
"notification": "Notification",
"profile": "Profile"
},
"keyboard": {
"common": {
@ -140,7 +108,7 @@
},
"timeline": {
"previous_status": "Previous Post",
"next_status": "Következő bejegyzések",
"next_status": "Next Post",
"open_status": "Open Post",
"open_author_profile": "Open Author's Profile",
"open_reblogger_profile": "Open Reblogger's Profile",
@ -164,8 +132,6 @@
"sensitive_content": "Sensitive Content",
"media_content_warning": "Tap anywhere to reveal",
"tap_to_reveal": "Tap to reveal",
"load_embed": "Load Embed",
"link_via_user": "%s via %s",
"poll": {
"vote": "Vote",
"closed": "Closed"
@ -187,12 +153,7 @@
"show_image": "Show image",
"show_gif": "Show GIF",
"show_video_player": "Show video player",
"share_link_in_post": "Share Link in Post",
"tap_then_hold_to_show_menu": "Tap then hold to show menu",
"a11y_labels": {
"reblog": "Re-blog",
"unreblog": "Undo re-blog"
}
"tap_then_hold_to_show_menu": "Tap then hold to show menu"
},
"tag": {
"url": "URL",
@ -207,30 +168,6 @@
"private": "Only their followers can see this post.",
"private_from_me": "Only my followers can see this post.",
"direct": "Only mentioned user can see this post."
},
"translation": {
"translated_from": "Translated from %s using %s",
"unknown_language": "Unknown",
"unknown_provider": "Unknown",
"show_original": "Show Original"
},
"media": {
"accessibility_label": "%s, attachment %d of %d",
"expand_image_hint": "Expands the image. Double-tap and hold to show actions",
"expand_gif_hint": "Expands the GIF. Double-tap and hold to show actions",
"expand_video_hint": "Shows the video player. Double-tap and hold to show actions"
},
"posted_via_application": "%s via %s",
"buttons": {
"reblogs_title": "Reblogs",
"favorites_title": "Favorites",
"edit_history_title": "Edit History",
"edit_history_detail": "Last edit %s"
},
"edited_at_timestamp_prefix": "Edited %s",
"edit_history": {
"title": "Edit History",
"original_post": "Original Post · %s"
}
},
"friendship": {
@ -240,11 +177,10 @@
"pending": "Pending",
"block": "Block",
"block_user": "Block %s",
"block_domain": "Block domain %s",
"block_domain": "Block %s",
"unblock": "Unblock",
"unblock_user": "Unblock %s",
"blocked": "Blocked",
"domain_blocked": "Domain Blocked",
"mute": "Mute",
"mute_user": "Mute %s",
"unmute": "Unmute",
@ -274,36 +210,13 @@
"user_suspended_warning": "%ss account has been suspended."
}
}
},
"user_list": {
"no_verified_link": "No verified link",
"followers_count": "%@ followers"
}
},
"scene": {
"welcome": {
"log_in": "Log In",
"learn_more": "Learn more",
"join_default_server": "Join %@",
"pick_server": "Pick another server",
"separator": {
"or": "or"
},
"education": {
"mastodon": {
"title": "Welcome to Mastodon",
"description": "Mastodon is a decentralized social network, meaning no single company controls it. Its made up of many independently-run servers, all connected together."
},
"servers": {
"title": "What are servers?",
"description": "Every Mastodon account is hosted on a server — each with its own values, rules, & admins. No matter which one you pick, you can follow and interact with people on any server."
},
"a11y": {
"what_is_mastodon": {
"title": "What is Mastodon?"
}
}
}
"slogan": "Social networking\nback in your hands.",
"get_started": "Get Started",
"log_in": "Log In"
},
"login": {
"title": "Welcome back",
@ -313,10 +226,9 @@
}
},
"server_picker": {
"title": "Pick Server",
"title": "Mastodon is made of users in different servers.",
"subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.",
"button": {
"language": "Language",
"signup_speed": "Sign-up Speed",
"category": {
"all": "All",
"all_accessiblity_description": "Category: All",
@ -348,41 +260,18 @@
"finding_servers": "Finding available servers...",
"bad_network": "Something went wrong while loading the data. Check your internet connection.",
"no_results": "No results"
},
"signup_speed": {
"all": "All",
"instant": "Instant Sign-up",
"manually_reviewed": "Manual Review"
},
"language": {
"all": "All"
},
"search": {
"placeholder": "Search name or URL"
},
"no_server_selected_hint": "Well pick a server based on your language if you continue without making a selection."
},
"privacy": {
"title": "Privacy",
"description": "Although the Mastodon app does not collect any data, the server you sign up through may have a different policy. Take a minute to review and agree to the Mastodon app privacy policy and your servers privacy policy.",
"policy": {
"ios": "Privacy Policy - Mastodon for iOS",
"server": "Privacy Policy - %s"
},
"button": {
"confirm": "I Agree"
}
},
"register": {
"title": "Create Account",
"title": "Lets get you set up on %s",
"lets_get_you_set_up_on_domain": "Lets get you set up on %s",
"input": {
"avatar": {
"delete": "Delete"
},
"username": {
"placeholder": "username",
"duplicate_prompt": "This username is taken.",
"suggestion": "amazing_%@"
"duplicate_prompt": "This username is taken."
},
"display_name": {
"placeholder": "display name"
@ -392,7 +281,6 @@
},
"password": {
"placeholder": "password",
"confirmation_placeholder": "Confirm Password",
"require": "Your password needs at least:",
"character_limit": "8 characters",
"accessibility": {
@ -417,7 +305,7 @@
"reason": {
"blocked": "%s contains a disallowed email provider",
"unreachable": "%s does not seem to exist",
"taken": "%s is already taken. How about:",
"taken": "%s is already in use",
"reserved": "%s is a reserved keyword",
"accepted": "%s must be accepted",
"blank": "%s is required",
@ -435,37 +323,33 @@
}
},
"server_rules": {
"title": "Server Rules",
"subtitle": "By continuing, you agree to follow by the following rules set and enforced by the **%@** moderators.",
"title": "Some ground rules.",
"subtitle": "These are set and enforced by the %s moderators.",
"prompt": "By continuing, youre subject to the terms of service and privacy policy for %s.",
"terms_of_service": "terms of service",
"privacy_policy": "privacy policy",
"button": {
"confirm": "I Agree",
"disagree": "Disagree"
"confirm": "I Agree"
}
},
"confirm_email": {
"title": "Check Your Inbox",
"tap_the_link_we_emailed_to_you_to_verify_your_account": "Tap the link we sent you to verify %@. Well wait right here.",
"title": "One last thing.",
"subtitle": "Tap the link we emailed to you to verify your account.",
"tap_the_link_we_emailed_to_you_to_verify_your_account": "Tap the link we emailed to you to verify your account",
"button": {
"open_email_app": "Open Email App",
"resend": "Resend"
},
"dont_receive_email": {
"title": "Check your Email",
"title": "Check your email",
"description": "Check if your email address is correct as well as your junk folder if you havent.",
"resend_email": "Resend Email"
},
"open_email_app": {
"title": "Check your Inbox.",
"title": "Check your inbox.",
"description": "We just sent you an email. Check your junk folder if you havent.",
"mail": "Mail",
"open_email_client": "Open Email Client"
},
"didnt_get_link": {
"prefix": "Didnt get a link?",
"resend_in": "Resend (%@)",
"resend_now": "Resend now."
}
},
"home_timeline": {
@ -476,20 +360,19 @@
"published": "Published!",
"Publishing": "Publishing post...",
"accessibility": {
"logo_label": "Mastodon",
"logo_label": "Logo Button",
"logo_hint": "Tap to scroll to top and tap again to previous location"
}
}
},
"suggestion_account": {
"title": "Popular on Mastodon",
"follow_all": "Follow all"
"title": "Find People to Follow",
"follow_explain": "When you follow someone, youll see their posts in your home feed."
},
"compose": {
"title": {
"new_post": "New Post",
"new_reply": "New Reply",
"edit_post": "Bejegyzés szerkesztése"
"new_reply": "New Reply"
},
"media_selection": {
"camera": "Take Photo",
@ -513,7 +396,6 @@
"server_processing_state": "Server Processing..."
},
"poll": {
"title": "Poll",
"duration_time": "Duration: %s",
"thirty_minutes": "30 minutes",
"one_hour": "1 Hour",
@ -523,11 +405,7 @@
"seven_days": "7 Days",
"option_number": "Option %ld",
"the_poll_is_invalid": "The poll is invalid",
"the_poll_has_empty_option": "The poll has empty option",
"add_option": "Add Option",
"remove_option": "Remove Option",
"move_up": "Move Up",
"move_down": "Move Down"
"the_poll_has_empty_option": "The poll has empty option"
},
"content_warning": {
"placeholder": "Write an accurate warning here..."
@ -559,12 +437,6 @@
"toggle_content_warning": "Toggle Content Warning",
"append_attachment_entry": "Add Attachment - %s",
"select_visibility_entry": "Select Visibility - %s"
},
"language": {
"title": "Post Language",
"suggested": "Suggested",
"recent": "Recent",
"other": "Other Language…"
}
},
"profile": {
@ -572,16 +444,11 @@
"follows_you": "Follows You"
},
"dashboard": {
"my_posts": "posts",
"my_following": "following",
"my_followers": "followers",
"other_posts": "posts",
"other_following": "following",
"other_followers": "followers",
"familiar_followers": "mutuals"
"posts": "posts",
"following": "following",
"followers": "followers"
},
"fields": {
"joined": "Joined",
"add_row": "Add Row",
"placeholder": {
"label": "Label",
@ -623,14 +490,6 @@
"confirm_hide_reblogs": {
"title": "Hide Reblogs",
"message": "Confirm to hide reblogs"
},
"confirm_block_domain": {
"title": "Block domain",
"message": "Confirm to block domain %s"
},
"confirm_unblock_domain": {
"title": "Unblock domain",
"message": "Confirm to unblock domain %s"
}
},
"accessibility": {
@ -678,20 +537,16 @@
}
},
"searching": {
"posts": "Posts matching \"%s\"",
"people": "People matching \"%s\"",
"profile": "Go to @%s@%s",
"url": "Open URL in Mastodon",
"hashtag": "Go to #%s",
"no_user": {
"title": "No User Account Found",
"message": "There's no Useraccount \"%s\" on %s"
"segment": {
"all": "All",
"people": "People",
"hashtags": "Hashtags",
"posts": "Posts"
},
"empty_state": {
"no_results": "No results"
},
"recent_search": "Recent searches",
"clear_all": "Clear all",
"clear": "Clear"
}
},
@ -706,7 +561,7 @@
"intro": "These are the posts gaining traction in your corner of Mastodon."
},
"favorite": {
"title": "Favorites"
"title": "Your Favorites"
},
"notification": {
"title": {
@ -737,79 +592,60 @@
"title": "Post from %s"
},
"settings": {
"overview": {
"title": "Settings",
"general": "General",
"notifications": "Notifications",
"support_mastodon": "Support Mastodon",
"about_mastodon": "About Mastodon",
"server_details": "Server Details",
"logout": "Logout %@"
},
"about_mastodon": {
"title": "About",
"more_settings": "Even More Settings",
"contribute_to_mastodon": "Contribute to Mastodon",
"privacy_policy": "Privacy Policy",
"clear_media_storage": "Clear Media Storage"
},
"server_details": {
"about": "About",
"rules": "Rules",
"about_instance": {
"title": "Administrator",
"message_admin": "Message Admin",
"legal_notice": "A legal notice"
}
},
"general": {
"title": "General",
"title": "Settings",
"section": {
"appearance": {
"section_title": "Appearance",
"dark": "Dark",
"light": "Light",
"system": "Use Device Appearance"
"title": "Appearance",
"automatic": "Automatic",
"light": "Always Light",
"dark": "Always Dark"
},
"ask_before": {
"section_title": "Ask before…",
"posting_without_alt_text": "Posting without Alt Text",
"unfollowing_someone": "Unfollowing Someone",
"boosting_a_post": "Boosting a Post",
"deleting_a_post": "Deleting a Post"
"look_and_feel": {
"title": "Look and Feel",
"use_system": "Use System",
"really_dark": "Really Dark",
"sorta_dark": "Sorta Dark",
"light": "Light"
},
"design": {
"section_title": "Design",
"show_animations": "Play Animated Avatars and Emoji"
"notifications": {
"title": "Notifications",
"favorites": "Favorites my post",
"follows": "Follows me",
"boosts": "Reblogs my post",
"mentions": "Mentions me",
"trigger": {
"anyone": "anyone",
"follower": "a follower",
"follow": "anyone I follow",
"noone": "no one",
"title": "Notify me when"
}
},
"language": {
"section_title": "Language",
"default_post_language": "Default Post Language"
"preference": {
"title": "Preferences",
"true_black_dark_mode": "True black dark mode",
"disable_avatar_animation": "Disable animated avatars",
"disable_emoji_animation": "Disable animated emojis",
"using_default_browser": "Use default browser to open links",
"open_links_in_mastodon": "Open links in Mastodon"
},
"links": {
"section_title": "Links",
"open_in_mastodon": "Open in Mastodon",
"open_in_browser": "Open in Browser"
"boring_zone": {
"title": "The Boring Zone",
"account_settings": "Account Settings",
"terms": "Terms of Service",
"privacy": "Privacy Policy"
},
"spicy_zone": {
"title": "The Spicy Zone",
"clear": "Clear Media Cache",
"signout": "Sign Out"
}
},
"notifications": {
"title": "Notifications",
"policy": {
"title": "Get Notifications from",
"anyone": "Anyone",
"followers": "People who follow you",
"follow": "People you follow",
"noone": "No one"
},
"alert": {
"mentions_and_replies": "Mentions & Replies",
"boosts": "Boosts",
"favorites": "Favorites",
"new_followers": "New Followers"
},
"disabled": {
"notification_hint": "Turn on notifications from your device settings to see updates on your lock screen.",
"go_to_settings": "Go to Notification Settings"
}
"footer": {
"mastodon_description": "Mastodon is open source software. You can report issues on GitHub at %s (%s)"
},
"keyboard": {
"close_settings_window": "Close Settings Window"
}
},
"report": {
@ -879,67 +715,13 @@
"dismiss_account_switcher": "Dismiss Account Switcher",
"add_account": "Add Account"
},
"wizard": {
"new_in_mastodon": "New in Mastodon",
"multiple_account_switch_intro_description": "Switch between multiple accounts by holding the profile button.",
"accessibility_hint": "Double tap to dismiss this wizard"
},
"bookmark": {
"title": "Bookmarks"
},
"followed_tags": {
"title": "Followed Tags",
"header": {
"posts": "posts",
"participants": "participants",
"posts_today": "posts today"
},
"actions": {
"follow": "Follow",
"unfollow": "Unfollow"
}
}
},
"extension": {
"open_in": {
"invalid_link_error": "This doesn't seem to be a valid Mastodon link."
}
},
"widget": {
"common": {
"unsupported_widget_family": "Sorry but this Widget family is unsupported.",
"user_not_logged_in": "Please open Mastodon to log in to an Account."
},
"followers_count": {
"configuration_display_name": "Followers",
"configuration_description": "Show number of followers.",
"title": "FOLLOWERS",
"followers_today": "%s followers today"
},
"multiple_followers": {
"configuration_display_name": "Multiple followers",
"configuration_description": "Show number of followers for multiple accounts.",
"mock_user": {
"display_name": "Another follower",
"account_name": "another@follower.social"
}
},
"latest_followers": {
"configuration_display_name": "Latest followers",
"configuration_description": "Show latest followers.",
"title": "Latest followers",
"last_update": "Last update: %s"
},
"hashtag": {
"configuration": {
"display_name": "Hashtag",
"description": "Shows a recent post with the selected hashtag."
},
"not_found": {
"account_name": "John Mastodon",
"account": "@johnMastodon@no-such.account",
"content": "Sorry, we couldnt find any posts with the hashtag <a>#%@</a>. Please try a <a>#DifferentHashtag</a> or check the widget settings."
},
"placeholder": {
"account_name": "John Mastodon",
"account": "@johnMastodon@no-such.account",
"content": "This is how a post with a <a>#hashtag</a> would look. Pick whichever <a>#hashtag</a> you want in the widget settings."
}
}
}
}

View File

@ -53,7 +53,7 @@
<key>a11y.plural.count.characters_left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@character_count@</string>
<string>Quedan %#@character_count@</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
@ -61,9 +61,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>Queda 1 caracter</string>
<string>1 caracter</string>
<key>other</key>
<string>Quedan %ld caracteres</string>
<string>%ld caracteres</string>
</dict>
</dict>
<key>plural.count.followed_by_and_mutual</key>
@ -173,22 +173,6 @@
<string>%ld adhesiones</string>
</dict>
</dict>
<key>plural.count.reblog_a11y</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@reblog_count@</string>
<key>reblog_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 adhesión</string>
<key>other</key>
<string>%ld adhesiones</string>
</dict>
</dict>
<key>plural.count.reply</key>
<dict>
<key>NSStringLocalizedFormatKey</key>

View File

@ -15,6 +15,10 @@
"title": "Error al votar",
"poll_ended": "La encuesta finalizó"
},
"discard_post_content": {
"title": "Descartar borrador",
"message": "Confirmá para descartar el contenido del mensaje redactado."
},
"publish_post_failure": {
"title": "Error al enviar el mensaje",
"message": "Error al enviar en mensaje.\nPor favor, revisá tu conexión a Internet.",
@ -47,29 +51,6 @@
"clean_cache": {
"title": "Limpiar caché",
"message": "Se limpió exitosamente %s de la memoria caché."
},
"translation_failed": {
"title": "Nota",
"message": "Falló la traducción. Tal vez el administrador no habilitó las traducciones en este servidor, o este servidor está ejecutando una versión antigua de Mastodon en donde las traducciones aún no estaban disponibles.",
"button": "Aceptar"
},
"media_missing_alt_text": {
"title": "Texto alternativo de medios, ausente",
"message": "%d de tus imágenes no tienen texto alternativo. ¿Querés enviar el mensaje de todos modos?",
"cancel": "Cancelar",
"post": "Enviar"
},
"boost_a_post": {
"title_boost": "¿Adherir al mensaje?",
"title_unboost": "¿Dejar de adherir al mensaje?",
"cancel": "Cancelar",
"boost": "Adherir",
"unboost": "Quitar adhesión"
},
"unfollow_user": {
"title": "¿Dejar de seguir a %@?",
"cancel": "Cancelar",
"unfollow": "Dejar de seguir"
}
},
"controls": {
@ -94,9 +75,9 @@
"save_photo": "Guardar foto",
"copy_photo": "Copiar foto",
"sign_in": "Iniciar sesión",
"sign_up": "Crear cuenta",
"see_more": "Ver más",
"preview": "Previsualización",
"copy": "Copiar",
"share": "Compartir",
"share_user": "Compartir %s",
"share_post": "Compartir mensaje",
@ -110,26 +91,13 @@
"block_domain": "Bloquear a %s",
"unblock_domain": "Desbloquear a %s",
"settings": "Configuración",
"delete": "Eliminar",
"translate_post": {
"title": "Traducido desde el %s",
"unknown_language": "Desconocido"
},
"edit_post": "Editar",
"bookmark": "Marcar",
"remove_bookmark": "Quitar marcador",
"follow": "Seguir a %s",
"unfollow": "Dejar de seguir a %s"
"delete": "Eliminar"
},
"tabs": {
"home": "Principal",
"search_and_explore": "Buscar y explorar",
"notifications": "Notificaciones",
"profile": "Perfil",
"a11y": {
"search": "Buscar",
"explore": "Explorá"
}
"search": "Buscar",
"notification": "Notificación",
"profile": "Perfil"
},
"keyboard": {
"common": {
@ -164,8 +132,6 @@
"sensitive_content": "Contenido sensible",
"media_content_warning": "Tocá en cualquier parte para mostrar",
"tap_to_reveal": "Tocá para mostrar",
"load_embed": "Cargar lo insertado",
"link_via_user": "%s vía %s",
"poll": {
"vote": "Votar",
"closed": "Cerrada"
@ -187,12 +153,7 @@
"show_image": "Mostrar imagen",
"show_gif": "Mostrar GIF",
"show_video_player": "Mostrar reproductor de video",
"share_link_in_post": "Compartir enlace en mensaje",
"tap_then_hold_to_show_menu": "Tocá y mantené presionado para mostrar el menú",
"a11y_labels": {
"reblog": "Adherir",
"unreblog": "Deshacer adhesión"
}
"tap_then_hold_to_show_menu": "Tocá y mantené presionado para mostrar el menú"
},
"tag": {
"url": "Dirección web",
@ -207,30 +168,6 @@
"private": "Sólo sus seguidores pueden ver este mensaje.",
"private_from_me": "Sólo mis seguidores pueden ver este mensaje.",
"direct": "Sólo el usuario mencionado puede ver este mensaje."
},
"translation": {
"translated_from": "Traducido desde el %s vía %s",
"unknown_language": "Desconocido",
"unknown_provider": "Desconocido",
"show_original": "Mostrar original"
},
"media": {
"accessibility_label": "%s, archivo adjunto %d de %d",
"expand_image_hint": "Expande la imagen. Tocá dos veces y mantené pulsado para mostrar las acciones",
"expand_gif_hint": "Expande el GIF. Tocá dos veces y mantené pulsado para mostrar acciones",
"expand_video_hint": "Muestra el reproductor de vídeo. Tocá dos veces y mantené pulsado para mostrar acciones"
},
"posted_via_application": "%s vía %s",
"buttons": {
"reblogs_title": "Adhesiones",
"favorites_title": "Favoritos",
"edit_history_title": "Editar historial",
"edit_history_detail": "Última edición: %s"
},
"edited_at_timestamp_prefix": "Editado el %s",
"edit_history": {
"title": "Editar historial",
"original_post": "Mensaje original · %s"
}
},
"friendship": {
@ -240,11 +177,10 @@
"pending": "Pendientes",
"block": "Bloquear",
"block_user": "Bloquear a %s",
"block_domain": "Bloquear dominio %s",
"block_domain": "Bloquear %s",
"unblock": "Desbloquear",
"unblock_user": "Desbloquear a %s",
"blocked": "Bloqueado",
"domain_blocked": "Dominio bloqueado",
"mute": "Silenciar",
"mute_user": "Silenciar a %s",
"unmute": "Dejar de silenciar",
@ -274,49 +210,25 @@
"user_suspended_warning": "La cuenta de %s está suspendida."
}
}
},
"user_list": {
"no_verified_link": "Enlace no verificado",
"followers_count": "%@ seguidores"
}
},
"scene": {
"welcome": {
"log_in": "Iniciar sesión",
"learn_more": "Aprendé más",
"join_default_server": "Unite a %@",
"pick_server": "Elegí otro servidor",
"separator": {
"or": "o"
},
"education": {
"mastodon": {
"title": "Te damos la bienvenida a Mastodon",
"description": "Mastodon es una red social descentralizada, lo que significa que no la controla una sola compañía. Está conformada por varios servidores administrados independientemente, conectados entre sí."
},
"servers": {
"title": "¿Qué son los servidores?",
"description": "Cada cuenta de Mastodon está alojada en un servidor, y cada servidor tiene con sus propios valores, reglas y administradores. No importa cuál servidor elijas, podés seguir e interactuar con cuentas alojadas en cualquier servidor."
},
"a11y": {
"what_is_mastodon": {
"title": "¿Qué es Mastodon?"
}
}
}
"slogan": "La red social,\nnuevamente en tu poder.",
"get_started": "Comenzá",
"log_in": "Iniciar sesión"
},
"login": {
"title": "Te volvemos a dar la bienvenida",
"title": "Hola de nuevo",
"subtitle": "Iniciá sesión en el servidor en donde creaste tu cuenta.",
"server_search_field": {
"placeholder": "Ingresá la dirección web o buscá tu servidor"
}
},
"server_picker": {
"title": "Elegir servidor",
"title": "Mastodon está compuesto de cuentas en diferentes servidores.",
"subtitle": "Elegí un servidor basado en tu región, en tus intereses o uno de propósitos generales. Vas a poder interactuar con cualquier cuenta de Mastodon, independientemente del servidor.",
"button": {
"language": "Idioma",
"signup_speed": "Velocidad de registro",
"category": {
"all": "Todas",
"all_accessiblity_description": "Categoría: Todas",
@ -348,41 +260,18 @@
"finding_servers": "Buscando servidores disponibles…",
"bad_network": "Algo salió mal al cargar los datos. Revisá tu conexión de Internet.",
"no_results": "No hay resultados"
},
"signup_speed": {
"all": "Todos",
"instant": "Registro instantáneo",
"manually_reviewed": "Revisión manual"
},
"language": {
"all": "Todos"
},
"search": {
"placeholder": "Buscar nombre o dirección web"
},
"no_server_selected_hint": "Seleccionaremos un servidor basado en tu idioma si continuás sin hacer una selección."
},
"privacy": {
"title": "Privacidad",
"description": "Aunque la aplicación de Mastodon no recolecta ningún dato, el servidor al que te registrés puede tener una política diferente. Tomate un minuto para revisar y aceptar las políticas de privacidad de la aplicación de Mastodon y las políticas de privacidad de tu servidor.",
"policy": {
"ios": "Política de privacidad - Mastodon para iOS",
"server": "Política de privacidad - %s"
},
"button": {
"confirm": "Estoy de acuerdo"
}
},
"register": {
"title": "Crear cuenta",
"title": "Vamos a prepararte en %s",
"lets_get_you_set_up_on_domain": "Vamos a prepararte en %s",
"input": {
"avatar": {
"delete": "Eliminar"
},
"username": {
"placeholder": "nombre de usuario",
"duplicate_prompt": "Este nombre de usuario ya está en uso.",
"suggestion": "arg_%@"
"duplicate_prompt": "Este nombre de usuario ya está en uso."
},
"display_name": {
"placeholder": "nombre para mostrar"
@ -392,7 +281,6 @@
},
"password": {
"placeholder": "contraseña",
"confirmation_placeholder": "Confirmar contraseña",
"require": "Tu contraseña necesita al menos:",
"character_limit": "8 caracteres",
"accessibility": {
@ -417,7 +305,7 @@
"reason": {
"blocked": "%s contiene un proveedor de correo electrónico no permitido",
"unreachable": "%s parece no existir",
"taken": "%s ya está ocupado. Qué tal:",
"taken": "%s ya está en uso",
"reserved": "%s es una palabra clave reservada",
"accepted": "%s debe ser aceptado",
"blank": "%s es obligatorio",
@ -435,20 +323,21 @@
}
},
"server_rules": {
"title": "Reglas del servidor",
"subtitle": "Al continuar, aceptás seguir las siguientes reglas establecidas y aplicadas por los moderadores de **%s**.",
"title": "Algunas reglas básicas.",
"subtitle": "Estas reglas son establecidas por los administradores de %s.",
"prompt": "Al continuar, estás sujeto a los términos de servicio y política de privacidad de %s.",
"terms_of_service": "términos del servicio",
"privacy_policy": "política de privacidad",
"button": {
"confirm": "Estoy de acuerdo",
"disagree": "Rechazar"
"confirm": "Estoy de acuerdo"
}
},
"confirm_email": {
"title": "Revisá tu bandeja de entrada",
"tap_the_link_we_emailed_to_you_to_verify_your_account": "Pulsá el enlace que te enviamos para verificar %@. Te esperamos por acá.",
"title": "Una última cosa.",
"subtitle": "Tocá el enlace que te enviamos por correo electrónico para verificar tu cuenta.",
"tap_the_link_we_emailed_to_you_to_verify_your_account": "Tocá el enlace que te enviamos por correo electrónico para verificar tu cuenta",
"button": {
"open_email_app": "Abrir aplicación de correo electrónico",
"resend": "Reenviar"
},
"dont_receive_email": {
@ -461,11 +350,6 @@
"description": "Te acabamos de enviar un correo electrónico. Revisá tu carpeta de correo basura / correo no deseado / spam, si todavía no lo hiciste.",
"mail": "Correo",
"open_email_client": "Abrir cliente de correo electrónico"
},
"didnt_get_link": {
"prefix": "¿No recibiste un enlace?",
"resend_in": "Reenviar (%@)",
"resend_now": "Reenviar ahora."
}
},
"home_timeline": {
@ -476,20 +360,19 @@
"published": "¡Enviado!",
"Publishing": "Enviando mensaje…",
"accessibility": {
"logo_label": "Mastodon",
"logo_label": "Botón de logo",
"logo_hint": "Tocá para desplazarte hacia arriba y tocá de nuevo para ir a la ubicación anterior"
}
}
},
"suggestion_account": {
"title": "Popular en Mastodon",
"follow_all": "Seguir a todos"
"title": "Encontrá cuentas para seguir",
"follow_explain": "Cuando sigás una cuenta, verás sus mensajes en tu línea temporal principal."
},
"compose": {
"title": {
"new_post": "Nuevo mensaje",
"new_reply": "Nueva respuesta",
"edit_post": "Editar mensaje"
"new_reply": "Nueva respuesta"
},
"media_selection": {
"camera": "Tomar foto",
@ -513,7 +396,6 @@
"server_processing_state": "Servidor procesando…"
},
"poll": {
"title": "Encuesta",
"duration_time": "Duración: %s",
"thirty_minutes": "30 minutos",
"one_hour": "1 hora",
@ -523,11 +405,7 @@
"seven_days": "7 días",
"option_number": "Opción %ld",
"the_poll_is_invalid": "La encuesta no es válida",
"the_poll_has_empty_option": "La encuesta tiene opción vacía",
"add_option": "Agregar opción",
"remove_option": "Quitar opción",
"move_up": "Subir",
"move_down": "Bajar"
"the_poll_has_empty_option": "La encuesta tiene opción vacía"
},
"content_warning": {
"placeholder": "Escribí una advertencia precisa acá…"
@ -559,12 +437,6 @@
"toggle_content_warning": "Cambiar advertencia de contenido",
"append_attachment_entry": "Agregar archivo adjunto - %s",
"select_visibility_entry": "Seleccionar visibilidad - %s"
},
"language": {
"title": "Idioma del mensaje",
"suggested": "Sugerido",
"recent": "Reciente",
"other": "Otro idioma…"
}
},
"profile": {
@ -572,16 +444,11 @@
"follows_you": "Te sigue"
},
"dashboard": {
"my_posts": "mensajes",
"my_following": "siguiendo",
"my_followers": "seguidores",
"other_posts": "mensajes",
"other_following": "siguiendo",
"other_followers": "seguidores",
"familiar_followers": "mutuales"
"posts": "mensajes",
"following": "siguiendo",
"followers": "seguidores"
},
"fields": {
"joined": "En este servidor desde",
"add_row": "Agregar fila",
"placeholder": {
"label": "Nombre de campo",
@ -623,14 +490,6 @@
"confirm_hide_reblogs": {
"title": "Ocultar adhesiones",
"message": "Confirmá para ocultar adhesiones"
},
"confirm_block_domain": {
"title": "Bloquear dominio",
"message": "Confirmar para bloquear el dominio %s"
},
"confirm_unblock_domain": {
"title": "Desbloquear dominio",
"message": "Confirmar para desbloquear el dominio %s"
}
},
"accessibility": {
@ -678,20 +537,16 @@
}
},
"searching": {
"posts": "Mensajes que coinciden con %s\"",
"people": "Personas que coinciden con \"%s\"",
"profile": "Ir a @%s@%s",
"url": "Abrir dirección web en Mastodon",
"hashtag": "Ir a %s",
"no_user": {
"title": "No se encontró la cuenta del usuario",
"message": "No se encontró la cuenta de usuario \"%s\" en %s"
"segment": {
"all": "Todo",
"people": "Cuentas",
"hashtags": "Etiquetas",
"posts": "Mensajes"
},
"empty_state": {
"no_results": "No hay resultados"
},
"recent_search": "Búsquedas recientes",
"clear_all": "Limpiar todo",
"clear": "Limpiar"
}
},
@ -706,7 +561,7 @@
"intro": "Estos son los mensajes que están ganando tracción en tu rincón de Mastodon."
},
"favorite": {
"title": "Favoritos"
"title": "Tus favoritos"
},
"notification": {
"title": {
@ -737,79 +592,60 @@
"title": "Mensaje de %s"
},
"settings": {
"overview": {
"title": "Configuración",
"general": "General",
"notifications": "Notificaciones",
"support_mastodon": "Apoyá a Mastodon",
"about_mastodon": "Acerca de Mastodon",
"server_details": "Detalles del servidor",
"logout": "Cerrar sesión en %@"
},
"about_mastodon": {
"title": "Información",
"more_settings": "Configuración extra",
"contribute_to_mastodon": "Contribuí a Mastodon",
"privacy_policy": "Política de privacidad",
"clear_media_storage": "Limpiar almacenamiento multimedia"
},
"server_details": {
"about": "Información",
"rules": "Reglas",
"about_instance": {
"title": "Administración",
"message_admin": "Enviar mensaje a la administración",
"legal_notice": "Un aviso legal"
}
},
"general": {
"title": "General",
"title": "Configuración",
"section": {
"appearance": {
"section_title": "Apariencia",
"dark": "Oscura",
"light": "Clara",
"system": "Usar apariencia del dispositivo"
"title": "Apariencia",
"automatic": "Automática",
"light": "Siempre clara",
"dark": "Siempre oscura"
},
"ask_before": {
"section_title": "Preguntar antes de…",
"posting_without_alt_text": "Enviar sin texto alternativo",
"unfollowing_someone": "Dejar de seguir a alguien",
"boosting_a_post": "Adherir a un mensaje",
"deleting_a_post": "Eliminar un mensaje"
"look_and_feel": {
"title": "Apariencia",
"use_system": "Usar sistema",
"really_dark": "Oscuro de verdad",
"sorta_dark": "Algo oscuro",
"light": "Claro"
},
"design": {
"section_title": "Diseño",
"show_animations": "Reproducir avatares animados y emojis"
"notifications": {
"title": "Notificaciones",
"favorites": "Marca mi mensaje como favorito",
"follows": "Me sigue",
"boosts": "Adhiere a mi mensaje",
"mentions": "Me menciona",
"trigger": {
"anyone": "cualquiera",
"follower": "un seguidor",
"follow": "alguien a quien sigo",
"noone": "nadie",
"title": "Notificarme cuando"
}
},
"language": {
"section_title": "Idioma",
"default_post_language": "Idioma predeterminado de mensajes"
"preference": {
"title": "Configuración",
"true_black_dark_mode": "Modo negro oscuro real",
"disable_avatar_animation": "Deshabilitar avatares animados",
"disable_emoji_animation": "Deshabilitar emojis animados",
"using_default_browser": "Usar navegador web predet. para abrir enlaces",
"open_links_in_mastodon": "Abrir enlaces en Mastodon"
},
"links": {
"section_title": "Enlaces",
"open_in_mastodon": "Abrir en Mastodon",
"open_in_browser": "Abrir en el navegador web"
"boring_zone": {
"title": "La zona aburrida",
"account_settings": "Configuración de la cuenta",
"terms": "Términos del servicio",
"privacy": "Política de privacidad"
},
"spicy_zone": {
"title": "La zona picante",
"clear": "Limpiar memoria caché multimedia",
"signout": "Cerrar sesión"
}
},
"notifications": {
"title": "Notificaciones",
"policy": {
"title": "Recibir notificaciones de",
"anyone": "Cualquier cuenta",
"followers": "Cuentas que te siguen",
"follow": "Cuentas que seguís",
"noone": "Ninguna cuenta"
},
"alert": {
"mentions_and_replies": "Menciones y respuestas",
"boosts": "Adhesiones",
"favorites": "Favoritos",
"new_followers": "Nuevos seguidores"
},
"disabled": {
"notification_hint": "Activá las notificaciones desde la configuración de tu dispositivo para ver actualizaciones en la pantalla de bloqueo.",
"go_to_settings": "Ir a la configuración de notificaciones"
}
"footer": {
"mastodon_description": "Mastodon es software de código abierto. Podés informar errores en GitHub en %s (%s)"
},
"keyboard": {
"close_settings_window": "Cerrar ventana de configuración"
}
},
"report": {
@ -879,67 +715,13 @@
"dismiss_account_switcher": "Descartar cambio de cuenta",
"add_account": "Agregar cuenta"
},
"wizard": {
"new_in_mastodon": "Novedad en Mastodon",
"multiple_account_switch_intro_description": "Cambiá entre varias cuentas manteniendo presionado el botón del perfil.",
"accessibility_hint": "Tocá dos veces para descartar este asistente"
},
"bookmark": {
"title": "Marcadores"
},
"followed_tags": {
"title": "Etiquetas seguidas",
"header": {
"posts": "mensajes",
"participants": "participantes",
"posts_today": "mensajes hoy"
},
"actions": {
"follow": "Seguir",
"unfollow": "Dejar de seguir"
}
}
},
"extension": {
"open_in": {
"invalid_link_error": "Este no parece ser un enlace válido de Mastodon."
}
},
"widget": {
"common": {
"unsupported_widget_family": "Lo sentimos, pero esta familia de widgets no es compatible.",
"user_not_logged_in": "Por favor, abrí la aplicación de Mastodon para iniciar sesión en una cuenta."
},
"followers_count": {
"configuration_display_name": "Seguidores",
"configuration_description": "Mostrar número de seguidores.",
"title": "SEGUIDORES",
"followers_today": "%s seguidores hoy"
},
"multiple_followers": {
"configuration_display_name": "Múltiples seguidores",
"configuration_description": "Mostrar número de seguidores para múltiples cuentas.",
"mock_user": {
"display_name": "Otro seguidor",
"account_name": "otro@seguidor.social"
}
},
"latest_followers": {
"configuration_display_name": "Últimos seguidores",
"configuration_description": "Mostrar los últimos seguidores.",
"title": "Últimos seguidores",
"last_update": "Última actualización: %s"
},
"hashtag": {
"configuration": {
"display_name": "Etiqueta",
"description": "Muestra un mensaje reciente con la etiqueta seleccionada."
},
"not_found": {
"account_name": "Eugenio Mastodon",
"account": "@eugeniomastodon@no-existe-la.cuenta",
"content": "Lo sentimos, pero no pudimos encontrar ningún mensaje con la etiqueta <a>#%@</a>. Por favor, probá una <a>#EtiquetaDiferente</a> o revisá la configuración del widget."
},
"placeholder": {
"account_name": "Eugenio Mastodon",
"account": "@eugeniomastodon@no-existe-la.cuenta",
"content": "Así es cómo se vería un mensaje con una <a>#etiqueta</a>. Elegí una <a>#etiqueta</a> que quieras en la configuración del widget."
}
}
}
}

View File

@ -53,7 +53,7 @@
<key>a11y.plural.count.characters_left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@character_count@</string>
<string>%#@character_count@ left</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
@ -61,9 +61,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 carácter restante</string>
<string>1 character</string>
<key>other</key>
<string>%ld caracteres restantes</string>
<string>%ld characters</string>
</dict>
</dict>
<key>plural.count.followed_by_and_mutual</key>
@ -173,22 +173,6 @@
<string>%ld reblogueos</string>
</dict>
</dict>
<key>plural.count.reblog_a11y</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@reblog_count@</string>
<key>reblog_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 re-blog</string>
<key>other</key>
<string>%ld re-blogs</string>
</dict>
</dict>
<key>plural.count.reply</key>
<dict>
<key>NSStringLocalizedFormatKey</key>

View File

@ -15,6 +15,10 @@
"title": "Voto fallido",
"poll_ended": "La encuesta ha terminado"
},
"discard_post_content": {
"title": "Descartar borrador",
"message": "Confirma para descartar el contenido de la publicación."
},
"publish_post_failure": {
"title": "Error de publicación",
"message": "No se pudo publicar la publicación.\nPor favor, revise su conexión a internet.",
@ -47,29 +51,6 @@
"clean_cache": {
"title": "Limpiar Caché",
"message": "Se han limpiado con éxito %s de caché."
},
"translation_failed": {
"title": "Nota",
"message": "Error al traducir. Tal vez el administrador no ha habilitado las traducciones en este servidor o este servidor está ejecutando una versión antigua de Mastodon donde las traducciones aún no están soportadas.",
"button": "Aceptar"
},
"media_missing_alt_text": {
"title": "Media Missing Alt Text",
"message": "%d of your images are missing alt text.\nPost Anyway?",
"cancel": "Cancel",
"post": "Post"
},
"boost_a_post": {
"title_boost": "Boost Post?",
"title_unboost": "Unboost Post?",
"cancel": "Cancel",
"boost": "Boost",
"unboost": "Unboost"
},
"unfollow_user": {
"title": "Unfollow %@?",
"cancel": "Cancel",
"unfollow": "Unfollow"
}
},
"controls": {
@ -93,10 +74,10 @@
"take_photo": "Tomar foto",
"save_photo": "Guardar foto",
"copy_photo": "Copiar foto",
"sign_in": "Iniciar sesión",
"sign_in": "Log in",
"sign_up": "Create account",
"see_more": "Ver más",
"preview": "Vista previa",
"copy": "Copiar",
"share": "Compartir",
"share_user": "Compartir %s",
"share_post": "Compartir publicación",
@ -110,26 +91,13 @@
"block_domain": "Bloquear %s",
"unblock_domain": "Desbloquear %s",
"settings": "Configuración",
"delete": "Borrar",
"translate_post": {
"title": "Traducir desde %s",
"unknown_language": "Desconocido"
},
"edit_post": "Edit",
"bookmark": "Bookmark",
"remove_bookmark": "Remove Bookmark",
"follow": "Follow %s",
"unfollow": "Unfollow %s"
"delete": "Borrar"
},
"tabs": {
"home": "Inicio",
"search_and_explore": "Buscar y explorar",
"notifications": "Notificaciones",
"profile": "Perfil",
"a11y": {
"search": "Search",
"explore": "Explore"
}
"search": "Buscar",
"notification": "Notificación",
"profile": "Perfil"
},
"keyboard": {
"common": {
@ -164,17 +132,15 @@
"sensitive_content": "Contenido sensible",
"media_content_warning": "Pulsa en cualquier sitio para mostrar",
"tap_to_reveal": "Tocar para revelar",
"load_embed": "Cargar incrustado",
"link_via_user": "%s vía %s",
"poll": {
"vote": "Vota",
"closed": "Cerrado"
},
"meta_entity": {
"url": "Enlace: %s",
"hashtag": "Etiqueta: %s",
"mention": "Mostrar Perfil: %s",
"email": "Dirección de correo electrónico: %s"
"url": "Link: %s",
"hashtag": "Hashtag: %s",
"mention": "Show Profile: %s",
"email": "Email address: %s"
},
"actions": {
"reply": "Responder",
@ -187,12 +153,7 @@
"show_image": "Mostrar imagen",
"show_gif": "Mostrar GIF",
"show_video_player": "Mostrar reproductor de vídeo",
"share_link_in_post": "Compartir enlace en publicación",
"tap_then_hold_to_show_menu": "Toca, después mantén para mostrar el menú",
"a11y_labels": {
"reblog": "Re-blog",
"unreblog": "Undo re-blog"
}
"tap_then_hold_to_show_menu": "Toca, después mantén para mostrar el menú"
},
"tag": {
"url": "URL",
@ -207,30 +168,6 @@
"private": "Sólo sus seguidores pueden ver este mensaje.",
"private_from_me": "Sólo mis seguidores pueden ver este mensaje.",
"direct": "Sólo el usuario mencionado puede ver este mensaje."
},
"translation": {
"translated_from": "Traducido desde %s usando %s",
"unknown_language": "Desconocido",
"unknown_provider": "Desconocido",
"show_original": "Show Original"
},
"media": {
"accessibility_label": "%s, adjunto %d de %d",
"expand_image_hint": "Expande la imagen. Toca dos veces y mantén presionado para mostrar acciones",
"expand_gif_hint": "Expande el GIF. Toca dos veces y mantén presionado para mostrar acciones",
"expand_video_hint": "Muestra el reproductor de video. Toca dos veces y mantén presionado para mostrar acciones"
},
"posted_via_application": "%s via %s",
"buttons": {
"reblogs_title": "Reblogs",
"favorites_title": "Favorites",
"edit_history_title": "Edit History",
"edit_history_detail": "Last edit %s"
},
"edited_at_timestamp_prefix": "Edited %s",
"edit_history": {
"title": "Edit History",
"original_post": "Original Post · %s"
}
},
"friendship": {
@ -240,19 +177,18 @@
"pending": "Pendiente",
"block": "Bloquear",
"block_user": "Bloquear a %s",
"block_domain": "Block domain %s",
"block_domain": "Bloquear a %s",
"unblock": "Desbloquear",
"unblock_user": "Desbloquear a %s",
"blocked": "Bloqueado",
"domain_blocked": "Domain Blocked",
"mute": "Silenciar",
"mute_user": "Silenciar a %s",
"unmute": "Desmutear",
"unmute_user": "Desmutear a %s",
"muted": "Silenciado",
"edit_info": "Editar Info",
"show_reblogs": "Mostrar reblogs",
"hide_reblogs": "Ocultar reblogs"
"show_reblogs": "Show Reblogs",
"hide_reblogs": "Hide Reblogs"
},
"timeline": {
"filtered": "Filtrado",
@ -274,49 +210,25 @@
"user_suspended_warning": "La cuenta de %s ha sido suspendida."
}
}
},
"user_list": {
"no_verified_link": "No verified link",
"followers_count": "%@ followers"
}
},
"scene": {
"welcome": {
"log_in": "Iniciar sesión",
"learn_more": "Learn more",
"join_default_server": "Join %@",
"pick_server": "Pick another server",
"separator": {
"or": "or"
},
"education": {
"mastodon": {
"title": "Welcome to Mastodon",
"description": "Mastodon is a decentralized social network, meaning no single company controls it. Its made up of many independently-run servers, all connected together."
},
"servers": {
"title": "What are servers?",
"description": "Every Mastodon account is hosted on a server — each with its own values, rules, & admins. No matter which one you pick, you can follow and interact with people on any server."
},
"a11y": {
"what_is_mastodon": {
"title": "What is Mastodon?"
}
}
}
"slogan": "Las redes sociales\nde nuevo en tus manos.",
"get_started": "Empezar",
"log_in": "Iniciar sesión"
},
"login": {
"title": "Welcome back",
"subtitle": "Inicie sesión en el servidor en el que creó su cuenta.",
"subtitle": "Log you in on the server you created your account on.",
"server_search_field": {
"placeholder": "Introduzca la URL o busque su servidor"
"placeholder": "Enter URL or search for your server"
}
},
"server_picker": {
"title": "Pick Server",
"title": "Elige un servidor,\ncualquier servidor.",
"subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.",
"button": {
"language": "Language",
"signup_speed": "Sign-up Speed",
"category": {
"all": "Todas",
"all_accessiblity_description": "Categoría: Todas",
@ -342,47 +254,24 @@
"category": "CATEGORÍA"
},
"input": {
"search_servers_or_enter_url": "Buscar comunidades o introducir URL"
"search_servers_or_enter_url": "Search communities or enter URL"
},
"empty_state": {
"finding_servers": "Encontrando servidores disponibles...",
"bad_network": "Algo ha ido mal al cargar los datos. Comprueba tu conexión a Internet.",
"no_results": "Sin resultados"
},
"signup_speed": {
"all": "All",
"instant": "Instant Sign-up",
"manually_reviewed": "Manual Review"
},
"language": {
"all": "All"
},
"search": {
"placeholder": "Search name or URL"
},
"no_server_selected_hint": "Well pick a server based on your language if you continue without making a selection."
},
"privacy": {
"title": "Privacy",
"description": "Although the Mastodon app does not collect any data, the server you sign up through may have a different policy. Take a minute to review and agree to the Mastodon app privacy policy and your servers privacy policy.",
"policy": {
"ios": "Privacy Policy - Mastodon for iOS",
"server": "Privacy Policy - %s"
},
"button": {
"confirm": "I Agree"
}
},
"register": {
"title": "Create Account",
"title": "Háblanos de ti.",
"lets_get_you_set_up_on_domain": "Deja que te preparemos en %s",
"input": {
"avatar": {
"delete": "Borrar"
},
"username": {
"placeholder": "nombre de usuario",
"duplicate_prompt": "Este nombre de usuario ya está en uso.",
"suggestion": "amazing_%@"
"duplicate_prompt": "Este nombre de usuario ya está en uso."
},
"display_name": {
"placeholder": "nombre a mostrar"
@ -392,7 +281,6 @@
},
"password": {
"placeholder": "contraseña",
"confirmation_placeholder": "Confirm Password",
"require": "Tu contraseña debe contener como mínimo:",
"character_limit": "8 caracteres",
"accessibility": {
@ -417,7 +305,7 @@
"reason": {
"blocked": "%s contiene un proveedor de correo no permitido",
"unreachable": "%s parece no existir",
"taken": "%s is already taken. How about:",
"taken": "%s ya está en uso",
"reserved": "%s es una palabra clave reservada",
"accepted": "%s debe ser aceptado",
"blank": "Se requiere %s",
@ -435,37 +323,33 @@
}
},
"server_rules": {
"title": "Server Rules",
"subtitle": "By continuing, you agree to follow by the following rules set and enforced by the **%s** moderators.",
"title": "Algunas reglas básicas.",
"subtitle": "Estas reglas están establecidas por los administradores de %s.",
"prompt": "Si continúas estarás sujeto a los términos de servicio y la política de privacidad de %s.",
"terms_of_service": "términos del servicio",
"privacy_policy": "política de privacidad",
"button": {
"confirm": "I Agree",
"disagree": "Disagree"
"confirm": "Acepto"
}
},
"confirm_email": {
"title": "Check Your Inbox",
"tap_the_link_we_emailed_to_you_to_verify_your_account": "Tap the link we sent you to verify %@. Well wait right here.",
"title": "Una última cosa.",
"subtitle": "Te acabamos de enviar un correo a %s,\npulsa en el enlace para confirmar tu cuenta.",
"tap_the_link_we_emailed_to_you_to_verify_your_account": "Toca el enlace que te enviamos por correo electrónico para verificar tu cuenta",
"button": {
"open_email_app": "Abrir Aplicación de Correo Electrónico",
"resend": "Reenviar"
},
"dont_receive_email": {
"title": "Check your Email",
"title": "Revisa tu correo electrónico",
"description": "Comprueba que tu dirección de correo electrónico sea correcta y revisa la carpeta de correo no deseado si no lo has hecho ya.",
"resend_email": "Volver a Enviar Correo Electrónico"
},
"open_email_app": {
"title": "Check your Inbox.",
"title": "Revisa tu bandeja de entrada.",
"description": "Te acabamos de enviar un correo electrónico. Revisa tu carpeta de correo no deseado si no lo has hecho ya.",
"mail": "Correo",
"open_email_client": "Abrir Cliente de Correo Electrónico"
},
"didnt_get_link": {
"prefix": "Didnt get a link?",
"resend_in": "Resend (%@)",
"resend_now": "Resend now."
}
},
"home_timeline": {
@ -476,20 +360,19 @@
"published": "¡Publicado!",
"Publishing": "Publicación en curso...",
"accessibility": {
"logo_label": "Mastodon",
"logo_label": "Botón del logo",
"logo_hint": "Toca para desplazarte hacia arriba y toca de nuevo para la localización anterior"
}
}
},
"suggestion_account": {
"title": "Popular on Mastodon",
"follow_all": "Follow all"
"title": "Encuentra Gente a la que Seguir",
"follow_explain": "Cuando sigas a alguien verás sus publicaciones en tu página de inicio."
},
"compose": {
"title": {
"new_post": "Nueva Publicación",
"new_reply": "Nueva Respuesta",
"edit_post": "Edit Post"
"new_reply": "Nueva Respuesta"
},
"media_selection": {
"camera": "Hacer Foto",
@ -505,15 +388,14 @@
"attachment_broken": "Este %s está roto y no puede\nsubirse a Mastodon.",
"description_photo": "Describe la foto para los usuarios con dificultad visual...",
"description_video": "Describe el vídeo para los usuarios con dificultad visual...",
"load_failed": "Carga fallida",
"upload_failed": "Error al cargar",
"can_not_recognize_this_media_attachment": "No se puede reconocer este archivo adjunto",
"attachment_too_large": "Adjunto demasiado grande",
"compressing_state": "Comprimiendo...",
"server_processing_state": "Procesando en el servidor..."
"load_failed": "Load Failed",
"upload_failed": "Upload Failed",
"can_not_recognize_this_media_attachment": "Can not recognize this media attachment",
"attachment_too_large": "Attachment too large",
"compressing_state": "Compressing...",
"server_processing_state": "Server Processing..."
},
"poll": {
"title": "Poll",
"duration_time": "Duración: %s",
"thirty_minutes": "30 minutos",
"one_hour": "1 Hora",
@ -522,12 +404,8 @@
"three_days": "4 Días",
"seven_days": "7 Días",
"option_number": "Opción %ld",
"the_poll_is_invalid": "La encuesta no es válida",
"the_poll_has_empty_option": "La encuesta tiene una opción vacía",
"add_option": "Add Option",
"remove_option": "Remove Option",
"move_up": "Move Up",
"move_down": "Move Down"
"the_poll_is_invalid": "The poll is invalid",
"the_poll_has_empty_option": "The poll has empty option"
},
"content_warning": {
"placeholder": "Escribe una advertencia precisa aquí..."
@ -549,8 +427,8 @@
"enable_content_warning": "Activar Advertencia de Contenido",
"disable_content_warning": "Desactivar Advertencia de Contenido",
"post_visibility_menu": "Menú de Visibilidad de la Publicación",
"post_options": "Opciones de Publicación",
"posting_as": "Publicado como %s"
"post_options": "Post Options",
"posting_as": "Posting as %s"
},
"keyboard": {
"discard_post": "Descartar Publicación",
@ -559,12 +437,6 @@
"toggle_content_warning": "Conmutar Advertencia de Contenido",
"append_attachment_entry": "Añadir Adjunto - %s",
"select_visibility_entry": "Seleccionar Visibilidad - %s"
},
"language": {
"title": "Post Language",
"suggested": "Suggested",
"recent": "Recent",
"other": "Other Language…"
}
},
"profile": {
@ -572,24 +444,19 @@
"follows_you": "Te sigue"
},
"dashboard": {
"my_posts": "publicaciones",
"my_following": "siguiendo",
"my_followers": "seguidores",
"other_posts": "publicaciones",
"other_following": "siguiendo",
"other_followers": "seguidores",
"familiar_followers": "mutuals"
"posts": "publicaciones",
"following": "siguiendo",
"followers": "seguidores"
},
"fields": {
"joined": "Se unió",
"add_row": "Añadir Fila",
"placeholder": {
"label": "Nombre para el campo",
"content": "Contenido"
},
"verified": {
"short": "Verificado en %s",
"long": "La propiedad de este enlace fue verificada el %s"
"short": "Verified on %s",
"long": "Ownership of this link was checked on %s"
}
},
"segmented_control": {
@ -617,20 +484,12 @@
"message": "Confirmar para desbloquear a %s"
},
"confirm_show_reblogs": {
"title": "Mostrar reblogs",
"message": "Confirmar para mostrar reblogs"
"title": "Show Reblogs",
"message": "Confirm to show reblogs"
},
"confirm_hide_reblogs": {
"title": "Ocultar reblogs",
"message": "Confirmar para ocultar reblogs"
},
"confirm_block_domain": {
"title": "Block domain",
"message": "Confirm to block domain %s"
},
"confirm_unblock_domain": {
"title": "Unblock domain",
"message": "Confirm to unblock domain %s"
"title": "Hide Reblogs",
"message": "Confirm to hide reblogs"
}
},
"accessibility": {
@ -678,20 +537,16 @@
}
},
"searching": {
"posts": "Posts matching \"%s\"",
"people": "People matching \"%s\"",
"profile": "Go to @%s@%s",
"url": "Open URL in Mastodon",
"hashtag": "Go to #%s",
"no_user": {
"title": "No User Account Found",
"message": "There's no Useraccount \"%s\" on %s"
"segment": {
"all": "Todo",
"people": "Gente",
"hashtags": "Etiquetas",
"posts": "Publicaciones"
},
"empty_state": {
"no_results": "Sin resultados"
},
"recent_search": "Búsquedas recientes",
"clear_all": "Clear all",
"clear": "Borrar"
}
},
@ -706,7 +561,7 @@
"intro": "Estas son las publicaciones que están ganando tracción en tu rincón de Mastodon."
},
"favorite": {
"title": "Favorites"
"title": "Tus Favoritos"
},
"notification": {
"title": {
@ -737,79 +592,60 @@
"title": "Publicación de %s"
},
"settings": {
"overview": {
"title": "Settings",
"general": "General",
"notifications": "Notifications",
"support_mastodon": "Support Mastodon",
"about_mastodon": "About Mastodon",
"server_details": "Server Details",
"logout": "Logout %@"
},
"about_mastodon": {
"title": "About",
"more_settings": "Even More Settings",
"contribute_to_mastodon": "Contribute to Mastodon",
"privacy_policy": "Privacy Policy",
"clear_media_storage": "Clear Media Storage"
},
"server_details": {
"about": "About",
"rules": "Rules",
"about_instance": {
"title": "Administrator",
"message_admin": "Message Admin",
"legal_notice": "A legal notice"
}
},
"general": {
"title": "General",
"title": "Configuración",
"section": {
"appearance": {
"section_title": "Appearance",
"dark": "Dark",
"light": "Light",
"system": "Use Device Appearance"
"title": "Apariencia",
"automatic": "Automática",
"light": "Siempre Clara",
"dark": "Siempre Oscura"
},
"ask_before": {
"section_title": "Ask before…",
"posting_without_alt_text": "Posting without Alt Text",
"unfollowing_someone": "Unfollowing Someone",
"boosting_a_post": "Boosting a Post",
"deleting_a_post": "Deleting a Post"
"look_and_feel": {
"title": "Apariencia",
"use_system": "Uso del sistema",
"really_dark": "Realmente Oscuro",
"sorta_dark": "Más o Menos Oscuro",
"light": "Claro"
},
"design": {
"section_title": "Design",
"show_animations": "Play Animated Avatars and Emoji"
"notifications": {
"title": "Notificaciones",
"favorites": "Marque como favorita mi publicación",
"follows": "Me siga",
"boosts": "Rebloguee mi publicación",
"mentions": "Me mencione",
"trigger": {
"anyone": "cualquiera",
"follower": "un seguidor",
"follow": "cualquiera que yo siga",
"noone": "nadie",
"title": "Recibir notificación cuando"
}
},
"language": {
"section_title": "Language",
"default_post_language": "Default Post Language"
"preference": {
"title": "Preferencias",
"true_black_dark_mode": "Modo oscuro negro real",
"disable_avatar_animation": "Deshabilitar avatares animados",
"disable_emoji_animation": "Deshabilitar emojis animados",
"using_default_browser": "Usar navegador predeterminado para abrir los enlaces",
"open_links_in_mastodon": "Abrir links en Mastodon"
},
"links": {
"section_title": "Links",
"open_in_mastodon": "Open in Mastodon",
"open_in_browser": "Open in Browser"
"boring_zone": {
"title": "La Zona Aburrida",
"account_settings": "Configuración de Cuenta",
"terms": "Términos de Servicio",
"privacy": "Política de Privacidad"
},
"spicy_zone": {
"title": "La Zona Picante",
"clear": "Borrar Caché de Multimedia",
"signout": "Cerrar Sesión"
}
},
"notifications": {
"title": "Notifications",
"policy": {
"title": "Get Notifications from",
"anyone": "Anyone",
"followers": "People who follow you",
"follow": "People you follow",
"noone": "No one"
},
"alert": {
"mentions_and_replies": "Mentions & Replies",
"boosts": "Boosts",
"favorites": "Favorites",
"new_followers": "New Followers"
},
"disabled": {
"notification_hint": "Turn on notifications from your device settings to see updates on your lock screen.",
"go_to_settings": "Go to Notification Settings"
}
"footer": {
"mastodon_description": "Mastodon es software de código abierto. Puedes reportar errores en GitHub en %s (%s)"
},
"keyboard": {
"close_settings_window": "Cerrar Ventana de Configuración"
}
},
"report": {
@ -879,67 +715,13 @@
"dismiss_account_switcher": "Descartar el selector de cuentas",
"add_account": "Añadir cuenta"
},
"wizard": {
"new_in_mastodon": "Nuevo en Mastodon",
"multiple_account_switch_intro_description": "Cambie entre varias cuentas manteniendo presionado el botón de perfil.",
"accessibility_hint": "Haz doble toque para descartar este asistente"
},
"bookmark": {
"title": "Marcadores"
},
"followed_tags": {
"title": "Etiquetas seguidas",
"header": {
"posts": "publicaciones",
"participants": "participantes",
"posts_today": "publicaciones de hoy"
},
"actions": {
"follow": "Seguir",
"unfollow": "Dejar de seguir"
}
}
},
"extension": {
"open_in": {
"invalid_link_error": "This doesn't seem to be a valid Mastodon link."
}
},
"widget": {
"common": {
"unsupported_widget_family": "Sorry but this Widget family is unsupported.",
"user_not_logged_in": "Please open Mastodon to log in to an Account."
},
"followers_count": {
"configuration_display_name": "Followers",
"configuration_description": "Show number of followers.",
"title": "FOLLOWERS",
"followers_today": "%s followers today"
},
"multiple_followers": {
"configuration_display_name": "Multiple followers",
"configuration_description": "Show number of followers for multiple accounts.",
"mock_user": {
"display_name": "Another follower",
"account_name": "another@follower.social"
}
},
"latest_followers": {
"configuration_display_name": "Latest followers",
"configuration_description": "Show latest followers.",
"title": "Latest followers",
"last_update": "Last update: %s"
},
"hashtag": {
"configuration": {
"display_name": "Hashtag",
"description": "Shows a recent post with the selected hashtag."
},
"not_found": {
"account_name": "John Mastodon",
"account": "@johnMastodon@no-such.account",
"content": "Sorry, we couldnt find any posts with the hashtag <a>#%@</a>. Please try a <a>#DifferentHashtag</a> or check the widget settings."
},
"placeholder": {
"account_name": "John Mastodon",
"account": "@johnMastodon@no-such.account",
"content": "This is how a post with a <a>#hashtag</a> would look. Pick whichever <a>#hashtag</a> you want in the widget settings."
}
"title": "Bookmarks"
}
}
}

View File

@ -53,7 +53,7 @@
<key>a11y.plural.count.characters_left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@character_count@</string>
<string>%#@character_count@ left</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
@ -61,15 +61,15 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 character left</string>
<string>1 character</string>
<key>other</key>
<string>%ld characters left</string>
<string>%ld characters</string>
</dict>
</dict>
<key>plural.count.followed_by_and_mutual</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@names@: "%#@count_mutual@</string>
<string>%#@names@%#@count_mutual@</string>
<key>names</key>
<dict>
<key>one</key>
@ -173,22 +173,6 @@
<string>%ld bultzada</string>
</dict>
</dict>
<key>plural.count.reblog_a11y</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@reblog_count@</string>
<key>reblog_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 re-blog</string>
<key>other</key>
<string>%ld re-blogs</string>
</dict>
</dict>
<key>plural.count.reply</key>
<dict>
<key>NSStringLocalizedFormatKey</key>

View File

@ -15,6 +15,10 @@
"title": "Hutsegitea botoa ematean",
"poll_ended": "Inkesta amaitu da"
},
"discard_post_content": {
"title": "Baztertu zirriborroa",
"message": "Berretsi idatzitako bidalketaren edukia baztertzea."
},
"publish_post_failure": {
"title": "Hutsegitea argitaratzean",
"message": "Huts egin du bidalketa argitaratzean.\nEgiaztatu Interneteko konexioa.",
@ -47,29 +51,6 @@
"clean_cache": {
"title": "Garbitu cache-a",
"message": "Behar bezala garbitu da %s cache-a."
},
"translation_failed": {
"title": "Note",
"message": "Translation failed. Maybe the administrator has not enabled translations on this server or this server is running an older version of Mastodon where translations are not yet supported.",
"button": "OK"
},
"media_missing_alt_text": {
"title": "Media Missing Alt Text",
"message": "%d of your images are missing alt text.\nPost Anyway?",
"cancel": "Cancel",
"post": "Post"
},
"boost_a_post": {
"title_boost": "Boost Post?",
"title_unboost": "Unboost Post?",
"cancel": "Cancel",
"boost": "Boost",
"unboost": "Unboost"
},
"unfollow_user": {
"title": "Unfollow %@?",
"cancel": "Cancel",
"unfollow": "Unfollow"
}
},
"controls": {
@ -93,10 +74,10 @@
"take_photo": "Atera argazkia",
"save_photo": "Gorde argazkia",
"copy_photo": "Kopiatu argazkia",
"sign_in": "Hasi saioa",
"sign_in": "Log in",
"sign_up": "Create account",
"see_more": "Ikusi gehiago",
"preview": "Aurrebista",
"copy": "Copy",
"share": "Partekatu",
"share_user": "Partekatu %s",
"share_post": "Partekatu bidalketa",
@ -110,26 +91,13 @@
"block_domain": "Blokeatu %s",
"unblock_domain": "Desblokeatu %s",
"settings": "Ezarpenak",
"delete": "Ezabatu",
"translate_post": {
"title": "Translate from %s",
"unknown_language": "Unknown"
},
"edit_post": "Edit",
"bookmark": "Bookmark",
"remove_bookmark": "Remove Bookmark",
"follow": "Follow %s",
"unfollow": "Unfollow %s"
"delete": "Ezabatu"
},
"tabs": {
"home": "Hasiera",
"search_and_explore": "Search and Explore",
"notifications": "Notifications",
"profile": "Profila",
"a11y": {
"search": "Search",
"explore": "Explore"
}
"search": "Bilatu",
"notification": "Jakinarazpena",
"profile": "Profila"
},
"keyboard": {
"common": {
@ -161,20 +129,18 @@
"show_post": "Erakutsi bidalketa",
"show_user_profile": "Erakutsi erabiltzailearen profila",
"content_warning": "Edukiaren abisua",
"sensitive_content": "Eduki hunkigarria",
"sensitive_content": "Sensitive Content",
"media_content_warning": "Ukitu edonon bistaratzeko",
"tap_to_reveal": "Sakatu erakusteko",
"load_embed": "Load Embed",
"link_via_user": "%s via %s",
"poll": {
"vote": "Bozkatu",
"closed": "Itxita"
},
"meta_entity": {
"url": "Lotura: %s",
"hashtag": "Traolak: %s",
"mention": "Erakutsi Profila: %s",
"email": "E-posta helbidea: %s"
"url": "Link: %s",
"hashtag": "Hashtag: %s",
"mention": "Show Profile: %s",
"email": "Email address: %s"
},
"actions": {
"reply": "Erantzun",
@ -187,12 +153,7 @@
"show_image": "Erakutsi irudia",
"show_gif": "Erakutsi GIFa",
"show_video_player": "Erakutsi bideo-erreproduzigailua",
"share_link_in_post": "Share Link in Post",
"tap_then_hold_to_show_menu": "Sakatu eta eutsi menua erakusteko",
"a11y_labels": {
"reblog": "Re-blog",
"unreblog": "Undo re-blog"
}
"tap_then_hold_to_show_menu": "Sakatu eta eutsi menua erakusteko"
},
"tag": {
"url": "URLa",
@ -207,30 +168,6 @@
"private": "Beren jarraitzaileek soilik ikus dezakete bidalketa hau.",
"private_from_me": "Nire jarraitzaileek soilik ikus dezakete bidalketa hau.",
"direct": "Aipatutako erabiltzaileek soilik ikus dezakete bidalketa hau."
},
"translation": {
"translated_from": "Translated from %s using %s",
"unknown_language": "Unknown",
"unknown_provider": "Unknown",
"show_original": "Show Original"
},
"media": {
"accessibility_label": "%s, attachment %d of %d",
"expand_image_hint": "Expands the image. Double-tap and hold to show actions",
"expand_gif_hint": "Expands the GIF. Double-tap and hold to show actions",
"expand_video_hint": "Shows the video player. Double-tap and hold to show actions"
},
"posted_via_application": "%s via %s",
"buttons": {
"reblogs_title": "Reblogs",
"favorites_title": "Favorites",
"edit_history_title": "Edit History",
"edit_history_detail": "Last edit %s"
},
"edited_at_timestamp_prefix": "Edited %s",
"edit_history": {
"title": "Edit History",
"original_post": "Original Post · %s"
}
},
"friendship": {
@ -240,19 +177,18 @@
"pending": "Zain",
"block": "Blokeatu",
"block_user": "Blokeatu %s",
"block_domain": "Block domain %s",
"block_domain": "Blokeatu %s",
"unblock": "Desblokeatu",
"unblock_user": "Desblokeatu %s",
"blocked": "Blokeatuta",
"domain_blocked": "Domain Blocked",
"mute": "Mututu",
"mute_user": "Mututu %s",
"unmute": "Desmututu",
"unmute_user": "Desmututu %s",
"muted": "Mutututa",
"edit_info": "Editatu informazioa",
"show_reblogs": "Ikusi bultzadak",
"hide_reblogs": "Ezkutatu bultzadak"
"show_reblogs": "Show Reblogs",
"hide_reblogs": "Hide Reblogs"
},
"timeline": {
"filtered": "Iragazita",
@ -274,36 +210,13 @@
"user_suspended_warning": "%s kontua kanporatua izan da."
}
}
},
"user_list": {
"no_verified_link": "No verified link",
"followers_count": "%@ followers"
}
},
"scene": {
"welcome": {
"log_in": "Hasi saioa",
"learn_more": "Learn more",
"join_default_server": "Join %@",
"pick_server": "Pick another server",
"separator": {
"or": "or"
},
"education": {
"mastodon": {
"title": "Welcome to Mastodon",
"description": "Mastodon is a decentralized social network, meaning no single company controls it. Its made up of many independently-run servers, all connected together."
},
"servers": {
"title": "What are servers?",
"description": "Every Mastodon account is hosted on a server — each with its own values, rules, & admins. No matter which one you pick, you can follow and interact with people on any server."
},
"a11y": {
"what_is_mastodon": {
"title": "What is Mastodon?"
}
}
}
"slogan": "Sare sozialak\nberriz zure eskuetan.",
"get_started": "Nola hasi",
"log_in": "Hasi saioa"
},
"login": {
"title": "Welcome back",
@ -313,10 +226,9 @@
}
},
"server_picker": {
"title": "Pick Server",
"title": "Aukeratu zerbitzari bat,\nedozein zerbitzari.",
"subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.",
"button": {
"language": "Language",
"signup_speed": "Sign-up Speed",
"category": {
"all": "Guztiak",
"all_accessiblity_description": "Kategoria: Guztiak",
@ -348,41 +260,18 @@
"finding_servers": "Erabilgarri dauden zerbitzariak bilatzen...",
"bad_network": "Arazoren bat egon da datuak kargatzean. Egiaztatu zure Interneteko konexioa.",
"no_results": "Emaitzarik ez"
},
"signup_speed": {
"all": "All",
"instant": "Instant Sign-up",
"manually_reviewed": "Manual Review"
},
"language": {
"all": "All"
},
"search": {
"placeholder": "Search name or URL"
},
"no_server_selected_hint": "Well pick a server based on your language if you continue without making a selection."
},
"privacy": {
"title": "Privacy",
"description": "Although the Mastodon app does not collect any data, the server you sign up through may have a different policy. Take a minute to review and agree to the Mastodon app privacy policy and your servers privacy policy.",
"policy": {
"ios": "Privacy Policy - Mastodon for iOS",
"server": "Privacy Policy - %s"
},
"button": {
"confirm": "I Agree"
}
},
"register": {
"title": "Create Account",
"title": "Hitz egin iezaguzu zuri buruz.",
"lets_get_you_set_up_on_domain": "Lets get you set up on %s",
"input": {
"avatar": {
"delete": "Ezabatu"
},
"username": {
"placeholder": "erabiltzaile-izena",
"duplicate_prompt": "Erabiltzaile-izen hau hartuta dago.",
"suggestion": "amazing_%@"
"duplicate_prompt": "Erabiltzaile-izen hau hartuta dago."
},
"display_name": {
"placeholder": "pantaila-izena"
@ -392,7 +281,6 @@
},
"password": {
"placeholder": "pasahitza",
"confirmation_placeholder": "Confirm Password",
"require": "Zure pasahitzak izan behar ditu gutxienez:",
"character_limit": "8 karaktere",
"accessibility": {
@ -417,7 +305,7 @@
"reason": {
"blocked": "%s(e)k onartu gabeko eposta hornitzaile bat erabiltzen du",
"unreachable": "dirudienez %s ez da existitzen",
"taken": "%s is already taken. How about:",
"taken": "%s dagoeneko erabiltzen da",
"reserved": "%s gako-hitz erreserbatu bat da",
"accepted": "%s onartu behar da",
"blank": "%s beharrezkoa da",
@ -435,37 +323,33 @@
}
},
"server_rules": {
"title": "Server Rules",
"subtitle": "By continuing, you agree to follow by the following rules set and enforced by the **%s** moderators.",
"title": "Oinarrizko arau batzuk.",
"subtitle": "Arau hauek %s instantziako administratzaileek ezarri dituzte.",
"prompt": "Jarraituz gero, %s instantziaren zerbitzu-baldintzak eta pribatutasun-gidalerroak onartzen dituzu.",
"terms_of_service": "zerbitzu-baldintzak",
"privacy_policy": "pribatutasun-gidalerroak",
"button": {
"confirm": "I Agree",
"disagree": "Disagree"
"confirm": "Ados nago"
}
},
"confirm_email": {
"title": "Check Your Inbox",
"tap_the_link_we_emailed_to_you_to_verify_your_account": "Tap the link we sent you to verify %@. Well wait right here.",
"title": "Eta azkenik...",
"subtitle": "Sakatu epostaz bidali dizugun loturan zure kontua egiaztatzeko.",
"tap_the_link_we_emailed_to_you_to_verify_your_account": "Tap the link we emailed to you to verify your account",
"button": {
"open_email_app": "Ireki eposta aplikazioa",
"resend": "Berbidali"
},
"dont_receive_email": {
"title": "Check your Email",
"title": "Begiratu zure eposta",
"description": "Egiaztatu zure eposta helbidea zuzena den eta begiratu zaborraren karpeta.",
"resend_email": "Birbidali eposta"
},
"open_email_app": {
"title": "Check your Inbox.",
"title": "Egiaztatu zure sarrerako ontzia.",
"description": "Eposta bat bidali dizugu. Egiaztatu zure zaborraren karpeta.",
"mail": "Posta",
"open_email_client": "Ireki eposta bezeroa"
},
"didnt_get_link": {
"prefix": "Didnt get a link?",
"resend_in": "Resend (%@)",
"resend_now": "Resend now."
}
},
"home_timeline": {
@ -476,20 +360,19 @@
"published": "Argitaratua!",
"Publishing": "Bidalketa argitaratzen...",
"accessibility": {
"logo_label": "Mastodon",
"logo_label": "Logo Button",
"logo_hint": "Tap to scroll to top and tap again to previous location"
}
}
},
"suggestion_account": {
"title": "Popular on Mastodon",
"follow_all": "Follow all"
"title": "Bilatu jarraitzeko jendea",
"follow_explain": "Norbait jarraitzen duzunean, bere bidalketak zure hasierako denbora-lerroan agertuko zaizkizu."
},
"compose": {
"title": {
"new_post": "Bidalketa berria",
"new_reply": "Erantzun berria",
"edit_post": "Edit Post"
"new_reply": "Erantzun berria"
},
"media_selection": {
"camera": "Atera argazkia",
@ -506,14 +389,13 @@
"description_photo": "Deskribatu argazkia ikusmen arazoak dituztenentzat...",
"description_video": "Deskribatu bideoa ikusmen arazoak dituztenentzat...",
"load_failed": "Load Failed",
"upload_failed": "Kargatzeak huts egin du",
"upload_failed": "Upload Failed",
"can_not_recognize_this_media_attachment": "Can not recognize this media attachment",
"attachment_too_large": "Eranskina handiegia da",
"compressing_state": "Konprimatzen...",
"attachment_too_large": "Attachment too large",
"compressing_state": "Compressing...",
"server_processing_state": "Server Processing..."
},
"poll": {
"title": "Poll",
"duration_time": "Iraupena: %s",
"thirty_minutes": "30 minutu",
"one_hour": "Ordu 1",
@ -522,12 +404,8 @@
"three_days": "3 egun",
"seven_days": "7 egun",
"option_number": "%ld aukera",
"the_poll_is_invalid": "Inkesta ez da balekoa",
"the_poll_has_empty_option": "The poll has empty option",
"add_option": "Add Option",
"remove_option": "Remove Option",
"move_up": "Move Up",
"move_down": "Move Down"
"the_poll_is_invalid": "The poll is invalid",
"the_poll_has_empty_option": "The poll has empty option"
},
"content_warning": {
"placeholder": "Idatzi abisu zehatz bat hemen..."
@ -549,7 +427,7 @@
"enable_content_warning": "Gaitu edukiaren abisua",
"disable_content_warning": "Desgaitu edukiaren abisua",
"post_visibility_menu": "Bidalketaren ikusgaitasunaren menua",
"post_options": "Bildalketaren aukerak",
"post_options": "Post Options",
"posting_as": "Posting as %s"
},
"keyboard": {
@ -559,29 +437,18 @@
"toggle_content_warning": "Txandakatu edukiaren abisua",
"append_attachment_entry": "Gehitu eranskina - %s",
"select_visibility_entry": "Hautatu ikusgaitasuna - %s"
},
"language": {
"title": "Post Language",
"suggested": "Suggested",
"recent": "Recent",
"other": "Other Language…"
}
},
"profile": {
"header": {
"follows_you": "Jarraitzen zaitu"
"follows_you": "Follows You"
},
"dashboard": {
"my_posts": "posts",
"my_following": "following",
"my_followers": "followers",
"other_posts": "posts",
"other_following": "following",
"other_followers": "followers",
"familiar_followers": "mutuals"
"posts": "bidalketa",
"following": "jarraitzen",
"followers": "jarraitzaile"
},
"fields": {
"joined": "Joined",
"add_row": "Gehitu errenkada",
"placeholder": {
"label": "Etiketa",
@ -589,7 +456,7 @@
},
"verified": {
"short": "Verified on %s",
"long": "Esteka honen jabetzaren egiaztaketa data: %s"
"long": "Ownership of this link was checked on %s"
}
},
"segmented_control": {
@ -617,20 +484,12 @@
"message": "Berretsi %s desblokeatzea"
},
"confirm_show_reblogs": {
"title": "Ikusi bultzadak",
"message": "Berretsi birbidalketak ikustea"
"title": "Show Reblogs",
"message": "Confirm to show reblogs"
},
"confirm_hide_reblogs": {
"title": "Ezkutatu bultzadak",
"message": "Berretsi birbidalketak ezkutatzea"
},
"confirm_block_domain": {
"title": "Block domain",
"message": "Confirm to block domain %s"
},
"confirm_unblock_domain": {
"title": "Unblock domain",
"message": "Confirm to unblock domain %s"
"title": "Hide Reblogs",
"message": "Confirm to hide reblogs"
}
},
"accessibility": {
@ -641,11 +500,11 @@
}
},
"follower": {
"title": "jarraitzaile",
"title": "follower",
"footer": "Beste zerbitzarietako jarraitzaileak ez dira bistaratzen."
},
"following": {
"title": "jarraitzen",
"title": "following",
"footer": "Beste zerbitzarietan jarraitutakoak ez dira bistaratzen."
},
"familiarFollowers": {
@ -678,20 +537,16 @@
}
},
"searching": {
"posts": "Posts matching \"%s\"",
"people": "People matching \"%s\"",
"profile": "Go to @%s@%s",
"url": "Open URL in Mastodon",
"hashtag": "Go to #%s",
"no_user": {
"title": "No User Account Found",
"message": "There's no Useraccount \"%s\" on %s"
"segment": {
"all": "Guztiak",
"people": "Jendea",
"hashtags": "Traolak",
"posts": "Bidalketak"
},
"empty_state": {
"no_results": "Emaitzarik ez"
},
"recent_search": "Azken bilaketak",
"clear_all": "Clear all",
"clear": "Garbitu"
}
},
@ -700,13 +555,13 @@
"posts": "Argitalpenak",
"hashtags": "Traolak",
"news": "Albisteak",
"community": "Komunitatea",
"community": "Community",
"for_you": "Zuretzat"
},
"intro": "Hauek dira zure Mastodon txokoan beraien lekua hartzen ari diren argitalpenak."
"intro": "These are the posts gaining traction in your corner of Mastodon."
},
"favorite": {
"title": "Favorites"
"title": "Zure gogokoak"
},
"notification": {
"title": {
@ -726,10 +581,10 @@
"show_mentions": "Erakutsi aipamenak"
},
"follow_request": {
"accept": "Onartu",
"accepted": "Onartuta",
"reject": "ukatu",
"rejected": "Ukatua"
"accept": "Accept",
"accepted": "Accepted",
"reject": "reject",
"rejected": "Rejected"
}
},
"thread": {
@ -737,79 +592,60 @@
"title": "%s(e)n bidalketa"
},
"settings": {
"overview": {
"title": "Settings",
"general": "General",
"notifications": "Notifications",
"support_mastodon": "Support Mastodon",
"about_mastodon": "About Mastodon",
"server_details": "Server Details",
"logout": "Logout %@"
},
"about_mastodon": {
"title": "About",
"more_settings": "Even More Settings",
"contribute_to_mastodon": "Contribute to Mastodon",
"privacy_policy": "Privacy Policy",
"clear_media_storage": "Clear Media Storage"
},
"server_details": {
"about": "About",
"rules": "Rules",
"about_instance": {
"title": "Administrator",
"message_admin": "Message Admin",
"legal_notice": "A legal notice"
}
},
"general": {
"title": "General",
"title": "Ezarpenak",
"section": {
"appearance": {
"section_title": "Appearance",
"dark": "Dark",
"light": "Light",
"system": "Use Device Appearance"
"title": "Itxura",
"automatic": "Automatikoa",
"light": "Beti argia",
"dark": "Beti iluna"
},
"ask_before": {
"section_title": "Ask before…",
"posting_without_alt_text": "Posting without Alt Text",
"unfollowing_someone": "Unfollowing Someone",
"boosting_a_post": "Boosting a Post",
"deleting_a_post": "Deleting a Post"
"look_and_feel": {
"title": "Itxura",
"use_system": "Erabili sistemakoa",
"really_dark": "Oso iluna",
"sorta_dark": "Ilun antzekoa",
"light": "Argia"
},
"design": {
"section_title": "Design",
"show_animations": "Play Animated Avatars and Emoji"
"notifications": {
"title": "Jakinarazpenak",
"favorites": "Nire bidalketa gogoko egitean",
"follows": "Jarraitzen nau",
"boosts": "Nire bidalketa bultzatu du",
"mentions": "Aipatu nau",
"trigger": {
"anyone": "edozein",
"follower": "jarraitzaile bat",
"follow": "jarraitzen dudan edonor",
"noone": "inor ez",
"title": "Noiz jakinarazi:"
}
},
"language": {
"section_title": "Language",
"default_post_language": "Default Post Language"
"preference": {
"title": "Hobespenak",
"true_black_dark_mode": "Benetako modu beltz iluna",
"disable_avatar_animation": "Desgaitu abatar animatuak",
"disable_emoji_animation": "Desgaitu emoji animatuak",
"using_default_browser": "Erabili nabigatzaile lehenetsia estekak irekitzeko",
"open_links_in_mastodon": "Ireki estekak Mastodonen"
},
"links": {
"section_title": "Links",
"open_in_mastodon": "Open in Mastodon",
"open_in_browser": "Open in Browser"
"boring_zone": {
"title": "Eremu aspergarria",
"account_settings": "Kontuaren ezarpenak",
"terms": "Zerbitzu-baldintzak",
"privacy": "Pribatutasun-gidalerroak"
},
"spicy_zone": {
"title": "Eremu beroa",
"clear": "Garbitu multimediaren cachea",
"signout": "Amaitu saioa"
}
},
"notifications": {
"title": "Notifications",
"policy": {
"title": "Get Notifications from",
"anyone": "Anyone",
"followers": "People who follow you",
"follow": "People you follow",
"noone": "No one"
},
"alert": {
"mentions_and_replies": "Mentions & Replies",
"boosts": "Boosts",
"favorites": "Favorites",
"new_followers": "New Followers"
},
"disabled": {
"notification_hint": "Turn on notifications from your device settings to see updates on your lock screen.",
"go_to_settings": "Go to Notification Settings"
}
"footer": {
"mastodon_description": "Mastodon software librea da. Arazoen berri eman dezakezu GitHub bidez: %s (%s)"
},
"keyboard": {
"close_settings_window": "Itxi ezarpenen leihoa"
}
},
"report": {
@ -825,46 +661,46 @@
"text_placeholder": "Idatzi edo itsatsi iruzkin gehigarriak",
"reported": "SALATUA",
"step_one": {
"step_1_of_4": "1. urratsa 4tik",
"whats_wrong_with_this_post": "Zer du txarra argitalpen honek?",
"whats_wrong_with_this_account": "Zer du txarra kontu honek?",
"whats_wrong_with_this_username": "Zer du txarra %s?",
"select_the_best_match": "Aukeratu egokiena",
"i_dont_like_it": "Ez dut gustukoa",
"it_is_not_something_you_want_to_see": "Ikusi nahi ez dudan zerbait da",
"its_spam": "Spama da",
"malicious_links_fake_engagement_or_repetetive_replies": "Esteka maltzurrak, gezurrezko elkarrekintzak edo erantzun errepikakorrak",
"it_violates_server_rules": "Zerbitzariaren arauak hausten ditu",
"you_are_aware_that_it_breaks_specific_rules": "Arau zehatzak urratzen dituela badakizu",
"its_something_else": "Beste zerbait da",
"the_issue_does_not_fit_into_other_categories": "Arazoa ezin da beste kategorietan sailkatu"
"step_1_of_4": "Step 1 of 4",
"whats_wrong_with_this_post": "What's wrong with this post?",
"whats_wrong_with_this_account": "What's wrong with this account?",
"whats_wrong_with_this_username": "What's wrong with %s?",
"select_the_best_match": "Select the best match",
"i_dont_like_it": "I dont like it",
"it_is_not_something_you_want_to_see": "It is not something you want to see",
"its_spam": "Its spam",
"malicious_links_fake_engagement_or_repetetive_replies": "Malicious links, fake engagement, or repetetive replies",
"it_violates_server_rules": "It violates server rules",
"you_are_aware_that_it_breaks_specific_rules": "You are aware that it breaks specific rules",
"its_something_else": "Its something else",
"the_issue_does_not_fit_into_other_categories": "The issue does not fit into other categories"
},
"step_two": {
"step_2_of_4": "2. urratsa 4tik",
"which_rules_are_being_violated": "Ze arau hautsi ditu?",
"select_all_that_apply": "Hautatu dagozkion guztiak",
"step_2_of_4": "Step 2 of 4",
"which_rules_are_being_violated": "Which rules are being violated?",
"select_all_that_apply": "Select all that apply",
"i_just_dont_like_it": "I just dont like it"
},
"step_three": {
"step_3_of_4": "3. urratsa 4tik",
"are_there_any_posts_that_back_up_this_report": "Salaketa hau babesten duen bidalketarik badago?",
"select_all_that_apply": "Hautatu dagozkion guztiak"
"step_3_of_4": "Step 3 of 4",
"are_there_any_posts_that_back_up_this_report": "Are there any posts that back up this report?",
"select_all_that_apply": "Select all that apply"
},
"step_four": {
"step_4_of_4": "4. urratsa 4tik",
"is_there_anything_else_we_should_know": "Beste zerbait jakin beharko genuke?"
"step_4_of_4": "Step 4 of 4",
"is_there_anything_else_we_should_know": "Is there anything else we should know?"
},
"step_final": {
"dont_want_to_see_this": "Ez duzu hau ikusi nahi?",
"when_you_see_something_you_dont_like_on_mastodon_you_can_remove_the_person_from_your_experience.": "Mastodonen gustuko ez duzun zerbait ikusten duzunean, zure esperientziatik atera dezakezu pertsona hori.",
"unfollow": "Utzi jarraitzeari",
"dont_want_to_see_this": "Dont want to see this?",
"when_you_see_something_you_dont_like_on_mastodon_you_can_remove_the_person_from_your_experience.": "When you see something you dont like on Mastodon, you can remove the person from your experience.",
"unfollow": "Unfollow",
"unfollowed": "Unfollowed",
"unfollow_user": "%s jarraitzeari utzi",
"mute_user": "Mututu %s",
"you_wont_see_their_posts_or_reblogs_in_your_home_feed_they_wont_know_they_ve_been_muted": "Ez dituzu bere bidalketa eta birbidalketak zure hasierako jarioan ikusiko. Ez dute jakingo isilarazi dituztenik.",
"block_user": "Blokeatu %s",
"they_will_no_longer_be_able_to_follow_or_see_your_posts_but_they_can_see_if_theyve_been_blocked": "Ezin izango dituzte zure bidalketak jarraitu edo ikusi, baina blokeatuta dauden ikusi ahal izango dute.",
"while_we_review_this_you_can_take_action_against_user": "Hau berrikusten dugun bitartean, %s erabiltzailearen aurkako neurriak hartu ditzakezu"
"unfollow_user": "Unfollow %s",
"mute_user": "Mute %s",
"you_wont_see_their_posts_or_reblogs_in_your_home_feed_they_wont_know_they_ve_been_muted": "You wont see their posts or reblogs in your home feed. They wont know theyve been muted.",
"block_user": "Block %s",
"they_will_no_longer_be_able_to_follow_or_see_your_posts_but_they_can_see_if_theyve_been_blocked": "They will no longer be able to follow or see your posts, but they can see if theyve been blocked.",
"while_we_review_this_you_can_take_action_against_user": "While we review this, you can take action against %s"
}
},
"preview": {
@ -879,67 +715,13 @@
"dismiss_account_switcher": "Baztertu kontu-aldatzailea",
"add_account": "Gehitu kontua"
},
"wizard": {
"new_in_mastodon": "Berria Mastodonen",
"multiple_account_switch_intro_description": "Aldatu hainbat konturen artean profilaren botoia sakatuta edukiz.",
"accessibility_hint": "Ukitu birritan morroi hau baztertzeko"
},
"bookmark": {
"title": "Laster-markak"
},
"followed_tags": {
"title": "Followed Tags",
"header": {
"posts": "posts",
"participants": "participants",
"posts_today": "posts today"
},
"actions": {
"follow": "Follow",
"unfollow": "Unfollow"
}
}
},
"extension": {
"open_in": {
"invalid_link_error": "This doesn't seem to be a valid Mastodon link."
}
},
"widget": {
"common": {
"unsupported_widget_family": "Sorry but this Widget family is unsupported.",
"user_not_logged_in": "Please open Mastodon to log in to an Account."
},
"followers_count": {
"configuration_display_name": "Followers",
"configuration_description": "Show number of followers.",
"title": "FOLLOWERS",
"followers_today": "%s followers today"
},
"multiple_followers": {
"configuration_display_name": "Multiple followers",
"configuration_description": "Show number of followers for multiple accounts.",
"mock_user": {
"display_name": "Another follower",
"account_name": "another@follower.social"
}
},
"latest_followers": {
"configuration_display_name": "Latest followers",
"configuration_description": "Show latest followers.",
"title": "Latest followers",
"last_update": "Last update: %s"
},
"hashtag": {
"configuration": {
"display_name": "Hashtag",
"description": "Shows a recent post with the selected hashtag."
},
"not_found": {
"account_name": "John Mastodon",
"account": "@johnMastodon@no-such.account",
"content": "Sorry, we couldnt find any posts with the hashtag <a>#%@</a>. Please try a <a>#DifferentHashtag</a> or check the widget settings."
},
"placeholder": {
"account_name": "John Mastodon",
"account": "@johnMastodon@no-such.account",
"content": "This is how a post with a <a>#hashtag</a> would look. Pick whichever <a>#hashtag</a> you want in the widget settings."
}
"title": "Bookmarks"
}
}
}

View File

@ -53,7 +53,7 @@
<key>a11y.plural.count.characters_left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@character_count@</string>
<string>%#@character_count@ left</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
@ -61,9 +61,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 merkki jäljellä</string>
<string>1 character</string>
<key>other</key>
<string>%ld merkkiä jäljellä</string>
<string>%ld characters</string>
</dict>
</dict>
<key>plural.count.followed_by_and_mutual</key>
@ -88,9 +88,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>%1$@ seuraajaa, joista yhteistä</string>
<string>Followed by %1$@, and another mutual</string>
<key>other</key>
<string>%1$@ seuraajaa, joista %ld yhteistä</string>
<string>Followed by %1$@, and %ld mutuals</string>
</dict>
</dict>
<key>plural.count.metric_formatted.post</key>
@ -120,9 +120,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>Yksi media</string>
<string>1 media</string>
<key>other</key>
<string>%ld mediaa</string>
<string>%ld media</string>
</dict>
</dict>
<key>plural.count.post</key>
@ -168,25 +168,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>Yksi edelleenjulkaisu</string>
<string>1 edelleen jako</string>
<key>other</key>
<string>%ld edelleenjulkaisua</string>
</dict>
</dict>
<key>plural.count.reblog_a11y</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@reblog_count@</string>
<key>reblog_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>Yksi edelleenjulkaisu</string>
<key>other</key>
<string>%ld edelleenjulkaisua</string>
<string>%ld edelleen jakoa</string>
</dict>
</dict>
<key>plural.count.reply</key>
@ -200,9 +184,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>Yksi vastaus</string>
<string>1 reply</string>
<key>other</key>
<string>%ld vastausta</string>
<string>%ld replies</string>
</dict>
</dict>
<key>plural.count.vote</key>

File diff suppressed because it is too large Load Diff

View File

@ -53,7 +53,7 @@
<key>a11y.plural.count.characters_left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@character_count@</string>
<string>%#@character_count@ restants</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
@ -61,9 +61,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 caractère restant</string>
<string>1 caractère</string>
<key>other</key>
<string>%ld caractères restants</string>
<string>%ld caractères</string>
</dict>
</dict>
<key>plural.count.followed_by_and_mutual</key>
@ -173,22 +173,6 @@
<string>%ld reblogs</string>
</dict>
</dict>
<key>plural.count.reblog_a11y</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@reblog_count@</string>
<key>reblog_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 reblog</string>
<key>other</key>
<string>%ld reblogs</string>
</dict>
</dict>
<key>plural.count.reply</key>
<dict>
<key>NSStringLocalizedFormatKey</key>

View File

@ -15,6 +15,10 @@
"title": "Échec du vote",
"poll_ended": "Le sondage est terminé"
},
"discard_post_content": {
"title": "Abandonner le brouillon",
"message": "Confirmez pour abandonner le contenu de votre message."
},
"publish_post_failure": {
"title": "La publication a échoué",
"message": "La publication a échoué.\nVeuillez vérifier votre accès à Internet.",
@ -47,29 +51,6 @@
"clean_cache": {
"title": "Vider le cache",
"message": "Cache de %s effacé avec succès."
},
"translation_failed": {
"title": "Note",
"message": "La traduction a échoué. Peut-être que l'administrateur n'a pas activé les traductions sur ce serveur ou que ce serveur utilise une ancienne version de Mastodon où les traductions ne sont pas encore prises en charge.",
"button": "OK"
},
"media_missing_alt_text": {
"title": "Media Missing Alt Text",
"message": "%d of your images are missing alt text.\nPost Anyway?",
"cancel": "Cancel",
"post": "Post"
},
"boost_a_post": {
"title_boost": "Boost Post?",
"title_unboost": "Unboost Post?",
"cancel": "Cancel",
"boost": "Boost",
"unboost": "Unboost"
},
"unfollow_user": {
"title": "Unfollow %@?",
"cancel": "Cancel",
"unfollow": "Unfollow"
}
},
"controls": {
@ -94,9 +75,9 @@
"save_photo": "Enregistrer la photo",
"copy_photo": "Copier la photo",
"sign_in": "Se connecter",
"sign_up": "Créer un compte",
"see_more": "Voir plus",
"preview": "Aperçu",
"copy": "Copier",
"share": "Partager",
"share_user": "Partager %s",
"share_post": "Partager la publication",
@ -110,26 +91,13 @@
"block_domain": "Bloquer %s",
"unblock_domain": "Débloquer %s",
"settings": "Paramètres",
"delete": "Supprimer",
"translate_post": {
"title": "Traduit depuis %s",
"unknown_language": "Inconnu"
},
"edit_post": "Éditer",
"bookmark": "Ajouter aux signets",
"remove_bookmark": "Supprimer le signet",
"follow": "Sabonner à %s",
"unfollow": "Se désabonner de %s"
"delete": "Supprimer"
},
"tabs": {
"home": "Accueil",
"search_and_explore": "Rechercher et explorer",
"notifications": "Notifications",
"profile": "Profil",
"a11y": {
"search": "Rechercher",
"explore": "Explorer"
}
"search": "Rechercher",
"notification": "Notification",
"profile": "Profil"
},
"keyboard": {
"common": {
@ -164,8 +132,6 @@
"sensitive_content": "Contenu sensible",
"media_content_warning": "Tapotez nimporte où pour révéler la publication",
"tap_to_reveal": "Appuyer pour afficher",
"load_embed": "Charger l'intégration",
"link_via_user": "%s via %s",
"poll": {
"vote": "Voter",
"closed": "Fermé"
@ -187,12 +153,7 @@
"show_image": "Afficher limage",
"show_gif": "Afficher le GIF",
"show_video_player": "Afficher le lecteur vidéo",
"share_link_in_post": "Partager le lien dans le message",
"tap_then_hold_to_show_menu": "Appuyez et maintenez pour afficher le menu",
"a11y_labels": {
"reblog": "Re-blog",
"unreblog": "Annuler le re6blog"
}
"tap_then_hold_to_show_menu": "Appuyez et maintenez pour afficher le menu"
},
"tag": {
"url": "URL",
@ -207,30 +168,6 @@
"private": "Seul·e·s leurs abonné·e·s peuvent voir ce message.",
"private_from_me": "Seul·e·s mes abonné·e·s peuvent voir ce message.",
"direct": "Seul·e lutilisateur·rice mentionnée peut voir ce message."
},
"translation": {
"translated_from": "Traduit de %s en utilisant %s",
"unknown_language": "Inconnu",
"unknown_provider": "Inconnu",
"show_original": "Afficher l'original"
},
"media": {
"accessibility_label": "%s, pièce jointe %d sur %d",
"expand_image_hint": "Développe l'image. Appuyez deux fois et maintenez pour afficher les actions",
"expand_gif_hint": "Développe le GIF. Appuyez deux fois et maintenez pour afficher les actions",
"expand_video_hint": "Affiche le lecteur vidéo. Appuyez deux fois et maintenez enfoncé pour afficher les actions"
},
"posted_via_application": "%s via %s",
"buttons": {
"reblogs_title": "Reblogs",
"favorites_title": "Favoris",
"edit_history_title": "Historique des modifications",
"edit_history_detail": "Dernière modification %s"
},
"edited_at_timestamp_prefix": "Édité %s",
"edit_history": {
"title": "Historique des modifications",
"original_post": "Message original · %s"
}
},
"friendship": {
@ -240,11 +177,10 @@
"pending": "En attente",
"block": "Bloquer",
"block_user": "Bloquer %s",
"block_domain": "Block domain %s",
"block_domain": "Bloquer %s",
"unblock": "Débloquer",
"unblock_user": "Débloquer %s",
"blocked": "Bloqué",
"domain_blocked": "Domain Blocked",
"mute": "Masquer",
"mute_user": "Ignorer %s",
"unmute": "Ne plus ignorer",
@ -274,36 +210,13 @@
"user_suspended_warning": "Le compte de %s à été suspendu."
}
}
},
"user_list": {
"no_verified_link": "Lien non vérifié",
"followers_count": "%@ abonné·e·s"
}
},
"scene": {
"welcome": {
"log_in": "Se connecter",
"learn_more": "En savoir plus",
"join_default_server": "Rejoindre %@",
"pick_server": "Trouver un autre serveur",
"separator": {
"or": "ou"
},
"education": {
"mastodon": {
"title": "Bienvenue sur Mastodon",
"description": "Mastodon est un réseau social décentralisé, ce qui signifie quaucune entreprise ne le contrôle. Il est composé de plusieurs serveurs indépendants, tous connectés ensembles."
},
"servers": {
"title": "Que sont les serveurs ?",
"description": "Chaque compte Mastodon est hébergé sur un serveur — chacun avec ses propres valeurs, règles, et administrateurs. Peu importe celui que vous choisissez, vous pouvez suivre et interagir avec des personnes sur n'importe quel serveur."
},
"a11y": {
"what_is_mastodon": {
"title": "Quest-ce que Mastodon?"
}
}
}
"slogan": "Le réseau social qui vous rend le contrôle.",
"get_started": "Prise en main",
"log_in": "Se connecter"
},
"login": {
"title": "Content de vous revoir",
@ -313,10 +226,9 @@
}
},
"server_picker": {
"title": "Choisissez un serveur",
"title": "Choisissez un serveur,\nn'importe quel serveur.",
"subtitle": "Choisissez un serveur basé sur votre région, vos intérêts ou un généraliste. Vous pouvez toujours discuter avec n'importe qui sur Mastodon, indépendamment de vos serveurs.",
"button": {
"language": "Langue",
"signup_speed": "Inscription rapide",
"category": {
"all": "Tout",
"all_accessiblity_description": "Catégorie: Toutes",
@ -348,41 +260,18 @@
"finding_servers": "Recherche des serveurs disponibles...",
"bad_network": "Une erreur s'est produite lors du chargement des données. Vérifiez votre connexion Internet.",
"no_results": "Aucun résultat"
},
"signup_speed": {
"all": "Tous",
"instant": "Inscription instantanée",
"manually_reviewed": "Approbation manuelle"
},
"language": {
"all": "Tous"
},
"search": {
"placeholder": "Rechercher le nom ou l'URL"
},
"no_server_selected_hint": "Nous choisirons un serveur basé sur votre langue si vous continuez sans en choisir un."
},
"privacy": {
"title": "Vie privée",
"description": "Bien que lapplication Mastodon ne collecte aucune donnée, le serveur auquel vous vous inscrivez peut avoir une politique différente. Prenez une minute pour examiner et accepter la politique de confidentialité de lapplication Mastodon ainsi que celle de votre serveur.",
"policy": {
"ios": "Politique de confidentialité - Mastodon pour iOS",
"server": "Politique de Confidentialité - %s"
},
"button": {
"confirm": "Jaccepte"
}
},
"register": {
"title": "Créer un compte",
"title": "Parlez-nous de vous.",
"lets_get_you_set_up_on_domain": "Mettons les choses en place pour %s",
"input": {
"avatar": {
"delete": "Supprimer"
},
"username": {
"placeholder": "nom d'utilisateur",
"duplicate_prompt": "Ce nom d'utilisateur est déjà pris.",
"suggestion": "incroyable_%@"
"duplicate_prompt": "Ce nom d'utilisateur est déjà pris."
},
"display_name": {
"placeholder": "nom affiché"
@ -392,7 +281,6 @@
},
"password": {
"placeholder": "mot de passe",
"confirmation_placeholder": "Confirmez le mot de passe",
"require": "Votre mot de passe doit être composé dau moins :",
"character_limit": "8 caractères",
"accessibility": {
@ -417,7 +305,7 @@
"reason": {
"blocked": "%s contient un fournisseur courriel proscrit",
"unreachable": "%s ne semble pas exister",
"taken": "%s est déjà pris. Pourquoi pas:",
"taken": "%s est déjà utilisé",
"reserved": "%s est un mot clé réservé",
"accepted": "%s doit être accepté",
"blank": "%s est requis",
@ -435,37 +323,33 @@
}
},
"server_rules": {
"title": "Server Rules",
"subtitle": "By continuing, you agree to follow by the following rules set and enforced by the **%s** moderators.",
"title": "Règles de base.",
"subtitle": "Ces règles sont mis en place par les administrateurs de %s.",
"prompt": "En continuant, vous êtes assujettis à lentente de service et la politique de confidentialité de %s.",
"terms_of_service": "entente de service",
"privacy_policy": "politique de confidentialité",
"button": {
"confirm": "Jaccepte",
"disagree": "Disagree"
"confirm": "Jaccepte"
}
},
"confirm_email": {
"title": "Consultez votre boîte mail",
"tap_the_link_we_emailed_to_you_to_verify_your_account": "Cliquez sur le lien que nous vous avons envoyé pour vérifier %@. Nous vous attendons ici.",
"title": "Une dernière chose.",
"subtitle": "Appuyez sur le lien que nous vous avons envoyé par courriel pour vérifier votre compte.",
"tap_the_link_we_emailed_to_you_to_verify_your_account": "Appuyez sur le lien que nous vous avons envoyé par courriel pour vérifier votre compte",
"button": {
"open_email_app": "Ouvrir lapplication de courriel",
"resend": "Renvoyer"
},
"dont_receive_email": {
"title": "Vérifiez vos emails",
"title": "Vérifier vos courriels",
"description": "Vérifiez que votre adresse courriel est valide ainsi que votre fichier spam si ce nest pas déjà fait.",
"resend_email": "Renvoyer le courriel"
},
"open_email_app": {
"title": "Consultez votre boîte mail.",
"title": "Vérifier votre boîte aux lettres.",
"description": "Nous venons de vous envoyer un courriel. Vérifier votre fichier spam si vous ne lavez pas déjà fait.",
"mail": "Courriel",
"open_email_client": "Ouvrir le client de messagerie"
},
"didnt_get_link": {
"prefix": "Vous n'avez pas reçu de lien ?",
"resend_in": "Renvoyer (%@)",
"resend_now": "Renvoyer maintenant."
}
},
"home_timeline": {
@ -476,20 +360,19 @@
"published": "Publié!",
"Publishing": "Publication en cours ...",
"accessibility": {
"logo_label": "Mastodon",
"logo_label": "Bouton logo",
"logo_hint": "Appuyez pour faire défiler vers le haut et appuyez à nouveau vers l'emplacement précédent"
}
}
},
"suggestion_account": {
"title": "Populaire sur Mastodon",
"follow_all": "Tout suivre"
"title": "Trouver des personnes à suivre",
"follow_explain": "Quand vous suivez quelqu'un, vous verrez leurs messages dans votre flux daccueil."
},
"compose": {
"title": {
"new_post": "Nouvelle Publication",
"new_reply": "Nouvelle réponse",
"edit_post": "Modifier le post"
"new_reply": "Nouvelle réponse"
},
"media_selection": {
"camera": "Prendre une photo",
@ -513,7 +396,6 @@
"server_processing_state": "Traitement du serveur..."
},
"poll": {
"title": "Sondage",
"duration_time": "Durée: %s",
"thirty_minutes": "30 minutes",
"one_hour": "1 Heure",
@ -523,11 +405,7 @@
"seven_days": "7 jour",
"option_number": "Option %ld",
"the_poll_is_invalid": "Le sondage est invalide",
"the_poll_has_empty_option": "Le sondage n'a pas d'options",
"add_option": "Ajouter une option",
"remove_option": "Supprimer l'option",
"move_up": "Déplacer en haut",
"move_down": "Déplacer en bas"
"the_poll_has_empty_option": "Le sondage n'a pas d'options"
},
"content_warning": {
"placeholder": "Écrivez un avertissement précis ici..."
@ -535,7 +413,7 @@
"visibility": {
"public": "Public",
"unlisted": "Non listé",
"private": "Abonné·e·s seulement",
"private": "Abonnés seulement",
"direct": "Seulement les personnes que je mentionne"
},
"auto_complete": {
@ -559,12 +437,6 @@
"toggle_content_warning": "Basculer lavertissement de contenu",
"append_attachment_entry": "Ajouter une pièce jointe - %s",
"select_visibility_entry": "Sélectionnez la Visibilité - %s"
},
"language": {
"title": "Langue de la publication",
"suggested": "Recommandé",
"recent": "Récent",
"other": "Autres langues …"
}
},
"profile": {
@ -572,16 +444,11 @@
"follows_you": "Vous suit"
},
"dashboard": {
"my_posts": "messages",
"my_following": "abonnements",
"my_followers": "abonné·e·s",
"other_posts": "publications",
"other_following": "abonnement",
"other_followers": "abonné·e·s",
"familiar_followers": "mutuel"
"posts": "publications",
"following": "abonnements",
"followers": "abonnés"
},
"fields": {
"joined": "Ici depuis",
"add_row": "Ajouter une rangée",
"placeholder": {
"label": "Étiquette",
@ -623,14 +490,6 @@
"confirm_hide_reblogs": {
"title": "Masquer les Reblogs",
"message": "Confirmer pour masquer les reblogs"
},
"confirm_block_domain": {
"title": "Block domain",
"message": "Confirm to block domain %s"
},
"confirm_unblock_domain": {
"title": "Unblock domain",
"message": "Confirm to unblock domain %s"
}
},
"accessibility": {
@ -645,7 +504,7 @@
"footer": "Les abonné·e·s issus des autres serveurs ne sont pas affiché·e·s."
},
"following": {
"title": "abonnements",
"title": "abonnement",
"footer": "Les abonnés issus des autres serveurs ne sont pas affichés."
},
"familiarFollowers": {
@ -678,20 +537,16 @@
}
},
"searching": {
"posts": "Publications ayant « %s »",
"people": "Personnes ayant « %s »",
"profile": "Aller à @%s@%s",
"url": "Ouvrir lURL dans Mastodon",
"hashtag": "Aller à #%s",
"no_user": {
"title": "No User Account Found",
"message": "There's no Useraccount \"%s\" on %s"
"segment": {
"all": "Tout",
"people": "Personnes",
"hashtags": "Hashtags",
"posts": "Publications"
},
"empty_state": {
"no_results": "Aucun résultat"
},
"recent_search": "Recherches récentes",
"clear_all": "Effacer tout",
"clear": "Effacer"
}
},
@ -706,7 +561,7 @@
"intro": "Ce sont les messages qui gagnent en popularité sur votre serveur Mastodon."
},
"favorite": {
"title": "Favoris"
"title": "Vos favoris"
},
"notification": {
"title": {
@ -714,7 +569,7 @@
"Mentions": "Mentions"
},
"notification_description": {
"followed_you": "sest abonné·e à vous",
"followed_you": "sest abonné à vous",
"favorited_your_post": "a ajouté votre message à ses favoris",
"reblogged_your_post": "a partagé votre message",
"mentioned_you": "vous a mentionné",
@ -737,79 +592,60 @@
"title": "Publication de %s"
},
"settings": {
"overview": {
"title": "Settings",
"general": "General",
"notifications": "Notifications",
"support_mastodon": "Support Mastodon",
"about_mastodon": "About Mastodon",
"server_details": "Server Details",
"logout": "Logout %@"
},
"about_mastodon": {
"title": "About",
"more_settings": "Even More Settings",
"contribute_to_mastodon": "Contribute to Mastodon",
"privacy_policy": "Privacy Policy",
"clear_media_storage": "Clear Media Storage"
},
"server_details": {
"about": "About",
"rules": "Rules",
"about_instance": {
"title": "Administrator",
"message_admin": "Message Admin",
"legal_notice": "A legal notice"
}
},
"general": {
"title": "General",
"title": "Paramètres",
"section": {
"appearance": {
"section_title": "Appearance",
"dark": "Dark",
"light": "Light",
"system": "Use Device Appearance"
"title": "Apparence",
"automatic": "Automatique",
"light": "Toujours claire",
"dark": "Toujours sombre"
},
"ask_before": {
"section_title": "Ask before…",
"posting_without_alt_text": "Posting without Alt Text",
"unfollowing_someone": "Unfollowing Someone",
"boosting_a_post": "Boosting a Post",
"deleting_a_post": "Deleting a Post"
"look_and_feel": {
"title": "Apparence",
"use_system": "Utiliser le thème du système",
"really_dark": "Très sombre",
"sorta_dark": "Légèrement sombre",
"light": "Clair"
},
"design": {
"section_title": "Design",
"show_animations": "Play Animated Avatars and Emoji"
"notifications": {
"title": "Notifications",
"favorites": "Ajoute lune de mes publications à ses favoris",
"follows": "Me suit",
"boosts": "Reblogue mon message",
"mentions": "Me mentionne",
"trigger": {
"anyone": "nimporte qui",
"follower": "un abonné",
"follow": "toute personne que je suis",
"noone": "personne",
"title": "Me notifier lorsque"
}
},
"language": {
"section_title": "Language",
"default_post_language": "Default Post Language"
"preference": {
"title": "Préférences",
"true_black_dark_mode": "Vrai mode sombre",
"disable_avatar_animation": "Désactiver les avatars animés",
"disable_emoji_animation": "Désactiver les émojis animées",
"using_default_browser": "Utiliser le navigateur par défaut pour ouvrir les liens",
"open_links_in_mastodon": "Ouvrir les liens dans Mastodon"
},
"links": {
"section_title": "Links",
"open_in_mastodon": "Open in Mastodon",
"open_in_browser": "Open in Browser"
"boring_zone": {
"title": "La zone ennuyante",
"account_settings": "Paramètres du compte",
"terms": "Entente de service",
"privacy": "Politique de confidentialité"
},
"spicy_zone": {
"title": "La Zone Épicée",
"clear": "Vider le cache des médias",
"signout": "Se déconnecter"
}
},
"notifications": {
"title": "Notifications",
"policy": {
"title": "Get Notifications from",
"anyone": "Anyone",
"followers": "People who follow you",
"follow": "People you follow",
"noone": "No one"
},
"alert": {
"mentions_and_replies": "Mentions & Replies",
"boosts": "Boosts",
"favorites": "Favorites",
"new_followers": "New Followers"
},
"disabled": {
"notification_hint": "Turn on notifications from your device settings to see updates on your lock screen.",
"go_to_settings": "Go to Notification Settings"
}
"footer": {
"mastodon_description": "Mastodon est un logiciel open source. Vous pouvez rapporter des problèmes sur GitHub au %s (%s)"
},
"keyboard": {
"close_settings_window": "Fermer la fenêtre des paramètres"
}
},
"report": {
@ -879,67 +715,13 @@
"dismiss_account_switcher": "Rejeter le commutateur de compte",
"add_account": "Ajouter un compte"
},
"wizard": {
"new_in_mastodon": "Nouveau dans Mastodon",
"multiple_account_switch_intro_description": "Basculez entre plusieurs comptes en appuyant de maniere prolongée sur le bouton profil.",
"accessibility_hint": "Tapotez deux fois pour fermer cet assistant"
},
"bookmark": {
"title": "Favoris"
},
"followed_tags": {
"title": "Tags suivis",
"header": {
"posts": "messages",
"participants": "participants",
"posts_today": "messages aujourd'hui"
},
"actions": {
"follow": "Suivre",
"unfollow": "Ne plus suivre"
}
}
},
"extension": {
"open_in": {
"invalid_link_error": "Cela ne semble pas être un lien Mastodon valide."
}
},
"widget": {
"common": {
"unsupported_widget_family": "Désolé, mais cette famille de Widget n'est pas prise en charge.",
"user_not_logged_in": "Veuillez ouvrir Mastodon pour vous connecter à un compte."
},
"followers_count": {
"configuration_display_name": "Abonné·e·s",
"configuration_description": "Afficher le nombre d'abonnés.",
"title": "ABONNÉ·E·S",
"followers_today": "%s abonné·e·s aujourd'hui"
},
"multiple_followers": {
"configuration_display_name": "Abonné·e·s multiples",
"configuration_description": "Afficher le nombre d'abonnés pour plusieurs comptes.",
"mock_user": {
"display_name": "Autres abonné·e·s",
"account_name": "another@follower.social"
}
},
"latest_followers": {
"configuration_display_name": "Derniers abonné·e·s",
"configuration_description": "Afficher les derniers abonnés.",
"title": "Derniers abonné·e·s",
"last_update": "Dernière mise à jour: %s"
},
"hashtag": {
"configuration": {
"display_name": "Hashtag",
"description": "Affiche un post récent avec le hashtag sélectionné."
},
"not_found": {
"account_name": "John Mastodon",
"account": "@johnMastodon@no-such.account",
"content": "Désolé, nous n'avons trouvé aucun message avec le hashtag <a>#%@</a>. Veuillez essayer un <a>#DifferentHashtag</a> ou vérifier les paramètres du widget."
},
"placeholder": {
"account_name": "John Mastodon",
"account": "@johnMastodon@no-such.account",
"content": "Voici à quoi ressemblerait un message avec un <a>#hashtag</a>. Choisissez le <a>#hashtag</a> que vous voulez dans les paramètres du widget."
}
}
}
}

View File

@ -65,7 +65,7 @@
<key>a11y.plural.count.characters_left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@character_count@</string>
<string>%#@character_count@ air fhàgail</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
@ -73,13 +73,13 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>%ld charactar air fhàgail</string>
<string>%ld charactar</string>
<key>two</key>
<string>%ld charactar air fhàgail</string>
<string>%ld charactar</string>
<key>few</key>
<string>%ld caractaran air fhàgail</string>
<string>%ld caractaran</string>
<key>other</key>
<string>%ld caractar air fhàgail</string>
<string>%ld caractar</string>
</dict>
</dict>
<key>plural.count.followed_by_and_mutual</key>
@ -217,26 +217,6 @@
<string>%ld brosnachadh</string>
</dict>
</dict>
<key>plural.count.reblog_a11y</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@reblog_count@</string>
<key>reblog_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>%ld bhrosnachadh</string>
<key>two</key>
<string>%ld bhrosnachadh</string>
<key>few</key>
<string>%ld brosnachaidhean</string>
<key>other</key>
<string>%ld brosnachadh</string>
</dict>
</dict>
<key>plural.count.reply</key>
<dict>
<key>NSStringLocalizedFormatKey</key>

View File

@ -15,6 +15,10 @@
"title": "Dhfhàillig leis a bhòt",
"poll_ended": "Thàinig an cunntas-bheachd gu crìoch"
},
"discard_post_content": {
"title": "Tilg air falbh an dreachd",
"message": "Dearbh tilgeil air falbh susbaint a phuist a sgrìobh thu."
},
"publish_post_failure": {
"title": "Dhfhàillig leis an fhoillseachadh",
"message": "Cha deach leinn am post fhoillseachadh.\nThoir sùil air a cheangal agad ris an eadar-lìon.",
@ -47,29 +51,6 @@
"clean_cache": {
"title": "Falamhaich an tasgadan",
"message": "Chaidh %s a thasgadan fhalamhachadh."
},
"translation_failed": {
"title": "An aire",
"message": "Dhfhàillig an t-eadar-theangachadh. Dhfhaoidte nach do chuir an rianaire na h-eadar-theangachaidhean an comas air an fhrithealaiche seo no gu bheil am frithealaiche a ruith seann-tionndadh de Mhastodon far nach eil taic ri eadar-theangachadh fhathast.",
"button": "Ceart ma-thà"
},
"media_missing_alt_text": {
"title": "Tha roghainn teacsa a dhìth air meadhan",
"message": "Tha roghainn teacsa a dhìth air %d dhe na dealbhan agad.\nA bheil thu airson a phostadh co-dhiù?",
"cancel": "Sguir dheth",
"post": "Postaich"
},
"boost_a_post": {
"title_boost": "Am brosnaich thu am post?",
"title_unboost": "An dì-bhrosnaich thu am post?",
"cancel": "Sguir dheth",
"boost": "Brosnaich",
"unboost": "Na brosnaich tuilleadh"
},
"unfollow_user": {
"title": "An sguir thu de %@ a leantainn?",
"cancel": "Sguir dheth",
"unfollow": "Na lean tuilleadh"
}
},
"controls": {
@ -94,15 +75,15 @@
"save_photo": "Sàbhail an dealbh",
"copy_photo": "Dèan lethbhreac dhen dealbh",
"sign_in": "Clàraich a-steach",
"sign_up": "Cruthaich cunntas",
"see_more": "Seall a bharrachd",
"preview": "Ro-sheall",
"copy": "Dèan lethbhreac",
"share": "Co-roinn",
"share_user": "Co-roinn %s",
"share_post": "Co-roinn am post",
"open_in_safari": "Fosgail ann an Safari",
"open_in_browser": "Fosgail sa bhrabhsair",
"find_people": "Lorg daoine gus an leantainn",
"find_people": "Lorg daoine a leanas tu",
"manually_search": "Lorg a làimh na àite",
"skip": "Leum thairis air",
"reply": "Freagair",
@ -110,26 +91,13 @@
"block_domain": "Bac %s",
"unblock_domain": "Dì-bhac %s",
"settings": "Roghainnean",
"delete": "Sguab às",
"translate_post": {
"title": "Eadar-theangaich o: %s",
"unknown_language": "Chan eil fhios"
},
"edit_post": "Deasaich",
"bookmark": "Comharra-lìn",
"remove_bookmark": "Thoir air falbh an comharra-lìn",
"follow": "Lean %s",
"unfollow": "Na lean %s tuilleadh"
"delete": "Sguab às"
},
"tabs": {
"home": "Dachaigh",
"search_and_explore": "Lorg is rùraich",
"notifications": "Brathan",
"profile": "Pròifil",
"a11y": {
"search": "Lorg",
"explore": "Rùraich"
}
"search": "Lorg",
"notification": "Brath",
"profile": "Pròifil"
},
"keyboard": {
"common": {
@ -164,8 +132,6 @@
"sensitive_content": "Susbaint fhrionasach",
"media_content_warning": "Thoir gnogag àite sam bith gus a nochdadh",
"tap_to_reveal": "Thoir gnogag gus a nochdadh",
"load_embed": "Luchdaich na tha ga leabachadh",
"link_via_user": "%s slighe %s",
"poll": {
"vote": "Cuir bhòt",
"closed": "Dùinte"
@ -187,12 +153,7 @@
"show_image": "Seall an dealbh",
"show_gif": "Seall an GIF",
"show_video_player": "Seall cluicheadair video",
"share_link_in_post": "Co-roinn an ceangal sa phost",
"tap_then_hold_to_show_menu": "Thoir gnogag s cùm sìos a shealltainn a chlàir-thaice",
"a11y_labels": {
"reblog": "Brosnaich",
"unreblog": "Na brosnaich tuilleadh"
}
"tap_then_hold_to_show_menu": "Thoir gnogag s cùm sìos a shealltainn a chlàir-thaice"
},
"tag": {
"url": "URL",
@ -207,30 +168,6 @@
"private": "Chan fhaic ach an luchd-leantainn aca am post seo.",
"private_from_me": "Chan fhaic ach an luchd-leantainn agam am post seo.",
"direct": "Chan fhaic ach an cleachdaiche air an dugadh iomradh am post seo."
},
"translation": {
"translated_from": "Air eadar-theangachadh o %s le %s",
"unknown_language": "Chan eil fhios",
"unknown_provider": "Chan eil fhios",
"show_original": "Seall an tionndadh tùsail"
},
"media": {
"accessibility_label": "%s, ceanglachan %d à %d",
"expand_image_hint": "Leudaichidh seo an dealbh. Thoir gnogag dhùbailte is cùm sìos airson gnìomhan a shealltainn",
"expand_gif_hint": "Leudaichidh seo an GIF. Thoir gnogag dhùbailte is cùm sìos airson gnìomhan a shealltainn",
"expand_video_hint": "Seallaidh seo an cluicheadair video. Thoir gnogag dhùbailte is cùm sìos airson gnìomhan a shealltainn"
},
"posted_via_application": "%s slighe %s",
"buttons": {
"reblogs_title": "Brosnachaidhean",
"favorites_title": "Annsachdan",
"edit_history_title": "Eachdraidh nan deasachaidhean",
"edit_history_detail": "An deasachadh mu dheireadh %s"
},
"edited_at_timestamp_prefix": "Air a dheasachadh %s",
"edit_history": {
"title": "Eachdraidh nan deasachaidhean",
"original_post": "Am post tùsail · %s"
}
},
"friendship": {
@ -240,11 +177,10 @@
"pending": "Ri dhèiligeadh",
"block": "Bac",
"block_user": "Bac %s",
"block_domain": "Bac an àrainn %s",
"block_domain": "Bac %s",
"unblock": "Dì-bhac",
"unblock_user": "Dì-bhac %s",
"blocked": "Ga bhacadh",
"domain_blocked": "Chaidh an àrainn a bhacadh",
"mute": "Mùch",
"mute_user": "Mùch %s",
"unmute": "Dì-mhùch",
@ -274,36 +210,13 @@
"user_suspended_warning": "Chaidh an cunntas aig %s a chur à rèim."
}
}
},
"user_list": {
"no_verified_link": "Gun cheangal dearbhte",
"followers_count": "Tha %@ ga leantainn"
}
},
"scene": {
"welcome": {
"log_in": "Clàraich a-steach",
"learn_more": "Barrachd fiosrachaidh",
"join_default_server": "Faigh ballrachd aig %@",
"pick_server": "Tagh frithealaiche eile",
"separator": {
"or": "no"
},
"education": {
"mastodon": {
"title": "Fàilte gu Mastodon",
"description": "S e lìonra sòisealta sgaoilte a th ann am Mastodon agus is ciall dha seo nach eil e fo smachd aon chompanaidh a-mhàin. Tha e dèanta de ghrunn fhrithealaichean a tha gan ruith gu neo-eisimeileach ach ceangailte ri chèile."
},
"servers": {
"title": "Dè th anns na frithealaichean?",
"description": "Tha gach cunntas Mastodon ga òstadh air frithealaiche tha luachan, riaghailtean ⁊ rianairean sònraichte aig gach fear. Ge b e dè am frithealaiche a thaghas tu, s urrainn dhut daoine air frithealaiche sam bith a leantainn is bruidhinn riutha."
},
"a11y": {
"what_is_mastodon": {
"title": "Dè th ann am Mastodon?"
}
}
}
"slogan": "A cur nan lìonraidhean sòisealta\nnad làmhan fhèin.",
"get_started": "Dèan toiseach-tòiseachaidh",
"log_in": "Clàraich a-steach"
},
"login": {
"title": "Fàilte air ais",
@ -313,10 +226,9 @@
}
},
"server_picker": {
"title": "Tagh frithealaiche",
"title": "Tha cleachdaichean Mhastodon air iomadh frithealaiche eadar-dhealaichte.",
"subtitle": "Tagh frithealaiche stèidhichte air na sgìre agad, d ùidhean, air far a bheil thu no fear coitcheann. S urrainn dhut fhathast conaltradh le duine sam bith air Mastodon ge b e na frithealaichean agaibh-se.",
"button": {
"language": "Cànan",
"signup_speed": "Luaths a chlàraidh",
"category": {
"all": "Na h-uile",
"all_accessiblity_description": "Roinn-seòrsa: Na h-uile",
@ -348,41 +260,18 @@
"finding_servers": "A lorg nam frithealaichean ri am faighinn…",
"bad_network": "Chaidh rudeigin ceàrr le luchdadh an dàta. Thoir sùil air a cheangal agad ris an eadar-lìon.",
"no_results": "Gun toradh"
},
"signup_speed": {
"all": "Na h-uile",
"instant": "Clàradh sa bhad",
"manually_reviewed": "Lèirmheas a làimh"
},
"language": {
"all": "Na h-uile"
},
"search": {
"placeholder": "Lorg ainm no URL"
},
"no_server_selected_hint": "Taghaidh sinn frithealaiche dhut stèidhichte air a chànan agad ma leanas tu air adhart gun taghadh."
},
"privacy": {
"title": "Prìobhaideachd",
"description": "Ged nach cruinnich aplacaid Mastodon fhèin dàta sam bith, dhfhaoidte gu bheil poileasaidh eadar-dhealaichte aig an fhrithealaiche leis a chlàraicheas tu. Gabh mionaid a toirt sùil air s ag aontachadh ri poileasaidh prìobhaideachd aplacaid Mastodon agus poileasaidh prìobhaideachd an fhrithealaiche agad.",
"policy": {
"ios": "Poileasaidh prìobhaideachd Mastodon airson iOS",
"server": "Poileasaidh prìobhaideachd %s"
},
"button": {
"confirm": "Gabhaidh mi ris"
}
},
"register": {
"title": "Cruthaich cunntas",
"title": "Gad rèiteachadh air %s",
"lets_get_you_set_up_on_domain": "Gad rèiteachadh air %s",
"input": {
"avatar": {
"delete": "Sguab às"
},
"username": {
"placeholder": "ainm-cleachdaiche",
"duplicate_prompt": "Tha an t-ainm-cleachdaiche seo aig cuideigin eile.",
"suggestion": "%@_iongantach"
"duplicate_prompt": "Tha an t-ainm-cleachdaiche seo aig cuideigin eile."
},
"display_name": {
"placeholder": "ainm-taisbeanaidh"
@ -392,7 +281,6 @@
},
"password": {
"placeholder": "facal-faire",
"confirmation_placeholder": "Dearbhaich am facal-faire",
"require": "Feumaidh am facal-faire agad co-dhiù:",
"character_limit": "8 caractaran",
"accessibility": {
@ -417,7 +305,7 @@
"reason": {
"blocked": "Tha solaraiche puist-d nach eil ceadaichte am broinn %s",
"unreachable": "Tha coltas nach eil %s ann",
"taken": "Tha %s ga chleachdadh mu thràth. Dè mu dhèidhinn:",
"taken": "Tha %s ga chleachdadh mu thràth",
"reserved": "S e facal glèidhte a th ann an %s",
"accepted": "Feumaidh tu aontachadh ri %s",
"blank": "Tha %s riatanach",
@ -435,20 +323,21 @@
}
},
"server_rules": {
"title": "Server Rules",
"subtitle": "By continuing, you agree to follow by the following rules set and enforced by the **%s** moderators.",
"title": "Riaghailtean bunasach.",
"subtitle": "Tha na riaghailtean seo gan stèidheachadh is a chur an gnìomh leis na maoir aig %s.",
"prompt": "Ma leanas tu air adhart, bidh thu fo bhuaidh teirmichean seirbheise is poileasaidh prìobhaideachd %s.",
"terms_of_service": "teirmichean na seirbheise",
"privacy_policy": "poileasaidh prìobhaideachd",
"button": {
"confirm": "Gabhaidh mi ris",
"disagree": "Disagree"
"confirm": "Gabhaidh mi ris"
}
},
"confirm_email": {
"title": "Thoir sùil air a bhogsa a-steach agad",
"tap_the_link_we_emailed_to_you_to_verify_your_account": "Thoir gnogag air a cheangal a chuir sinn thugad a dhearbhadh %@. Fuirichidh sinn ort an-seo.",
"title": "Aon rud eile.",
"subtitle": "Thoir gnogag air a cheangal a chuir sinn thugad air a phost-d airson an cunntas agad a dhearbhadh.",
"tap_the_link_we_emailed_to_you_to_verify_your_account": "Thoir gnogag air a cheangal a chuir sinn thugad air a phost-d airson an cunntas agad a dhearbhadh",
"button": {
"open_email_app": "Fosgail aplacaid a phuist-d",
"resend": "Ath-chuir"
},
"dont_receive_email": {
@ -461,11 +350,6 @@
"description": "Tha sinn air post-d a chur thugad. Thoir sùil air pasgan an truilleis agad mura d fhuair thu e.",
"mail": "Post",
"open_email_client": "Fosgail cliant puist-d"
},
"didnt_get_link": {
"prefix": "Nach dfhuair thu ceangal?",
"resend_in": "Cuir a-rithist (%@)",
"resend_now": "Cuir a-rithist an-dràsta."
}
},
"home_timeline": {
@ -476,20 +360,19 @@
"published": "Chaidh fhoillseachadh!",
"Publishing": "A foillseachadh a phuist…",
"accessibility": {
"logo_label": "Mastodon",
"logo_label": "Putan an t-suaicheantais",
"logo_hint": "Thoir gnogag a sgroladh dhan bhàrr is thoir gnogag a-rithist a dhol dhan ionad roimhe"
}
}
},
"suggestion_account": {
"title": "Fèillmhor air Mastodon",
"follow_all": "Lean na h-uile"
"title": "Lorg daoine a leanas tu",
"follow_explain": "Nuair a leanas tu cuideigin, chì thu na puist aca air inbhir na dachaigh agad."
},
"compose": {
"title": {
"new_post": "Post ùr",
"new_reply": "Freagairt ùr",
"edit_post": "Deasaich am post"
"new_reply": "Freagairt ùr"
},
"media_selection": {
"camera": "Tog dealbh",
@ -513,7 +396,6 @@
"server_processing_state": "Tha am frithealaiche ga phròiseasadh…"
},
"poll": {
"title": "Cunntas-bheachd",
"duration_time": "Faide: %s",
"thirty_minutes": "Leth-uair a thìde",
"one_hour": "Uair a thìde",
@ -523,11 +405,7 @@
"seven_days": "Seachdain",
"option_number": "Roghainn %ld",
"the_poll_is_invalid": "Tha an cunntas-bheachd mì-dhligheach",
"the_poll_has_empty_option": "Tha roghainn fhalamh aig a chunntas-bheachd",
"add_option": "Cuir roghainn ris",
"remove_option": "Thoir an roghainn air falbh",
"move_up": "Gluais suas",
"move_down": "Gluais sìos"
"the_poll_has_empty_option": "Tha roghainn fhalamh aig a chunntas-bheachd"
},
"content_warning": {
"placeholder": "Sgrìobh rabhadh pongail an-seo…"
@ -559,12 +437,6 @@
"toggle_content_warning": "Toglaich rabhadh susbainte",
"append_attachment_entry": "Cuir ceanglachan ris %s",
"select_visibility_entry": "Tagh an fhaicsinneachd %s"
},
"language": {
"title": "Cànan a phuist",
"suggested": "Na mholamaid",
"recent": "O chionn goirid",
"other": "Cànan eile…"
}
},
"profile": {
@ -572,16 +444,11 @@
"follows_you": "Gad leantainn"
},
"dashboard": {
"my_posts": "postaichean",
"my_following": "a leantainn",
"my_followers": "luchd-leantainn",
"other_posts": "postaichean",
"other_following": "a leantainn",
"other_followers": "luchd-leantainn",
"familiar_followers": "co-dhàimhean"
"posts": "postaichean",
"following": "a leantainn",
"followers": "luchd-leantainn"
},
"fields": {
"joined": "Air ballrachd fhaighinn",
"add_row": "Cuir ràgh ris",
"placeholder": {
"label": "Leubail",
@ -623,14 +490,6 @@
"confirm_hide_reblogs": {
"title": "Falaich na brosnachaidhean",
"message": "Dearbh falach nam brosnachaidhean"
},
"confirm_block_domain": {
"title": "Bac an àrainn",
"message": "Dearbh bacadh na h-àrainne %s"
},
"confirm_unblock_domain": {
"title": "Dì-bhac an àrainn",
"message": "Dearbh dì-bhacadh na h-àrainne %s"
}
},
"accessibility": {
@ -678,20 +537,16 @@
}
},
"searching": {
"posts": "Postaichean a fhreagras ri “%s”",
"people": "Daoine a fhreagras ri “%s”",
"profile": "Tadhail air @%s@%s",
"url": "Fosgail an t-URL ann am Mastodon",
"hashtag": "Tadhail air #%s",
"no_user": {
"title": "Cha deach cunntas cleachdaiche a lorg",
"message": "Chan eil cunntas cleachdaiche “%s” air %s"
"segment": {
"all": "Na h-uile",
"people": "Daoine",
"hashtags": "Tagaichean hais",
"posts": "Postaichean"
},
"empty_state": {
"no_results": "Gun toradh"
},
"recent_search": "Na lorg thu o chionn goirid",
"clear_all": "Falamhaich na h-uile",
"clear": "Falamhaich"
}
},
@ -706,7 +561,7 @@
"intro": "Seo na postaichean fèillmhor nad cheàrnaidh de Mhastodon."
},
"favorite": {
"title": "Annsachdan"
"title": "Na h-annsachdan agad"
},
"notification": {
"title": {
@ -737,79 +592,60 @@
"title": "Post le %s"
},
"settings": {
"overview": {
"title": "Roghainnean",
"general": "Coitcheann",
"notifications": "Brathan",
"support_mastodon": "Thoir taic do Mhastodon",
"about_mastodon": "Mu Mhastodon",
"server_details": "Fiosrachadh mun fhrithealaiche",
"logout": "Clàraich a-mach %@"
},
"about_mastodon": {
"title": "Mu dhèidhinn",
"more_settings": "Fiù s a bharrachd roghainnean",
"contribute_to_mastodon": "Cuidich le leasachadh Mastodon",
"privacy_policy": "Poileasaidh prìobhaideachd",
"clear_media_storage": "Falamhaich stòras nam meadhanan"
},
"server_details": {
"about": "Mu dhèidhinn",
"rules": "Riaghailtean",
"about_instance": {
"title": "Rianaire",
"message_admin": "Cuir teachdaireachd dhan rianaire",
"legal_notice": "Sanas laghail"
}
},
"general": {
"title": "Coitcheann",
"title": "Roghainnean",
"section": {
"appearance": {
"section_title": "Coltas",
"dark": "Dorcha",
"light": "Soilleir",
"system": "Cleachd coltas an uidheim"
"title": "Coltas",
"automatic": "Fèin-obrachail",
"light": "Soilleir an-còmhnaidh",
"dark": "Dorcha an-còmhnaidh"
},
"ask_before": {
"section_title": "Faighnich ro…",
"posting_without_alt_text": "Postadh às aonais roghainn teacsa",
"unfollowing_someone": "Sgur de leantainn",
"boosting_a_post": "Brosnachadh puist",
"deleting_a_post": "Sguabadh às puist"
"look_and_feel": {
"title": "Coltas",
"use_system": "Cleachd coltas an t-siostaim",
"really_dark": "Glè dhorcha",
"sorta_dark": "Caran dorcha",
"light": "Soilleir"
},
"design": {
"section_title": "Co-dhealbhachd",
"show_animations": "Cluich beothachadh nan avataran s nan emoji"
"notifications": {
"title": "Brathan",
"favorites": "Nuair as annsa leotha am post agam",
"follows": "Nuair a leanas iad mi",
"boosts": "Nuair a bhrosnaicheas iad post uam",
"mentions": "Nuair a bheir iad iomradh orm",
"trigger": {
"anyone": "Airson duine sam bith, cuir brath thugam",
"follower": "Airson luchd-leantainn, cuir brath thugam",
"follow": "Airson daoine a leanas mi, cuir brath thugam",
"noone": "Na cuir brath thugam idir",
"title": " "
}
},
"language": {
"section_title": "Cànan",
"default_post_language": "Cànan bunaiteach nam post"
"preference": {
"title": "Roghainnean",
"true_black_dark_mode": "Modh dubh dorcha",
"disable_avatar_animation": "Cuir beothachadh nan avataran à comas",
"disable_emoji_animation": "Cuir beothachadh nan Emojis à comas",
"using_default_browser": "Cleachd am brabhsair bunaiteach airson ceanglaichean fhosgladh",
"open_links_in_mastodon": "Fosgail ceanglaichean ann am Mastodon"
},
"links": {
"section_title": "Ceanglaichean",
"open_in_mastodon": "Fosgail ann am Mastodon",
"open_in_browser": "Fosgail ann am brabhsair"
"boring_zone": {
"title": "An earrann ràsanach",
"account_settings": "Roghainnean a chunntais",
"terms": "Teirmichean na seirbheise",
"privacy": "Am poileasaidh prìobhaideachd"
},
"spicy_zone": {
"title": "Gnìomhan",
"clear": "Falamhaich tasgadan nam meadhanan",
"signout": "Clàraich a-mach"
}
},
"notifications": {
"title": "Brathan",
"policy": {
"title": "Faigh brathan o",
"anyone": "Duine sam bith",
"followers": "Daoine a tha gad leantainn",
"follow": "Daoine a tha thu gan leantainn",
"noone": "Na seall idir"
},
"alert": {
"mentions_and_replies": "Iomraidhean ⁊ freagairtean",
"boosts": "Brosnachaidhean",
"favorites": "Annsachdan",
"new_followers": "Luchd-leantainn ùr"
},
"disabled": {
"notification_hint": "Cuir air na brathan o roghainnean an uidheim agad a dhfhaicinn naidheachdan air an sgrìn-ghlasaidh agad.",
"go_to_settings": "Tadhail air roghainnean nam brathan"
}
"footer": {
"mastodon_description": "S e bathar-bog le bun-tùs fosgailte a th ann am Mastodon. S urrainn dhut aithris a dhèanamh air duilgheadasan air GitHub fo %s (%s)"
},
"keyboard": {
"close_settings_window": "Dùin uinneag nan roghainnean"
}
},
"report": {
@ -836,7 +672,7 @@
"malicious_links_fake_engagement_or_repetetive_replies": "Ceanglaichean droch-rùnach, conaltradh fuadain no an dearbh fhreagairt a-rithist s a-rithist",
"it_violates_server_rules": "Tha e a briseadh riaghailtean an fhrithealaiche",
"you_are_aware_that_it_breaks_specific_rules": "Mhothaich thu gu bheil e a briseadh riaghailtean sònraichte",
"its_something_else": "S e rud eile a tha ann",
"its_something_else": "S rud eile a tha ann",
"the_issue_does_not_fit_into_other_categories": "Chan eil na roinnean-seòrsa eile iomchaidh dhan chùis"
},
"step_two": {
@ -879,67 +715,13 @@
"dismiss_account_switcher": "Leig seachad taghadh a chunntais",
"add_account": "Cuir cunntas ris"
},
"wizard": {
"new_in_mastodon": "Na tha ùr ann am Mastodon",
"multiple_account_switch_intro_description": "Geàrr leum eadar iomadh cunntas le cumail sìos putan na pròifil.",
"accessibility_hint": "Thoir gnogag dhùbailte a leigeil seachad an draoidh seo"
},
"bookmark": {
"title": "Comharran-lìn"
},
"followed_tags": {
"title": "Tagaichean gan leantainn",
"header": {
"posts": "postaichean",
"participants": "com-pàirtichean",
"posts_today": "postaichean an-diugh"
},
"actions": {
"follow": "Lean",
"unfollow": "Na lean tuilleadh"
}
}
},
"extension": {
"open_in": {
"invalid_link_error": "Tha coltas nach e ceangal Mastodon dligheach a tha seo."
}
},
"widget": {
"common": {
"unsupported_widget_family": "Tha sinn duilich ach cha chuir sinn taic ris an teaghlach Widget seo.",
"user_not_logged_in": "Fosgail Mastodon a chlàradh a-steach gu cunntas."
},
"followers_count": {
"configuration_display_name": "Luchd-leantainn",
"configuration_description": "Seall an àireamh de luchd-leantainn.",
"title": "LUCHD-LEANTAINN",
"followers_today": "%s luchd-leantainn an-diugh"
},
"multiple_followers": {
"configuration_display_name": "Iomadh luchd-leantainn",
"configuration_description": "Seall an àireamh de luchd-leantainn do dhiomadh cunntas.",
"mock_user": {
"display_name": "Neach-leantainn eile",
"account_name": "cuideigineile@neach-leantainn.social"
}
},
"latest_followers": {
"configuration_display_name": "An luchd-leantainn as ùire",
"configuration_description": "Seall an luchd-leantainn as ùire.",
"title": "An luchd-leantainn as ùire",
"last_update": "An t-ùrachadh mu dheireadh: %s"
},
"hashtag": {
"configuration": {
"display_name": "Taga hais",
"description": "Seallaidh seo post o chionn goirid sa bheil an taga hais a thagh thu."
},
"not_found": {
"account_name": "John Mastodon",
"account": "@johnMastodon@chan-eil-an-cunntas.ann",
"content": "Tha sinn duilich ach cha do lorg sinn post sa bheil an taga hais <a>#%@</a>. Feuch <a>#TagaHaisEile</a> no thoir sùil air roghainnean a widget."
},
"placeholder": {
"account_name": "John Mastodon",
"account": "@johnMastodon@chan-eil-an-cunntas.ann",
"content": "Seo an coltas a bhiodh air post le <a>#TagaHais</a>. Tagh <a>#TagaHais</a> sam bith a thogras tu ann an roghainnean a widget."
}
}
}
}

View File

@ -53,7 +53,7 @@
<key>a11y.plural.count.characters_left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@character_count@</string>
<string>%#@character_count@ restantes</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
@ -61,9 +61,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>Queda 1 carácter</string>
<string>1 caracter</string>
<key>other</key>
<string>Quedan %ld caracteres</string>
<string>%ld caracteres</string>
</dict>
</dict>
<key>plural.count.followed_by_and_mutual</key>
@ -173,22 +173,6 @@
<string>%ld promocións</string>
</dict>
</dict>
<key>plural.count.reblog_a11y</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@reblog_count@</string>
<key>reblog_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 promoción</string>
<key>other</key>
<string>%ld promocións</string>
</dict>
</dict>
<key>plural.count.reply</key>
<dict>
<key>NSStringLocalizedFormatKey</key>

View File

@ -2,7 +2,7 @@
"common": {
"alerts": {
"common": {
"please_try_again": "Téntao de novo.",
"please_try_again": "Inténtao de novo.",
"please_try_again_later": "Inténtao de novo máis tarde."
},
"sign_up_failure": {
@ -15,6 +15,10 @@
"title": "Fallou a votación",
"poll_ended": "A enquisa rematou"
},
"discard_post_content": {
"title": "Descartar Borrador",
"message": "Confirma que queres descartar o contido do borrador."
},
"publish_post_failure": {
"title": "Fallou a publicación",
"message": "Fallou a publicación.\nComproba a conexión a internet.",
@ -47,29 +51,6 @@
"clean_cache": {
"title": "Limpar caché",
"message": "Baleirouse %s da caché correctamente."
},
"translation_failed": {
"title": "Nota",
"message": "Fallou a tradución. É posible que a administración non activase a tradución neste servidor ou que o servidor teña unha versión antiga de Mastodon que non ten soporte para a tradución.",
"button": "OK"
},
"media_missing_alt_text": {
"title": "O multimedia non ten Texto Alt",
"message": "%d das imaxes non teñen Alt Text. Publicar?",
"cancel": "Desbotar",
"post": "Publicar"
},
"boost_a_post": {
"title_boost": "Promover publicación?",
"title_unboost": "Retirar promoción?",
"cancel": "Desbotar",
"boost": "Promover",
"unboost": "Retirar promoción"
},
"unfollow_user": {
"title": "Deixa de seguir a %@?",
"cancel": "Desbotar",
"unfollow": "Deixar de seguir"
}
},
"controls": {
@ -94,9 +75,9 @@
"save_photo": "Gardar foto",
"copy_photo": "Copiar foto",
"sign_in": "Acceder",
"sign_up": "Crear conta",
"see_more": "Ver máis",
"preview": "Vista previa",
"copy": "Copiar",
"share": "Compartir",
"share_user": "Compartir %s",
"share_post": "Compartir publicación",
@ -110,26 +91,13 @@
"block_domain": "Bloquear a %s",
"unblock_domain": "Desbloquear a %s",
"settings": "Axustes",
"delete": "Eliminar",
"translate_post": {
"title": "Traducido do %s",
"unknown_language": "Descoñecido"
},
"edit_post": "Editar",
"bookmark": "Marcar",
"remove_bookmark": "Eliminar Marcador",
"follow": "Segue a %s",
"unfollow": "Deixa de seguir a %s"
"delete": "Eliminar"
},
"tabs": {
"home": "Inicio",
"search_and_explore": "Buscar e Explorar",
"notifications": "Notificacións",
"profile": "Perfil",
"a11y": {
"search": "Buscar",
"explore": "Descubrir"
}
"search": "Busca",
"notification": "Notificación",
"profile": "Perfil"
},
"keyboard": {
"common": {
@ -164,8 +132,6 @@
"sensitive_content": "Contido sensible",
"media_content_warning": "Toca nalgures para mostrar",
"tap_to_reveal": "Toca para mostrar",
"load_embed": "Cargar o contido",
"link_via_user": "%s vía %s",
"poll": {
"vote": "Votar",
"closed": "Pechada"
@ -187,12 +153,7 @@
"show_image": "Mostrar a imaxe",
"show_gif": "Mostrar GIF",
"show_video_player": "Mostrar reprodutor de vídeo",
"share_link_in_post": "Compartir Ligazón na Publicación",
"tap_then_hold_to_show_menu": "Toca e mantén preso para menú",
"a11y_labels": {
"reblog": "Promover",
"unreblog": "Retirar promoción"
}
"tap_then_hold_to_show_menu": "Toca e mantén preso para menú"
},
"tag": {
"url": "URL",
@ -207,30 +168,6 @@
"private": "Só as seguidoras poden ver a publicación.",
"private_from_me": "Só as miñas seguidoras poden ver esta publicación.",
"direct": "Só a usuaria mencionada pode ver a publicación."
},
"translation": {
"translated_from": "Traducido do %s usando %s",
"unknown_language": "Descoñecido",
"unknown_provider": "Descoñecido",
"show_original": "Mostrar o orixinal"
},
"media": {
"accessibility_label": "%s, adxunto %d de %d",
"expand_image_hint": "Desprega a imaxe. Dobre toque e manter para mostrar accións",
"expand_gif_hint": "Desprega o GIF. Dobre toque e manter para mostrar accións",
"expand_video_hint": "Mostra o reprodutor. Dobre toque e manter para mostrar accións"
},
"posted_via_application": "%s vía %s",
"buttons": {
"reblogs_title": "Promocións",
"favorites_title": "Favoritas",
"edit_history_title": "Editar historial",
"edit_history_detail": "Última edición %s"
},
"edited_at_timestamp_prefix": "Editada %s",
"edit_history": {
"title": "Historial de edicións",
"original_post": "Orixinal · %s"
}
},
"friendship": {
@ -240,11 +177,10 @@
"pending": "Pendente",
"block": "Bloquear",
"block_user": "Bloquear a %s",
"block_domain": "Bloquear dominio %s",
"block_domain": "Bloquear a %s",
"unblock": "Desbloquear",
"unblock_user": "Desbloquear a %s",
"blocked": "Bloqueada",
"domain_blocked": "Dominio bloqueado",
"mute": "Acalar",
"mute_user": "Acalar a %s",
"unmute": "Non Acalar",
@ -274,49 +210,25 @@
"user_suspended_warning": "A conta de %s foi suspendida."
}
}
},
"user_list": {
"no_verified_link": "Ligazón non verificada",
"followers_count": "%@ seguidoras"
}
},
"scene": {
"welcome": {
"log_in": "Acceder",
"learn_more": "Saber máis",
"join_default_server": "Únete a %@",
"pick_server": "Elixe outro servidor",
"separator": {
"or": "ou"
},
"education": {
"mastodon": {
"title": "Benvida a Mastodon",
"description": "Mastodon é unha rede social descentralizada, onde ningunha empresa ten o control. Está formada por moitos servidores independentes comunicándose entre si."
},
"servers": {
"title": "Que son os servidores?",
"description": "Cada conta Mastodon está hospedada nun servidor — cada unha coas súas regras, valores e admins. Non importa cal elixas, podes seguir e interactuar con persoas de outros servidores."
},
"a11y": {
"what_is_mastodon": {
"title": "Que é Mastodon?"
}
}
}
"slogan": "Comunicación social\nde volta ás túas mans.",
"get_started": "Crear conta",
"log_in": "Acceder"
},
"login": {
"title": "Benvida!",
"title": "Benvido outra vez",
"subtitle": "Conéctate ao servidor no que creaches a conta.",
"server_search_field": {
"placeholder": "Escribe o URL ou busca o teu servidor"
}
},
"server_picker": {
"title": "Elixe un Servidor",
"title": "Mastodon fórmano as persoas das diferentes comunidades.",
"subtitle": "Elixe un servidor en función dos teus intereses, rexión o un de propósito xeral. Poderás conversar con calquera en Mastodon, independentemente do servidor que elixas.",
"button": {
"language": "Idioma",
"signup_speed": "Rapidez no rexistro",
"category": {
"all": "Todo",
"all_accessiblity_description": "Categoría: Todo",
@ -348,41 +260,18 @@
"finding_servers": "Buscando servidores dispoñibles...",
"bad_network": "Algo fallou ao cargar os datos. Comproba a conexión a internet.",
"no_results": "Sen resultados"
},
"signup_speed": {
"all": "Todo",
"instant": "Rexistro Instantáneo",
"manually_reviewed": "Revisión manual"
},
"language": {
"all": "Todo"
},
"search": {
"placeholder": "Buscar por nome ou URL"
},
"no_server_selected_hint": "Se non elixes ti, escolleremos un servidor en función do teu idioma."
},
"privacy": {
"title": "Privacidade",
"description": "Aínda que a app Mastodon non recolle ningún dato, o servidor no que abriches a conta podería ter unha política diferente. Toma un intre para revisar e aceptar a política de privacidade da app Mastodon e a política de privacidade do teu servidor.",
"policy": {
"ios": "Política de Privacidade - Mastodon para iOS",
"server": "Política de Privacidade - %s"
},
"button": {
"confirm": "Acepto"
}
},
"register": {
"title": "Crear conta",
"title": "Imos crear a túa conta en %s",
"lets_get_you_set_up_on_domain": "Imos crear a túa conta en %s",
"input": {
"avatar": {
"delete": "Eliminar"
},
"username": {
"placeholder": "identificador",
"duplicate_prompt": "Este nome de usuaria xa está en uso.",
"suggestion": "rula_%@"
"duplicate_prompt": "Este nome de usuaria xa está en uso."
},
"display_name": {
"placeholder": "nome público"
@ -392,7 +281,6 @@
},
"password": {
"placeholder": "contrasinal",
"confirmation_placeholder": "Confirmar contrasinal",
"require": "O contrasinal debe ter polo menos:",
"character_limit": "8 caracteres",
"accessibility": {
@ -417,7 +305,7 @@
"reason": {
"blocked": "%s é un provedor de email non autorizado",
"unreachable": "%s semella que non existe",
"taken": "%s xa está pillado. Que tal:",
"taken": "%s xa está en uso",
"reserved": "%s é unha palabra reservada",
"accepted": "%s debe ser aceptado",
"blank": "%s é requerido",
@ -435,20 +323,21 @@
}
},
"server_rules": {
"title": "Regras do servidor",
"subtitle": "Se continúas, aceptas seguir as regras establecidas e aplicadas pola moderación de **%s**.",
"title": "Algunhas regras básicas.",
"subtitle": "Son establecidas e aplicadas pola moderación de %s.",
"prompt": "Ao continuar, acatas os termos do servizo e a política de privacidade para %s.",
"terms_of_service": "termos do servizo",
"privacy_policy": "polícica de privacidade",
"button": {
"confirm": "Acepto",
"disagree": "Non aceptar"
"confirm": "Acepto"
}
},
"confirm_email": {
"title": "Mira na caixa de correo",
"tap_the_link_we_emailed_to_you_to_verify_your_account": "Preme na ligazón que che enviamos para verificar a conta %@. Agardamos por ti.",
"title": "O último detalle.",
"subtitle": "Preme na ligazón que che enviamos ao email para verificar a conta.",
"tap_the_link_we_emailed_to_you_to_verify_your_account": "Preme na ligazón que che enviamos ao email para verificar a conta",
"button": {
"open_email_app": "Abrir app de email",
"resend": "Reenviar"
},
"dont_receive_email": {
@ -457,15 +346,10 @@
"resend_email": "Volver enviar o correo"
},
"open_email_app": {
"title": "Comproba a Caixa de correo.",
"title": "Mira na caixa de correo.",
"description": "Enviámosche un email. Se non aparece, mira no cartafol do lixo.",
"mail": "Correo",
"open_email_client": "Abrir cliente de email"
},
"didnt_get_link": {
"prefix": "Non recibiches unha ligazón?",
"resend_in": "Reenviar (%@)",
"resend_now": "Reenviar agora."
}
},
"home_timeline": {
@ -476,20 +360,19 @@
"published": "Publicado!",
"Publishing": "Publicando...",
"accessibility": {
"logo_label": "Mastodon",
"logo_label": "Botón do logo",
"logo_hint": "Toca para ir arriba e toca outra vez para volver ao mesmo lugar"
}
}
},
"suggestion_account": {
"title": "Popular en Mastodon",
"follow_all": "Seguir a todas"
"title": "Atopar persoas para seguir",
"follow_explain": "Cando sigas a alguén verás as súas publicacións na cronoloxía de inicio."
},
"compose": {
"title": {
"new_post": "Nova publicación",
"new_reply": "Nova resposta",
"edit_post": "Editar publicación"
"new_reply": "Nova resposta"
},
"media_selection": {
"camera": "Facer foto",
@ -513,7 +396,6 @@
"server_processing_state": "Procesando no servidor..."
},
"poll": {
"title": "Enquisa",
"duration_time": "Duración: %s",
"thirty_minutes": "30 minutos",
"one_hour": "1 Hora",
@ -523,11 +405,7 @@
"seven_days": "7 Días",
"option_number": "Opción %ld",
"the_poll_is_invalid": "A enquisa non é válida",
"the_poll_has_empty_option": "A enquisa ten unha opción baleira",
"add_option": "Engadir opción",
"remove_option": "Quitar opción",
"move_up": "Mover cara arriba",
"move_down": "Mover cara abaixo"
"the_poll_has_empty_option": "A enquisa ten unha opción baleira"
},
"content_warning": {
"placeholder": "Escribe o teu aviso aquí..."
@ -559,12 +437,6 @@
"toggle_content_warning": "Marcar con Aviso sobre o contido",
"append_attachment_entry": "Engadir anexo - %s",
"select_visibility_entry": "Elexir visibilidade - %s"
},
"language": {
"title": "Idioma de publicación",
"suggested": "Suxerido",
"recent": "Recentes",
"other": "Outro idioma…"
}
},
"profile": {
@ -572,16 +444,11 @@
"follows_you": "Séguete"
},
"dashboard": {
"my_posts": "publicacións",
"my_following": "seguindo",
"my_followers": "seguidoras",
"other_posts": "publicacións",
"other_following": "seguindo",
"other_followers": "seguidoras",
"familiar_followers": "mutuo"
"posts": "publicacións",
"following": "seguindo",
"followers": "seguidoras"
},
"fields": {
"joined": "Uniuse",
"add_row": "Engadir fila",
"placeholder": {
"label": "Etiqueta",
@ -623,14 +490,6 @@
"confirm_hide_reblogs": {
"title": "Agochar Promocións",
"message": "Confirma para agochar promocións"
},
"confirm_block_domain": {
"title": "Bloquear dominio",
"message": "Confirmar o bloqueo do dominio %s"
},
"confirm_unblock_domain": {
"title": "Desbloquear dominio",
"message": "Confirmar o desbloqueo de %s"
}
},
"accessibility": {
@ -678,20 +537,16 @@
}
},
"searching": {
"posts": "Publicacións coincidentes con \"%s\"",
"people": "Perfís coincidentes con \"%s\"",
"profile": "Ir a @%s@%s",
"url": "Abrir URL en Mastodon",
"hashtag": "Ir a #%s",
"no_user": {
"title": "Non se atopou ningunha conta",
"message": "Non hai contas con \"%s\" en %s"
"segment": {
"all": "Todo",
"people": "Persoas",
"hashtags": "Cancelos",
"posts": "Publicacións"
},
"empty_state": {
"no_results": "Sen resultados"
},
"recent_search": "Buscas recentes",
"clear_all": "Limpar todo",
"clear": "Limpar"
}
},
@ -706,7 +561,7 @@
"intro": "Estas son as publicacións en voga no teu recuncho de Mastodon."
},
"favorite": {
"title": "Favoritas"
"title": "Publicacións Favoritas"
},
"notification": {
"title": {
@ -737,79 +592,60 @@
"title": "Publicación de %s"
},
"settings": {
"overview": {
"title": "Axustes",
"general": "Xeral",
"notifications": "Notificacións",
"support_mastodon": "Apoia a Mastodon",
"about_mastodon": "Acerca de Mastodon",
"server_details": "Detalles do servidor",
"logout": "Pechar sesión %@"
},
"about_mastodon": {
"title": "Acerca de",
"more_settings": "Máis axustes",
"contribute_to_mastodon": "Colaborar con Mastodon",
"privacy_policy": "Política de Privacidade",
"clear_media_storage": "Limpar Almacenaxe Multimedia"
},
"server_details": {
"about": "Acerca de",
"rules": "Regras",
"about_instance": {
"title": "Administración",
"message_admin": "Mensaxe a Admin",
"legal_notice": "Aviso Legal"
}
},
"general": {
"title": "Xeral",
"title": "Axustes",
"section": {
"appearance": {
"section_title": "Aparencia",
"dark": "Escuro",
"light": "Claro",
"system": "Seguir ao dispositivo"
"title": "Aparencia",
"automatic": "Automático",
"light": "Sempre claro",
"dark": "Sempre escuro"
},
"ask_before": {
"section_title": "Preguntar antes…",
"posting_without_alt_text": "Publicar sen Texto Alt",
"unfollowing_someone": "Deixar de seguir a alguén",
"boosting_a_post": "Promover unha publicación",
"deleting_a_post": "Eliminar unha publicación"
"look_and_feel": {
"title": "Aparencia",
"use_system": "Seguir o sistema",
"really_dark": "Realmente escuro",
"sorta_dark": "Algo escuro",
"light": "Claro"
},
"design": {
"section_title": "Deseño",
"show_animations": "Reproducir avatares e emoji animados"
"notifications": {
"title": "Notificacións",
"favorites": "Favorece a miña publicación",
"follows": "Me segue",
"boosts": "Promove a miña publicación",
"mentions": "Me menciona",
"trigger": {
"anyone": "calquera",
"follower": "unha seguidora",
"follow": "alguén a quen sigo",
"noone": "ninguén",
"title": "Avisarme cando"
}
},
"language": {
"section_title": "Idioma",
"default_post_language": "Idioma por defecto ao publicar"
"preference": {
"title": "Preferencias",
"true_black_dark_mode": "Modo negro verdadeiro",
"disable_avatar_animation": "Desactivar avatares animados",
"disable_emoji_animation": "Desactivar emojis animados",
"using_default_browser": "Usar navegador por defecto para as ligazóns",
"open_links_in_mastodon": "Abrir ligazóns en Mastodon"
},
"links": {
"section_title": "Ligazóns",
"open_in_mastodon": "Abrir en Mastodon",
"open_in_browser": "Abrir no navegador"
"boring_zone": {
"title": "A zona aburrida",
"account_settings": "Axustes da conta",
"terms": "Termos do Servizo",
"privacy": "Política de Privacidade"
},
"spicy_zone": {
"title": "A zona picante",
"clear": "Limpar caché multimedia",
"signout": "Pechar sesión"
}
},
"notifications": {
"title": "Notificacións",
"policy": {
"title": "Recibir notificacións de",
"anyone": "Calquera",
"followers": "Persoas que te seguen",
"follow": "Persoas que segues",
"noone": "Ninguén"
},
"alert": {
"mentions_and_replies": "Mencións e respostas",
"boosts": "Promocións",
"favorites": "Favoritos",
"new_followers": "Novas seguidoras"
},
"disabled": {
"notification_hint": "Activar notificacións nos axustes do dispositivo para ver novidades na pantalla de bloqueo.",
"go_to_settings": "Ir aos axustes das notificacións"
}
"footer": {
"mastodon_description": "Mastodon é software de código aberto. Podes informar de fallos en GitHub en %s (%s)"
},
"keyboard": {
"close_settings_window": "Pechar ventá de axustes"
}
},
"report": {
@ -879,67 +715,13 @@
"dismiss_account_switcher": "Desbotar intercambiador de contas",
"add_account": "Engadir conta"
},
"wizard": {
"new_in_mastodon": "Novidade en Mastodon",
"multiple_account_switch_intro_description": "Cambia dunha conta a outra mantendo preso o botón do perfil.",
"accessibility_hint": "Dobre toque para desbotar este asistente"
},
"bookmark": {
"title": "Marcadores"
},
"followed_tags": {
"title": "Cancelos seguidos",
"header": {
"posts": "publicacións",
"participants": "participantes",
"posts_today": "publicacións de hoxe"
},
"actions": {
"follow": "Seguir",
"unfollow": "Deixar de seguir"
}
}
},
"extension": {
"open_in": {
"invalid_link_error": "Non semella ser unha ligazón válida de Mastodon."
}
},
"widget": {
"common": {
"unsupported_widget_family": "Unha mágoa, pero hai soporte para esta familia de Widgets.",
"user_not_logged_in": "Abre Mastodon para iniciar sesión coa Conta."
},
"followers_count": {
"configuration_display_name": "Seguidoras",
"configuration_description": "Mostrar o número de seguidoras.",
"title": "SEGUIDORAS",
"followers_today": "%s seguidoras hoxe"
},
"multiple_followers": {
"configuration_display_name": "Varias seguidoras",
"configuration_description": "Mostrar o número de seguidoras para varias contas.",
"mock_user": {
"display_name": "Outra seguidora",
"account_name": "fulanito@follower.social"
}
},
"latest_followers": {
"configuration_display_name": "Últimas seguidoras",
"configuration_description": "Mostra seguidoras recentes.",
"title": "Últimas seguidoras",
"last_update": "Última actualización: %s"
},
"hashtag": {
"configuration": {
"display_name": "Cancelo",
"description": "Mostra unha publicación recente co cancelo seleccionado."
},
"not_found": {
"account_name": "John Mastodon",
"account": "@johnMastodon@nonhai.talconta",
"content": "Lamentámolo, pero non atopamos nada co cancelo <a>#%@</a>. Inténtado cun <a>#CanceloDistinto</a> ou comproba os axustes."
},
"placeholder": {
"account_name": "John Mastodon",
"account": "@johnMastodon@nonhai.talconta",
"content": "Este é o aspecto dunha publicación cun <a>#cancelo</a>. Elixe o <a>#cancelo</a> que queres nos axustes do widget. "
}
}
}
}

View File

@ -1,601 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>a11y.plural.count.unread.notification</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@notification_count_unread_notification@</string>
<key>notification_count_unread_notification</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>התראה אחת שלא נקראה</string>
<key>two</key>
<string>שתי התראות שלא נקראו</string>
<key>many</key>
<string>%ld unread notifications</string>
<key>other</key>
<string>%ld התראות שלא נקראו</string>
</dict>
</dict>
<key>a11y.plural.count.input_limit_exceeds</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>Input limit exceeds %#@character_count@</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 character</string>
<key>two</key>
<string>%ld characters</string>
<key>many</key>
<string>%ld characters</string>
<key>other</key>
<string>%ld characters</string>
</dict>
</dict>
<key>a11y.plural.count.input_limit_remains</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>Input limit remains %#@character_count@</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 character</string>
<key>two</key>
<string>%ld characters</string>
<key>many</key>
<string>%ld characters</string>
<key>other</key>
<string>%ld characters</string>
</dict>
</dict>
<key>a11y.plural.count.characters_left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@character_count@</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 character left</string>
<key>two</key>
<string>%ld characters left</string>
<key>many</key>
<string>%ld characters left</string>
<key>other</key>
<string>%ld characters left</string>
</dict>
</dict>
<key>plural.count.followed_by_and_mutual</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@names@%#@count_mutual@</string>
<key>names</key>
<dict>
<key>one</key>
<string></string>
<key>two</key>
<string></string>
<key>many</key>
<string></string>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>other</key>
<string></string>
</dict>
<key>count_mutual</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>Followed by %1$@, and another mutual</string>
<key>two</key>
<string>Followed by %1$@, and %ld mutuals</string>
<key>many</key>
<string>Followed by %1$@, and %ld mutuals</string>
<key>other</key>
<string>Followed by %1$@, and %ld mutuals</string>
</dict>
</dict>
<key>plural.count.metric_formatted.post</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%@ %#@post_count@</string>
<key>post_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>post</string>
<key>two</key>
<string>posts</string>
<key>many</key>
<string>posts</string>
<key>other</key>
<string>posts</string>
</dict>
</dict>
<key>plural.count.media</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@media_count@</string>
<key>media_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 media</string>
<key>two</key>
<string>%ld media</string>
<key>many</key>
<string>%ld media</string>
<key>other</key>
<string>%ld media</string>
</dict>
</dict>
<key>plural.count.post</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@post_count@</string>
<key>post_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 post</string>
<key>two</key>
<string>%ld posts</string>
<key>many</key>
<string>%ld posts</string>
<key>other</key>
<string>%ld posts</string>
</dict>
</dict>
<key>plural.count.favorite</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@favorite_count@</string>
<key>favorite_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 favorite</string>
<key>two</key>
<string>%ld favorites</string>
<key>many</key>
<string>%ld favorites</string>
<key>other</key>
<string>%ld favorites</string>
</dict>
</dict>
<key>plural.count.reblog</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@reblog_count@</string>
<key>reblog_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 reblog</string>
<key>two</key>
<string>%ld reblogs</string>
<key>many</key>
<string>%ld reblogs</string>
<key>other</key>
<string>%ld reblogs</string>
</dict>
</dict>
<key>plural.count.reblog_a11y</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@reblog_count@</string>
<key>reblog_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 re-blog</string>
<key>two</key>
<string>%ld re-blogs</string>
<key>many</key>
<string>%ld re-blogs</string>
<key>other</key>
<string>%ld re-blogs</string>
</dict>
</dict>
<key>plural.count.reply</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@reply_count@</string>
<key>reply_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 reply</string>
<key>two</key>
<string>%ld replies</string>
<key>many</key>
<string>%ld replies</string>
<key>other</key>
<string>%ld replies</string>
</dict>
</dict>
<key>plural.count.vote</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@vote_count@</string>
<key>vote_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 vote</string>
<key>two</key>
<string>%ld votes</string>
<key>many</key>
<string>%ld votes</string>
<key>other</key>
<string>%ld votes</string>
</dict>
</dict>
<key>plural.count.voter</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@voter_count@</string>
<key>voter_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 voter</string>
<key>two</key>
<string>%ld voters</string>
<key>many</key>
<string>%ld voters</string>
<key>other</key>
<string>%ld voters</string>
</dict>
</dict>
<key>plural.people_talking</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_people_talking@</string>
<key>count_people_talking</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 people talking</string>
<key>two</key>
<string>%ld people talking</string>
<key>many</key>
<string>%ld people talking</string>
<key>other</key>
<string>%ld people talking</string>
</dict>
</dict>
<key>plural.count.following</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_following@</string>
<key>count_following</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 following</string>
<key>two</key>
<string>%ld following</string>
<key>many</key>
<string>%ld following</string>
<key>other</key>
<string>%ld following</string>
</dict>
</dict>
<key>plural.count.follower</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_follower@</string>
<key>count_follower</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 follower</string>
<key>two</key>
<string>%ld followers</string>
<key>many</key>
<string>%ld followers</string>
<key>other</key>
<string>%ld followers</string>
</dict>
</dict>
<key>date.year.left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_year_left@</string>
<key>count_year_left</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 year left</string>
<key>two</key>
<string>%ld years left</string>
<key>many</key>
<string>%ld years left</string>
<key>other</key>
<string>%ld years left</string>
</dict>
</dict>
<key>date.month.left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_month_left@</string>
<key>count_month_left</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 months left</string>
<key>two</key>
<string>%ld months left</string>
<key>many</key>
<string>%ld months left</string>
<key>other</key>
<string>%ld months left</string>
</dict>
</dict>
<key>date.day.left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_day_left@</string>
<key>count_day_left</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 day left</string>
<key>two</key>
<string>%ld days left</string>
<key>many</key>
<string>%ld days left</string>
<key>other</key>
<string>%ld days left</string>
</dict>
</dict>
<key>date.hour.left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_hour_left@</string>
<key>count_hour_left</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 hour left</string>
<key>two</key>
<string>%ld hours left</string>
<key>many</key>
<string>%ld hours left</string>
<key>other</key>
<string>%ld hours left</string>
</dict>
</dict>
<key>date.minute.left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_minute_left@</string>
<key>count_minute_left</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 minute left</string>
<key>two</key>
<string>%ld minutes left</string>
<key>many</key>
<string>%ld minutes left</string>
<key>other</key>
<string>%ld minutes left</string>
</dict>
</dict>
<key>date.second.left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_second_left@</string>
<key>count_second_left</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 second left</string>
<key>two</key>
<string>%ld seconds left</string>
<key>many</key>
<string>%ld seconds left</string>
<key>other</key>
<string>%ld seconds left</string>
</dict>
</dict>
<key>date.year.ago.abbr</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_year_ago_abbr@</string>
<key>count_year_ago_abbr</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>לפני שנה</string>
<key>two</key>
<string>לפני שנתיים</string>
<key>many</key>
<string>%ldy ago</string>
<key>other</key>
<string>לפני %ld שנים</string>
</dict>
</dict>
<key>date.month.ago.abbr</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_month_ago_abbr@</string>
<key>count_month_ago_abbr</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>לפני חודש</string>
<key>two</key>
<string>לפני חודשיים</string>
<key>many</key>
<string>%ldM ago</string>
<key>other</key>
<string>לפני %ld חודשים</string>
</dict>
</dict>
<key>date.day.ago.abbr</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_day_ago_abbr@</string>
<key>count_day_ago_abbr</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>לפני יום</string>
<key>two</key>
<string>לפני יומיים</string>
<key>many</key>
<string>%ldd ago</string>
<key>other</key>
<string>לפני %ld ימים</string>
</dict>
</dict>
<key>date.hour.ago.abbr</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_hour_ago_abbr@</string>
<key>count_hour_ago_abbr</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>לפני שעה</string>
<key>two</key>
<string>לפני שעתיים</string>
<key>many</key>
<string>%ldh ago</string>
<key>other</key>
<string>לפני %ld שעות</string>
</dict>
</dict>
<key>date.minute.ago.abbr</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_minute_ago_abbr@</string>
<key>count_minute_ago_abbr</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>לפני דקה</string>
<key>two</key>
<string>לפני שתי דקות</string>
<key>many</key>
<string>%ldm ago</string>
<key>other</key>
<string>לפני %ld דקות</string>
</dict>
</dict>
<key>date.second.ago.abbr</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_second_ago_abbr@</string>
<key>count_second_ago_abbr</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>לפני שנייה</string>
<key>two</key>
<string>לפני שתי שניות</string>
<key>many</key>
<string>%lds ago</string>
<key>other</key>
<string>לפני %ld שניות</string>
</dict>
</dict>
</dict>
</plist>

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