Merge branch 'develop' into image-height

This commit is contained in:
Marcus Kida 2023-01-05 14:48:31 +01:00
commit c4bc83dbd3
No known key found for this signature in database
GPG Key ID: 19FF64E08013CA40
517 changed files with 23199 additions and 7710 deletions

48
.github/ISSUE_TEMPLATE/feature.yml vendored Normal file
View File

@ -0,0 +1,48 @@
---
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

@ -36,6 +36,8 @@ BUILD_NUMBER=$(app-store-connect get-latest-testflight-build-number $ENV_APP_ID
BUILD_NUMBER=$((BUILD_NUMBER+1)) BUILD_NUMBER=$((BUILD_NUMBER+1))
CURRENT_PROJECT_VERSION=${BUILD_NUMBER:-0} CURRENT_PROJECT_VERSION=${BUILD_NUMBER:-0}
echo "GITHUB_TAG_NAME=build-$CURRENT_PROJECT_VERSION" >> $GITHUB_ENV
agvtool new-version -all $CURRENT_PROJECT_VERSION agvtool new-version -all $CURRENT_PROJECT_VERSION
xcrun xcodebuild clean \ xcrun xcodebuild clean \

View File

@ -4,6 +4,7 @@ on:
push: push:
branches: branches:
- develop - develop
- release*
- ci-test - ci-test
jobs: jobs:
@ -11,18 +12,19 @@ jobs:
name: Build name: Build
runs-on: macOS-12 runs-on: macOS-12
steps: steps:
- name: checkout - name: Checkout
uses: actions/checkout@v2 uses: actions/checkout@v2
- name: setup - name: Setup
env: env:
NotificationEndpointDebug: ${{ secrets.NotificationEndpointDebug }} NotificationEndpointDebug: ${{ secrets.NotificationEndpointDebug }}
NotificationEndpointRelease: ${{ secrets.NotificationEndpointRelease }} NotificationEndpointRelease: ${{ secrets.NotificationEndpointRelease }}
run: exec ./.github/scripts/setup.sh run: exec ./.github/scripts/setup.sh
- uses: actions/setup-python@v4 - name: Install codemagic-cli-tools
uses: actions/setup-python@v4
with: with:
python-version: '3.11' python-version: '3.10'
- run: | - run: |
pip3 install codemagic-cli-tools pip3 install codemagic-cli-tools
- run: | - run: |
@ -43,7 +45,7 @@ jobs:
api-key-id: ${{ secrets.APPSTORE_KEY_ID }} api-key-id: ${{ secrets.APPSTORE_KEY_ID }}
api-private-key: ${{ secrets.APPSTORE_PRIVATE_KEY }} api-private-key: ${{ secrets.APPSTORE_PRIVATE_KEY }}
- name: build - name: Build
env: env:
ENV_APP_ID: ${{ secrets.APP_ID }} ENV_APP_ID: ${{ secrets.APP_ID }}
ENV_ISSUER_ID: ${{ secrets.APPSTORE_ISSUER_ID }} ENV_ISSUER_ID: ${{ secrets.APPSTORE_ISSUER_ID }}
@ -60,6 +62,12 @@ jobs:
api-key-id: ${{ secrets.APPSTORE_KEY_ID }} api-key-id: ${{ secrets.APPSTORE_KEY_ID }}
api-private-key: ${{ secrets.APPSTORE_PRIVATE_KEY }} 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 - name: Clean up keychain and provisioning profile
if: ${{ always() }} if: ${{ always() }}
run: | run: |

View File

@ -6,6 +6,9 @@ on:
- master - master
- develop - develop
- feature/* - feature/*
- feature-*
- issue/*
- issue-*
pull_request: pull_request:
branches: branches:
- develop - develop

7
.gitignore vendored
View File

@ -125,4 +125,9 @@ Localization/StringsConvertor/output
.DS_Store .DS_Store
env/**/** env/**/**
!env/.env !env/.env
## Ruby ###
vendor/
.bundle/

View File

@ -0,0 +1,96 @@
# 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 `Sourery` generates 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

@ -100,7 +100,9 @@ GEM
PLATFORMS PLATFORMS
arm64-darwin-21 arm64-darwin-21
arm64-darwin-22
x86_64-darwin-21 x86_64-darwin-21
x86_64-darwin-22
DEPENDENCIES DEPENDENCIES
arkana arkana

View File

@ -13,15 +13,15 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>no unread notification</string> <string>no unread notifications</string>
<key>one</key> <key>one</key>
<string>1 unread notification</string> <string>1 unread notification</string>
<key>few</key> <key>few</key>
<string>%ld unread notifications</string> <string>%ld unread notifications</string>
<key>many</key> <key>many</key>
<string>%ld unread notification</string> <string>%ld unread notifications</string>
<key>other</key> <key>other</key>
<string>%ld unread notification</string> <string>%ld unread notifications</string>
</dict> </dict>
</dict> </dict>
<key>a11y.plural.count.input_limit_exceeds</key> <key>a11y.plural.count.input_limit_exceeds</key>
@ -71,7 +71,7 @@
<key>a11y.plural.count.characters_left</key> <key>a11y.plural.count.characters_left</key>
<dict> <dict>
<key>NSStringLocalizedFormatKey</key> <key>NSStringLocalizedFormatKey</key>
<string>%#@character_count@ left</string> <string>%#@character_count@</string>
<key>character_count</key> <key>character_count</key>
<dict> <dict>
<key>NSStringFormatSpecTypeKey</key> <key>NSStringFormatSpecTypeKey</key>
@ -79,15 +79,15 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>no characters</string> <string>no characters left</string>
<key>one</key> <key>one</key>
<string>1 character</string> <string>1 character left</string>
<key>few</key> <key>few</key>
<string>%ld characters</string> <string>%ld characters left</string>
<key>many</key> <key>many</key>
<string>%ld characters</string> <string>%ld characters left</string>
<key>other</key> <key>other</key>
<string>%ld characters</string> <string>%ld characters left</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.followed_by_and_mutual</key> <key>plural.count.followed_by_and_mutual</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: 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` 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`. 3. Commit the changes and push `develop`.
[crowdin-mastodon-ios]: https://crowdin.com/project/mastodon-for-ios [crowdin-mastodon-ios]: https://crowdin.com/project/mastodon-for-ios

View File

@ -0,0 +1,51 @@
"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

@ -0,0 +1,38 @@
<?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

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

View File

@ -25,7 +25,7 @@
<key>There are ${count} options matching ${visibility}.</key> <key>There are ${count} options matching ${visibility}.</key>
<dict> <dict>
<key>NSStringLocalizedFormatKey</key> <key>NSStringLocalizedFormatKey</key>
<string>There are %#@count_option@ matching ${visibility}.</string> <string>Existuje %#@count_option@ odpovídající „${visibility}“.</string>
<key>count_option</key> <key>count_option</key>
<dict> <dict>
<key>NSStringFormatSpecTypeKey</key> <key>NSStringFormatSpecTypeKey</key>

View File

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

View File

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

View File

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

View File

@ -0,0 +1,51 @@
"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

@ -0,0 +1,46 @@
<?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

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

View File

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

View File

@ -0,0 +1,51 @@
"16wxgf" = "Birta á Mastodon";
"751xkl" = "Efni texta";
"CsR7G2" = "Birta á Mastodon";
"HZSGTr" = "Hvaða efni á að birta?";
"HdGikU" = "Birting færslu mistókst";
"KDNTJ4" = "Ástæða bilunar";
"RHxKOw" = "Senda færslu með textaefni";
"RxSqsb" = "Færsla";
"WCIR3D" = "Birta ${content} á Mastodon";
"ZKJSNu" = "Færsla";
"ZS1XaK" = "${content}";
"ZbSjzC" = "Sýnileiki";
"Zo4jgJ" = "Sýnileiki færslu";
"apSxMG-dYQ5NN" = "Það eru ${count} valkostir sem samsvara Opinbert.";
"apSxMG-ehFLjY" = "Það eru ${count} valkostir sem samsvara Einungis fylgjendur.";
"ayoYEb-dYQ5NN" = "${content}, opinbert";
"ayoYEb-ehFLjY" = "${content}, einungis fylgjendur";
"dUyuGg" = "Birta á Mastodon";
"dYQ5NN" = "Opinbert";
"ehFLjY" = "Einungis fylgjendur";
"gfePDu" = "Birting færslu mistókst. ${failureReason}";
"k7dbKQ" = "Það tókst að senda færsluna.";
"oGiqmY-dYQ5NN" = "Bara til að staðfesta, þú vildir 'Opinbert'?";
"oGiqmY-ehFLjY" = "Bara til að staðfesta, þú vildir ''Einungis fylgjendur'?";
"rM6dvp" = "URL-slóð";
"ryJLwG" = "Það tókst að senda færsluna. ";

View File

@ -0,0 +1,38 @@
<?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>Það eru %#@count_option@ sem samsvara ${content}.</string>
<key>count_option</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>%ld</string>
<key>one</key>
<string>1 valkostur</string>
<key>other</key>
<string>%ld valkostir</string>
</dict>
</dict>
<key>There are ${count} options matching ${visibility}.</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>Það eru %#@count_option@ sem samsvara ${visibility}.</string>
<key>count_option</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>%ld</string>
<key>one</key>
<string>1 valkostur</string>
<key>other</key>
<string>%ld valkostir</string>
</dict>
</dict>
</dict>
</plist>

View File

@ -29,9 +29,9 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>%ld</string> <string>%ld</string>
<key>one</key> <key>one</key>
<string>1 uɣewwaṛ</string> <string>%ld n uɣewwaṛ</string>
<key>other</key> <key>other</key>
<string>%ld iɣewwaṛen</string> <string>%ld n iɣewwaṛen</string>
</dict> </dict>
</dict> </dict>
</dict> </dict>

View File

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

View File

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

View File

@ -0,0 +1,51 @@
"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

@ -0,0 +1,34 @@
<?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

@ -4,9 +4,9 @@
"CsR7G2" = "Postar no Mastodon"; "CsR7G2" = "Postar no Mastodon";
"HZSGTr" = "What content to post?"; "HZSGTr" = "Qual conteúdo a publicar?";
"HdGikU" = "Posting failed"; "HdGikU" = "Falha na publicação";
"KDNTJ4" = "Motivo da falha"; "KDNTJ4" = "Motivo da falha";
@ -22,30 +22,30 @@
"ZbSjzC" = "Visibilidade"; "ZbSjzC" = "Visibilidade";
"Zo4jgJ" = "Post Visibility"; "Zo4jgJ" = "Visibilidade da publicação";
"apSxMG-dYQ5NN" = "There are ${count} options matching Public."; "apSxMG-dYQ5NN" = "Existem ${count} opções correspondentes a Público.";
"apSxMG-ehFLjY" = "There are ${count} options matching Followers Only."; "apSxMG-ehFLjY" = "Existem ${count} opções correspondentes a Apenas para seguidores.";
"ayoYEb-dYQ5NN" = "${content}, Public"; "ayoYEb-dYQ5NN" = "${content}, Público";
"ayoYEb-ehFLjY" = "${content}, Followers Only"; "ayoYEb-ehFLjY" = "${content}, Apenas para seguidores";
"dUyuGg" = "Post on Mastodon"; "dUyuGg" = "Postar no Mastodon";
"dYQ5NN" = "Public"; "dYQ5NN" = "Público";
"ehFLjY" = "Followers Only"; "ehFLjY" = "Apenas para seguidores";
"gfePDu" = "Posting failed. ${failureReason}"; "gfePDu" = "Falha na publicação. ${failureReason}";
"k7dbKQ" = "Post was sent successfully."; "k7dbKQ" = "Publicação enviada com sucesso.";
"oGiqmY-dYQ5NN" = "Just to confirm, you wanted Public?"; "oGiqmY-dYQ5NN" = "Só para confirmar, você queria Público?";
"oGiqmY-ehFLjY" = "Just to confirm, you wanted Followers Only?"; "oGiqmY-ehFLjY" = "Só para confirmar, você queria Apenas para seguidores?";
"rM6dvp" = "URL"; "rM6dvp" = "URL";
"ryJLwG" = "Post was sent successfully. "; "ryJLwG" = "Publicação enviada com sucesso. ";

View File

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

View File

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

View File

@ -53,6 +53,7 @@ private func map(language: String) -> String? {
case "ca.lproj": return "ca" // Catalan case "ca.lproj": return "ca" // Catalan
case "zh-Hans.lproj": return "zh-Hans" // Chinese Simplified case "zh-Hans.lproj": return "zh-Hans" // Chinese Simplified
case "zh-Hant.lproj": return "zh-Hant" // Chinese Traditional case "zh-Hant.lproj": return "zh-Hant" // Chinese Traditional
case "cs.lproj": return "cs" // Czech
case "nl.lproj": return "nl" // Dutch case "nl.lproj": return "nl" // Dutch
case "en.lproj": return "en" case "en.lproj": return "en"
case "fi.lproj": return "fi" // Finnish case "fi.lproj": return "fi" // Finnish
@ -65,6 +66,7 @@ private func map(language: String) -> String? {
case "kmr.lproj": return "ku" // Kurmanji (Kurdish) [intent mapping] case "kmr.lproj": return "ku" // Kurmanji (Kurdish) [intent mapping]
case "ru.lproj": return "ru" // Russian case "ru.lproj": return "ru" // Russian
case "gd.lproj": return "gd" // Scottish Gaelic case "gd.lproj": return "gd" // Scottish Gaelic
case "sl.lproj": return "sl" // Slovenian
case "ckb.lproj": return "ckb" // Sorani (Kurdish) case "ckb.lproj": return "ckb" // Sorani (Kurdish)
case "es.lproj": return "es" // Spanish case "es.lproj": return "es" // Spanish
case "es_AR.lproj": return "es-AR" // Spanish, Argentina case "es_AR.lproj": return "es-AR" // Spanish, Argentina

View File

@ -13,15 +13,15 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>no unread notification</string> <string>no unread notifications</string>
<key>one</key> <key>one</key>
<string>1 unread notification</string> <string>1 unread notification</string>
<key>few</key> <key>few</key>
<string>%ld unread notifications</string> <string>%ld unread notifications</string>
<key>many</key> <key>many</key>
<string>%ld unread notification</string> <string>%ld unread notifications</string>
<key>other</key> <key>other</key>
<string>%ld unread notification</string> <string>%ld unread notifications</string>
</dict> </dict>
</dict> </dict>
<key>a11y.plural.count.input_limit_exceeds</key> <key>a11y.plural.count.input_limit_exceeds</key>
@ -71,7 +71,7 @@
<key>a11y.plural.count.characters_left</key> <key>a11y.plural.count.characters_left</key>
<dict> <dict>
<key>NSStringLocalizedFormatKey</key> <key>NSStringLocalizedFormatKey</key>
<string>%#@character_count@ left</string> <string>%#@character_count@</string>
<key>character_count</key> <key>character_count</key>
<dict> <dict>
<key>NSStringFormatSpecTypeKey</key> <key>NSStringFormatSpecTypeKey</key>
@ -79,15 +79,15 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>no characters</string> <string>no characters left</string>
<key>one</key> <key>one</key>
<string>1 character</string> <string>1 character left</string>
<key>few</key> <key>few</key>
<string>%ld characters</string> <string>%ld characters left</string>
<key>many</key> <key>many</key>
<string>%ld characters</string> <string>%ld characters left</string>
<key>other</key> <key>other</key>
<string>%ld characters</string> <string>%ld characters left</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.followed_by_and_mutual</key> <key>plural.count.followed_by_and_mutual</key>

View File

@ -51,6 +51,11 @@
"clean_cache": { "clean_cache": {
"title": "Clean Cache", "title": "Clean Cache",
"message": "Successfully cleaned %s 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"
} }
}, },
"controls": { "controls": {
@ -74,10 +79,11 @@
"take_photo": "Take Photo", "take_photo": "Take Photo",
"save_photo": "Save Photo", "save_photo": "Save Photo",
"copy_photo": "Copy Photo", "copy_photo": "Copy Photo",
"sign_in": "Sign In", "sign_in": "Log in",
"sign_up": "Sign Up", "sign_up": "Create account",
"see_more": "See More", "see_more": "See More",
"preview": "Preview", "preview": "Preview",
"copy": "Copy",
"share": "Share", "share": "Share",
"share_user": "Share %s", "share_user": "Share %s",
"share_post": "Share Post", "share_post": "Share Post",
@ -91,12 +97,16 @@
"block_domain": "Block %s", "block_domain": "Block %s",
"unblock_domain": "Unblock %s", "unblock_domain": "Unblock %s",
"settings": "Settings", "settings": "Settings",
"delete": "Delete" "delete": "Delete",
"translate_post": {
"title": "Translate from %s",
"unknown_language": "Unknown"
}
}, },
"tabs": { "tabs": {
"home": "Home", "home": "Home",
"search": "Search", "search_and_explore": "Search and Explore",
"notification": "Notification", "notifications": "Notifications",
"profile": "Profile" "profile": "Profile"
}, },
"keyboard": { "keyboard": {
@ -132,6 +142,8 @@
"sensitive_content": "Sensitive Content", "sensitive_content": "Sensitive Content",
"media_content_warning": "Tap anywhere to reveal", "media_content_warning": "Tap anywhere to reveal",
"tap_to_reveal": "Tap to reveal", "tap_to_reveal": "Tap to reveal",
"load_embed": "Load Embed",
"link_via_user": "%s via %s",
"poll": { "poll": {
"vote": "Vote", "vote": "Vote",
"closed": "Closed" "closed": "Closed"
@ -153,6 +165,7 @@
"show_image": "Show image", "show_image": "Show image",
"show_gif": "Show GIF", "show_gif": "Show GIF",
"show_video_player": "Show video player", "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" "tap_then_hold_to_show_menu": "Tap then hold to show menu"
}, },
"tag": { "tag": {
@ -168,6 +181,18 @@
"private": "Only their followers can see this post.", "private": "Only their followers can see this post.",
"private_from_me": "Only my followers can see this post.", "private_from_me": "Only my followers can see this post.",
"direct": "Only mentioned user 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": "Shown 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"
} }
}, },
"friendship": { "friendship": {
@ -218,10 +243,16 @@
"get_started": "Get Started", "get_started": "Get Started",
"log_in": "Log In" "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"
}
},
"server_picker": { "server_picker": {
"title": "Mastodon is made of users in different servers.", "title": "Mastodon is made of users in different servers.",
"subtitle": "Pick a server based on your interests, region, or a general purpose one.", "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.",
"subtitle_extend": "Pick a server based on your interests, region, or a general purpose one. Each server is operated by an entirely independent organization or individual.",
"button": { "button": {
"category": { "category": {
"all": "All", "all": "All",
@ -248,8 +279,7 @@
"category": "CATEGORY" "category": "CATEGORY"
}, },
"input": { "input": {
"placeholder": "Search servers", "search_servers_or_enter_url": "Search communities or enter URL"
"search_servers_or_enter_url": "Search servers or enter URL"
}, },
"empty_state": { "empty_state": {
"finding_servers": "Finding available servers...", "finding_servers": "Finding available servers...",
@ -355,7 +385,7 @@
"published": "Published!", "published": "Published!",
"Publishing": "Publishing post...", "Publishing": "Publishing post...",
"accessibility": { "accessibility": {
"logo_label": "Logo Button", "logo_label": "Mastodon",
"logo_hint": "Tap to scroll to top and tap again to previous location" "logo_hint": "Tap to scroll to top and tap again to previous location"
} }
} }
@ -439,11 +469,15 @@
"follows_you": "Follows You" "follows_you": "Follows You"
}, },
"dashboard": { "dashboard": {
"posts": "posts", "my_posts": "posts",
"following": "following", "my_following": "following",
"followers": "followers" "my_followers": "followers",
"other_posts": "posts",
"other_following": "following",
"other_followers": "followers"
}, },
"fields": { "fields": {
"joined": "Joined",
"add_row": "Add Row", "add_row": "Add Row",
"placeholder": { "placeholder": {
"label": "Label", "label": "Label",
@ -717,6 +751,19 @@
}, },
"bookmark": { "bookmark": {
"title": "Bookmarks" "title": "Bookmarks"
},
"followed_tags": {
"title": "Followed Tags",
"header": {
"posts": "posts",
"participants": "participants",
"posts_today": "posts today"
},
"actions": {
"follow": "Follow",
"unfollow": "Unfollow"
}
} }
} }
} }

View File

@ -0,0 +1,465 @@
<?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>queda %#@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 caracter</string>
<key>other</key>
<string>%ld caracters</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.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

@ -0,0 +1,762 @@
{
"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"
},
"discard_post_content": {
"title": "Descartar borrador",
"message": "Confirma pa descartar lo conteniu d'a publicación."
},
"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"
}
},
"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",
"sign_up": "Crear cuenta",
"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"
}
},
"tabs": {
"home": "Inicio",
"search_and_explore": "Search and Explore",
"notifications": "Notificacions",
"profile": "Perfil"
},
"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ú"
},
"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": "Shown Original"
}
},
"friendship": {
"follow": "Seguir",
"following": "Seguindo",
"request": "Solicitut",
"pending": "Pendient",
"block": "Blocar",
"block_user": "Blocar a %s",
"block_domain": "Blocar a %s",
"unblock": "Desbloquiar",
"unblock_user": "Desbloquiar a %s",
"blocked": "Blocau",
"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."
}
}
}
},
"scene": {
"welcome": {
"slogan": "Los retz socials\nde nuevo en as tuyas mans.",
"get_started": "Empecipiar",
"log_in": "Iniciar sesión"
},
"login": {
"title": "Bienveniu de nuevas",
"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": "Tría un servidor,\nqualsequier servidor.",
"subtitle": "Tría un servidor basau en a tuya rechión, intereses u uno de proposito cheneral. Podrás seguir connectau con totz en Mastodon, independiement d'o servidor.",
"button": {
"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"
}
},
"register": {
"title": "Deixa que te configuremos en %s",
"lets_get_you_set_up_on_domain": "Deixa que te configuremos en %s",
"input": {
"avatar": {
"delete": "Borrar"
},
"username": {
"placeholder": "nombre d'usuario",
"duplicate_prompt": "Este nombre d'usuario ya ye en uso."
},
"display_name": {
"placeholder": "nombre a amostrar"
},
"email": {
"placeholder": "correu electronico"
},
"password": {
"placeholder": "clau",
"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 ya ye en uso",
"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": "Qualques reglas basicas.",
"subtitle": "Estas reglas son establidas per los administradors de %s.",
"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": "Accepto"
}
},
"confirm_email": {
"title": "Una zaguera coseta.",
"subtitle": "T'acabamos de ninviar un correu a %s, preta en o vinclo pa confirmar la tuya cuenta.",
"tap_the_link_we_emailed_to_you_to_verify_your_account": "Toca lo vinclo que te ninviamos per correu electronico pa verificar la tuya cuenta",
"button": {
"open_email_app": "Ubrir Aplicación de Correu Electronico",
"resend": "Reninviar"
},
"dont_receive_email": {
"title": "Revisa lo tuyo correu electronico",
"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": "Revisa la tuya servilla de dentrada.",
"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"
}
},
"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": "Botón d'o logo",
"logo_hint": "Toca pa desplazar-te enta alto y toca de nuevo pa la localización anterior"
}
}
},
"suggestion_account": {
"title": "Troba Chent a la quala Seguir",
"follow_explain": "Quan sigas a belún veyerás las suyas publicacions en a tuya pachina d'inicio."
},
"compose": {
"title": {
"new_post": "Nueva Publicación",
"new_reply": "Nueva Respuesta"
},
"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": {
"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"
},
"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"
}
},
"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"
},
"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"
}
},
"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": {
"segment": {
"all": "Tot",
"people": "Chent",
"hashtags": "Etiquetas",
"posts": "Publicacions"
},
"empty_state": {
"no_results": "Sin resultaus"
},
"recent_search": "Busquedas recients",
"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": "Los tuyos Favoritos"
},
"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": {
"title": "Configuración",
"section": {
"appearance": {
"title": "Apariencia",
"automatic": "Automatica",
"light": "Siempre Clara",
"dark": "Siempre Fosca"
},
"look_and_feel": {
"title": "Apariencia",
"use_system": "Uso d'o sistema",
"really_dark": "Realment Fosco",
"sorta_dark": "Más u Menos Fosco",
"light": "Claro"
},
"notifications": {
"title": "Notificacions",
"favorites": "Marque como favorita la mía publicación",
"follows": "me siga",
"boosts": "Rebloguee la mía publicación",
"mentions": "me mencione",
"trigger": {
"anyone": "qualsequiera",
"follower": "un seguidor",
"follow": "qualsequiera que yo siga",
"noone": "dengún",
"title": "Recibir notificación quan"
}
},
"preference": {
"title": "Preferencias",
"true_black_dark_mode": "Modo fosco negro real",
"disable_avatar_animation": "Deshabilitar avatares animaus",
"disable_emoji_animation": "Deshabilitar emojis animaus",
"using_default_browser": "Usar navegador predeterminau pa ubrir los vinclos",
"open_links_in_mastodon": "Ubrir links en Mastodon"
},
"boring_zone": {
"title": "La Zona Aburrida",
"account_settings": "Configuración de Cuenta",
"terms": "Termins de Servicio",
"privacy": "Politica de Privacidat"
},
"spicy_zone": {
"title": "La Zona Picante",
"clear": "Borrar Caché de Multimedia",
"signout": "Zarrar Sesión"
}
},
"footer": {
"mastodon_description": "Mastodon ye software de codigo ubierto. Puetz informar d'errors en GitHub en %s (%s)"
},
"keyboard": {
"close_settings_window": "Zarrar Finestra de Configuración"
}
},
"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"
},
"wizard": {
"new_in_mastodon": "Nuevo en Mastodon",
"multiple_account_switch_intro_description": "Cambie entre quantas cuentas mantenendo presionado lo botón de perfil.",
"accessibility_hint": "Fe doble toque pa descartar este asistent"
},
"bookmark": {
"title": "Marcapachinas"
},
"followed_tags": {
"title": "Followed Tags",
"header": {
"posts": "posts",
"participants": "participants",
"posts_today": "posts today"
},
"actions": {
"follow": "Follow",
"unfollow": "Unfollow"
}
}
}
}

View File

@ -0,0 +1,6 @@
{
"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

@ -74,6 +74,30 @@
<string>%ld حَرف</string> <string>%ld حَرف</string>
</dict> </dict>
</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>zero</key>
<string>لَا حَرف</string>
<key>one</key>
<string>حَرفٌ واحِد</string>
<key>two</key>
<string>حَرفانِ اِثنان</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> <key>plural.count.followed_by_and_mutual</key>
<dict> <dict>
<key>NSStringLocalizedFormatKey</key> <key>NSStringLocalizedFormatKey</key>

View File

@ -51,6 +51,11 @@
"clean_cache": { "clean_cache": {
"title": "مَحوُ ذاكِرَةِ التَّخزينِ المُؤقَّت", "title": "مَحوُ ذاكِرَةِ التَّخزينِ المُؤقَّت",
"message": "مُحِيَ ما مَساحَتُهُ %s مِن ذاكِرَةِ التَّخزينِ المُؤقَّت بِنجاح." "message": "مُحِيَ ما مَساحَتُهُ %s مِن ذاكِرَةِ التَّخزينِ المُؤقَّت بِنجاح."
},
"translation_failed": {
"title": "مُلاحظة",
"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": "حسنًا"
} }
}, },
"controls": { "controls": {
@ -74,10 +79,11 @@
"take_photo": "اِلتِقاطُ صُورَة", "take_photo": "اِلتِقاطُ صُورَة",
"save_photo": "حفظ الصورة", "save_photo": "حفظ الصورة",
"copy_photo": "نسخ الصورة", "copy_photo": "نسخ الصورة",
"sign_in": "تسجيل الدخول", "sign_in": "تسجيلُ الدخول",
"sign_up": "إنشاء حِساب", "sign_up": "إنشاءُ حِساب",
"see_more": "عرض المزيد", "see_more": "عرض المزيد",
"preview": "مُعاينة", "preview": "مُعاينة",
"copy": "نَسخ",
"share": "المُشارك", "share": "المُشارك",
"share_user": "مُشارَكَةُ %s", "share_user": "مُشارَكَةُ %s",
"share_post": "مشارك المنشور", "share_post": "مشارك المنشور",
@ -91,12 +97,16 @@
"block_domain": "حظر %s", "block_domain": "حظر %s",
"unblock_domain": "رفع الحظر عن %s", "unblock_domain": "رفع الحظر عن %s",
"settings": "الإعدادات", "settings": "الإعدادات",
"delete": "حذف" "delete": "حذف",
"translate_post": {
"title": "الترجَمَة مِن %s",
"unknown_language": "غير مَعرُوفة"
}
}, },
"tabs": { "tabs": {
"home": "الرَّئِيسَة", "home": "الرَّئِيسَة",
"search": "البَحث", "search_and_explore": "البَحث وَالاِستِكشاف",
"notification": "الإشعارات", "notifications": "الإشعارات",
"profile": "المِلَفُّ التَّعريفِيّ" "profile": "المِلَفُّ التَّعريفِيّ"
}, },
"keyboard": { "keyboard": {
@ -132,6 +142,8 @@
"sensitive_content": "مُحتَوى حَسَّاس", "sensitive_content": "مُحتَوى حَسَّاس",
"media_content_warning": "اُنقُر لِلكَشف", "media_content_warning": "اُنقُر لِلكَشف",
"tap_to_reveal": "اُنقُر لِلكَشف", "tap_to_reveal": "اُنقُر لِلكَشف",
"load_embed": "تحميل المُضمَن",
"link_via_user": "%s via %s",
"poll": { "poll": {
"vote": "صَوِّت", "vote": "صَوِّت",
"closed": "انتهى" "closed": "انتهى"
@ -153,6 +165,7 @@
"show_image": "أظْهِرِ الصُّورَة", "show_image": "أظْهِرِ الصُّورَة",
"show_gif": "أظْهِر GIF", "show_gif": "أظْهِر GIF",
"show_video_player": "أظْهِر مُشَغِّلَ المَقاطِعِ المَرئِيَّة", "show_video_player": "أظْهِر مُشَغِّلَ المَقاطِعِ المَرئِيَّة",
"share_link_in_post": "مُشارَكَة الرابِط فِي مَنشور",
"tap_then_hold_to_show_menu": "اُنقُر مُطَوَّلًا لِإظْهَارِ القائِمَة" "tap_then_hold_to_show_menu": "اُنقُر مُطَوَّلًا لِإظْهَارِ القائِمَة"
}, },
"tag": { "tag": {
@ -168,6 +181,12 @@
"private": "فَقَطْ مُتابِعينَهُم مَن يُمكِنُهُم رُؤيَةُ هَذَا المَنشُور.", "private": "فَقَطْ مُتابِعينَهُم مَن يُمكِنُهُم رُؤيَةُ هَذَا المَنشُور.",
"private_from_me": "فَقَطْ مُتابِعيني أنَا مَن يُمكِنُهُم رُؤيَةُ هَذَا المَنشُور.", "private_from_me": "فَقَطْ مُتابِعيني أنَا مَن يُمكِنُهُم رُؤيَةُ هَذَا المَنشُور.",
"direct": "المُستخدمِونَ المُشارِ إليهم فَقَطْ مَن يُمكِنُهُم رُؤيَةُ هَذَا المَنشُور." "direct": "المُستخدمِونَ المُشارِ إليهم فَقَطْ مَن يُمكِنُهُم رُؤيَةُ هَذَا المَنشُور."
},
"translation": {
"translated_from": "الترجَمَة مِن %s بِاستِخدَام %s",
"unknown_language": "غير مَعرُوفة",
"unknown_provider": "غير مَعرُوف",
"show_original": "Shown Original"
} }
}, },
"friendship": { "friendship": {
@ -218,10 +237,16 @@
"get_started": "ابدأ الآن", "get_started": "ابدأ الآن",
"log_in": "تسجيلُ الدخول" "log_in": "تسجيلُ الدخول"
}, },
"login": {
"title": "مَرحَبًا بِكَ مُجَدَّدًا",
"subtitle": "سَجِّل دُخولَكَ إلى الخادِم الَّذي أنشأتَ حِسابَكَ فيه.",
"server_search_field": {
"placeholder": "أدخِل عُنوانَ URL أو اِبحَث عَنِ الخادِمِ الخاصّ بِك"
}
},
"server_picker": { "server_picker": {
"title": "اِختر خادِم،\nأيًّا مِنهُم.", "title": "اِختر خادِم،\nأيًّا مِنهُم.",
"subtitle": "اختر مجتمعًا بناءً على اهتماماتك، منطقتك أو يمكنك حتى اختيارُ مجتمعٍ ذي غرضٍ عام.", "subtitle": "اِختر خادمًا بناءً على منطقتك، اِهتماماتك أو يُمكنك حتى اِختيارُ مجتمعٍ ذِي غرضٍ عام. بِإمكانِكَ الدردشة مع أي شخص على مَاستودُون، بغض النظر عن الخادم الخاصة بك.",
"subtitle_extend": "اختر مجتمعًا بناءً على اهتماماتك، منطقتك أو يمكنك حتى اختيارُ مجتمعٍ ذي غرضٍ عام. تُشغَّل جميعُ المجتمعِ مِن قِبَلِ مُنظمَةٍ أو فردٍ مُستقلٍ تمامًا.",
"button": { "button": {
"category": { "category": {
"all": "الكُل", "all": "الكُل",
@ -248,8 +273,7 @@
"category": "الفئة" "category": "الفئة"
}, },
"input": { "input": {
"placeholder": "اِبحَث عن خادِم أو انضم إلى آخر خاص بك...", "search_servers_or_enter_url": "اِبحث عَن مُجتَمَعَات أو أدخِل عُنوانَ URL"
"search_servers_or_enter_url": "اِبحَث فِي الخَوادِم أو أدخِل رابِط"
}, },
"empty_state": { "empty_state": {
"finding_servers": "يجري إيجاد خوادم متوفِّرَة...", "finding_servers": "يجري إيجاد خوادم متوفِّرَة...",
@ -383,10 +407,12 @@
"attachment_broken": "هذا ال%s مُعطَّل\nويتعذَّرُ رفعُه إلى ماستودون.", "attachment_broken": "هذا ال%s مُعطَّل\nويتعذَّرُ رفعُه إلى ماستودون.",
"description_photo": "صِف الصورة للمَكفوفين...", "description_photo": "صِف الصورة للمَكفوفين...",
"description_video": "صِف المقطع المرئي للمَكفوفين...", "description_video": "صِف المقطع المرئي للمَكفوفين...",
"load_failed": "Load Failed", "load_failed": "فَشَلَ التَّحميل",
"upload_failed": "Upload Failed", "upload_failed": "فَشَلَ الرَّفع",
"can_not_recognize_this_media_attachment": "Can not regonize this media attachment", "can_not_recognize_this_media_attachment": "يتعذَّرُ التعرُّفُ على وسائِطِ هذا المُرفَق",
"attachment_too_large": "Attachment too large" "attachment_too_large": "المُرفَق كَبيرٌ جِدًّا",
"compressing_state": "يجري الضغط...",
"server_processing_state": "مُعالجة الخادم جارِيَة..."
}, },
"poll": { "poll": {
"duration_time": "المُدَّة: %s", "duration_time": "المُدَّة: %s",
@ -396,7 +422,9 @@
"one_day": "يومٌ واحِد", "one_day": "يومٌ واحِد",
"three_days": "ثلاثةُ أيام", "three_days": "ثلاثةُ أيام",
"seven_days": "سبعةُ أيام", "seven_days": "سبعةُ أيام",
"option_number": "الخيار %ld" "option_number": "الخيار %ld",
"the_poll_is_invalid": "الاِستِطلاعُ غيرُ صالِح",
"the_poll_has_empty_option": "يوجَدُ خِيارٌ فارِغٌ فِي الاِستِطلاع"
}, },
"content_warning": { "content_warning": {
"placeholder": "اكتب تَحذيرًا دَقيقًا هُنا..." "placeholder": "اكتب تَحذيرًا دَقيقًا هُنا..."
@ -417,7 +445,9 @@
"custom_emoji_picker": "منتقي الرموز التعبيرية المُخصَّص", "custom_emoji_picker": "منتقي الرموز التعبيرية المُخصَّص",
"enable_content_warning": "تفعيل تحذير المُحتَوى", "enable_content_warning": "تفعيل تحذير المُحتَوى",
"disable_content_warning": "تعطيل تحذير المُحتَوى", "disable_content_warning": "تعطيل تحذير المُحتَوى",
"post_visibility_menu": "قائمة ظهور المنشور" "post_visibility_menu": "قائمة ظهور المنشور",
"post_options": "خياراتُ المَنشور",
"posting_as": "نَشر كَـ %s"
}, },
"keyboard": { "keyboard": {
"discard_post": "تجاهُل المنشور", "discard_post": "تجاهُل المنشور",
@ -433,15 +463,23 @@
"follows_you": "يُتابِعُك" "follows_you": "يُتابِعُك"
}, },
"dashboard": { "dashboard": {
"posts": "مَنشورات", "my_posts": "مَنشورات",
"following": "مُتابَع", "my_following": "مُتابَعُون",
"followers": "مُتابِع" "my_followers": "مُتابِعُون",
"other_posts": "مَنشورات",
"other_following": "مُتابَعُون",
"other_followers": "مُتابِعُون"
}, },
"fields": { "fields": {
"joined": "Joined",
"add_row": "إضافة صف", "add_row": "إضافة صف",
"placeholder": { "placeholder": {
"label": "التسمية", "label": "التسمية",
"content": "المُحتَوى" "content": "المُحتَوى"
},
"verified": {
"short": "تمَّ التَّحقق بِتاريخ %s",
"long": "تمَّ التَّحقق مِن مِلكية هذا الرابِطِ بِتاريخ %s"
} }
}, },
"segmented_control": { "segmented_control": {
@ -707,6 +745,18 @@
}, },
"bookmark": { "bookmark": {
"title": "العَلاماتُ المَرجعيَّة" "title": "العَلاماتُ المَرجعيَّة"
},
"followed_tags": {
"title": "وُسُومُ المُتابَع",
"header": {
"posts": "مَنشورات",
"participants": "المُشارِكُون",
"posts_today": "مَنشوراتُ اليَوم"
},
"actions": {
"follow": "مُتابَعَة",
"unfollow": "إلغاءُ المُتابَعَة"
}
} }
} }
} }

View File

@ -50,6 +50,22 @@
<string>%ld caràcters</string> <string>%ld caràcters</string>
</dict> </dict>
</dict> </dict>
<key>a11y.plural.count.characters_left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>resten %#@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 caràcter</string>
<key>other</key>
<string>%ld caràcters</string>
</dict>
</dict>
<key>plural.count.followed_by_and_mutual</key> <key>plural.count.followed_by_and_mutual</key>
<dict> <dict>
<key>NSStringLocalizedFormatKey</key> <key>NSStringLocalizedFormatKey</key>
@ -392,7 +408,7 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>fa 1 día</string> <string>fa 1 dia</string>
<key>other</key> <key>other</key>
<string>fa %ld dies</string> <string>fa %ld dies</string>
</dict> </dict>
@ -408,7 +424,7 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>fa 1h</string> <string>fa 1 h</string>
<key>other</key> <key>other</key>
<string>fa %ld hores</string> <string>fa %ld hores</string>
</dict> </dict>
@ -424,9 +440,9 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>fa 1 minut</string> <string>fa 1 min</string>
<key>other</key> <key>other</key>
<string>fa %ld minuts</string> <string>fa %ld min</string>
</dict> </dict>
</dict> </dict>
<key>date.second.ago.abbr</key> <key>date.second.ago.abbr</key>
@ -440,9 +456,9 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>fa 1 segon</string> <string>fa 1 s</string>
<key>other</key> <key>other</key>
<string>fa %ld segons</string> <string>fa %ld s</string>
</dict> </dict>
</dict> </dict>
</dict> </dict>

View File

@ -2,55 +2,60 @@
"common": { "common": {
"alerts": { "alerts": {
"common": { "common": {
"please_try_again": "Si us plau intenta-ho de nou.", "please_try_again": "Torna-ho a provar.",
"please_try_again_later": "Si us plau, prova-ho més tard." "please_try_again_later": "Prova-ho més tard."
}, },
"sign_up_failure": { "sign_up_failure": {
"title": "Error en el registre" "title": "Error en el registre"
}, },
"server_error": { "server_error": {
"title": "Error del Servidor" "title": "Error del servidor"
}, },
"vote_failure": { "vote_failure": {
"title": "Error del Vot", "title": "Error en votar",
"poll_ended": "L'enquesta ha finalitzat" "poll_ended": "L'enquesta ha finalitzat"
}, },
"discard_post_content": { "discard_post_content": {
"title": "Descarta l'esborrany", "title": "Descarta l'esborrany",
"message": "Confirma per a descartar el contingut de la publicació composta." "message": "Confirma per a descartar el contingut de la publicació."
}, },
"publish_post_failure": { "publish_post_failure": {
"title": "Error de Publicació", "title": "Error en publicar",
"message": "No s'ha pogut enviar la publicació.\nComprova la teva connexió a Internet.", "message": "No s'ha pogut enviar la publicació.\nComprova la connexió a Internet.",
"attachments_message": { "attachments_message": {
"video_attach_with_photo": "No es pot adjuntar un vídeo a una publicació que ja contingui imatges.", "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." "more_than_one_video": "No es pot adjuntar més d'un vídeo."
} }
}, },
"edit_profile_failure": { "edit_profile_failure": {
"title": "Error al Editar el Perfil", "title": "Error en editar el perfil",
"message": "No es pot editar el perfil. Si us plau torna-ho a provar." "message": "No es pot editar el perfil. Torna-ho a provar."
}, },
"sign_out": { "sign_out": {
"title": "Tancar Sessió", "title": "Tanca la sessió",
"message": "Estàs segur que vols tancar la sessió?", "message": "Segur que vols tancar la sessió?",
"confirm": "Tancar Sessió" "confirm": "Tanca la sessió"
}, },
"block_domain": { "block_domain": {
"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.", "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": "Bloquejar Domini" "block_entire_domain": "Bloca el domini"
}, },
"save_photo_failure": { "save_photo_failure": {
"title": "Error al Desar la Foto", "title": "Error en desar la foto",
"message": "Activa el permís d'accés a la biblioteca de fotos per desar-la." "message": "Activa el permís d'accés a la biblioteca de fotos per a desar-la."
}, },
"delete_post": { "delete_post": {
"title": "Esborrar Publicació", "title": "Eliminar la publicació",
"message": "Estàs segur que vols suprimir aquesta publicació?" "message": "Segur que vols eliminar aquesta publicació?"
}, },
"clean_cache": { "clean_cache": {
"title": "Neteja la memòria cau", "title": "Neteja la memòria cau",
"message": "S'ha netejat correctament la memòria cau de %s." "message": "S'ha netejat correctament la memòria cau de %s."
},
"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"
} }
}, },
"controls": { "controls": {
@ -67,20 +72,21 @@
"done": "Fet", "done": "Fet",
"confirm": "Confirma", "confirm": "Confirma",
"continue": "Continua", "continue": "Continua",
"compose": "Composa", "compose": "Redacta",
"cancel": "Cancel·la", "cancel": "Cancel·la",
"discard": "Descarta", "discard": "Descarta",
"try_again": "Torna a provar", "try_again": "Torna a provar",
"take_photo": "Fes una foto", "take_photo": "Fes una foto",
"save_photo": "Desa la foto", "save_photo": "Desa la foto",
"copy_photo": "Copia la foto", "copy_photo": "Copia la foto",
"sign_in": "Iniciar sessió", "sign_in": "Inicia sessió",
"sign_up": "Registre", "sign_up": "Crea un compte",
"see_more": "Veure més", "see_more": "Mostra'n més",
"preview": "Vista prèvia", "preview": "Vista prèvia",
"copy": "Copia",
"share": "Comparteix", "share": "Comparteix",
"share_user": "Compartir %s", "share_user": "Comparteix %s",
"share_post": "Compartir Publicació", "share_post": "Comparteix la publicació",
"open_in_safari": "Obrir a Safari", "open_in_safari": "Obrir a Safari",
"open_in_browser": "Obre al navegador", "open_in_browser": "Obre al navegador",
"find_people": "Busca persones a seguir", "find_people": "Busca persones a seguir",
@ -91,12 +97,16 @@
"block_domain": "Bloqueja %s", "block_domain": "Bloqueja %s",
"unblock_domain": "Desbloqueja %s", "unblock_domain": "Desbloqueja %s",
"settings": "Configuració", "settings": "Configuració",
"delete": "Suprimeix" "delete": "Suprimeix",
"translate_post": {
"title": "Traduït del %s",
"unknown_language": "Desconegut"
}
}, },
"tabs": { "tabs": {
"home": "Inici", "home": "Inici",
"search": "Cerca", "search_and_explore": "Cerca i Explora",
"notification": "Notificació", "notifications": "Notificacions",
"profile": "Perfil" "profile": "Perfil"
}, },
"keyboard": { "keyboard": {
@ -110,9 +120,9 @@
"previous_status": "Publicació anterior", "previous_status": "Publicació anterior",
"next_status": "Publicació següent", "next_status": "Publicació següent",
"open_status": "Obre la publicació", "open_status": "Obre la publicació",
"open_author_profile": "Obre el Perfil de l'Autor", "open_author_profile": "Obre el perfil de l'autor",
"open_reblogger_profile": "Obre el Perfil del Impulsor", "open_reblogger_profile": "Obre el perfil de l'impuls",
"reply_status": "Respon a la Publicació", "reply_status": "Respon a la publicació",
"toggle_reblog": "Commuta l'Impuls de la Publicació", "toggle_reblog": "Commuta l'Impuls de la Publicació",
"toggle_favorite": "Commuta el Favorit de la Publicació", "toggle_favorite": "Commuta el Favorit de la Publicació",
"toggle_content_warning": "Commuta l'Avís de Contingut", "toggle_content_warning": "Commuta l'Avís de Contingut",
@ -132,27 +142,30 @@
"sensitive_content": "Contingut sensible", "sensitive_content": "Contingut sensible",
"media_content_warning": "Toca qualsevol lloc per a mostrar", "media_content_warning": "Toca qualsevol lloc per a mostrar",
"tap_to_reveal": "Toca per a mostrar", "tap_to_reveal": "Toca per a mostrar",
"load_embed": "Carregar incrustat",
"link_via_user": "%s través de %s",
"poll": { "poll": {
"vote": "Vota", "vote": "Vota",
"closed": "Finalitzada" "closed": "Finalitzada"
}, },
"meta_entity": { "meta_entity": {
"url": "Enllaç: %s", "url": "Enllaç: %s",
"hashtag": "Etiqueta %s", "hashtag": "Etiqueta: %s",
"mention": "Mostra el Perfil: %s", "mention": "Mostra el perfil: %s",
"email": "Correu electrònic: %s" "email": "Correu electrònic: %s"
}, },
"actions": { "actions": {
"reply": "Respon", "reply": "Respon",
"reblog": "Impuls", "reblog": "Impulsa",
"unreblog": "Desfer l'impuls", "unreblog": "Desfés l'impuls",
"favorite": "Favorit", "favorite": "Favorit",
"unfavorite": "Desfer Favorit", "unfavorite": "Desfés el favorit",
"menu": "Menú", "menu": "Menú",
"hide": "Amaga", "hide": "Amaga",
"show_image": "Mostra la imatge", "show_image": "Mostra la imatge",
"show_gif": "Mostra el GIF", "show_gif": "Mostra el GIF",
"show_video_player": "Mostra el reproductor de vídeo", "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ú" "tap_then_hold_to_show_menu": "Toca i manté per a veure el menú"
}, },
"tag": { "tag": {
@ -161,26 +174,32 @@
"link": "Enllaç", "link": "Enllaç",
"hashtag": "Etiqueta", "hashtag": "Etiqueta",
"email": "Correu electrònic", "email": "Correu electrònic",
"emoji": "Emoji" "emoji": "Emojis"
}, },
"visibility": { "visibility": {
"unlisted": "Tothom pot veure aquesta publicació però no es mostra en la línia de temps pública.", "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": "Només els seus seguidors poden veure aquesta publicació.",
"private_from_me": "Només els meus 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ó." "direct": "Només l'usuari mencionat pot veure aquesta publicació."
},
"translation": {
"translated_from": "Traduït del %s fent servir %s",
"unknown_language": "Desconegut",
"unknown_provider": "Desconegut",
"show_original": "Mostra l'original"
} }
}, },
"friendship": { "friendship": {
"follow": "Segueix", "follow": "Segueix",
"following": "Seguint", "following": "Seguint",
"request": "Petició", "request": "Sol·licitud",
"pending": "Pendent", "pending": "Pendent",
"block": "Bloqueja", "block": "Bloca",
"block_user": "Bloqueja %s", "block_user": "Bloca %s",
"block_domain": "Bloqueja %s", "block_domain": "Bloca %s",
"unblock": "Desbloqueja", "unblock": "Desbloca",
"unblock_user": "Desbloqueja %s", "unblock_user": "Desbloca %s",
"blocked": "Bloquejat", "blocked": "Blocat",
"mute": "Silencia", "mute": "Silencia",
"mute_user": "Silencia %s", "mute_user": "Silencia %s",
"unmute": "Deixa de silenciar", "unmute": "Deixa de silenciar",
@ -196,16 +215,16 @@
"now": "Ara" "now": "Ara"
}, },
"loader": { "loader": {
"load_missing_posts": "Carrega les publicacions faltants", "load_missing_posts": "Carrega les publicacions restants",
"loading_missing_posts": "Carregant les publicacions faltants...", "loading_missing_posts": "Carregant les publicacions restants...",
"show_more_replies": "Mostra més respostes" "show_more_replies": "Mostra més respostes"
}, },
"header": { "header": {
"no_status_found": "No s'ha trobat cap publicació", "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í.", "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\n fins que el desbloquegis.\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 desbloquegi.", "blocked_warning": "No pots veure el perfil d'aquest usuari\nfins que et desbloqui.",
"user_blocked_warning": "No pots veure el perfil de %s\n fins que et desbloquegi.", "user_blocked_warning": "No pots veure el perfil de %s\n fins que et desbloqui.",
"suspended_warning": "Aquest usuari ha estat suspès.", "suspended_warning": "Aquest usuari ha estat suspès.",
"user_suspended_warning": "El compte de %s ha estat suspès." "user_suspended_warning": "El compte de %s ha estat suspès."
} }
@ -218,10 +237,16 @@
"get_started": "Comença", "get_started": "Comença",
"log_in": "Inicia sessió" "log_in": "Inicia sessió"
}, },
"login": {
"title": "Ben tornat",
"subtitle": "T'inicia sessió en el servidor on has creat el teu compte.",
"server_search_field": {
"placeholder": "Insereix la URL o cerca el teu servidor"
}
},
"server_picker": { "server_picker": {
"title": "Mastodon està fet d'usuaris en diferents comunitats.", "title": "Mastodon està fet d'usuaris en diferents servidors.",
"subtitle": "Tria una comunitat segons els teus interessos, regió o una de propòsit general.", "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.",
"subtitle_extend": "Tria una comunitat segons els teus interessos, regió o una de propòsit general. Cada comunitat és operada per una organització totalment independent o individualment.",
"button": { "button": {
"category": { "category": {
"all": "Totes", "all": "Totes",
@ -248,8 +273,7 @@
"category": "CATEGORIA" "category": "CATEGORIA"
}, },
"input": { "input": {
"placeholder": "Cerca servidors", "search_servers_or_enter_url": "Cerca comunitats o introdueix l'URL"
"search_servers_or_enter_url": "Cerca servidors o introdueix l'enllaç"
}, },
"empty_state": { "empty_state": {
"finding_servers": "Cercant els servidors disponibles...", "finding_servers": "Cercant els servidors disponibles...",
@ -362,11 +386,11 @@
}, },
"suggestion_account": { "suggestion_account": {
"title": "Cerca Persones a Seguir", "title": "Cerca Persones a Seguir",
"follow_explain": "Quan segueixes algú, veuràs les seves publicacions a Inici." "follow_explain": "Quan segueixes algú, veuràs els seus tuts a Inici."
}, },
"compose": { "compose": {
"title": { "title": {
"new_post": "Nova publicació", "new_post": "Nou Tut",
"new_reply": "Nova Resposta" "new_reply": "Nova Resposta"
}, },
"media_selection": { "media_selection": {
@ -381,12 +405,14 @@
"photo": "foto", "photo": "foto",
"video": "vídeo", "video": "vídeo",
"attachment_broken": "Aquest %s està trencat i no pot ser\ncarregat a Mastodon.", "attachment_broken": "Aquest %s està trencat i no pot ser\ncarregat a Mastodon.",
"description_photo": "Descriu la foto per als disminuïts visuals...", "description_photo": "Descriu la foto per a les persones amb diversitat funcional...",
"description_video": "Descriu el vídeo per als disminuïts visuals...", "description_video": "Descriu el vídeo per a les persones amb diversitat funcional...",
"load_failed": "Ha fallat la càrrega", "load_failed": "Ha fallat la càrrega",
"upload_failed": "Pujada fallida", "upload_failed": "Pujada fallida",
"can_not_recognize_this_media_attachment": "No es pot reconèixer l'adjunt multimèdia", "can_not_recognize_this_media_attachment": "No es pot reconèixer aquest adjunt multimèdia",
"attachment_too_large": "El fitxer adjunt és massa gran" "attachment_too_large": "El fitxer adjunt és massa gran",
"compressing_state": "Comprimint...",
"server_processing_state": "Servidor processant..."
}, },
"poll": { "poll": {
"duration_time": "Durada: %s", "duration_time": "Durada: %s",
@ -396,7 +422,9 @@
"one_day": "1 Dia", "one_day": "1 Dia",
"three_days": "3 Dies", "three_days": "3 Dies",
"seven_days": "7 Dies", "seven_days": "7 Dies",
"option_number": "Opció %ld" "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"
}, },
"content_warning": { "content_warning": {
"placeholder": "Escriu un advertiment precís aquí..." "placeholder": "Escriu un advertiment precís aquí..."
@ -417,11 +445,13 @@
"custom_emoji_picker": "Selector d'Emoji Personalitzat", "custom_emoji_picker": "Selector d'Emoji Personalitzat",
"enable_content_warning": "Activa l'Avís de Contingut", "enable_content_warning": "Activa l'Avís de Contingut",
"disable_content_warning": "Desactiva l'Avís de Contingut", "disable_content_warning": "Desactiva l'Avís de Contingut",
"post_visibility_menu": "Menú de Visibilitat de Publicació" "post_visibility_menu": "Menú de Visibilitat del Tut",
"post_options": "Opcions del Tut",
"posting_as": "Publicant com a %s"
}, },
"keyboard": { "keyboard": {
"discard_post": "Descarta la Publicació", "discard_post": "Descarta el Tut",
"publish_post": "Envia la Publicació", "publish_post": "Envia el Tut",
"toggle_poll": "Commuta l'enquesta", "toggle_poll": "Commuta l'enquesta",
"toggle_content_warning": "Commuta l'Avís de Contingut", "toggle_content_warning": "Commuta l'Avís de Contingut",
"append_attachment_entry": "Afegeix Adjunt - %s", "append_attachment_entry": "Afegeix Adjunt - %s",
@ -433,21 +463,29 @@
"follows_you": "Et segueix" "follows_you": "Et segueix"
}, },
"dashboard": { "dashboard": {
"posts": "publicacions", "my_posts": "tuts",
"following": "seguint", "my_following": "seguint",
"followers": "seguidors" "my_followers": "seguidors",
"other_posts": "tuts",
"other_following": "seguint",
"other_followers": "seguidors"
}, },
"fields": { "fields": {
"joined": "S'hi va unir",
"add_row": "Afegeix fila", "add_row": "Afegeix fila",
"placeholder": { "placeholder": {
"label": "Etiqueta", "label": "Etiqueta",
"content": "Contingut" "content": "Contingut"
},
"verified": {
"short": "Verificat a %s",
"long": "La propietat d'aquest enllaç es va verificar el dia %s"
} }
}, },
"segmented_control": { "segmented_control": {
"posts": "Publicacions", "posts": "Tuts",
"replies": "Respostes", "replies": "Respostes",
"posts_and_replies": "Publicacions i Respostes", "posts_and_replies": "Tuts i Respostes",
"media": "Mèdia", "media": "Mèdia",
"about": "Quant a" "about": "Quant a"
}, },
@ -461,12 +499,12 @@
"message": "Confirma deixar de silenciar a %s" "message": "Confirma deixar de silenciar a %s"
}, },
"confirm_block_user": { "confirm_block_user": {
"title": "Bloqueja el Compte", "title": "Bloca el Compte",
"message": "Confirma per a bloquejar %s" "message": "Confirma per a blocar %s"
}, },
"confirm_unblock_user": { "confirm_unblock_user": {
"title": "Desbloqueja el Compte", "title": "Desbloca el Compte",
"message": "Confirma per a desbloquejar %s" "message": "Confirma per a desblocar %s"
}, },
"confirm_show_reblogs": { "confirm_show_reblogs": {
"title": "Mostra els Impulsos", "title": "Mostra els Impulsos",
@ -526,7 +564,7 @@
"all": "Tots", "all": "Tots",
"people": "Gent", "people": "Gent",
"hashtags": "Etiquetes", "hashtags": "Etiquetes",
"posts": "Publicacions" "posts": "Tuts"
}, },
"empty_state": { "empty_state": {
"no_results": "No hi ha resultats" "no_results": "No hi ha resultats"
@ -537,13 +575,13 @@
}, },
"discovery": { "discovery": {
"tabs": { "tabs": {
"posts": "Publicacions", "posts": "Tuts",
"hashtags": "Etiquetes", "hashtags": "Etiquetes",
"news": "Notícies", "news": "Notícies",
"community": "Comunitat", "community": "Comunitat",
"for_you": "Per a tu" "for_you": "Per a tu"
}, },
"intro": "Aquestes son les publicacions que criden l'atenció en el teu racó de Mastodon." "intro": "Aquests son els tuts que criden l'atenció en el teu racó de Mastodon."
}, },
"favorite": { "favorite": {
"title": "Els teus Favorits" "title": "Els teus Favorits"
@ -573,8 +611,8 @@
} }
}, },
"thread": { "thread": {
"back_title": "Publicació", "back_title": "Tut",
"title": "Publicació de %s" "title": "Tut de %s"
}, },
"settings": { "settings": {
"title": "Configuració", "title": "Configuració",
@ -594,9 +632,9 @@
}, },
"notifications": { "notifications": {
"title": "Notificacions", "title": "Notificacions",
"favorites": "Ha afavorit el meu estat", "favorites": "Ha afavorit el meu tut",
"follows": "Em segueix", "follows": "Em segueix",
"boosts": "Ha impulsat el meu estat", "boosts": "Ha impulsat el meu tut",
"mentions": "M'ha mencionat", "mentions": "M'ha mencionat",
"trigger": { "trigger": {
"anyone": "algú", "anyone": "algú",
@ -638,7 +676,7 @@
"title": "Informa sobre %s", "title": "Informa sobre %s",
"step1": "Pas 1 de 2", "step1": "Pas 1 de 2",
"step2": "Pas 2 de 2", "step2": "Pas 2 de 2",
"content1": "Hi ha alguna altre publicació que vulguis afegir a l'informe?", "content1": "Hi ha algun altre tut que vulguis afegir a l'informe?",
"content2": "Hi ha alguna cosa que els moderadors hagin de saber sobre aquest informe?", "content2": "Hi ha alguna cosa que els moderadors hagin de saber sobre aquest informe?",
"report_sent_title": "Gràcies per informar, ho investigarem.", "report_sent_title": "Gràcies per informar, ho investigarem.",
"send": "Envia Informe", "send": "Envia Informe",
@ -647,7 +685,7 @@
"reported": "REPORTAT", "reported": "REPORTAT",
"step_one": { "step_one": {
"step_1_of_4": "Pas 1 de 4", "step_1_of_4": "Pas 1 de 4",
"whats_wrong_with_this_post": "Quin és el problema amb aquesta publicació?", "whats_wrong_with_this_post": "Quin és el problema amb aquest tut?",
"whats_wrong_with_this_account": "Quin és el problema amb aquest compte?", "whats_wrong_with_this_account": "Quin és el problema amb aquest compte?",
"whats_wrong_with_this_username": "Quin és el problema amb %s?", "whats_wrong_with_this_username": "Quin és el problema amb %s?",
"select_the_best_match": "Selecciona la millor coincidència", "select_the_best_match": "Selecciona la millor coincidència",
@ -668,7 +706,7 @@
}, },
"step_three": { "step_three": {
"step_3_of_4": "Pas 3 de 4", "step_3_of_4": "Pas 3 de 4",
"are_there_any_posts_that_back_up_this_report": "Hi ha alguna publicació que recolzi aquest informe?", "are_there_any_posts_that_back_up_this_report": "Hi ha alguns tuts que recolzin aquest informe?",
"select_all_that_apply": "Selecciona tot el que correspongui" "select_all_that_apply": "Selecciona tot el que correspongui"
}, },
"step_four": { "step_four": {
@ -677,14 +715,14 @@
}, },
"step_final": { "step_final": {
"dont_want_to_see_this": "No vols veure això?", "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 vostra 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 teva experiència.",
"unfollow": "Deixa de seguir", "unfollow": "Deixa de seguir",
"unfollowed": "S'ha deixat de seguir", "unfollowed": "S'ha deixat de seguir",
"unfollow_user": "Deixa de seguir %s", "unfollow_user": "Deixa de seguir %s",
"mute_user": "Silencia %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 les seves publicacions 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 els seus tuts o impulsos a la teva línia de temps personal. No sabran que han estat silenciats.",
"block_user": "Bloca %s", "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 les teves publicacions, però poden veure si han estat bloquejats.", "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 tus, però poden veure si han estat blocats.",
"while_we_review_this_you_can_take_action_against_user": "Mentre ho revisem, pots prendre mesures contra %s" "while_we_review_this_you_can_take_action_against_user": "Mentre ho revisem, pots prendre mesures contra %s"
} }
}, },
@ -707,6 +745,18 @@
}, },
"bookmark": { "bookmark": {
"title": "Marcadors" "title": "Marcadors"
},
"followed_tags": {
"title": "Etiquetes seguides",
"header": {
"posts": "tuts",
"participants": "participants",
"posts_today": "tuts d'avui"
},
"actions": {
"follow": "Segueix",
"unfollow": "Deixa de seguir"
}
} }
} }
} }

View File

@ -50,6 +50,22 @@
<string>%ld نووسە</string> <string>%ld نووسە</string>
</dict> </dict>
</dict> </dict>
<key>a11y.plural.count.characters_left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@character_count@ left</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>other</key>
<string>%ld characters</string>
</dict>
</dict>
<key>plural.count.followed_by_and_mutual</key> <key>plural.count.followed_by_and_mutual</key>
<dict> <dict>
<key>NSStringLocalizedFormatKey</key> <key>NSStringLocalizedFormatKey</key>

View File

@ -51,6 +51,11 @@
"clean_cache": { "clean_cache": {
"title": "بیرگە پاک بکەوە", "title": "بیرگە پاک بکەوە",
"message": "سەرکەوتووانە بیرگەی %s پاک کرایەوە." "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"
} }
}, },
"controls": { "controls": {
@ -74,10 +79,11 @@
"take_photo": "وێنە بگرە", "take_photo": "وێنە بگرە",
"save_photo": "هەڵی بگرە", "save_photo": "هەڵی بگرە",
"copy_photo": "لەبەری بگرەوە", "copy_photo": "لەبەری بگرەوە",
"sign_in": "بچۆ ژوورەوە", "sign_in": "Log in",
"sign_up": "خۆت تۆمار بکە", "sign_up": "Create account",
"see_more": "زیاتر ببینە", "see_more": "زیاتر ببینە",
"preview": "پێشبینین", "preview": "پێشبینین",
"copy": "Copy",
"share": "هاوبەشی بکە", "share": "هاوبەشی بکە",
"share_user": "%s هاوبەش بکە", "share_user": "%s هاوبەش بکە",
"share_post": "هاوبەشی بکە", "share_post": "هاوبەشی بکە",
@ -91,12 +97,16 @@
"block_domain": "%s ئاستەنگ بکە", "block_domain": "%s ئاستەنگ بکە",
"unblock_domain": "%s ئاستەنگ مەکە", "unblock_domain": "%s ئاستەنگ مەکە",
"settings": "رێکخستنەکان", "settings": "رێکخستنەکان",
"delete": "بیسڕەوە" "delete": "بیسڕەوە",
"translate_post": {
"title": "Translate from %s",
"unknown_language": "Unknown"
}
}, },
"tabs": { "tabs": {
"home": "ماڵەوە", "home": "ماڵەوە",
"search": "بگەڕێ", "search_and_explore": "Search and Explore",
"notification": "ئاگادارکردنەوەکان", "notifications": "Notifications",
"profile": "پرۆفایل" "profile": "پرۆفایل"
}, },
"keyboard": { "keyboard": {
@ -132,6 +142,8 @@
"sensitive_content": "ناوەڕۆکی هەستیار", "sensitive_content": "ناوەڕۆکی هەستیار",
"media_content_warning": "دەستی پیا بنێ بۆ نیشاندانی", "media_content_warning": "دەستی پیا بنێ بۆ نیشاندانی",
"tap_to_reveal": "دەستی پیا بنێ بۆ نیشاندانی", "tap_to_reveal": "دەستی پیا بنێ بۆ نیشاندانی",
"load_embed": "Load Embed",
"link_via_user": "%s via %s",
"poll": { "poll": {
"vote": "دەنگ بدە", "vote": "دەنگ بدە",
"closed": "داخراوە" "closed": "داخراوە"
@ -153,6 +165,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": "دەستی پیا بنێ و بیگرە بۆ نیشاندانی پێڕستەکە"
}, },
"tag": { "tag": {
@ -168,6 +181,12 @@
"private": "تەنیا شوێنکەوتووەکانی دەتوانن ئەم پۆستە ببینن.", "private": "تەنیا شوێنکەوتووەکانی دەتوانن ئەم پۆستە ببینن.",
"private_from_me": "تەنیا شوێنکەوتووەکانم دەتوانن ئەم پۆستە ببینن.", "private_from_me": "تەنیا شوێنکەوتووەکانم دەتوانن ئەم پۆستە ببینن.",
"direct": "تەنیا بەکارهێنەرە ئاماژە پێکراوەکە دەتوانێت ئەم پۆستە ببینێت." "direct": "تەنیا بەکارهێنەرە ئاماژە پێکراوەکە دەتوانێت ئەم پۆستە ببینێت."
},
"translation": {
"translated_from": "Translated from %s using %s",
"unknown_language": "Unknown",
"unknown_provider": "Unknown",
"show_original": "Shown Original"
} }
}, },
"friendship": { "friendship": {
@ -218,10 +237,16 @@
"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"
}
},
"server_picker": { "server_picker": {
"title": "ماستۆدۆن لە چەندان بەکارهێنەر پێک دێت کە لە ڕاژەکاری جیاواز دان.", "title": "ماستۆدۆن لە چەندان بەکارهێنەر پێک دێت کە لە ڕاژەکاری جیاواز دان.",
"subtitle": "ڕاژەکارێکێکی گشتی یان دانەیەک لەسەر بنەمای حەزەکانت و هەرێمەکەت هەڵبژێرە.", "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.",
"subtitle_extend": "ڕاژەکارێکێکی گشتی یان دانەیەک لەسەر بنەمای حەزەکانت و هەرێمەکەت هەڵبژێرە. هەر ڕاژەکارێک لەلایەن ڕێکخراوێک یان تاکەکەسێک بەڕێوە دەبرێت.",
"button": { "button": {
"category": { "category": {
"all": "هەموو", "all": "هەموو",
@ -248,8 +273,7 @@
"category": "بەش" "category": "بەش"
}, },
"input": { "input": {
"placeholder": "بگەڕێ", "search_servers_or_enter_url": "Search communities or enter URL"
"search_servers_or_enter_url": "Search servers or enter URL"
}, },
"empty_state": { "empty_state": {
"finding_servers": "ڕاژەکار دەدۆزرێتەوە...", "finding_servers": "ڕاژەکار دەدۆزرێتەوە...",
@ -385,8 +409,10 @@
"description_video": "ڤیدیۆکەت بۆ نابیناکان باس بکە...", "description_video": "ڤیدیۆکەت بۆ نابیناکان باس بکە...",
"load_failed": "Load Failed", "load_failed": "Load Failed",
"upload_failed": "Upload Failed", "upload_failed": "Upload Failed",
"can_not_recognize_this_media_attachment": "Can not regonize this media attachment", "can_not_recognize_this_media_attachment": "Can not recognize this media attachment",
"attachment_too_large": "Attachment too large" "attachment_too_large": "Attachment too large",
"compressing_state": "Compressing...",
"server_processing_state": "Server Processing..."
}, },
"poll": { "poll": {
"duration_time": "کات: %s", "duration_time": "کات: %s",
@ -396,7 +422,9 @@
"one_day": "1 ڕۆژ", "one_day": "1 ڕۆژ",
"three_days": "3 ڕۆژ", "three_days": "3 ڕۆژ",
"seven_days": "7 ڕۆژ", "seven_days": "7 ڕۆژ",
"option_number": "بژاردەی %ld" "option_number": "بژاردەی %ld",
"the_poll_is_invalid": "The poll is invalid",
"the_poll_has_empty_option": "The poll has empty option"
}, },
"content_warning": { "content_warning": {
"placeholder": "ئاگادارییەکەت لێرە بنووسە..." "placeholder": "ئاگادارییەکەت لێرە بنووسە..."
@ -417,7 +445,9 @@
"custom_emoji_picker": "هەڵبژێری ئیمۆجی", "custom_emoji_picker": "هەڵبژێری ئیمۆجی",
"enable_content_warning": "ئاگاداریی ناوەڕۆک چالاک بکە", "enable_content_warning": "ئاگاداریی ناوەڕۆک چالاک بکە",
"disable_content_warning": "ئاگاداریی ناوەڕۆک ناچالاک بکە", "disable_content_warning": "ئاگاداریی ناوەڕۆک ناچالاک بکە",
"post_visibility_menu": "پێڕستی شێوازی دەرکەوتنی پۆست" "post_visibility_menu": "پێڕستی شێوازی دەرکەوتنی پۆست",
"post_options": "Post Options",
"posting_as": "Posting as %s"
}, },
"keyboard": { "keyboard": {
"discard_post": "پۆستەکە هەڵوەشێنەوە", "discard_post": "پۆستەکە هەڵوەشێنەوە",
@ -433,15 +463,23 @@
"follows_you": "Follows You" "follows_you": "Follows You"
}, },
"dashboard": { "dashboard": {
"posts": "پۆستەکان", "my_posts": "posts",
"following": "شوێنکەوتن", "my_following": "following",
"followers": "شوێنکەوتوو" "my_followers": "followers",
"other_posts": "posts",
"other_following": "following",
"other_followers": "followers"
}, },
"fields": { "fields": {
"joined": "Joined",
"add_row": "ڕیز زیاد بکە", "add_row": "ڕیز زیاد بکە",
"placeholder": { "placeholder": {
"label": "ناونیشان", "label": "ناونیشان",
"content": "ناوەڕۆک" "content": "ناوەڕۆک"
},
"verified": {
"short": "Verified on %s",
"long": "Ownership of this link was checked on %s"
} }
}, },
"segmented_control": { "segmented_control": {
@ -707,6 +745,18 @@
}, },
"bookmark": { "bookmark": {
"title": "Bookmarks" "title": "Bookmarks"
},
"followed_tags": {
"title": "Followed Tags",
"header": {
"posts": "posts",
"participants": "participants",
"posts_today": "posts today"
},
"actions": {
"follow": "Follow",
"unfollow": "Unfollow"
}
} }
} }
} }

View File

@ -62,6 +62,26 @@
<string>%ld znaků</string> <string>%ld znaků</string>
</dict> </dict>
</dict> </dict>
<key>a11y.plural.count.characters_left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@character_count@ zbývá</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 znak</string>
<key>few</key>
<string>%ld znaky</string>
<key>many</key>
<string>%ld znaků</string>
<key>other</key>
<string>%ld znaků</string>
</dict>
</dict>
<key>plural.count.followed_by_and_mutual</key> <key>plural.count.followed_by_and_mutual</key>
<dict> <dict>
<key>NSStringLocalizedFormatKey</key> <key>NSStringLocalizedFormatKey</key>
@ -288,13 +308,13 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>1 following</string> <string>1 sledující</string>
<key>few</key> <key>few</key>
<string>%ld following</string> <string>%ld sledující</string>
<key>many</key> <key>many</key>
<string>%ld following</string> <string>%ld sledujících</string>
<key>other</key> <key>other</key>
<string>%ld following</string> <string>%ld sledujících</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.follower</key> <key>plural.count.follower</key>
@ -328,13 +348,13 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>1 year left</string> <string>Zbývá 1 rok</string>
<key>few</key> <key>few</key>
<string>%ld years left</string> <string>Zbývají %ld roky</string>
<key>many</key> <key>many</key>
<string>%ld years left</string> <string>Zbývá %ld roků</string>
<key>other</key> <key>other</key>
<string>%ld years left</string> <string>Zbývá %ld roků</string>
</dict> </dict>
</dict> </dict>
<key>date.month.left</key> <key>date.month.left</key>
@ -348,7 +368,7 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>1 months left</string> <string>Zbývá 1 měsíc</string>
<key>few</key> <key>few</key>
<string>%ld months left</string> <string>%ld months left</string>
<key>many</key> <key>many</key>

View File

@ -51,6 +51,11 @@
"clean_cache": { "clean_cache": {
"title": "Vyčistit mezipaměť", "title": "Vyčistit mezipaměť",
"message": "Úspěšně vyčištěno %s mezipaměti." "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"
} }
}, },
"controls": { "controls": {
@ -75,9 +80,10 @@
"save_photo": "Uložit fotku", "save_photo": "Uložit fotku",
"copy_photo": "Kopírovat fotografii", "copy_photo": "Kopírovat fotografii",
"sign_in": "Přihlásit se", "sign_in": "Přihlásit se",
"sign_up": "Zaregistrovat se", "sign_up": "Vytvořit účet",
"see_more": "Zobrazit více", "see_more": "Zobrazit více",
"preview": "Náhled", "preview": "Náhled",
"copy": "Kopírovat",
"share": "Sdílet", "share": "Sdílet",
"share_user": "Sdílet %s", "share_user": "Sdílet %s",
"share_post": "Sdílet příspěvek", "share_post": "Sdílet příspěvek",
@ -91,12 +97,16 @@
"block_domain": "Blokovat %s", "block_domain": "Blokovat %s",
"unblock_domain": "Odblokovat %s", "unblock_domain": "Odblokovat %s",
"settings": "Nastavení", "settings": "Nastavení",
"delete": "Smazat" "delete": "Smazat",
"translate_post": {
"title": "Přeložit z %s",
"unknown_language": "Neznámý"
}
}, },
"tabs": { "tabs": {
"home": "Domů", "home": "Domů",
"search": "Hledat", "search_and_explore": "Hledat a zkoumat",
"notification": "Oznamování", "notifications": "Oznámení",
"profile": "Profil" "profile": "Profil"
}, },
"keyboard": { "keyboard": {
@ -113,8 +123,8 @@
"open_author_profile": "Otevřít profil autora", "open_author_profile": "Otevřít profil autora",
"open_reblogger_profile": "Otevřít rebloggerův profil", "open_reblogger_profile": "Otevřít rebloggerův profil",
"reply_status": "Odpovědět na příspěvek", "reply_status": "Odpovědět na příspěvek",
"toggle_reblog": "Toggle Reblog on Post", "toggle_reblog": "Přepnout Reblog na příspěvku",
"toggle_favorite": "Toggle Favorite on Post", "toggle_favorite": "Přepnout Oblíbené na příspěvku",
"toggle_content_warning": "Přepnout varování obsahu", "toggle_content_warning": "Přepnout varování obsahu",
"preview_image": "Náhled obrázku" "preview_image": "Náhled obrázku"
}, },
@ -132,6 +142,8 @@
"sensitive_content": "Citlivý obsah", "sensitive_content": "Citlivý obsah",
"media_content_warning": "Klepnutím kdekoli zobrazíte", "media_content_warning": "Klepnutím kdekoli zobrazíte",
"tap_to_reveal": "Klepnutím zobrazit", "tap_to_reveal": "Klepnutím zobrazit",
"load_embed": "Načíst vložené",
"link_via_user": "%s přes %s",
"poll": { "poll": {
"vote": "Hlasovat", "vote": "Hlasovat",
"closed": "Uzavřeno" "closed": "Uzavřeno"
@ -153,6 +165,7 @@
"show_image": "Zobrazit obrázek", "show_image": "Zobrazit obrázek",
"show_gif": "Zobrazit GIF", "show_gif": "Zobrazit GIF",
"show_video_player": "Zobrazit video přehrávač", "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" "tap_then_hold_to_show_menu": "Klepnutím podržte pro zobrazení nabídky"
}, },
"tag": { "tag": {
@ -168,6 +181,12 @@
"private": "Pouze jejich sledující mohou vidět tento příspěvek.", "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.", "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." "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"
} }
}, },
"friendship": { "friendship": {
@ -218,10 +237,16 @@
"get_started": "Začínáme", "get_started": "Začínáme",
"log_in": "Přihlásit se" "log_in": "Přihlásit se"
}, },
"login": {
"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": { "server_picker": {
"title": "Mastodon tvoří uživatelé z různých serverů.", "title": "Mastodon tvoří uživatelé z různých serverů.",
"subtitle": "Vyberte server založený na vašich zájmech, regionu nebo obecném účelu.", "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.",
"subtitle_extend": "Vyberte server založený na vašich zájmech, regionu nebo obecném účelu. Každý server je provozován zcela nezávislou organizací nebo jednotlivcem.",
"button": { "button": {
"category": { "category": {
"all": "Vše", "all": "Vše",
@ -248,8 +273,7 @@
"category": "KATEGORIE" "category": "KATEGORIE"
}, },
"input": { "input": {
"placeholder": "Hledat servery", "search_servers_or_enter_url": "Hledejte komunity nebo zadejte URL"
"search_servers_or_enter_url": "Hledat servery nebo zadat URL"
}, },
"empty_state": { "empty_state": {
"finding_servers": "Hledání dostupných serverů...", "finding_servers": "Hledání dostupných serverů...",
@ -386,7 +410,9 @@
"load_failed": "Načtení se nezdařilo", "load_failed": "Načtení se nezdařilo",
"upload_failed": "Nahrání selhalo", "upload_failed": "Nahrání selhalo",
"can_not_recognize_this_media_attachment": "Nelze rozpoznat toto medium přílohy", "can_not_recognize_this_media_attachment": "Nelze rozpoznat toto medium přílohy",
"attachment_too_large": "Příloha je příliš velká" "attachment_too_large": "Příloha je příliš velká",
"compressing_state": "Probíhá komprese...",
"server_processing_state": "Zpracování serveru..."
}, },
"poll": { "poll": {
"duration_time": "Doba trvání: %s", "duration_time": "Doba trvání: %s",
@ -396,7 +422,9 @@
"one_day": "1 den", "one_day": "1 den",
"three_days": "3 dny", "three_days": "3 dny",
"seven_days": "7 dní", "seven_days": "7 dní",
"option_number": "Možnost %ld" "option_number": "Možnost %ld",
"the_poll_is_invalid": "Anketa je neplatná",
"the_poll_has_empty_option": "Anketa má prázdnou možnost"
}, },
"content_warning": { "content_warning": {
"placeholder": "Zde napište přesné varování..." "placeholder": "Zde napište přesné varování..."
@ -417,7 +445,9 @@
"custom_emoji_picker": "Vlastní výběr Emoji", "custom_emoji_picker": "Vlastní výběr Emoji",
"enable_content_warning": "Povolit upozornění na obsah", "enable_content_warning": "Povolit upozornění na obsah",
"disable_content_warning": "Vypnout upozornění na obsah", "disable_content_warning": "Vypnout upozornění na obsah",
"post_visibility_menu": "Menu viditelnosti příspěvku" "post_visibility_menu": "Menu viditelnosti příspěvku",
"post_options": "Možnosti příspěvku",
"posting_as": "Odesílání jako %s"
}, },
"keyboard": { "keyboard": {
"discard_post": "Zahodit příspěvek", "discard_post": "Zahodit příspěvek",
@ -433,15 +463,23 @@
"follows_you": "Sleduje vás" "follows_you": "Sleduje vás"
}, },
"dashboard": { "dashboard": {
"posts": "příspěvky", "my_posts": "příspěvky",
"following": "sledování", "my_following": "sledování",
"followers": "sledující" "my_followers": "sledující",
"other_posts": "příspěvky",
"other_following": "sledování",
"other_followers": "sledující"
}, },
"fields": { "fields": {
"joined": "Připojen/a",
"add_row": "Přidat řádek", "add_row": "Přidat řádek",
"placeholder": { "placeholder": {
"label": "Označení", "label": "Označení",
"content": "Obsah" "content": "Obsah"
},
"verified": {
"short": "Ověřeno na %s",
"long": "Vlastnictví tohoto odkazu bylo zkontrolováno na %s"
} }
}, },
"segmented_control": { "segmented_control": {
@ -707,6 +745,18 @@
}, },
"bookmark": { "bookmark": {
"title": "Záložky" "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"
}
} }
} }
} }

View File

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

File diff suppressed because it is too large Load Diff

View File

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

View File

@ -15,7 +15,7 @@
<key>one</key> <key>one</key>
<string>1 unread notification</string> <string>1 unread notification</string>
<key>other</key> <key>other</key>
<string>%ld unread notification</string> <string>%ld unread notifications</string>
</dict> </dict>
</dict> </dict>
<key>a11y.plural.count.input_limit_exceeds</key> <key>a11y.plural.count.input_limit_exceeds</key>
@ -50,6 +50,22 @@
<string>%ld characters</string> <string>%ld characters</string>
</dict> </dict>
</dict> </dict>
<key>a11y.plural.count.characters_left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@character_count@ left</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>other</key>
<string>%ld characters</string>
</dict>
</dict>
<key>plural.count.followed_by_and_mutual</key> <key>plural.count.followed_by_and_mutual</key>
<dict> <dict>
<key>NSStringLocalizedFormatKey</key> <key>NSStringLocalizedFormatKey</key>

View File

@ -51,6 +51,11 @@
"clean_cache": { "clean_cache": {
"title": "Clean Cache", "title": "Clean Cache",
"message": "Successfully cleaned %s 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"
} }
}, },
"controls": { "controls": {
@ -74,10 +79,11 @@
"take_photo": "Take Photo", "take_photo": "Take Photo",
"save_photo": "Save Photo", "save_photo": "Save Photo",
"copy_photo": "Copy Photo", "copy_photo": "Copy Photo",
"sign_in": "Sign In", "sign_in": "Log in",
"sign_up": "Sign Up", "sign_up": "Create account",
"see_more": "See More", "see_more": "See More",
"preview": "Preview", "preview": "Preview",
"copy": "Copy",
"share": "Share", "share": "Share",
"share_user": "Share %s", "share_user": "Share %s",
"share_post": "Share Post", "share_post": "Share Post",
@ -91,12 +97,16 @@
"block_domain": "Block %s", "block_domain": "Block %s",
"unblock_domain": "Unblock %s", "unblock_domain": "Unblock %s",
"settings": "Settings", "settings": "Settings",
"delete": "Delete" "delete": "Delete",
"translate_post": {
"title": "Translate from %s",
"unknown_language": "Unknown"
}
}, },
"tabs": { "tabs": {
"home": "Home", "home": "Home",
"search": "Search", "search_and_explore": "Search and Explore",
"notification": "Notification", "notifications": "Notifications",
"profile": "Profile" "profile": "Profile"
}, },
"keyboard": { "keyboard": {
@ -132,6 +142,8 @@
"sensitive_content": "Sensitive Content", "sensitive_content": "Sensitive Content",
"media_content_warning": "Tap anywhere to reveal", "media_content_warning": "Tap anywhere to reveal",
"tap_to_reveal": "Tap to reveal", "tap_to_reveal": "Tap to reveal",
"load_embed": "Load Embed",
"link_via_user": "%s via %s",
"poll": { "poll": {
"vote": "Vote", "vote": "Vote",
"closed": "Closed" "closed": "Closed"
@ -153,6 +165,7 @@
"show_image": "Show image", "show_image": "Show image",
"show_gif": "Show GIF", "show_gif": "Show GIF",
"show_video_player": "Show video player", "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" "tap_then_hold_to_show_menu": "Tap then hold to show menu"
}, },
"tag": { "tag": {
@ -168,6 +181,12 @@
"private": "Only their followers can see this post.", "private": "Only their followers can see this post.",
"private_from_me": "Only my followers can see this post.", "private_from_me": "Only my followers can see this post.",
"direct": "Only mentioned user 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": "Shown Original"
} }
}, },
"friendship": { "friendship": {
@ -218,10 +237,16 @@
"get_started": "Get Started", "get_started": "Get Started",
"log_in": "Log In" "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"
}
},
"server_picker": { "server_picker": {
"title": "Mastodon is made of users in different servers.", "title": "Mastodon is made of users in different servers.",
"subtitle": "Pick a server based on your interests, region, or a general purpose one.", "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.",
"subtitle_extend": "Pick a server based on your interests, region, or a general purpose one. Each server is operated by an entirely independent organization or individual.",
"button": { "button": {
"category": { "category": {
"all": "All", "all": "All",
@ -248,8 +273,7 @@
"category": "CATEGORY" "category": "CATEGORY"
}, },
"input": { "input": {
"placeholder": "Search servers", "search_servers_or_enter_url": "Search communities or enter URL"
"search_servers_or_enter_url": "Search servers or enter URL"
}, },
"empty_state": { "empty_state": {
"finding_servers": "Finding available servers...", "finding_servers": "Finding available servers...",
@ -385,8 +409,10 @@
"description_video": "Describe the video for the visually-impaired...", "description_video": "Describe the video for the visually-impaired...",
"load_failed": "Load Failed", "load_failed": "Load Failed",
"upload_failed": "Upload Failed", "upload_failed": "Upload Failed",
"can_not_recognize_this_media_attachment": "Can not regonize this media attachment", "can_not_recognize_this_media_attachment": "Can not recognize this media attachment",
"attachment_too_large": "Attachment too large" "attachment_too_large": "Attachment too large",
"compressing_state": "Compressing...",
"server_processing_state": "Server Processing..."
}, },
"poll": { "poll": {
"duration_time": "Duration: %s", "duration_time": "Duration: %s",
@ -396,7 +422,9 @@
"one_day": "1 Day", "one_day": "1 Day",
"three_days": "3 Days", "three_days": "3 Days",
"seven_days": "7 Days", "seven_days": "7 Days",
"option_number": "Option %ld" "option_number": "Option %ld",
"the_poll_is_invalid": "The poll is invalid",
"the_poll_has_empty_option": "The poll has empty option"
}, },
"content_warning": { "content_warning": {
"placeholder": "Write an accurate warning here..." "placeholder": "Write an accurate warning here..."
@ -417,7 +445,9 @@
"custom_emoji_picker": "Custom Emoji Picker", "custom_emoji_picker": "Custom Emoji Picker",
"enable_content_warning": "Enable Content Warning", "enable_content_warning": "Enable Content Warning",
"disable_content_warning": "Disable Content Warning", "disable_content_warning": "Disable Content Warning",
"post_visibility_menu": "Post Visibility Menu" "post_visibility_menu": "Post Visibility Menu",
"post_options": "Post Options",
"posting_as": "Posting as %s"
}, },
"keyboard": { "keyboard": {
"discard_post": "Discard Post", "discard_post": "Discard Post",
@ -433,15 +463,23 @@
"follows_you": "Follows You" "follows_you": "Follows You"
}, },
"dashboard": { "dashboard": {
"posts": "posts", "my_posts": "posts",
"following": "following", "my_following": "following",
"followers": "followers" "my_followers": "followers",
"other_posts": "posts",
"other_following": "following",
"other_followers": "followers"
}, },
"fields": { "fields": {
"joined": "Joined",
"add_row": "Add Row", "add_row": "Add Row",
"placeholder": { "placeholder": {
"label": "Label", "label": "Label",
"content": "Content" "content": "Content"
},
"verified": {
"short": "Verified on %s",
"long": "Ownership of this link was checked on %s"
} }
}, },
"segmented_control": { "segmented_control": {
@ -707,6 +745,18 @@
}, },
"bookmark": { "bookmark": {
"title": "Bookmarks" "title": "Bookmarks"
},
"followed_tags": {
"title": "Followed Tags",
"header": {
"posts": "posts",
"participants": "participants",
"posts_today": "posts today"
},
"actions": {
"follow": "Follow",
"unfollow": "Unfollow"
}
} }
} }
} }

View File

@ -37,7 +37,23 @@
<key>a11y.plural.count.input_limit_remains</key> <key>a11y.plural.count.input_limit_remains</key>
<dict> <dict>
<key>NSStringLocalizedFormatKey</key> <key>NSStringLocalizedFormatKey</key>
<string>Noch %#@character_count@ übrig</string> <string>Noch %#@character_count@ Zeichen übrig</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 Zeichen</string>
<key>other</key>
<string>%ld Zeichen</string>
</dict>
</dict>
<key>a11y.plural.count.characters_left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@character_count@ übrig</string>
<key>character_count</key> <key>character_count</key>
<dict> <dict>
<key>NSStringFormatSpecTypeKey</key> <key>NSStringFormatSpecTypeKey</key>

View File

@ -45,12 +45,17 @@
"message": "Bitte aktiviere den Zugriff auf die Fotobibliothek, um das Foto zu speichern." "message": "Bitte aktiviere den Zugriff auf die Fotobibliothek, um das Foto zu speichern."
}, },
"delete_post": { "delete_post": {
"title": "Bist du dir sicher, dass du diesen Beitrag löschen möchtest?", "title": "Beiträge löschen",
"message": "Bist du dir sicher, dass du diesen Beitrag löschen willst?" "message": "Bist du dir sicher, dass du diesen Beitrag löschen willst?"
}, },
"clean_cache": { "clean_cache": {
"title": "Zwischenspeicher leeren", "title": "Zwischenspeicher leeren",
"message": "%s erfolgreich aus dem Cache gelöscht." "message": "%s erfolgreich aus dem Cache gelöscht."
},
"translation_failed": {
"title": "Hinweis",
"message": "Übersetzung fehlgeschlagen. Möglicherweise hat der/die Administrator*in 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"
} }
}, },
"controls": { "controls": {
@ -66,7 +71,7 @@
"ok": "OK", "ok": "OK",
"done": "Fertig", "done": "Fertig",
"confirm": "Bestätigen", "confirm": "Bestätigen",
"continue": "Fortfahren", "continue": "Weiter",
"compose": "Neue Nachricht", "compose": "Neue Nachricht",
"cancel": "Abbrechen", "cancel": "Abbrechen",
"discard": "Verwerfen", "discard": "Verwerfen",
@ -75,15 +80,16 @@
"save_photo": "Foto speichern", "save_photo": "Foto speichern",
"copy_photo": "Foto kopieren", "copy_photo": "Foto kopieren",
"sign_in": "Anmelden", "sign_in": "Anmelden",
"sign_up": "Registrieren", "sign_up": "Konto erstellen",
"see_more": "Mehr anzeigen", "see_more": "Mehr anzeigen",
"preview": "Vorschau", "preview": "Vorschau",
"copy": "Kopieren",
"share": "Teilen", "share": "Teilen",
"share_user": "%s teilen", "share_user": "%s teilen",
"share_post": "Beitrag teilen", "share_post": "Beitrag teilen",
"open_in_safari": "In Safari öffnen", "open_in_safari": "In Safari öffnen",
"open_in_browser": "Im Browser anzeigen", "open_in_browser": "Im Browser anzeigen",
"find_people": "Finde Personen zum Folgen", "find_people": "Personen zum Folgen finden",
"manually_search": "Stattdessen manuell suchen", "manually_search": "Stattdessen manuell suchen",
"skip": "Überspringen", "skip": "Überspringen",
"reply": "Antworten", "reply": "Antworten",
@ -91,12 +97,16 @@
"block_domain": "%s blockieren", "block_domain": "%s blockieren",
"unblock_domain": "Blockierung von %s aufheben", "unblock_domain": "Blockierung von %s aufheben",
"settings": "Einstellungen", "settings": "Einstellungen",
"delete": "Löschen" "delete": "Löschen",
"translate_post": {
"title": "Von %s übersetzen",
"unknown_language": "Unbekannt"
}
}, },
"tabs": { "tabs": {
"home": "Startseite", "home": "Startseite",
"search": "Suche", "search_and_explore": "Suchen und Entdecken",
"notification": "Benachrichtigungen", "notifications": "Mitteilungen",
"profile": "Profil" "profile": "Profil"
}, },
"keyboard": { "keyboard": {
@ -132,6 +142,8 @@
"sensitive_content": "NSFW-Inhalt", "sensitive_content": "NSFW-Inhalt",
"media_content_warning": "Tippe irgendwo zum Anzeigen", "media_content_warning": "Tippe irgendwo zum Anzeigen",
"tap_to_reveal": "Zum Anzeigen tippen", "tap_to_reveal": "Zum Anzeigen tippen",
"load_embed": "Eingebettetes laden",
"link_via_user": "%s via %s",
"poll": { "poll": {
"vote": "Abstimmen", "vote": "Abstimmen",
"closed": "Beendet" "closed": "Beendet"
@ -139,8 +151,8 @@
"meta_entity": { "meta_entity": {
"url": "Link: %s", "url": "Link: %s",
"hashtag": "Hashtag: %s", "hashtag": "Hashtag: %s",
"mention": "Show Profile: %s", "mention": "Profil anzeigen: %s",
"email": "Email address: %s" "email": "E-Mail-Adresse: %s"
}, },
"actions": { "actions": {
"reply": "Antworten", "reply": "Antworten",
@ -153,6 +165,7 @@
"show_image": "Bild anzeigen", "show_image": "Bild anzeigen",
"show_gif": "GIF anzeigen", "show_gif": "GIF anzeigen",
"show_video_player": "Zeige Video-Player", "show_video_player": "Zeige Video-Player",
"share_link_in_post": "Link im Beitrag teilen",
"tap_then_hold_to_show_menu": "Halte gedrückt um das Menü anzuzeigen" "tap_then_hold_to_show_menu": "Halte gedrückt um das Menü anzuzeigen"
}, },
"tag": { "tag": {
@ -165,14 +178,20 @@
}, },
"visibility": { "visibility": {
"unlisted": "Jeder kann diesen Post sehen, aber nicht in der öffentlichen Timeline zeigen.", "unlisted": "Jeder kann diesen Post sehen, aber nicht in der öffentlichen Timeline zeigen.",
"private": "Nur Follower des Authors können diesen Beitrag sehen.", "private": "Nur die, die dem Autor folgen, können diesen Beitrag sehen.",
"private_from_me": "Nur meine Follower können diesen Beitrag sehen.", "private_from_me": "Nur die, die mir folgen, können diesen Beitrag sehen.",
"direct": "Nur erwähnte Benutzer 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"
} }
}, },
"friendship": { "friendship": {
"follow": "Folgen", "follow": "Folgen",
"following": "Folge Ich", "following": "Gefolgt",
"request": "Anfragen", "request": "Anfragen",
"pending": "In Warteschlange", "pending": "In Warteschlange",
"block": "Blockieren", "block": "Blockieren",
@ -187,8 +206,8 @@
"unmute_user": "%s nicht mehr stummschalten", "unmute_user": "%s nicht mehr stummschalten",
"muted": "Stummgeschaltet", "muted": "Stummgeschaltet",
"edit_info": "Information bearbeiten", "edit_info": "Information bearbeiten",
"show_reblogs": "Reblogs anzeigen", "show_reblogs": "Teilen anzeigen",
"hide_reblogs": "Reblogs ausblenden" "hide_reblogs": "Teilen ausblenden"
}, },
"timeline": { "timeline": {
"filtered": "Gefiltert", "filtered": "Gefiltert",
@ -197,7 +216,7 @@
}, },
"loader": { "loader": {
"load_missing_posts": "Fehlende Beiträge laden", "load_missing_posts": "Fehlende Beiträge laden",
"loading_missing_posts": "Lade fehlende Beiträge...", "loading_missing_posts": "Fehlende Beiträge werden geladen …",
"show_more_replies": "Weitere Antworten anzeigen" "show_more_replies": "Weitere Antworten anzeigen"
}, },
"header": { "header": {
@ -218,10 +237,16 @@
"get_started": "Registrieren", "get_started": "Registrieren",
"log_in": "Anmelden" "log_in": "Anmelden"
}, },
"login": {
"title": "Willkommen zurück",
"subtitle": "Melden Sie sich auf dem Server an, auf dem Sie Ihr Konto erstellt haben.",
"server_search_field": {
"placeholder": "URL eingeben oder nach Server suchen"
}
},
"server_picker": { "server_picker": {
"title": "Wähle einen Server,\nbeliebigen Server.", "title": "Wähle einen Server,\nbeliebigen Server.",
"subtitle": "Wähle eine Gemeinschaft, die auf deinen Interessen, Region oder einem allgemeinen Zweck basiert.", "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.",
"subtitle_extend": "Wähle eine Gemeinschaft basierend auf deinen Interessen, deiner Region oder einem allgemeinen Zweck. Jede Gemeinschaft wird von einer völlig unabhängigen Organisation oder Einzelperson betrieben.",
"button": { "button": {
"category": { "category": {
"all": "Alle", "all": "Alle",
@ -248,11 +273,10 @@
"category": "KATEGORIE" "category": "KATEGORIE"
}, },
"input": { "input": {
"placeholder": "Nach Server suchen oder URL eingeben", "search_servers_or_enter_url": "Suche nach einer Community oder gib eine URL ein"
"search_servers_or_enter_url": "Nach Server suchen oder URL eingeben"
}, },
"empty_state": { "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.", "bad_network": "Beim Laden der Daten ist etwas schief gelaufen. Überprüfe deine Internetverbindung.",
"no_results": "Keine Ergebnisse" "no_results": "Keine Ergebnisse"
} }
@ -343,7 +367,7 @@
"open_email_app": { "open_email_app": {
"title": "Überprüfe deinen Posteingang.", "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.", "description": "Wir haben dir gerade eine E-Mail geschickt. Überprüfe deinen Spam-Ordner, falls du es noch nicht getan hast.",
"mail": "Mail", "mail": "E-Mail",
"open_email_client": "E-Mail-Client öffnen" "open_email_client": "E-Mail-Client öffnen"
} }
}, },
@ -353,7 +377,7 @@
"offline": "Offline", "offline": "Offline",
"new_posts": "Neue Beiträge anzeigen", "new_posts": "Neue Beiträge anzeigen",
"published": "Veröffentlicht!", "published": "Veröffentlicht!",
"Publishing": "Beitrag wird veröffentlicht...", "Publishing": "Beitrag wird veröffentlicht",
"accessibility": { "accessibility": {
"logo_label": "Logo-Button", "logo_label": "Logo-Button",
"logo_hint": "Zum Scrollen nach oben tippen und zum vorherigen Ort erneut tippen" "logo_hint": "Zum Scrollen nach oben tippen und zum vorherigen Ort erneut tippen"
@ -362,7 +386,7 @@
}, },
"suggestion_account": { "suggestion_account": {
"title": "Finde Personen zum Folgen", "title": "Finde Personen zum Folgen",
"follow_explain": "Wenn du jemandem folgst, dann siehst du deren Beiträge in deinem Home-Feed." "follow_explain": "Sobald du anderen folgst, siehst du deren Beiträge in deinem Home-Feed."
}, },
"compose": { "compose": {
"title": { "title": {
@ -381,12 +405,14 @@
"photo": "Foto", "photo": "Foto",
"video": "Video", "video": "Video",
"attachment_broken": "Dieses %s scheint defekt zu sein und\nkann nicht auf Mastodon hochgeladen werden.", "attachment_broken": "Dieses %s scheint defekt zu sein und\nkann nicht auf Mastodon hochgeladen werden.",
"description_photo": "Für Menschen mit Sehbehinderung beschreiben...", "description_photo": "Für Menschen mit Sehbehinderung beschreiben",
"description_video": "Für Menschen mit Sehbehinderung beschreiben...", "description_video": "Für Menschen mit Sehbehinderung beschreiben",
"load_failed": "Laden fehlgeschlagen", "load_failed": "Laden fehlgeschlagen",
"upload_failed": "Upload fehlgeschlagen", "upload_failed": "Upload fehlgeschlagen",
"can_not_recognize_this_media_attachment": "Medienanhang wurde nicht erkannt", "can_not_recognize_this_media_attachment": "Medienanhang wurde nicht erkannt",
"attachment_too_large": "Anhang zu groß" "attachment_too_large": "Anhang zu groß",
"compressing_state": "wird komprimiert …",
"server_processing_state": "Serververarbeitung …"
}, },
"poll": { "poll": {
"duration_time": "Dauer: %s", "duration_time": "Dauer: %s",
@ -396,10 +422,12 @@
"one_day": "1 Tag", "one_day": "1 Tag",
"three_days": "3 Tage", "three_days": "3 Tage",
"seven_days": "7 Tage", "seven_days": "7 Tage",
"option_number": "Auswahlmöglichkeit %ld" "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"
}, },
"content_warning": { "content_warning": {
"placeholder": "Schreibe eine Inhaltswarnung hier..." "placeholder": "Hier eine Inhaltswarnung schreiben …"
}, },
"visibility": { "visibility": {
"public": "Öffentlich", "public": "Öffentlich",
@ -417,7 +445,9 @@
"custom_emoji_picker": "Benutzerdefinierter Emojiwähler", "custom_emoji_picker": "Benutzerdefinierter Emojiwähler",
"enable_content_warning": "Inhaltswarnung einschalten", "enable_content_warning": "Inhaltswarnung einschalten",
"disable_content_warning": "Inhaltswarnung ausschalten", "disable_content_warning": "Inhaltswarnung ausschalten",
"post_visibility_menu": "Sichtbarkeitsmenü" "post_visibility_menu": "Sichtbarkeitsmenü",
"post_options": "Beitragsoptionen",
"posting_as": "Veröffentlichen als %s"
}, },
"keyboard": { "keyboard": {
"discard_post": "Beitrag verwerfen", "discard_post": "Beitrag verwerfen",
@ -433,15 +463,23 @@
"follows_you": "Folgt dir" "follows_you": "Folgt dir"
}, },
"dashboard": { "dashboard": {
"posts": "Beiträge", "my_posts": "Beiträge",
"following": "Gefolgte", "my_following": "folge ich",
"followers": "Folgende" "my_followers": "followers",
"other_posts": "Beiträge",
"other_following": "folge ich",
"other_followers": "followers"
}, },
"fields": { "fields": {
"joined": "Beigetreten",
"add_row": "Zeile hinzufügen", "add_row": "Zeile hinzufügen",
"placeholder": { "placeholder": {
"label": "Bezeichnung", "label": "Bezeichnung",
"content": "Inhalt" "content": "Inhalt"
},
"verified": {
"short": "Überprüft am %s",
"long": "Besitz des Links wurde überprüft am %s"
} }
}, },
"segmented_control": { "segmented_control": {
@ -469,12 +507,12 @@
"message": "Bestätige %s zu entsperren" "message": "Bestätige %s zu entsperren"
}, },
"confirm_show_reblogs": { "confirm_show_reblogs": {
"title": "Reblogs anzeigen", "title": "Teilen anzeigen",
"message": "Bestätigen um Reblogs anzuzeigen" "message": "Bestätigen, um Teilen anzuzeigen"
}, },
"confirm_hide_reblogs": { "confirm_hide_reblogs": {
"title": "Reblogs ausblenden", "title": "Teilen ausblenden",
"message": "Confirm to hide reblogs" "message": "Bestätigen, um Teilen auszublenden"
} }
}, },
"accessibility": { "accessibility": {
@ -485,15 +523,15 @@
} }
}, },
"follower": { "follower": {
"title": "Follower", "title": "Folgende",
"footer": "Folger, die nicht auf deinem Server registriert sind, werden nicht angezeigt." "footer": "Folgende, die nicht auf deinem Server registriert sind, werden nicht angezeigt."
}, },
"following": { "following": {
"title": "Folgende", "title": "Gefolgte",
"footer": "Gefolgte, die nicht auf deinem Server registriert sind, werden nicht angezeigt." "footer": "Gefolgte, die nicht auf deinem Server registriert sind, werden nicht angezeigt."
}, },
"familiarFollowers": { "familiarFollowers": {
"title": "Follower, die dir bekannt vorkommen", "title": "Folgende, die du kennst",
"followed_by_names": "Gefolgt von %s" "followed_by_names": "Gefolgt von %s"
}, },
"favorited_by": { "favorited_by": {
@ -517,7 +555,7 @@
}, },
"accounts": { "accounts": {
"title": "Konten, die dir gefallen könnten", "title": "Konten, die dir gefallen könnten",
"description": "Vielleicht gefallen dir diese Benutzer", "description": "Vielleicht gefallen dir diese Konten",
"follow": "Folgen" "follow": "Folgen"
} }
}, },
@ -707,6 +745,18 @@
}, },
"bookmark": { "bookmark": {
"title": "Lesezeichen" "title": "Lesezeichen"
},
"followed_tags": {
"title": "Gefolgte Hashtags",
"header": {
"posts": "Beiträge",
"participants": "Teilnehmer*innen",
"posts_today": "Beiträge heute"
},
"actions": {
"follow": "Folgen",
"unfollow": "Entfolgen"
}
} }
} }
} }

View File

@ -15,7 +15,7 @@
<key>one</key> <key>one</key>
<string>1 unread notification</string> <string>1 unread notification</string>
<key>other</key> <key>other</key>
<string>%ld unread notification</string> <string>%ld unread notifications</string>
</dict> </dict>
</dict> </dict>
<key>a11y.plural.count.input_limit_exceeds</key> <key>a11y.plural.count.input_limit_exceeds</key>
@ -50,6 +50,22 @@
<string>%ld characters</string> <string>%ld characters</string>
</dict> </dict>
</dict> </dict>
<key>a11y.plural.count.characters_left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@character_count@ left</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>other</key>
<string>%ld characters</string>
</dict>
</dict>
<key>plural.count.followed_by_and_mutual</key> <key>plural.count.followed_by_and_mutual</key>
<dict> <dict>
<key>NSStringLocalizedFormatKey</key> <key>NSStringLocalizedFormatKey</key>

View File

@ -51,6 +51,11 @@
"clean_cache": { "clean_cache": {
"title": "Clean Cache", "title": "Clean Cache",
"message": "Successfully cleaned %s 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"
} }
}, },
"controls": { "controls": {
@ -74,10 +79,11 @@
"take_photo": "Take Photo", "take_photo": "Take Photo",
"save_photo": "Save Photo", "save_photo": "Save Photo",
"copy_photo": "Copy Photo", "copy_photo": "Copy Photo",
"sign_in": "Sign In", "sign_in": "Log in",
"sign_up": "Sign Up", "sign_up": "Create account",
"see_more": "See More", "see_more": "See More",
"preview": "Preview", "preview": "Preview",
"copy": "Copy",
"share": "Share", "share": "Share",
"share_user": "Share %s", "share_user": "Share %s",
"share_post": "Share Post", "share_post": "Share Post",
@ -91,12 +97,16 @@
"block_domain": "Block %s", "block_domain": "Block %s",
"unblock_domain": "Unblock %s", "unblock_domain": "Unblock %s",
"settings": "Settings", "settings": "Settings",
"delete": "Delete" "delete": "Delete",
"translate_post": {
"title": "Translate from %s",
"unknown_language": "Unknown"
}
}, },
"tabs": { "tabs": {
"home": "Home", "home": "Home",
"search": "Search", "search_and_explore": "Search and Explore",
"notification": "Notification", "notifications": "Notifications",
"profile": "Profile" "profile": "Profile"
}, },
"keyboard": { "keyboard": {
@ -132,6 +142,8 @@
"sensitive_content": "Sensitive Content", "sensitive_content": "Sensitive Content",
"media_content_warning": "Tap anywhere to reveal", "media_content_warning": "Tap anywhere to reveal",
"tap_to_reveal": "Tap to reveal", "tap_to_reveal": "Tap to reveal",
"load_embed": "Load Embed",
"link_via_user": "%s via %s",
"poll": { "poll": {
"vote": "Vote", "vote": "Vote",
"closed": "Closed" "closed": "Closed"
@ -153,6 +165,7 @@
"show_image": "Show image", "show_image": "Show image",
"show_gif": "Show GIF", "show_gif": "Show GIF",
"show_video_player": "Show video player", "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" "tap_then_hold_to_show_menu": "Tap then hold to show menu"
}, },
"tag": { "tag": {
@ -168,6 +181,12 @@
"private": "Only their followers can see this post.", "private": "Only their followers can see this post.",
"private_from_me": "Only my followers can see this post.", "private_from_me": "Only my followers can see this post.",
"direct": "Only mentioned user 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": "Shown Original"
} }
}, },
"friendship": { "friendship": {
@ -218,10 +237,16 @@
"get_started": "Get Started", "get_started": "Get Started",
"log_in": "Log In" "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"
}
},
"server_picker": { "server_picker": {
"title": "Mastodon is made of users in different servers.", "title": "Mastodon is made of users in different servers.",
"subtitle": "Pick a server based on your interests, region, or a general purpose one.", "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.",
"subtitle_extend": "Pick a server based on your interests, region, or a general purpose one. Each server is operated by an entirely independent organization or individual.",
"button": { "button": {
"category": { "category": {
"all": "All", "all": "All",
@ -248,8 +273,7 @@
"category": "CATEGORY" "category": "CATEGORY"
}, },
"input": { "input": {
"placeholder": "Search servers", "search_servers_or_enter_url": "Search communities or enter URL"
"search_servers_or_enter_url": "Search servers or enter URL"
}, },
"empty_state": { "empty_state": {
"finding_servers": "Finding available servers...", "finding_servers": "Finding available servers...",
@ -355,7 +379,7 @@
"published": "Published!", "published": "Published!",
"Publishing": "Publishing post...", "Publishing": "Publishing post...",
"accessibility": { "accessibility": {
"logo_label": "Logo Button", "logo_label": "Mastodon",
"logo_hint": "Tap to scroll to top and tap again to previous location" "logo_hint": "Tap to scroll to top and tap again to previous location"
} }
} }
@ -385,8 +409,10 @@
"description_video": "Describe the video for the visually-impaired...", "description_video": "Describe the video for the visually-impaired...",
"load_failed": "Load Failed", "load_failed": "Load Failed",
"upload_failed": "Upload Failed", "upload_failed": "Upload Failed",
"can_not_recognize_this_media_attachment": "Can not regonize this media attachment", "can_not_recognize_this_media_attachment": "Can not recognize this media attachment",
"attachment_too_large": "Attachment too large" "attachment_too_large": "Attachment too large",
"compressing_state": "Compressing...",
"server_processing_state": "Server Processing..."
}, },
"poll": { "poll": {
"duration_time": "Duration: %s", "duration_time": "Duration: %s",
@ -396,7 +422,9 @@
"one_day": "1 Day", "one_day": "1 Day",
"three_days": "3 Days", "three_days": "3 Days",
"seven_days": "7 Days", "seven_days": "7 Days",
"option_number": "Option %ld" "option_number": "Option %ld",
"the_poll_is_invalid": "The poll is invalid",
"the_poll_has_empty_option": "The poll has empty option"
}, },
"content_warning": { "content_warning": {
"placeholder": "Write an accurate warning here..." "placeholder": "Write an accurate warning here..."
@ -417,7 +445,9 @@
"custom_emoji_picker": "Custom Emoji Picker", "custom_emoji_picker": "Custom Emoji Picker",
"enable_content_warning": "Enable Content Warning", "enable_content_warning": "Enable Content Warning",
"disable_content_warning": "Disable Content Warning", "disable_content_warning": "Disable Content Warning",
"post_visibility_menu": "Post Visibility Menu" "post_visibility_menu": "Post Visibility Menu",
"post_options": "Post Options",
"posting_as": "Posting as %s"
}, },
"keyboard": { "keyboard": {
"discard_post": "Discard Post", "discard_post": "Discard Post",
@ -433,15 +463,23 @@
"follows_you": "Follows You" "follows_you": "Follows You"
}, },
"dashboard": { "dashboard": {
"posts": "posts", "my_posts": "posts",
"following": "following", "my_following": "following",
"followers": "followers" "my_followers": "followers",
"other_posts": "posts",
"other_following": "following",
"other_followers": "followers"
}, },
"fields": { "fields": {
"joined": "Joined",
"add_row": "Add Row", "add_row": "Add Row",
"placeholder": { "placeholder": {
"label": "Label", "label": "Label",
"content": "Content" "content": "Content"
},
"verified": {
"short": "Verified on %s",
"long": "Ownership of this link was checked on %s"
} }
}, },
"segmented_control": { "segmented_control": {
@ -707,6 +745,18 @@
}, },
"bookmark": { "bookmark": {
"title": "Bookmarks" "title": "Bookmarks"
},
"followed_tags": {
"title": "Followed Tags",
"header": {
"posts": "posts",
"participants": "participants",
"posts_today": "posts today"
},
"actions": {
"follow": "Follow",
"unfollow": "Unfollow"
}
} }
} }
} }

View File

@ -15,7 +15,7 @@
<key>one</key> <key>one</key>
<string>1 unread notification</string> <string>1 unread notification</string>
<key>other</key> <key>other</key>
<string>%ld unread notification</string> <string>%ld unread notifications</string>
</dict> </dict>
</dict> </dict>
<key>a11y.plural.count.input_limit_exceeds</key> <key>a11y.plural.count.input_limit_exceeds</key>
@ -60,14 +60,8 @@
<string>NSStringPluralRuleType</string> <string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key>
<string>no characters</string>
<key>one</key> <key>one</key>
<string>1 character</string> <string>1 character</string>
<key>few</key>
<string>%ld characters</string>
<key>many</key>
<string>%ld characters</string>
<key>other</key> <key>other</key>
<string>%ld characters</string> <string>%ld characters</string>
</dict> </dict>

View File

@ -51,6 +51,11 @@
"clean_cache": { "clean_cache": {
"title": "Clean Cache", "title": "Clean Cache",
"message": "Successfully cleaned %s 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"
} }
}, },
"controls": { "controls": {
@ -74,10 +79,11 @@
"take_photo": "Take Photo", "take_photo": "Take Photo",
"save_photo": "Save Photo", "save_photo": "Save Photo",
"copy_photo": "Copy Photo", "copy_photo": "Copy Photo",
"sign_in": "Sign In", "sign_in": "Log in",
"sign_up": "Sign Up", "sign_up": "Create account",
"see_more": "See More", "see_more": "See More",
"preview": "Preview", "preview": "Preview",
"copy": "Copy",
"share": "Share", "share": "Share",
"share_user": "Share %s", "share_user": "Share %s",
"share_post": "Share Post", "share_post": "Share Post",
@ -91,12 +97,16 @@
"block_domain": "Block %s", "block_domain": "Block %s",
"unblock_domain": "Unblock %s", "unblock_domain": "Unblock %s",
"settings": "Settings", "settings": "Settings",
"delete": "Delete" "delete": "Delete",
"translate_post": {
"title": "Translate from %s",
"unknown_language": "Unknown"
}
}, },
"tabs": { "tabs": {
"home": "Home", "home": "Home",
"search": "Search", "search_and_explore": "Search and Explore",
"notification": "Notification", "notifications": "Notifications",
"profile": "Profile" "profile": "Profile"
}, },
"keyboard": { "keyboard": {
@ -132,6 +142,8 @@
"sensitive_content": "Sensitive Content", "sensitive_content": "Sensitive Content",
"media_content_warning": "Tap anywhere to reveal", "media_content_warning": "Tap anywhere to reveal",
"tap_to_reveal": "Tap to reveal", "tap_to_reveal": "Tap to reveal",
"load_embed": "Load Embed",
"link_via_user": "%s via %s",
"poll": { "poll": {
"vote": "Vote", "vote": "Vote",
"closed": "Closed" "closed": "Closed"
@ -153,6 +165,7 @@
"show_image": "Show image", "show_image": "Show image",
"show_gif": "Show GIF", "show_gif": "Show GIF",
"show_video_player": "Show video player", "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" "tap_then_hold_to_show_menu": "Tap then hold to show menu"
}, },
"tag": { "tag": {
@ -168,6 +181,12 @@
"private": "Only their followers can see this post.", "private": "Only their followers can see this post.",
"private_from_me": "Only my followers can see this post.", "private_from_me": "Only my followers can see this post.",
"direct": "Only mentioned user 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": "Shown Original"
} }
}, },
"friendship": { "friendship": {
@ -218,10 +237,16 @@
"get_started": "Get Started", "get_started": "Get Started",
"log_in": "Log In" "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"
}
},
"server_picker": { "server_picker": {
"title": "Mastodon is made of users in different servers.", "title": "Mastodon is made of users in different servers.",
"subtitle": "Pick a server based on your interests, region, or a general purpose one.", "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.",
"subtitle_extend": "Pick a server based on your interests, region, or a general purpose one. Each server is operated by an entirely independent organization or individual.",
"button": { "button": {
"category": { "category": {
"all": "All", "all": "All",
@ -248,8 +273,7 @@
"category": "CATEGORY" "category": "CATEGORY"
}, },
"input": { "input": {
"placeholder": "Search servers", "search_servers_or_enter_url": "Search communities or enter URL"
"search_servers_or_enter_url": "Search servers or enter URL"
}, },
"empty_state": { "empty_state": {
"finding_servers": "Finding available servers...", "finding_servers": "Finding available servers...",
@ -355,7 +379,7 @@
"published": "Published!", "published": "Published!",
"Publishing": "Publishing post...", "Publishing": "Publishing post...",
"accessibility": { "accessibility": {
"logo_label": "Logo Button", "logo_label": "Mastodon",
"logo_hint": "Tap to scroll to top and tap again to previous location" "logo_hint": "Tap to scroll to top and tap again to previous location"
} }
} }
@ -385,8 +409,10 @@
"description_video": "Describe the video for the visually-impaired...", "description_video": "Describe the video for the visually-impaired...",
"load_failed": "Load Failed", "load_failed": "Load Failed",
"upload_failed": "Upload Failed", "upload_failed": "Upload Failed",
"can_not_recognize_this_media_attachment": "Can not regonize this media attachment", "can_not_recognize_this_media_attachment": "Can not recognize this media attachment",
"attachment_too_large": "Attachment too large" "attachment_too_large": "Attachment too large",
"compressing_state": "Compressing...",
"server_processing_state": "Server Processing..."
}, },
"poll": { "poll": {
"duration_time": "Duration: %s", "duration_time": "Duration: %s",
@ -396,7 +422,9 @@
"one_day": "1 Day", "one_day": "1 Day",
"three_days": "3 Days", "three_days": "3 Days",
"seven_days": "7 Days", "seven_days": "7 Days",
"option_number": "Option %ld" "option_number": "Option %ld",
"the_poll_is_invalid": "The poll is invalid",
"the_poll_has_empty_option": "The poll has empty option"
}, },
"content_warning": { "content_warning": {
"placeholder": "Write an accurate warning here..." "placeholder": "Write an accurate warning here..."
@ -435,15 +463,23 @@
"follows_you": "Follows You" "follows_you": "Follows You"
}, },
"dashboard": { "dashboard": {
"posts": "posts", "my_posts": "posts",
"following": "following", "my_following": "following",
"followers": "followers" "my_followers": "followers",
"other_posts": "posts",
"other_following": "following",
"other_followers": "followers"
}, },
"fields": { "fields": {
"joined": "Joined",
"add_row": "Add Row", "add_row": "Add Row",
"placeholder": { "placeholder": {
"label": "Label", "label": "Label",
"content": "Content" "content": "Content"
},
"verified": {
"short": "Verified on %s",
"long": "Ownership of this link was checked on %s"
} }
}, },
"segmented_control": { "segmented_control": {
@ -709,6 +745,18 @@
}, },
"bookmark": { "bookmark": {
"title": "Bookmarks" "title": "Bookmarks"
},
"followed_tags": {
"title": "Followed Tags",
"header": {
"posts": "posts",
"participants": "participants",
"posts_today": "posts today"
},
"actions": {
"follow": "Follow",
"unfollow": "Unfollow"
}
} }
} }
} }

View File

@ -50,6 +50,22 @@
<string>%ld caracteres</string> <string>%ld caracteres</string>
</dict> </dict>
</dict> </dict>
<key>a11y.plural.count.characters_left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>Quedan %#@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 caracter</string>
<key>other</key>
<string>%ld caracteres</string>
</dict>
</dict>
<key>plural.count.followed_by_and_mutual</key> <key>plural.count.followed_by_and_mutual</key>
<dict> <dict>
<key>NSStringLocalizedFormatKey</key> <key>NSStringLocalizedFormatKey</key>

View File

@ -51,6 +51,11 @@
"clean_cache": { "clean_cache": {
"title": "Limpiar caché", "title": "Limpiar caché",
"message": "Se limpió exitosamente %s de la memoria 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"
} }
}, },
"controls": { "controls": {
@ -75,9 +80,10 @@
"save_photo": "Guardar foto", "save_photo": "Guardar foto",
"copy_photo": "Copiar foto", "copy_photo": "Copiar foto",
"sign_in": "Iniciar sesión", "sign_in": "Iniciar sesión",
"sign_up": "Registrarse", "sign_up": "Crear cuenta",
"see_more": "Ver más", "see_more": "Ver más",
"preview": "Previsualización", "preview": "Previsualización",
"copy": "Copiar",
"share": "Compartir", "share": "Compartir",
"share_user": "Compartir %s", "share_user": "Compartir %s",
"share_post": "Compartir mensaje", "share_post": "Compartir mensaje",
@ -91,12 +97,16 @@
"block_domain": "Bloquear a %s", "block_domain": "Bloquear a %s",
"unblock_domain": "Desbloquear a %s", "unblock_domain": "Desbloquear a %s",
"settings": "Configuración", "settings": "Configuración",
"delete": "Eliminar" "delete": "Eliminar",
"translate_post": {
"title": "Traducido desde el %s",
"unknown_language": "Desconocido"
}
}, },
"tabs": { "tabs": {
"home": "Principal", "home": "Principal",
"search": "Buscar", "search_and_explore": "Buscar y explorar",
"notification": "Notificación", "notifications": "Notificaciones",
"profile": "Perfil" "profile": "Perfil"
}, },
"keyboard": { "keyboard": {
@ -132,15 +142,17 @@
"sensitive_content": "Contenido sensible", "sensitive_content": "Contenido sensible",
"media_content_warning": "Tocá en cualquier parte para mostrar", "media_content_warning": "Tocá en cualquier parte para mostrar",
"tap_to_reveal": "Tocá para mostrar", "tap_to_reveal": "Tocá para mostrar",
"load_embed": "Cargar lo insertado",
"link_via_user": "%s vía %s",
"poll": { "poll": {
"vote": "Votar", "vote": "Votar",
"closed": "Cerrada" "closed": "Cerrada"
}, },
"meta_entity": { "meta_entity": {
"url": "Link: %s", "url": "Enlace: %s",
"hashtag": "Hashtag: %s", "hashtag": "Etiqueta: %s",
"mention": "Show Profile: %s", "mention": "Mostrar perfil: %s",
"email": "Email address: %s" "email": "Dirección de correo electrónico: %s"
}, },
"actions": { "actions": {
"reply": "Responder", "reply": "Responder",
@ -153,6 +165,7 @@
"show_image": "Mostrar imagen", "show_image": "Mostrar imagen",
"show_gif": "Mostrar GIF", "show_gif": "Mostrar GIF",
"show_video_player": "Mostrar reproductor de video", "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ú" "tap_then_hold_to_show_menu": "Tocá y mantené presionado para mostrar el menú"
}, },
"tag": { "tag": {
@ -168,6 +181,12 @@
"private": "Sólo sus seguidores pueden ver este mensaje.", "private": "Sólo sus seguidores pueden ver este mensaje.",
"private_from_me": "Sólo mis 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." "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"
} }
}, },
"friendship": { "friendship": {
@ -218,10 +237,16 @@
"get_started": "Comenzá", "get_started": "Comenzá",
"log_in": "Iniciar sesión" "log_in": "Iniciar sesión"
}, },
"login": {
"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": { "server_picker": {
"title": "Mastodon está compuesto de cuentas en diferentes servidores.", "title": "Mastodon está compuesto de cuentas en diferentes servidores.",
"subtitle": "Elegí un servidor basado en tus intereses, región, o de propósitos generales.", "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.",
"subtitle_extend": "Elegí un servidor basado en tus intereses, región, o de propósitos generales. Cada servidor es operado por una organización o individuo totalmente independientes.",
"button": { "button": {
"category": { "category": {
"all": "Todas", "all": "Todas",
@ -248,8 +273,7 @@
"category": "CATEGORÍA" "category": "CATEGORÍA"
}, },
"input": { "input": {
"placeholder": "Buscar servidores", "search_servers_or_enter_url": "Buscá comunidades o ingresá la dirección web"
"search_servers_or_enter_url": "Buscar servidores o introducir dirección web"
}, },
"empty_state": { "empty_state": {
"finding_servers": "Buscando servidores disponibles…", "finding_servers": "Buscando servidores disponibles…",
@ -386,7 +410,9 @@
"load_failed": "Falló la descarga", "load_failed": "Falló la descarga",
"upload_failed": "Falló la subida", "upload_failed": "Falló la subida",
"can_not_recognize_this_media_attachment": "No se pudo reconocer este archivo adjunto", "can_not_recognize_this_media_attachment": "No se pudo reconocer este archivo adjunto",
"attachment_too_large": "Adjunto demasiado grande" "attachment_too_large": "Adjunto demasiado grande",
"compressing_state": "Comprimiendo…",
"server_processing_state": "Servidor procesando…"
}, },
"poll": { "poll": {
"duration_time": "Duración: %s", "duration_time": "Duración: %s",
@ -396,7 +422,9 @@
"one_day": "1 día", "one_day": "1 día",
"three_days": "3 días", "three_days": "3 días",
"seven_days": "7 días", "seven_days": "7 días",
"option_number": "Opción %ld" "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"
}, },
"content_warning": { "content_warning": {
"placeholder": "Escribí una advertencia precisa acá…" "placeholder": "Escribí una advertencia precisa acá…"
@ -417,7 +445,9 @@
"custom_emoji_picker": "Selector de emoji personalizado", "custom_emoji_picker": "Selector de emoji personalizado",
"enable_content_warning": "Habilitar advertencia de contenido", "enable_content_warning": "Habilitar advertencia de contenido",
"disable_content_warning": "Deshabilitar advertencia de contenido", "disable_content_warning": "Deshabilitar advertencia de contenido",
"post_visibility_menu": "Menú de visibilidad del mensaje" "post_visibility_menu": "Menú de visibilidad del mensaje",
"post_options": "Opciones de mensaje",
"posting_as": "Enviar como %s"
}, },
"keyboard": { "keyboard": {
"discard_post": "Descartar mensaje", "discard_post": "Descartar mensaje",
@ -433,15 +463,23 @@
"follows_you": "Te sigue" "follows_you": "Te sigue"
}, },
"dashboard": { "dashboard": {
"posts": "mensajes", "my_posts": "mensajes",
"following": "siguiendo", "my_following": "siguiendo",
"followers": "seguidores" "my_followers": "seguidores",
"other_posts": "mensajes",
"other_following": "siguiendo",
"other_followers": "seguidores"
}, },
"fields": { "fields": {
"joined": "En este servidor desde",
"add_row": "Agregar fila", "add_row": "Agregar fila",
"placeholder": { "placeholder": {
"label": "Nombre de campo", "label": "Nombre de campo",
"content": "Valor de campo" "content": "Valor de campo"
},
"verified": {
"short": "Verificado en %s",
"long": "La propiedad de este enlace fue verificada el %s"
} }
}, },
"segmented_control": { "segmented_control": {
@ -706,7 +744,19 @@
"accessibility_hint": "Tocá dos veces para descartar este asistente" "accessibility_hint": "Tocá dos veces para descartar este asistente"
}, },
"bookmark": { "bookmark": {
"title": "Bookmarks" "title": "Marcadores"
},
"followed_tags": {
"title": "Etiquetas seguidas",
"header": {
"posts": "mensajes",
"participants": "participantes",
"posts_today": "mensajes hoy"
},
"actions": {
"follow": "Seguir",
"unfollow": "Dejar de seguir"
}
} }
} }
} }

View File

@ -50,6 +50,22 @@
<string>%ld caracteres</string> <string>%ld caracteres</string>
</dict> </dict>
</dict> </dict>
<key>a11y.plural.count.characters_left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>Quedan %#@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 carácter</string>
<key>other</key>
<string>%ld caracteres</string>
</dict>
</dict>
<key>plural.count.followed_by_and_mutual</key> <key>plural.count.followed_by_and_mutual</key>
<dict> <dict>
<key>NSStringLocalizedFormatKey</key> <key>NSStringLocalizedFormatKey</key>

View File

@ -51,6 +51,11 @@
"clean_cache": { "clean_cache": {
"title": "Limpiar Caché", "title": "Limpiar Caché",
"message": "Se han limpiado con éxito %s de 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"
} }
}, },
"controls": { "controls": {
@ -75,9 +80,10 @@
"save_photo": "Guardar foto", "save_photo": "Guardar foto",
"copy_photo": "Copiar foto", "copy_photo": "Copiar foto",
"sign_in": "Iniciar sesión", "sign_in": "Iniciar sesión",
"sign_up": "Regístrate", "sign_up": "Crear cuenta",
"see_more": "Ver más", "see_more": "Ver más",
"preview": "Vista previa", "preview": "Vista previa",
"copy": "Copiar",
"share": "Compartir", "share": "Compartir",
"share_user": "Compartir %s", "share_user": "Compartir %s",
"share_post": "Compartir publicación", "share_post": "Compartir publicación",
@ -91,12 +97,16 @@
"block_domain": "Bloquear %s", "block_domain": "Bloquear %s",
"unblock_domain": "Desbloquear %s", "unblock_domain": "Desbloquear %s",
"settings": "Configuración", "settings": "Configuración",
"delete": "Borrar" "delete": "Borrar",
"translate_post": {
"title": "Traducir desde %s",
"unknown_language": "Desconocido"
}
}, },
"tabs": { "tabs": {
"home": "Inicio", "home": "Inicio",
"search": "Buscar", "search_and_explore": "Buscar y explorar",
"notification": "Notificación", "notifications": "Notificaciones",
"profile": "Perfil" "profile": "Perfil"
}, },
"keyboard": { "keyboard": {
@ -132,15 +142,17 @@
"sensitive_content": "Contenido sensible", "sensitive_content": "Contenido sensible",
"media_content_warning": "Pulsa en cualquier sitio para mostrar", "media_content_warning": "Pulsa en cualquier sitio para mostrar",
"tap_to_reveal": "Tocar para revelar", "tap_to_reveal": "Tocar para revelar",
"load_embed": "Cargar incrustado",
"link_via_user": "%s vía %s",
"poll": { "poll": {
"vote": "Vota", "vote": "Vota",
"closed": "Cerrado" "closed": "Cerrado"
}, },
"meta_entity": { "meta_entity": {
"url": "Link: %s", "url": "Enlace: %s",
"hashtag": "Hashtag: %s", "hashtag": "Etiqueta: %s",
"mention": "Show Profile: %s", "mention": "Mostrar Perfil: %s",
"email": "Email address: %s" "email": "Dirección de correo electrónico: %s"
}, },
"actions": { "actions": {
"reply": "Responder", "reply": "Responder",
@ -153,6 +165,7 @@
"show_image": "Mostrar imagen", "show_image": "Mostrar imagen",
"show_gif": "Mostrar GIF", "show_gif": "Mostrar GIF",
"show_video_player": "Mostrar reproductor de vídeo", "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ú" "tap_then_hold_to_show_menu": "Toca, después mantén para mostrar el menú"
}, },
"tag": { "tag": {
@ -168,6 +181,12 @@
"private": "Sólo sus seguidores pueden ver este mensaje.", "private": "Sólo sus seguidores pueden ver este mensaje.",
"private_from_me": "Sólo mis 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." "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": "Mostrar Original"
} }
}, },
"friendship": { "friendship": {
@ -187,8 +206,8 @@
"unmute_user": "Desmutear a %s", "unmute_user": "Desmutear a %s",
"muted": "Silenciado", "muted": "Silenciado",
"edit_info": "Editar Info", "edit_info": "Editar Info",
"show_reblogs": "Show Reblogs", "show_reblogs": "Mostrar reblogs",
"hide_reblogs": "Hide Reblogs" "hide_reblogs": "Ocultar reblogs"
}, },
"timeline": { "timeline": {
"filtered": "Filtrado", "filtered": "Filtrado",
@ -218,10 +237,16 @@
"get_started": "Empezar", "get_started": "Empezar",
"log_in": "Iniciar sesión" "log_in": "Iniciar sesión"
}, },
"login": {
"title": "Bienvenido de nuevo",
"subtitle": "Inicie sesión en el servidor en el que creó su cuenta.",
"server_search_field": {
"placeholder": "Introduzca la URL o busque su servidor"
}
},
"server_picker": { "server_picker": {
"title": "Elige un servidor,\ncualquier servidor.", "title": "Elige un servidor,\ncualquier servidor.",
"subtitle": "Elige una comunidad relacionada con tus intereses, con tu región o una más genérica.", "subtitle": "Escoge un servidor basado en tu región, intereses o un propósito general. Aún puedes chatear con cualquiera en Mastodon, independientemente de tus servidores.",
"subtitle_extend": "Elige una comunidad relacionada con tus intereses, con tu región o una más genérica. Cada comunidad está operada por una organización o individuo completamente independiente.",
"button": { "button": {
"category": { "category": {
"all": "Todas", "all": "Todas",
@ -248,8 +273,7 @@
"category": "CATEGORÍA" "category": "CATEGORÍA"
}, },
"input": { "input": {
"placeholder": "Encuentra un servidor o únete al tuyo propio...", "search_servers_or_enter_url": "Buscar comunidades o introducir URL"
"search_servers_or_enter_url": "Buscar servidores o introducir la URL"
}, },
"empty_state": { "empty_state": {
"finding_servers": "Encontrando servidores disponibles...", "finding_servers": "Encontrando servidores disponibles...",
@ -383,10 +407,12 @@
"attachment_broken": "Este %s está roto y no puede\nsubirse a Mastodon.", "attachment_broken": "Este %s está roto y no puede\nsubirse a Mastodon.",
"description_photo": "Describe la foto para los usuarios con dificultad visual...", "description_photo": "Describe la foto para los usuarios con dificultad visual...",
"description_video": "Describe el vídeo para los usuarios con dificultad visual...", "description_video": "Describe el vídeo para los usuarios con dificultad visual...",
"load_failed": "Load Failed", "load_failed": "Carga fallida",
"upload_failed": "Upload Failed", "upload_failed": "Error al cargar",
"can_not_recognize_this_media_attachment": "Can not regonize this media attachment", "can_not_recognize_this_media_attachment": "No se puede reconocer este archivo adjunto",
"attachment_too_large": "Attachment too large" "attachment_too_large": "Adjunto demasiado grande",
"compressing_state": "Comprimiendo...",
"server_processing_state": "Procesando en el servidor..."
}, },
"poll": { "poll": {
"duration_time": "Duración: %s", "duration_time": "Duración: %s",
@ -396,7 +422,9 @@
"one_day": "1 Día", "one_day": "1 Día",
"three_days": "4 Días", "three_days": "4 Días",
"seven_days": "7 Días", "seven_days": "7 Días",
"option_number": "Opción %ld" "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"
}, },
"content_warning": { "content_warning": {
"placeholder": "Escribe una advertencia precisa aquí..." "placeholder": "Escribe una advertencia precisa aquí..."
@ -417,7 +445,9 @@
"custom_emoji_picker": "Selector de Emojis Personalizados", "custom_emoji_picker": "Selector de Emojis Personalizados",
"enable_content_warning": "Activar Advertencia de Contenido", "enable_content_warning": "Activar Advertencia de Contenido",
"disable_content_warning": "Desactivar Advertencia de Contenido", "disable_content_warning": "Desactivar Advertencia de Contenido",
"post_visibility_menu": "Menú de Visibilidad de la Publicación" "post_visibility_menu": "Menú de Visibilidad de la Publicación",
"post_options": "Opciones de Publicación",
"posting_as": "Publicado como %s"
}, },
"keyboard": { "keyboard": {
"discard_post": "Descartar Publicación", "discard_post": "Descartar Publicación",
@ -433,15 +463,23 @@
"follows_you": "Te sigue" "follows_you": "Te sigue"
}, },
"dashboard": { "dashboard": {
"posts": "publicaciones", "my_posts": "posts",
"following": "siguiendo", "my_following": "following",
"followers": "seguidores" "my_followers": "followers",
"other_posts": "posts",
"other_following": "following",
"other_followers": "followers"
}, },
"fields": { "fields": {
"joined": "Se unió",
"add_row": "Añadir Fila", "add_row": "Añadir Fila",
"placeholder": { "placeholder": {
"label": "Nombre para el campo", "label": "Nombre para el campo",
"content": "Contenido" "content": "Contenido"
},
"verified": {
"short": "Verificado en %s",
"long": "La propiedad de este enlace fue verificada el %s"
} }
}, },
"segmented_control": { "segmented_control": {
@ -469,12 +507,12 @@
"message": "Confirmar para desbloquear a %s" "message": "Confirmar para desbloquear a %s"
}, },
"confirm_show_reblogs": { "confirm_show_reblogs": {
"title": "Show Reblogs", "title": "Mostrar reblogs",
"message": "Confirm to show reblogs" "message": "Confirmar para mostrar reblogs"
}, },
"confirm_hide_reblogs": { "confirm_hide_reblogs": {
"title": "Hide Reblogs", "title": "Ocultar reblogs",
"message": "Confirm to hide reblogs" "message": "Confirmar para ocultar reblogs"
} }
}, },
"accessibility": { "accessibility": {
@ -706,7 +744,19 @@
"accessibility_hint": "Haz doble toque para descartar este asistente" "accessibility_hint": "Haz doble toque para descartar este asistente"
}, },
"bookmark": { "bookmark": {
"title": "Bookmarks" "title": "Marcadores"
},
"followed_tags": {
"title": "Etiquetas seguidas",
"header": {
"posts": "publicaciones",
"participants": "participantes",
"posts_today": "publicaciones de hoy"
},
"actions": {
"follow": "Seguir",
"unfollow": "Dejar de seguir"
}
} }
} }
} }

View File

@ -50,10 +50,26 @@
<string>%ld karaktere</string> <string>%ld karaktere</string>
</dict> </dict>
</dict> </dict>
<key>a11y.plural.count.characters_left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@character_count@ left</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>other</key>
<string>%ld karaktere</string>
</dict>
</dict>
<key>plural.count.followed_by_and_mutual</key> <key>plural.count.followed_by_and_mutual</key>
<dict> <dict>
<key>NSStringLocalizedFormatKey</key> <key>NSStringLocalizedFormatKey</key>
<string>%#@names@%#@count_mutual@</string> <string>%#@names@: "%#@count_mutual@</string>
<key>names</key> <key>names</key>
<dict> <dict>
<key>one</key> <key>one</key>

View File

@ -51,6 +51,11 @@
"clean_cache": { "clean_cache": {
"title": "Garbitu cache-a", "title": "Garbitu cache-a",
"message": "Behar bezala garbitu da %s 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"
} }
}, },
"controls": { "controls": {
@ -75,9 +80,10 @@
"save_photo": "Gorde argazkia", "save_photo": "Gorde argazkia",
"copy_photo": "Kopiatu argazkia", "copy_photo": "Kopiatu argazkia",
"sign_in": "Hasi saioa", "sign_in": "Hasi saioa",
"sign_up": "Eman Izena", "sign_up": "Sortu kontua",
"see_more": "Ikusi gehiago", "see_more": "Ikusi gehiago",
"preview": "Aurrebista", "preview": "Aurrebista",
"copy": "Copy",
"share": "Partekatu", "share": "Partekatu",
"share_user": "Partekatu %s", "share_user": "Partekatu %s",
"share_post": "Partekatu bidalketa", "share_post": "Partekatu bidalketa",
@ -91,12 +97,16 @@
"block_domain": "Blokeatu %s", "block_domain": "Blokeatu %s",
"unblock_domain": "Desblokeatu %s", "unblock_domain": "Desblokeatu %s",
"settings": "Ezarpenak", "settings": "Ezarpenak",
"delete": "Ezabatu" "delete": "Ezabatu",
"translate_post": {
"title": "Translate from %s",
"unknown_language": "Unknown"
}
}, },
"tabs": { "tabs": {
"home": "Hasiera", "home": "Hasiera",
"search": "Bilatu", "search_and_explore": "Search and Explore",
"notification": "Jakinarazpena", "notifications": "Notifications",
"profile": "Profila" "profile": "Profila"
}, },
"keyboard": { "keyboard": {
@ -129,18 +139,20 @@
"show_post": "Erakutsi bidalketa", "show_post": "Erakutsi bidalketa",
"show_user_profile": "Erakutsi erabiltzailearen profila", "show_user_profile": "Erakutsi erabiltzailearen profila",
"content_warning": "Edukiaren abisua", "content_warning": "Edukiaren abisua",
"sensitive_content": "Sensitive Content", "sensitive_content": "Eduki hunkigarria",
"media_content_warning": "Ukitu edonon bistaratzeko", "media_content_warning": "Ukitu edonon bistaratzeko",
"tap_to_reveal": "Sakatu erakusteko", "tap_to_reveal": "Sakatu erakusteko",
"load_embed": "Load Embed",
"link_via_user": "%s via %s",
"poll": { "poll": {
"vote": "Bozkatu", "vote": "Bozkatu",
"closed": "Itxita" "closed": "Itxita"
}, },
"meta_entity": { "meta_entity": {
"url": "Link: %s", "url": "Lotura: %s",
"hashtag": "Hashtag: %s", "hashtag": "Traolak: %s",
"mention": "Show Profile: %s", "mention": "Erakutsi Profila: %s",
"email": "Email address: %s" "email": "E-posta helbidea: %s"
}, },
"actions": { "actions": {
"reply": "Erantzun", "reply": "Erantzun",
@ -153,6 +165,7 @@
"show_image": "Erakutsi irudia", "show_image": "Erakutsi irudia",
"show_gif": "Erakutsi GIFa", "show_gif": "Erakutsi GIFa",
"show_video_player": "Erakutsi bideo-erreproduzigailua", "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" "tap_then_hold_to_show_menu": "Sakatu eta eutsi menua erakusteko"
}, },
"tag": { "tag": {
@ -168,6 +181,12 @@
"private": "Beren jarraitzaileek soilik ikus dezakete bidalketa hau.", "private": "Beren jarraitzaileek soilik ikus dezakete bidalketa hau.",
"private_from_me": "Nire jarraitzaileek soilik ikus dezakete bidalketa hau.", "private_from_me": "Nire jarraitzaileek soilik ikus dezakete bidalketa hau.",
"direct": "Aipatutako erabiltzaileek 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": "Shown Original"
} }
}, },
"friendship": { "friendship": {
@ -187,8 +206,8 @@
"unmute_user": "Desmututu %s", "unmute_user": "Desmututu %s",
"muted": "Mutututa", "muted": "Mutututa",
"edit_info": "Editatu informazioa", "edit_info": "Editatu informazioa",
"show_reblogs": "Show Reblogs", "show_reblogs": "Ikusi bultzadak",
"hide_reblogs": "Hide Reblogs" "hide_reblogs": "Ezkutatu bultzadak"
}, },
"timeline": { "timeline": {
"filtered": "Iragazita", "filtered": "Iragazita",
@ -218,10 +237,16 @@
"get_started": "Nola hasi", "get_started": "Nola hasi",
"log_in": "Hasi saioa" "log_in": "Hasi saioa"
}, },
"login": {
"title": "Ongi etorri berriro ere",
"subtitle": "Log you in on the server you created your account on.",
"server_search_field": {
"placeholder": "Enter URL or search for your server"
}
},
"server_picker": { "server_picker": {
"title": "Aukeratu zerbitzari bat,\nedozein zerbitzari.", "title": "Aukeratu zerbitzari bat,\nedozein zerbitzari.",
"subtitle": "Aukeratu komunitate bat zure interes edo lurraldearen arabera, edo erabilera orokorreko bat.", "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.",
"subtitle_extend": "Aukeratu komunitate bat zure interes edo lurraldearen arabera, edo erabilera orokorreko bat. Komunitate bakoitza erakunde edo norbanako independente batek kudeatzen du.",
"button": { "button": {
"category": { "category": {
"all": "Guztiak", "all": "Guztiak",
@ -248,8 +273,7 @@
"category": "KATEGORIA" "category": "KATEGORIA"
}, },
"input": { "input": {
"placeholder": "Bilatu zerbitzari bat edo sortu zurea...", "search_servers_or_enter_url": "Search communities or enter URL"
"search_servers_or_enter_url": "Search servers or enter URL"
}, },
"empty_state": { "empty_state": {
"finding_servers": "Erabilgarri dauden zerbitzariak bilatzen...", "finding_servers": "Erabilgarri dauden zerbitzariak bilatzen...",
@ -259,7 +283,7 @@
}, },
"register": { "register": {
"title": "Hitz egin iezaguzu zuri buruz.", "title": "Hitz egin iezaguzu zuri buruz.",
"lets_get_you_set_up_on_domain": "Lets get you set up on %s", "lets_get_you_set_up_on_domain": "%s zerbitzariko kontua prestatuko dizugu",
"input": { "input": {
"avatar": { "avatar": {
"delete": "Ezabatu" "delete": "Ezabatu"
@ -330,7 +354,7 @@
"confirm_email": { "confirm_email": {
"title": "Eta azkenik...", "title": "Eta azkenik...",
"subtitle": "Sakatu epostaz bidali dizugun loturan zure kontua egiaztatzeko.", "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", "tap_the_link_we_emailed_to_you_to_verify_your_account": "Sakatu epostaz bidali dizugun loturan zure kontua egiaztatzeko",
"button": { "button": {
"open_email_app": "Ireki eposta aplikazioa", "open_email_app": "Ireki eposta aplikazioa",
"resend": "Berbidali" "resend": "Berbidali"
@ -355,7 +379,7 @@
"published": "Argitaratua!", "published": "Argitaratua!",
"Publishing": "Bidalketa argitaratzen...", "Publishing": "Bidalketa argitaratzen...",
"accessibility": { "accessibility": {
"logo_label": "Logo Button", "logo_label": "Logo botoia",
"logo_hint": "Tap to scroll to top and tap again to previous location" "logo_hint": "Tap to scroll to top and tap again to previous location"
} }
} }
@ -384,9 +408,11 @@
"description_photo": "Deskribatu argazkia ikusmen arazoak dituztenentzat...", "description_photo": "Deskribatu argazkia ikusmen arazoak dituztenentzat...",
"description_video": "Deskribatu bideoa ikusmen arazoak dituztenentzat...", "description_video": "Deskribatu bideoa ikusmen arazoak dituztenentzat...",
"load_failed": "Load Failed", "load_failed": "Load Failed",
"upload_failed": "Upload Failed", "upload_failed": "Kargatzeak huts egin du",
"can_not_recognize_this_media_attachment": "Can not regonize this media attachment", "can_not_recognize_this_media_attachment": "Can not recognize this media attachment",
"attachment_too_large": "Attachment too large" "attachment_too_large": "Eranskina handiegia da",
"compressing_state": "Konprimatzen...",
"server_processing_state": "Server Processing..."
}, },
"poll": { "poll": {
"duration_time": "Iraupena: %s", "duration_time": "Iraupena: %s",
@ -396,7 +422,9 @@
"one_day": "Egun 1", "one_day": "Egun 1",
"three_days": "3 egun", "three_days": "3 egun",
"seven_days": "7 egun", "seven_days": "7 egun",
"option_number": "%ld aukera" "option_number": "%ld aukera",
"the_poll_is_invalid": "Inkesta ez da balekoa",
"the_poll_has_empty_option": "The poll has empty option"
}, },
"content_warning": { "content_warning": {
"placeholder": "Idatzi abisu zehatz bat hemen..." "placeholder": "Idatzi abisu zehatz bat hemen..."
@ -417,7 +445,9 @@
"custom_emoji_picker": "Emoji pertsonalizatuen hautatzailea", "custom_emoji_picker": "Emoji pertsonalizatuen hautatzailea",
"enable_content_warning": "Gaitu edukiaren abisua", "enable_content_warning": "Gaitu edukiaren abisua",
"disable_content_warning": "Desgaitu edukiaren abisua", "disable_content_warning": "Desgaitu edukiaren abisua",
"post_visibility_menu": "Bidalketaren ikusgaitasunaren menua" "post_visibility_menu": "Bidalketaren ikusgaitasunaren menua",
"post_options": "Bildalketaren aukerak",
"posting_as": "Posting as %s"
}, },
"keyboard": { "keyboard": {
"discard_post": "Baztertu bidalketa", "discard_post": "Baztertu bidalketa",
@ -430,18 +460,26 @@
}, },
"profile": { "profile": {
"header": { "header": {
"follows_you": "Follows You" "follows_you": "Jarraitzen zaitu"
}, },
"dashboard": { "dashboard": {
"posts": "bidalketa", "my_posts": "posts",
"following": "jarraitzen", "my_following": "following",
"followers": "jarraitzaile" "my_followers": "followers",
"other_posts": "posts",
"other_following": "following",
"other_followers": "followers"
}, },
"fields": { "fields": {
"joined": "Joined",
"add_row": "Gehitu errenkada", "add_row": "Gehitu errenkada",
"placeholder": { "placeholder": {
"label": "Etiketa", "label": "Etiketa",
"content": "Edukia" "content": "Edukia"
},
"verified": {
"short": "Verified on %s",
"long": "Esteka honen jabetzaren egiaztaketa data: %s"
} }
}, },
"segmented_control": { "segmented_control": {
@ -469,12 +507,12 @@
"message": "Berretsi %s desblokeatzea" "message": "Berretsi %s desblokeatzea"
}, },
"confirm_show_reblogs": { "confirm_show_reblogs": {
"title": "Show Reblogs", "title": "Ikusi bultzadak",
"message": "Confirm to show reblogs" "message": "Berretsi birbidalketak ikustea"
}, },
"confirm_hide_reblogs": { "confirm_hide_reblogs": {
"title": "Hide Reblogs", "title": "Ezkutatu bultzadak",
"message": "Confirm to hide reblogs" "message": "Berretsi birbidalketak ezkutatzea"
} }
}, },
"accessibility": { "accessibility": {
@ -485,11 +523,11 @@
} }
}, },
"follower": { "follower": {
"title": "follower", "title": "jarraitzaile",
"footer": "Beste zerbitzarietako jarraitzaileak ez dira bistaratzen." "footer": "Beste zerbitzarietako jarraitzaileak ez dira bistaratzen."
}, },
"following": { "following": {
"title": "following", "title": "jarraitzen",
"footer": "Beste zerbitzarietan jarraitutakoak ez dira bistaratzen." "footer": "Beste zerbitzarietan jarraitutakoak ez dira bistaratzen."
}, },
"familiarFollowers": { "familiarFollowers": {
@ -540,10 +578,10 @@
"posts": "Argitalpenak", "posts": "Argitalpenak",
"hashtags": "Traolak", "hashtags": "Traolak",
"news": "Albisteak", "news": "Albisteak",
"community": "Community", "community": "Komunitatea",
"for_you": "Zuretzat" "for_you": "Zuretzat"
}, },
"intro": "These are the posts gaining traction in your corner of Mastodon." "intro": "Hauek dira zure Mastodon txokoan beraien lekua hartzen ari diren argitalpenak."
}, },
"favorite": { "favorite": {
"title": "Zure gogokoak" "title": "Zure gogokoak"
@ -566,10 +604,10 @@
"show_mentions": "Erakutsi aipamenak" "show_mentions": "Erakutsi aipamenak"
}, },
"follow_request": { "follow_request": {
"accept": "Accept", "accept": "Onartu",
"accepted": "Accepted", "accepted": "Onartuta",
"reject": "reject", "reject": "ukatu",
"rejected": "Rejected" "rejected": "Ukatua"
} }
}, },
"thread": { "thread": {
@ -646,46 +684,46 @@
"text_placeholder": "Idatzi edo itsatsi iruzkin gehigarriak", "text_placeholder": "Idatzi edo itsatsi iruzkin gehigarriak",
"reported": "SALATUA", "reported": "SALATUA",
"step_one": { "step_one": {
"step_1_of_4": "Step 1 of 4", "step_1_of_4": "1. urratsa 4tik",
"whats_wrong_with_this_post": "What's wrong with this post?", "whats_wrong_with_this_post": "Zer du txarra argitalpen honek?",
"whats_wrong_with_this_account": "What's wrong with this account?", "whats_wrong_with_this_account": "Zer du txarra kontu honek?",
"whats_wrong_with_this_username": "What's wrong with %s?", "whats_wrong_with_this_username": "Zer du txarra %s?",
"select_the_best_match": "Select the best match", "select_the_best_match": "Aukeratu egokiena",
"i_dont_like_it": "I dont like it", "i_dont_like_it": "Ez dut gustukoa",
"it_is_not_something_you_want_to_see": "It is not something you want to see", "it_is_not_something_you_want_to_see": "Ikusi nahi ez dudan zerbait da",
"its_spam": "Its spam", "its_spam": "Spama da",
"malicious_links_fake_engagement_or_repetetive_replies": "Malicious links, fake engagement, or repetetive replies", "malicious_links_fake_engagement_or_repetetive_replies": "Esteka maltzurrak, gezurrezko elkarrekintzak edo erantzun errepikakorrak",
"it_violates_server_rules": "It violates server rules", "it_violates_server_rules": "Zerbitzariaren arauak hausten ditu",
"you_are_aware_that_it_breaks_specific_rules": "You are aware that it breaks specific rules", "you_are_aware_that_it_breaks_specific_rules": "Arau zehatzak urratzen dituela badakizu",
"its_something_else": "Its something else", "its_something_else": "Beste zerbait da",
"the_issue_does_not_fit_into_other_categories": "The issue does not fit into other categories" "the_issue_does_not_fit_into_other_categories": "Arazoa ezin da beste kategorietan sailkatu"
}, },
"step_two": { "step_two": {
"step_2_of_4": "Step 2 of 4", "step_2_of_4": "2. urratsa 4tik",
"which_rules_are_being_violated": "Which rules are being violated?", "which_rules_are_being_violated": "Ze arau hautsi ditu?",
"select_all_that_apply": "Select all that apply", "select_all_that_apply": "Hautatu dagozkion guztiak",
"i_just_dont_like_it": "I just dont like it" "i_just_dont_like_it": "I just dont like it"
}, },
"step_three": { "step_three": {
"step_3_of_4": "Step 3 of 4", "step_3_of_4": "3. urratsa 4tik",
"are_there_any_posts_that_back_up_this_report": "Are there any posts that back up this report?", "are_there_any_posts_that_back_up_this_report": "Salaketa hau babesten duen bidalketarik badago?",
"select_all_that_apply": "Select all that apply" "select_all_that_apply": "Hautatu dagozkion guztiak"
}, },
"step_four": { "step_four": {
"step_4_of_4": "Step 4 of 4", "step_4_of_4": "4. urratsa 4tik",
"is_there_anything_else_we_should_know": "Is there anything else we should know?" "is_there_anything_else_we_should_know": "Beste zerbait jakin beharko genuke?"
}, },
"step_final": { "step_final": {
"dont_want_to_see_this": "Dont want to see this?", "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.": "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.": "Mastodonen gustuko ez duzun zerbait ikusten duzunean, zure esperientziatik atera dezakezu pertsona hori.",
"unfollow": "Unfollow", "unfollow": "Utzi jarraitzeari",
"unfollowed": "Unfollowed", "unfollowed": "Unfollowed",
"unfollow_user": "Unfollow %s", "unfollow_user": "%s jarraitzeari utzi",
"mute_user": "Mute %s", "mute_user": "Mututu %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.", "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": "Block %s", "block_user": "Blokeatu %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.", "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": "While we review this, you can take action against %s" "while_we_review_this_you_can_take_action_against_user": "Hau berrikusten dugun bitartean, %s erabiltzailearen aurkako neurriak hartu ditzakezu"
} }
}, },
"preview": { "preview": {
@ -706,7 +744,19 @@
"accessibility_hint": "Ukitu birritan morroi hau baztertzeko" "accessibility_hint": "Ukitu birritan morroi hau baztertzeko"
}, },
"bookmark": { "bookmark": {
"title": "Bookmarks" "title": "Laster-markak"
},
"followed_tags": {
"title": "Followed Tags",
"header": {
"posts": "posts",
"participants": "participants",
"posts_today": "posts today"
},
"actions": {
"follow": "Follow",
"unfollow": "Unfollow"
}
} }
} }
} }

View File

@ -50,6 +50,22 @@
<string>%ld merkkiä</string> <string>%ld merkkiä</string>
</dict> </dict>
</dict> </dict>
<key>a11y.plural.count.characters_left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@character_count@ left</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>other</key>
<string>%ld characters</string>
</dict>
</dict>
<key>plural.count.followed_by_and_mutual</key> <key>plural.count.followed_by_and_mutual</key>
<dict> <dict>
<key>NSStringLocalizedFormatKey</key> <key>NSStringLocalizedFormatKey</key>

View File

@ -51,6 +51,11 @@
"clean_cache": { "clean_cache": {
"title": "Puhdista välimuisti", "title": "Puhdista välimuisti",
"message": "%s välimuisti tyhjennetty onnistuneesti." "message": "%s välimuisti tyhjennetty onnistuneesti."
},
"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"
} }
}, },
"controls": { "controls": {
@ -74,10 +79,11 @@
"take_photo": "Ota kuva", "take_photo": "Ota kuva",
"save_photo": "Tallenna kuva", "save_photo": "Tallenna kuva",
"copy_photo": "Kopioi kuva", "copy_photo": "Kopioi kuva",
"sign_in": "Kirjaudu sisään", "sign_in": "Log in",
"sign_up": "Rekisteröidy", "sign_up": "Create account",
"see_more": "Näytä lisää", "see_more": "Näytä lisää",
"preview": "Esikatselu", "preview": "Esikatselu",
"copy": "Copy",
"share": "Jaa", "share": "Jaa",
"share_user": "Jaa %s", "share_user": "Jaa %s",
"share_post": "Jaa julkaisu", "share_post": "Jaa julkaisu",
@ -91,12 +97,16 @@
"block_domain": "Estä %s", "block_domain": "Estä %s",
"unblock_domain": "Poista esto %s", "unblock_domain": "Poista esto %s",
"settings": "Asetukset", "settings": "Asetukset",
"delete": "Poista" "delete": "Poista",
"translate_post": {
"title": "Translate from %s",
"unknown_language": "Unknown"
}
}, },
"tabs": { "tabs": {
"home": "Koti", "home": "Koti",
"search": "Haku", "search_and_explore": "Search and Explore",
"notification": "Ilmoitus", "notifications": "Notifications",
"profile": "Profiili" "profile": "Profiili"
}, },
"keyboard": { "keyboard": {
@ -132,6 +142,8 @@
"sensitive_content": "Sensitive Content", "sensitive_content": "Sensitive Content",
"media_content_warning": "Napauta mistä tahansa paljastaaksesi", "media_content_warning": "Napauta mistä tahansa paljastaaksesi",
"tap_to_reveal": "Tap to reveal", "tap_to_reveal": "Tap to reveal",
"load_embed": "Load Embed",
"link_via_user": "%s via %s",
"poll": { "poll": {
"vote": "Vote", "vote": "Vote",
"closed": "Suljettu" "closed": "Suljettu"
@ -153,6 +165,7 @@
"show_image": "Show image", "show_image": "Show image",
"show_gif": "Show GIF", "show_gif": "Show GIF",
"show_video_player": "Show video player", "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" "tap_then_hold_to_show_menu": "Tap then hold to show menu"
}, },
"tag": { "tag": {
@ -168,6 +181,12 @@
"private": "Only their followers can see this post.", "private": "Only their followers can see this post.",
"private_from_me": "Only my followers can see this post.", "private_from_me": "Only my followers can see this post.",
"direct": "Only mentioned user can see this post." "direct": "Only mentioned user can see this post."
},
"translation": {
"translated_from": "Käännetty kielestä %s palvelulla %s",
"unknown_language": "Unknown",
"unknown_provider": "Tuntematon",
"show_original": "Shown Original"
} }
}, },
"friendship": { "friendship": {
@ -218,10 +237,16 @@
"get_started": "Get Started", "get_started": "Get Started",
"log_in": "Log In" "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"
}
},
"server_picker": { "server_picker": {
"title": "Valitse palvelin,\nmikä tahansa palvelin.", "title": "Valitse palvelin,\nmikä tahansa palvelin.",
"subtitle": "Pick a server based on your interests, region, or a general purpose one.", "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.",
"subtitle_extend": "Pick a server based on your interests, region, or a general purpose one. Each server is operated by an entirely independent organization or individual.",
"button": { "button": {
"category": { "category": {
"all": "Kaikki", "all": "Kaikki",
@ -248,8 +273,7 @@
"category": "KATEGORIA" "category": "KATEGORIA"
}, },
"input": { "input": {
"placeholder": "Etsi palvelin tai liity omaan...", "search_servers_or_enter_url": "Search communities or enter URL"
"search_servers_or_enter_url": "Search servers or enter URL"
}, },
"empty_state": { "empty_state": {
"finding_servers": "Etsistään saatavilla olevia palvelimia...", "finding_servers": "Etsistään saatavilla olevia palvelimia...",
@ -385,8 +409,10 @@
"description_video": "Kuvaile video näkövammaisille...", "description_video": "Kuvaile video näkövammaisille...",
"load_failed": "Load Failed", "load_failed": "Load Failed",
"upload_failed": "Upload Failed", "upload_failed": "Upload Failed",
"can_not_recognize_this_media_attachment": "Can not regonize this media attachment", "can_not_recognize_this_media_attachment": "Can not recognize this media attachment",
"attachment_too_large": "Attachment too large" "attachment_too_large": "Attachment too large",
"compressing_state": "Compressing...",
"server_processing_state": "Server Processing..."
}, },
"poll": { "poll": {
"duration_time": "Kesto: %s", "duration_time": "Kesto: %s",
@ -396,7 +422,9 @@
"one_day": "1 päivä", "one_day": "1 päivä",
"three_days": "3 päivää", "three_days": "3 päivää",
"seven_days": "7 päivää", "seven_days": "7 päivää",
"option_number": "Vaihtoehto %ld" "option_number": "Vaihtoehto %ld",
"the_poll_is_invalid": "The poll is invalid",
"the_poll_has_empty_option": "The poll has empty option"
}, },
"content_warning": { "content_warning": {
"placeholder": "Kirjoita tarkka varoitus tähän..." "placeholder": "Kirjoita tarkka varoitus tähän..."
@ -417,7 +445,9 @@
"custom_emoji_picker": "Mukautettu emojivalitsin", "custom_emoji_picker": "Mukautettu emojivalitsin",
"enable_content_warning": "Ota sisältövaroitus käyttöön", "enable_content_warning": "Ota sisältövaroitus käyttöön",
"disable_content_warning": "Poista sisältövaroitus käytöstä", "disable_content_warning": "Poista sisältövaroitus käytöstä",
"post_visibility_menu": "Julkaisun näkyvyysvalikko" "post_visibility_menu": "Julkaisun näkyvyysvalikko",
"post_options": "Post Options",
"posting_as": "Posting as %s"
}, },
"keyboard": { "keyboard": {
"discard_post": "Hylkää julkaisu", "discard_post": "Hylkää julkaisu",
@ -433,15 +463,23 @@
"follows_you": "Follows You" "follows_you": "Follows You"
}, },
"dashboard": { "dashboard": {
"posts": "julkaisut", "my_posts": "julkaisut",
"following": "seurataan", "my_following": "seurattavat",
"followers": "seuraajat" "my_followers": "seuraajat",
"other_posts": "julkaisut",
"other_following": "seurattavat",
"other_followers": "seuraajat"
}, },
"fields": { "fields": {
"joined": "Joined",
"add_row": "Lisää rivi", "add_row": "Lisää rivi",
"placeholder": { "placeholder": {
"label": "Nimi", "label": "Nimi",
"content": "Sisältö" "content": "Sisältö"
},
"verified": {
"short": "Verified on %s",
"long": "Ownership of this link was checked on %s"
} }
}, },
"segmented_control": { "segmented_control": {
@ -707,6 +745,18 @@
}, },
"bookmark": { "bookmark": {
"title": "Bookmarks" "title": "Bookmarks"
},
"followed_tags": {
"title": "Followed Tags",
"header": {
"posts": "posts",
"participants": "participants",
"posts_today": "posts today"
},
"actions": {
"follow": "Follow",
"unfollow": "Unfollow"
}
} }
} }
} }

View File

@ -50,6 +50,22 @@
<string>%ld caractères</string> <string>%ld caractères</string>
</dict> </dict>
</dict> </dict>
<key>a11y.plural.count.characters_left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@character_count@ restants</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 caractère</string>
<key>other</key>
<string>%ld caractères</string>
</dict>
</dict>
<key>plural.count.followed_by_and_mutual</key> <key>plural.count.followed_by_and_mutual</key>
<dict> <dict>
<key>NSStringLocalizedFormatKey</key> <key>NSStringLocalizedFormatKey</key>

View File

@ -51,6 +51,11 @@
"clean_cache": { "clean_cache": {
"title": "Vider le cache", "title": "Vider le cache",
"message": "Cache de %s effacé avec succès." "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"
} }
}, },
"controls": { "controls": {
@ -78,6 +83,7 @@
"sign_up": "Créer un compte", "sign_up": "Créer un compte",
"see_more": "Voir plus", "see_more": "Voir plus",
"preview": "Aperçu", "preview": "Aperçu",
"copy": "Copier",
"share": "Partager", "share": "Partager",
"share_user": "Partager %s", "share_user": "Partager %s",
"share_post": "Partager la publication", "share_post": "Partager la publication",
@ -91,12 +97,16 @@
"block_domain": "Bloquer %s", "block_domain": "Bloquer %s",
"unblock_domain": "Débloquer %s", "unblock_domain": "Débloquer %s",
"settings": "Paramètres", "settings": "Paramètres",
"delete": "Supprimer" "delete": "Supprimer",
"translate_post": {
"title": "Traduit depuis %s",
"unknown_language": "Inconnu"
}
}, },
"tabs": { "tabs": {
"home": "Accueil", "home": "Accueil",
"search": "Rechercher", "search_and_explore": "Rechercher et explorer",
"notification": "Notification", "notifications": "Notifications",
"profile": "Profil" "profile": "Profil"
}, },
"keyboard": { "keyboard": {
@ -132,6 +142,8 @@
"sensitive_content": "Contenu sensible", "sensitive_content": "Contenu sensible",
"media_content_warning": "Tapotez nimporte où pour révéler la publication", "media_content_warning": "Tapotez nimporte où pour révéler la publication",
"tap_to_reveal": "Appuyer pour afficher", "tap_to_reveal": "Appuyer pour afficher",
"load_embed": "Charger l'intégration",
"link_via_user": "%s via %s",
"poll": { "poll": {
"vote": "Voter", "vote": "Voter",
"closed": "Fermé" "closed": "Fermé"
@ -153,6 +165,7 @@
"show_image": "Afficher limage", "show_image": "Afficher limage",
"show_gif": "Afficher le GIF", "show_gif": "Afficher le GIF",
"show_video_player": "Afficher le lecteur vidéo", "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" "tap_then_hold_to_show_menu": "Appuyez et maintenez pour afficher le menu"
}, },
"tag": { "tag": {
@ -168,6 +181,12 @@
"private": "Seul·e·s leurs abonné·e·s peuvent voir ce message.", "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.", "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." "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 loriginal"
} }
}, },
"friendship": { "friendship": {
@ -218,10 +237,16 @@
"get_started": "Prise en main", "get_started": "Prise en main",
"log_in": "Se connecter" "log_in": "Se connecter"
}, },
"login": {
"title": "Content de vous revoir",
"subtitle": "Connectez-vous sur le serveur sur lequel vous avez créé votre compte.",
"server_search_field": {
"placeholder": "Entrez l'URL ou recherchez votre serveur"
}
},
"server_picker": { "server_picker": {
"title": "Choisissez un serveur,\nn'importe quel serveur.", "title": "Choisissez un serveur,\nn'importe quel serveur.",
"subtitle": "Choisissez une communauté en fonction de vos intérêts, de votre région ou de votre objectif général.", "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.",
"subtitle_extend": "Choisissez une communauté basée sur vos intérêts, votre région ou un but général. Chaque communauté est gérée par une organisation ou un individu entièrement indépendant.",
"button": { "button": {
"category": { "category": {
"all": "Tout", "all": "Tout",
@ -248,8 +273,7 @@
"category": "CATÉGORIE" "category": "CATÉGORIE"
}, },
"input": { "input": {
"placeholder": "Trouvez un serveur ou rejoignez le vôtre...", "search_servers_or_enter_url": "Rechercher parmi les communautés ou renseigner une URL"
"search_servers_or_enter_url": "Rechercher des serveurs ou entrer une URL"
}, },
"empty_state": { "empty_state": {
"finding_servers": "Recherche des serveurs disponibles...", "finding_servers": "Recherche des serveurs disponibles...",
@ -383,10 +407,12 @@
"attachment_broken": "Ce %s est brisé et ne peut pas être\ntéléversé sur Mastodon.", "attachment_broken": "Ce %s est brisé et ne peut pas être\ntéléversé sur Mastodon.",
"description_photo": "Décrire cette photo pour les personnes malvoyantes...", "description_photo": "Décrire cette photo pour les personnes malvoyantes...",
"description_video": "Décrire cette vidéo pour les personnes malvoyantes...", "description_video": "Décrire cette vidéo pour les personnes malvoyantes...",
"load_failed": "Load Failed", "load_failed": "Échec du chargement",
"upload_failed": "Upload Failed", "upload_failed": "Échec de lenvoi",
"can_not_recognize_this_media_attachment": "Can not regonize this media attachment", "can_not_recognize_this_media_attachment": "Impossible de reconnaître cette pièce jointe",
"attachment_too_large": "Attachment too large" "attachment_too_large": "La pièce jointe est trop volumineuse",
"compressing_state": "Compression...",
"server_processing_state": "Traitement du serveur..."
}, },
"poll": { "poll": {
"duration_time": "Durée: %s", "duration_time": "Durée: %s",
@ -396,7 +422,9 @@
"one_day": "1 Jour", "one_day": "1 Jour",
"three_days": "3 jour", "three_days": "3 jour",
"seven_days": "7 jour", "seven_days": "7 jour",
"option_number": "Option %ld" "option_number": "Option %ld",
"the_poll_is_invalid": "Le sondage est invalide",
"the_poll_has_empty_option": "Le sondage n'a pas d'options"
}, },
"content_warning": { "content_warning": {
"placeholder": "Écrivez un avertissement précis ici..." "placeholder": "Écrivez un avertissement précis ici..."
@ -417,7 +445,9 @@
"custom_emoji_picker": "Sélecteur démojis personnalisés", "custom_emoji_picker": "Sélecteur démojis personnalisés",
"enable_content_warning": "Basculer lavertissement de contenu", "enable_content_warning": "Basculer lavertissement de contenu",
"disable_content_warning": "Désactiver l'avertissement de contenu", "disable_content_warning": "Désactiver l'avertissement de contenu",
"post_visibility_menu": "Menu de Visibilité de la publication" "post_visibility_menu": "Menu de Visibilité de la publication",
"post_options": "Options de publication",
"posting_as": "Publié en tant que %s"
}, },
"keyboard": { "keyboard": {
"discard_post": "Rejeter la publication", "discard_post": "Rejeter la publication",
@ -433,15 +463,23 @@
"follows_you": "Vous suit" "follows_you": "Vous suit"
}, },
"dashboard": { "dashboard": {
"posts": "publications", "my_posts": "messages",
"following": "abonnements", "my_following": "abonnement",
"followers": "abonnés" "my_followers": "abonnés",
"other_posts": "publications",
"other_following": "abonnement",
"other_followers": "abonnés"
}, },
"fields": { "fields": {
"joined": "Ici depuis",
"add_row": "Ajouter une rangée", "add_row": "Ajouter une rangée",
"placeholder": { "placeholder": {
"label": "Étiquette", "label": "Étiquette",
"content": "Contenu" "content": "Contenu"
},
"verified": {
"short": "Vérifié le %s",
"long": "La propriété de ce lien a été vérifiée le %s"
} }
}, },
"segmented_control": { "segmented_control": {
@ -707,6 +745,18 @@
}, },
"bookmark": { "bookmark": {
"title": "Favoris" "title": "Favoris"
},
"followed_tags": {
"title": "Tags suivis",
"header": {
"posts": "messages",
"participants": "participants",
"posts_today": "messages aujourd'hui"
},
"actions": {
"follow": "Suivre",
"unfollow": "Ne plus suivre"
}
} }
} }
} }

View File

@ -62,6 +62,26 @@
<string>%ld caractar</string> <string>%ld caractar</string>
</dict> </dict>
</dict> </dict>
<key>a11y.plural.count.characters_left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@character_count@ air fhàgail</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>%ld charactar</string>
<key>two</key>
<string>%ld charactar</string>
<key>few</key>
<string>%ld caractaran</string>
<key>other</key>
<string>%ld caractar</string>
</dict>
</dict>
<key>plural.count.followed_by_and_mutual</key> <key>plural.count.followed_by_and_mutual</key>
<dict> <dict>
<key>NSStringLocalizedFormatKey</key> <key>NSStringLocalizedFormatKey</key>

View File

@ -51,6 +51,11 @@
"clean_cache": { "clean_cache": {
"title": "Falamhaich an tasgadan", "title": "Falamhaich an tasgadan",
"message": "Chaidh %s a thasgadan fhalamhachadh." "message": "Chaidh %s a thasgadan fhalamhachadh."
},
"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"
} }
}, },
"controls": { "controls": {
@ -75,9 +80,10 @@
"save_photo": "Sàbhail an dealbh", "save_photo": "Sàbhail an dealbh",
"copy_photo": "Dèan lethbhreac dhen dealbh", "copy_photo": "Dèan lethbhreac dhen dealbh",
"sign_in": "Clàraich a-steach", "sign_in": "Clàraich a-steach",
"sign_up": "Clàraich leinn", "sign_up": "Cruthaich cunntas",
"see_more": "Seall a bharrachd", "see_more": "Seall a bharrachd",
"preview": "Ro-sheall", "preview": "Ro-sheall",
"copy": "Copy",
"share": "Co-roinn", "share": "Co-roinn",
"share_user": "Co-roinn %s", "share_user": "Co-roinn %s",
"share_post": "Co-roinn am post", "share_post": "Co-roinn am post",
@ -91,12 +97,16 @@
"block_domain": "Bac %s", "block_domain": "Bac %s",
"unblock_domain": "Dì-bhac %s", "unblock_domain": "Dì-bhac %s",
"settings": "Roghainnean", "settings": "Roghainnean",
"delete": "Sguab às" "delete": "Sguab às",
"translate_post": {
"title": "Translate from %s",
"unknown_language": "Unknown"
}
}, },
"tabs": { "tabs": {
"home": "Dachaigh", "home": "Dachaigh",
"search": "Lorg", "search_and_explore": "Search and Explore",
"notification": "Brath", "notifications": "Notifications",
"profile": "Pròifil" "profile": "Pròifil"
}, },
"keyboard": { "keyboard": {
@ -132,15 +142,17 @@
"sensitive_content": "Susbaint fhrionasach", "sensitive_content": "Susbaint fhrionasach",
"media_content_warning": "Thoir gnogag àite sam bith gus a nochdadh", "media_content_warning": "Thoir gnogag àite sam bith gus a nochdadh",
"tap_to_reveal": "Thoir gnogag gus a nochdadh", "tap_to_reveal": "Thoir gnogag gus a nochdadh",
"load_embed": "Load Embed",
"link_via_user": "%s via %s",
"poll": { "poll": {
"vote": "Cuir bhòt", "vote": "Cuir bhòt",
"closed": "Dùinte" "closed": "Dùinte"
}, },
"meta_entity": { "meta_entity": {
"url": "Link: %s", "url": "Ceangal: %s",
"hashtag": "Hashtag: %s", "hashtag": "Taga hais: %s",
"mention": "Show Profile: %s", "mention": "Seall a phròifil: %s",
"email": "Email address: %s" "email": "Seòladh puist-d: %s"
}, },
"actions": { "actions": {
"reply": "Freagair", "reply": "Freagair",
@ -153,6 +165,7 @@
"show_image": "Seall an dealbh", "show_image": "Seall an dealbh",
"show_gif": "Seall an GIF", "show_gif": "Seall an GIF",
"show_video_player": "Seall cluicheadair video", "show_video_player": "Seall cluicheadair video",
"share_link_in_post": "Share Link in Post",
"tap_then_hold_to_show_menu": "Thoir gnogag s cùm sìos a shealltainn a chlàir-thaice" "tap_then_hold_to_show_menu": "Thoir gnogag s cùm sìos a shealltainn a chlàir-thaice"
}, },
"tag": { "tag": {
@ -168,6 +181,12 @@
"private": "Chan fhaic ach an luchd-leantainn aca am post seo.", "private": "Chan fhaic ach an luchd-leantainn aca am post seo.",
"private_from_me": "Chan fhaic ach an luchd-leantainn agam 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." "direct": "Chan fhaic ach an cleachdaiche air an dugadh iomradh am post seo."
},
"translation": {
"translated_from": "Translated from %s using %s",
"unknown_language": "Unknown",
"unknown_provider": "Unknown",
"show_original": "Shown Original"
} }
}, },
"friendship": { "friendship": {
@ -187,8 +206,8 @@
"unmute_user": "Dì-mhùch %s", "unmute_user": "Dì-mhùch %s",
"muted": "Ga mhùchadh", "muted": "Ga mhùchadh",
"edit_info": "Deasaich", "edit_info": "Deasaich",
"show_reblogs": "Show Reblogs", "show_reblogs": "Seall na brosnachaidhean",
"hide_reblogs": "Hide Reblogs" "hide_reblogs": "Falaich na brosnachaidhean"
}, },
"timeline": { "timeline": {
"filtered": "Criathraichte", "filtered": "Criathraichte",
@ -218,10 +237,16 @@
"get_started": "Dèan toiseach-tòiseachaidh", "get_started": "Dèan toiseach-tòiseachaidh",
"log_in": "Clàraich a-steach" "log_in": "Clàraich a-steach"
}, },
"login": {
"title": "Fàilte air ais",
"subtitle": "Clàraich a-steach air an fhrithealaiche far an do chruthaich thu an cunntas agad.",
"server_search_field": {
"placeholder": "Cuir a-steach URL an fhrithealaiche agad"
}
},
"server_picker": { "server_picker": {
"title": "Tha cleachdaichean Mhastodon air iomadh frithealaiche eadar-dhealaichte.", "title": "Tha cleachdaichean Mhastodon air iomadh frithealaiche eadar-dhealaichte.",
"subtitle": "Tagh frithealaiche stèidhichte air d ùidhean, air far a bheil thu no fear coitcheann.", "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.",
"subtitle_extend": "Tagh frithealaiche stèidhichte air d ùidhean, air far a bheil thu no fear coitcheann. Tha gach frithealaiche fo stiùireadh buidhinn no neach neo-eisimeilich fa leth.",
"button": { "button": {
"category": { "category": {
"all": "Na h-uile", "all": "Na h-uile",
@ -248,8 +273,7 @@
"category": "ROINN-SEÒRSA" "category": "ROINN-SEÒRSA"
}, },
"input": { "input": {
"placeholder": "Lorg frithealaiche", "search_servers_or_enter_url": "Lorg coimhearsnachd no cuir a-steach URL"
"search_servers_or_enter_url": "Lorg frithealaiche no cuir a-steach URL"
}, },
"empty_state": { "empty_state": {
"finding_servers": "A lorg nam frithealaichean ri am faighinn…", "finding_servers": "A lorg nam frithealaichean ri am faighinn…",
@ -383,10 +407,12 @@
"attachment_broken": "Seo %s a tha briste is cha ghabh\na luchdadh suas gu Mastodon.", "attachment_broken": "Seo %s a tha briste is cha ghabh\na luchdadh suas gu Mastodon.",
"description_photo": "Mìnich an dealbh dhan fheadhainn air a bheil cion-lèirsinne…", "description_photo": "Mìnich an dealbh dhan fheadhainn air a bheil cion-lèirsinne…",
"description_video": "Mìnich a video dhan fheadhainn air a bheil cion-lèirsinne…", "description_video": "Mìnich a video dhan fheadhainn air a bheil cion-lèirsinne…",
"load_failed": "Load Failed", "load_failed": "Dhfhàillig leis an luchdadh",
"upload_failed": "Upload Failed", "upload_failed": "Dhfhàillig leis an luchdadh suas",
"can_not_recognize_this_media_attachment": "Can not regonize this media attachment", "can_not_recognize_this_media_attachment": "Cha do dhaithnich sinn an ceanglachan meadhain seo",
"attachment_too_large": "Attachment too large" "attachment_too_large": "Tha an ceanglachan ro mhòr",
"compressing_state": "Ga dhùmhlachadh…",
"server_processing_state": "Tha am frithealaiche ga phròiseasadh…"
}, },
"poll": { "poll": {
"duration_time": "Faide: %s", "duration_time": "Faide: %s",
@ -396,7 +422,9 @@
"one_day": "Latha", "one_day": "Latha",
"three_days": "3 làithean", "three_days": "3 làithean",
"seven_days": "Seachdain", "seven_days": "Seachdain",
"option_number": "Roghainn %ld" "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"
}, },
"content_warning": { "content_warning": {
"placeholder": "Sgrìobh rabhadh pongail an-seo…" "placeholder": "Sgrìobh rabhadh pongail an-seo…"
@ -417,7 +445,9 @@
"custom_emoji_picker": "Roghnaichear nan Emoji gnàthaichte", "custom_emoji_picker": "Roghnaichear nan Emoji gnàthaichte",
"enable_content_warning": "Cuir rabhadh susbainte an comas", "enable_content_warning": "Cuir rabhadh susbainte an comas",
"disable_content_warning": "Cuir rabhadh susbainte à comas", "disable_content_warning": "Cuir rabhadh susbainte à comas",
"post_visibility_menu": "Clàr-taice faicsinneachd a phuist" "post_visibility_menu": "Clàr-taice faicsinneachd a phuist",
"post_options": "Roghainnean postaidh",
"posting_as": "A postadh mar %s"
}, },
"keyboard": { "keyboard": {
"discard_post": "Tilg air falbh am post", "discard_post": "Tilg air falbh am post",
@ -433,15 +463,23 @@
"follows_you": "Gad leantainn" "follows_you": "Gad leantainn"
}, },
"dashboard": { "dashboard": {
"posts": "postaichean", "my_posts": "posts",
"following": "a leantainn", "my_following": "following",
"followers": "luchd-leantainn" "my_followers": "followers",
"other_posts": "posts",
"other_following": "following",
"other_followers": "followers"
}, },
"fields": { "fields": {
"joined": "Joined",
"add_row": "Cuir ràgh ris", "add_row": "Cuir ràgh ris",
"placeholder": { "placeholder": {
"label": "Leubail", "label": "Leubail",
"content": "Susbaint" "content": "Susbaint"
},
"verified": {
"short": "Air a dhearbhadh %s",
"long": "Chaidh dearbhadh cò leis a tha an ceangal seo %s"
} }
}, },
"segmented_control": { "segmented_control": {
@ -469,12 +507,12 @@
"message": "Dearbh dì-bhacadh %s" "message": "Dearbh dì-bhacadh %s"
}, },
"confirm_show_reblogs": { "confirm_show_reblogs": {
"title": "Show Reblogs", "title": "Seall na brosnachaidhean",
"message": "Confirm to show reblogs" "message": "Dearbh sealladh nam brosnachaidhean"
}, },
"confirm_hide_reblogs": { "confirm_hide_reblogs": {
"title": "Hide Reblogs", "title": "Falaich na brosnachaidhean",
"message": "Confirm to hide reblogs" "message": "Dearbh falach nam brosnachaidhean"
} }
}, },
"accessibility": { "accessibility": {
@ -706,7 +744,19 @@
"accessibility_hint": "Thoir gnogag dhùbailte a leigeil seachad an draoidh seo" "accessibility_hint": "Thoir gnogag dhùbailte a leigeil seachad an draoidh seo"
}, },
"bookmark": { "bookmark": {
"title": "Bookmarks" "title": "Comharran-lìn"
},
"followed_tags": {
"title": "Followed Tags",
"header": {
"posts": "posts",
"participants": "participants",
"posts_today": "posts today"
},
"actions": {
"follow": "Follow",
"unfollow": "Unfollow"
}
} }
} }
} }

View File

@ -50,6 +50,22 @@
<string>%ld caracteres</string> <string>%ld caracteres</string>
</dict> </dict>
</dict> </dict>
<key>a11y.plural.count.characters_left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@character_count@ restantes</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 caracteres</string>
</dict>
</dict>
<key>plural.count.followed_by_and_mutual</key> <key>plural.count.followed_by_and_mutual</key>
<dict> <dict>
<key>NSStringLocalizedFormatKey</key> <key>NSStringLocalizedFormatKey</key>

View File

@ -51,6 +51,11 @@
"clean_cache": { "clean_cache": {
"title": "Limpar caché", "title": "Limpar caché",
"message": "Baleirouse %s da caché correctamente." "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"
} }
}, },
"controls": { "controls": {
@ -75,9 +80,10 @@
"save_photo": "Gardar foto", "save_photo": "Gardar foto",
"copy_photo": "Copiar foto", "copy_photo": "Copiar foto",
"sign_in": "Acceder", "sign_in": "Acceder",
"sign_up": "Inscribirse", "sign_up": "Crear conta",
"see_more": "Ver máis", "see_more": "Ver máis",
"preview": "Vista previa", "preview": "Vista previa",
"copy": "Copiar",
"share": "Compartir", "share": "Compartir",
"share_user": "Compartir %s", "share_user": "Compartir %s",
"share_post": "Compartir publicación", "share_post": "Compartir publicación",
@ -91,12 +97,16 @@
"block_domain": "Bloquear a %s", "block_domain": "Bloquear a %s",
"unblock_domain": "Desbloquear a %s", "unblock_domain": "Desbloquear a %s",
"settings": "Axustes", "settings": "Axustes",
"delete": "Eliminar" "delete": "Eliminar",
"translate_post": {
"title": "Traducido do %s",
"unknown_language": "Descoñecido"
}
}, },
"tabs": { "tabs": {
"home": "Inicio", "home": "Inicio",
"search": "Busca", "search_and_explore": "Buscar e Explorar",
"notification": "Notificación", "notifications": "Notificacións",
"profile": "Perfil" "profile": "Perfil"
}, },
"keyboard": { "keyboard": {
@ -132,6 +142,8 @@
"sensitive_content": "Contido sensible", "sensitive_content": "Contido sensible",
"media_content_warning": "Toca nalgures para mostrar", "media_content_warning": "Toca nalgures para mostrar",
"tap_to_reveal": "Toca para mostrar", "tap_to_reveal": "Toca para mostrar",
"load_embed": "Cargar o contido",
"link_via_user": "%s vía %s",
"poll": { "poll": {
"vote": "Votar", "vote": "Votar",
"closed": "Pechada" "closed": "Pechada"
@ -153,6 +165,7 @@
"show_image": "Mostrar a imaxe", "show_image": "Mostrar a imaxe",
"show_gif": "Mostrar GIF", "show_gif": "Mostrar GIF",
"show_video_player": "Mostrar reprodutor de vídeo", "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ú" "tap_then_hold_to_show_menu": "Toca e mantén preso para menú"
}, },
"tag": { "tag": {
@ -168,6 +181,12 @@
"private": "Só as seguidoras poden ver a publicación.", "private": "Só as seguidoras poden ver a publicación.",
"private_from_me": "Só as miñas seguidoras poden ver esta 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." "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"
} }
}, },
"friendship": { "friendship": {
@ -218,10 +237,16 @@
"get_started": "Crear conta", "get_started": "Crear conta",
"log_in": "Acceder" "log_in": "Acceder"
}, },
"login": {
"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": { "server_picker": {
"title": "Mastodon fórmano as persoas das diferentes comunidades.", "title": "Mastodon fórmano as persoas das diferentes comunidades.",
"subtitle": "Elixe unha comunidade en función dos teus intereses, rexión ou unha de propósito xeral.", "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.",
"subtitle_extend": "Elixe unha comunidade en función dos teus intereses, rexión ou unha de propósito xeral. Cada comunidade está xestionada por unha organización totalmente independente ou unha única persoa.",
"button": { "button": {
"category": { "category": {
"all": "Todo", "all": "Todo",
@ -248,8 +273,7 @@
"category": "CATEGORÍA" "category": "CATEGORÍA"
}, },
"input": { "input": {
"placeholder": "Buscar comunidades", "search_servers_or_enter_url": "Busca comunidades ou escribe URL"
"search_servers_or_enter_url": "Busca un servidor ou escribe URL"
}, },
"empty_state": { "empty_state": {
"finding_servers": "Buscando servidores dispoñibles...", "finding_servers": "Buscando servidores dispoñibles...",
@ -386,7 +410,9 @@
"load_failed": "Fallou a carga", "load_failed": "Fallou a carga",
"upload_failed": "Erro na subida", "upload_failed": "Erro na subida",
"can_not_recognize_this_media_attachment": "Non se recoñece o tipo de multimedia", "can_not_recognize_this_media_attachment": "Non se recoñece o tipo de multimedia",
"attachment_too_large": "Adxunto demasiado grande" "attachment_too_large": "Adxunto demasiado grande",
"compressing_state": "Comprimindo...",
"server_processing_state": "Procesando no servidor..."
}, },
"poll": { "poll": {
"duration_time": "Duración: %s", "duration_time": "Duración: %s",
@ -396,7 +422,9 @@
"one_day": "1 Día", "one_day": "1 Día",
"three_days": "3 Días", "three_days": "3 Días",
"seven_days": "7 Días", "seven_days": "7 Días",
"option_number": "Opción %ld" "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"
}, },
"content_warning": { "content_warning": {
"placeholder": "Escribe o teu aviso aquí..." "placeholder": "Escribe o teu aviso aquí..."
@ -417,7 +445,9 @@
"custom_emoji_picker": "Selector emoji personalizado", "custom_emoji_picker": "Selector emoji personalizado",
"enable_content_warning": "Marcar con Aviso sobre o contido", "enable_content_warning": "Marcar con Aviso sobre o contido",
"disable_content_warning": "Retirar Aviso sobre o contido", "disable_content_warning": "Retirar Aviso sobre o contido",
"post_visibility_menu": "Visibilidade da publicación" "post_visibility_menu": "Visibilidade da publicación",
"post_options": "Opcións da publicación",
"posting_as": "Publicando como %s"
}, },
"keyboard": { "keyboard": {
"discard_post": "Descartar publicación", "discard_post": "Descartar publicación",
@ -433,15 +463,23 @@
"follows_you": "Séguete" "follows_you": "Séguete"
}, },
"dashboard": { "dashboard": {
"posts": "publicacións", "my_posts": "publicacións",
"following": "seguindo", "my_following": "seguindo",
"followers": "seguidoras" "my_followers": "seguidoras",
"other_posts": "publicacións",
"other_following": "seguindo",
"other_followers": "seguidoras"
}, },
"fields": { "fields": {
"joined": "Uniuse",
"add_row": "Engadir fila", "add_row": "Engadir fila",
"placeholder": { "placeholder": {
"label": "Etiqueta", "label": "Etiqueta",
"content": "Contido" "content": "Contido"
},
"verified": {
"short": "Verificada en %s",
"long": "A propiedade desta ligazón foi verificada o %s"
} }
}, },
"segmented_control": { "segmented_control": {
@ -707,6 +745,18 @@
}, },
"bookmark": { "bookmark": {
"title": "Marcadores" "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"
}
} }
} }
} }

View File

@ -0,0 +1,581 @@
<?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@ left</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>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.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>

View File

@ -0,0 +1,762 @@
{
"common": {
"alerts": {
"common": {
"please_try_again": "Please try again.",
"please_try_again_later": "Please try again later."
},
"sign_up_failure": {
"title": "Sign Up Failure"
},
"server_error": {
"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.",
"attachments_message": {
"video_attach_with_photo": "Cannot attach a video to a post that already contains images.",
"more_than_one_video": "Cannot attach more than one video."
}
},
"edit_profile_failure": {
"title": "Edit Profile Error",
"message": "Cannot edit profile. Please try again."
},
"sign_out": {
"title": "Sign Out",
"message": "Are you sure you want to sign out?",
"confirm": "Sign Out"
},
"block_domain": {
"title": "Are you really, really sure you want to block the entire %s? In most cases a few targeted blocks or mutes are sufficient and preferable. You will not see content from that domain and any of your followers from that domain will be removed.",
"block_entire_domain": "Block Domain"
},
"save_photo_failure": {
"title": "Save Photo Failure",
"message": "Please enable the photo library access permission to save the photo."
},
"delete_post": {
"title": "Delete Post",
"message": "Are you sure you want to delete this post?"
},
"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"
}
},
"controls": {
"actions": {
"back": "Back",
"next": "הבא",
"previous": "הקודם",
"open": "Open",
"add": "Add",
"remove": "Remove",
"edit": "Edit",
"save": "Save",
"ok": "OK",
"done": "Done",
"confirm": "Confirm",
"continue": "Continue",
"compose": "Compose",
"cancel": "Cancel",
"discard": "Discard",
"try_again": "Try Again",
"take_photo": "Take Photo",
"save_photo": "Save Photo",
"copy_photo": "Copy Photo",
"sign_in": "Log in",
"sign_up": "יצירת חשבון",
"see_more": "See More",
"preview": "Preview",
"copy": "Copy",
"share": "Share",
"share_user": "Share %s",
"share_post": "Share Post",
"open_in_safari": "Open in Safari",
"open_in_browser": "Open in Browser",
"find_people": "Find people to follow",
"manually_search": "Manually search instead",
"skip": "Skip",
"reply": "Reply",
"report_user": "Report %s",
"block_domain": "חסימת %s",
"unblock_domain": "הסרת חסימה מ־%s",
"settings": "הגדרות",
"delete": "Delete",
"translate_post": {
"title": "Translate from %s",
"unknown_language": "Unknown"
}
},
"tabs": {
"home": "Home",
"search_and_explore": "Search and Explore",
"notifications": "Notifications",
"profile": "פרופיל"
},
"keyboard": {
"common": {
"switch_to_tab": "Switch to %s",
"compose_new_post": "Compose New Post",
"show_favorites": "Show Favorites",
"open_settings": "Open Settings"
},
"timeline": {
"previous_status": "Previous Post",
"next_status": "Next Post",
"open_status": "Open Post",
"open_author_profile": "Open Author's Profile",
"open_reblogger_profile": "Open Reblogger's Profile",
"reply_status": "Reply to Post",
"toggle_reblog": "Toggle Reblog on Post",
"toggle_favorite": "Toggle Favorite on Post",
"toggle_content_warning": "Toggle Content Warning",
"preview_image": "Preview Image"
},
"segmented_control": {
"previous_section": "Previous Section",
"next_section": "Next Section"
}
},
"status": {
"user_reblogged": "%s reblogged",
"user_replied_to": "Replied to %s",
"show_post": "Show Post",
"show_user_profile": "Show user profile",
"content_warning": "Content Warning",
"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"
},
"meta_entity": {
"url": "Link: %s",
"hashtag": "Hashtag: %s",
"mention": "Show Profile: %s",
"email": "Email address: %s"
},
"actions": {
"reply": "תגובה",
"reblog": "Reblog",
"unreblog": "Undo reblog",
"favorite": "Favorite",
"unfavorite": "Unfavorite",
"menu": "Menu",
"hide": "Hide",
"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"
},
"tag": {
"url": "URL",
"mention": "Mention",
"link": "Link",
"hashtag": "Hashtag",
"email": "Email",
"emoji": "Emoji"
},
"visibility": {
"unlisted": "Everyone can see this post but not display in the public timeline.",
"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": "Shown Original"
}
},
"friendship": {
"follow": "Follow",
"following": "Following",
"request": "Request",
"pending": "Pending",
"block": "Block",
"block_user": "Block %s",
"block_domain": "Block %s",
"unblock": "Unblock",
"unblock_user": "Unblock %s",
"blocked": "Blocked",
"mute": "Mute",
"mute_user": "Mute %s",
"unmute": "Unmute",
"unmute_user": "Unmute %s",
"muted": "Muted",
"edit_info": "Edit Info",
"show_reblogs": "Show Reblogs",
"hide_reblogs": "Hide Reblogs"
},
"timeline": {
"filtered": "Filtered",
"timestamp": {
"now": "Now"
},
"loader": {
"load_missing_posts": "Load missing posts",
"loading_missing_posts": "Loading missing posts...",
"show_more_replies": "Show more replies"
},
"header": {
"no_status_found": "No Post Found",
"blocking_warning": "You cant view this user's profile\nuntil you unblock them.\nYour profile looks like this to them.",
"user_blocking_warning": "You cant view %ss profile\nuntil you unblock them.\nYour profile looks like this to them.",
"blocked_warning": "You cant view this users profile\nuntil they unblock you.",
"user_blocked_warning": "You cant view %ss profile\nuntil they unblock you.",
"suspended_warning": "This user has been suspended.",
"user_suspended_warning": "%ss account has been suspended."
}
}
}
},
"scene": {
"welcome": {
"slogan": "Social networking\nback in your hands.",
"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"
}
},
"server_picker": {
"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": {
"category": {
"all": "All",
"all_accessiblity_description": "Category: All",
"academia": "academia",
"activism": "אקטיביזם",
"food": "אוכל",
"furry": "furry",
"games": "משחקים",
"general": "כללי",
"journalism": "journalism",
"lgbt": "להט\"ב",
"regional": "regional",
"art": "אומנות",
"music": "מוזיקה",
"tech": "tech"
},
"see_less": "See Less",
"see_more": "See More"
},
"label": {
"language": "LANGUAGE",
"users": "USERS",
"category": "CATEGORY"
},
"input": {
"search_servers_or_enter_url": "Search communities or enter URL"
},
"empty_state": {
"finding_servers": "Finding available servers...",
"bad_network": "Something went wrong while loading the data. Check your internet connection.",
"no_results": "No results"
}
},
"register": {
"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": "שם משתמש/ת",
"duplicate_prompt": "This username is taken."
},
"display_name": {
"placeholder": "שם תצוגה"
},
"email": {
"placeholder": "דוא״ל"
},
"password": {
"placeholder": "סיסמה",
"require": "Your password needs at least:",
"character_limit": "8 characters",
"accessibility": {
"checked": "checked",
"unchecked": "unchecked"
},
"hint": "Your password needs at least eight characters"
},
"invite": {
"registration_user_invite_request": "Why do you want to join?"
}
},
"error": {
"item": {
"username": "שם משתמש/ת",
"email": "דוא״ל",
"password": "סיסמה",
"agreement": "Agreement",
"locale": "Locale",
"reason": "Reason"
},
"reason": {
"blocked": "%s contains a disallowed email provider",
"unreachable": "%s does not seem to exist",
"taken": "%s is already in use",
"reserved": "%s is a reserved keyword",
"accepted": "%s must be accepted",
"blank": "%s is required",
"invalid": "%s is invalid",
"too_long": "%s is too long",
"too_short": "%s is too short",
"inclusion": "%s is not a supported value"
},
"special": {
"username_invalid": "Username must only contain alphanumeric characters and underscores",
"username_too_long": "Username is too long (cant be longer than 30 characters)",
"email_invalid": "This is not a valid email address",
"password_too_short": "Password is too short (must be at least 8 characters)"
}
}
},
"server_rules": {
"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"
}
},
"confirm_email": {
"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",
"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.",
"description": "We just sent you an email. Check your junk folder if you havent.",
"mail": "Mail",
"open_email_client": "Open Email Client"
}
},
"home_timeline": {
"title": "Home",
"navigation_bar_state": {
"offline": "Offline",
"new_posts": "See new posts",
"published": "Published!",
"Publishing": "Publishing post...",
"accessibility": {
"logo_label": "Logo Button",
"logo_hint": "Tap to scroll to top and tap again to previous location"
}
}
},
"suggestion_account": {
"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"
},
"media_selection": {
"camera": "Take Photo",
"photo_library": "Photo Library",
"browse": "Browse"
},
"content_input_placeholder": "Type or paste whats on your mind",
"compose_action": "Publish",
"replying_to_user": "replying to %s",
"attachment": {
"photo": "photo",
"video": "video",
"attachment_broken": "This %s is broken and cant be\nuploaded to Mastodon.",
"description_photo": "Describe the photo for the visually-impaired...",
"description_video": "Describe the video for the visually-impaired...",
"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": {
"duration_time": "Duration: %s",
"thirty_minutes": "חצי שעה",
"one_hour": "שעה",
"six_hours": "6 שעות",
"one_day": "יום אחד",
"three_days": "3 ימים",
"seven_days": "7 ימים",
"option_number": "Option %ld",
"the_poll_is_invalid": "The poll is invalid",
"the_poll_has_empty_option": "The poll has empty option"
},
"content_warning": {
"placeholder": "Write an accurate warning here..."
},
"visibility": {
"public": "Public",
"unlisted": "Unlisted",
"private": "לעוקבים בלבד",
"direct": "Only people I mention"
},
"auto_complete": {
"space_to_add": "Space to add"
},
"accessibility": {
"append_attachment": "Add Attachment",
"append_poll": "Add Poll",
"remove_poll": "Remove Poll",
"custom_emoji_picker": "Custom Emoji Picker",
"enable_content_warning": "Enable Content Warning",
"disable_content_warning": "Disable Content Warning",
"post_visibility_menu": "Post Visibility Menu",
"post_options": "Post Options",
"posting_as": "Posting as %s"
},
"keyboard": {
"discard_post": "Discard Post",
"publish_post": "Publish Post",
"toggle_poll": "Toggle Poll",
"toggle_content_warning": "Toggle Content Warning",
"append_attachment_entry": "Add Attachment - %s",
"select_visibility_entry": "Select Visibility - %s"
}
},
"profile": {
"header": {
"follows_you": "Follows You"
},
"dashboard": {
"my_posts": "posts",
"my_following": "following",
"my_followers": "followers",
"other_posts": "posts",
"other_following": "following",
"other_followers": "followers"
},
"fields": {
"joined": "Joined",
"add_row": "Add Row",
"placeholder": {
"label": "Label",
"content": "Content"
},
"verified": {
"short": "Verified on %s",
"long": "Ownership of this link was checked on %s"
}
},
"segmented_control": {
"posts": "Posts",
"replies": "Replies",
"posts_and_replies": "Posts and Replies",
"media": "Media",
"about": "About"
},
"relationship_action_alert": {
"confirm_mute_user": {
"title": "Mute Account",
"message": "Confirm to mute %s"
},
"confirm_unmute_user": {
"title": "Unmute Account",
"message": "Confirm to unmute %s"
},
"confirm_block_user": {
"title": "Block Account",
"message": "Confirm to block %s"
},
"confirm_unblock_user": {
"title": "Unblock Account",
"message": "Confirm to unblock %s"
},
"confirm_show_reblogs": {
"title": "Show Reblogs",
"message": "Confirm to show reblogs"
},
"confirm_hide_reblogs": {
"title": "Hide Reblogs",
"message": "Confirm to hide reblogs"
}
},
"accessibility": {
"show_avatar_image": "Show avatar image",
"edit_avatar_image": "Edit avatar image",
"show_banner_image": "Show banner image",
"double_tap_to_open_the_list": "Double tap to open the list"
}
},
"follower": {
"title": "follower",
"footer": "Followers from other servers are not displayed."
},
"following": {
"title": "following",
"footer": "Follows from other servers are not displayed."
},
"familiarFollowers": {
"title": "Followers you familiar",
"followed_by_names": "Followed by %s"
},
"favorited_by": {
"title": "Favorited By"
},
"reblogged_by": {
"title": "Reblogged By"
},
"search": {
"title": "Search",
"search_bar": {
"placeholder": "Search hashtags and users",
"cancel": "Cancel"
},
"recommend": {
"button_text": "See All",
"hash_tag": {
"title": "Trending on Mastodon",
"description": "Hashtags that are getting quite a bit of attention",
"people_talking": "%s people are talking"
},
"accounts": {
"title": "Accounts you might like",
"description": "You may like to follow these accounts",
"follow": "Follow"
}
},
"searching": {
"segment": {
"all": "All",
"people": "People",
"hashtags": "Hashtags",
"posts": "Posts"
},
"empty_state": {
"no_results": "No results"
},
"recent_search": "Recent searches",
"clear": "Clear"
}
},
"discovery": {
"tabs": {
"posts": "Posts",
"hashtags": "Hashtags",
"news": "News",
"community": "Community",
"for_you": "For You"
},
"intro": "These are the posts gaining traction in your corner of Mastodon."
},
"favorite": {
"title": "Your Favorites"
},
"notification": {
"title": {
"Everything": "Everything",
"Mentions": "Mentions"
},
"notification_description": {
"followed_you": "followed you",
"favorited_your_post": "favorited your post",
"reblogged_your_post": "reblogged your post",
"mentioned_you": "mentioned you",
"request_to_follow_you": "request to follow you",
"poll_has_ended": "poll has ended"
},
"keyobard": {
"show_everything": "Show Everything",
"show_mentions": "Show Mentions"
},
"follow_request": {
"accept": "Accept",
"accepted": "Accepted",
"reject": "reject",
"rejected": "Rejected"
}
},
"thread": {
"back_title": "Post",
"title": "Post from %s"
},
"settings": {
"title": "Settings",
"section": {
"appearance": {
"title": "Appearance",
"automatic": "Automatic",
"light": "Always Light",
"dark": "Always Dark"
},
"look_and_feel": {
"title": "Look and Feel",
"use_system": "Use System",
"really_dark": "Really Dark",
"sorta_dark": "Sorta Dark",
"light": "Light"
},
"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"
}
},
"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"
},
"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"
}
},
"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": {
"title_report": "Report",
"title": "Report %s",
"step1": "Step 1 of 2",
"step2": "Step 2 of 2",
"content1": "Are there any other posts youd like to add to the report?",
"content2": "Is there anything the moderators should know about this report?",
"report_sent_title": "Thanks for reporting, well look into this.",
"send": "Send Report",
"skip_to_send": "Send without comment",
"text_placeholder": "Type or paste additional comments",
"reported": "REPORTED",
"step_one": {
"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": "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": "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": "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": "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": "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": {
"keyboard": {
"close_preview": "Close Preview",
"show_next": "Show Next",
"show_previous": "Show Previous"
}
},
"account_list": {
"tab_bar_hint": "Current selected profile: %s. Double tap then hold to show account switcher",
"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"
}
}
}
}

View File

@ -0,0 +1,6 @@
{
"NSCameraUsageDescription": "Used to take photo for post status",
"NSPhotoLibraryAddUsageDescription": "Used to save photo into the Photo Library",
"NewPostShortcutItemTitle": "New Post",
"SearchShortcutItemTitle": "Search"
}

View File

@ -15,7 +15,7 @@
<key>one</key> <key>one</key>
<string>1 unread notification</string> <string>1 unread notification</string>
<key>other</key> <key>other</key>
<string>%ld unread notification</string> <string>%ld unread notifications</string>
</dict> </dict>
</dict> </dict>
<key>a11y.plural.count.input_limit_exceeds</key> <key>a11y.plural.count.input_limit_exceeds</key>
@ -50,6 +50,22 @@
<string>%ld characters</string> <string>%ld characters</string>
</dict> </dict>
</dict> </dict>
<key>a11y.plural.count.characters_left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@character_count@ left</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>other</key>
<string>%ld characters</string>
</dict>
</dict>
<key>plural.count.followed_by_and_mutual</key> <key>plural.count.followed_by_and_mutual</key>
<dict> <dict>
<key>NSStringLocalizedFormatKey</key> <key>NSStringLocalizedFormatKey</key>

View File

@ -51,6 +51,11 @@
"clean_cache": { "clean_cache": {
"title": "Clean Cache", "title": "Clean Cache",
"message": "Successfully cleaned %s 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"
} }
}, },
"controls": { "controls": {
@ -74,10 +79,11 @@
"take_photo": "Take Photo", "take_photo": "Take Photo",
"save_photo": "Save Photo", "save_photo": "Save Photo",
"copy_photo": "Copy Photo", "copy_photo": "Copy Photo",
"sign_in": "Sign In", "sign_in": "Log in",
"sign_up": "Sign Up", "sign_up": "Create account",
"see_more": "See More", "see_more": "See More",
"preview": "Preview", "preview": "Preview",
"copy": "Copy",
"share": "Share", "share": "Share",
"share_user": "Share %s", "share_user": "Share %s",
"share_post": "Share Post", "share_post": "Share Post",
@ -91,12 +97,16 @@
"block_domain": "Block %s", "block_domain": "Block %s",
"unblock_domain": "Unblock %s", "unblock_domain": "Unblock %s",
"settings": "Settings", "settings": "Settings",
"delete": "Delete" "delete": "Delete",
"translate_post": {
"title": "Translate from %s",
"unknown_language": "Unknown"
}
}, },
"tabs": { "tabs": {
"home": "Home", "home": "Home",
"search": "Search", "search_and_explore": "Search and Explore",
"notification": "Notification", "notifications": "Notifications",
"profile": "Profile" "profile": "Profile"
}, },
"keyboard": { "keyboard": {
@ -132,6 +142,8 @@
"sensitive_content": "Sensitive Content", "sensitive_content": "Sensitive Content",
"media_content_warning": "Tap anywhere to reveal", "media_content_warning": "Tap anywhere to reveal",
"tap_to_reveal": "Tap to reveal", "tap_to_reveal": "Tap to reveal",
"load_embed": "Load Embed",
"link_via_user": "%s via %s",
"poll": { "poll": {
"vote": "Vote", "vote": "Vote",
"closed": "Closed" "closed": "Closed"
@ -153,6 +165,7 @@
"show_image": "Show image", "show_image": "Show image",
"show_gif": "Show GIF", "show_gif": "Show GIF",
"show_video_player": "Show video player", "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" "tap_then_hold_to_show_menu": "Tap then hold to show menu"
}, },
"tag": { "tag": {
@ -168,6 +181,12 @@
"private": "Only their followers can see this post.", "private": "Only their followers can see this post.",
"private_from_me": "Only my followers can see this post.", "private_from_me": "Only my followers can see this post.",
"direct": "Only mentioned user 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": "Shown Original"
} }
}, },
"friendship": { "friendship": {
@ -218,10 +237,16 @@
"get_started": "Get Started", "get_started": "Get Started",
"log_in": "Log In" "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"
}
},
"server_picker": { "server_picker": {
"title": "Mastodon is made of users in different servers.", "title": "Mastodon is made of users in different servers.",
"subtitle": "Pick a server based on your interests, region, or a general purpose one.", "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.",
"subtitle_extend": "Pick a server based on your interests, region, or a general purpose one. Each server is operated by an entirely independent organization or individual.",
"button": { "button": {
"category": { "category": {
"all": "All", "all": "All",
@ -248,8 +273,7 @@
"category": "CATEGORY" "category": "CATEGORY"
}, },
"input": { "input": {
"placeholder": "Search servers", "search_servers_or_enter_url": "Search communities or enter URL"
"search_servers_or_enter_url": "Search servers or enter URL"
}, },
"empty_state": { "empty_state": {
"finding_servers": "Finding available servers...", "finding_servers": "Finding available servers...",
@ -385,8 +409,10 @@
"description_video": "Describe the video for the visually-impaired...", "description_video": "Describe the video for the visually-impaired...",
"load_failed": "Load Failed", "load_failed": "Load Failed",
"upload_failed": "Upload Failed", "upload_failed": "Upload Failed",
"can_not_recognize_this_media_attachment": "Can not regonize this media attachment", "can_not_recognize_this_media_attachment": "Can not recognize this media attachment",
"attachment_too_large": "Attachment too large" "attachment_too_large": "Attachment too large",
"compressing_state": "Compressing...",
"server_processing_state": "Server Processing..."
}, },
"poll": { "poll": {
"duration_time": "Duration: %s", "duration_time": "Duration: %s",
@ -396,7 +422,9 @@
"one_day": "1 Day", "one_day": "1 Day",
"three_days": "3 Days", "three_days": "3 Days",
"seven_days": "7 Days", "seven_days": "7 Days",
"option_number": "Option %ld" "option_number": "Option %ld",
"the_poll_is_invalid": "The poll is invalid",
"the_poll_has_empty_option": "The poll has empty option"
}, },
"content_warning": { "content_warning": {
"placeholder": "Write an accurate warning here..." "placeholder": "Write an accurate warning here..."
@ -417,7 +445,9 @@
"custom_emoji_picker": "Custom Emoji Picker", "custom_emoji_picker": "Custom Emoji Picker",
"enable_content_warning": "Enable Content Warning", "enable_content_warning": "Enable Content Warning",
"disable_content_warning": "Disable Content Warning", "disable_content_warning": "Disable Content Warning",
"post_visibility_menu": "Post Visibility Menu" "post_visibility_menu": "Post Visibility Menu",
"post_options": "Post Options",
"posting_as": "Posting as %s"
}, },
"keyboard": { "keyboard": {
"discard_post": "Discard Post", "discard_post": "Discard Post",
@ -433,15 +463,23 @@
"follows_you": "Follows You" "follows_you": "Follows You"
}, },
"dashboard": { "dashboard": {
"posts": "posts", "my_posts": "posts",
"following": "following", "my_following": "following",
"followers": "followers" "my_followers": "followers",
"other_posts": "posts",
"other_following": "following",
"other_followers": "followers"
}, },
"fields": { "fields": {
"joined": "Joined",
"add_row": "Add Row", "add_row": "Add Row",
"placeholder": { "placeholder": {
"label": "Label", "label": "Label",
"content": "Content" "content": "Content"
},
"verified": {
"short": "Verified on %s",
"long": "Ownership of this link was checked on %s"
} }
}, },
"segmented_control": { "segmented_control": {
@ -707,6 +745,18 @@
}, },
"bookmark": { "bookmark": {
"title": "Bookmarks" "title": "Bookmarks"
},
"followed_tags": {
"title": "Followed Tags",
"header": {
"posts": "posts",
"participants": "participants",
"posts_today": "posts today"
},
"actions": {
"follow": "Follow",
"unfollow": "Unfollow"
}
} }
} }
} }

View File

@ -13,13 +13,13 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>other</key> <key>other</key>
<string>%ld unread notification</string> <string>%ld notifikasi belum dibaca</string>
</dict> </dict>
</dict> </dict>
<key>a11y.plural.count.input_limit_exceeds</key> <key>a11y.plural.count.input_limit_exceeds</key>
<dict> <dict>
<key>NSStringLocalizedFormatKey</key> <key>NSStringLocalizedFormatKey</key>
<string>Input limit exceeds %#@character_count@</string> <string>Batas input melebihi %#@character_count@</string>
<key>character_count</key> <key>character_count</key>
<dict> <dict>
<key>NSStringFormatSpecTypeKey</key> <key>NSStringFormatSpecTypeKey</key>
@ -33,7 +33,21 @@
<key>a11y.plural.count.input_limit_remains</key> <key>a11y.plural.count.input_limit_remains</key>
<dict> <dict>
<key>NSStringLocalizedFormatKey</key> <key>NSStringLocalizedFormatKey</key>
<string>Input limit remains %#@character_count@</string> <string>Batas input masih tersisa %#@character_count@</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>other</key>
<string>%ld karakter</string>
</dict>
</dict>
<key>a11y.plural.count.characters_left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>tersisa %#@character_count@</string>
<key>character_count</key> <key>character_count</key>
<dict> <dict>
<key>NSStringFormatSpecTypeKey</key> <key>NSStringFormatSpecTypeKey</key>
@ -64,7 +78,7 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>other</key> <key>other</key>
<string>Followed by %1$@, and %ld mutuals</string> <string>Diikuti oleh %1$@, dan %ld mutual</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.metric_formatted.post</key> <key>plural.count.metric_formatted.post</key>
@ -134,7 +148,7 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>other</key> <key>other</key>
<string>%ld reblogs</string> <string>Posting ulang %ld</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.reply</key> <key>plural.count.reply</key>
@ -148,7 +162,7 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>other</key> <key>other</key>
<string>%ld replies</string> <string>%ld balasan</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.vote</key> <key>plural.count.vote</key>
@ -190,7 +204,7 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>other</key> <key>other</key>
<string>%ld people talking</string> <string>%ld obrolan</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.following</key> <key>plural.count.following</key>
@ -204,7 +218,7 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>other</key> <key>other</key>
<string>%ld following</string> <string>%ld mengikuti</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.follower</key> <key>plural.count.follower</key>

View File

@ -51,6 +51,11 @@
"clean_cache": { "clean_cache": {
"title": "Bersihkan Cache", "title": "Bersihkan Cache",
"message": "Berhasil menghapus %s cache." "message": "Berhasil menghapus %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"
} }
}, },
"controls": { "controls": {
@ -75,9 +80,10 @@
"save_photo": "Simpan Foto", "save_photo": "Simpan Foto",
"copy_photo": "Salin Foto", "copy_photo": "Salin Foto",
"sign_in": "Masuk", "sign_in": "Masuk",
"sign_up": "Daftar", "sign_up": "Buat akun",
"see_more": "Lihat lebih banyak", "see_more": "Lihat lebih banyak",
"preview": "Pratinjau", "preview": "Pratinjau",
"copy": "Copy",
"share": "Bagikan", "share": "Bagikan",
"share_user": "Bagikan %s", "share_user": "Bagikan %s",
"share_post": "Bagikan Postingan", "share_post": "Bagikan Postingan",
@ -91,12 +97,16 @@
"block_domain": "Blokir %s", "block_domain": "Blokir %s",
"unblock_domain": "Berhenti memblokir %s", "unblock_domain": "Berhenti memblokir %s",
"settings": "Pengaturan", "settings": "Pengaturan",
"delete": "Hapus" "delete": "Hapus",
"translate_post": {
"title": "Translate from %s",
"unknown_language": "Unknown"
}
}, },
"tabs": { "tabs": {
"home": "Beranda", "home": "Beranda",
"search": "Cari", "search_and_explore": "Search and Explore",
"notification": "Notifikasi", "notifications": "Notifikasi",
"profile": "Profil" "profile": "Profil"
}, },
"keyboard": { "keyboard": {
@ -129,31 +139,34 @@
"show_post": "Tampilkan Postingan", "show_post": "Tampilkan Postingan",
"show_user_profile": "Tampilkan Profil Pengguna", "show_user_profile": "Tampilkan Profil Pengguna",
"content_warning": "Peringatan Konten", "content_warning": "Peringatan Konten",
"sensitive_content": "Sensitive Content", "sensitive_content": "Konten Sensitif",
"media_content_warning": "Ketuk di mana saja untuk melihat", "media_content_warning": "Ketuk di mana saja untuk melihat",
"tap_to_reveal": "Tap to reveal", "tap_to_reveal": "Ketuk untuk mengungkap",
"load_embed": "Load Embed",
"link_via_user": "%s via %s",
"poll": { "poll": {
"vote": "Vote", "vote": "Pilih",
"closed": "Ditutup" "closed": "Ditutup"
}, },
"meta_entity": { "meta_entity": {
"url": "Link: %s", "url": "Tautan: %s",
"hashtag": "Hashtag: %s", "hashtag": "Tagar: %s",
"mention": "Show Profile: %s", "mention": "Tampilkan Profile: %s",
"email": "Email address: %s" "email": "Alamat email: %s"
}, },
"actions": { "actions": {
"reply": "Balas", "reply": "Balas",
"reblog": "Reblog", "reblog": "Reblog",
"unreblog": "Undo reblog", "unreblog": "Batalkan reblog",
"favorite": "Favorit", "favorite": "Favorit",
"unfavorite": "Unfavorite", "unfavorite": "Batalkan favorit",
"menu": "Menu", "menu": "Menu",
"hide": "Hide", "hide": "Sembunyikan",
"show_image": "Show image", "show_image": "Tampilkan gambar",
"show_gif": "Show GIF", "show_gif": "Tampilkan GIF",
"show_video_player": "Show video player", "show_video_player": "Tampilkan pemutar video",
"tap_then_hold_to_show_menu": "Tap then hold to show menu" "share_link_in_post": "Share Link in Post",
"tap_then_hold_to_show_menu": "Ketuk lalu tahan untuk menampilkan menu"
}, },
"tag": { "tag": {
"url": "URL", "url": "URL",
@ -164,17 +177,23 @@
"emoji": "Emoji" "emoji": "Emoji"
}, },
"visibility": { "visibility": {
"unlisted": "Everyone can see this post but not display in the public timeline.", "unlisted": "Postingan ini dapat dilihat semua orang tetapi tidak ditampilkan di timeline publik.",
"private": "Only their followers can see this post.", "private": "Hanya pengikut mereka yang dapat melihat postingan ini.",
"private_from_me": "Only my followers can see this post.", "private_from_me": "Hanya pengikut saya yang dapat melihat postingan ini.",
"direct": "Only mentioned user can see this post." "direct": "Hanya pengguna yang disebut yang dapat melihat postingan ini."
},
"translation": {
"translated_from": "Translated from %s using %s",
"unknown_language": "Unknown",
"unknown_provider": "Unknown",
"show_original": "Shown Original"
} }
}, },
"friendship": { "friendship": {
"follow": "Ikuti", "follow": "Ikuti",
"following": "Mengikuti", "following": "Mengikuti",
"request": "Request", "request": "Minta",
"pending": "Pending", "pending": "Tertunda",
"block": "Blokir", "block": "Blokir",
"block_user": "Blokir %s", "block_user": "Blokir %s",
"block_domain": "Blokir %s", "block_domain": "Blokir %s",
@ -187,8 +206,8 @@
"unmute_user": "Berhenti membisukan %s", "unmute_user": "Berhenti membisukan %s",
"muted": "Dibisukan", "muted": "Dibisukan",
"edit_info": "Sunting Info", "edit_info": "Sunting Info",
"show_reblogs": "Show Reblogs", "show_reblogs": "Tampilkan Reblog",
"hide_reblogs": "Hide Reblogs" "hide_reblogs": "Sembunyikan Reblog"
}, },
"timeline": { "timeline": {
"filtered": "Tersaring", "filtered": "Tersaring",
@ -196,32 +215,38 @@
"now": "Sekarang" "now": "Sekarang"
}, },
"loader": { "loader": {
"load_missing_posts": "Load missing posts", "load_missing_posts": "Muat postingan yang hilang",
"loading_missing_posts": "Loading missing posts...", "loading_missing_posts": "Memuat postingan yang hilang...",
"show_more_replies": "Tampilkan lebih banyak balasan" "show_more_replies": "Tampilkan lebih banyak balasan"
}, },
"header": { "header": {
"no_status_found": "No Post Found", "no_status_found": "Tidak Ditemukan Postingan",
"blocking_warning": "You cant view this user's profile\nuntil you unblock them.\nYour profile looks like this to them.", "blocking_warning": "Anda tidak dapat melihat profil pengguna ini sampai Anda membuka blokir mereka.\nProfil Anda terlihat seperti ini bagi mereka.",
"user_blocking_warning": "You cant view %ss profile\nuntil you unblock them.\nYour profile looks like this to them.", "user_blocking_warning": "Anda tidak dapat melihat profil %s sampai Anda membuka blokir mereka.\nProfil Anda terlihat seperti ini bagi mereka.",
"blocked_warning": "You cant view this users profile\nuntil they unblock you.", "blocked_warning": "Anda tidak dapat melihat profil pengguna ini sampai mereka membuka blokir Anda.",
"user_blocked_warning": "You cant view %ss profile\nuntil they unblock you.", "user_blocked_warning": "Anda tidak dapat melihat profil %s sampai mereka membuka blokir Anda.",
"suspended_warning": "This user has been suspended.", "suspended_warning": "Pengguna ini telah ditangguhkan.",
"user_suspended_warning": "%ss account has been suspended." "user_suspended_warning": "Akun %s telah ditangguhkan."
} }
} }
} }
}, },
"scene": { "scene": {
"welcome": { "welcome": {
"slogan": "Social networking\nback in your hands.", "slogan": "Jejaring sosial dalam genggaman Anda.",
"get_started": "Get Started", "get_started": "Mulai",
"log_in": "Log In" "log_in": "Login"
},
"login": {
"title": "Selamat datang kembali",
"subtitle": "Masuklah pada server yang Anda buat di mana akun Anda berada.",
"server_search_field": {
"placeholder": "Masukkan URL atau pencarian di server Anda"
}
}, },
"server_picker": { "server_picker": {
"title": "Pilih sebuah server,\nserver manapun.", "title": "Pilih sebuah server,\nserver manapun.",
"subtitle": "Pick a server based on your interests, region, or a general purpose one.", "subtitle": "Pilih server berdasarkan agamamu, minat, atau subjek umum lainnya. Kamu masih bisa berkomunikasi dengan semua orang di Mastodon, tanpa memperdulikan server Anda.",
"subtitle_extend": "Pick a server based on your interests, region, or a general purpose one. Each server is operated by an entirely independent organization or individual.",
"button": { "button": {
"category": { "category": {
"all": "Semua", "all": "Semua",
@ -248,8 +273,7 @@
"category": "KATEGORI" "category": "KATEGORI"
}, },
"input": { "input": {
"placeholder": "Search servers", "search_servers_or_enter_url": "Cari komunitas atau masukkan URL"
"search_servers_or_enter_url": "Search servers or enter URL"
}, },
"empty_state": { "empty_state": {
"finding_servers": "Mencari server yang tersedia...", "finding_servers": "Mencari server yang tersedia...",
@ -259,7 +283,7 @@
}, },
"register": { "register": {
"title": "Beritahu kami tentang diri Anda.", "title": "Beritahu kami tentang diri Anda.",
"lets_get_you_set_up_on_domain": "Lets get you set up on %s", "lets_get_you_set_up_on_domain": "Mari kita siapkan Anda di %s",
"input": { "input": {
"avatar": { "avatar": {
"delete": "Hapus" "delete": "Hapus"
@ -269,18 +293,18 @@
"duplicate_prompt": "Nama pengguna ini sudah diambil." "duplicate_prompt": "Nama pengguna ini sudah diambil."
}, },
"display_name": { "display_name": {
"placeholder": "display name" "placeholder": "nama yang ditampilkan"
}, },
"email": { "email": {
"placeholder": "surel" "placeholder": "surel"
}, },
"password": { "password": {
"placeholder": "kata sandi", "placeholder": "kata sandi",
"require": "Your password needs at least:", "require": "Kata sandi Anda harus memiliki setidaknya:",
"character_limit": "8 characters", "character_limit": "8 karakter",
"accessibility": { "accessibility": {
"checked": "checked", "checked": "dicentang",
"unchecked": "unchecked" "unchecked": "tidak dicentang"
}, },
"hint": "Kata sandi Anda harus memiliki sekurang-kurangnya delapan karakter" "hint": "Kata sandi Anda harus memiliki sekurang-kurangnya delapan karakter"
}, },
@ -294,23 +318,23 @@
"email": "Surel", "email": "Surel",
"password": "Kata sandi", "password": "Kata sandi",
"agreement": "Persetujuan", "agreement": "Persetujuan",
"locale": "Locale", "locale": "Lokal",
"reason": "Alasan" "reason": "Alasan"
}, },
"reason": { "reason": {
"blocked": "%s mengandung penyedia surel yang dilarang", "blocked": "%s mengandung penyedia surel yang dilarang",
"unreachable": "%s sepertinya tidak ada", "unreachable": "%s sepertinya tidak ada",
"taken": "%s sudah digunakan", "taken": "%s sudah digunakan",
"reserved": "%s is a reserved keyword", "reserved": "%s adalah kata kunci yang dipesan",
"accepted": "%s harus diterima", "accepted": "%s harus diterima",
"blank": "%s diperlukan", "blank": "%s diperlukan",
"invalid": "%s tidak valid", "invalid": "%s tidak valid",
"too_long": "%s terlalu panjang", "too_long": "%s terlalu panjang",
"too_short": "%s terlalu pendek", "too_short": "%s terlalu pendek",
"inclusion": "%s is not a supported value" "inclusion": "%s bukan nilai yang didukung"
}, },
"special": { "special": {
"username_invalid": "Username must only contain alphanumeric characters and underscores", "username_invalid": "Nama pengguna hanya berisi angka karakter dan garis bawah",
"username_too_long": "Nama pengguna terlalu panjang (tidak boleh lebih dari 30 karakter)", "username_too_long": "Nama pengguna terlalu panjang (tidak boleh lebih dari 30 karakter)",
"email_invalid": "Ini bukan alamat surel yang valid", "email_invalid": "Ini bukan alamat surel yang valid",
"password_too_short": "Kata sandi terlalu pendek (harus sekurang-kurangnya 8 karakter)" "password_too_short": "Kata sandi terlalu pendek (harus sekurang-kurangnya 8 karakter)"
@ -320,7 +344,7 @@
"server_rules": { "server_rules": {
"title": "Beberapa aturan dasar.", "title": "Beberapa aturan dasar.",
"subtitle": "Peraturan ini ditetapkan oleh admin %s.", "subtitle": "Peraturan ini ditetapkan oleh admin %s.",
"prompt": "By continuing, youre subject to the terms of service and privacy policy for %s.", "prompt": "Dengan melanjutkan, Anda tunduk pada ketentuan layanan dan kebijakan privasi untuk %s.",
"terms_of_service": "kebijakan layanan", "terms_of_service": "kebijakan layanan",
"privacy_policy": "kebijakan privasi", "privacy_policy": "kebijakan privasi",
"button": { "button": {
@ -330,10 +354,10 @@
"confirm_email": { "confirm_email": {
"title": "Satu hal lagi.", "title": "Satu hal lagi.",
"subtitle": "Kami baru saja mengirim sebuah surel ke %s,\nketuk tautannya untuk mengkonfirmasi akun Anda.", "subtitle": "Kami baru saja mengirim sebuah surel ke %s,\nketuk tautannya untuk mengkonfirmasi akun Anda.",
"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": "Ketuk tautan yang kami kirimkan kepada Anda via email untuk memverifikasi akun Anda",
"button": { "button": {
"open_email_app": "Buka Aplikasi Surel", "open_email_app": "Buka Aplikasi Surel",
"resend": "Resend" "resend": "Kirim ulang"
}, },
"dont_receive_email": { "dont_receive_email": {
"title": "Periksa surel Anda", "title": "Periksa surel Anda",
@ -343,8 +367,8 @@
"open_email_app": { "open_email_app": {
"title": "Periksa kotak masuk Anda.", "title": "Periksa kotak masuk Anda.",
"description": "Kami baru saja mengirimkan Anda sebuah surel. Periksa folder junk Anda jika Anda belum memeriksanya.", "description": "Kami baru saja mengirimkan Anda sebuah surel. Periksa folder junk Anda jika Anda belum memeriksanya.",
"mail": "Mail", "mail": "Pesan",
"open_email_client": "Open Email Client" "open_email_client": "Buka Email Klien"
} }
}, },
"home_timeline": { "home_timeline": {
@ -355,24 +379,24 @@
"published": "Dipublikasikan!", "published": "Dipublikasikan!",
"Publishing": "Mempublikasikan postingan...", "Publishing": "Mempublikasikan postingan...",
"accessibility": { "accessibility": {
"logo_label": "Logo Button", "logo_label": "Tombol Logo",
"logo_hint": "Tap to scroll to top and tap again to previous location" "logo_hint": "Ketuk untuk menggulir ke atas dan ketuk lagi ke lokasi sebelumnya"
} }
} }
}, },
"suggestion_account": { "suggestion_account": {
"title": "Find People to Follow", "title": "Temukan Orang untuk Diikuti",
"follow_explain": "Ketika Anda mengikuti seseorang, Anda akan melihat postingan mereka di beranda Anda." "follow_explain": "Ketika Anda mengikuti seseorang, Anda akan melihat postingan mereka di beranda Anda."
}, },
"compose": { "compose": {
"title": { "title": {
"new_post": "Postingan Baru", "new_post": "Postingan Baru",
"new_reply": "New Reply" "new_reply": "Pesan Baru"
}, },
"media_selection": { "media_selection": {
"camera": "Take Photo", "camera": "Ambil Foto",
"photo_library": "Photo Library", "photo_library": "Galeri Foto",
"browse": "Browse" "browse": "Telusuri"
}, },
"content_input_placeholder": "Ketik atau tempel apa yang Anda pada pikiran Anda", "content_input_placeholder": "Ketik atau tempel apa yang Anda pada pikiran Anda",
"compose_action": "Publikasikan", "compose_action": "Publikasikan",
@ -383,10 +407,12 @@
"attachment_broken": "%s ini rusak dan tidak dapat diunggah ke Mastodon.", "attachment_broken": "%s ini rusak dan tidak dapat diunggah ke Mastodon.",
"description_photo": "Jelaskan fotonya untuk mereka yang tidak dapat melihat dengan jelas...", "description_photo": "Jelaskan fotonya untuk mereka yang tidak dapat melihat dengan jelas...",
"description_video": "Jelaskan videonya untuk mereka yang tidak dapat melihat dengan jelas...", "description_video": "Jelaskan videonya untuk mereka yang tidak dapat melihat dengan jelas...",
"load_failed": "Load Failed", "load_failed": "Gagal Memuat",
"upload_failed": "Upload Failed", "upload_failed": "Gagal Mengunggah",
"can_not_recognize_this_media_attachment": "Can not regonize this media attachment", "can_not_recognize_this_media_attachment": "Tidak dapat mengenali lampiran media ini",
"attachment_too_large": "Attachment too large" "attachment_too_large": "Lampiran terlalu besar",
"compressing_state": "Mengompres...",
"server_processing_state": "Server Memproses..."
}, },
"poll": { "poll": {
"duration_time": "Durasi: %s", "duration_time": "Durasi: %s",
@ -396,32 +422,36 @@
"one_day": "1 Hari", "one_day": "1 Hari",
"three_days": "3 Hari", "three_days": "3 Hari",
"seven_days": "7 Hari", "seven_days": "7 Hari",
"option_number": "Option %ld" "option_number": "Opsi %ld",
"the_poll_is_invalid": "Japat tidak valid",
"the_poll_has_empty_option": "Japat memiliki opsi kosong"
}, },
"content_warning": { "content_warning": {
"placeholder": "Tulis peringatan yang akurat di sini..." "placeholder": "Tulis peringatan yang akurat di sini..."
}, },
"visibility": { "visibility": {
"public": "Publik", "public": "Publik",
"unlisted": "Unlisted", "unlisted": "Tidak terdaftar",
"private": "Pengikut saja", "private": "Pengikut saja",
"direct": "Hanya orang yang saya sebut" "direct": "Hanya orang yang saya sebut"
}, },
"auto_complete": { "auto_complete": {
"space_to_add": "Space to add" "space_to_add": "Tekan spasi untuk menambahkan"
}, },
"accessibility": { "accessibility": {
"append_attachment": "Tambahkan Lampiran", "append_attachment": "Tambahkan Lampiran",
"append_poll": "Tambahkan Japat", "append_poll": "Tambahkan Japat",
"remove_poll": "Hapus Japat", "remove_poll": "Hapus Japat",
"custom_emoji_picker": "Custom Emoji Picker", "custom_emoji_picker": "Pemilih Emoji Kustom",
"enable_content_warning": "Aktifkan Peringatan Konten", "enable_content_warning": "Aktifkan Peringatan Konten",
"disable_content_warning": "Nonaktifkan Peringatan Konten", "disable_content_warning": "Nonaktifkan Peringatan Konten",
"post_visibility_menu": "Post Visibility Menu" "post_visibility_menu": "Menu Visibilitas Postingan",
"post_options": "Opsi Postingan",
"posting_as": "Posting sebagai %s"
}, },
"keyboard": { "keyboard": {
"discard_post": "Discard Post", "discard_post": "Hapus Postingan",
"publish_post": "Publish Post", "publish_post": "Publikasikan Postingan",
"toggle_poll": "Toggle Poll", "toggle_poll": "Toggle Poll",
"toggle_content_warning": "Toggle Content Warning", "toggle_content_warning": "Toggle Content Warning",
"append_attachment_entry": "Tambahkan Lampiran - %s", "append_attachment_entry": "Tambahkan Lampiran - %s",
@ -430,43 +460,51 @@
}, },
"profile": { "profile": {
"header": { "header": {
"follows_you": "Follows You" "follows_you": "Mengikutimu"
}, },
"dashboard": { "dashboard": {
"posts": "postingan", "my_posts": "posts",
"following": "mengikuti", "my_following": "following",
"followers": "pengikut" "my_followers": "followers",
"other_posts": "posts",
"other_following": "following",
"other_followers": "followers"
}, },
"fields": { "fields": {
"add_row": "Add Row", "joined": "Bergabung",
"add_row": "Tambah Baris",
"placeholder": { "placeholder": {
"label": "Label", "label": "Label",
"content": "Isi" "content": "Isi"
},
"verified": {
"short": "Verifikasi %s",
"long": "Kepemilikan tautan ini dapat dicek pada %s"
} }
}, },
"segmented_control": { "segmented_control": {
"posts": "Postingan", "posts": "Postingan",
"replies": "Balasan", "replies": "Balasan",
"posts_and_replies": "Posts and Replies", "posts_and_replies": "Kirim dan Balas",
"media": "Media", "media": "Media",
"about": "About" "about": "Tentang"
}, },
"relationship_action_alert": { "relationship_action_alert": {
"confirm_mute_user": { "confirm_mute_user": {
"title": "Mute Account", "title": "Bisukan Akun",
"message": "Confirm to mute %s" "message": "Konfirmasi untuk bisukan %s"
}, },
"confirm_unmute_user": { "confirm_unmute_user": {
"title": "Berhenti Membisukan Akun", "title": "Berhenti Membisukan Akun",
"message": "Confirm to unmute %s" "message": "Konfirmasi untuk membisukan %s"
}, },
"confirm_block_user": { "confirm_block_user": {
"title": "Block Account", "title": "Blokir Akun",
"message": "Confirm to block %s" "message": "Konfirmasi memblokir %s"
}, },
"confirm_unblock_user": { "confirm_unblock_user": {
"title": "Unblock Account", "title": "Buka Blokir Akun",
"message": "Confirm to unblock %s" "message": "Konfirmasi membuka blokir %s"
}, },
"confirm_show_reblogs": { "confirm_show_reblogs": {
"title": "Show Reblogs", "title": "Show Reblogs",
@ -478,23 +516,23 @@
} }
}, },
"accessibility": { "accessibility": {
"show_avatar_image": "Show avatar image", "show_avatar_image": "Tampilkan gambar avatar",
"edit_avatar_image": "Edit avatar image", "edit_avatar_image": "Ubah gambar avatar",
"show_banner_image": "Show banner image", "show_banner_image": "Show banner image",
"double_tap_to_open_the_list": "Double tap to open the list" "double_tap_to_open_the_list": "Ketuk ganda untuk membuka daftar"
} }
}, },
"follower": { "follower": {
"title": "follower", "title": "pengikut",
"footer": "Followers from other servers are not displayed." "footer": "Followers from other servers are not displayed."
}, },
"following": { "following": {
"title": "following", "title": "mengikuti",
"footer": "Follows from other servers are not displayed." "footer": "Follows from other servers are not displayed."
}, },
"familiarFollowers": { "familiarFollowers": {
"title": "Followers you familiar", "title": "Followers you familiar",
"followed_by_names": "Followed by %s" "followed_by_names": "Diikuti oleh %s"
}, },
"favorited_by": { "favorited_by": {
"title": "Favorited By" "title": "Favorited By"
@ -511,9 +549,9 @@
"recommend": { "recommend": {
"button_text": "Lihat Semua", "button_text": "Lihat Semua",
"hash_tag": { "hash_tag": {
"title": "Trending on Mastodon", "title": "Sedang Tren di Mastodon",
"description": "Hashtags that are getting quite a bit of attention", "description": "Hashtags that are getting quite a bit of attention",
"people_talking": "%s people are talking" "people_talking": "%s orang sedang membicarakan"
}, },
"accounts": { "accounts": {
"title": "Akun-akun yang mungkin Anda sukai", "title": "Akun-akun yang mungkin Anda sukai",
@ -531,22 +569,22 @@
"empty_state": { "empty_state": {
"no_results": "Tidak ada hasil" "no_results": "Tidak ada hasil"
}, },
"recent_search": "Recent searches", "recent_search": "Pencarian terbaru",
"clear": "Hapus" "clear": "Hapus"
} }
}, },
"discovery": { "discovery": {
"tabs": { "tabs": {
"posts": "Posts", "posts": "Posts",
"hashtags": "Hashtags", "hashtags": "Tagar",
"news": "News", "news": "Berita",
"community": "Community", "community": "Komunitas",
"for_you": "For You" "for_you": "Untuk Anda"
}, },
"intro": "These are the posts gaining traction in your corner of Mastodon." "intro": "These are the posts gaining traction in your corner of Mastodon."
}, },
"favorite": { "favorite": {
"title": "Your Favorites" "title": "Favorit Anda"
}, },
"notification": { "notification": {
"title": { "title": {
@ -554,11 +592,11 @@
"Mentions": "Sebutan" "Mentions": "Sebutan"
}, },
"notification_description": { "notification_description": {
"followed_you": "followed you", "followed_you": "mengikutimu",
"favorited_your_post": "favorited your post", "favorited_your_post": "menyukai postinganmu",
"reblogged_your_post": "reblogged your post", "reblogged_your_post": "reblogged your post",
"mentioned_you": "mentioned you", "mentioned_you": "menyebutmu",
"request_to_follow_you": "request to follow you", "request_to_follow_you": "meminta mengikutimu",
"poll_has_ended": "poll has ended" "poll_has_ended": "poll has ended"
}, },
"keyobard": { "keyobard": {
@ -566,10 +604,10 @@
"show_mentions": "Tampilkan Sebutan" "show_mentions": "Tampilkan Sebutan"
}, },
"follow_request": { "follow_request": {
"accept": "Accept", "accept": "Menerima",
"accepted": "Accepted", "accepted": "Diterima",
"reject": "reject", "reject": "menolak",
"rejected": "Rejected" "rejected": "Ditolak"
} }
}, },
"thread": { "thread": {
@ -586,11 +624,11 @@
"dark": "Selalu Gelap" "dark": "Selalu Gelap"
}, },
"look_and_feel": { "look_and_feel": {
"title": "Look and Feel", "title": "Lihat dan Rasakan",
"use_system": "Use System", "use_system": "Use System",
"really_dark": "Really Dark", "really_dark": "Sangat Gelap",
"sorta_dark": "Sorta Dark", "sorta_dark": "Agak Gelap",
"light": "Light" "light": "Terang"
}, },
"notifications": { "notifications": {
"title": "Notifikasi", "title": "Notifikasi",
@ -602,17 +640,17 @@
"anyone": "siapapun", "anyone": "siapapun",
"follower": "seorang pengikut", "follower": "seorang pengikut",
"follow": "siapapun yang saya ikuti", "follow": "siapapun yang saya ikuti",
"noone": "no one", "noone": "tidak ada",
"title": "Beritahu saya ketika" "title": "Beritahu saya ketika"
} }
}, },
"preference": { "preference": {
"title": "Preferensi", "title": "Preferensi",
"true_black_dark_mode": "True black dark mode", "true_black_dark_mode": "True black dark mode",
"disable_avatar_animation": "Disable animated avatars", "disable_avatar_animation": "Nonaktifkan animasi avatar",
"disable_emoji_animation": "Disable animated emojis", "disable_emoji_animation": "Nonaktifkan animasi emoji",
"using_default_browser": "Use default browser to open links", "using_default_browser": "Use default browser to open links",
"open_links_in_mastodon": "Open links in Mastodon" "open_links_in_mastodon": "Buka tautan di Mastodon"
}, },
"boring_zone": { "boring_zone": {
"title": "Zona Membosankan", "title": "Zona Membosankan",
@ -634,79 +672,91 @@
} }
}, },
"report": { "report": {
"title_report": "Report", "title_report": "Laporkan",
"title": "Laporkan %s", "title": "Laporkan %s",
"step1": "Langkah 1 dari 2", "step1": "Langkah 1 dari 2",
"step2": "Langkah 2 dari 2", "step2": "Langkah 2 dari 2",
"content1": "Apakah ada postingan lain yang ingin Anda tambahkan ke laporannya?", "content1": "Apakah ada postingan lain yang ingin Anda tambahkan ke laporannya?",
"content2": "Ada yang moderator harus tahu tentang laporan ini?", "content2": "Ada yang moderator harus tahu tentang laporan ini?",
"report_sent_title": "Thanks for reporting, well look into this.", "report_sent_title": "Terima kasih atas pelaporan Anda, kami akan memeriksa ini lebih lanjut.",
"send": "Kirim Laporan", "send": "Kirim Laporan",
"skip_to_send": "Kirim tanpa komentar", "skip_to_send": "Kirim tanpa komentar",
"text_placeholder": "Ketik atau tempel komentar tambahan", "text_placeholder": "Ketik atau tempel komentar tambahan",
"reported": "REPORTED", "reported": "DILAPORKAN",
"step_one": { "step_one": {
"step_1_of_4": "Step 1 of 4", "step_1_of_4": "Langkah 1 dari 4",
"whats_wrong_with_this_post": "What's wrong with this post?", "whats_wrong_with_this_post": "Ada yang salah dengan postingan ini?",
"whats_wrong_with_this_account": "What's wrong with this account?", "whats_wrong_with_this_account": "Ada yang salah dengan akun ini?",
"whats_wrong_with_this_username": "What's wrong with %s?", "whats_wrong_with_this_username": "Ada yang salah dengan %s?",
"select_the_best_match": "Select the best match", "select_the_best_match": "Pilih yang paling cocok",
"i_dont_like_it": "I dont like it", "i_dont_like_it": "Saya tidak suka",
"it_is_not_something_you_want_to_see": "It is not something you want to see", "it_is_not_something_you_want_to_see": "Ini bukan sesuatu yang Anda ingin lihat",
"its_spam": "Its spam", "its_spam": "Ini sampah",
"malicious_links_fake_engagement_or_repetetive_replies": "Malicious links, fake engagement, or repetetive replies", "malicious_links_fake_engagement_or_repetetive_replies": "Tautan berbahaya, engagement palsu, atau balasan berulang",
"it_violates_server_rules": "It violates server rules", "it_violates_server_rules": "Melanggar ketentuan server",
"you_are_aware_that_it_breaks_specific_rules": "You are aware that it breaks specific rules", "you_are_aware_that_it_breaks_specific_rules": "Anda yakin bahwa ini melanggar ketentuan khusus",
"its_something_else": "Its something else", "its_something_else": "Alasan lainnya",
"the_issue_does_not_fit_into_other_categories": "The issue does not fit into other categories" "the_issue_does_not_fit_into_other_categories": "The issue does not fit into other categories"
}, },
"step_two": { "step_two": {
"step_2_of_4": "Step 2 of 4", "step_2_of_4": "Langkah 2 dari 4",
"which_rules_are_being_violated": "Which rules are being violated?", "which_rules_are_being_violated": "Ketentuan manakah yang dilanggar?",
"select_all_that_apply": "Select all that apply", "select_all_that_apply": "Pilih semua yang berlaku",
"i_just_dont_like_it": "I just dont like it" "i_just_dont_like_it": "I just dont like it"
}, },
"step_three": { "step_three": {
"step_3_of_4": "Step 3 of 4", "step_3_of_4": "Langkah 3 dari 4",
"are_there_any_posts_that_back_up_this_report": "Are there any posts that back up this report?", "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" "select_all_that_apply": "Pilih semua yang berlaku"
}, },
"step_four": { "step_four": {
"step_4_of_4": "Step 4 of 4", "step_4_of_4": "Langkah 4 dari 4",
"is_there_anything_else_we_should_know": "Is there anything else we should know?" "is_there_anything_else_we_should_know": "Ada hal lain yang perlu kami ketahui?"
}, },
"step_final": { "step_final": {
"dont_want_to_see_this": "Dont want to see this?", "dont_want_to_see_this": "Tidak ingin melihat ini?",
"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.", "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", "unfollow": "Berhenti ikuti",
"unfollowed": "Unfollowed", "unfollowed": "Unfollowed",
"unfollow_user": "Unfollow %s", "unfollow_user": "Berhenti ikuti %s",
"mute_user": "Mute %s", "mute_user": "Senyapkan %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.", "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", "block_user": "Blokir %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.", "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" "while_we_review_this_you_can_take_action_against_user": "While we review this, you can take action against %s"
} }
}, },
"preview": { "preview": {
"keyboard": { "keyboard": {
"close_preview": "Close Preview", "close_preview": "Tutup Pratinjau",
"show_next": "Show Next", "show_next": "Tampilkan Berikutnya",
"show_previous": "Show Previous" "show_previous": "Tampilkan Sebelumnya"
} }
}, },
"account_list": { "account_list": {
"tab_bar_hint": "Current selected profile: %s. Double tap then hold to show account switcher", "tab_bar_hint": "Profil yang dipilih saat ini: %s. Ketuk dua kali kemudian tahan untuk tampilkan ikon beralih akun",
"dismiss_account_switcher": "Dismiss Account Switcher", "dismiss_account_switcher": "Dismiss Account Switcher",
"add_account": "Add Account" "add_account": "Tambah Akun"
}, },
"wizard": { "wizard": {
"new_in_mastodon": "New in Mastodon", "new_in_mastodon": "Baru di Mastodon",
"multiple_account_switch_intro_description": "Switch between multiple accounts by holding the profile button.", "multiple_account_switch_intro_description": "Switch between multiple accounts by holding the profile button.",
"accessibility_hint": "Double tap to dismiss this wizard" "accessibility_hint": "Double tap to dismiss this wizard"
}, },
"bookmark": { "bookmark": {
"title": "Bookmarks" "title": "Tandai"
},
"followed_tags": {
"title": "Followed Tags",
"header": {
"posts": "posts",
"participants": "participants",
"posts_today": "posts today"
},
"actions": {
"follow": "Follow",
"unfollow": "Unfollow"
}
} }
} }
} }

View File

@ -1,6 +1,6 @@
{ {
"NSCameraUsageDescription": "Used to take photo for post status", "NSCameraUsageDescription": "Gunakan untuk mengambil foto untuk postingan status",
"NSPhotoLibraryAddUsageDescription": "Used to save photo into the Photo Library", "NSPhotoLibraryAddUsageDescription": "Gunakan untuk menyimpan foto ke dalam Galeri Foto",
"NewPostShortcutItemTitle": "Postingan Baru", "NewPostShortcutItemTitle": "Postingan Baru",
"SearchShortcutItemTitle": "Cari" "SearchShortcutItemTitle": "Cari"
} }

View File

@ -0,0 +1,465 @@
<?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 ólesin tilkynning</string>
<key>other</key>
<string>%ld ólesnar tilkynningar</string>
</dict>
</dict>
<key>a11y.plural.count.input_limit_exceeds</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>Inntak fer fram úr takmörkunum %#@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 stafur</string>
<key>other</key>
<string>%ld stafir</string>
</dict>
</dict>
<key>a11y.plural.count.input_limit_remains</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>Inntakstakmörk haldast %#@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 stafur</string>
<key>other</key>
<string>%ld stafir</string>
</dict>
</dict>
<key>a11y.plural.count.characters_left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@character_count@ eftir</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 stafur</string>
<key>other</key>
<string>%ld stafir</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>Fylgt af %1$@ og öðrum sameiginlegum</string>
<key>other</key>
<string>Fylgt af %1$@ og %ld sameiginlegum</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>færsla</string>
<key>other</key>
<string>færslur</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 gagnamiðill</string>
<key>other</key>
<string>%ld gagnamiðlar</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 færsla</string>
<key>other</key>
<string>%ld færslur</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 eftirlæti</string>
<key>other</key>
<string>%ld eftirlæti</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 endurbirting</string>
<key>other</key>
<string>%ld endurbirtingar</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 svar</string>
<key>other</key>
<string>%ld svör</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 atkvæði</string>
<key>other</key>
<string>%ld atkvæði</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 kjósandi</string>
<key>other</key>
<string>%ld kjósendur</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 aðili að spjalla</string>
<key>other</key>
<string>%ld aðilar að spjalla</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 fylgist með</string>
<key>other</key>
<string>%ld fylgjast með</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 fylgjandi</string>
<key>other</key>
<string>%ld fylgjendur</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 ár eftir</string>
<key>other</key>
<string>%ld ár eftir</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 mánuður eftir</string>
<key>other</key>
<string>%ld mánuðir eftir</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 dagur eftir</string>
<key>other</key>
<string>%ld dagar eftir</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 klukkustund eftir</string>
<key>other</key>
<string>%ld klukkustundir eftir</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 mínúta eftir</string>
<key>other</key>
<string>%ld mínútur eftir</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 sekúnda eftir</string>
<key>other</key>
<string>%ld sekúndur eftir</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>Fyrir 1 ári síðan</string>
<key>other</key>
<string>Fyrir %ld árum síðan</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>Fyrir 1mín síðan</string>
<key>other</key>
<string>Fyrir %ldmín síðan</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>Fyrir 1 degi síðan</string>
<key>other</key>
<string>Fyrir %ld dögum síðan</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>1klst síðan</string>
<key>other</key>
<string>%ldklst síðan</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>1m síðan</string>
<key>other</key>
<string>%ldm síðan</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>1s síðan</string>
<key>other</key>
<string>%lds síðan</string>
</dict>
</dict>
</dict>
</plist>

View File

@ -0,0 +1,762 @@
{
"common": {
"alerts": {
"common": {
"please_try_again": "Endilega reyndu aftur.",
"please_try_again_later": "Reyndu aftur síðar."
},
"sign_up_failure": {
"title": "Innskráning mistókst"
},
"server_error": {
"title": "Villa á þjóni"
},
"vote_failure": {
"title": "Greiðsla atkvæðis mistókst",
"poll_ended": "Könnuninni er lokið"
},
"discard_post_content": {
"title": "Henda drögum",
"message": "Staðfestu til að henda efni úr saminni færslu."
},
"publish_post_failure": {
"title": "Mistókst að birta",
"message": "Mistókst að birta færsluna.\nAthugaðu nettenginguna þína.",
"attachments_message": {
"video_attach_with_photo": "Ekki er hægt að hengja myndskeið við færslu sem þegar inniheldur myndir.",
"more_than_one_video": "Ekki er hægt að hengja við fleiri en eitt myndskeið."
}
},
"edit_profile_failure": {
"title": "Villa við breytingu á notandasniði",
"message": "Mistókst að breyta notandasniði. Endilega reyndu aftur."
},
"sign_out": {
"title": "Skrá út",
"message": "Ertu viss um að þú viljir skrá þig út?",
"confirm": "Skrá út"
},
"block_domain": {
"title": "Ertu alveg algjörlega viss um að þú viljir loka á allt %s? Í flestum tilfellum er vænlegra að nota færri en markvissari útilokanir eða að þagga niður tiltekna aðila. Þú munt ekki sjá neitt efni frá þessu léni og fylgjendur þínir frá þessu léni verða fjarlægðir.",
"block_entire_domain": "Útiloka lén"
},
"save_photo_failure": {
"title": "Mistókst að vista mynd",
"message": "Virkjaðu heimild til aðgangs að ljósmyndasafninu til að vista myndina."
},
"delete_post": {
"title": "Eyða færslu",
"message": "Ertu viss um að þú viljir eyða þessari færslu?"
},
"clean_cache": {
"title": "Hreinsa skyndiminni",
"message": "Tókst að hreinsa %s skyndiminni."
},
"translation_failed": {
"title": "Athugasemd",
"message": "Þýðing mistókst. Mögulega hefur kerfisstjórinn ekki virkjað þýðingar á þessum netþjóni, eða að netþjónninn sé keyrður á eldri útgáfu Mastodon þar sem þýðingar séu ekki studdar.",
"button": "Í lagi"
}
},
"controls": {
"actions": {
"back": "Til baka",
"next": "Næsta",
"previous": "Fyrri",
"open": "Opna",
"add": "Bæta við",
"remove": "Fjarlægja",
"edit": "Breyta",
"save": "Vista",
"ok": "Í lagi",
"done": "Lokið",
"confirm": "Staðfesta",
"continue": "Halda áfram",
"compose": "Skrifa",
"cancel": "Hætta við",
"discard": "Henda",
"try_again": "Reyna aftur",
"take_photo": "Taka ljósmynd",
"save_photo": "Vista mynd",
"copy_photo": "Afrita mynd",
"sign_in": "Skrá inn",
"sign_up": "Stofna notandaaðgang",
"see_more": "Sjá fleira",
"preview": "Forskoða",
"copy": "Afrita",
"share": "Deila",
"share_user": "Deila %s",
"share_post": "Deila færslu",
"open_in_safari": "Opna í Safari",
"open_in_browser": "Opna í vafra",
"find_people": "Finna fólk til að fylgjast með",
"manually_search": "Leita handvirkt í staðinn",
"skip": "Sleppa",
"reply": "Svara",
"report_user": "Kæra %s",
"block_domain": "Útiloka %s",
"unblock_domain": "Opna á %s",
"settings": "Stillingar",
"delete": "Eyða",
"translate_post": {
"title": "Þýða úr %s",
"unknown_language": "Óþekkt"
}
},
"tabs": {
"home": "Heim",
"search_and_explore": "Leita og kanna",
"notifications": "Tilkynningar",
"profile": "Notandasnið"
},
"keyboard": {
"common": {
"switch_to_tab": "Skipta yfir í %s",
"compose_new_post": "Semja nýja færslu",
"show_favorites": "Birta eftirlæti",
"open_settings": "Opna stillingar"
},
"timeline": {
"previous_status": "Fyrri færsla",
"next_status": "Næsta færsla",
"open_status": "Opna færslu",
"open_author_profile": "Opna notandasnið höfundar",
"open_reblogger_profile": "Opna notandasnið þess sem endurbirtir",
"reply_status": "Svara færslu",
"toggle_reblog": "Víxla endurbirtingu færslu af/á",
"toggle_favorite": "Víxla eftirlæti færslu af/á",
"toggle_content_warning": "Víxla af/á viðvörun vegna efnis",
"preview_image": "Forskoða mynd"
},
"segmented_control": {
"previous_section": "Fyrri hluti",
"next_section": "Næsti hluti"
}
},
"status": {
"user_reblogged": "%s endurbirti",
"user_replied_to": "Svaraði %s",
"show_post": "Sýna færslu",
"show_user_profile": "Birta notandasnið",
"content_warning": "Viðvörun vegna efnis",
"sensitive_content": "Viðkvæmt efni",
"media_content_warning": "Ýttu hvar sem er til að birta",
"tap_to_reveal": "Ýttu til að birta",
"load_embed": "Hlaða inn ívöfnu",
"link_via_user": "%s með %s",
"poll": {
"vote": "Greiða atkvæði",
"closed": "Lokið"
},
"meta_entity": {
"url": "Tengill: %s",
"hashtag": "Myllumerki: %s",
"mention": "Sýna notandasnið: %s",
"email": "Tölvupóstfang: %s"
},
"actions": {
"reply": "Svara",
"reblog": "Endurbirta",
"unreblog": "Afturkalla endurbirtingu",
"favorite": "Eftirlæti",
"unfavorite": "Taka úr eftirlætum",
"menu": "Valmynd",
"hide": "Fela",
"show_image": "Sýna mynd",
"show_gif": "Birta GIF-myndir",
"show_video_player": "Sýna myndspilara",
"share_link_in_post": "Deila tengli í færslu",
"tap_then_hold_to_show_menu": "Ýttu og haltu til að sýna valmynd"
},
"tag": {
"url": "URL-slóð",
"mention": "Minnst á",
"link": "Tengill",
"hashtag": "Myllumerki",
"email": "Tölvupóstur",
"emoji": "Tjáningartákn"
},
"visibility": {
"unlisted": "Allir geta skoðað þessa færslu, en er ekki birt á opinberum tímalínum.",
"private": "Einungis fylgjendur þeirra geta séð þessa færslu.",
"private_from_me": "Einungis fylgjendur mínir geta séð þessa færslu.",
"direct": "Einungis notendur sem minnst er á geta séð þessa færslu."
},
"translation": {
"translated_from": "Þýtt úr %s með %s",
"unknown_language": "Óþekkt",
"unknown_provider": "Óþekkt",
"show_original": "Birta upprunalegt"
}
},
"friendship": {
"follow": "Fylgja",
"following": "Fylgist með",
"request": "Beiðni",
"pending": "Í bið",
"block": "Útilokun",
"block_user": "Útiloka %s",
"block_domain": "Útiloka %s",
"unblock": "Aflétta útilokun",
"unblock_user": "Opna á %s",
"blocked": "Útilokað",
"mute": "Þagga niður",
"mute_user": "Þagga niður í %s",
"unmute": "Afþagga",
"unmute_user": "Afþagga %s",
"muted": "Þaggað",
"edit_info": "Breyta upplýsingum",
"show_reblogs": "Sýna endurbirtingar",
"hide_reblogs": "Fela endurbirtingar"
},
"timeline": {
"filtered": "Síað",
"timestamp": {
"now": "Núna"
},
"loader": {
"load_missing_posts": "Hlaða inn færslum sem vantar",
"loading_missing_posts": "Hleð inn færslum sem vantar...",
"show_more_replies": "Birta fleiri svör"
},
"header": {
"no_status_found": "Engar færslur fundust",
"blocking_warning": "Þú getur ekki séð snið þessa notanda\nfyrr en þú hættir að útiloka hann.\nSniðið þitt lítur svona út hjá honum.",
"user_blocking_warning": "Þú getur ekki séð sniðið hjá %s\nfyrr en þú hættir að útiloka hann.\nSniðið þitt lítur svona út hjá honum.",
"blocked_warning": "Þú getur ekki séð sniðið hjá þessum notanda\nfyrr en hann hættir að útiloka þig.",
"user_blocked_warning": "Þú getur ekki séð sniðið hjá %s\nfyrr en hann hættir að útiloka þig.",
"suspended_warning": "Þessi notandi hefur verið settur í frysti.",
"user_suspended_warning": "Notandaaðgangurinn %s hefur verið settur í frysti."
}
}
}
},
"scene": {
"welcome": {
"slogan": "Samfélagsmiðlar\naftur í þínar hendur.",
"get_started": "Komast í gang",
"log_in": "Skrá inn"
},
"login": {
"title": "Velkomin aftur",
"subtitle": "Skráðu þig inn á netþjóninum þar sem þú útbjóst aðganginn þinn.",
"server_search_field": {
"placeholder": "Settu inn slóð eða leitaðu að þjóninum þínum"
}
},
"server_picker": {
"title": "Mastodon samanstendur af notendum á mismunandi netþjónum.",
"subtitle": "Veldu netþjón út frá svæðinu þínu, áhugamálum, nú eða einhvern almennan. Þú getur samt spjallað við hvern sem er á Mastodon, burtséð frá á hvaða netþjóni þú ert.",
"button": {
"category": {
"all": "Allt",
"all_accessiblity_description": "Flokkur: Allt",
"academia": "akademískt",
"activism": "aðgerðasinnar",
"food": "matur",
"furry": "loðið",
"games": "leikir",
"general": "almennt",
"journalism": "blaðamennska",
"lgbt": "lgbt",
"regional": "svæðisbundið",
"art": "listir",
"music": "tónlist",
"tech": "tækni"
},
"see_less": "Sjá minna",
"see_more": "Sjá meira"
},
"label": {
"language": "TUNGUMÁL",
"users": "NOTENDUR",
"category": "FLOKKUR"
},
"input": {
"search_servers_or_enter_url": "Leitaðu að samfélögum eða settu inn slóð"
},
"empty_state": {
"finding_servers": "Finn tiltæka netþjóna...",
"bad_network": "Eitthvað fór úrskeiðis við að hlaða inn gögnunum. Athugaðu nettenginguna þína.",
"no_results": "Engar niðurstöður"
}
},
"register": {
"title": "Við skulum koma þér í gang á %s",
"lets_get_you_set_up_on_domain": "Við skulum koma þér í gang á %s",
"input": {
"avatar": {
"delete": "Eyða"
},
"username": {
"placeholder": "notandanafn",
"duplicate_prompt": "Þetta notandanafn er þegar í notkun."
},
"display_name": {
"placeholder": "birtingarnafn"
},
"email": {
"placeholder": "tölvupóstur"
},
"password": {
"placeholder": "lykilorð",
"require": "Lykilorðið þitt þarf að minnsta kosti:",
"character_limit": "8 stafi",
"accessibility": {
"checked": "merkt",
"unchecked": "ekki merkt"
},
"hint": "Lykilorðið þitt verður að vera að minnsta kosti 8 stafa langt"
},
"invite": {
"registration_user_invite_request": "Hvers vegna vilt þú taka þátt?"
}
},
"error": {
"item": {
"username": "Notandanafn",
"email": "Tölvupóstur",
"password": "Lykilorð",
"agreement": "Notkunarskilmálar",
"locale": "Staðfærsla",
"reason": "Ástæða"
},
"reason": {
"blocked": "%s notar óleyfilega tölvupóstþjónustu",
"unreachable": "%s virðist ekki vera til",
"taken": "%s er þegar í notkun",
"reserved": "%s er frátekið stikkorð",
"accepted": "%s verður að samþykkja",
"blank": "%s ier nauðsynlegt",
"invalid": "%s er ógilt",
"too_long": "%s er of langt",
"too_short": "%s er of stutt",
"inclusion": "%s er ekki stutt gildi"
},
"special": {
"username_invalid": "Notendanöfn geta einungis innihaldið bókstafi og undirstrikun",
"username_too_long": "Notandanafnið er of langt (má ekki vera lengra en 30 stafir)",
"email_invalid": "Þetta lítur ekki út eins og löglegt tölvupóstfang",
"password_too_short": "Lykilorð er of stutt (verður að hafa minnst 8 stafi)"
}
}
},
"server_rules": {
"title": "Nokkrar grunnreglur.",
"subtitle": "Þær eru settar og séð um að þeim sé fylgt af umsjónarmönnum %s.",
"prompt": "Með því að halda áfram samþykkir þú þjónustuskilmála og persónuverndarstefnu %s.",
"terms_of_service": "þjónustuskilmálar",
"privacy_policy": "persónuverndarstefna",
"button": {
"confirm": "Ég samþykki"
}
},
"confirm_email": {
"title": "Eitt að lokum.",
"subtitle": "Ýttu á tengilinn sem við sendum þér til að staðfesta tölvupóstfangið þitt.",
"tap_the_link_we_emailed_to_you_to_verify_your_account": "Ýttu á tengilinn sem við sendum þér til að staðfesta tölvupóstfangið þitt",
"button": {
"open_email_app": "Opna tölvupóstforrit",
"resend": "Endursenda"
},
"dont_receive_email": {
"title": "Athugaðu tölvupóstinn þinn",
"description": "Athugaðu hvort tölvupóstfangið þitt sé rétt auk þess að skoða í ruslpóstmöppuna þína ef þú hefur ekki gert það.",
"resend_email": "Endursenda tölvupóst"
},
"open_email_app": {
"title": "Athugaðu pósthólfið þitt.",
"description": "Við vorum að senda þér tölvupóst. Skoðaðu í ruslpóstmöppuna þína ef þú hefur ekki gert það.",
"mail": "Tölvupóstur",
"open_email_client": "Opna tölvupóstforrit"
}
},
"home_timeline": {
"title": "Heim",
"navigation_bar_state": {
"offline": "Ónettengt",
"new_posts": "Skoða nýjar færslur",
"published": "Birt!",
"Publishing": "Birti færslu...",
"accessibility": {
"logo_label": "Hnappur með táknmerki",
"logo_hint": "Ýttu til að skruna efst og ýttu aftur til að fara aftur á fyrri staðsetningu"
}
}
},
"suggestion_account": {
"title": "Finndu fólk til að fylgjast með",
"follow_explain": "Þegar þú fylgist með einhverjum, muntu sjá færslur frá viðkomandi á streyminu þínu."
},
"compose": {
"title": {
"new_post": "Ný færsla",
"new_reply": "Nýtt svar"
},
"media_selection": {
"camera": "Taktu mynd",
"photo_library": "Myndasafn",
"browse": "Flakka"
},
"content_input_placeholder": "Skrifaðu eða límdu það sem þér liggur á hjarta",
"compose_action": "Birta",
"replying_to_user": "svarar til @%s",
"attachment": {
"photo": "ljósmynd",
"video": "myndskeið",
"attachment_broken": "Þetta %s er skemmt og því ekki\nhægt að senda inn á Mastodon.",
"description_photo": "Lýstu myndinni fyrir sjónskerta...",
"description_video": "Lýstu myndskeiðinu fyrir sjónskerta...",
"load_failed": "Hleðsla mistókst",
"upload_failed": "Innsending mistókst",
"can_not_recognize_this_media_attachment": "Þekki ekki þetta myndviðhengi",
"attachment_too_large": "Viðhengi of stórt",
"compressing_state": "Þjappa...",
"server_processing_state": "Netþjónn er að vinna..."
},
"poll": {
"duration_time": "Tímalengd: %s",
"thirty_minutes": "30 mínútur",
"one_hour": "1 klukkustund",
"six_hours": "6 klukkustundir",
"one_day": "1 dagur",
"three_days": "3 dagar",
"seven_days": "7 dagar",
"option_number": "Valkostur %ld",
"the_poll_is_invalid": "Könnunin er ógild",
"the_poll_has_empty_option": "Könnunin er með auðan valkost"
},
"content_warning": {
"placeholder": "Skrifaðu nákvæma aðvörun hér..."
},
"visibility": {
"public": "Opinbert",
"unlisted": "Óskráð",
"private": "Einungis fylgjendur",
"direct": "Einungis fólk sem ég minnist á"
},
"auto_complete": {
"space_to_add": "Bil sem á að bæta við"
},
"accessibility": {
"append_attachment": "Bæta við viðhengi",
"append_poll": "Bæta við könnun",
"remove_poll": "Fjarlægja könnun",
"custom_emoji_picker": "Sérsniðið emoji-tánmyndaval",
"enable_content_warning": "Virkja viðvörun vegna efnis",
"disable_content_warning": "Gera viðvörun vegna efnis óvirka",
"post_visibility_menu": "Sýnileikavalmynd færslu",
"post_options": "Valkostir færslu",
"posting_as": "Birti sem %s"
},
"keyboard": {
"discard_post": "Henda færslu",
"publish_post": "Birta færslu",
"toggle_poll": "Víxla könnun af/á",
"toggle_content_warning": "Víxla af/á viðvörun vegna efnis",
"append_attachment_entry": "Bæta við viðhengi - %s",
"select_visibility_entry": "Veldu sýnileika - %s"
}
},
"profile": {
"header": {
"follows_you": "Fylgist með þér"
},
"dashboard": {
"my_posts": "færslur",
"my_following": "er fylgst með",
"my_followers": "fylgjendur",
"other_posts": "færslur",
"other_following": "er fylgst með",
"other_followers": "fylgjendur"
},
"fields": {
"joined": "Gerðist þátttakandi",
"add_row": "Bæta við röð",
"placeholder": {
"label": "Skýring",
"content": "Efni"
},
"verified": {
"short": "Sannreynt þann %s",
"long": "Eignarhald á þessum tengli var athugað þann %s"
}
},
"segmented_control": {
"posts": "Færslur",
"replies": "Svör",
"posts_and_replies": "Færslur og svör",
"media": "Gagnamiðlar",
"about": "Um hugbúnaðinn"
},
"relationship_action_alert": {
"confirm_mute_user": {
"title": "Þagga niður í aðgangi",
"message": "Staðfestu til að þagga niður í %s"
},
"confirm_unmute_user": {
"title": "Hætta að þagga niður í aðgangi",
"message": "Staðfestu til hætta að að þagga niður í %s"
},
"confirm_block_user": {
"title": "Útiloka notandaaðgang",
"message": "Staðfestu til að útiloka %s"
},
"confirm_unblock_user": {
"title": "Aflétta útilokun aðgangs",
"message": "Staðfestu til að hætta að útiloka %s"
},
"confirm_show_reblogs": {
"title": "Sýna endurbirtingar",
"message": "Staðfestu til að sýna endurbirtingar"
},
"confirm_hide_reblogs": {
"title": "Fela endurbirtingar",
"message": "Staðfestu til að fela endurbirtingar"
}
},
"accessibility": {
"show_avatar_image": "Sýna auðkennismynd",
"edit_avatar_image": "Breyta auðkennismynd",
"show_banner_image": "Sýna myndborða",
"double_tap_to_open_the_list": "Tvípikkaðu til að opna listann"
}
},
"follower": {
"title": "fylgjandi",
"footer": "Fylgjendur af öðrum netþjónum birtast ekki."
},
"following": {
"title": "fylgist með",
"footer": "Fylgjendur af öðrum netþjónum birtast ekki."
},
"familiarFollowers": {
"title": "Fylgjendur sem þú kannast við",
"followed_by_names": "Fylgt af %s"
},
"favorited_by": {
"title": "Sett í eftirlæti af"
},
"reblogged_by": {
"title": "Endurbirt af"
},
"search": {
"title": "Leita",
"search_bar": {
"placeholder": "Leita að myllumerkjum og notendum",
"cancel": "Hætta við"
},
"recommend": {
"button_text": "Sjá allt",
"hash_tag": {
"title": "Vinsælt á Mastodon",
"description": "Myllumerki sem eru að fá þónokkra athygli",
"people_talking": "%s manns eru að spjalla"
},
"accounts": {
"title": "Notandaaðgangar sem þú gætir haft áhuga á",
"description": "Þú gætir viljað fylgjast með þessum aðgöngum",
"follow": "Fylgjast með"
}
},
"searching": {
"segment": {
"all": "Allt",
"people": "Fólk",
"hashtags": "Myllumerki",
"posts": "Færslur"
},
"empty_state": {
"no_results": "Engar niðurstöður"
},
"recent_search": "Nýlegar leitir",
"clear": "Hreinsa"
}
},
"discovery": {
"tabs": {
"posts": "Færslur",
"hashtags": "Myllumerki",
"news": "Fréttir",
"community": "Samfélag",
"for_you": "Fyrir þig"
},
"intro": "Þetta eru færslurnar sem eru að fá aukna athygli í þínu horni á Mastodon."
},
"favorite": {
"title": "Eftirlætin þín"
},
"notification": {
"title": {
"Everything": "Allt",
"Mentions": "Minnst á"
},
"notification_description": {
"followed_you": "fylgdi þér",
"favorited_your_post": "setti færslu frá þér í eftirlæti",
"reblogged_your_post": "endurbirti færsluna þína",
"mentioned_you": "minntist á þig",
"request_to_follow_you": "bað um að fylgjast með þér",
"poll_has_ended": "könnun er lokið"
},
"keyobard": {
"show_everything": "Sýna allt",
"show_mentions": "Sýna þegar minnst er á"
},
"follow_request": {
"accept": "Samþykkja",
"accepted": "Samþykkt",
"reject": "hafna",
"rejected": "Hafnað"
}
},
"thread": {
"back_title": "Færsla",
"title": "Færsla frá %s"
},
"settings": {
"title": "Stillingar",
"section": {
"appearance": {
"title": "Útlit",
"automatic": "Sjálfvirkt",
"light": "Alltaf ljóst",
"dark": "Alltaf dökkt"
},
"look_and_feel": {
"title": "Útlit og viðmót",
"use_system": "Nota stillingar kerfis",
"really_dark": "Mjög dökkt",
"sorta_dark": "Nokkuð dökkt",
"light": "Ljóst"
},
"notifications": {
"title": "Tilkynningar",
"favorites": "Setur færsluna mína í eftirlæti",
"follows": "Fylgist með mér",
"boosts": "Endurbirtir færsluna mína",
"mentions": "Minnist á mig",
"trigger": {
"anyone": "hver sem er",
"follower": "fylgjandi",
"follow": "hverjum sá sem ég fylgi",
"noone": "enginn",
"title": "Tilkynna mér þegar"
}
},
"preference": {
"title": "Kjörstillingar",
"true_black_dark_mode": "Sannur svartur dökkur hamur",
"disable_avatar_animation": "Gera auðkennismyndir með hreyfingu óvirkar",
"disable_emoji_animation": "Gera tjáningartákn með hreyfingu óvirkar",
"using_default_browser": "Nota sjálfgefinn vafra til að opna tengla",
"open_links_in_mastodon": "Opna tengla í Mastodon"
},
"boring_zone": {
"title": "Óhressa svæðið",
"account_settings": "Stillingar aðgangs",
"terms": "Þjónustuskilmálar",
"privacy": "Meðferð persónuupplýsinga"
},
"spicy_zone": {
"title": "Kryddaða svæðið",
"clear": "Hreinsa skyndiminni margmiðlunarefnis",
"signout": "Skrá út"
}
},
"footer": {
"mastodon_description": "Mastodon er frjáls hugbúnaður með opinn grunnkóða. Þú getur tilkynnt vandamál í gegnum GitHub á %s (%s)"
},
"keyboard": {
"close_settings_window": "Loka stillingaglugga"
}
},
"report": {
"title_report": "Kæra",
"title": "Kæra %s",
"step1": "Skref 1 af 2",
"step2": "Skref 2 af 2",
"content1": "Eru einhverjar færslur sem þú myndir vilja bæta við kæruna?",
"content2": "Er eitthvað fleira sem umsjónarmenn ættu að vita varðandi þessa kæru?",
"report_sent_title": "Takk fyrir tilkynninguna, við munum skoða málið.",
"send": "Senda kæru",
"skip_to_send": "Senda án athugasemdar",
"text_placeholder": "Skrifaðu eða límdu aðrar athugasemdir",
"reported": "TILKYNNT",
"step_one": {
"step_1_of_4": "Skref 1 af 4",
"whats_wrong_with_this_post": "Hvað er athugavert við þessa færslu?",
"whats_wrong_with_this_account": "Hvað er athugavert við þennan notandaaðgang?",
"whats_wrong_with_this_username": "Hvað er athugavert við %s?",
"select_the_best_match": "Velja bestu samsvörun",
"i_dont_like_it": "Mér líkar það ekki",
"it_is_not_something_you_want_to_see": "Þetta er ekki eitthvað sem þið viljið sjá",
"its_spam": "Þetta er ruslpóstur",
"malicious_links_fake_engagement_or_repetetive_replies": "Slæmir tenglar, fölsk samskipti eða endurtekin svör",
"it_violates_server_rules": "Það gengur þvert á reglur fyrir netþjóninn",
"you_are_aware_that_it_breaks_specific_rules": "Þið eruð meðvituð um að þetta brýtur sértækar reglur",
"its_something_else": "Það er eitthvað annað",
"the_issue_does_not_fit_into_other_categories": "Vandamálið fellur ekki í aðra flokka"
},
"step_two": {
"step_2_of_4": "Skref 2 af 4",
"which_rules_are_being_violated": "Hvaða reglur eru brotnar?",
"select_all_that_apply": "Veldu allt sem á við",
"i_just_dont_like_it": "Mér bara líkar það ekki"
},
"step_three": {
"step_3_of_4": "Skref 3 af 4",
"are_there_any_posts_that_back_up_this_report": "Eru einhverjar færslur sem styðja þessa kæru?",
"select_all_that_apply": "Veldu allt sem á við"
},
"step_four": {
"step_4_of_4": "Skref 4 af 4",
"is_there_anything_else_we_should_know": "Er eitthvað fleira sem við ættum að vita?"
},
"step_final": {
"dont_want_to_see_this": "Langar þig ekki að sjá þetta?",
"when_you_see_something_you_dont_like_on_mastodon_you_can_remove_the_person_from_your_experience.": "Þegar þú sér eitthvað á Mastodon sem þér líkar ekki, þá geturðu fjarlægt viðkomandi eintakling úr umhverfinu þínu.",
"unfollow": "Hætta að fylgjast með",
"unfollowed": "Hætti að fylgjast með",
"unfollow_user": "Hætta að fylgjast með %s",
"mute_user": "Þagga niður í %s",
"you_wont_see_their_posts_or_reblogs_in_your_home_feed_they_wont_know_they_ve_been_muted": "Þú munt ekki sjá færslur eða endurbirtingar frá viðkomandi á streyminu þínu. Viðkomandi aðilar munu ekki vita að þaggað hefur verið niður í þeim.",
"block_user": "Útiloka %s",
"they_will_no_longer_be_able_to_follow_or_see_your_posts_but_they_can_see_if_theyve_been_blocked": "Viðkomandi mun ekki lengur geta fylgst með eða séð færslurnar þínar, en munu sjá ef viðkomandi hefur verið útilokaður.",
"while_we_review_this_you_can_take_action_against_user": "Á meðan við yfirförum þetta, geturðu tekið til aðgerða gegn %s"
}
},
"preview": {
"keyboard": {
"close_preview": "Loka forskoðun",
"show_next": "Sýna næsta",
"show_previous": "Sýna fyrri"
}
},
"account_list": {
"tab_bar_hint": "Fyrirliggjandi valið notandasnið: %s. Tvípikkaðu og haltu niðri til að birta aðgangaskiptinn",
"dismiss_account_switcher": "Loka aðgangaskipti",
"add_account": "Bæta við notandaaðgangi"
},
"wizard": {
"new_in_mastodon": "Nýtt í Mastodon",
"multiple_account_switch_intro_description": "Skiptu milli notandaaðganga með því að halda niðri notandasniðshnappnum.",
"accessibility_hint": "Tvípikkaðu til að loka þessum leiðarvísi"
},
"bookmark": {
"title": "Bókamerki"
},
"followed_tags": {
"title": "Myllumerki sem fylgst er með",
"header": {
"posts": "færslur",
"participants": "þátttakendur",
"posts_today": "færslur í dag"
},
"actions": {
"follow": "Fylgjast með",
"unfollow": "Hætta að fylgjast með"
}
}
}
}

View File

@ -0,0 +1,6 @@
{
"NSCameraUsageDescription": "Notað til að taka mynd fyrir stöðufærslu",
"NSPhotoLibraryAddUsageDescription": "Notað til að vista mynd inn í ljósmyndasafnið",
"NewPostShortcutItemTitle": "Ný færsla",
"SearchShortcutItemTitle": "Leita"
}

View File

@ -50,6 +50,22 @@
<string>%ld caratteri</string> <string>%ld caratteri</string>
</dict> </dict>
</dict> </dict>
<key>a11y.plural.count.characters_left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@character_count@ rimanenti</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 carattere</string>
<key>other</key>
<string>%ld caratteri</string>
</dict>
</dict>
<key>plural.count.followed_by_and_mutual</key> <key>plural.count.followed_by_and_mutual</key>
<dict> <dict>
<key>NSStringLocalizedFormatKey</key> <key>NSStringLocalizedFormatKey</key>

View File

@ -51,6 +51,11 @@
"clean_cache": { "clean_cache": {
"title": "Pulisci la cache", "title": "Pulisci la cache",
"message": "Cache %s pulita con successo." "message": "Cache %s pulita con successo."
},
"translation_failed": {
"title": "Nota",
"message": "Traduzione fallita. Forse l'amministratore non ha abilitato le traduzioni su questo server o questo server sta eseguendo una versione precedente di Mastodon in cui le traduzioni non sono ancora supportate.",
"button": "OK"
} }
}, },
"controls": { "controls": {
@ -75,9 +80,10 @@
"save_photo": "Salva foto", "save_photo": "Salva foto",
"copy_photo": "Copia foto", "copy_photo": "Copia foto",
"sign_in": "Accedi", "sign_in": "Accedi",
"sign_up": "Registrati", "sign_up": "Crea un account",
"see_more": "Visualizza altro", "see_more": "Visualizza altro",
"preview": "Anteprima", "preview": "Anteprima",
"copy": "Copia",
"share": "Condividi", "share": "Condividi",
"share_user": "Condividi %s", "share_user": "Condividi %s",
"share_post": "Condividi il post", "share_post": "Condividi il post",
@ -91,12 +97,16 @@
"block_domain": "Blocca %s", "block_domain": "Blocca %s",
"unblock_domain": "Sblocca %s", "unblock_domain": "Sblocca %s",
"settings": "Impostazioni", "settings": "Impostazioni",
"delete": "Elimina" "delete": "Elimina",
"translate_post": {
"title": "Traduci da %s",
"unknown_language": "Sconosciuto"
}
}, },
"tabs": { "tabs": {
"home": "Inizio", "home": "Inizio",
"search": "Cerca", "search_and_explore": "Cerca ed Esplora",
"notification": "Notifiche", "notifications": "Notifiche",
"profile": "Profilo" "profile": "Profilo"
}, },
"keyboard": { "keyboard": {
@ -132,6 +142,8 @@
"sensitive_content": "Contenuto sensibile", "sensitive_content": "Contenuto sensibile",
"media_content_warning": "Tocca ovunque per rivelare", "media_content_warning": "Tocca ovunque per rivelare",
"tap_to_reveal": "Tocca per rivelare", "tap_to_reveal": "Tocca per rivelare",
"load_embed": "Carica Incorpora",
"link_via_user": "%s tramite %s",
"poll": { "poll": {
"vote": "Vota", "vote": "Vota",
"closed": "Chiuso" "closed": "Chiuso"
@ -153,13 +165,14 @@
"show_image": "Mostra immagine", "show_image": "Mostra immagine",
"show_gif": "Mostra GIF", "show_gif": "Mostra GIF",
"show_video_player": "Mostra lettore video", "show_video_player": "Mostra lettore video",
"share_link_in_post": "Condividi il collegamento nel post",
"tap_then_hold_to_show_menu": "Tocca quindi tieni premuto per mostrare il menu" "tap_then_hold_to_show_menu": "Tocca quindi tieni premuto per mostrare il menu"
}, },
"tag": { "tag": {
"url": "URL", "url": "URL",
"mention": "Menzione", "mention": "Menzione",
"link": "Collegamento", "link": "Collegamento",
"hashtag": "Etichetta", "hashtag": "Hashtag",
"email": "Email", "email": "Email",
"emoji": "Emoji" "emoji": "Emoji"
}, },
@ -168,6 +181,12 @@
"private": "Solo i loro seguaci possono vedere questo post.", "private": "Solo i loro seguaci possono vedere questo post.",
"private_from_me": "Solo i miei seguaci possono vedere questo post.", "private_from_me": "Solo i miei seguaci possono vedere questo post.",
"direct": "Solo l'utente menzionato può vedere questo post." "direct": "Solo l'utente menzionato può vedere questo post."
},
"translation": {
"translated_from": "Tradotto da %s utilizzando %s",
"unknown_language": "Sconosciuto",
"unknown_provider": "Sconosciuto",
"show_original": "Mostra l'originale"
} }
}, },
"friendship": { "friendship": {
@ -218,10 +237,16 @@
"get_started": "Inizia", "get_started": "Inizia",
"log_in": "Accedi" "log_in": "Accedi"
}, },
"login": {
"title": "Bentornato/a",
"subtitle": "Accedi al server sul quale hai creato il tuo account.",
"server_search_field": {
"placeholder": "Inserisci l'URL o cerca il tuo server"
}
},
"server_picker": { "server_picker": {
"title": "Mastodon è fatto di utenti in diverse comunità.", "title": "Mastodon è fatto di utenti in diverse comunità.",
"subtitle": "Scegli una comunità basata sui tuoi interessi, regione o uno scopo generale.", "subtitle": "Scegli un server in base alla tua regione, ai tuoi interessi o uno generico. Puoi comunque chattare con chiunque su Mastodon, indipendentemente dai tuoi server.",
"subtitle_extend": "Scegli una comunità basata sui tuoi interessi, regione o uno scopo generale. Ogni comunità è gestita da un'organizzazione completamente indipendente o individuale.",
"button": { "button": {
"category": { "category": {
"all": "Tutti", "all": "Tutti",
@ -248,8 +273,7 @@
"category": "CATEGORIA" "category": "CATEGORIA"
}, },
"input": { "input": {
"placeholder": "Cerca comunità", "search_servers_or_enter_url": "Cerca le comunità o inserisci l'URL"
"search_servers_or_enter_url": "Cerca i server o inserisci l'URL"
}, },
"empty_state": { "empty_state": {
"finding_servers": "Ricerca server disponibili...", "finding_servers": "Ricerca server disponibili...",
@ -386,7 +410,9 @@
"load_failed": "Caricamento fallito", "load_failed": "Caricamento fallito",
"upload_failed": "Caricamento fallito", "upload_failed": "Caricamento fallito",
"can_not_recognize_this_media_attachment": "Impossibile riconoscere questo allegato multimediale", "can_not_recognize_this_media_attachment": "Impossibile riconoscere questo allegato multimediale",
"attachment_too_large": "Allegato troppo grande" "attachment_too_large": "Allegato troppo grande",
"compressing_state": "Compressione in corso...",
"server_processing_state": "Elaborazione del server in corso..."
}, },
"poll": { "poll": {
"duration_time": "Durata: %s", "duration_time": "Durata: %s",
@ -396,7 +422,9 @@
"one_day": "1 giorno", "one_day": "1 giorno",
"three_days": "3 giorni", "three_days": "3 giorni",
"seven_days": "7 giorni", "seven_days": "7 giorni",
"option_number": "Opzione %ld" "option_number": "Opzione %ld",
"the_poll_is_invalid": "Il sondaggio non è valido",
"the_poll_has_empty_option": "Il sondaggio ha un'opzione vuota"
}, },
"content_warning": { "content_warning": {
"placeholder": "Scrivi un avviso accurato qui..." "placeholder": "Scrivi un avviso accurato qui..."
@ -417,7 +445,9 @@
"custom_emoji_picker": "Selettore Emoji personalizzato", "custom_emoji_picker": "Selettore Emoji personalizzato",
"enable_content_warning": "Abilita avvertimento contenuti", "enable_content_warning": "Abilita avvertimento contenuti",
"disable_content_warning": "Disabilita avviso di contenuti", "disable_content_warning": "Disabilita avviso di contenuti",
"post_visibility_menu": "Menu di visibilità del post" "post_visibility_menu": "Menu di visibilità del post",
"post_options": "Opzioni del messaggio",
"posting_as": "Pubblicazione come %s"
}, },
"keyboard": { "keyboard": {
"discard_post": "Scarta post", "discard_post": "Scarta post",
@ -433,15 +463,23 @@
"follows_you": "Ti segue" "follows_you": "Ti segue"
}, },
"dashboard": { "dashboard": {
"posts": "post", "my_posts": "post",
"following": "seguendo", "my_following": "seguendo",
"followers": "seguaci" "my_followers": "seguaci",
"other_posts": "post",
"other_following": "seguendo",
"other_followers": "seguaci"
}, },
"fields": { "fields": {
"joined": "Profilo iscritto",
"add_row": "Aggiungi riga", "add_row": "Aggiungi riga",
"placeholder": { "placeholder": {
"label": "Etichetta", "label": "Etichetta",
"content": "Contenuto" "content": "Contenuto"
},
"verified": {
"short": "Verificato il %s",
"long": "La proprietà di questo collegamento è stata verificata il %s"
} }
}, },
"segmented_control": { "segmented_control": {
@ -707,6 +745,18 @@
}, },
"bookmark": { "bookmark": {
"title": "Segnalibri" "title": "Segnalibri"
},
"followed_tags": {
"title": "Etichette seguite",
"header": {
"posts": "post",
"participants": "partecipanti",
"posts_today": "post di oggi"
},
"actions": {
"follow": "Segui",
"unfollow": "Smetti di seguire"
}
} }
} }
} }

View File

@ -44,6 +44,20 @@
<string>%ld 文字</string> <string>%ld 文字</string>
</dict> </dict>
</dict> </dict>
<key>a11y.plural.count.characters_left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@character_count@ left</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>other</key>
<string>%ld characters</string>
</dict>
</dict>
<key>plural.count.followed_by_and_mutual</key> <key>plural.count.followed_by_and_mutual</key>
<dict> <dict>
<key>NSStringLocalizedFormatKey</key> <key>NSStringLocalizedFormatKey</key>

View File

@ -51,6 +51,11 @@
"clean_cache": { "clean_cache": {
"title": "キャッシュを消去", "title": "キャッシュを消去",
"message": "%sのキャッシュを消去しました。" "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"
} }
}, },
"controls": { "controls": {
@ -72,12 +77,13 @@
"discard": "破棄", "discard": "破棄",
"try_again": "再実行", "try_again": "再実行",
"take_photo": "写真を撮る", "take_photo": "写真を撮る",
"save_photo": "写真を撮る", "save_photo": "写真を保存",
"copy_photo": "写真をコピー", "copy_photo": "写真をコピー",
"sign_in": "サインイン", "sign_in": "ログイン",
"sign_up": "サインアップ", "sign_up": "アカウント作成",
"see_more": "もっと見る", "see_more": "もっと見る",
"preview": "プレビュー", "preview": "プレビュー",
"copy": "Copy",
"share": "共有", "share": "共有",
"share_user": "%sを共有", "share_user": "%sを共有",
"share_post": "投稿を共有", "share_post": "投稿を共有",
@ -91,12 +97,16 @@
"block_domain": "%sをブロック", "block_domain": "%sをブロック",
"unblock_domain": "%sのブロックを解除", "unblock_domain": "%sのブロックを解除",
"settings": "設定", "settings": "設定",
"delete": "削除" "delete": "削除",
"translate_post": {
"title": "Translate from %s",
"unknown_language": "Unknown"
}
}, },
"tabs": { "tabs": {
"home": "ホーム", "home": "ホーム",
"search": "検索", "search_and_explore": "Search and Explore",
"notification": "通知", "notifications": "通知",
"profile": "プロフィール" "profile": "プロフィール"
}, },
"keyboard": { "keyboard": {
@ -132,15 +142,17 @@
"sensitive_content": "閲覧注意", "sensitive_content": "閲覧注意",
"media_content_warning": "どこかをタップして表示", "media_content_warning": "どこかをタップして表示",
"tap_to_reveal": "タップして表示", "tap_to_reveal": "タップして表示",
"load_embed": "Load Embed",
"link_via_user": "%s via %s",
"poll": { "poll": {
"vote": "投票", "vote": "投票",
"closed": "終了" "closed": "終了"
}, },
"meta_entity": { "meta_entity": {
"url": "Link: %s", "url": "リンク: %s",
"hashtag": "Hashtag: %s", "hashtag": "ハッシュタグ: %s",
"mention": "Show Profile: %s", "mention": "プロフィールを表示: %s",
"email": "Email address: %s" "email": "メールアドレス: %s"
}, },
"actions": { "actions": {
"reply": "返信", "reply": "返信",
@ -153,6 +165,7 @@
"show_image": "画像を表示", "show_image": "画像を表示",
"show_gif": "GIFを表示", "show_gif": "GIFを表示",
"show_video_player": "Show video player", "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" "tap_then_hold_to_show_menu": "Tap then hold to show menu"
}, },
"tag": { "tag": {
@ -168,6 +181,12 @@
"private": "この投稿はフォロワーに限り見ることができます。", "private": "この投稿はフォロワーに限り見ることができます。",
"private_from_me": "この投稿はフォロワーに限り見ることができます。", "private_from_me": "この投稿はフォロワーに限り見ることができます。",
"direct": "この投稿はメンションされたユーザーに限り見ることができます。" "direct": "この投稿はメンションされたユーザーに限り見ることができます。"
},
"translation": {
"translated_from": "Translated from %s using %s",
"unknown_language": "Unknown",
"unknown_provider": "Unknown",
"show_original": "Shown Original"
} }
}, },
"friendship": { "friendship": {
@ -187,8 +206,8 @@
"unmute_user": "%sのミュートを解除", "unmute_user": "%sのミュートを解除",
"muted": "ミュート済み", "muted": "ミュート済み",
"edit_info": "編集", "edit_info": "編集",
"show_reblogs": "Show Reblogs", "show_reblogs": "ブーストを表示",
"hide_reblogs": "Hide Reblogs" "hide_reblogs": "ブーストを非表示"
}, },
"timeline": { "timeline": {
"filtered": "フィルター済み", "filtered": "フィルター済み",
@ -218,10 +237,16 @@
"get_started": "はじめる", "get_started": "はじめる",
"log_in": "ログイン" "log_in": "ログイン"
}, },
"login": {
"title": "Welcome back",
"subtitle": "アカウントを作成したサーバーにログインします。",
"server_search_field": {
"placeholder": "URLを入力またはサーバーを検索"
}
},
"server_picker": { "server_picker": {
"title": "サーバーを選択", "title": "サーバーを選択",
"subtitle": "あなたの興味分野・地域に合ったコミュニティや、汎用のものを選択してください。", "subtitle": "お住まいの地域、興味、目的に基づいてサーバーを選択してください。 サーバーに関係なく、Mastodonの誰とでも話せます。",
"subtitle_extend": "あなたの興味分野・地域に合ったコミュニティや、汎用のものを選択してください。各コミュニティはそれぞれ完全に独立した組織や個人によって運営されています。",
"button": { "button": {
"category": { "category": {
"all": "すべて", "all": "すべて",
@ -248,8 +273,7 @@
"category": "カテゴリー" "category": "カテゴリー"
}, },
"input": { "input": {
"placeholder": "サーバーを探す", "search_servers_or_enter_url": "コミュニティを検索またはURLを入力"
"search_servers_or_enter_url": "サーバーを検索またはURLを入力"
}, },
"empty_state": { "empty_state": {
"finding_servers": "利用可能なサーバーの検索...", "finding_servers": "利用可能なサーバーの検索...",
@ -330,7 +354,7 @@
"confirm_email": { "confirm_email": {
"title": "さいごにもうひとつ。", "title": "さいごにもうひとつ。",
"subtitle": "先程 %s にメールを送信しました。リンクをタップしてアカウントを確認してください。", "subtitle": "先程 %s にメールを送信しました。リンクをタップしてアカウントを確認してください。",
"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": { "button": {
"open_email_app": "メールアプリを開く", "open_email_app": "メールアプリを開く",
"resend": "再送信" "resend": "再送信"
@ -383,10 +407,12 @@
"attachment_broken": "%sは壊れていてMastodonにアップロードできません。", "attachment_broken": "%sは壊れていてMastodonにアップロードできません。",
"description_photo": "閲覧が難しいユーザーへの画像説明", "description_photo": "閲覧が難しいユーザーへの画像説明",
"description_video": "閲覧が難しいユーザーへの映像説明", "description_video": "閲覧が難しいユーザーへの映像説明",
"load_failed": "Load Failed", "load_failed": "読み込みに失敗しました",
"upload_failed": "Upload Failed", "upload_failed": "アップロードに失敗しました",
"can_not_recognize_this_media_attachment": "Can not regonize this media attachment", "can_not_recognize_this_media_attachment": "Can not recognize this media attachment",
"attachment_too_large": "Attachment too large" "attachment_too_large": "添付ファイルが大きすぎます",
"compressing_state": "Compressing...",
"server_processing_state": "Server Processing..."
}, },
"poll": { "poll": {
"duration_time": "期間: %s", "duration_time": "期間: %s",
@ -396,7 +422,9 @@
"one_day": "1日", "one_day": "1日",
"three_days": "3日", "three_days": "3日",
"seven_days": "7日", "seven_days": "7日",
"option_number": "オプション %ld" "option_number": "オプション %ld",
"the_poll_is_invalid": "The poll is invalid",
"the_poll_has_empty_option": "The poll has empty option"
}, },
"content_warning": { "content_warning": {
"placeholder": "ここに警告を書いてください..." "placeholder": "ここに警告を書いてください..."
@ -411,20 +439,22 @@
"space_to_add": "スペースを追加" "space_to_add": "スペースを追加"
}, },
"accessibility": { "accessibility": {
"append_attachment": "アタッチメントの追加", "append_attachment": "添付ファイルを追加",
"append_poll": "投票を追加", "append_poll": "投票を追加",
"remove_poll": "投票を消去", "remove_poll": "投票を消去",
"custom_emoji_picker": "カスタム絵文字ピッカー", "custom_emoji_picker": "カスタム絵文字ピッカー",
"enable_content_warning": "閲覧注意を有効にする", "enable_content_warning": "閲覧注意を有効にする",
"disable_content_warning": "閲覧注意を無効にする", "disable_content_warning": "閲覧注意を無効にする",
"post_visibility_menu": "投稿の表示メニュー" "post_visibility_menu": "投稿の表示メニュー",
"post_options": "投稿オプション",
"posting_as": "Posting as %s"
}, },
"keyboard": { "keyboard": {
"discard_post": "投稿を破棄", "discard_post": "投稿を破棄",
"publish_post": "投稿する", "publish_post": "投稿する",
"toggle_poll": "投票を切り替える", "toggle_poll": "投票を切り替える",
"toggle_content_warning": "閲覧注意を切り替える", "toggle_content_warning": "閲覧注意を切り替える",
"append_attachment_entry": "アタッチメントを追加 - %s", "append_attachment_entry": "添付ファイルを追加 - %s",
"select_visibility_entry": "公開設定を選択 - %s" "select_visibility_entry": "公開設定を選択 - %s"
} }
}, },
@ -433,15 +463,23 @@
"follows_you": "フォローされています" "follows_you": "フォローされています"
}, },
"dashboard": { "dashboard": {
"posts": "投稿", "my_posts": "posts",
"following": "フォロー", "my_following": "following",
"followers": "フォロワー" "my_followers": "followers",
"other_posts": "posts",
"other_following": "following",
"other_followers": "followers"
}, },
"fields": { "fields": {
"joined": "Joined",
"add_row": "行追加", "add_row": "行追加",
"placeholder": { "placeholder": {
"label": "ラベル", "label": "ラベル",
"content": "コンテンツ" "content": "コンテンツ"
},
"verified": {
"short": "Verified on %s",
"long": "Ownership of this link was checked on %s"
} }
}, },
"segmented_control": { "segmented_control": {
@ -469,12 +507,12 @@
"message": "%sのブロックを解除しますか" "message": "%sのブロックを解除しますか"
}, },
"confirm_show_reblogs": { "confirm_show_reblogs": {
"title": "Show Reblogs", "title": "ブーストを表示",
"message": "Confirm to show reblogs" "message": "ブーストを表示しますか?"
}, },
"confirm_hide_reblogs": { "confirm_hide_reblogs": {
"title": "Hide Reblogs", "title": "ブーストを非表示",
"message": "Confirm to hide reblogs" "message": "ブーストを非表示にしますか?"
} }
}, },
"accessibility": { "accessibility": {
@ -497,10 +535,10 @@
"followed_by_names": "Followed by %s" "followed_by_names": "Followed by %s"
}, },
"favorited_by": { "favorited_by": {
"title": "Favorited By" "title": "お気に入り"
}, },
"reblogged_by": { "reblogged_by": {
"title": "Reblogged By" "title": "ブースト"
}, },
"search": { "search": {
"title": "検索", "title": "検索",
@ -663,28 +701,28 @@
"step_two": { "step_two": {
"step_2_of_4": "ステップ 2/4", "step_2_of_4": "ステップ 2/4",
"which_rules_are_being_violated": "どのルールに違反していますか?", "which_rules_are_being_violated": "どのルールに違反していますか?",
"select_all_that_apply": "Select all that apply", "select_all_that_apply": "当てはまるものをすべて選んでください",
"i_just_dont_like_it": "I just dont like it" "i_just_dont_like_it": "興味がありません"
}, },
"step_three": { "step_three": {
"step_3_of_4": "ステップ 3/4", "step_3_of_4": "ステップ 3/4",
"are_there_any_posts_that_back_up_this_report": "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" "select_all_that_apply": "当てはまるものをすべて選んでください"
}, },
"step_four": { "step_four": {
"step_4_of_4": "ステップ 4/4", "step_4_of_4": "ステップ 4/4",
"is_there_anything_else_we_should_know": "その他に私たちに伝えておくべき事はありますか?" "is_there_anything_else_we_should_know": "その他に私たちに伝えておくべき事はありますか?"
}, },
"step_final": { "step_final": {
"dont_want_to_see_this": "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.", "when_you_see_something_you_dont_like_on_mastodon_you_can_remove_the_person_from_your_experience.": "Mastodonで気に入らないものを見た場合、その人をあなたの体験から取り除くことができます。",
"unfollow": "フォロー解除", "unfollow": "フォロー解除",
"unfollowed": "フォロー解除しました", "unfollowed": "フォロー解除しました",
"unfollow_user": "%sをフォロー解除", "unfollow_user": "%sをフォロー解除",
"mute_user": "%sをミュート", "mute_user": "%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.", "you_wont_see_their_posts_or_reblogs_in_your_home_feed_they_wont_know_they_ve_been_muted": "ホームに投稿やブーストは表示されなくなります。相手にミュートしたことは伝わりません。",
"block_user": "%sをブロック", "block_user": "%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.", "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さんに対して対応することができます。" "while_we_review_this_you_can_take_action_against_user": "私たちが確認している間でも、あなたは%sさんに対して対応することができます。"
} }
}, },
@ -706,7 +744,19 @@
"accessibility_hint": "チュートリアルを閉じるには、ダブルタップしてください" "accessibility_hint": "チュートリアルを閉じるには、ダブルタップしてください"
}, },
"bookmark": { "bookmark": {
"title": "Bookmarks" "title": "ブックマーク"
},
"followed_tags": {
"title": "Followed Tags",
"header": {
"posts": "posts",
"participants": "participants",
"posts_today": "posts today"
},
"actions": {
"follow": "Follow",
"unfollow": "Unfollow"
}
} }
} }
} }

View File

@ -50,6 +50,22 @@
<string>%ld yisekkilen</string> <string>%ld yisekkilen</string>
</dict> </dict>
</dict> </dict>
<key>a11y.plural.count.characters_left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@character_count@ left</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 n usekkil</string>
<key>other</key>
<string>%ld n isekkilen</string>
</dict>
</dict>
<key>plural.count.followed_by_and_mutual</key> <key>plural.count.followed_by_and_mutual</key>
<dict> <dict>
<key>NSStringLocalizedFormatKey</key> <key>NSStringLocalizedFormatKey</key>
@ -120,7 +136,7 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>1 tsuffeɣt</string> <string>1 n tsuffeɣt</string>
<key>other</key> <key>other</key>
<string>%ld n tsuffaɣ</string> <string>%ld n tsuffaɣ</string>
</dict> </dict>
@ -296,9 +312,9 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>Yeqqim-d 1 wass</string> <string>Yeqqim-d 1 n wass</string>
<key>other</key> <key>other</key>
<string>Qqimen-d %ld wussan</string> <string>Qqimen-d %ld n wussan</string>
</dict> </dict>
</dict> </dict>
<key>date.hour.left</key> <key>date.hour.left</key>
@ -312,9 +328,9 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>Yeqqim-d 1 usrag</string> <string>Yeqqim-d 1 n wesrag</string>
<key>other</key> <key>other</key>
<string>Qqimen-d %ld yisragen</string> <string>Qqimen-d %ld n yisragen</string>
</dict> </dict>
</dict> </dict>
<key>date.minute.left</key> <key>date.minute.left</key>
@ -328,9 +344,9 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>1 tesdat i d-yeqqimen</string> <string>1 n tesdat i d-yeqqimen</string>
<key>other</key> <key>other</key>
<string>%ld tesdatin i d-yeqqimen</string> <string>%ld n tesdatin i d-yeqqimen</string>
</dict> </dict>
</dict> </dict>
<key>date.second.left</key> <key>date.second.left</key>
@ -344,9 +360,9 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>1 tasint i d-yeqqimen</string> <string>1 n tasint i d-yeqqimen</string>
<key>other</key> <key>other</key>
<string>%ld tsinin i d-yeqqimen</string> <string>%ld n tasinin i d-yeqqimen</string>
</dict> </dict>
</dict> </dict>
<key>date.year.ago.abbr</key> <key>date.year.ago.abbr</key>
@ -360,9 +376,9 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>1 useggas aya</string> <string>%ld n useggas aya</string>
<key>other</key> <key>other</key>
<string>%ld yiseggasen aya</string> <string>%ld n yiseggasen aya</string>
</dict> </dict>
</dict> </dict>
<key>date.month.ago.abbr</key> <key>date.month.ago.abbr</key>
@ -376,9 +392,9 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>1 wayyur aya</string> <string>%ld n wayyur aya</string>
<key>other</key> <key>other</key>
<string>%ld wayyuren aya</string> <string>%ld n wayyuren aya</string>
</dict> </dict>
</dict> </dict>
<key>date.day.ago.abbr</key> <key>date.day.ago.abbr</key>
@ -392,9 +408,9 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>1 wass aya</string> <string>%ld n wass aya</string>
<key>other</key> <key>other</key>
<string>%ld wussan aya</string> <string>%ld n wussan aya</string>
</dict> </dict>
</dict> </dict>
<key>date.hour.ago.abbr</key> <key>date.hour.ago.abbr</key>
@ -408,9 +424,9 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>1 usrag aya</string> <string>%ld n wesrag aya</string>
<key>other</key> <key>other</key>
<string>%ld yisragen aya</string> <string>%ld n yisragen aya</string>
</dict> </dict>
</dict> </dict>
<key>date.minute.ago.abbr</key> <key>date.minute.ago.abbr</key>
@ -424,9 +440,9 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>1 tesdat aya</string> <string>%ld n tesdat aya</string>
<key>other</key> <key>other</key>
<string>%ld tesdatin aya</string> <string>%ld n tesdatin aya</string>
</dict> </dict>
</dict> </dict>
<key>date.second.ago.abbr</key> <key>date.second.ago.abbr</key>
@ -440,9 +456,9 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>1 tasint aya</string> <string>%ld n tasint aya</string>
<key>other</key> <key>other</key>
<string>%ld tsinin aya</string> <string>%ld n tasinin aya</string>
</dict> </dict>
</dict> </dict>
</dict> </dict>

View File

@ -51,6 +51,11 @@
"clean_cache": { "clean_cache": {
"title": "Sfeḍ tuffirt", "title": "Sfeḍ tuffirt",
"message": "Yettwasfeḍ %s n tkatut tuffirt akken iwata." "message": "Yettwasfeḍ %s n tkatut tuffirt akken iwata."
},
"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"
} }
}, },
"controls": { "controls": {
@ -75,9 +80,10 @@
"save_photo": "Sekles tawlaft", "save_photo": "Sekles tawlaft",
"copy_photo": "Nɣel tawlaft", "copy_photo": "Nɣel tawlaft",
"sign_in": "Qqen", "sign_in": "Qqen",
"sign_up": "Jerred amiḍan", "sign_up": "Snulfu-d amiḍan",
"see_more": "Wali ugar", "see_more": "Wali ugar",
"preview": "Taskant", "preview": "Taskant",
"copy": "Copy",
"share": "Bḍu", "share": "Bḍu",
"share_user": "Bḍu %s", "share_user": "Bḍu %s",
"share_post": "Bḍu tasuffeɣt", "share_post": "Bḍu tasuffeɣt",
@ -91,12 +97,16 @@
"block_domain": "Sewḥel %s", "block_domain": "Sewḥel %s",
"unblock_domain": "Serreḥ i %s", "unblock_domain": "Serreḥ i %s",
"settings": "Iɣewwaṛen", "settings": "Iɣewwaṛen",
"delete": "Kkes" "delete": "Kkes",
"translate_post": {
"title": "Translate from %s",
"unknown_language": "Unknown"
}
}, },
"tabs": { "tabs": {
"home": "Agejdan", "home": "Agejdan",
"search": "Nadi", "search_and_explore": "Search and Explore",
"notification": "Tilɣa", "notifications": "Notifications",
"profile": "Amaɣnu" "profile": "Amaɣnu"
}, },
"keyboard": { "keyboard": {
@ -132,15 +142,17 @@
"sensitive_content": "Agbur amḥulfu", "sensitive_content": "Agbur amḥulfu",
"media_content_warning": "Sit anida tebɣiḍ i wakken ad twaliḍ", "media_content_warning": "Sit anida tebɣiḍ i wakken ad twaliḍ",
"tap_to_reveal": "Sit i uskan", "tap_to_reveal": "Sit i uskan",
"load_embed": "Load Embed",
"link_via_user": "%s via %s",
"poll": { "poll": {
"vote": "Dɣeṛ", "vote": "Dɣeṛ",
"closed": "Ifukk" "closed": "Ifukk"
}, },
"meta_entity": { "meta_entity": {
"url": "Link: %s", "url": "Asaɣ : %s",
"hashtag": "Hashtag: %s", "hashtag": "Ahacṭag : %s",
"mention": "Show Profile: %s", "mention": "Sken-d amaɣnu : %s",
"email": "Email address: %s" "email": "Tansa imayl : %s"
}, },
"actions": { "actions": {
"reply": "Err", "reply": "Err",
@ -153,6 +165,7 @@
"show_image": "Sken tugna", "show_image": "Sken tugna",
"show_gif": "Sken GIF", "show_gif": "Sken GIF",
"show_video_player": "Sken ameɣri n tvidyut", "show_video_player": "Sken ameɣri n tvidyut",
"share_link_in_post": "Share Link in Post",
"tap_then_hold_to_show_menu": "Sit teǧǧeḍ aḍad-ik•im i wakken ad d-iffeɣ wumuɣ" "tap_then_hold_to_show_menu": "Sit teǧǧeḍ aḍad-ik•im i wakken ad d-iffeɣ wumuɣ"
}, },
"tag": { "tag": {
@ -168,6 +181,12 @@
"private": "D ineḍfaren-is kan i izemren ad walin tsuffeɣ-a.", "private": "D ineḍfaren-is kan i izemren ad walin tsuffeɣ-a.",
"private_from_me": "D ineḍfaren-is kan i izemren ad walin tsuffeɣ-a.", "private_from_me": "D ineḍfaren-is kan i izemren ad walin tsuffeɣ-a.",
"direct": "D ineḍfaren-is kan i izemren ad walin tsuffeɣ-a." "direct": "D ineḍfaren-is kan i izemren ad walin tsuffeɣ-a."
},
"translation": {
"translated_from": "Translated from %s using %s",
"unknown_language": "Unknown",
"unknown_provider": "Unknown",
"show_original": "Shown Original"
} }
}, },
"friendship": { "friendship": {
@ -218,10 +237,16 @@
"get_started": "Aha bdu tura", "get_started": "Aha bdu tura",
"log_in": "Qqen" "log_in": "Qqen"
}, },
"login": {
"title": "Ansuf yess·ek·em",
"subtitle": "Log you in on the server you created your account on.",
"server_search_field": {
"placeholder": "Sekcem URL neɣ nadi ɣef uqeddac-ik·im"
}
},
"server_picker": { "server_picker": {
"title": "Mastodon yettwaxdem i yiseqdacen deg waṭas n temɣiwnin.", "title": "Mastodon yettwaxdem i yiseqdacen deg waṭas n temɣiwnin.",
"subtitle": "Fren tamɣiwent almend n wayen tḥemmleḍ, n tmurt-ik neɣ n yiswi-inek amatu.", "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.",
"subtitle_extend": "Fren tamɣiwent almend n wayen tḥemmleḍ, n tmurt-ik neɣ n yiswi-inek amatu. Yal tamɣiwent tsedday-itt tkebbanit neɣ amdan ilelliyen.",
"button": { "button": {
"category": { "category": {
"all": "Akk", "all": "Akk",
@ -248,7 +273,6 @@
"category": "TAGGAYT" "category": "TAGGAYT"
}, },
"input": { "input": {
"placeholder": "Nadi timɣiwnin",
"search_servers_or_enter_url": "Nadi timɣiwnin neɣ sekcem URL" "search_servers_or_enter_url": "Nadi timɣiwnin neɣ sekcem URL"
}, },
"empty_state": { "empty_state": {
@ -352,8 +376,8 @@
"navigation_bar_state": { "navigation_bar_state": {
"offline": "Beṛṛa n tuqqna", "offline": "Beṛṛa n tuqqna",
"new_posts": "Tissufaɣ timaynutin", "new_posts": "Tissufaɣ timaynutin",
"published": "Yettwasuffeɣ!", "published": "Tettwasuffeɣ!",
"Publishing": "Asuffeɣ tasuffeɣt...", "Publishing": "Asuffeɣ n tasuffeɣt...",
"accessibility": { "accessibility": {
"logo_label": "Taqeffalt n ulugu", "logo_label": "Taqeffalt n ulugu",
"logo_hint": "Sit i wakken ad tɛeddiḍ i usawen, sit tikkelt-nniḍen i wakken ad tɛeddiḍ ɣer wadig yezrin" "logo_hint": "Sit i wakken ad tɛeddiḍ i usawen, sit tikkelt-nniḍen i wakken ad tɛeddiḍ ɣer wadig yezrin"
@ -385,8 +409,10 @@
"description_video": "Glem-d tavidyut i wid yesɛan ugur deg yiẓri...", "description_video": "Glem-d tavidyut i wid yesɛan ugur deg yiẓri...",
"load_failed": "Load Failed", "load_failed": "Load Failed",
"upload_failed": "Upload Failed", "upload_failed": "Upload Failed",
"can_not_recognize_this_media_attachment": "Can not regonize this media attachment", "can_not_recognize_this_media_attachment": "Can not recognize this media attachment",
"attachment_too_large": "Attachment too large" "attachment_too_large": "Attachment too large",
"compressing_state": "Compressing...",
"server_processing_state": "Server Processing..."
}, },
"poll": { "poll": {
"duration_time": "Tangazt: %s", "duration_time": "Tangazt: %s",
@ -396,7 +422,9 @@
"one_day": "1 n wass", "one_day": "1 n wass",
"three_days": "3 n wussan", "three_days": "3 n wussan",
"seven_days": "7 n wussan", "seven_days": "7 n wussan",
"option_number": "Taxtiṛt %ld" "option_number": "Taxtiṛt %ld",
"the_poll_is_invalid": "The poll is invalid",
"the_poll_has_empty_option": "The poll has empty option"
}, },
"content_warning": { "content_warning": {
"placeholder": "Aru alɣu-inek s telqeyt da..." "placeholder": "Aru alɣu-inek s telqeyt da..."
@ -417,7 +445,9 @@
"custom_emoji_picker": "Amefran n yimujiten udmawanen", "custom_emoji_picker": "Amefran n yimujiten udmawanen",
"enable_content_warning": "Rmed alɣu n ugbur", "enable_content_warning": "Rmed alɣu n ugbur",
"disable_content_warning": "Sens alɣu n ugbur", "disable_content_warning": "Sens alɣu n ugbur",
"post_visibility_menu": "Umuɣ n ubani n tsuffeɣt" "post_visibility_menu": "Umuɣ n ubani n tsuffeɣt",
"post_options": "Post Options",
"posting_as": "Posting as %s"
}, },
"keyboard": { "keyboard": {
"discard_post": "Sefsex tasuffeɣt", "discard_post": "Sefsex tasuffeɣt",
@ -433,15 +463,23 @@
"follows_you": "Yeṭṭafaṛ-ik•im" "follows_you": "Yeṭṭafaṛ-ik•im"
}, },
"dashboard": { "dashboard": {
"posts": "tisuffaɣ", "my_posts": "posts",
"following": "iṭafaṛ", "my_following": "following",
"followers": "imeḍfaren" "my_followers": "followers",
"other_posts": "posts",
"other_following": "following",
"other_followers": "followers"
}, },
"fields": { "fields": {
"joined": "Joined",
"add_row": "Rnu izirig", "add_row": "Rnu izirig",
"placeholder": { "placeholder": {
"label": "Tabzimt", "label": "Tabzimt",
"content": "Agbur" "content": "Agbur"
},
"verified": {
"short": "Verified on %s",
"long": "Ownership of this link was checked on %s"
} }
}, },
"segmented_control": { "segmented_control": {
@ -656,7 +694,7 @@
"its_spam": "D aspam", "its_spam": "D aspam",
"malicious_links_fake_engagement_or_repetetive_replies": "Yir iseɣwan, yir agman d tririyin i d-yettuɣalen", "malicious_links_fake_engagement_or_repetetive_replies": "Yir iseɣwan, yir agman d tririyin i d-yettuɣalen",
"it_violates_server_rules": "Truẓi n yilugan n uqeddac", "it_violates_server_rules": "Truẓi n yilugan n uqeddac",
"you_are_aware_that_it_breaks_specific_rules": "Teẓriḍ ytettruẓu kra n yilugan", "you_are_aware_that_it_breaks_specific_rules": "Teẓriḍ y·tettruẓu kra n yilugan",
"its_something_else": "Ɣef ssebba-nniḍen", "its_something_else": "Ɣef ssebba-nniḍen",
"the_issue_does_not_fit_into_other_categories": "Ugur ur yemṣada ara akk d taggayin-nniḍen" "the_issue_does_not_fit_into_other_categories": "Ugur ur yemṣada ara akk d taggayin-nniḍen"
}, },
@ -707,6 +745,18 @@
}, },
"bookmark": { "bookmark": {
"title": "Bookmarks" "title": "Bookmarks"
},
"followed_tags": {
"title": "Followed Tags",
"header": {
"posts": "posts",
"participants": "participants",
"posts_today": "posts today"
},
"actions": {
"follow": "Follow",
"unfollow": "Unfollow"
}
} }
} }
} }

View File

@ -50,6 +50,22 @@
<string>%ld tîp</string> <string>%ld tîp</string>
</dict> </dict>
</dict> </dict>
<key>a11y.plural.count.characters_left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@character_count@ maye</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 peyv</string>
<key>other</key>
<string>%ld peyv</string>
</dict>
</dict>
<key>plural.count.followed_by_and_mutual</key> <key>plural.count.followed_by_and_mutual</key>
<dict> <dict>
<key>NSStringLocalizedFormatKey</key> <key>NSStringLocalizedFormatKey</key>

View File

@ -51,6 +51,11 @@
"clean_cache": { "clean_cache": {
"title": "Pêşbîrê pak bike", "title": "Pêşbîrê pak bike",
"message": "Pêşbîra %s biserketî hate pakkirin." "message": "Pêşbîra %s biserketî hate pakkirin."
},
"translation_failed": {
"title": "Nîşe",
"message": "Werger têk çû. Dibe ku rêvebir werger li ser vê rajakarê çalak nekiribe an jî ev rajakar guhertoyek kevntir a Mastodon e ku werger hîn nehatiye piştgirîkirin.",
"button": "BAŞ E"
} }
}, },
"controls": { "controls": {
@ -75,9 +80,10 @@
"save_photo": "Wêneyê tomar bike", "save_photo": "Wêneyê tomar bike",
"copy_photo": "Wêneyê jê bigire", "copy_photo": "Wêneyê jê bigire",
"sign_in": "Têkeve", "sign_in": "Têkeve",
"sign_up": "Tomar bibe", "sign_up": "Ajimêr biafirîne",
"see_more": "Bêtir bibîne", "see_more": "Bêtir bibîne",
"preview": "Pêşdîtin", "preview": "Pêşdîtin",
"copy": "Jê bigire",
"share": "Parve bike", "share": "Parve bike",
"share_user": "%s parve bike", "share_user": "%s parve bike",
"share_post": "Şandiyê parve bike", "share_post": "Şandiyê parve bike",
@ -91,12 +97,16 @@
"block_domain": "%s asteng bike", "block_domain": "%s asteng bike",
"unblock_domain": "%s asteng neke", "unblock_domain": "%s asteng neke",
"settings": "Sazkarî", "settings": "Sazkarî",
"delete": "Jê bibe" "delete": "Jê bibe",
"translate_post": {
"title": "Ji %s wergerîne",
"unknown_language": "Nenas"
}
}, },
"tabs": { "tabs": {
"home": "Serrûpel", "home": "Serrûpel",
"search": "Bigere", "search_and_explore": "Bigere û vekole",
"notification": "Agahdarî", "notifications": "Agahdarî",
"profile": "Profîl" "profile": "Profîl"
}, },
"keyboard": { "keyboard": {
@ -132,6 +142,8 @@
"sensitive_content": "Naveroka hestiyarî", "sensitive_content": "Naveroka hestiyarî",
"media_content_warning": "Ji bo eşkerekirinê li derekî bitikîne", "media_content_warning": "Ji bo eşkerekirinê li derekî bitikîne",
"tap_to_reveal": "Ji bo dîtinê bitikîne", "tap_to_reveal": "Ji bo dîtinê bitikîne",
"load_embed": "Load Embed",
"link_via_user": "%s bi riya %s",
"poll": { "poll": {
"vote": "Deng bide", "vote": "Deng bide",
"closed": "Girtî" "closed": "Girtî"
@ -153,6 +165,7 @@
"show_image": "Wêneyê nîşan bide", "show_image": "Wêneyê nîşan bide",
"show_gif": "GIF nîşan bide", "show_gif": "GIF nîşan bide",
"show_video_player": "Lêdera vîdyoyê nîşan bide", "show_video_player": "Lêdera vîdyoyê nîşan bide",
"share_link_in_post": "Girêdanê di şandiyê de parve bike",
"tap_then_hold_to_show_menu": "Ji bo nîşandana menuyê dirêj bitikîne" "tap_then_hold_to_show_menu": "Ji bo nîşandana menuyê dirêj bitikîne"
}, },
"tag": { "tag": {
@ -168,6 +181,12 @@
"private": "Tenê şopînerên wan dikarin vê şandiyê bibînin.", "private": "Tenê şopînerên wan dikarin vê şandiyê bibînin.",
"private_from_me": "Tenê şopînerên min dikarin vê şandiyê bibînin.", "private_from_me": "Tenê şopînerên min dikarin vê şandiyê bibînin.",
"direct": "Tenê bikarhênerê qalkirî dikare vê şandiyê bibîne." "direct": "Tenê bikarhênerê qalkirî dikare vê şandiyê bibîne."
},
"translation": {
"translated_from": "Hate wergerandin ji %s bi riya %s",
"unknown_language": "Nenas",
"unknown_provider": "Nenas",
"show_original": "A resen nîşan bide"
} }
}, },
"friendship": { "friendship": {
@ -218,10 +237,16 @@
"get_started": "Dest pê bike", "get_started": "Dest pê bike",
"log_in": "Têkeve" "log_in": "Têkeve"
}, },
"login": {
"title": "Dîsa bi xêr hatî",
"subtitle": "Têketinê bike ser rajekarê ku te ajimêrê xwe tê de çê kiriye.",
"server_search_field": {
"placeholder": "Girêdanê têxe an jî li rajekarê xwe bigere"
}
},
"server_picker": { "server_picker": {
"title": "Mastodon ji bikarhênerên di civakên cuda de pêk tê.", "title": "Mastodon ji bikarhênerên di civakên cuda de pêk tê.",
"subtitle": "Li gorî berjewendî, herêm, an jî armancek gelemperî civakekê hilbijêre.", "subtitle": "Li gorî herêm, berjewendî, an jî armanceke giştî rajekarekê hilbijêre. Tu hîn jî dikarî li ser Mastodon bi her kesî re biaxivî, her rajekarê te çi be.",
"subtitle_extend": "Li gorî berjewendî, herêm, an jî armancek gelemperî civakekê hilbijêre. Her civakek ji hêla rêxistinek an kesek bi tevahî serbixwe ve tê xebitandin.",
"button": { "button": {
"category": { "category": {
"all": "Hemû", "all": "Hemû",
@ -248,8 +273,7 @@
"category": "BEŞ" "category": "BEŞ"
}, },
"input": { "input": {
"placeholder": "Li rajekaran bigere", "search_servers_or_enter_url": "Li civakan bigere an jî girêdanê têxe"
"search_servers_or_enter_url": "Li rajekaran bigere an jî girêdanê têxe"
}, },
"empty_state": { "empty_state": {
"finding_servers": "Peydakirina rajekarên berdest...", "finding_servers": "Peydakirina rajekarên berdest...",
@ -386,7 +410,9 @@
"load_failed": "Barkirin têk çû", "load_failed": "Barkirin têk çû",
"upload_failed": "Barkirin têk çû", "upload_failed": "Barkirin têk çû",
"can_not_recognize_this_media_attachment": "Nikare ev pêveka medyayê nas bike", "can_not_recognize_this_media_attachment": "Nikare ev pêveka medyayê nas bike",
"attachment_too_large": "Pêvek pir mezin e" "attachment_too_large": "Pêvek pir mezin e",
"compressing_state": "Tê guvaştin...",
"server_processing_state": "Pêvajoya rajekar pêş de diçe..."
}, },
"poll": { "poll": {
"duration_time": "Dirêjî: %s", "duration_time": "Dirêjî: %s",
@ -396,7 +422,9 @@
"one_day": "1 Roj", "one_day": "1 Roj",
"three_days": "3 Roj", "three_days": "3 Roj",
"seven_days": "7 Roj", "seven_days": "7 Roj",
"option_number": "Vebijêrk %ld" "option_number": "Vebijêrk %ld",
"the_poll_is_invalid": "Ev dengdayîn ne derbasdar e",
"the_poll_has_empty_option": "Vebijêrkên vê dengdayînê vala ne"
}, },
"content_warning": { "content_warning": {
"placeholder": "Li vir hişyariyek hûrgilî binivîsine..." "placeholder": "Li vir hişyariyek hûrgilî binivîsine..."
@ -417,7 +445,9 @@
"custom_emoji_picker": "Hilbijêrê emojî yên kesanekirî", "custom_emoji_picker": "Hilbijêrê emojî yên kesanekirî",
"enable_content_warning": "Hişyariya naverokê çalak bike", "enable_content_warning": "Hişyariya naverokê çalak bike",
"disable_content_warning": "Hişyariya naverokê neçalak bike", "disable_content_warning": "Hişyariya naverokê neçalak bike",
"post_visibility_menu": "Kulîna xuyabûna şandiyê" "post_visibility_menu": "Kulîna xuyabûna şandiyê",
"post_options": "Vebijêrkên şandiyê",
"posting_as": "Biweşîne wekî %s"
}, },
"keyboard": { "keyboard": {
"discard_post": "Şandî paşguh bike", "discard_post": "Şandî paşguh bike",
@ -433,15 +463,23 @@
"follows_you": "Te dişopîne" "follows_you": "Te dişopîne"
}, },
"dashboard": { "dashboard": {
"posts": "şandî", "my_posts": "şandî",
"following": "dişopîne", "my_following": "dişopîne",
"followers": "şopîner" "my_followers": "şopîner",
"other_posts": "şandî",
"other_following": "dişopîne",
"other_followers": "şopîner"
}, },
"fields": { "fields": {
"joined": "Dîroka tevlîbûnê",
"add_row": "Rêzê tevlî bike", "add_row": "Rêzê tevlî bike",
"placeholder": { "placeholder": {
"label": "Nîşan", "label": "Nîşan",
"content": "Naverok" "content": "Naverok"
},
"verified": {
"short": "Hate piştrastkirin li ser %s",
"long": "Xwedaniya li vê girêdanê di %s de hatiye kontrolkirin"
} }
}, },
"segmented_control": { "segmented_control": {
@ -707,6 +745,18 @@
}, },
"bookmark": { "bookmark": {
"title": "Şûnpel" "title": "Şûnpel"
},
"followed_tags": {
"title": "Hashtagên şopandî",
"header": {
"posts": "şandî",
"participants": "beşdar",
"posts_today": "şandiyên îro"
},
"actions": {
"follow": "Bişopîne",
"unfollow": "Neşopîne"
}
} }
} }
} }

View File

@ -44,6 +44,20 @@
<string>%ld 글자</string> <string>%ld 글자</string>
</dict> </dict>
</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>other</key>
<string>%ld 글자</string>
</dict>
</dict>
<key>plural.count.followed_by_and_mutual</key> <key>plural.count.followed_by_and_mutual</key>
<dict> <dict>
<key>NSStringLocalizedFormatKey</key> <key>NSStringLocalizedFormatKey</key>

View File

@ -51,6 +51,11 @@
"clean_cache": { "clean_cache": {
"title": "캐시 삭제", "title": "캐시 삭제",
"message": "Successfully cleaned %s 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": "확인"
} }
}, },
"controls": { "controls": {
@ -75,9 +80,10 @@
"save_photo": "사진 저장", "save_photo": "사진 저장",
"copy_photo": "사진 복사", "copy_photo": "사진 복사",
"sign_in": "로그인", "sign_in": "로그인",
"sign_up": "회원가입", "sign_up": "계정 생성",
"see_more": "더 보기", "see_more": "더 보기",
"preview": "미리보기", "preview": "미리보기",
"copy": "Copy",
"share": "공유", "share": "공유",
"share_user": "%s를 공유", "share_user": "%s를 공유",
"share_post": "게시물 공유", "share_post": "게시물 공유",
@ -91,12 +97,16 @@
"block_domain": "%s 차단하기", "block_domain": "%s 차단하기",
"unblock_domain": "%s 차단 해제", "unblock_domain": "%s 차단 해제",
"settings": "설정", "settings": "설정",
"delete": "삭제" "delete": "삭제",
"translate_post": {
"title": "Translate from %s",
"unknown_language": "Unknown"
}
}, },
"tabs": { "tabs": {
"home": "홈", "home": "홈",
"search": "검색", "search_and_explore": "Search and Explore",
"notification": "알림", "notifications": "Notifications",
"profile": "프로필" "profile": "프로필"
}, },
"keyboard": { "keyboard": {
@ -132,6 +142,8 @@
"sensitive_content": "민감한 콘텐츠", "sensitive_content": "민감한 콘텐츠",
"media_content_warning": "아무 곳이나 눌러서 보기", "media_content_warning": "아무 곳이나 눌러서 보기",
"tap_to_reveal": "눌러서 확인", "tap_to_reveal": "눌러서 확인",
"load_embed": "Load Embed",
"link_via_user": "%s via %s",
"poll": { "poll": {
"vote": "투표", "vote": "투표",
"closed": "마감" "closed": "마감"
@ -153,6 +165,7 @@
"show_image": "이미지 표시", "show_image": "이미지 표시",
"show_gif": "GIF 보기", "show_gif": "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" "tap_then_hold_to_show_menu": "Tap then hold to show menu"
}, },
"tag": { "tag": {
@ -168,6 +181,12 @@
"private": "Only their followers can see this post.", "private": "Only their followers can see this post.",
"private_from_me": "Only my followers can see this post.", "private_from_me": "Only my followers can see this post.",
"direct": "Only mentioned user can see this post." "direct": "Only mentioned user can see this post."
},
"translation": {
"translated_from": "%s에서 %s를 사용해 번역됨",
"unknown_language": "알 수 없음",
"unknown_provider": "알 수 없음",
"show_original": "원본 보기"
} }
}, },
"friendship": { "friendship": {
@ -218,10 +237,16 @@
"get_started": "시작하기", "get_started": "시작하기",
"log_in": "로그인" "log_in": "로그인"
}, },
"login": {
"title": "돌아오신 것을 환영합니다",
"subtitle": "계정을 만든 서버에 로그인.",
"server_search_field": {
"placeholder": "URL을 입력하거나 서버를 검색"
}
},
"server_picker": { "server_picker": {
"title": "서버를 고르세요,\n아무 서버나 좋습니다.", "title": "서버를 고르세요,\n아무 서버나 좋습니다.",
"subtitle": "Pick a server based on your interests, region, or a general purpose one.", "subtitle": "당신의 지역이나, 관심사에 따라, 혹은 그냥 일반적인 목적의 서버를 고르세요. 어떤 서버를 고르더라도 마스토돈의 다른 모두와 소통할 수 있습니다.",
"subtitle_extend": "Pick a server based on your interests, region, or a general purpose one. Each server is operated by an entirely independent organization or individual.",
"button": { "button": {
"category": { "category": {
"all": "모두", "all": "모두",
@ -248,8 +273,7 @@
"category": "분류" "category": "분류"
}, },
"input": { "input": {
"placeholder": "서버 검색", "search_servers_or_enter_url": "커뮤니티를 검색하거나 URL을 입력"
"search_servers_or_enter_url": "서버를 검색하거나 URL을 입력하세요"
}, },
"empty_state": { "empty_state": {
"finding_servers": "사용 가능한 서버를 찾는 중입니다...", "finding_servers": "사용 가능한 서버를 찾는 중입니다...",
@ -385,8 +409,10 @@
"description_video": "시각장애인을 위한 영상 설명…", "description_video": "시각장애인을 위한 영상 설명…",
"load_failed": "불러오기 실패", "load_failed": "불러오기 실패",
"upload_failed": "업로드 실패", "upload_failed": "업로드 실패",
"can_not_recognize_this_media_attachment": "이 미디어 첨부파일을 인식할 수 없습니다", "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": { "poll": {
"duration_time": "기간: %s", "duration_time": "기간: %s",
@ -396,7 +422,9 @@
"one_day": "1일", "one_day": "1일",
"three_days": "3일", "three_days": "3일",
"seven_days": "7일", "seven_days": "7일",
"option_number": "옵션 %ld" "option_number": "옵션 %ld",
"the_poll_is_invalid": "The poll is invalid",
"the_poll_has_empty_option": "The poll has empty option"
}, },
"content_warning": { "content_warning": {
"placeholder": "정확한 경고 문구를 여기에 작성하세요…" "placeholder": "정확한 경고 문구를 여기에 작성하세요…"
@ -417,7 +445,9 @@
"custom_emoji_picker": "커스텀 에모지 선택기", "custom_emoji_picker": "커스텀 에모지 선택기",
"enable_content_warning": "열람 주의 설정", "enable_content_warning": "열람 주의 설정",
"disable_content_warning": "열람 주의 해제", "disable_content_warning": "열람 주의 해제",
"post_visibility_menu": "게시물 공개범위 메뉴" "post_visibility_menu": "게시물 공개범위 메뉴",
"post_options": "게시물 옵션",
"posting_as": "%s로 게시"
}, },
"keyboard": { "keyboard": {
"discard_post": "글 버리기", "discard_post": "글 버리기",
@ -433,15 +463,23 @@
"follows_you": "Follows You" "follows_you": "Follows You"
}, },
"dashboard": { "dashboard": {
"posts": "게시물", "my_posts": "posts",
"following": "팔로잉", "my_following": "following",
"followers": "팔로워" "my_followers": "followers",
"other_posts": "posts",
"other_following": "following",
"other_followers": "followers"
}, },
"fields": { "fields": {
"joined": "가입일",
"add_row": "행 추가", "add_row": "행 추가",
"placeholder": { "placeholder": {
"label": "라벨", "label": "라벨",
"content": "내용" "content": "내용"
},
"verified": {
"short": "Verified on %s",
"long": "Ownership of this link was checked on %s"
} }
}, },
"segmented_control": { "segmented_control": {
@ -707,6 +745,18 @@
}, },
"bookmark": { "bookmark": {
"title": "Bookmarks" "title": "Bookmarks"
},
"followed_tags": {
"title": "팔로우한 태그",
"header": {
"posts": "게시물",
"participants": "참가자",
"posts_today": "오늘"
},
"actions": {
"follow": "팔로우",
"unfollow": "팔로우 해제"
}
} }
} }
} }

View File

@ -13,17 +13,17 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ld unread notification</string> <string>%ld nelasītu paziņojumu</string>
<key>one</key> <key>one</key>
<string>1 unread notification</string> <string>1 nelasīts paziņojums</string>
<key>other</key> <key>other</key>
<string>%ld unread notification</string> <string>%ld nelasīti paziņojumi</string>
</dict> </dict>
</dict> </dict>
<key>a11y.plural.count.input_limit_exceeds</key> <key>a11y.plural.count.input_limit_exceeds</key>
<dict> <dict>
<key>NSStringLocalizedFormatKey</key> <key>NSStringLocalizedFormatKey</key>
<string>Input limit exceeds %#@character_count@</string> <string>Ievades ierobežojums pārsniedz %#@character_count@</string>
<key>character_count</key> <key>character_count</key>
<dict> <dict>
<key>NSStringFormatSpecTypeKey</key> <key>NSStringFormatSpecTypeKey</key>
@ -31,17 +31,17 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ld characters</string> <string>%ld rakstzīmju</string>
<key>one</key> <key>one</key>
<string>1 character</string> <string>1 rakstzīme</string>
<key>other</key> <key>other</key>
<string>%ld characters</string> <string>%ld rakstzīmes</string>
</dict> </dict>
</dict> </dict>
<key>a11y.plural.count.input_limit_remains</key> <key>a11y.plural.count.input_limit_remains</key>
<dict> <dict>
<key>NSStringLocalizedFormatKey</key> <key>NSStringLocalizedFormatKey</key>
<string>Input limit remains %#@character_count@</string> <string>Ievades ierobežojums paliek %#@character_count@</string>
<key>character_count</key> <key>character_count</key>
<dict> <dict>
<key>NSStringFormatSpecTypeKey</key> <key>NSStringFormatSpecTypeKey</key>
@ -49,11 +49,29 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ld characters</string> <string>%ld rakstzīmju</string>
<key>one</key> <key>one</key>
<string>1 character</string> <string>1 rakstzīme</string>
<key>other</key> <key>other</key>
<string>%ld characters</string> <string>%ld rakstzīmes</string>
</dict>
</dict>
<key>a11y.plural.count.characters_left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@character_count@ palikušas</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>zero</key>
<string>%ld rakstzīmju</string>
<key>one</key>
<string>1 rakstzīme</string>
<key>other</key>
<string>%ld rakstzīmes</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.followed_by_and_mutual</key> <key>plural.count.followed_by_and_mutual</key>
@ -80,11 +98,11 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>Followed by %1$@, and %ld mutuals</string> <string>Seko %1$@ un %ld kopīgi</string>
<key>one</key> <key>one</key>
<string>Followed by %1$@, and another mutual</string> <string>Seko %1$@ un vēl viens kopīgs</string>
<key>other</key> <key>other</key>
<string>Followed by %1$@, and %ld mutuals</string> <string>Seko %1$@ un %ld kopīgi</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.metric_formatted.post</key> <key>plural.count.metric_formatted.post</key>
@ -98,11 +116,11 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>posts</string> <string>ziņu</string>
<key>one</key> <key>one</key>
<string>post</string> <string>ziņa</string>
<key>other</key> <key>other</key>
<string>posts</string> <string>ziņas</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.media</key> <key>plural.count.media</key>
@ -116,11 +134,11 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ld media</string> <string>%ld multivide</string>
<key>one</key> <key>one</key>
<string>1 media</string> <string>1 multivide</string>
<key>other</key> <key>other</key>
<string>%ld media</string> <string>%ld multivide</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.post</key> <key>plural.count.post</key>
@ -134,11 +152,11 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ld posts</string> <string>%ld ziņu</string>
<key>one</key> <key>one</key>
<string>1 post</string> <string>1 ziņa</string>
<key>other</key> <key>other</key>
<string>%ld posts</string> <string>%ld ziņas</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.favorite</key> <key>plural.count.favorite</key>
@ -152,11 +170,11 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ld favorites</string> <string>%ld iecienītu</string>
<key>one</key> <key>one</key>
<string>1 favorite</string> <string>1 iecienīts</string>
<key>other</key> <key>other</key>
<string>%ld favorites</string> <string>%ld iecienīti</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.reblog</key> <key>plural.count.reblog</key>
@ -170,11 +188,11 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ld reblogs</string> <string>%ld reblogu</string>
<key>one</key> <key>one</key>
<string>1 reblog</string> <string>1 reblogs</string>
<key>other</key> <key>other</key>
<string>%ld reblogs</string> <string>%ld reblogi</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.reply</key> <key>plural.count.reply</key>
@ -188,11 +206,11 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ld replies</string> <string>%ld atbilžu</string>
<key>one</key> <key>one</key>
<string>1 reply</string> <string>1 atbilde</string>
<key>other</key> <key>other</key>
<string>%ld replies</string> <string>%ld atbildes</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.vote</key> <key>plural.count.vote</key>
@ -206,11 +224,11 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ld votes</string> <string>%ld balsu</string>
<key>one</key> <key>one</key>
<string>1 vote</string> <string>1 balss</string>
<key>other</key> <key>other</key>
<string>%ld votes</string> <string>%ld balsis</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.voter</key> <key>plural.count.voter</key>
@ -224,11 +242,11 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ld voters</string> <string>%ld balsotāju</string>
<key>one</key> <key>one</key>
<string>1 voter</string> <string>1 balsotājs</string>
<key>other</key> <key>other</key>
<string>%ld voters</string> <string>%ld balsotāji</string>
</dict> </dict>
</dict> </dict>
<key>plural.people_talking</key> <key>plural.people_talking</key>
@ -242,11 +260,11 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ld people talking</string> <string>%ld cilvēku apspriež</string>
<key>one</key> <key>one</key>
<string>1 people talking</string> <string>1 cilvēks apspriež</string>
<key>other</key> <key>other</key>
<string>%ld people talking</string> <string>%ld cilvēki apspriež</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.following</key> <key>plural.count.following</key>
@ -260,11 +278,11 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ld following</string> <string>%ld sekotāju</string>
<key>one</key> <key>one</key>
<string>1 following</string> <string>1 sekotājs</string>
<key>other</key> <key>other</key>
<string>%ld following</string> <string>%ld sekotāji</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.follower</key> <key>plural.count.follower</key>
@ -278,11 +296,11 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ld followers</string> <string>%ld sekotāju</string>
<key>one</key> <key>one</key>
<string>1 follower</string> <string>1 sekotājs</string>
<key>other</key> <key>other</key>
<string>%ld followers</string> <string>%ld sekotāji</string>
</dict> </dict>
</dict> </dict>
<key>date.year.left</key> <key>date.year.left</key>
@ -296,11 +314,11 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ld years left</string> <string>palicis %ld gadu</string>
<key>one</key> <key>one</key>
<string>1 year left</string> <string>palicis 1 gads</string>
<key>other</key> <key>other</key>
<string>%ld years left</string> <string>palikuši %ld gadi</string>
</dict> </dict>
</dict> </dict>
<key>date.month.left</key> <key>date.month.left</key>
@ -314,11 +332,11 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ld months left</string> <string>palicis %ld mēnešu</string>
<key>one</key> <key>one</key>
<string>1 months left</string> <string>palicis 1 mēnesis</string>
<key>other</key> <key>other</key>
<string>%ld months left</string> <string>palikuši %ld mēneši</string>
</dict> </dict>
</dict> </dict>
<key>date.day.left</key> <key>date.day.left</key>
@ -332,11 +350,11 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ld days left</string> <string>palikušas %ld dienas</string>
<key>one</key> <key>one</key>
<string>1 day left</string> <string>palikusi 1 diena</string>
<key>other</key> <key>other</key>
<string>%ld days left</string> <string>palikušas %ld dienas</string>
</dict> </dict>
</dict> </dict>
<key>date.hour.left</key> <key>date.hour.left</key>
@ -350,11 +368,11 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ld hours left</string> <string>atlikušas %ld stundas</string>
<key>one</key> <key>one</key>
<string>1 hour left</string> <string>atlikusi 1 stunda</string>
<key>other</key> <key>other</key>
<string>%ld hours left</string> <string>atlikušas %ld stundas</string>
</dict> </dict>
</dict> </dict>
<key>date.minute.left</key> <key>date.minute.left</key>
@ -368,11 +386,11 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ld minutes left</string> <string>atlikušas %ld minūtes</string>
<key>one</key> <key>one</key>
<string>1 minute left</string> <string>atlikusi 1 minūte</string>
<key>other</key> <key>other</key>
<string>%ld minutes left</string> <string>atlikušas %ld minūtes</string>
</dict> </dict>
</dict> </dict>
<key>date.second.left</key> <key>date.second.left</key>
@ -386,11 +404,11 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ld seconds left</string> <string>atlikušas %ld sekundes</string>
<key>one</key> <key>one</key>
<string>1 second left</string> <string>atlikusi 1 sekunde</string>
<key>other</key> <key>other</key>
<string>%ld seconds left</string> <string>atlikušas %ld sekundes</string>
</dict> </dict>
</dict> </dict>
<key>date.year.ago.abbr</key> <key>date.year.ago.abbr</key>
@ -404,11 +422,11 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ldy ago</string> <string>pirms %ld g.</string>
<key>one</key> <key>one</key>
<string>1y ago</string> <string>pirms 1 g.</string>
<key>other</key> <key>other</key>
<string>%ldy ago</string> <string>pirms %ld g.</string>
</dict> </dict>
</dict> </dict>
<key>date.month.ago.abbr</key> <key>date.month.ago.abbr</key>
@ -422,11 +440,11 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ldM ago</string> <string>pirms %ld M.</string>
<key>one</key> <key>one</key>
<string>1M ago</string> <string>pirms 1 M.</string>
<key>other</key> <key>other</key>
<string>%ldM ago</string> <string>pirms %ld M.</string>
</dict> </dict>
</dict> </dict>
<key>date.day.ago.abbr</key> <key>date.day.ago.abbr</key>
@ -440,11 +458,11 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ldd ago</string> <string>pirms %ld d.</string>
<key>one</key> <key>one</key>
<string>1d ago</string> <string>pirms 1 d.</string>
<key>other</key> <key>other</key>
<string>%ldd ago</string> <string>pirms %ld d.</string>
</dict> </dict>
</dict> </dict>
<key>date.hour.ago.abbr</key> <key>date.hour.ago.abbr</key>
@ -458,11 +476,11 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ldh ago</string> <string>pirms %ld st.</string>
<key>one</key> <key>one</key>
<string>1h ago</string> <string>pirms 1 st.</string>
<key>other</key> <key>other</key>
<string>%ldh ago</string> <string>pirms %ld st.</string>
</dict> </dict>
</dict> </dict>
<key>date.minute.ago.abbr</key> <key>date.minute.ago.abbr</key>
@ -476,11 +494,11 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ldm ago</string> <string>pirms %ld m.</string>
<key>one</key> <key>one</key>
<string>1m ago</string> <string>pirms 1 m.</string>
<key>other</key> <key>other</key>
<string>%ldm ago</string> <string>pirms %ld m.</string>
</dict> </dict>
</dict> </dict>
<key>date.second.ago.abbr</key> <key>date.second.ago.abbr</key>
@ -494,11 +512,11 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%lds ago</string> <string>pirms %ld s.</string>
<key>one</key> <key>one</key>
<string>1s ago</string> <string>pirms 1 s.</string>
<key>other</key> <key>other</key>
<string>%lds ago</string> <string>pirms %ld s.</string>
</dict> </dict>
</dict> </dict>
</dict> </dict>

View File

@ -6,30 +6,30 @@
"please_try_again_later": "Lūdzu, mēģiniet vēlreiz vēlāk." "please_try_again_later": "Lūdzu, mēģiniet vēlreiz vēlāk."
}, },
"sign_up_failure": { "sign_up_failure": {
"title": "Sign Up Failure" "title": "Reģistrācijas Neveiksme"
}, },
"server_error": { "server_error": {
"title": "Servera kļūda" "title": "Servera kļūda"
}, },
"vote_failure": { "vote_failure": {
"title": "Vote Failure", "title": "Balsošanas Neveiksme",
"poll_ended": "Balsošana beidzās" "poll_ended": "Balsošana beidzās"
}, },
"discard_post_content": { "discard_post_content": {
"title": "Atmest malnrakstu", "title": "Atmest malnrakstu",
"message": "Confirm to discard composed post content." "message": "Apstiprini, lai atmestu izveidotās ziņas saturu."
}, },
"publish_post_failure": { "publish_post_failure": {
"title": "Publish Failure", "title": "Publicēšanas Neveiksme",
"message": "Failed to publish the post.\nPlease check your internet connection.", "message": "Neizdevās publicēt ziņu.\nLūdzu, pārbaudi savu interneta savienojumu.",
"attachments_message": { "attachments_message": {
"video_attach_with_photo": "Cannot attach a video to a post that already contains images.", "video_attach_with_photo": "Nevar pievienot videoklipu ziņai, kurā jau ir attēli.",
"more_than_one_video": "Cannot attach more than one video." "more_than_one_video": "Nevar pievienot vairāk kā vienu video."
} }
}, },
"edit_profile_failure": { "edit_profile_failure": {
"title": "Edit Profile Error", "title": "Profila Rediģēšanas Kļūda",
"message": "Cannot edit profile. Please try again." "message": "Nevar rediģēt profilu. Lūdzu mēģini vēlreiz."
}, },
"sign_out": { "sign_out": {
"title": "Iziet", "title": "Iziet",
@ -37,20 +37,25 @@
"confirm": "Iziet" "confirm": "Iziet"
}, },
"block_domain": { "block_domain": {
"title": "Are you really, really sure you want to block the entire %s? In most cases a few targeted blocks or mutes are sufficient and preferable. You will not see content from that domain and any of your followers from that domain will be removed.", "title": "Vai tiešām tiešām vēlies bloķēt visu %s? Vairumā gadījumu pietiek ar dažiem mērķtiecīgiem blokiem vai klusinātājiem, un tie ir vēlami. Tu neredzēsi saturu no šī domēna, un visi tavi sekotāji no šī domēna tiks noņemti.",
"block_entire_domain": "Block Domain" "block_entire_domain": "Bloķēt Domēnu"
}, },
"save_photo_failure": { "save_photo_failure": {
"title": "Save Photo Failure", "title": "Attēla Saglabāšanas Kļūda",
"message": "Please enable the photo library access permission to save the photo." "message": "Lai saglabātu fotoattēlu, lūdzu, iespējo fotoattēlu bibliotēkas piekļuves atļauju."
}, },
"delete_post": { "delete_post": {
"title": "Dzēst ierakstu", "title": "Dzēst ierakstu",
"message": "Vai tiešām vēlies dzēst ierakstu?" "message": "Vai tiešām vēlies dzēst ierakstu?"
}, },
"clean_cache": { "clean_cache": {
"title": "Clean Cache", "title": "Iztīrīt Kešatmiņu",
"message": "Successfully cleaned %s cache." "message": "%s kešatmiņa ir veiksmīgi iztīrīta."
},
"translation_failed": {
"title": "Piezīme",
"message": "Tulkošana neizdevās. Varbūt administrators nav iespējojis tulkojumus šajā serverī vai arī šajā serverī darbojas vecāka Mastodon versija, kurā tulkojumi vēl netiek atbalstīti.",
"button": "Labi"
} }
}, },
"controls": { "controls": {
@ -75,47 +80,52 @@
"save_photo": "Saglabāt bildi", "save_photo": "Saglabāt bildi",
"copy_photo": "Kopēt bildi", "copy_photo": "Kopēt bildi",
"sign_in": "Pieteikties", "sign_in": "Pieteikties",
"sign_up": "Reģistrēties", "sign_up": "Izveidot kontu",
"see_more": "Skatīt vairāk", "see_more": "Skatīt vairāk",
"preview": "Priekšskatījums", "preview": "Priekšskatījums",
"copy": "Kopēt",
"share": "Dalīties", "share": "Dalīties",
"share_user": "Share %s", "share_user": "Kopīgot %s",
"share_post": "Share Post", "share_post": "Kopīgot Ziņu",
"open_in_safari": "Atvērt Safari", "open_in_safari": "Atvērt Safari",
"open_in_browser": "Atvērt pārlūkprogrammā", "open_in_browser": "Atvērt pārlūkprogrammā",
"find_people": "Atrodi cilvēkus kam sekot", "find_people": "Atrodi cilvēkus kam sekot",
"manually_search": "Manually search instead", "manually_search": "Tā vietā meklēt manuāli",
"skip": "Izlaist", "skip": "Izlaist",
"reply": "Atbildēt", "reply": "Atbildēt",
"report_user": "Ziņot par lietotāju @%s", "report_user": "Ziņot par lietotāju @%s",
"block_domain": "Bloķēt %s", "block_domain": "Bloķēt %s",
"unblock_domain": "Atbloķēt %s", "unblock_domain": "Atbloķēt %s",
"settings": "Iestatījumi", "settings": "Iestatījumi",
"delete": "Dzēst" "delete": "Dzēst",
"translate_post": {
"title": "Tulkot no %s",
"unknown_language": "Nezināms"
}
}, },
"tabs": { "tabs": {
"home": "Sākums", "home": "Sākums",
"search": "Meklēšana", "search_and_explore": "Meklēt un Pārlūkot",
"notification": "Paziņojums", "notifications": "Paziņojumi",
"profile": "Profils" "profile": "Profils"
}, },
"keyboard": { "keyboard": {
"common": { "common": {
"switch_to_tab": "Pārslēgties uz: %s", "switch_to_tab": "Pārslēgties uz: %s",
"compose_new_post": "Veidot jaunu ziņu", "compose_new_post": "Veidot jaunu ziņu",
"show_favorites": "Show Favorites", "show_favorites": "Parādīt Izlasi",
"open_settings": "Atvērt iestatījumus" "open_settings": "Atvērt iestatījumus"
}, },
"timeline": { "timeline": {
"previous_status": "Previous Post", "previous_status": "Iepriekšējā Ziņa",
"next_status": "Next Post", "next_status": "Nākamā Ziņa",
"open_status": "Open Post", "open_status": "Atvērt Ziņu",
"open_author_profile": "Open Author's Profile", "open_author_profile": "Atvērt Autora Profilu",
"open_reblogger_profile": "Open Reblogger's Profile", "open_reblogger_profile": "Atvērt Reblogotāja Profilu",
"reply_status": "Reply to Post", "reply_status": "Atbildēt uz Ziņu",
"toggle_reblog": "Toggle Reblog on Post", "toggle_reblog": "Pārslēgt Reblogs uz Ziņu",
"toggle_favorite": "Toggle Favorite on Post", "toggle_favorite": "Pārslēgt Izlasi uz Ziņas",
"toggle_content_warning": "Toggle Content Warning", "toggle_content_warning": "Pārslēgt Satura Brīdinājumu",
"preview_image": "Priekšskata attēls" "preview_image": "Priekšskata attēls"
}, },
"segmented_control": { "segmented_control": {
@ -124,50 +134,59 @@
} }
}, },
"status": { "status": {
"user_reblogged": "%s reblogged", "user_reblogged": "%s reblogoja",
"user_replied_to": "Replied to %s", "user_replied_to": "Atbildēja %s",
"show_post": "Show Post", "show_post": "Parādīt Ziņu",
"show_user_profile": "Parādīt lietotāja profilu", "show_user_profile": "Parādīt lietotāja profilu",
"content_warning": "Satura brīdinājums", "content_warning": "Satura brīdinājums",
"sensitive_content": "Sensitīvs saturs", "sensitive_content": "Sensitīvs saturs",
"media_content_warning": "Tap anywhere to reveal", "media_content_warning": "Pieskarieties jebkurā vietā, lai atklātu",
"tap_to_reveal": "Tap to reveal", "tap_to_reveal": "Piest, lai atklātu",
"load_embed": "Ielādēt Iegultos",
"link_via_user": "%s caur %s",
"poll": { "poll": {
"vote": "Balsot", "vote": "Balsot",
"closed": "Aizvērts" "closed": "Aizvērts"
}, },
"meta_entity": { "meta_entity": {
"url": "Link: %s", "url": "Saite: %s",
"hashtag": "Hashtag: %s", "hashtag": "Sajaukt: %s",
"mention": "Show Profile: %s", "mention": "Rādīt Profilu: %s",
"email": "Email address: %s" "email": "E-pasta adrese: %s"
}, },
"actions": { "actions": {
"reply": "Atbildēt", "reply": "Atbildēt",
"reblog": "Reblogot", "reblog": "Reblogot",
"unreblog": "Undo reblog", "unreblog": "Atsaukt reblogu",
"favorite": "Izlase", "favorite": "Izlase",
"unfavorite": "Izņemt no izlases", "unfavorite": "Izņemt no izlases",
"menu": "Izvēlne", "menu": "Izvēlne",
"hide": "Slēpt", "hide": "Slēpt",
"show_image": "Rādīt attēlu", "show_image": "Rādīt attēlu",
"show_gif": "Rādīt GIF", "show_gif": "Rādīt GIF",
"show_video_player": "Show video player", "show_video_player": "Rādīt video atskaņotāju",
"tap_then_hold_to_show_menu": "Tap then hold to show menu" "share_link_in_post": "Kopīgot Saiti Ziņā",
"tap_then_hold_to_show_menu": "Pieskaries un turi, lai parādītu izvēlni"
}, },
"tag": { "tag": {
"url": "URL", "url": "URL",
"mention": "Pieminēt", "mention": "Pieminēt",
"link": "Saite", "link": "Saite",
"hashtag": "Hashtag", "hashtag": "Tēmturis",
"email": "E-pasts", "email": "E-pasts",
"emoji": "Emocijzīmes" "emoji": "Emocijzīmes"
}, },
"visibility": { "visibility": {
"unlisted": "Everyone can see this post but not display in the public timeline.", "unlisted": "Ikviens var redzēt šo ziņu, bet to nevar parādīt publiskajā laikrindā.",
"private": "Only their followers can see this post.", "private": "Šo ziņu var redzēt tikai viņu sekotāji.",
"private_from_me": "Only my followers can see this post.", "private_from_me": "Šo ziņu var redzēt tikai mani sekotāji.",
"direct": "Only mentioned user can see this post." "direct": "Šo ziņu var redzēt tikai minētais lietotājs."
},
"translation": {
"translated_from": "Tulkots no %s, izmantojot %s",
"unknown_language": "Nezināms",
"unknown_provider": "Nezināms",
"show_original": "Parādīts Oriģināls"
} }
}, },
"friendship": { "friendship": {
@ -186,9 +205,9 @@
"unmute": "Noņemt apklusinājumu", "unmute": "Noņemt apklusinājumu",
"unmute_user": "Noņemt apklusinājumu @%s", "unmute_user": "Noņemt apklusinājumu @%s",
"muted": "Apklusināts", "muted": "Apklusināts",
"edit_info": "Edit Info", "edit_info": "Rediģēt",
"show_reblogs": "Show Reblogs", "show_reblogs": "Rādīt Reblogus",
"hide_reblogs": "Hide Reblogs" "hide_reblogs": "Paslēpt Reblogus"
}, },
"timeline": { "timeline": {
"filtered": "Filtrēts", "filtered": "Filtrēts",
@ -196,42 +215,48 @@
"now": "Tagad" "now": "Tagad"
}, },
"loader": { "loader": {
"load_missing_posts": "Load missing posts", "load_missing_posts": "Ielādēt trūkstošās ziņas",
"loading_missing_posts": "Loading missing posts...", "loading_missing_posts": "Ielādē trūkstošās ziņas...",
"show_more_replies": "Rādīt vairāk atbildes" "show_more_replies": "Rādīt vairāk atbildes"
}, },
"header": { "header": {
"no_status_found": "No Post Found", "no_status_found": "Nav Atrastu Ziņu",
"blocking_warning": "You cant view this user's profile\nuntil you unblock them.\nYour profile looks like this to them.", "blocking_warning": "Tu nevari skatīt šī lietotāja profilu,\nlīdz tu tos atbloķē.\nTavs profils viņiem izskatās šādi.",
"user_blocking_warning": "You cant view %ss profile\nuntil you unblock them.\nYour profile looks like this to them.", "user_blocking_warning": "Tu nevari skatīt %s profilu,\nlīdz tu tos atbloķē.\nTavs profils viņiem izskatās šādi.",
"blocked_warning": "You cant view this users profile\nuntil they unblock you.", "blocked_warning": "Tu nevari skatīt šī lietotāja profilu\nlīdz tie tevi atbloķē.",
"user_blocked_warning": "You cant view %ss profile\nuntil they unblock you.", "user_blocked_warning": "Tu nevari skatīt %s profilu,\nlīdz tie tevi atbloķē.",
"suspended_warning": "This user has been suspended.", "suspended_warning": "Šī lietotāja darbība ir apturēta.",
"user_suspended_warning": "%ss account has been suspended." "user_suspended_warning": "%s konta darbība ir apturēta."
} }
} }
} }
}, },
"scene": { "scene": {
"welcome": { "welcome": {
"slogan": "Social networking\nback in your hands.", "slogan": "Sociālie tīkli\natpakaļ tavās rokās.",
"get_started": "Get Started", "get_started": "Sāc",
"log_in": "Pieteikties" "log_in": "Pieteikties"
}, },
"login": {
"title": "Laipni lūdzam atpakaļ",
"subtitle": "Piesakies serverī, kurā izveidoji savu kontu.",
"server_search_field": {
"placeholder": "Ievadi URL vai meklē savu serveri"
}
},
"server_picker": { "server_picker": {
"title": "Mastodon is made of users in different servers.", "title": "Mastodon veido lietotāji dažādos serveros.",
"subtitle": "Pick a server based on your interests, region, or a general purpose one.", "subtitle": "Izvēlieties serveri, pamatojoties uz savu reģionu, interesēm vai vispārīgu mērķi. Tu joprojām vari tērzēt ar jebkuru Mastodon lietotāju neatkarīgi no taviem serveriem.",
"subtitle_extend": "Pick a server based on your interests, region, or a general purpose one. Each server is operated by an entirely independent organization or individual.",
"button": { "button": {
"category": { "category": {
"all": "Visi", "all": "Visi",
"all_accessiblity_description": "Katekorija: Visi", "all_accessiblity_description": "Katekorija: Visi",
"academia": "academia", "academia": "akadēmija",
"activism": "activism", "activism": "aktīvisms",
"food": "ēdiens", "food": "ēdiens",
"furry": "furry", "furry": "pūkains",
"games": "spēles", "games": "spēles",
"general": "general", "general": "galvenais",
"journalism": "žurnālisms", "journalism": "žurnālisms",
"lgbt": "lgbt", "lgbt": "lgbt",
"regional": "regionāli", "regional": "regionāli",
@ -248,18 +273,17 @@
"category": "KATEGORIJA" "category": "KATEGORIJA"
}, },
"input": { "input": {
"placeholder": "Meklēt serverus", "search_servers_or_enter_url": "Meklēt kopienas vai ievadīt URL"
"search_servers_or_enter_url": "Search servers or enter URL"
}, },
"empty_state": { "empty_state": {
"finding_servers": "Finding available servers...", "finding_servers": "Meklē piejamos serverus...",
"bad_network": "Something went wrong while loading the data. Check your internet connection.", "bad_network": "Ielādējot datus, radās problēma. Pārbaudi interneta savienojumu.",
"no_results": "Nav rezultātu" "no_results": "Nav rezultātu"
} }
}, },
"register": { "register": {
"title": "Lets get you set up on %s", "title": "Ļauj tevi iestatīt %s",
"lets_get_you_set_up_on_domain": "Lets get you set up on %s", "lets_get_you_set_up_on_domain": "Ļauj tevi iestatīt %s",
"input": { "input": {
"avatar": { "avatar": {
"delete": "Dzēst" "delete": "Dzēst"
@ -276,7 +300,7 @@
}, },
"password": { "password": {
"placeholder": "parole", "placeholder": "parole",
"require": "Your password needs at least:", "require": "Tavai parolei ir nepieciešams vismaz:",
"character_limit": "8 rakstzīmes", "character_limit": "8 rakstzīmes",
"accessibility": { "accessibility": {
"checked": "atzīmēts", "checked": "atzīmēts",
@ -298,29 +322,29 @@
"reason": "Iemesls" "reason": "Iemesls"
}, },
"reason": { "reason": {
"blocked": "%s contains a disallowed email provider", "blocked": "%s satur neatļautu e-pasta pakalpojumu sniedzēju",
"unreachable": "%s šķiet, ka neeksistē", "unreachable": "%s šķiet, ka neeksistē",
"taken": "%s jau tiek izmantots", "taken": "%s jau tiek izmantots",
"reserved": "%s is a reserved keyword", "reserved": "%s ir rezervēts atslēgvārds",
"accepted": "%s must be accepted", "accepted": "%s jābūt apstiprinātām",
"blank": "%s ir obligāts", "blank": "%s ir obligāts",
"invalid": "%s ir nederīgs", "invalid": "%s ir nederīgs",
"too_long": "%s ir pārāk garaš", "too_long": "%s ir pārāk garaš",
"too_short": "%s ir pārāk īs", "too_short": "%s ir pārāk īs",
"inclusion": "%s is not a supported value" "inclusion": "%s nav atbalstīta vērtība"
}, },
"special": { "special": {
"username_invalid": "Username must only contain alphanumeric characters and underscores", "username_invalid": "Lietotājvārdā drīkst būt tikai burtciparu rakstzīmes un zemsvītras",
"username_too_long": "Username is too long (cant be longer than 30 characters)", "username_too_long": "Lietotājvārds ir par garu (nedrīkst būt garāks par 30 rakstzīmēm)",
"email_invalid": "This is not a valid email address", "email_invalid": "Šī nav derīga e-pasta adrese",
"password_too_short": "Password is too short (must be at least 8 characters)" "password_too_short": "Parole ir pārāk īsa (jābūt vismaz 8 rakstzīmēm)"
} }
} }
}, },
"server_rules": { "server_rules": {
"title": "Some ground rules.", "title": "Daži pamatnoteikumi.",
"subtitle": "These are set and enforced by the %s moderators.", "subtitle": "Tos iestata un ievieš %s moderatori.",
"prompt": "By continuing, youre subject to the terms of service and privacy policy for %s.", "prompt": "Turpinot, uz tevi attiecas %s pakalpojumu sniegšanas noteikumi un konfidencialitātes politika.",
"terms_of_service": "pakalpojuma noteikumi", "terms_of_service": "pakalpojuma noteikumi",
"privacy_policy": "privātuma nosacījumi", "privacy_policy": "privātuma nosacījumi",
"button": { "button": {
@ -328,45 +352,45 @@
} }
}, },
"confirm_email": { "confirm_email": {
"title": "One last thing.", "title": "Pēdējā lieta.",
"subtitle": "Tap the link we emailed to you to verify your account.", "subtitle": "Pieskaries saitei, ko nosūtījām tev pa e-pastu, lai verificētu savu kontu.",
"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": "Pieskaries saitei, ko nosūtījām tev pa e-pastu, lai verificētu savu kontu",
"button": { "button": {
"open_email_app": "Open Email App", "open_email_app": "Atvērt E-pasta Lietotni",
"resend": "Nosūtīt atkārtoti" "resend": "Nosūtīt atkārtoti"
}, },
"dont_receive_email": { "dont_receive_email": {
"title": "Pārbaudi savu e-pastu", "title": "Pārbaudi savu e-pastu",
"description": "Check if your email address is correct as well as your junk folder if you havent.", "description": "Pārbaudi, vai tava e-pasta adrese ir pareiza, kā arī savu mēstuļu mapi, ja tā nav.",
"resend_email": "Atkārtoti nosūtīt e-pastu" "resend_email": "Atkārtoti nosūtīt e-pastu"
}, },
"open_email_app": { "open_email_app": {
"title": "Check your inbox.", "title": "Pārbaudi savu iesūtni.",
"description": "We just sent you an email. Check your junk folder if you havent.", "description": "Mēs tikko nosūtījām tev e-pastu. Pārbaudi savu mēstuļu mapi, ja neesi to saņēmis.",
"mail": "Mail", "mail": "Pasts",
"open_email_client": "Open Email Client" "open_email_client": "Atvērt E-pasta Klientu"
} }
}, },
"home_timeline": { "home_timeline": {
"title": "Home", "title": "Sākums",
"navigation_bar_state": { "navigation_bar_state": {
"offline": "Offline", "offline": "Bezsaistē",
"new_posts": "See new posts", "new_posts": "Skatīt jaunās ziņas",
"published": "Published!", "published": "Publicēts!",
"Publishing": "Publishing post...", "Publishing": "Publicē ziņu...",
"accessibility": { "accessibility": {
"logo_label": "Logo Button", "logo_label": "Logotipa Poga",
"logo_hint": "Tap to scroll to top and tap again to previous location" "logo_hint": "Pieskaries, lai ritinātu uz augšu, un vēlreiz pieskaries iepriekšējai atrašanās vietai"
} }
} }
}, },
"suggestion_account": { "suggestion_account": {
"title": "Find People to Follow", "title": "Atrodi Cilvēkus kam Sekot",
"follow_explain": "When you follow someone, youll see their posts in your home feed." "follow_explain": "Kad seko kādam, tu redzēsi viņu ziņas savā mājas plūsmā."
}, },
"compose": { "compose": {
"title": { "title": {
"new_post": "New Post", "new_post": "Jauna Ziņa",
"new_reply": "Jauna atbilde" "new_reply": "Jauna atbilde"
}, },
"media_selection": { "media_selection": {
@ -374,32 +398,36 @@
"photo_library": "Attēlu krātuve", "photo_library": "Attēlu krātuve",
"browse": "Pārlūkot" "browse": "Pārlūkot"
}, },
"content_input_placeholder": "Type or paste whats on your mind", "content_input_placeholder": "Ieraksti vai ielīmē to, ko domā",
"compose_action": "Publicēt", "compose_action": "Publicēt",
"replying_to_user": "replying to %s", "replying_to_user": "atbildot uz %s",
"attachment": { "attachment": {
"photo": "attēls", "photo": "attēls",
"video": "video", "video": "video",
"attachment_broken": "This %s is broken and cant be\nuploaded to Mastodon.", "attachment_broken": "Šis %s ir salauzts un nevar tikt augšuplādēts Mastodon.",
"description_photo": "Describe the photo for the visually-impaired...", "description_photo": "Apraksti fotoattēlu vājredzīgajiem...",
"description_video": "Describe the video for the visually-impaired...", "description_video": "Apraksti video vājredzīgajiem...",
"load_failed": "Load Failed", "load_failed": "Ielāde Neizdevās",
"upload_failed": "Upload Failed", "upload_failed": "Augšupielāde Neizdevās",
"can_not_recognize_this_media_attachment": "Can not regonize this media attachment", "can_not_recognize_this_media_attachment": "Nevar atpazīt šo multivides pielikumu",
"attachment_too_large": "Attachment too large" "attachment_too_large": "Pārāk liels pielikums",
"compressing_state": "Saspiež...",
"server_processing_state": "Notiek servera apstrāde..."
}, },
"poll": { "poll": {
"duration_time": "Duration: %s", "duration_time": "Ilgums: %s",
"thirty_minutes": "30 minūtes", "thirty_minutes": "30 minūtes",
"one_hour": "1 Stunda", "one_hour": "1 Stunda",
"six_hours": "6 stundas", "six_hours": "6 stundas",
"one_day": "1 Diena", "one_day": "1 Diena",
"three_days": "3 Dienas", "three_days": "3 Dienas",
"seven_days": "7 Dienas", "seven_days": "7 Dienas",
"option_number": "Option %ld" "option_number": "Izvēle %ld",
"the_poll_is_invalid": "Aptauja nav derīga",
"the_poll_has_empty_option": "Aptaujai ir tukša opcija"
}, },
"content_warning": { "content_warning": {
"placeholder": "Write an accurate warning here..." "placeholder": "Uzraksti šeit precīzu brīdinājumu..."
}, },
"visibility": { "visibility": {
"public": "Publisks", "public": "Publisks",
@ -408,24 +436,26 @@
"direct": "Tikai cilvēki, kurus es pieminu" "direct": "Tikai cilvēki, kurus es pieminu"
}, },
"auto_complete": { "auto_complete": {
"space_to_add": "Space to add" "space_to_add": "Vieta, ko pievienot"
}, },
"accessibility": { "accessibility": {
"append_attachment": "Pievienot pielikumu", "append_attachment": "Pievienot pielikumu",
"append_poll": "Pievienot aptauju", "append_poll": "Pievienot aptauju",
"remove_poll": "Noņemt aptauju", "remove_poll": "Noņemt aptauju",
"custom_emoji_picker": "Custom Emoji Picker", "custom_emoji_picker": "Pielāgoto Emocijzīmju Atlasītājs",
"enable_content_warning": "Enable Content Warning", "enable_content_warning": "Iespējot Satura Brīdinājumu",
"disable_content_warning": "Disable Content Warning", "disable_content_warning": "Atspējot Satura Brīdinājumu",
"post_visibility_menu": "Post Visibility Menu" "post_visibility_menu": "Ziņu Redzamības Izvēlne",
"post_options": "Ziņas Iespējas",
"posting_as": "Publicēt kā %s"
}, },
"keyboard": { "keyboard": {
"discard_post": "Discard Post", "discard_post": "Izmest Ziņu",
"publish_post": "Publish Post", "publish_post": "Publicēt Ziņu",
"toggle_poll": "Toggle Poll", "toggle_poll": "Pārslēgt Aptauju",
"toggle_content_warning": "Toggle Content Warning", "toggle_content_warning": "Pārslēgt Satura Brīdinājumu",
"append_attachment_entry": "Pievienot pielikumu - %s", "append_attachment_entry": "Pievienot pielikumu - %s",
"select_visibility_entry": "Select Visibility - %s" "select_visibility_entry": "Atlasīt Redzamību  %s"
} }
}, },
"profile": { "profile": {
@ -433,19 +463,27 @@
"follows_you": "Seko tev" "follows_you": "Seko tev"
}, },
"dashboard": { "dashboard": {
"posts": "posts", "my_posts": "ziņas",
"following": "seko", "my_following": "seko",
"followers": "sekottāji" "my_followers": "sekotāji",
"other_posts": "ziņas",
"other_following": "seko",
"other_followers": "sekotāji"
}, },
"fields": { "fields": {
"joined": "Pievienojās",
"add_row": "Pievienot rindu", "add_row": "Pievienot rindu",
"placeholder": { "placeholder": {
"label": "Label", "label": "Marķējums",
"content": "Saturs" "content": "Saturs"
},
"verified": {
"short": "Pārbaudīts %s",
"long": "Šīs saites piederība tika pārbaudīta %s"
} }
}, },
"segmented_control": { "segmented_control": {
"posts": "Posts", "posts": "Ziņas",
"replies": "Atbildes", "replies": "Atbildes",
"posts_and_replies": "Ziņas un atbildes", "posts_and_replies": "Ziņas un atbildes",
"media": "Multivide", "media": "Multivide",
@ -453,97 +491,97 @@
}, },
"relationship_action_alert": { "relationship_action_alert": {
"confirm_mute_user": { "confirm_mute_user": {
"title": "Mute Account", "title": "Izslēgt Kontu",
"message": "Confirm to mute %s" "message": "Apstiprināt, lai izslēgtu %s skaņu"
}, },
"confirm_unmute_user": { "confirm_unmute_user": {
"title": "Unmute Account", "title": "Ieslēgt Kontu",
"message": "Confirm to unmute %s" "message": "Apstiprināt, lai ieslēgtu %s skaņu"
}, },
"confirm_block_user": { "confirm_block_user": {
"title": "Bloķēts kontu", "title": "Bloķēts kontu",
"message": "Confirm to block %s" "message": "Apstiprināt, lai bloķētu %s"
}, },
"confirm_unblock_user": { "confirm_unblock_user": {
"title": "Atbloķēt kontu", "title": "Atbloķēt kontu",
"message": "Apstiprini lai atbloķētu %s" "message": "Apstiprini lai atbloķētu %s"
}, },
"confirm_show_reblogs": { "confirm_show_reblogs": {
"title": "Show Reblogs", "title": "Rādīt Reblogus",
"message": "Confirm to show reblogs" "message": "Apstiprināt, lai rādītu reblogus"
}, },
"confirm_hide_reblogs": { "confirm_hide_reblogs": {
"title": "Hide Reblogs", "title": "Paslēpt Reblogus",
"message": "Confirm to hide reblogs" "message": "Apstiprināt, lai slēptu reblogus"
} }
}, },
"accessibility": { "accessibility": {
"show_avatar_image": "Show avatar image", "show_avatar_image": "Rādīt avatara attēlu",
"edit_avatar_image": "Edit avatar image", "edit_avatar_image": "Rediģēt avatara attēlu",
"show_banner_image": "Show banner image", "show_banner_image": "Rādīt bannera attēlu",
"double_tap_to_open_the_list": "Double tap to open the list" "double_tap_to_open_the_list": "Dubultskāriens, lai atvērtu sarakstu"
} }
}, },
"follower": { "follower": {
"title": "sekottājs", "title": "sekottājs",
"footer": "Followers from other servers are not displayed." "footer": "Sekotāji no citiem serveriem netiek rādīti."
}, },
"following": { "following": {
"title": "seko", "title": "seko",
"footer": "Follows from other servers are not displayed." "footer": "Sekojumi no citiem serveriem netiek rādīti."
}, },
"familiarFollowers": { "familiarFollowers": {
"title": "Followers you familiar", "title": "Tev pazīstamie sekotāji",
"followed_by_names": "Followed by %s" "followed_by_names": "Seko %s"
}, },
"favorited_by": { "favorited_by": {
"title": "Favorited By" "title": "Pievienoja izlasei"
}, },
"reblogged_by": { "reblogged_by": {
"title": "Reblogged By" "title": "Reblogoja"
}, },
"search": { "search": {
"title": "Meklēt", "title": "Meklēt",
"search_bar": { "search_bar": {
"placeholder": "Search hashtags and users", "placeholder": "Meklēt tēmturus un lietotājus",
"cancel": "Atcelt" "cancel": "Atcelt"
}, },
"recommend": { "recommend": {
"button_text": "Skatīt visu", "button_text": "Skatīt visu",
"hash_tag": { "hash_tag": {
"title": "Trending on Mastodon", "title": "Tendences vietnē Mastodon",
"description": "Hashtags that are getting quite a bit of attention", "description": "Tēmturi, kuriem tiek pievērsta diezgan liela uzmanība",
"people_talking": "%s people are talking" "people_talking": "%s cilvēki apspriež"
}, },
"accounts": { "accounts": {
"title": "Accounts you might like", "title": "Konti, kuri tev varētu patikt",
"description": "You may like to follow these accounts", "description": "Iespējams, tu vēlēsies sekot šiem kontiem",
"follow": "Follow" "follow": "Sekot"
} }
}, },
"searching": { "searching": {
"segment": { "segment": {
"all": "All", "all": "Visi",
"people": "People", "people": "Cilvēki",
"hashtags": "Hashtags", "hashtags": "Tēmturi",
"posts": "Posts" "posts": "Ziņas"
}, },
"empty_state": { "empty_state": {
"no_results": "No results" "no_results": "Nav rezultātu"
}, },
"recent_search": "Recent searches", "recent_search": "Nesen meklētais",
"clear": "Clear" "clear": "Notīrīt"
} }
}, },
"discovery": { "discovery": {
"tabs": { "tabs": {
"posts": "Ziņas", "posts": "Ziņas",
"hashtags": "Hashtags", "hashtags": "Tēmturi",
"news": "Ziņas", "news": "Ziņas",
"community": "Community", "community": "Kopiena",
"for_you": "Priekš tevis" "for_you": "Priekš tevis"
}, },
"intro": "These are the posts gaining traction in your corner of Mastodon." "intro": "Šīs ir ziņas, kas iekaro tavu Mastodon stūrīti."
}, },
"favorite": { "favorite": {
"title": "Tava izlase" "title": "Tava izlase"
@ -554,16 +592,16 @@
"Mentions": "Pieminējumi" "Mentions": "Pieminējumi"
}, },
"notification_description": { "notification_description": {
"followed_you": "followed you", "followed_you": "tev sekoja",
"favorited_your_post": "favorited your post", "favorited_your_post": "izcēla tavu ziņu",
"reblogged_your_post": "reblogged your post", "reblogged_your_post": "reblogoja tavu ziņu",
"mentioned_you": "pieminēja tevi", "mentioned_you": "pieminēja tevi",
"request_to_follow_you": "request to follow you", "request_to_follow_you": "lūgums tev sekot",
"poll_has_ended": "balsošana beidzās" "poll_has_ended": "balsošana beidzās"
}, },
"keyobard": { "keyobard": {
"show_everything": "Parādīt man visu", "show_everything": "Parādīt man visu",
"show_mentions": "Show Mentions" "show_mentions": "Rādīt Pieminējumus"
}, },
"follow_request": { "follow_request": {
"accept": "Pieņemt", "accept": "Pieņemt",
@ -574,7 +612,7 @@
}, },
"thread": { "thread": {
"back_title": "Ziņa", "back_title": "Ziņa",
"title": "Post from %s" "title": "Ziņa no %s"
}, },
"settings": { "settings": {
"title": "Iestatījumi", "title": "Iestatījumi",
@ -587,42 +625,42 @@
}, },
"look_and_feel": { "look_and_feel": {
"title": "Izskats", "title": "Izskats",
"use_system": "Use System", "use_system": "Lietot Sistēmas",
"really_dark": "Ļoti tumšs", "really_dark": "Ļoti tumšs",
"sorta_dark": "Itkā tumšs", "sorta_dark": "Itkā tumšs",
"light": "Gaišs" "light": "Gaišs"
}, },
"notifications": { "notifications": {
"title": "Paziņojumi", "title": "Paziņojumi",
"favorites": "Favorites my post", "favorites": "Izceļ manu ziņu",
"follows": "Seko man", "follows": "Seko man",
"boosts": "Reblogs my post", "boosts": "Reblogo manu ziņu",
"mentions": "Pieminējumi", "mentions": "Pieminējumi",
"trigger": { "trigger": {
"anyone": "jebkurš", "anyone": "jebkurš",
"follower": "sekottājs", "follower": "sekottājs",
"follow": "anyone I follow", "follow": "jebkurš, kam sekoju",
"noone": "neviens", "noone": "neviens",
"title": "Notify me when" "title": "Paziņot man, kad"
} }
}, },
"preference": { "preference": {
"title": "Uzstādījumi", "title": "Uzstādījumi",
"true_black_dark_mode": "True black dark mode", "true_black_dark_mode": "Īsti melns tumšais režīms",
"disable_avatar_animation": "Disable animated avatars", "disable_avatar_animation": "Atspējot animētos avatarus",
"disable_emoji_animation": "Disable animated emojis", "disable_emoji_animation": "Atspējot animētās emocijzīmes",
"using_default_browser": "Use default browser to open links", "using_default_browser": "Saišu atvēršana noklusētajā pārlūkā",
"open_links_in_mastodon": "Open links in Mastodon" "open_links_in_mastodon": "Atvērt saites Mastodon"
}, },
"boring_zone": { "boring_zone": {
"title": "The Boring Zone", "title": "Garlaicīgā zona",
"account_settings": "Konta iestatījumi", "account_settings": "Konta iestatījumi",
"terms": "Pakalpojuma noteikumi", "terms": "Pakalpojuma noteikumi",
"privacy": "Privātuma politika" "privacy": "Privātuma politika"
}, },
"spicy_zone": { "spicy_zone": {
"title": "The Spicy Zone", "title": "Pikantā zona",
"clear": "Clear Media Cache", "clear": "Notīrīt Multivides Kešatmiņu",
"signout": "Iziet" "signout": "Iziet"
} }
}, },
@ -630,7 +668,7 @@
"mastodon_description": "Mastodon ir atvērtā koda programmatūra. Tu vari ziņot par problēmām GitHub %s (%s)" "mastodon_description": "Mastodon ir atvērtā koda programmatūra. Tu vari ziņot par problēmām GitHub %s (%s)"
}, },
"keyboard": { "keyboard": {
"close_settings_window": "Close Settings Window" "close_settings_window": "Aizvērt Iestatījumu Logu"
} }
}, },
"report": { "report": {
@ -638,24 +676,24 @@
"title": "Ziņot %s", "title": "Ziņot %s",
"step1": "1. solis no 2", "step1": "1. solis no 2",
"step2": "2. solis no 2", "step2": "2. solis no 2",
"content1": "Are there any other posts youd like to add to the report?", "content1": "Vai ir vēl kādas ziņas, kuras vēlies pievienot pārskatam?",
"content2": "Is there anything the moderators should know about this report?", "content2": "Vai moderatoriem ir kaut kas jāzina par šo ziņojumu?",
"report_sent_title": "Thanks for reporting, well look into this.", "report_sent_title": "Paldies, ka ziņoji, mēs to izskatīsim.",
"send": "Nosūtīt Sūdzību", "send": "Nosūtīt Sūdzību",
"skip_to_send": "Sūtīt bez komentāra", "skip_to_send": "Sūtīt bez komentāra",
"text_placeholder": "Type or paste additional comments", "text_placeholder": "Ieraksti vai ielīmē papildu komentārus",
"reported": "REPORTED", "reported": "ZIŅOTS",
"step_one": { "step_one": {
"step_1_of_4": "1. solis no 4", "step_1_of_4": "1. solis no 4",
"whats_wrong_with_this_post": "What's wrong with this post?", "whats_wrong_with_this_post": "Kas vainas šim ierakstam?",
"whats_wrong_with_this_account": "What's wrong with this account?", "whats_wrong_with_this_account": "Kas vainas šim kontam?",
"whats_wrong_with_this_username": "What's wrong with %s?", "whats_wrong_with_this_username": "Kas vainas %s?",
"select_the_best_match": "Izvēlieties labāko atbilstību", "select_the_best_match": "Izvēlieties labāko atbilstību",
"i_dont_like_it": "Man tas nepatīk", "i_dont_like_it": "Man tas nepatīk",
"it_is_not_something_you_want_to_see": "Tas nav kaut kas, ko tu vēlies redzēt", "it_is_not_something_you_want_to_see": "Tas nav kaut kas, ko tu vēlies redzēt",
"its_spam": "Tas ir spams", "its_spam": "Tas ir spams",
"malicious_links_fake_engagement_or_repetetive_replies": "Malicious links, fake engagement, or repetetive replies", "malicious_links_fake_engagement_or_repetetive_replies": "Ļaunprātīgas saites, viltus iesaistīšana vai atkārtotas atbildes",
"it_violates_server_rules": "It violates server rules", "it_violates_server_rules": "Tas pārkāpj servera noteikumus",
"you_are_aware_that_it_breaks_specific_rules": "Tu zini, ka tas pārkāpj īpašus noteikumus", "you_are_aware_that_it_breaks_specific_rules": "Tu zini, ka tas pārkāpj īpašus noteikumus",
"its_something_else": "Tas ir kaut kas cits", "its_something_else": "Tas ir kaut kas cits",
"the_issue_does_not_fit_into_other_categories": "Šis jautājums neietilpst citās kategorijās" "the_issue_does_not_fit_into_other_categories": "Šis jautājums neietilpst citās kategorijās"
@ -664,7 +702,7 @@
"step_2_of_4": "2. solis no 4", "step_2_of_4": "2. solis no 4",
"which_rules_are_being_violated": "Kuri noteikumi tiek pārkāpti?", "which_rules_are_being_violated": "Kuri noteikumi tiek pārkāpti?",
"select_all_that_apply": "Atlasi visus atbilstošos", "select_all_that_apply": "Atlasi visus atbilstošos",
"i_just_dont_like_it": "I just dont like it" "i_just_dont_like_it": "Man vienkārši tas nepatīk"
}, },
"step_three": { "step_three": {
"step_3_of_4": "3. solis no 4", "step_3_of_4": "3. solis no 4",
@ -677,36 +715,48 @@
}, },
"step_final": { "step_final": {
"dont_want_to_see_this": "Vai nevēlies to redzēt?", "dont_want_to_see_this": "Vai nevēlies to redzēt?",
"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.", "when_you_see_something_you_dont_like_on_mastodon_you_can_remove_the_person_from_your_experience.": "Kad pakalpojumā Mastodon redzi kaut ko, kas tev nepatīk, tu vari noņemt šo personu no savas pieredzes.",
"unfollow": "Atsekot", "unfollow": "Atsekot",
"unfollowed": "Atsekoja", "unfollowed": "Atsekoja",
"unfollow_user": "Atsekot %s", "unfollow_user": "Atsekot %s",
"mute_user": "Apklusināt %s", "mute_user": "Apklusināt %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.", "you_wont_see_their_posts_or_reblogs_in_your_home_feed_they_wont_know_they_ve_been_muted": "Tu neredzēsi viņu ziņas vai reblogus savā mājas plūsmā. Viņi nezinās, ka ir izslēgti.",
"block_user": "Bloķēt %s", "block_user": "Bloķēt %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.", "they_will_no_longer_be_able_to_follow_or_see_your_posts_but_they_can_see_if_theyve_been_blocked": "Viņi vairs nevarēs sekot tavām ziņām vai redzēt tās, taču varēs redzēt, vai viņi ir bloķēti.",
"while_we_review_this_you_can_take_action_against_user": "Kamēr mēs to izskatām, tu vari veikt darbības pret @%s" "while_we_review_this_you_can_take_action_against_user": "Kamēr mēs to izskatām, tu vari veikt darbības pret @%s"
} }
}, },
"preview": { "preview": {
"keyboard": { "keyboard": {
"close_preview": "Close Preview", "close_preview": "Aizvērt Priekšskatījumu",
"show_next": "Show Next", "show_next": "Rādīt Nākamo",
"show_previous": "Show Previous" "show_previous": "Rādīt Iepriekšējo"
} }
}, },
"account_list": { "account_list": {
"tab_bar_hint": "Current selected profile: %s. Double tap then hold to show account switcher", "tab_bar_hint": "Pašreizējais atlasītais profils: %s. Veic dubultskārienu un pēc tam turi, lai parādītu konta pārslēdzēju",
"dismiss_account_switcher": "Dismiss Account Switcher", "dismiss_account_switcher": "Noraidīt Konta Pārslēdzēju",
"add_account": "Pievienot kontu" "add_account": "Pievienot kontu"
}, },
"wizard": { "wizard": {
"new_in_mastodon": "New in Mastodon", "new_in_mastodon": "Jaunums Mastodonā",
"multiple_account_switch_intro_description": "Switch between multiple accounts by holding the profile button.", "multiple_account_switch_intro_description": "Pārslēdzies starp vairākiem kontiem, turot nospiestu profila pogu.",
"accessibility_hint": "Double tap to dismiss this wizard" "accessibility_hint": "Veic dubultskārienu, lai noraidītu šo vedni"
}, },
"bookmark": { "bookmark": {
"title": "Bookmarks" "title": "Grāmatzīmes"
},
"followed_tags": {
"title": "Sekotie Tēmturi",
"header": {
"posts": "ziņas",
"participants": "dalībnieki",
"posts_today": "ziņas šodien"
},
"actions": {
"follow": "Sekot",
"unfollow": "Atsekot"
}
} }
} }
} }

View File

@ -1,6 +1,6 @@
{ {
"NSCameraUsageDescription": "Used to take photo for post status", "NSCameraUsageDescription": "Izmanto, lai fotografētu ziņas statusu",
"NSPhotoLibraryAddUsageDescription": "Used to save photo into the Photo Library", "NSPhotoLibraryAddUsageDescription": "Izmanto, lai saglabātu fotoattēlu Photo Library",
"NewPostShortcutItemTitle": "New Post", "NewPostShortcutItemTitle": "Jauna Ziņa",
"SearchShortcutItemTitle": "Search" "SearchShortcutItemTitle": "Meklēt"
} }

View File

@ -0,0 +1,407 @@
<?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>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>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>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>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>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>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>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>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>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>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>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>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>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>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>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>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>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>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>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>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>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>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>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>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>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>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>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>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>other</key>
<string>လွန်ခဲ့သော %ld စက္ကန့်က</string>
</dict>
</dict>
</dict>
</plist>

View File

@ -0,0 +1,762 @@
{
"common": {
"alerts": {
"common": {
"please_try_again": "ပြန်လည်ကြိုးစားကြည့်ပါ",
"please_try_again_later": "နောက်မှ ပြန်လည်ကြိုးစားကြည့်ပါ"
},
"sign_up_failure": {
"title": "အကောင့်ဖွင့်ခြင်း မအောင်မြင်ပါ"
},
"server_error": {
"title": "ဆာဗာ အမှား"
},
"vote_failure": {
"title": "မဲပေးမှု မအောင်မြင်ခြင်း",
"poll_ended": "စစ်တမ်းကောက်မှု ပြီးဆုံးပါပြီ"
},
"discard_post_content": {
"title": "မူကြမ်းကို ပယ်ဖျက်ပါ",
"message": "ရေးသားထားသောမူကြမ်းကို ပယ်ဖျက်ရန် အတည်ပြုပါ"
},
"publish_post_failure": {
"title": "ပို့စ်တင်ခြင်း မအောင်မြင်မှု",
"message": "ပို့စ်တင်ခြင်း မအောင်မြင်ပါ၊ သင်၏ အင်တာနက်ချိတ်ဆက်မှုကို စစ်ဆေးပါ။",
"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": "Cache ကို ရှင်းပါ",
"message": "%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"
}
},
"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": "လော့ဂ်အင်ဝင်",
"sign_up": "အကောင့်ဖန်တီး",
"see_more": "ပိုမိုကြည့်ရှုရန်",
"preview": "အစမ်းကြည့်",
"copy": "Copy",
"share": "မျှဝေ",
"share_user": "%s ကို မျှဝေပါ",
"share_post": "ပို့စ်ကို မျှဝေရန်",
"open_in_safari": "Safari တွင် ဖွင့်ရန်",
"open_in_browser": "Browser တွင် ဖွင့်ရန်",
"find_people": "စောင့်ကြည့်ရန် လူရှာပါ",
"manually_search": "ကိုယ်တိုင် ရှာဖွေရန်",
"skip": "ကျော်",
"reply": "စာပြန်",
"report_user": " %s ကို တိုင်ကြားရန်",
"block_domain": "%s ကို ဘလော့လုပ်ရန်",
"unblock_domain": "%s ကို ဘလော့ဖြုတ်ရန်",
"settings": "ဆက်တင်များ",
"delete": "ဖျက်",
"translate_post": {
"title": "Translate from %s",
"unknown_language": "Unknown"
}
},
"tabs": {
"home": "အိမ်",
"search_and_explore": "Search and Explore",
"notifications": "အသိပေးချက်များ",
"profile": "ကိုယ်ရေးမှတ်တမ်း"
},
"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": "Load Embed",
"link_via_user": "%s via %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": "Share Link in Post",
"tap_then_hold_to_show_menu": "မီနူးပြရန် ဖိထားပါ"
},
"tag": {
"url": "URL",
"mention": "ရည်ညွှန်း",
"link": "လင့်ခ်",
"hashtag": "ဟက်ရှ်တက်ခ်",
"email": "အီးမေးလ်",
"emoji": "အီမိုဂျီ"
},
"visibility": {
"unlisted": "ဒီပို့စ်ကို လူတိုင်းမြင်နိုင်သည်၊ သို့သော် အများမြင်အလင်းစဉ်တွင် မပြသပါ။",
"private": "သူတို့၏ စောင့်ကြည့်သူများသာ ဒီပို့စ်ကို မြင်နိုင်သည်",
"private_from_me": "ကျွန်ုပ်၏ စောင့်ကြည့်သူများသာ ဒီပို့စ်ကို မြင်နိုင်သည်",
"direct": "ရည်ညွှန်းခံရသောအသုံးပြုသူများသာ ဒီပို့စ်ကို မြင်နိုင်သည်"
},
"translation": {
"translated_from": "Translated from %s using %s",
"unknown_language": "Unknown",
"unknown_provider": "Unknown",
"show_original": "Shown Original"
}
},
"friendship": {
"follow": "စောင့်ကြည့်ရန်",
"following": "စောင့်ကြည့်နေသည်",
"request": "တောင်းဆို",
"pending": "ဆိုင်းငံ့ထားသည်",
"block": "ဘလော့လုပ်ရန်",
"block_user": "%s ကို ဘလော့လုပ်ရန်",
"block_domain": "%s ကို ဘလော့လုပ်ရန်",
"unblock": "ဘလော့ဖြုတ်ရန်",
"unblock_user": "%s ကို ဘလော့ဖြုတ်ရန်",
"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": "ဒီအသုံးပြုသူ၏ ပရိုဖိုင်ကို ဘလော့မဖြုတ်မချင်း ကြည့်၍မရပါ၊ သင်၏ ပရိုဖိုင်သည် ထိုသူတို့ထံ ဤကဲ့သို့ ပေါ်နေပါမည်။",
"user_blocking_warning": "%s ၏ ပရိုဖိုင်ကို ဘလော့မဖြုတ်မချင်း ကြည့်၍မရပါ၊ သင်၏ ပရိုဖိုင်သည် ထိုသူ့ထံ ဤကဲ့သို့ ပေါ်နေပါမည်။",
"blocked_warning": "ဤပုဂ္ဂိုလ်မှ သင့်ကို ဘလော့မဖြုတ်မချင်း သူ၏ ပရိုဖိုင်သည် သင် ကြည့်၍မရပါ။",
"user_blocked_warning": "%s မှ သင့်ကို ဘလော့မဖြုတ်မချင်း သူ၏ ပရိုဖိုင်သည် သင် ကြည့်၍မရပါ။",
"suspended_warning": "ဤအသုံးပြုသူသည် ဆိုင်းငံ့ခံထားရသည်။",
"user_suspended_warning": "%s ၏အကောင့်သည် ဆိုင်းငံ့ခံထားရသည်။"
}
}
}
},
"scene": {
"welcome": {
"slogan": "လူမှုကွန်ယက်ကို သင်၏လက်ထဲသို့ ပြန်လည်ထည့်ပေးလိုက်ပြီ။",
"get_started": "စတင်ရန်",
"log_in": "လော့ခ်အင်ဝင်ရန်"
},
"login": {
"title": "ပြန်လည်ကြိုဆိုပါသည်",
"subtitle": "သင်၏အကောင့်ဖွင့်ခဲ့သော ဆာဗာပေါ်တွင် လော့ခ်အင်ဝင်ရောက်ပါ",
"server_search_field": {
"placeholder": "URL ကို ထည့်သွင်းပါ (သို့) သင်၏ ဆာဗာကို ရှာပါ"
}
},
"server_picker": {
"title": "Mastodon ကို အသိုင်းအဝန်းပေါင်းစုံမှ အသုံးပြုသူများဖြင့် ဖွဲ့စည်းထားသည်။",
"subtitle": "သင်၏ ဒေသ၊ စိတ်ဝင်စားမှု အပေါ်အခြေခံသော ဆာဗာတစ်ခု ရွေးချယ်ပါ၊ မည်သည့်ဆာဗာကို ရွေးချယ်ထားစေကာမူ အခြားအသုံးပြုသူများနှင့် ပုံမှန်အတိုင်း ဆက်သွယ်နိုင်သည်။",
"button": {
"category": {
"all": "အားလုံး",
"all_accessiblity_description": "အမျိုးအစား - အားလုံး",
"academia": "ပညာရှင်",
"activism": "တက်ကြွလှုပ်ရှားမှု",
"food": "အစားအစာ",
"furry": "furry",
"games": "ဂိမ်း",
"general": "အထွေထွေ",
"journalism": "သတင်းစာပညာ",
"lgbt": "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": "ရလဒ်မရှိပါ"
}
},
"register": {
"title": "သင့်ကို %s တွင် စတင်လိုက်ရအောင်",
"lets_get_you_set_up_on_domain": "သင့်ကို %s တွင် စတင်လိုက်ရအောင်",
"input": {
"avatar": {
"delete": "ဖျက်"
},
"username": {
"placeholder": "အသုံးပြုသူအမည်",
"duplicate_prompt": "ဤအသုံးပြုသူအမည်သည် ရှိနှင့်ပြီးဖြစ်သည်။"
},
"display_name": {
"placeholder": "ပြသမည့် အမည်"
},
"email": {
"placeholder": "အီးမေးလ်"
},
"password": {
"placeholder": "စကားဝှက်",
"require": "သင်၏စကားဝှက်သည် အနည်းဆုံးလိုအပ်သည်:",
"character_limit": "အက္ခရာ ၈ လုံး",
"accessibility": {
"checked": "စစ်ဆေးပြီးပြီ",
"unchecked": "မစစ်ဆေးခဲ့ပါ"
},
"hint": "စကားဝှက်သည် အနည်းဆုံး အက္ခရာ ၈ လုံး ရှိရပါမည်။"
},
"invite": {
"registration_user_invite_request": "သင် ဘာကြောင့် ပါဝင်ချင်တာပါလဲ?"
}
},
"error": {
"item": {
"username": "အသုံးပြုသူအမည်",
"email": "အီးမေးလ်",
"password": "စကားဝှက်",
"agreement": "သဘောတူညီမှု",
"locale": "ဒေသဆိုင်ရာ",
"reason": "အကြောင်းပြချက်"
},
"reason": {
"blocked": "%s တွင် ခွင့်မပြုထားသော အီးမေးလ်ထောက်ပံ့သူပါဝင်နေသည်။",
"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": "အသုံးပြုသူအမည်ရှည်လွန်းသည် (စာလုံး ၃၀ လုံးထက် ရှည်၍ မရပါ)",
"email_invalid": "ဤအီးမေးလ်လိပ်စာသည် ခိုင်လုံမှု မရှိပါ",
"password_too_short": "စကားဝှက်တိုလွန်းသည် (အနည်းဆုံး စာလုံး ၈ လုံး ရှိရမည်)"
}
}
},
"server_rules": {
"title": "အခြေခံမှုအချို့",
"subtitle": "ဤစည်းမျဉ်းများကို ထိန်းညှိသူ %s ယောက်က သတ်မှတ်ကွပ်ကဲသည်။",
"prompt": "ဆက်လက်သွားမည်ဆိုပါက သင်သည် %s အတွက် ဝန်ဆောင်မှုနှင့် ကိုယ်ရေးကိုယ်တာမူဝါဒများကို လိုက်နာရမည်ဖြစ်သည်။",
"terms_of_service": "ဝန်ဆောင်မှုစည်းကမ်းချက်များ",
"privacy_policy": "ကိုယ်ရေးကိုယ်တာမူဝါဒ",
"button": {
"confirm": "သဘောတူညီသည်"
}
},
"confirm_email": {
"title": "နောက််ဆုံးတစ်ခု",
"subtitle": "သင့်ကို ပို့လိုက်သောအီးမေးလ်တွင် ပါဝင်သည့်လင့်ခ်ကို နှိပ်ပါ။",
"tap_the_link_we_emailed_to_you_to_verify_your_account": "သင့်ကို ပို့လိုက်သောအီးမေးလ်တွင် ပါဝင်သည့်လင့်ခ်ကို နှိပ်ပါ။",
"button": {
"open_email_app": "အီးမေးလ်ကို ဖွင့်ပါ",
"resend": "ပြန်ပို့ပါ"
},
"dont_receive_email": {
"title": "သင့်အီးမေးလ်ကို စစ်ကြည့်ပါ",
"description": "Check if your email address is correct as well as your junk folder if you havent.",
"resend_email": "အီးမေးလ်ကိုပြန်ပို့ပါ"
},
"open_email_app": {
"title": "သင်၏စာဝင်ပုံးကို စစ်ဆေးပါ",
"description": "We just sent you an email. Check your junk folder if you havent.",
"mail": "မေးလ်",
"open_email_client": "Open Email Client"
}
},
"home_timeline": {
"title": "အိမ်",
"navigation_bar_state": {
"offline": "အော့ဖ်လိုင်း",
"new_posts": "ပို့စ်အသစ်ကြည့်ရန်",
"published": "တင်လိုက်ပါပြီ!",
"Publishing": "ပို့စ်ကို တင်နေသည်...",
"accessibility": {
"logo_label": "လိုဂိုခလုတ်",
"logo_hint": "Tap to scroll to top and tap again to previous location"
}
}
},
"suggestion_account": {
"title": "Find People to Follow",
"follow_explain": "When you follow someone, youll see their posts in your home feed."
},
"compose": {
"title": {
"new_post": "ပို့စ်အသစ်",
"new_reply": "စာပြန်အသစ်"
},
"media_selection": {
"camera": "ဓါတ်ပုံရိုက်",
"photo_library": "ဓာတ်ပုံပြတိုက်",
"browse": "ရှာဖွေ"
},
"content_input_placeholder": "Type or paste whats on your mind",
"compose_action": "ပို့စ်တင်",
"replying_to_user": "%s ထံ စာပြန်နေသည်",
"attachment": {
"photo": "ဓာတ်ပုံ",
"video": "ဗီဒီယို",
"attachment_broken": "This %s is broken and cant be\nuploaded to Mastodon.",
"description_photo": "Describe the photo for the visually-impaired...",
"description_video": "Describe the video for the visually-impaired...",
"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": {
"duration_time": "Duration: %s",
"thirty_minutes": "30 minutes",
"one_hour": "1 Hour",
"six_hours": "6 Hours",
"one_day": "1 Day",
"three_days": "3 Days",
"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"
},
"content_warning": {
"placeholder": "Write an accurate warning here..."
},
"visibility": {
"public": "Public",
"unlisted": "Unlisted",
"private": "Followers only",
"direct": "Only people I mention"
},
"auto_complete": {
"space_to_add": "Space to add"
},
"accessibility": {
"append_attachment": "Add Attachment",
"append_poll": "Add Poll",
"remove_poll": "Remove Poll",
"custom_emoji_picker": "Custom Emoji Picker",
"enable_content_warning": "Enable Content Warning",
"disable_content_warning": "Disable Content Warning",
"post_visibility_menu": "Post Visibility Menu",
"post_options": "Post Options",
"posting_as": "Posting as %s"
},
"keyboard": {
"discard_post": "Discard Post",
"publish_post": "Publish Post",
"toggle_poll": "Toggle Poll",
"toggle_content_warning": "Toggle Content Warning",
"append_attachment_entry": "Add Attachment - %s",
"select_visibility_entry": "မြင်နိုင်စွမ်း ရွေးချယ်ရန် - %s"
}
},
"profile": {
"header": {
"follows_you": "Follows You"
},
"dashboard": {
"my_posts": "posts",
"my_following": "following",
"my_followers": "followers",
"other_posts": "posts",
"other_following": "following",
"other_followers": "followers"
},
"fields": {
"joined": "Joined",
"add_row": "Add Row",
"placeholder": {
"label": "Label",
"content": "Content"
},
"verified": {
"short": "Verified on %s",
"long": "Ownership of this link was checked on %s"
}
},
"segmented_control": {
"posts": "Posts",
"replies": "Replies",
"posts_and_replies": "Posts and Replies",
"media": "Media",
"about": "About"
},
"relationship_action_alert": {
"confirm_mute_user": {
"title": "Mute Account",
"message": "Confirm to mute %s"
},
"confirm_unmute_user": {
"title": "Unmute Account",
"message": "Confirm to unmute %s"
},
"confirm_block_user": {
"title": "Block Account",
"message": "Confirm to block %s"
},
"confirm_unblock_user": {
"title": "Unblock Account",
"message": "Confirm to unblock %s"
},
"confirm_show_reblogs": {
"title": "Show Reblogs",
"message": "Confirm to show reblogs"
},
"confirm_hide_reblogs": {
"title": "Hide Reblogs",
"message": "Confirm to hide reblogs"
}
},
"accessibility": {
"show_avatar_image": "Show avatar image",
"edit_avatar_image": "Edit avatar image",
"show_banner_image": "Show banner image",
"double_tap_to_open_the_list": "Double tap to open the list"
}
},
"follower": {
"title": "follower",
"footer": "Followers from other servers are not displayed."
},
"following": {
"title": "following",
"footer": "Follows from other servers are not displayed."
},
"familiarFollowers": {
"title": "Followers you familiar",
"followed_by_names": "Followed by %s"
},
"favorited_by": {
"title": "Favorited By"
},
"reblogged_by": {
"title": "Reblogged By"
},
"search": {
"title": "Search",
"search_bar": {
"placeholder": "Search hashtags and users",
"cancel": "Cancel"
},
"recommend": {
"button_text": "See All",
"hash_tag": {
"title": "Trending on Mastodon",
"description": "Hashtags that are getting quite a bit of attention",
"people_talking": "%s people are talking"
},
"accounts": {
"title": "Accounts you might like",
"description": "You may like to follow these accounts",
"follow": "Follow"
}
},
"searching": {
"segment": {
"all": "All",
"people": "People",
"hashtags": "Hashtags",
"posts": "Posts"
},
"empty_state": {
"no_results": "No results"
},
"recent_search": "Recent searches",
"clear": "Clear"
}
},
"discovery": {
"tabs": {
"posts": "Posts",
"hashtags": "Hashtags",
"news": "News",
"community": "Community",
"for_you": "For You"
},
"intro": "These are the posts gaining traction in your corner of Mastodon."
},
"favorite": {
"title": "Your Favorites"
},
"notification": {
"title": {
"Everything": "Everything",
"Mentions": "Mentions"
},
"notification_description": {
"followed_you": "followed you",
"favorited_your_post": "favorited your post",
"reblogged_your_post": "reblogged your post",
"mentioned_you": "mentioned you",
"request_to_follow_you": "request to follow you",
"poll_has_ended": "poll has ended"
},
"keyobard": {
"show_everything": "Show Everything",
"show_mentions": "Show Mentions"
},
"follow_request": {
"accept": "Accept",
"accepted": "Accepted",
"reject": "reject",
"rejected": "Rejected"
}
},
"thread": {
"back_title": "Post",
"title": "Post from %s"
},
"settings": {
"title": "Settings",
"section": {
"appearance": {
"title": "Appearance",
"automatic": "Automatic",
"light": "Always Light",
"dark": "Always Dark"
},
"look_and_feel": {
"title": "Look and Feel",
"use_system": "Use System",
"really_dark": "Really Dark",
"sorta_dark": "Sorta Dark",
"light": "Light"
},
"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"
}
},
"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"
},
"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"
}
},
"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": {
"title_report": "Report",
"title": "Report %s",
"step1": "Step 1 of 2",
"step2": "Step 2 of 2",
"content1": "Are there any other posts youd like to add to the report?",
"content2": "Is there anything the moderators should know about this report?",
"report_sent_title": "Thanks for reporting, well look into this.",
"send": "Send Report",
"skip_to_send": "Send without comment",
"text_placeholder": "Type or paste additional comments",
"reported": "REPORTED",
"step_one": {
"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": "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": "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": "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": "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": "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": {
"keyboard": {
"close_preview": "Close Preview",
"show_next": "Show Next",
"show_previous": "Show Previous"
}
},
"account_list": {
"tab_bar_hint": "Current selected profile: %s. Double tap then hold to show account switcher",
"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"
}
}
}
}

View File

@ -0,0 +1,6 @@
{
"NSCameraUsageDescription": "ပို့စ်အခြေအနေအတွက် ပုံရိုက်ရန် အသုံးပြုခဲ့သည်",
"NSPhotoLibraryAddUsageDescription": "ဓာတ်ပုံပြခန်းတွင် ပုံသိမ်းရန် အသုံးပြုခဲ့သည်",
"NewPostShortcutItemTitle": "ပို့စ်အသစ်",
"SearchShortcutItemTitle": "ရှာဖွေရန်"
}

View File

@ -15,7 +15,7 @@
<key>one</key> <key>one</key>
<string>1 unread notification</string> <string>1 unread notification</string>
<key>other</key> <key>other</key>
<string>%ld unread notification</string> <string>%ld unread notifications</string>
</dict> </dict>
</dict> </dict>
<key>a11y.plural.count.input_limit_exceeds</key> <key>a11y.plural.count.input_limit_exceeds</key>
@ -50,6 +50,22 @@
<string>%ld tekens</string> <string>%ld tekens</string>
</dict> </dict>
</dict> </dict>
<key>a11y.plural.count.characters_left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@character_count@ left</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>other</key>
<string>%ld characters</string>
</dict>
</dict>
<key>plural.count.followed_by_and_mutual</key> <key>plural.count.followed_by_and_mutual</key>
<dict> <dict>
<key>NSStringLocalizedFormatKey</key> <key>NSStringLocalizedFormatKey</key>

View File

@ -51,6 +51,11 @@
"clean_cache": { "clean_cache": {
"title": "Cache-geheugen Wissen", "title": "Cache-geheugen Wissen",
"message": "Cache-geheugen (%s) succesvol gewist." "message": "Cache-geheugen (%s) succesvol gewist."
},
"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"
} }
}, },
"controls": { "controls": {
@ -74,10 +79,11 @@
"take_photo": "Maak foto", "take_photo": "Maak foto",
"save_photo": "Bewaar foto", "save_photo": "Bewaar foto",
"copy_photo": "Kopieer foto", "copy_photo": "Kopieer foto",
"sign_in": "Aanmelden", "sign_in": "Inloggen",
"sign_up": "Registreren", "sign_up": "Account aanmaken",
"see_more": "Meer", "see_more": "Meer",
"preview": "Voorvertoning", "preview": "Voorvertoning",
"copy": "Copy",
"share": "Deel", "share": "Deel",
"share_user": "Delen %s", "share_user": "Delen %s",
"share_post": "Deel bericht", "share_post": "Deel bericht",
@ -91,12 +97,16 @@
"block_domain": "Blokkeer %s", "block_domain": "Blokkeer %s",
"unblock_domain": "Deblokkeer %s", "unblock_domain": "Deblokkeer %s",
"settings": "Instellingen", "settings": "Instellingen",
"delete": "Verwijder" "delete": "Verwijder",
"translate_post": {
"title": "Translate from %s",
"unknown_language": "Unknown"
}
}, },
"tabs": { "tabs": {
"home": "Start", "home": "Start",
"search": "Zoek", "search_and_explore": "Search and Explore",
"notification": "Melding", "notifications": "Notifications",
"profile": "Profiel" "profile": "Profiel"
}, },
"keyboard": { "keyboard": {
@ -132,6 +142,8 @@
"sensitive_content": "Gevoelige inhoud", "sensitive_content": "Gevoelige inhoud",
"media_content_warning": "Tap hier om te tonen", "media_content_warning": "Tap hier om te tonen",
"tap_to_reveal": "Tik om te onthullen", "tap_to_reveal": "Tik om te onthullen",
"load_embed": "Load Embed",
"link_via_user": "%s via %s",
"poll": { "poll": {
"vote": "Stemmen", "vote": "Stemmen",
"closed": "Gesloten" "closed": "Gesloten"
@ -139,8 +151,8 @@
"meta_entity": { "meta_entity": {
"url": "Link: %s", "url": "Link: %s",
"hashtag": "Hashtag: %s", "hashtag": "Hashtag: %s",
"mention": "Show Profile: %s", "mention": "Profiel weergeven: %s",
"email": "Email address: %s" "email": "E-mailadres: %s"
}, },
"actions": { "actions": {
"reply": "Reageren", "reply": "Reageren",
@ -153,6 +165,7 @@
"show_image": "Toon afbeelding", "show_image": "Toon afbeelding",
"show_gif": "GIF weergeven", "show_gif": "GIF weergeven",
"show_video_player": "Toon videospeler", "show_video_player": "Toon videospeler",
"share_link_in_post": "Share Link in Post",
"tap_then_hold_to_show_menu": "Tik en houd vast om menu te tonen" "tap_then_hold_to_show_menu": "Tik en houd vast om menu te tonen"
}, },
"tag": { "tag": {
@ -168,6 +181,12 @@
"private": "Alleen hun volgers kunnen dit bericht zien.", "private": "Alleen hun volgers kunnen dit bericht zien.",
"private_from_me": "Alleen mijn volgers kunnen dit bericht zien.", "private_from_me": "Alleen mijn volgers kunnen dit bericht zien.",
"direct": "Alleen de vermelde persoon kan dit bericht zien." "direct": "Alleen de vermelde persoon kan dit bericht zien."
},
"translation": {
"translated_from": "Translated from %s using %s",
"unknown_language": "Unknown",
"unknown_provider": "Unknown",
"show_original": "Shown Original"
} }
}, },
"friendship": { "friendship": {
@ -187,8 +206,8 @@
"unmute_user": "%s niet langer negeren", "unmute_user": "%s niet langer negeren",
"muted": "Genegeerd", "muted": "Genegeerd",
"edit_info": "Bewerken", "edit_info": "Bewerken",
"show_reblogs": "Show Reblogs", "show_reblogs": "Toon reblogs",
"hide_reblogs": "Hide Reblogs" "hide_reblogs": "Verberg reblogs"
}, },
"timeline": { "timeline": {
"filtered": "Gefilterd", "filtered": "Gefilterd",
@ -218,10 +237,16 @@
"get_started": "Aan de slag", "get_started": "Aan de slag",
"log_in": "Log in" "log_in": "Log in"
}, },
"login": {
"title": "Welkom terug",
"subtitle": "Log je in op de server waarop je je account hebt aangemaakt.",
"server_search_field": {
"placeholder": "Voer URL in of zoek naar uw server"
}
},
"server_picker": { "server_picker": {
"title": "Kies een server, welke dan ook.", "title": "Kies een server, welke dan ook.",
"subtitle": "Kies een gemeenschap gebaseerd op jouw interesses, regio of een algemeen doel.", "subtitle": "Kies een server gebaseerd op je regio, interesses, of een algemene server. Je kunt nog steeds chatten met iedereen op Mastodon, ongeacht op welke server je zit.",
"subtitle_extend": "Kies een gemeenschap gebaseerd op jouw interesses, regio, of een algemeen doel. Elke gemeenschap wordt beheerd door een volledig onafhankelijke organisatie of individu.",
"button": { "button": {
"category": { "category": {
"all": "Alles", "all": "Alles",
@ -248,8 +273,7 @@
"category": "CATEGORIE" "category": "CATEGORIE"
}, },
"input": { "input": {
"placeholder": "Zoek uw server of sluit u bij een nieuwe server aan...", "search_servers_or_enter_url": "Zoek naar gemeenschappen of voer URL in"
"search_servers_or_enter_url": "Search servers or enter URL"
}, },
"empty_state": { "empty_state": {
"finding_servers": "Beschikbare servers zoeken...", "finding_servers": "Beschikbare servers zoeken...",
@ -259,7 +283,7 @@
}, },
"register": { "register": {
"title": "Vertel ons over uzelf.", "title": "Vertel ons over uzelf.",
"lets_get_you_set_up_on_domain": "Lets get you set up on %s", "lets_get_you_set_up_on_domain": "Laten we je account instellen op %s",
"input": { "input": {
"avatar": { "avatar": {
"delete": "Verwijderen" "delete": "Verwijderen"
@ -330,7 +354,7 @@
"confirm_email": { "confirm_email": {
"title": "Nog één ding.", "title": "Nog één ding.",
"subtitle": "We hebben een e-mail gestuurd naar %s,\nklik op de link om uw account te bevestigen.", "subtitle": "We hebben een e-mail gestuurd naar %s,\nklik op de link om uw account te bevestigen.",
"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": "Tik op de link in de e-mail die je hebt ontvangen om uw account te verifiëren",
"button": { "button": {
"open_email_app": "Email Openen", "open_email_app": "Email Openen",
"resend": "Verstuur opnieuw" "resend": "Verstuur opnieuw"
@ -355,8 +379,8 @@
"published": "Gepubliceerd!", "published": "Gepubliceerd!",
"Publishing": "Bericht publiceren...", "Publishing": "Bericht publiceren...",
"accessibility": { "accessibility": {
"logo_label": "Logo Button", "logo_label": "Logo knop",
"logo_hint": "Tap to scroll to top and tap again to previous location" "logo_hint": "Tik om naar boven te scrollen en tik nogmaals om terug te keren naar de vorige locatie"
} }
} }
}, },
@ -383,10 +407,12 @@
"attachment_broken": "Deze %s is corrupt en kan niet geüpload worden naar Mastodon.", "attachment_broken": "Deze %s is corrupt en kan niet geüpload worden naar Mastodon.",
"description_photo": "Omschrijf de foto voor mensen met een visuele beperking...", "description_photo": "Omschrijf de foto voor mensen met een visuele beperking...",
"description_video": "Omschrijf de video voor mensen met een visuele beperking...", "description_video": "Omschrijf de video voor mensen met een visuele beperking...",
"load_failed": "Load Failed", "load_failed": "Laden mislukt",
"upload_failed": "Upload Failed", "upload_failed": "Uploaden mislukt",
"can_not_recognize_this_media_attachment": "Can not regonize this media attachment", "can_not_recognize_this_media_attachment": "Kan de media in de bijlage niet herkennen",
"attachment_too_large": "Attachment too large" "attachment_too_large": "Bijlage te groot",
"compressing_state": "Bezig met comprimeren...",
"server_processing_state": "Server is bezig met verwerken..."
}, },
"poll": { "poll": {
"duration_time": "Duur: %s", "duration_time": "Duur: %s",
@ -396,7 +422,9 @@
"one_day": "1 Dag", "one_day": "1 Dag",
"three_days": "3 Dagen", "three_days": "3 Dagen",
"seven_days": "7 Dagen", "seven_days": "7 Dagen",
"option_number": "Optie %ld" "option_number": "Optie %ld",
"the_poll_is_invalid": "De peiling is ongeldig",
"the_poll_has_empty_option": "De peiling heeft een lege optie"
}, },
"content_warning": { "content_warning": {
"placeholder": "Schrijf hier een nauwkeurige waarschuwing..." "placeholder": "Schrijf hier een nauwkeurige waarschuwing..."
@ -417,7 +445,9 @@
"custom_emoji_picker": "Eigen Emojikiezer", "custom_emoji_picker": "Eigen Emojikiezer",
"enable_content_warning": "Inhoudswaarschuwing inschakelen", "enable_content_warning": "Inhoudswaarschuwing inschakelen",
"disable_content_warning": "Inhoudswaarschuwing Uitschakelen", "disable_content_warning": "Inhoudswaarschuwing Uitschakelen",
"post_visibility_menu": "Berichtzichtbaarheidsmenu" "post_visibility_menu": "Berichtzichtbaarheidsmenu",
"post_options": "Plaats Bericht Opties",
"posting_as": "Plaats bericht als %s"
}, },
"keyboard": { "keyboard": {
"discard_post": "Bericht Verwijderen", "discard_post": "Bericht Verwijderen",
@ -430,18 +460,26 @@
}, },
"profile": { "profile": {
"header": { "header": {
"follows_you": "Follows You" "follows_you": "Volgt jou"
}, },
"dashboard": { "dashboard": {
"posts": "berichten", "my_posts": "posts",
"following": "volgend", "my_following": "following",
"followers": "volgers" "my_followers": "followers",
"other_posts": "posts",
"other_following": "following",
"other_followers": "followers"
}, },
"fields": { "fields": {
"joined": "Joined",
"add_row": "Rij Toevoegen", "add_row": "Rij Toevoegen",
"placeholder": { "placeholder": {
"label": "Etiket", "label": "Etiket",
"content": "Inhoud" "content": "Inhoud"
},
"verified": {
"short": "Geverifieerd op %s",
"long": "Eigendom van deze link is gecontroleerd op %s"
} }
}, },
"segmented_control": { "segmented_control": {
@ -469,12 +507,12 @@
"message": "Bevestig om %s te deblokkeren" "message": "Bevestig om %s te deblokkeren"
}, },
"confirm_show_reblogs": { "confirm_show_reblogs": {
"title": "Show Reblogs", "title": "Toon reblogs",
"message": "Confirm to show reblogs" "message": "Bevestig om reblogs te tonen"
}, },
"confirm_hide_reblogs": { "confirm_hide_reblogs": {
"title": "Hide Reblogs", "title": "Verberg reblogs",
"message": "Confirm to hide reblogs" "message": "Bevestig om reblogs te verbergen"
} }
}, },
"accessibility": { "accessibility": {
@ -485,16 +523,16 @@
} }
}, },
"follower": { "follower": {
"title": "follower", "title": "volger",
"footer": "Volgers van andere servers worden niet weergegeven." "footer": "Volgers van andere servers worden niet weergegeven."
}, },
"following": { "following": {
"title": "following", "title": "volgend",
"footer": "Volgers van andere servers worden niet weergegeven." "footer": "Volgers van andere servers worden niet weergegeven."
}, },
"familiarFollowers": { "familiarFollowers": {
"title": "Followers you familiar", "title": "Volgers die je kent",
"followed_by_names": "Followed by %s" "followed_by_names": "Gevolgd door %s"
}, },
"favorited_by": { "favorited_by": {
"title": "Favorited By" "title": "Favorited By"
@ -540,7 +578,7 @@
"posts": "Berichten", "posts": "Berichten",
"hashtags": "Hashtags", "hashtags": "Hashtags",
"news": "Nieuws", "news": "Nieuws",
"community": "Community", "community": "Gemeenschap",
"for_you": "Voor jou" "for_you": "Voor jou"
}, },
"intro": "Dit zijn de berichten die populair zijn in jouw Mastodon-kringen." "intro": "Dit zijn de berichten die populair zijn in jouw Mastodon-kringen."
@ -566,10 +604,10 @@
"show_mentions": "Vermeldingen weergeven" "show_mentions": "Vermeldingen weergeven"
}, },
"follow_request": { "follow_request": {
"accept": "Accept", "accept": "Accepteren",
"accepted": "Accepted", "accepted": "Geaccepteerd",
"reject": "reject", "reject": "afwijzen",
"rejected": "Rejected" "rejected": "Afgewezen"
} }
}, },
"thread": { "thread": {
@ -646,11 +684,11 @@
"text_placeholder": "Schrijf of plak aanvullende opmerkingen", "text_placeholder": "Schrijf of plak aanvullende opmerkingen",
"reported": "Gerapporteerd", "reported": "Gerapporteerd",
"step_one": { "step_one": {
"step_1_of_4": "Step 1 of 4", "step_1_of_4": "Stap 1 van 4",
"whats_wrong_with_this_post": "What's wrong with this post?", "whats_wrong_with_this_post": "Wat is er mis met dit bericht?",
"whats_wrong_with_this_account": "What's wrong with this account?", "whats_wrong_with_this_account": "Wat is er mis met dit bericht?",
"whats_wrong_with_this_username": "What's wrong with %s?", "whats_wrong_with_this_username": "Wat is er mis met %s?",
"select_the_best_match": "Select the best match", "select_the_best_match": "Selecteer de beste overeenkomst",
"i_dont_like_it": "I dont like it", "i_dont_like_it": "I dont like it",
"it_is_not_something_you_want_to_see": "It is not something you want to see", "it_is_not_something_you_want_to_see": "It is not something you want to see",
"its_spam": "Its spam", "its_spam": "Its spam",
@ -707,6 +745,18 @@
}, },
"bookmark": { "bookmark": {
"title": "Bookmarks" "title": "Bookmarks"
},
"followed_tags": {
"title": "Followed Tags",
"header": {
"posts": "posts",
"participants": "participants",
"posts_today": "posts today"
},
"actions": {
"follow": "Follow",
"unfollow": "Unfollow"
}
} }
} }
} }

View File

@ -50,6 +50,22 @@
<string>%ld caracteres</string> <string>%ld caracteres</string>
</dict> </dict>
</dict> </dict>
<key>a11y.plural.count.characters_left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@character_count@ restantes</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 carácter</string>
<key>other</key>
<string>%ld carácteres</string>
</dict>
</dict>
<key>plural.count.followed_by_and_mutual</key> <key>plural.count.followed_by_and_mutual</key>
<dict> <dict>
<key>NSStringLocalizedFormatKey</key> <key>NSStringLocalizedFormatKey</key>
@ -72,9 +88,9 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>Followed by %1$@, and another mutual</string> <string>Seguido por %1$@, e outro em comum</string>
<key>other</key> <key>other</key>
<string>Followed by %1$@, and %ld mutuals</string> <string>Seguido por %1$@, e %ld em comum</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.metric_formatted.post</key> <key>plural.count.metric_formatted.post</key>
@ -104,9 +120,9 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>1 media</string> <string>1 mídia</string>
<key>other</key> <key>other</key>
<string>%ld media</string> <string>%ld mídias</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.post</key> <key>plural.count.post</key>

View File

@ -2,7 +2,7 @@
"common": { "common": {
"alerts": { "alerts": {
"common": { "common": {
"please_try_again": "Por favor tente novamente.", "please_try_again": "Por favor, tente novamente.",
"please_try_again_later": "Tente novamente mais tarde." "please_try_again_later": "Tente novamente mais tarde."
}, },
"sign_up_failure": { "sign_up_failure": {
@ -51,6 +51,11 @@
"clean_cache": { "clean_cache": {
"title": "Limpar Cache", "title": "Limpar Cache",
"message": "%s do cache removidos com sucesso." "message": "%s do cache removidos com sucesso."
},
"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"
} }
}, },
"controls": { "controls": {
@ -78,6 +83,7 @@
"sign_up": "Criar conta", "sign_up": "Criar conta",
"see_more": "Ver mais", "see_more": "Ver mais",
"preview": "Pré-visualização", "preview": "Pré-visualização",
"copy": "Copy",
"share": "Compartilhar", "share": "Compartilhar",
"share_user": "Compartilhar %s", "share_user": "Compartilhar %s",
"share_post": "Compartilhar postagem", "share_post": "Compartilhar postagem",
@ -91,12 +97,16 @@
"block_domain": "Bloquear %s", "block_domain": "Bloquear %s",
"unblock_domain": "Desbloquear %s", "unblock_domain": "Desbloquear %s",
"settings": "Configurações", "settings": "Configurações",
"delete": "Excluir" "delete": "Excluir",
"translate_post": {
"title": "Translate from %s",
"unknown_language": "Unknown"
}
}, },
"tabs": { "tabs": {
"home": "Início", "home": "Início",
"search": "Buscar", "search_and_explore": "Search and Explore",
"notification": "Notificação", "notifications": "Notifications",
"profile": "Perfil" "profile": "Perfil"
}, },
"keyboard": { "keyboard": {
@ -132,6 +142,8 @@
"sensitive_content": "Conteúdo sensível", "sensitive_content": "Conteúdo sensível",
"media_content_warning": "Toque em qualquer lugar para revelar", "media_content_warning": "Toque em qualquer lugar para revelar",
"tap_to_reveal": "Toque para revelar", "tap_to_reveal": "Toque para revelar",
"load_embed": "Load Embed",
"link_via_user": "%s via %s",
"poll": { "poll": {
"vote": "Votar", "vote": "Votar",
"closed": "Fechado" "closed": "Fechado"
@ -153,6 +165,7 @@
"show_image": "Exibir imagem", "show_image": "Exibir imagem",
"show_gif": "Exibir GIF", "show_gif": "Exibir GIF",
"show_video_player": "Mostrar reprodutor de vídeo", "show_video_player": "Mostrar reprodutor de vídeo",
"share_link_in_post": "Share Link in Post",
"tap_then_hold_to_show_menu": "Toque e em seguida segure para exibir o menu" "tap_then_hold_to_show_menu": "Toque e em seguida segure para exibir o menu"
}, },
"tag": { "tag": {
@ -164,10 +177,16 @@
"emoji": "Emoji" "emoji": "Emoji"
}, },
"visibility": { "visibility": {
"unlisted": "Everyone can see this post but not display in the public timeline.", "unlisted": "Todos podem ver esta postagem, mas não são exibidos na linha do tempo pública.",
"private": "Somente seus seguidores podem ver essa postagem.", "private": "Somente seus seguidores podem ver essa postagem.",
"private_from_me": "Somente meus seguidores podem ver essa postagem.", "private_from_me": "Somente meus seguidores podem ver essa postagem.",
"direct": "Somente o usuário mencionado pode ver essa postagem." "direct": "Somente o usuário mencionado pode ver essa postagem."
},
"translation": {
"translated_from": "Translated from %s using %s",
"unknown_language": "Unknown",
"unknown_provider": "Unknown",
"show_original": "Shown Original"
} }
}, },
"friendship": { "friendship": {
@ -202,8 +221,8 @@
}, },
"header": { "header": {
"no_status_found": "Nenhuma postagem encontrada", "no_status_found": "Nenhuma postagem encontrada",
"blocking_warning": "You cant view this user's profile\nuntil you unblock them.\nYour profile looks like this to them.", "blocking_warning": "Você não pode ver o perfil deste usuário até desbloqueá-lo.\nSeu perfil aparece assim para esse usuário.",
"user_blocking_warning": "You cant view %ss profile\nuntil you unblock them.\nYour profile looks like this to them.", "user_blocking_warning": "Você não pode ver o perfil de %s até desbloqueá-lo.\nSeu perfil aparece assim para esse usuário.",
"blocked_warning": "Você não pode ver o perfil desse usuário até que ele o desbloqueie.", "blocked_warning": "Você não pode ver o perfil desse usuário até que ele o desbloqueie.",
"user_blocked_warning": "Você não pode ver o perfil de %s até que ele o desbloqueie.", "user_blocked_warning": "Você não pode ver o perfil de %s até que ele o desbloqueie.",
"suspended_warning": "Esse usuário foi suspenso.", "suspended_warning": "Esse usuário foi suspenso.",
@ -218,10 +237,16 @@
"get_started": "Comece já", "get_started": "Comece já",
"log_in": "Entrar" "log_in": "Entrar"
}, },
"login": {
"title": "Bem-vindo de volta",
"subtitle": "Logado na instância em que você criou a sua conta.",
"server_search_field": {
"placeholder": "Insira a URL ou procure pela sua instância"
}
},
"server_picker": { "server_picker": {
"title": "Mastodon é feito de usuários em instâncias diferentes.", "title": "Mastodon é feito de usuários em instâncias diferentes.",
"subtitle": "Escolha uma instância baseada nos seus interesses, região, ou em uma proposta geral.", "subtitle": "Escolha uma instância baseada na sua região, interesses, ou uma de uso geral. Você ainda poderá conversar com qualquer um no Mastodon, independente da instância.",
"subtitle_extend": "Escolha uma instância baseada nos seus interesses, região, ou em uma proposta geral. Cada instância é operada por um indivíduo ou uma organização totalmente independente.",
"button": { "button": {
"category": { "category": {
"all": "Todos", "all": "Todos",
@ -248,8 +273,7 @@
"category": "Categoria" "category": "Categoria"
}, },
"input": { "input": {
"placeholder": "Procurar instâncias", "search_servers_or_enter_url": "Procurar comunidades ou inserir URL"
"search_servers_or_enter_url": "Procurar instâncias ou inserir URL"
}, },
"empty_state": { "empty_state": {
"finding_servers": "Procurando instâncias disponíveis...", "finding_servers": "Procurando instâncias disponíveis...",
@ -259,7 +283,7 @@
}, },
"register": { "register": {
"title": "Vamos configurar você em %s", "title": "Vamos configurar você em %s",
"lets_get_you_set_up_on_domain": "Lets get you set up on %s", "lets_get_you_set_up_on_domain": "Vamos configurar você em %s",
"input": { "input": {
"avatar": { "avatar": {
"delete": "Excluir" "delete": "Excluir"
@ -279,13 +303,13 @@
"require": "Sua senha deve ter pelo menos:", "require": "Sua senha deve ter pelo menos:",
"character_limit": "8 carácteres", "character_limit": "8 carácteres",
"accessibility": { "accessibility": {
"checked": "checked", "checked": "marcado",
"unchecked": "unchecked" "unchecked": "desmarcado"
}, },
"hint": "Sua senha precisa ter pelo menos oito carácteres" "hint": "Sua senha precisa ter pelo menos oito carácteres"
}, },
"invite": { "invite": {
"registration_user_invite_request": "Why do you want to join?" "registration_user_invite_request": "Por que você deseja se inscrever?"
} }
}, },
"error": { "error": {
@ -298,80 +322,80 @@
"reason": "Motivo" "reason": "Motivo"
}, },
"reason": { "reason": {
"blocked": "%s contains a disallowed email provider", "blocked": "%s contém um provedor de e-mail não permitido",
"unreachable": "%s parece não existir", "unreachable": "%s parece não existir",
"taken": "%s já está em uso", "taken": "%s já está em uso",
"reserved": "%s is a reserved keyword", "reserved": "%s é uma palavra-chave reservada",
"accepted": "%s must be accepted", "accepted": "%s deve ser aceite",
"blank": "%s is required", "blank": "%s é obrigatório",
"invalid": "%s is invalid", "invalid": "%s é inválido",
"too_long": "%s is too long", "too_long": "%s é muito longo",
"too_short": "%s is too short", "too_short": "%s é muito curto",
"inclusion": "%s is not a supported value" "inclusion": "%s não é um valor suportado"
}, },
"special": { "special": {
"username_invalid": "Username must only contain alphanumeric characters and underscores", "username_invalid": "O nome de usuário só pode conter caracteres alfanuméricos e underlines (_)",
"username_too_long": "Username is too long (cant be longer than 30 characters)", "username_too_long": "Nome de usuário é muito longo (não pode ter mais de 30 caracteres)",
"email_invalid": "This is not a valid email address", "email_invalid": "Este não é um endereço de e-mail válido",
"password_too_short": "Password is too short (must be at least 8 characters)" "password_too_short": "A senha é muito curta (deve ter pelo menos 8 caracteres)"
} }
} }
}, },
"server_rules": { "server_rules": {
"title": "Some ground rules.", "title": "Algumas regras básicas.",
"subtitle": "These are set and enforced by the %s moderators.", "subtitle": "Estes são definidos e aplicados pelos moderadores da %s.",
"prompt": "By continuing, youre subject to the terms of service and privacy policy for %s.", "prompt": "Ao continuar, você estará sujeito aos termos de serviço e política de privacidade para %s.",
"terms_of_service": "terms of service", "terms_of_service": "termos de serviço",
"privacy_policy": "privacy policy", "privacy_policy": "política de privacidade",
"button": { "button": {
"confirm": "I Agree" "confirm": "Eu concordo"
} }
}, },
"confirm_email": { "confirm_email": {
"title": "One last thing.", "title": "Uma última coisa.",
"subtitle": "Tap the link we emailed to you to verify your account.", "subtitle": "Clique no link que te enviamos por e-mail para verificar a sua conta.",
"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": "Clique no link que te enviamos por e-mail para verificar a sua conta",
"button": { "button": {
"open_email_app": "Open Email App", "open_email_app": "Abrir aplicativo de e-mail",
"resend": "Resend" "resend": "Reenviar"
}, },
"dont_receive_email": { "dont_receive_email": {
"title": "Check your email", "title": "Verifique o seu e-mail",
"description": "Check if your email address is correct as well as your junk folder if you havent.", "description": "Verifique se o seu endereço de e-mail está correto, e também a sua pasta de spam caso não tenha verificado.",
"resend_email": "Resend Email" "resend_email": "Reenviar e-mail"
}, },
"open_email_app": { "open_email_app": {
"title": "Check your inbox.", "title": "Verifique sua caixa de entrada.",
"description": "We just sent you an email. Check your junk folder if you havent.", "description": "Enviamos um e-mail para você. Verifique sua pasta de spam caso ainda tenha verificado.",
"mail": "Mail", "mail": "Correio",
"open_email_client": "Open Email Client" "open_email_client": "Abrir Cliente de Email"
} }
}, },
"home_timeline": { "home_timeline": {
"title": "Home", "title": "Início",
"navigation_bar_state": { "navigation_bar_state": {
"offline": "Offline", "offline": "Desconectado",
"new_posts": "See new posts", "new_posts": "Ver novas postagens",
"published": "Published!", "published": "Publicado!",
"Publishing": "Publishing post...", "Publishing": "Publicando toot...",
"accessibility": { "accessibility": {
"logo_label": "Logo Button", "logo_label": "Botão do logotipo",
"logo_hint": "Tap to scroll to top and tap again to previous location" "logo_hint": "Toque para rolar para o topo e toque novamente para a localização anterior"
} }
} }
}, },
"suggestion_account": { "suggestion_account": {
"title": "Find People to Follow", "title": "Encontre pessoas para seguir",
"follow_explain": "When you follow someone, youll see their posts in your home feed." "follow_explain": "Ao seguir alguém, você verá as publicações dessa pessoa na sua página inicial."
}, },
"compose": { "compose": {
"title": { "title": {
"new_post": "New Post", "new_post": "Novo toot",
"new_reply": "New Reply" "new_reply": "Nova resposta"
}, },
"media_selection": { "media_selection": {
"camera": "Take Photo", "camera": "Tirar foto",
"photo_library": "Photo Library", "photo_library": "Galeria",
"browse": "Navegar" "browse": "Navegar"
}, },
"content_input_placeholder": "Digite ou cole o que está na sua mente", "content_input_placeholder": "Digite ou cole o que está na sua mente",
@ -380,13 +404,15 @@
"attachment": { "attachment": {
"photo": "foto", "photo": "foto",
"video": "vídeo", "video": "vídeo",
"attachment_broken": "This %s is broken and cant be\nuploaded to Mastodon.", "attachment_broken": "Este %s está quebrado e não pode ser\nenviado para o Mastodon.",
"description_photo": "Describe the photo for the visually-impaired...", "description_photo": "Descreva a foto para deficientes visuais...",
"description_video": "Describe the video for the visually-impaired...", "description_video": "Descreva o vídeo para os deficientes visuais...",
"load_failed": "Load Failed", "load_failed": "Falha ao carregar",
"upload_failed": "Upload Failed", "upload_failed": "Falha no carregamento",
"can_not_recognize_this_media_attachment": "Can not regonize this media attachment", "can_not_recognize_this_media_attachment": "Não é possível reconhecer este anexo de mídia",
"attachment_too_large": "Attachment too large" "attachment_too_large": "O anexo é muito grande",
"compressing_state": "Compactando...",
"server_processing_state": "Servidor processando..."
}, },
"poll": { "poll": {
"duration_time": "Duração: %s", "duration_time": "Duração: %s",
@ -396,128 +422,140 @@
"one_day": "1 dia", "one_day": "1 dia",
"three_days": "3 dias", "three_days": "3 dias",
"seven_days": "7 dias", "seven_days": "7 dias",
"option_number": "Opção %ld" "option_number": "Opção %ld",
"the_poll_is_invalid": "A enquete é inválida",
"the_poll_has_empty_option": "A enquete tem uma opção vazia"
}, },
"content_warning": { "content_warning": {
"placeholder": "Write an accurate warning here..." "placeholder": "Escreva um aviso de conteúdo preciso aqui..."
}, },
"visibility": { "visibility": {
"public": "Public", "public": "Público",
"unlisted": "Unlisted", "unlisted": "Não listado",
"private": "Followers only", "private": "Apenas seguidores",
"direct": "Only people I mention" "direct": "Apenas pessoas que menciono"
}, },
"auto_complete": { "auto_complete": {
"space_to_add": "Space to add" "space_to_add": "Espaço a adicionar"
}, },
"accessibility": { "accessibility": {
"append_attachment": "Add Attachment", "append_attachment": "Adicionar anexo",
"append_poll": "Add Poll", "append_poll": "Adicionar enquete",
"remove_poll": "Remove Poll", "remove_poll": "Remover enquete",
"custom_emoji_picker": "Custom Emoji Picker", "custom_emoji_picker": "Seletor de emoji personalizado",
"enable_content_warning": "Enable Content Warning", "enable_content_warning": "Ativar Aviso de Conteúdo",
"disable_content_warning": "Disable Content Warning", "disable_content_warning": "Desativar Aviso de Conteúdo",
"post_visibility_menu": "Post Visibility Menu" "post_visibility_menu": "Menu de Visibilidade do Post",
"post_options": "Opções de postagem",
"posting_as": "Publicando como %s"
}, },
"keyboard": { "keyboard": {
"discard_post": "Discard Post", "discard_post": "Descartar postagem",
"publish_post": "Publish Post", "publish_post": "Publicar postagem",
"toggle_poll": "Toggle Poll", "toggle_poll": "Alternar enquete",
"toggle_content_warning": "Toggle Content Warning", "toggle_content_warning": "Ativar/desativar Aviso de Conteúdo",
"append_attachment_entry": "Add Attachment - %s", "append_attachment_entry": "Adicionar Anexo - %s",
"select_visibility_entry": "Select Visibility - %s" "select_visibility_entry": "Selecionar Visibilidade - %s"
} }
}, },
"profile": { "profile": {
"header": { "header": {
"follows_you": "Follows You" "follows_you": "Segue você"
}, },
"dashboard": { "dashboard": {
"posts": "toots", "my_posts": "posts",
"following": "seguindo", "my_following": "following",
"followers": "seguidores" "my_followers": "followers",
"other_posts": "posts",
"other_following": "following",
"other_followers": "followers"
}, },
"fields": { "fields": {
"add_row": "Add Row", "joined": "Joined",
"add_row": "Adicionar linha",
"placeholder": { "placeholder": {
"label": "Label", "label": "Descrição",
"content": "Content" "content": "Conteúdo"
},
"verified": {
"short": "Verificado em %s",
"long": "O link foi verificado em %s"
} }
}, },
"segmented_control": { "segmented_control": {
"posts": "Posts", "posts": "Toots",
"replies": "Replies", "replies": "Respostas",
"posts_and_replies": "Posts and Replies", "posts_and_replies": "Toots e respostas",
"media": "Media", "media": "Mídia",
"about": "About" "about": "Sobre"
}, },
"relationship_action_alert": { "relationship_action_alert": {
"confirm_mute_user": { "confirm_mute_user": {
"title": "Mute Account", "title": "Silenciar conta",
"message": "Confirm to mute %s" "message": "Confirme para silenciar %s"
}, },
"confirm_unmute_user": { "confirm_unmute_user": {
"title": "Unmute Account", "title": "Tirar conta do silenciado",
"message": "Confirm to unmute %s" "message": "Confirme para tirar %s do silenciado"
}, },
"confirm_block_user": { "confirm_block_user": {
"title": "Block Account", "title": "Bloquear conta",
"message": "Confirm to block %s" "message": "Confirme para bloquear %s"
}, },
"confirm_unblock_user": { "confirm_unblock_user": {
"title": "Unblock Account", "title": "Desbloquear conta",
"message": "Confirm to unblock %s" "message": "Confirme para desbloquear %s"
}, },
"confirm_show_reblogs": { "confirm_show_reblogs": {
"title": "Show Reblogs", "title": "Mostrar reblogs",
"message": "Confirm to show reblogs" "message": "Confirmar para mostrar reblogs"
}, },
"confirm_hide_reblogs": { "confirm_hide_reblogs": {
"title": "Hide Reblogs", "title": "Ocultar reblogs",
"message": "Confirm to hide reblogs" "message": "Confirmar para ocultar reblogs"
} }
}, },
"accessibility": { "accessibility": {
"show_avatar_image": "Show avatar image", "show_avatar_image": "Mostrar foto de perfil",
"edit_avatar_image": "Edit avatar image", "edit_avatar_image": "Editar foto de perfil",
"show_banner_image": "Show banner image", "show_banner_image": "Mostrar foto de capa",
"double_tap_to_open_the_list": "Double tap to open the list" "double_tap_to_open_the_list": "Toque duas vezes para abrir a lista"
} }
}, },
"follower": { "follower": {
"title": "follower", "title": "seguidor",
"footer": "Followers from other servers are not displayed." "footer": "Seguidores de outras instâncias não são exibidos."
}, },
"following": { "following": {
"title": "following", "title": "seguindo",
"footer": "Follows from other servers are not displayed." "footer": "Contas que você segue de outras instâncias não são exibidas."
}, },
"familiarFollowers": { "familiarFollowers": {
"title": "Followers you familiar", "title": "Seguidores que você conhece",
"followed_by_names": "Followed by %s" "followed_by_names": "Seguido por %s"
}, },
"favorited_by": { "favorited_by": {
"title": "Favorited By" "title": "Favoritado por"
}, },
"reblogged_by": { "reblogged_by": {
"title": "Reblogged By" "title": "Reblogado por"
}, },
"search": { "search": {
"title": "Search", "title": "Buscar",
"search_bar": { "search_bar": {
"placeholder": "Search hashtags and users", "placeholder": "Buscar hashtags e usuários",
"cancel": "Cancel" "cancel": "Cancelar"
}, },
"recommend": { "recommend": {
"button_text": "See All", "button_text": "Ver tudo",
"hash_tag": { "hash_tag": {
"title": "Trending on Mastodon", "title": "Em tendência no Mastodon",
"description": "Hashtags that are getting quite a bit of attention", "description": "Hashtags que estão recebendo bastante atenção",
"people_talking": "%s people are talking" "people_talking": "%s pessoas estão falando"
}, },
"accounts": { "accounts": {
"title": "Accounts you might like", "title": "Contas que você deve gostar",
"description": "You may like to follow these accounts", "description": "Você pode gostar de seguir estas contas",
"follow": "Seguir" "follow": "Seguir"
} }
}, },
@ -543,170 +581,182 @@
"community": "Comunidade", "community": "Comunidade",
"for_you": "Para você" "for_you": "Para você"
}, },
"intro": "These are the posts gaining traction in your corner of Mastodon." "intro": "Esses são os posts que estão ganhando força no seu canto do Mastodon."
}, },
"favorite": { "favorite": {
"title": "Your Favorites" "title": "Seus favoritos"
}, },
"notification": { "notification": {
"title": { "title": {
"Everything": "Everything", "Everything": "Tudo",
"Mentions": "Mentions" "Mentions": "Menções"
}, },
"notification_description": { "notification_description": {
"followed_you": "followed you", "followed_you": "seguiu você",
"favorited_your_post": "favorited your post", "favorited_your_post": "favoritou seu toot",
"reblogged_your_post": "reblogged your post", "reblogged_your_post": "reblogou seu toot",
"mentioned_you": "mentioned you", "mentioned_you": "te mencionou",
"request_to_follow_you": "request to follow you", "request_to_follow_you": "solicitação para te seguir",
"poll_has_ended": "poll has ended" "poll_has_ended": "enquete encerrada"
}, },
"keyobard": { "keyobard": {
"show_everything": "Show Everything", "show_everything": "Mostrar tudo",
"show_mentions": "Show Mentions" "show_mentions": "Mostrar menções"
}, },
"follow_request": { "follow_request": {
"accept": "Accept", "accept": "Aceitar",
"accepted": "Accepted", "accepted": "Aceito",
"reject": "reject", "reject": "rejeitar",
"rejected": "Rejected" "rejected": "Rejeitado"
} }
}, },
"thread": { "thread": {
"back_title": "Post", "back_title": "Toot",
"title": "Post from %s" "title": "Publicação de %s"
}, },
"settings": { "settings": {
"title": "Settings", "title": "Configurações",
"section": { "section": {
"appearance": { "appearance": {
"title": "Appearance", "title": "Aparência",
"automatic": "Automatic", "automatic": "Automático",
"light": "Always Light", "light": "Sempre Claro",
"dark": "Always Dark" "dark": "Sempre Escuro"
}, },
"look_and_feel": { "look_and_feel": {
"title": "Look and Feel", "title": "Aparência e Comportamento",
"use_system": "Use System", "use_system": "Usar configuração do sistema",
"really_dark": "Really Dark", "really_dark": "Bem escuro",
"sorta_dark": "Sorta Dark", "sorta_dark": "Meio escuro",
"light": "Light" "light": "Claro"
}, },
"notifications": { "notifications": {
"title": "Notifications", "title": "Notificações",
"favorites": "Favorites my post", "favorites": "Favoritaram minha publicação",
"follows": "Follows me", "follows": "Me segue",
"boosts": "Reblogs my post", "boosts": "Rebloga minha publicação",
"mentions": "Mentions me", "mentions": "Me menciona",
"trigger": { "trigger": {
"anyone": "anyone", "anyone": "qualquer pessoa",
"follower": "a follower", "follower": "um seguidor",
"follow": "anyone I follow", "follow": "qualquer um que eu siga",
"noone": "no one", "noone": "ninguém",
"title": "Notify me when" "title": "Me notificar quando"
} }
}, },
"preference": { "preference": {
"title": "Preferences", "title": "Preferências",
"true_black_dark_mode": "True black dark mode", "true_black_dark_mode": "Modo preto",
"disable_avatar_animation": "Disable animated avatars", "disable_avatar_animation": "Desativar fotos animadas",
"disable_emoji_animation": "Disable animated emojis", "disable_emoji_animation": "Desativar emojis animados",
"using_default_browser": "Use default browser to open links", "using_default_browser": "Usar o navegador padrão pra abrir links",
"open_links_in_mastodon": "Open links in Mastodon" "open_links_in_mastodon": "Abrir links no Mastodon"
}, },
"boring_zone": { "boring_zone": {
"title": "The Boring Zone", "title": "A zona chata",
"account_settings": "Account Settings", "account_settings": "Configurações da conta",
"terms": "Terms of Service", "terms": "Termos de serviço",
"privacy": "Privacy Policy" "privacy": "Política de privacidade"
}, },
"spicy_zone": { "spicy_zone": {
"title": "The Spicy Zone", "title": "A zona apimentada",
"clear": "Clear Media Cache", "clear": "Limpar cachê de mídia",
"signout": "Sign Out" "signout": "Sair"
} }
}, },
"footer": { "footer": {
"mastodon_description": "Mastodon is open source software. You can report issues on GitHub at %s (%s)" "mastodon_description": "Mastodon é um software de código aberto. Você pode reportar problemas no GitHub em %s (%s)"
}, },
"keyboard": { "keyboard": {
"close_settings_window": "Close Settings Window" "close_settings_window": "Fechar janela de configurações"
} }
}, },
"report": { "report": {
"title_report": "Report", "title_report": "Denunciar",
"title": "Report %s", "title": "Denunciar %s",
"step1": "Step 1 of 2", "step1": "Passo 1 de 2",
"step2": "Step 2 of 2", "step2": "Passo 2 de 2",
"content1": "Are there any other posts youd like to add to the report?", "content1": "Há outras postagens que você gostaria de adicionar na denúncia?",
"content2": "Is there anything the moderators should know about this report?", "content2": "Há algo que os moderadores deveriam saber sobre esta denúncia?",
"report_sent_title": "Thanks for reporting, well look into this.", "report_sent_title": "Obrigado por denunciar, iremos analisar.",
"send": "Send Report", "send": "Enviar denúncia",
"skip_to_send": "Send without comment", "skip_to_send": "Enviar sem comentário",
"text_placeholder": "Type or paste additional comments", "text_placeholder": "Digite ou cole comentários adicionais",
"reported": "REPORTED", "reported": "DENUNCIADO",
"step_one": { "step_one": {
"step_1_of_4": "Step 1 of 4", "step_1_of_4": "Passo 1 de 4",
"whats_wrong_with_this_post": "What's wrong with this post?", "whats_wrong_with_this_post": "O que há de errado com essa publicação?",
"whats_wrong_with_this_account": "What's wrong with this account?", "whats_wrong_with_this_account": "O que há de errado com essa conta?",
"whats_wrong_with_this_username": "What's wrong with %s?", "whats_wrong_with_this_username": "O que há de errado com %s?",
"select_the_best_match": "Select the best match", "select_the_best_match": "Selecione a melhor alternativa",
"i_dont_like_it": "I dont like it", "i_dont_like_it": "Eu não gosto disso",
"it_is_not_something_you_want_to_see": "It is not something you want to see", "it_is_not_something_you_want_to_see": "Não é algo que você gostaria de ver",
"its_spam": "Its spam", "its_spam": "É spam",
"malicious_links_fake_engagement_or_repetetive_replies": "Malicious links, fake engagement, or repetetive replies", "malicious_links_fake_engagement_or_repetetive_replies": "Links maliciosos, engajamento falso, ou respostas repetitivas",
"it_violates_server_rules": "It violates server rules", "it_violates_server_rules": "Isso viola as regras do servidor",
"you_are_aware_that_it_breaks_specific_rules": "You are aware that it breaks specific rules", "you_are_aware_that_it_breaks_specific_rules": "Você está ciente que isso quebra regras específicas",
"its_something_else": "Its something else", "its_something_else": "É outra coisa",
"the_issue_does_not_fit_into_other_categories": "The issue does not fit into other categories" "the_issue_does_not_fit_into_other_categories": "O problema não se encaixa em outras categorias"
}, },
"step_two": { "step_two": {
"step_2_of_4": "Step 2 of 4", "step_2_of_4": "Passo 2 de 4",
"which_rules_are_being_violated": "Which rules are being violated?", "which_rules_are_being_violated": "Quais regras estão sendo violadas?",
"select_all_that_apply": "Select all that apply", "select_all_that_apply": "Selecione todas que se aplicam",
"i_just_dont_like_it": "I just dont like it" "i_just_dont_like_it": "Simplesmente não gosto"
}, },
"step_three": { "step_three": {
"step_3_of_4": "Step 3 of 4", "step_3_of_4": "Passo 3 de 4",
"are_there_any_posts_that_back_up_this_report": "Are there any posts that back up this report?", "are_there_any_posts_that_back_up_this_report": "Existem postagens que apoiam essa denúncia?",
"select_all_that_apply": "Select all that apply" "select_all_that_apply": "Selecione todos que se aplicam"
}, },
"step_four": { "step_four": {
"step_4_of_4": "Step 4 of 4", "step_4_of_4": "Passo 4 de 4",
"is_there_anything_else_we_should_know": "Is there anything else we should know?" "is_there_anything_else_we_should_know": "Há algo a mais que deveríamos saber?"
}, },
"step_final": { "step_final": {
"dont_want_to_see_this": "Dont want to see this?", "dont_want_to_see_this": "Não quer ver isso?",
"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.", "when_you_see_something_you_dont_like_on_mastodon_you_can_remove_the_person_from_your_experience.": "Quando você vê algo que não gosta no Mastodon, você pode remover essa pessoa da sua experiência.",
"unfollow": "Unfollow", "unfollow": "Deixar de seguir",
"unfollowed": "Unfollowed", "unfollowed": "Deixou de seguir",
"unfollow_user": "Unfollow %s", "unfollow_user": "Deixar de seguir %s",
"mute_user": "Mute %s", "mute_user": "Silenciar %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.", "you_wont_see_their_posts_or_reblogs_in_your_home_feed_they_wont_know_they_ve_been_muted": "Você não verá as postagens ou reblogs dessa conta na sua pagina inicial. Essa pessoa não saberá que foi silenciada.",
"block_user": "Block %s", "block_user": "Bloquear %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.", "they_will_no_longer_be_able_to_follow_or_see_your_posts_but_they_can_see_if_theyve_been_blocked": "Essa conta não poderá mais te seguir ou ver suas postagens, mas ela poderá ver que foi bloqueada.",
"while_we_review_this_you_can_take_action_against_user": "While we review this, you can take action against %s" "while_we_review_this_you_can_take_action_against_user": "Enquanto revisamos isso, você pode tomar medidas contra %s"
} }
}, },
"preview": { "preview": {
"keyboard": { "keyboard": {
"close_preview": "Close Preview", "close_preview": "Fechar prévia",
"show_next": "Show Next", "show_next": "Mostrar a próxima",
"show_previous": "Show Previous" "show_previous": "Mostrar a anterior"
} }
}, },
"account_list": { "account_list": {
"tab_bar_hint": "Current selected profile: %s. Double tap then hold to show account switcher", "tab_bar_hint": "Perfil selecionado nesse momento: %s. Toque duas vezes e segure para mostrar o alternador de conta",
"dismiss_account_switcher": "Dismiss Account Switcher", "dismiss_account_switcher": "Descartar alternador de conta",
"add_account": "Add Account" "add_account": "Adicionar conta"
}, },
"wizard": { "wizard": {
"new_in_mastodon": "New in Mastodon", "new_in_mastodon": "Novo no Mastodon",
"multiple_account_switch_intro_description": "Switch between multiple accounts by holding the profile button.", "multiple_account_switch_intro_description": "Alterne entre múltiplas contas segurando o botão de perfil.",
"accessibility_hint": "Double tap to dismiss this wizard" "accessibility_hint": "Toque duas vezes para descartar este assistente"
}, },
"bookmark": { "bookmark": {
"title": "Bookmarks" "title": "Marcados"
},
"followed_tags": {
"title": "Followed Tags",
"header": {
"posts": "posts",
"participants": "participants",
"posts_today": "posts today"
},
"actions": {
"follow": "Follow",
"unfollow": "Unfollow"
}
} }
} }
} }

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