Compare commits

..

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

583 changed files with 7731 additions and 22267 deletions

View File

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

View File

@ -24,7 +24,7 @@ jobs:
- name: Install codemagic-cli-tools - name: Install codemagic-cli-tools
uses: actions/setup-python@v4 uses: actions/setup-python@v4
with: with:
python-version: '3.10' python-version: '3.11'
- run: | - run: |
pip3 install codemagic-cli-tools pip3 install codemagic-cli-tools
- run: | - run: |

9
.gitignore vendored
View File

@ -126,12 +126,3 @@ Localization/StringsConvertor/output
env/**/** env/**/**
!env/.env !env/.env
## Ruby ###
vendor/
.bundle/
# IDEs
.idea
.vscode

View File

@ -1 +0,0 @@
3.0.3

View File

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

View File

@ -1,96 +0,0 @@
# How it works
The app is currently build for iOS and iPadOS. We use the MVVM architecture to construct the whole app. Some design detail may not be the best practice. And any suggestions for improvements are welcome.
## Data
A typical status timeline fetches results from the database using a predicate that fetch the active account's entities. Then data source dequeues an item then configure the view. Likes many other MVVM applications. The app binds the Core Data entity to view via Combine publisher. Because the RunLoop dispatch drawing on the next loop. So we could return quickly.
## Layout
A timeline has many posts and each post has many components. For example avatar, name, username, timestamp, content, media, toolbar and e.t.c. The app uses `AutoLayout` with `UIStackView` to place it and control whether it should hide or not.
## Performance
Although it's easily loading timeline with hundreds of thousands of entities due to the Core Data fault mechanism. Some old devices may have slow performance when I/O bottleneck. There are three potential profile chances for entities:
- preload fulfill
- layout in background
- limit the data fetching
## SwiftUI
Some view models already migrate to `@Published` annotated output. It's future-proof support for SwiftUI. There are some views already transformed to `SwiftUI` likes `MastodonRegisterView` and `ReportReasonView`.
# Take it apart
## Targets
The app builds with those targets:
- Mastodon: the app itself
- NotificationService: E2E push notification service
- ShareActionExtension: iOS share action
- MastodonIntent: Siri shortcuts
## MastodonSDK
There is a self-hosted Swift Package that contains the common libraries to build this app.
- CoreDataStack: Core Data model definition and util methods
- MastodonAsset: image and font assets
- MastodonCommon: store App Group ID
- MastodonCore: the logic for the app
- MastodonExtension: system API extension utility
- MastodonLocalization: i18n resources
- MastodonSDK: Mastodon API client
- MastodonUI: App UI components
#### CoreDataStack
App uses Core Data as the backend to persist all entitles from the server. So the app has the capability to keep the timeline and notifications. Another reason for using a database is it makes the app could respond to entity changes between different sources. For example, a user could skim in the home timeline and then interact with the same post on other pages with favorite or reblog action. Core Data will handle the property modifications and notify the home timeline to update the view.
To simplify the database operations. There is only one persistent store for all accounts. We use `domain` to identify entity for different servers (a.k.a instance). Do not mix the `domain` with the Mastodon remote server name. For example. The domain is `mastodon.online` whereever the post (e.g. post come from `mstdn.jp`) and friends from for the account sign in `mastodon.online`. Also, do not only rely on `id` because it has conflict potential between different `domain`. The unique predicate is `domain` + `id`.
The app use "One stack, two context" setup. There is one main managed object context for UI displaying and another background managed context for entities creating and updating. We assert the background context performs in a queue. Also, the app could accept mulitple background context model. Then the flag `-com.apple.CoreData.ConcurrencyDebug 1` will be usful.
###### How to create a new Entity
First, select the `CoreData.xcdatamodeld` file and in menu `Editor > Add Model Version…` to create a new version. Make sure active the new version in the inspect panel. e.g. `Model Version. Current > "Core Data 5"`
Then use the `Add Entity` button create new Entity.
1. Give a name in data model inspect panel.
2. Also, set the `Module` to `CoreDataStack`.
3. Set the `Codegen` to `Manual/None`. We use `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

@ -12,13 +12,20 @@ Install the latest version of Xcode from the App Store or Apple Developer Downlo
This guide may not suit your machine and actually setup procedure may change in the future. Please file the issue or Pull Request if there are any problems. This guide may not suit your machine and actually setup procedure may change in the future. Please file the issue or Pull Request if there are any problems.
## CocoaPods ## CocoaPods
The app use [CocoaPods]() and [Arkana](https://github.com/rogerluan/arkana). Ruby Gems are managed through Bundler. Make sure you have [Rosetta](https://support.apple.com/en-us/HT211861) installed if you are using the M1 Mac. The app use [CocoaPods]() and [Arkana](https://github.com/rogerluan/arkana). Ruby Gems are managed through Bundler. The M1 Mac needs virtual ruby env to workaround compatibility issues. Make sure you have [Rosetta](https://support.apple.com/en-us/HT211861) installed if you are using the M1 Mac.
#### Intel Mac
```zsh
gem install bundler
bundle install
```
#### M1 Mac
```zsh ```zsh
# install the rbenv # install the rbenv
brew install rbenv brew install rbenv
# configure the terminal
which ruby which ruby
# > /usr/bin/ruby # > /usr/bin/ruby
echo 'eval "$(rbenv init -)"' >> ~/.zprofile echo 'eval "$(rbenv init -)"' >> ~/.zprofile
@ -26,12 +33,15 @@ source ~/.zprofile
which ruby which ruby
# > /Users/mainasuk/.rbenv/shims/ruby # > /Users/mainasuk/.rbenv/shims/ruby
# restart the terminal # select ruby
rbenv install --list
# here we use the latest 3.0.x version
rbenv install 3.0.3
rbenv global 3.0.3
ruby --version
# > ruby 3.0.3p157 (2021-11-24 revision 3fb7d2cadc) [arm64-darwin21]
# install ruby (we use the version defined in .ruby-version) gem install bundler
rbenv install
# install gem dependencies
bundle install bundle install
``` ```

View File

@ -14,7 +14,7 @@ GEM
algoliasearch (1.27.5) algoliasearch (1.27.5)
httpclient (~> 2.8, >= 2.8.3) httpclient (~> 2.8, >= 2.8.3)
json (>= 1.5.1) json (>= 1.5.1)
arkana (1.3.0) arkana (1.2.0)
colorize (~> 0.8) colorize (~> 0.8)
dotenv (~> 2.7) dotenv (~> 2.7)
yaml (~> 0.2) yaml (~> 0.2)
@ -63,7 +63,7 @@ GEM
concurrent-ruby (1.1.10) concurrent-ruby (1.1.10)
dotenv (2.8.1) dotenv (2.8.1)
escape (0.0.4) escape (0.0.4)
ethon (0.16.0) ethon (0.15.0)
ffi (>= 1.15.0) ffi (>= 1.15.0)
ffi (1.15.5) ffi (1.15.5)
fourflusher (2.3.1) fourflusher (2.3.1)
@ -96,7 +96,7 @@ GEM
xcpretty (0.3.0) xcpretty (0.3.0)
rouge (~> 2.0.7) rouge (~> 2.0.7)
yaml (0.2.0) yaml (0.2.0)
zeitwerk (2.6.6) zeitwerk (2.6.3)
PLATFORMS PLATFORMS
arm64-darwin-21 arm64-darwin-21
@ -111,4 +111,4 @@ DEPENDENCIES
xcpretty xcpretty
BUNDLED WITH BUNDLED WITH
2.3.26 2.3.17

View File

@ -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@</string> <string>%#@character_count@ left</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 left</string> <string>no characters</string>
<key>one</key> <key>one</key>
<string>1 character left</string> <string>1 character</string>
<key>few</key> <key>few</key>
<string>%ld characters left</string> <string>%ld characters</string>
<key>many</key> <key>many</key>
<string>%ld characters left</string> <string>%ld characters</string>
<key>other</key> <key>other</key>
<string>%ld characters left</string> <string>%ld characters</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

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

View File

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

View File

@ -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" = "Publica a Mastodon"; "dUyuGg" = "Publicació";
"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>Existuje %#@count_option@ odpovídající „${visibility}“.</string> <string>There are %#@count_option@ matching ${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" = "Postio ar Mastodon"; "16wxgf" = "Post on Mastodon";
"751xkl" = "Cynnwys Testun"; "751xkl" = "Text Content";
"CsR7G2" = "Postio ar Mastodon"; "CsR7G2" = "Post on Mastodon";
"HZSGTr" = "Pa gynnwys i bostio?"; "HZSGTr" = "What content to post?";
"HdGikU" = "Methwyd postio"; "HdGikU" = "Posting failed";
"KDNTJ4" = "Rheswm y Gwall"; "KDNTJ4" = "Failure Reason";
"RHxKOw" = "Cyhoeddi Post â chynnwys testun"; "RHxKOw" = "Send Post with text content";
"RxSqsb" = "Post"; "RxSqsb" = "Post";
"WCIR3D" = "Postio ${content} ar Mastodon"; "WCIR3D" = "Post ${content} on Mastodon";
"ZKJSNu" = "Post"; "ZKJSNu" = "Post";
"ZS1XaK" = "${content}"; "ZS1XaK" = "${content}";
"ZbSjzC" = "Preifatrwydd"; "ZbSjzC" = "Visibility";
"Zo4jgJ" = "Preifatrwydd Post"; "Zo4jgJ" = "Post Visibility";
"apSxMG-dYQ5NN" = "Ceir ${count} opsiwn ar gyfer Cyhoeddus."; "apSxMG-dYQ5NN" = "There are ${count} options matching Public.";
"apSxMG-ehFLjY" = "Ceir ${count} opsiwn ar gyfer Dilynwyr yn Unig."; "apSxMG-ehFLjY" = "There are ${count} options matching Followers Only.";
"ayoYEb-dYQ5NN" = "${content}, Cyhoeddus"; "ayoYEb-dYQ5NN" = "${content}, Public";
"ayoYEb-ehFLjY" = "${content}, Dilynwyr yn Unig"; "ayoYEb-ehFLjY" = "${content}, Followers Only";
"dUyuGg" = "Postio ar Mastodon"; "dUyuGg" = "Post on Mastodon";
"dYQ5NN" = "Cyhoeddus"; "dYQ5NN" = "Public";
"ehFLjY" = "Dilynwyr yn unig"; "ehFLjY" = "Followers Only";
"gfePDu" = "Methwyd postio. ${failureReason}"; "gfePDu" = "Posting failed. ${failureReason}";
"k7dbKQ" = "Cyhoeddwyd y post yn llwyddiannus."; "k7dbKQ" = "Post was sent successfully.";
"oGiqmY-dYQ5NN" = "I gadarnhau, rydych chi am ddewis Cyhoeddus?"; "oGiqmY-dYQ5NN" = "Just to confirm, you wanted Public?";
"oGiqmY-ehFLjY" = "I gadarnhau, rydych chi am ddewis Dilynwyr yn Unig?"; "oGiqmY-ehFLjY" = "Just to confirm, you wanted Followers Only?";
"rM6dvp" = "URL"; "rM6dvp" = "URL";
"ryJLwG" = "Cyhoeddwyd y post yn llwyddiannus. "; "ryJLwG" = "Post was sent successfully. ";

View File

@ -5,7 +5,7 @@
<key>There are ${count} options matching ${content}. - 2</key> <key>There are ${count} options matching ${content}. - 2</key>
<dict> <dict>
<key>NSStringLocalizedFormatKey</key> <key>NSStringLocalizedFormatKey</key>
<string>Ceir %#@count_option@ ar gyfer '${content}'.</string> <string>There are %#@count_option@ matching ${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 opsiynau</string> <string>%ld options</string>
<key>one</key> <key>one</key>
<string>%ld opsiwn</string> <string>1 option</string>
<key>two</key> <key>two</key>
<string>%ld opsiwn</string> <string>%ld options</string>
<key>few</key> <key>few</key>
<string>%ld opsiwn</string> <string>%ld options</string>
<key>many</key> <key>many</key>
<string>%ld o opsiynau</string> <string>%ld options</string>
<key>other</key> <key>other</key>
<string>%ld o opsiynau</string> <string>%ld options</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>Ceir %#@count_option@ ar gyfer '${visibility}'.</string> <string>There are %#@count_option@ matching ${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 opsiynau</string> <string>%ld options</string>
<key>one</key> <key>one</key>
<string>%ld opsiwn</string> <string>1 option</string>
<key>two</key> <key>two</key>
<string>%ld opsiwn</string> <string>%ld options</string>
<key>few</key> <key>few</key>
<string>%ld opsiwn</string> <string>%ld options</string>
<key>many</key> <key>many</key>
<string>%ld o opsiynau</string> <string>%ld options</string>
<key>other</key> <key>other</key>
<string>%ld opsiwn</string> <string>%ld options</string>
</dict> </dict>
</dict> </dict>
</dict> </dict>

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

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>Знайдено %#@count_option@ відповідних '${content}.</string> <string>There are %#@count_option@ matching ${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>параметр</string> <string>1 option</string>
<key>few</key> <key>few</key>
<string>%ld параметри</string> <string>%ld options</string>
<key>many</key> <key>many</key>
<string>%ld параметрів</string> <string>%ld options</string>
<key>other</key> <key>other</key>
<string>%ld параметрів</string> <string>%ld options</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>Знайдено %#@count_option@ відповідних '${visibility}.</string> <string>There are %#@count_option@ matching ${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>параметр</string> <string>1 option</string>
<key>few</key> <key>few</key>
<string>%ld параметри</string> <string>%ld options</string>
<key>many</key> <key>many</key>
<string>%ld параметрів</string> <string>%ld options</string>
<key>other</key> <key>other</key>
<string>%ld параметрів</string> <string>%ld options</string>
</dict> </dict>
</dict> </dict>
</dict> </dict>

View File

@ -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@</string> <string>%#@character_count@ left</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 left</string> <string>no characters</string>
<key>one</key> <key>one</key>
<string>1 character left</string> <string>1 character</string>
<key>few</key> <key>few</key>
<string>%ld characters left</string> <string>%ld characters</string>
<key>many</key> <key>many</key>
<string>%ld characters left</string> <string>%ld characters</string>
<key>other</key> <key>other</key>
<string>%ld characters left</string> <string>%ld characters</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.followed_by_and_mutual</key> <key>plural.count.followed_by_and_mutual</key>

View File

@ -51,11 +51,6 @@
"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": {
@ -83,7 +78,6 @@
"sign_up": "Create account", "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",
@ -97,16 +91,12 @@
"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_and_explore": "Search and Explore", "search": "Search",
"notifications": "Notifications", "notification": "Notification",
"profile": "Profile" "profile": "Profile"
}, },
"keyboard": { "keyboard": {
@ -142,8 +132,6 @@
"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"
@ -165,7 +153,6 @@
"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": {
@ -181,18 +168,6 @@
"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": "Show Original"
},
"media": {
"accessibility_label": "%s, attachment %d of %d",
"expand_image_hint": "Expands the image. Double-tap and hold to show actions",
"expand_gif_hint": "Expands the GIF. Double-tap and hold to show actions",
"expand_video_hint": "Shows the video player. Double-tap and hold to show actions"
} }
}, },
"friendship": { "friendship": {
@ -241,21 +216,7 @@
"welcome": { "welcome": {
"slogan": "Social networking\nback in your hands.", "slogan": "Social networking\nback in your hands.",
"get_started": "Get Started", "get_started": "Get Started",
"log_in": "Log In", "log_in": "Log In"
"education": {
"what_is_mastodon": {
"title": "What is",
"description": "Imagine you have an email address that ends with @example.com.\n\nYou can still send and receive emails from anyone, even if their email ends in @gmail.com or @icloud.com or @example.com.",
},
"mastodon_is_like_that": {
"title": "Mastodon is like that",
"description": "Your handle might be @gothgirl654@example.social, but you can still follow, reblog, and chat with @fallout5ever@example.online.",
},
"how_do_i_pick_a_server": {
"title": "How do I pick a server?",
"description": "Different people choose different servers for any number of reasons. art.example is a great place for artists, while glasgow.example might be a good pick for Scots.\n\nYou cant go wrong with any of our recommend servers, so regardless of which one you pick (or if you enter your own in the server search bar), youll never miss a beat anywhere.",
},
}
}, },
"login": { "login": {
"title": "Welcome back", "title": "Welcome back",
@ -265,7 +226,8 @@
} }
}, },
"server_picker": { "server_picker": {
"title": "Pick Server", "title": "Mastodon is made of users in different servers.",
"subtitle": "Pick a server based on your region, interests, or a general purpose one. You can still chat with anyone on Mastodon, regardless of your servers.",
"button": { "button": {
"category": { "category": {
"all": "All", "all": "All",
@ -300,19 +262,9 @@
"no_results": "No results" "no_results": "No results"
} }
}, },
"privacy": {
"title": "Privacy",
"policy": {
"ios": "Privacy Policy - Mastodon for iOS";
"server" = "Privacy Policy - %s";
},
"button": {
"confirm": "I agree"
}
}
"register": { "register": {
"title": "Create account", "title": "Lets get you set up on %s",
"lets_get_you_set_up_on_domain": "Lets get you set up on %s",
"input": { "input": {
"avatar": { "avatar": {
"delete": "Delete" "delete": "Delete"
@ -329,7 +281,6 @@
}, },
"password": { "password": {
"placeholder": "password", "placeholder": "password",
"confirmation_placeholder": "Confirm Password",
"require": "Your password needs at least:", "require": "Your password needs at least:",
"character_limit": "8 characters", "character_limit": "8 characters",
"accessibility": { "accessibility": {
@ -383,7 +334,8 @@
}, },
"confirm_email": { "confirm_email": {
"title": "One last thing.", "title": "One last thing.",
"tap_the_link_we_emailed_to_you_to_verify_your_account": "Tap the link we sent you to verify %@. Well wait right here.", "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": { "button": {
"open_email_app": "Open Email App", "open_email_app": "Open Email App",
"resend": "Resend" "resend": "Resend"
@ -408,7 +360,7 @@
"published": "Published!", "published": "Published!",
"Publishing": "Publishing post...", "Publishing": "Publishing post...",
"accessibility": { "accessibility": {
"logo_label": "Mastodon", "logo_label": "Logo Button",
"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"
} }
} }
@ -444,7 +396,6 @@
"server_processing_state": "Server Processing..." "server_processing_state": "Server Processing..."
}, },
"poll": { "poll": {
"title": "Poll",
"duration_time": "Duration: %s", "duration_time": "Duration: %s",
"thirty_minutes": "30 minutes", "thirty_minutes": "30 minutes",
"one_hour": "1 Hour", "one_hour": "1 Hour",
@ -486,12 +437,6 @@
"toggle_content_warning": "Toggle Content Warning", "toggle_content_warning": "Toggle Content Warning",
"append_attachment_entry": "Add Attachment - %s", "append_attachment_entry": "Add Attachment - %s",
"select_visibility_entry": "Select Visibility - %s" "select_visibility_entry": "Select Visibility - %s"
},
"language": {
"title": "Post Language",
"suggested": "Suggested",
"recent": "Recent",
"other": "Other Language…"
} }
}, },
"profile": { "profile": {
@ -499,15 +444,11 @@
"follows_you": "Follows You" "follows_you": "Follows You"
}, },
"dashboard": { "dashboard": {
"my_posts": "posts", "posts": "posts",
"my_following": "following", "following": "following",
"my_followers": "followers", "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",
@ -620,7 +561,7 @@
"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": "Favorites" "title": "Your Favorites"
}, },
"notification": { "notification": {
"title": { "title": {
@ -781,19 +722,6 @@
}, },
"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

@ -1,465 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>a11y.plural.count.unread.notification</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@notification_count_unread_notification@</string>
<key>notification_count_unread_notification</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 notificación no leyida</string>
<key>other</key>
<string>%ld notificacions no leyidas</string>
</dict>
</dict>
<key>a11y.plural.count.input_limit_exceeds</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>Limite de dentrada superau en %#@character_count@ caracters</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 caracter</string>
<key>other</key>
<string>%ld caracters</string>
</dict>
</dict>
<key>a11y.plural.count.input_limit_remains</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>Limite de dentrada restante: %#@character_count@ caracters</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 caracter</string>
<key>other</key>
<string>%ld caracters</string>
</dict>
</dict>
<key>a11y.plural.count.characters_left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>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

@ -1,762 +0,0 @@
{
"common": {
"alerts": {
"common": {
"please_try_again": "Per favor, torna a intentar-lo.",
"please_try_again_later": "Per favor, torna a intentar-lo mas enta debant."
},
"sign_up_failure": {
"title": "Error en rechistrar-se"
},
"server_error": {
"title": "Error d'o servidor"
},
"vote_failure": {
"title": "Voto fallido",
"poll_ended": "La enquesta ha rematau"
},
"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

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

View File

@ -77,7 +77,7 @@
<key>a11y.plural.count.characters_left</key> <key>a11y.plural.count.characters_left</key>
<dict> <dict>
<key>NSStringLocalizedFormatKey</key> <key>NSStringLocalizedFormatKey</key>
<string>يتبقى %#@character_count@</string> <string>%#@character_count@ left</string>
<key>character_count</key> <key>character_count</key>
<dict> <dict>
<key>NSStringFormatSpecTypeKey</key> <key>NSStringFormatSpecTypeKey</key>
@ -91,9 +91,9 @@
<key>two</key> <key>two</key>
<string>حَرفانِ اِثنان</string> <string>حَرفانِ اِثنان</string>
<key>few</key> <key>few</key>
<string>%ld أحرُف</string> <string>%ld characters</string>
<key>many</key> <key>many</key>
<string>%ld حَرفًا</string> <string>%ld characters</string>
<key>other</key> <key>other</key>
<string>%ld حَرف</string> <string>%ld حَرف</string>
</dict> </dict>

View File

@ -51,11 +51,6 @@
"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": {
@ -80,10 +75,9 @@
"save_photo": "حفظ الصورة", "save_photo": "حفظ الصورة",
"copy_photo": "نسخ الصورة", "copy_photo": "نسخ الصورة",
"sign_in": "تسجيلُ الدخول", "sign_in": "تسجيلُ الدخول",
"sign_up": "إنشاءُ حِساب", "sign_up": "Create account",
"see_more": "عرض المزيد", "see_more": "عرض المزيد",
"preview": "مُعاينة", "preview": "مُعاينة",
"copy": "نَسخ",
"share": "المُشارك", "share": "المُشارك",
"share_user": "مُشارَكَةُ %s", "share_user": "مُشارَكَةُ %s",
"share_post": "مشارك المنشور", "share_post": "مشارك المنشور",
@ -97,16 +91,12 @@
"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_and_explore": "البَحث وَالاِستِكشاف", "search": "البَحث",
"notifications": "الإشعارات", "notification": "الإشعارات",
"profile": "المِلَفُّ التَّعريفِيّ" "profile": "المِلَفُّ التَّعريفِيّ"
}, },
"keyboard": { "keyboard": {
@ -142,8 +132,6 @@
"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": "انتهى"
@ -165,7 +153,6 @@
"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": {
@ -181,12 +168,6 @@
"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": {
@ -238,15 +219,15 @@
"log_in": "تسجيلُ الدخول" "log_in": "تسجيلُ الدخول"
}, },
"login": { "login": {
"title": "مَرحَبًا بِكَ مُجَدَّدًا", "title": "Welcome back",
"subtitle": "سَجِّل دُخولَكَ إلى الخادِم الَّذي أنشأتَ حِسابَكَ فيه.", "subtitle": "Log you in on the server you created your account on.",
"server_search_field": { "server_search_field": {
"placeholder": "أدخِل عُنوانَ URL أو اِبحَث عَنِ الخادِمِ الخاصّ بِك" "placeholder": "Enter URL or search for your server"
} }
}, },
"server_picker": { "server_picker": {
"title": "اِختر خادِم،\nأيًّا مِنهُم.", "title": "اِختر خادِم،\nأيًّا مِنهُم.",
"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.",
"button": { "button": {
"category": { "category": {
"all": "الكُل", "all": "الكُل",
@ -273,7 +254,7 @@
"category": "الفئة" "category": "الفئة"
}, },
"input": { "input": {
"search_servers_or_enter_url": "اِبحث عَن مُجتَمَعَات أو أدخِل عُنوانَ URL" "search_servers_or_enter_url": "Search communities or enter URL"
}, },
"empty_state": { "empty_state": {
"finding_servers": "يجري إيجاد خوادم متوفِّرَة...", "finding_servers": "يجري إيجاد خوادم متوفِّرَة...",
@ -446,7 +427,7 @@
"enable_content_warning": "تفعيل تحذير المُحتَوى", "enable_content_warning": "تفعيل تحذير المُحتَوى",
"disable_content_warning": "تعطيل تحذير المُحتَوى", "disable_content_warning": "تعطيل تحذير المُحتَوى",
"post_visibility_menu": "قائمة ظهور المنشور", "post_visibility_menu": "قائمة ظهور المنشور",
"post_options": "خياراتُ المَنشور", "post_options": "Post Options",
"posting_as": "نَشر كَـ %s" "posting_as": "نَشر كَـ %s"
}, },
"keyboard": { "keyboard": {
@ -463,15 +444,11 @@
"follows_you": "يُتابِعُك" "follows_you": "يُتابِعُك"
}, },
"dashboard": { "dashboard": {
"my_posts": "مَنشورات", "posts": "مَنشورات",
"my_following": "مُتابَعُون", "following": "مُتابَع",
"my_followers": "مُتابِعُون", "followers": "مُتابِع"
"other_posts": "مَنشورات",
"other_following": "مُتابَعُون",
"other_followers": "مُتابِعُون"
}, },
"fields": { "fields": {
"joined": "Joined",
"add_row": "إضافة صف", "add_row": "إضافة صف",
"placeholder": { "placeholder": {
"label": "التسمية", "label": "التسمية",
@ -745,18 +722,6 @@
}, },
"bookmark": { "bookmark": {
"title": "العَلاماتُ المَرجعيَّة" "title": "العَلاماتُ المَرجعيَّة"
},
"followed_tags": {
"title": "وُسُومُ المُتابَع",
"header": {
"posts": "مَنشورات",
"participants": "المُشارِكُون",
"posts_today": "مَنشوراتُ اليَوم"
},
"actions": {
"follow": "مُتابَعَة",
"unfollow": "إلغاءُ المُتابَعَة"
}
} }
} }
} }

View File

@ -408,7 +408,7 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>fa 1 dia</string> <string>fa 1 día</string>
<key>other</key> <key>other</key>
<string>fa %ld dies</string> <string>fa %ld dies</string>
</dict> </dict>
@ -424,7 +424,7 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>fa 1 h</string> <string>fa 1h</string>
<key>other</key> <key>other</key>
<string>fa %ld hores</string> <string>fa %ld hores</string>
</dict> </dict>
@ -440,9 +440,9 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>fa 1 min</string> <string>fa 1 minut</string>
<key>other</key> <key>other</key>
<string>fa %ld min</string> <string>fa %ld minuts</string>
</dict> </dict>
</dict> </dict>
<key>date.second.ago.abbr</key> <key>date.second.ago.abbr</key>
@ -456,9 +456,9 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>fa 1 s</string> <string>fa 1 segon</string>
<key>other</key> <key>other</key>
<string>fa %ld s</string> <string>fa %ld segons</string>
</dict> </dict>
</dict> </dict>
</dict> </dict>

View File

@ -2,60 +2,55 @@
"common": { "common": {
"alerts": { "alerts": {
"common": { "common": {
"please_try_again": "Torna-ho a provar.", "please_try_again": "Si us plau intenta-ho de nou.",
"please_try_again_later": "Prova-ho més tard." "please_try_again_later": "Si us plau, 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 en votar", "title": "Error del Vot",
"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ó." "message": "Confirma per a descartar el contingut de la publicació composta."
}, },
"publish_post_failure": { "publish_post_failure": {
"title": "Error en publicar", "title": "Error de Publicació",
"message": "No s'ha pogut enviar la publicació.\nComprova la connexió a Internet.", "message": "No s'ha pogut enviar la publicació.\nComprova la teva 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 es pot adjuntar més d'un vídeo." "more_than_one_video": "No pots adjuntar més d'un vídeo."
} }
}, },
"edit_profile_failure": { "edit_profile_failure": {
"title": "Error en editar el perfil", "title": "Error al Editar el Perfil",
"message": "No es pot editar el perfil. Torna-ho a provar." "message": "No es pot editar el perfil. Si us plau torna-ho a provar."
}, },
"sign_out": { "sign_out": {
"title": "Tanca la sessió", "title": "Tancar Sessió",
"message": "Segur que vols tancar la sessió?", "message": "Estàs segur que vols tancar la sessió?",
"confirm": "Tanca la sessió" "confirm": "Tancar Sessió"
}, },
"block_domain": { "block_domain": {
"title": "Estàs totalment segur que vols bloquejar per complet %s? En la majoria dels casos bloquejar o silenciar uns pocs objectius és suficient i preferible. No veureu contingut daquest domini i se suprimirà qualsevol dels vostres seguidors daquest domini.", "title": "Estàs segur, realment segur que vols bloquejar totalment %s? En la majoria dels casos bloquejar o silenciar uns pocs objectius és suficient i preferible. No veureu contingut daquest domini i se suprimirà qualsevol dels vostres seguidors daquest domini.",
"block_entire_domain": "Bloca el domini" "block_entire_domain": "Bloquejar Domini"
}, },
"save_photo_failure": { "save_photo_failure": {
"title": "Error en desar la foto", "title": "Error al Desar la Foto",
"message": "Activa el permís d'accés a la biblioteca de fotos per a desar-la." "message": "Activa el permís d'accés a la biblioteca de fotos per desar-la."
}, },
"delete_post": { "delete_post": {
"title": "Eliminar la publicació", "title": "Esborrar Publicació",
"message": "Segur que vols eliminar aquesta publicació?" "message": "Estàs segur que vols suprimir 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": {
@ -72,21 +67,20 @@
"done": "Fet", "done": "Fet",
"confirm": "Confirma", "confirm": "Confirma",
"continue": "Continua", "continue": "Continua",
"compose": "Redacta", "compose": "Composa",
"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": "Inicia sessió", "sign_in": "Iniciar sessió",
"sign_up": "Crea un compte", "sign_up": "Crea un compte",
"see_more": "Mostra'n més", "see_more": "Veure més",
"preview": "Vista prèvia", "preview": "Vista prèvia",
"copy": "Copia",
"share": "Comparteix", "share": "Comparteix",
"share_user": "Comparteix %s", "share_user": "Compartir %s",
"share_post": "Comparteix la publicació", "share_post": "Compartir 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",
@ -97,16 +91,12 @@
"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_and_explore": "Cerca i Explora", "search": "Cerca",
"notifications": "Notificacions", "notification": "Notificació",
"profile": "Perfil" "profile": "Perfil"
}, },
"keyboard": { "keyboard": {
@ -120,9 +110,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 de l'impuls", "open_reblogger_profile": "Obre el Perfil del Impulsor",
"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",
@ -142,30 +132,27 @@
"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": "Impulsa", "reblog": "Impuls",
"unreblog": "Desfés l'impuls", "unreblog": "Desfer l'impuls",
"favorite": "Favorit", "favorite": "Favorit",
"unfavorite": "Desfés el favorit", "unfavorite": "Desfer 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": {
@ -174,32 +161,26 @@
"link": "Enllaç", "link": "Enllaç",
"hashtag": "Etiqueta", "hashtag": "Etiqueta",
"email": "Correu electrònic", "email": "Correu electrònic",
"emoji": "Emojis" "emoji": "Emoji"
}, },
"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": "Sol·licitud", "request": "Petició",
"pending": "Pendent", "pending": "Pendent",
"block": "Bloca", "block": "Bloqueja",
"block_user": "Bloca %s", "block_user": "Bloqueja %s",
"block_domain": "Bloca %s", "block_domain": "Bloqueja %s",
"unblock": "Desbloca", "unblock": "Desbloqueja",
"unblock_user": "Desbloca %s", "unblock_user": "Desbloqueja %s",
"blocked": "Blocat", "blocked": "Bloquejat",
"mute": "Silencia", "mute": "Silencia",
"mute_user": "Silencia %s", "mute_user": "Silencia %s",
"unmute": "Deixa de silenciar", "unmute": "Deixa de silenciar",
@ -215,16 +196,16 @@
"now": "Ara" "now": "Ara"
}, },
"loader": { "loader": {
"load_missing_posts": "Carrega les publicacions restants", "load_missing_posts": "Carrega les publicacions faltants",
"loading_missing_posts": "Carregant les publicacions restants...", "loading_missing_posts": "Carregant les publicacions faltants...",
"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\nfins que el desbloquis.\nEl teu perfil els sembla així.", "blocking_warning": "No pots veure el perfil d'aquest usuari\n fins que el desbloquegis.\nEl teu perfil els sembla així.",
"user_blocking_warning": "No pots veure el perfil de %s\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í.",
"blocked_warning": "No pots veure el perfil d'aquest usuari\nfins que et desbloqui.", "blocked_warning": "No pots veure el perfil d'aquest usuari\nfins que et desbloquegi.",
"user_blocked_warning": "No pots veure el perfil de %s\n fins que et desbloqui.", "user_blocked_warning": "No pots veure el perfil de %s\n fins que et desbloquegi.",
"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."
} }
@ -245,7 +226,7 @@
} }
}, },
"server_picker": { "server_picker": {
"title": "Mastodon està fet d'usuaris en diferents servidors.", "title": "Mastodon està fet d'usuaris en diferents comunitats.",
"subtitle": "Tria un servidor en funció de la teva regió, interessos o un de propòsit general. Seguiràs podent connectar amb tothom a Mastodon, independentment del servidor.", "subtitle": "Tria un servidor en funció de la teva regió, interessos o un de propòsit general. Seguiràs podent connectar amb tothom a Mastodon, independentment del servidor.",
"button": { "button": {
"category": { "category": {
@ -386,11 +367,11 @@
}, },
"suggestion_account": { "suggestion_account": {
"title": "Cerca Persones a Seguir", "title": "Cerca Persones a Seguir",
"follow_explain": "Quan segueixes algú, veuràs els seus tuts a Inici." "follow_explain": "Quan segueixes algú, veuràs les seves publicacions a Inici."
}, },
"compose": { "compose": {
"title": { "title": {
"new_post": "Nou Tut", "new_post": "Nova publicació",
"new_reply": "Nova Resposta" "new_reply": "Nova Resposta"
}, },
"media_selection": { "media_selection": {
@ -405,8 +386,8 @@
"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 a les persones amb diversitat funcional...", "description_photo": "Descriu la foto per als disminuïts visuals...",
"description_video": "Descriu el vídeo per a les persones amb diversitat funcional...", "description_video": "Descriu el vídeo per als disminuïts visuals...",
"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 aquest adjunt multimèdia", "can_not_recognize_this_media_attachment": "No es pot reconèixer aquest adjunt multimèdia",
@ -445,13 +426,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 del Tut", "post_visibility_menu": "Menú de Visibilitat de Publicació",
"post_options": "Opcions del Tut", "post_options": "Opcions del tut",
"posting_as": "Publicant com a %s" "posting_as": "Publicant com a %s"
}, },
"keyboard": { "keyboard": {
"discard_post": "Descarta el Tut", "discard_post": "Descarta la Publicació",
"publish_post": "Envia el Tut", "publish_post": "Envia la Publicació",
"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",
@ -463,15 +444,11 @@
"follows_you": "Et segueix" "follows_you": "Et segueix"
}, },
"dashboard": { "dashboard": {
"my_posts": "tuts", "posts": "publicacions",
"my_following": "seguint", "following": "seguint",
"my_followers": "seguidors", "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",
@ -483,9 +460,9 @@
} }
}, },
"segmented_control": { "segmented_control": {
"posts": "Tuts", "posts": "Publicacions",
"replies": "Respostes", "replies": "Respostes",
"posts_and_replies": "Tuts i Respostes", "posts_and_replies": "Publicacions i Respostes",
"media": "Mèdia", "media": "Mèdia",
"about": "Quant a" "about": "Quant a"
}, },
@ -499,12 +476,12 @@
"message": "Confirma deixar de silenciar a %s" "message": "Confirma deixar de silenciar a %s"
}, },
"confirm_block_user": { "confirm_block_user": {
"title": "Bloca el Compte", "title": "Bloqueja el Compte",
"message": "Confirma per a blocar %s" "message": "Confirma per a bloquejar %s"
}, },
"confirm_unblock_user": { "confirm_unblock_user": {
"title": "Desbloca el Compte", "title": "Desbloqueja el Compte",
"message": "Confirma per a desblocar %s" "message": "Confirma per a desbloquejar %s"
}, },
"confirm_show_reblogs": { "confirm_show_reblogs": {
"title": "Mostra els Impulsos", "title": "Mostra els Impulsos",
@ -564,7 +541,7 @@
"all": "Tots", "all": "Tots",
"people": "Gent", "people": "Gent",
"hashtags": "Etiquetes", "hashtags": "Etiquetes",
"posts": "Tuts" "posts": "Publicacions"
}, },
"empty_state": { "empty_state": {
"no_results": "No hi ha resultats" "no_results": "No hi ha resultats"
@ -575,13 +552,13 @@
}, },
"discovery": { "discovery": {
"tabs": { "tabs": {
"posts": "Tuts", "posts": "Publicacions",
"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": "Aquests son els tuts que criden l'atenció en el teu racó de Mastodon." "intro": "Aquestes son les publicacions que criden l'atenció en el teu racó de Mastodon."
}, },
"favorite": { "favorite": {
"title": "Els teus Favorits" "title": "Els teus Favorits"
@ -611,8 +588,8 @@
} }
}, },
"thread": { "thread": {
"back_title": "Tut", "back_title": "Publicació",
"title": "Tut de %s" "title": "Publicació de %s"
}, },
"settings": { "settings": {
"title": "Configuració", "title": "Configuració",
@ -632,9 +609,9 @@
}, },
"notifications": { "notifications": {
"title": "Notificacions", "title": "Notificacions",
"favorites": "Ha afavorit el meu tut", "favorites": "Ha afavorit el meu estat",
"follows": "Em segueix", "follows": "Em segueix",
"boosts": "Ha impulsat el meu tut", "boosts": "Ha impulsat el meu estat",
"mentions": "M'ha mencionat", "mentions": "M'ha mencionat",
"trigger": { "trigger": {
"anyone": "algú", "anyone": "algú",
@ -676,7 +653,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 algun altre tut que vulguis afegir a l'informe?", "content1": "Hi ha alguna altre publicació que vulguis afegir a l'informe?",
"content2": "Hi ha alguna cosa que els moderadors hagin de saber sobre aquest informe?", "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",
@ -685,7 +662,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 aquest tut?", "whats_wrong_with_this_post": "Quin és el problema amb aquesta publicació?",
"whats_wrong_with_this_account": "Quin és el problema amb aquest compte?", "whats_wrong_with_this_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",
@ -706,7 +683,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 alguns tuts que recolzin aquest informe?", "are_there_any_posts_that_back_up_this_report": "Hi ha alguna publicació que recolzi aquest informe?",
"select_all_that_apply": "Selecciona tot el que correspongui" "select_all_that_apply": "Selecciona tot el que correspongui"
}, },
"step_four": { "step_four": {
@ -715,14 +692,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 teva experiència.", "when_you_see_something_you_dont_like_on_mastodon_you_can_remove_the_person_from_your_experience.": "Quan veus alguna cosa que no t'agrada a Mastodon, pots eliminar la persona de la vostra experiència.",
"unfollow": "Deixa de seguir", "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 els seus tuts o impulsos a la teva línia de temps personal. No sabran que han estat silenciats.", "you_wont_see_their_posts_or_reblogs_in_your_home_feed_they_wont_know_they_ve_been_muted": "No veuràs les seves publicacions o impulsos a la teva línia de temps personal. No sabran que han estat silenciats.",
"block_user": "Bloca %s", "block_user": "Bloca %s",
"they_will_no_longer_be_able_to_follow_or_see_your_posts_but_they_can_see_if_theyve_been_blocked": "Ja no podran seguir ni veure els teus tus, però poden veure si han estat blocats.", "they_will_no_longer_be_able_to_follow_or_see_your_posts_but_they_can_see_if_theyve_been_blocked": "Ja no podran seguir ni veure les teves publicacions, però poden veure si han estat bloquejats.",
"while_we_review_this_you_can_take_action_against_user": "Mentre ho revisem, pots prendre mesures contra %s" "while_we_review_this_you_can_take_action_against_user": "Mentre ho revisem, pots prendre mesures contra %s"
} }
}, },
@ -745,18 +722,6 @@
}, },
"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

@ -51,11 +51,6 @@
"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": {
@ -83,7 +78,6 @@
"sign_up": "Create account", "sign_up": "Create account",
"see_more": "زیاتر ببینە", "see_more": "زیاتر ببینە",
"preview": "پێشبینین", "preview": "پێشبینین",
"copy": "Copy",
"share": "هاوبەشی بکە", "share": "هاوبەشی بکە",
"share_user": "%s هاوبەش بکە", "share_user": "%s هاوبەش بکە",
"share_post": "هاوبەشی بکە", "share_post": "هاوبەشی بکە",
@ -97,16 +91,12 @@
"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_and_explore": "Search and Explore", "search": "بگەڕێ",
"notifications": "Notifications", "notification": "ئاگادارکردنەوەکان",
"profile": "پرۆفایل" "profile": "پرۆفایل"
}, },
"keyboard": { "keyboard": {
@ -142,8 +132,6 @@
"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": "داخراوە"
@ -165,7 +153,6 @@
"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": {
@ -181,12 +168,6 @@
"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": {
@ -463,15 +444,11 @@
"follows_you": "Follows You" "follows_you": "Follows You"
}, },
"dashboard": { "dashboard": {
"my_posts": "posts", "posts": "پۆستەکان",
"my_following": "following", "following": "شوێنکەوتن",
"my_followers": "followers", "followers": "شوێنکەوتوو"
"other_posts": "posts",
"other_following": "following",
"other_followers": "followers"
}, },
"fields": { "fields": {
"joined": "Joined",
"add_row": "ڕیز زیاد بکە", "add_row": "ڕیز زیاد بکە",
"placeholder": { "placeholder": {
"label": "ناونیشان", "label": "ناونیشان",
@ -745,18 +722,6 @@
}, },
"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

@ -65,7 +65,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@ zbývá</string> <string>%#@character_count@ left</string>
<key>character_count</key> <key>character_count</key>
<dict> <dict>
<key>NSStringFormatSpecTypeKey</key> <key>NSStringFormatSpecTypeKey</key>

View File

@ -51,11 +51,6 @@
"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": {
@ -83,7 +78,6 @@
"sign_up": "Vytvořit účet", "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",
@ -97,16 +91,12 @@
"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_and_explore": "Hledat a zkoumat", "search": "Hledat",
"notifications": "Oznámení", "notification": "Oznamování",
"profile": "Profil" "profile": "Profil"
}, },
"keyboard": { "keyboard": {
@ -123,8 +113,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": "Přepnout Reblog na příspěvku", "toggle_reblog": "Toggle Reblog on Post",
"toggle_favorite": "Přepnout Oblíbené na příspěvku", "toggle_favorite": "Toggle Favorite on Post",
"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"
}, },
@ -142,8 +132,6 @@
"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"
@ -165,7 +153,6 @@
"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": {
@ -181,12 +168,6 @@
"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": {
@ -463,15 +444,11 @@
"follows_you": "Sleduje vás" "follows_you": "Sleduje vás"
}, },
"dashboard": { "dashboard": {
"my_posts": "příspěvky", "posts": "příspěvky",
"my_following": "sledování", "following": "sledování",
"my_followers": "sledující", "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í",
@ -745,18 +722,6 @@
}, },
"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 hysbysiad heb ei ddarllen</string> <string>%ld unread notification</string>
<key>one</key> <key>one</key>
<string>%ld hysbysiad heb ei ddarllen</string> <string>1 unread notification</string>
<key>two</key> <key>two</key>
<string>%ld hysbysiad heb eu darllen</string> <string>%ld unread notification</string>
<key>few</key> <key>few</key>
<string>%ld hysbysiad heb eu darllen</string> <string>%ld unread notification</string>
<key>many</key> <key>many</key>
<string>%ld hysbysiad heb eu darllen</string> <string>%ld unread notification</string>
<key>other</key> <key>other</key>
<string>%ld hysbysiad heb eu darllen</string> <string>%ld unread notification</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>Mae'r terfyn mewnbwn yn fwy na %#@character_count@</string> <string>Input limit exceeds %#@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 nod</string> <string>%ld characters</string>
<key>one</key> <key>one</key>
<string>%ld nod</string> <string>1 character</string>
<key>two</key> <key>two</key>
<string>%ld nod</string> <string>%ld characters</string>
<key>few</key> <key>few</key>
<string>%ld nod</string> <string>%ld characters</string>
<key>many</key> <key>many</key>
<string>%ld nod</string> <string>%ld characters</string>
<key>other</key> <key>other</key>
<string>%ld nod</string> <string>%ld nodau</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>Mae'r terfyn mewnbwn yn %#@character_count@</string> <string>Input limit remains %#@character_count@</string>
<key>character_count</key> <key>character_count</key>
<dict> <dict>
<key>NSStringFormatSpecTypeKey</key> <key>NSStringFormatSpecTypeKey</key>
@ -61,23 +61,23 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ld nod</string> <string>%ld characters</string>
<key>one</key> <key>one</key>
<string>%ld nod</string> <string>1 character</string>
<key>two</key> <key>two</key>
<string>%ld nod</string> <string>%ld characters</string>
<key>few</key> <key>few</key>
<string>%ld nod</string> <string>%ld characters</string>
<key>many</key> <key>many</key>
<string>%ld nod</string> <string>%ld characters</string>
<key>other</key> <key>other</key>
<string>%ld nod</string> <string>%ld characters</string>
</dict> </dict>
</dict> </dict>
<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@ ar ôl</string> <string>%#@character_count@ left</string>
<key>character_count</key> <key>character_count</key>
<dict> <dict>
<key>NSStringFormatSpecTypeKey</key> <key>NSStringFormatSpecTypeKey</key>
@ -85,17 +85,17 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ld nod</string> <string>%ld characters</string>
<key>one</key> <key>one</key>
<string>%ld nod</string> <string>1 character</string>
<key>two</key> <key>two</key>
<string>%ld nod</string> <string>%ld characters</string>
<key>few</key> <key>few</key>
<string>%ld nod</string> <string>%ld characters</string>
<key>many</key> <key>many</key>
<string>%ld nod</string> <string>%ld characters</string>
<key>other</key> <key>other</key>
<string>%ld nod</string> <string>%ld characters</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.followed_by_and_mutual</key> <key>plural.count.followed_by_and_mutual</key>
@ -128,17 +128,17 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>Dilynwyd gan %1$@, a %ld mewn cyffredin</string> <string>Followed by %1$@, and %ld mutuals</string>
<key>one</key> <key>one</key>
<string>Dilynwyd gan %1$@, a pherson gyffredin</string> <string>Followed by %1$@, and another mutual</string>
<key>two</key> <key>two</key>
<string>Dilynwyd gan %1$@, a %ld mewn cyffredin</string> <string>Followed by %1$@, and %ld mutuals</string>
<key>few</key> <key>few</key>
<string>Dilynwyd gan %1$@, a %ld mewn cyffredin</string> <string>Followed by %1$@, and %ld mutuals</string>
<key>many</key> <key>many</key>
<string>Dilynwyd gan %1$@, a %ld mewn cyffredin</string> <string>Followed by %1$@, and %ld mutuals</string>
<key>other</key> <key>other</key>
<string>Dilynwyd gan %1$@, a %ld mewn cyffredin</string> <string>Followed by %1$@, and %ld mutuals</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.metric_formatted.post</key> <key>plural.count.metric_formatted.post</key>
@ -152,17 +152,17 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>t</string> <string>post</string>
<key>one</key> <key>one</key>
<string>t</string> <string>post</string>
<key>two</key> <key>two</key>
<string>tŵt</string> <string>postiau</string>
<key>few</key> <key>few</key>
<string>tŵt</string> <string>posts</string>
<key>many</key> <key>many</key>
<string>tŵt</string> <string>posts</string>
<key>other</key> <key>other</key>
<string>postiadau</string> <string>postiau</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.media</key> <key>plural.count.media</key>
@ -176,17 +176,17 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ld cyfrwng</string> <string>%ld media</string>
<key>one</key> <key>one</key>
<string>%ld cyfrwng</string> <string>1 media</string>
<key>two</key> <key>two</key>
<string>%ld gyfrwng</string> <string>%ld media</string>
<key>few</key> <key>few</key>
<string>%ld cyfrwng</string> <string>%ld media</string>
<key>many</key> <key>many</key>
<string>%ld cyfrwng</string> <string>%ld media</string>
<key>other</key> <key>other</key>
<string>%ld cyfrwng</string> <string>%ld media</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.post</key> <key>plural.count.post</key>
@ -200,17 +200,17 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ld post</string> <string>%ld posts</string>
<key>one</key> <key>one</key>
<string>%ld post</string> <string>1 post</string>
<key>two</key> <key>two</key>
<string>%ld bost</string> <string>%ld posts</string>
<key>few</key> <key>few</key>
<string>%ld post</string> <string>%ld posts</string>
<key>many</key> <key>many</key>
<string>%ld post</string> <string>%ld posts</string>
<key>other</key> <key>other</key>
<string>%ld post</string> <string>%ld posts</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.favorite</key> <key>plural.count.favorite</key>
@ -224,17 +224,17 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ld ffefrynnau</string> <string>%ld favorites</string>
<key>one</key> <key>one</key>
<string>%ld ffefryn</string> <string>1 favorite</string>
<key>two</key> <key>two</key>
<string>%ld ffefryn</string> <string>%ld favorites</string>
<key>few</key> <key>few</key>
<string>%ld ffefryn</string> <string>%ld favorites</string>
<key>many</key> <key>many</key>
<string>%ld ffefryn</string> <string>%ld favorites</string>
<key>other</key> <key>other</key>
<string>%ld ffefryn</string> <string>%ld favorites</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.reblog</key> <key>plural.count.reblog</key>
@ -248,17 +248,17 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ld ailflogiau</string> <string>%ld reblogs</string>
<key>one</key> <key>one</key>
<string>%ld ailflog</string> <string>1 reblog</string>
<key>two</key> <key>two</key>
<string>%ld ailflog</string> <string>%ld reblogs</string>
<key>few</key> <key>few</key>
<string>%ld ailflog</string> <string>%ld reblogs</string>
<key>many</key> <key>many</key>
<string>%ld ailflog</string> <string>%ld reblogs</string>
<key>other</key> <key>other</key>
<string>%ld o ailflogiau</string> <string>%ld reblogs</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.reply</key> <key>plural.count.reply</key>
@ -272,17 +272,17 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ld ymatebau</string> <string>%ld replies</string>
<key>one</key> <key>one</key>
<string>%ld ymateb</string> <string>1 reply</string>
<key>two</key> <key>two</key>
<string>%ld ymateb</string> <string>%ld replies</string>
<key>few</key> <key>few</key>
<string>%ld ymateb</string> <string>%ld replies</string>
<key>many</key> <key>many</key>
<string>%ld o ymatebau</string> <string>%ld replies</string>
<key>other</key> <key>other</key>
<string>%ld ymateb</string> <string>%ld replies</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.vote</key> <key>plural.count.vote</key>
@ -296,17 +296,17 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ld pleidleisiau</string> <string>%ld votes</string>
<key>one</key> <key>one</key>
<string>%ld pleidlais</string> <string>1 vote</string>
<key>two</key> <key>two</key>
<string>%ld bleidlais</string> <string>%ld votes</string>
<key>few</key> <key>few</key>
<string>%ld phleidlais</string> <string>%ld votes</string>
<key>many</key> <key>many</key>
<string>%ld pleidlais</string> <string>%ld votes</string>
<key>other</key> <key>other</key>
<string>%ld pleidlais</string> <string>%ld votes</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.voter</key> <key>plural.count.voter</key>
@ -320,17 +320,17 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ld pleidleiswyr</string> <string>%ld voters</string>
<key>one</key> <key>one</key>
<string>%ld pleidleisiwr</string> <string>1 voter</string>
<key>two</key> <key>two</key>
<string>%ld bleidleisiwr</string> <string>%ld voters</string>
<key>few</key> <key>few</key>
<string>%ld phleidleisiwr</string> <string>%ld voters</string>
<key>many</key> <key>many</key>
<string>%ld pleidleisiwr</string> <string>%ld voters</string>
<key>other</key> <key>other</key>
<string>%ld pleidleisiwr</string> <string>%ld voters</string>
</dict> </dict>
</dict> </dict>
<key>plural.people_talking</key> <key>plural.people_talking</key>
@ -344,17 +344,17 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ld person yn trafod</string> <string>%ld people talking</string>
<key>one</key> <key>one</key>
<string>%ld person yn trafod</string> <string>1 people talking</string>
<key>two</key> <key>two</key>
<string>%ld berson yn trafod</string> <string>%ld people talking</string>
<key>few</key> <key>few</key>
<string>%ld o bobl yn trafod</string> <string>%ld people talking</string>
<key>many</key> <key>many</key>
<string>%ld o bobl yn trafod</string> <string>%ld people talking</string>
<key>other</key> <key>other</key>
<string>%ld o bobl yn trafod</string> <string>%ld people talking</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.following</key> <key>plural.count.following</key>
@ -368,17 +368,17 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ld yn dilyn</string> <string>%ld following</string>
<key>one</key> <key>one</key>
<string>%ld yn dilyn</string> <string>1 following</string>
<key>two</key> <key>two</key>
<string>%ld yn dilyn</string> <string>%ld following</string>
<key>few</key> <key>few</key>
<string>%ld yn dilyn</string> <string>%ld following</string>
<key>many</key> <key>many</key>
<string>%ld yn dilyn</string> <string>%ld following</string>
<key>other</key> <key>other</key>
<string>%ld yn dilyn</string> <string>%ld following</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.follower</key> <key>plural.count.follower</key>
@ -392,17 +392,17 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ld dilynwyr</string> <string>%ld followers</string>
<key>one</key> <key>one</key>
<string>%ld dilynwr</string> <string>1 follower</string>
<key>two</key> <key>two</key>
<string>%ld ddilynwr</string> <string>%ld followers</string>
<key>few</key> <key>few</key>
<string>%ld dilynwr</string> <string>%ld followers</string>
<key>many</key> <key>many</key>
<string>%ld o ddilynwyr</string> <string>%ld followers</string>
<key>other</key> <key>other</key>
<string>%ld dilynwr</string> <string>%ld followers</string>
</dict> </dict>
</dict> </dict>
<key>date.year.left</key> <key>date.year.left</key>
@ -416,17 +416,17 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ld blwyddyn ar ôl</string> <string>%ld years left</string>
<key>one</key> <key>one</key>
<string>%ld blwyddyn ar ôl</string> <string>1 year left</string>
<key>two</key> <key>two</key>
<string>%ld flwyddyn ar ôl</string> <string>%ld years left</string>
<key>few</key> <key>few</key>
<string>%ld blwyddyn ar ôl</string> <string>%ld years left</string>
<key>many</key> <key>many</key>
<string>%ld blwyddyn ar ôl</string> <string>%ld years left</string>
<key>other</key> <key>other</key>
<string>%ld blwyddyn ar ôl</string> <string>%ld years left</string>
</dict> </dict>
</dict> </dict>
<key>date.month.left</key> <key>date.month.left</key>
@ -440,17 +440,17 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ld mis ar ôl</string> <string>%ld months left</string>
<key>one</key> <key>one</key>
<string>%ld mis ar ôl</string> <string>1 months left</string>
<key>two</key> <key>two</key>
<string>%ld fis ar ôl</string> <string>%ld months left</string>
<key>few</key> <key>few</key>
<string>%ld mis ar ôl</string> <string>%ld months left</string>
<key>many</key> <key>many</key>
<string>%ld mis ar ôl</string> <string>%ld months left</string>
<key>other</key> <key>other</key>
<string>%ld mis ar ôl</string> <string>%ld months left</string>
</dict> </dict>
</dict> </dict>
<key>date.day.left</key> <key>date.day.left</key>
@ -464,17 +464,17 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ld diwrnod ar ôl</string> <string>%ld days left</string>
<key>one</key> <key>one</key>
<string>%ld diwrnod ar ôl</string> <string>1 day left</string>
<key>two</key> <key>two</key>
<string>%ld ddiwrnod ar ôl</string> <string>%ld days left</string>
<key>few</key> <key>few</key>
<string>%ld diwrnod ar ôl</string> <string>%ld days left</string>
<key>many</key> <key>many</key>
<string>%ld diwrnod ar ôl</string> <string>%ld days left</string>
<key>other</key> <key>other</key>
<string>%ld diwrnod ar ôl</string> <string>%ld days left</string>
</dict> </dict>
</dict> </dict>
<key>date.hour.left</key> <key>date.hour.left</key>
@ -488,17 +488,17 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ld awr ar ôl</string> <string>%ld hours left</string>
<key>one</key> <key>one</key>
<string>%ld awr ar ôl</string> <string>1 hour left</string>
<key>two</key> <key>two</key>
<string>%ld awr ar ôl</string> <string>%ld hours left</string>
<key>few</key> <key>few</key>
<string>%ld awr ar ôl</string> <string>%ld hours left</string>
<key>many</key> <key>many</key>
<string>%ld awr ar ôl</string> <string>%ld hours left</string>
<key>other</key> <key>other</key>
<string>%ld awr ar ôl</string> <string>%ld hours left</string>
</dict> </dict>
</dict> </dict>
<key>date.minute.left</key> <key>date.minute.left</key>
@ -512,17 +512,17 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ld munud ar ôl</string> <string>%ld minutes left</string>
<key>one</key> <key>one</key>
<string>%ld munud ar ôl</string> <string>1 minute left</string>
<key>two</key> <key>two</key>
<string>%ld funud ar ôl</string> <string>%ld minutes left</string>
<key>few</key> <key>few</key>
<string>%ld munud ar ôl</string> <string>%ld minutes left</string>
<key>many</key> <key>many</key>
<string>%ld munud ar ôl</string> <string>%ld minutes left</string>
<key>other</key> <key>other</key>
<string>%ld munud ar ôl</string> <string>%ld minutes left</string>
</dict> </dict>
</dict> </dict>
<key>date.second.left</key> <key>date.second.left</key>
@ -536,17 +536,17 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ld eiliad ar ôl</string> <string>%ld seconds left</string>
<key>one</key> <key>one</key>
<string>%ld eiliad ar ôl</string> <string>1 second left</string>
<key>two</key> <key>two</key>
<string>%ld eiliad ar ôl</string> <string>%ld seconds left</string>
<key>few</key> <key>few</key>
<string>%ld eiliad ar ôl</string> <string>%ld seconds left</string>
<key>many</key> <key>many</key>
<string>%ld eiliad ar ôl</string> <string>%ld seconds left</string>
<key>other</key> <key>other</key>
<string>%ld eiliad ar ôl</string> <string>%ld seconds left</string>
</dict> </dict>
</dict> </dict>
<key>date.year.ago.abbr</key> <key>date.year.ago.abbr</key>
@ -560,17 +560,17 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ld blwyddyn yn ôl</string> <string>%ldy ago</string>
<key>one</key> <key>one</key>
<string>%ld blwyddyn yn ôl</string> <string>1y ago</string>
<key>two</key> <key>two</key>
<string>%ld flwyddyn yn ôl</string> <string>%ldy ago</string>
<key>few</key> <key>few</key>
<string>%ld blwyddyn yn ôl</string> <string>%ldy ago</string>
<key>many</key> <key>many</key>
<string>%ld blwyddyn yn ôl</string> <string>%ldy ago</string>
<key>other</key> <key>other</key>
<string>%ld blwyddyn yn ôl</string> <string>%ldy ago</string>
</dict> </dict>
</dict> </dict>
<key>date.month.ago.abbr</key> <key>date.month.ago.abbr</key>
@ -584,17 +584,17 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ld munud yn ôl</string> <string>%ldM ago</string>
<key>one</key> <key>one</key>
<string>%ld munud yn ôl</string> <string>1M ago</string>
<key>two</key> <key>two</key>
<string>%ld funud yn ôl</string> <string>%ldM ago</string>
<key>few</key> <key>few</key>
<string>%ld munud yn ôl</string> <string>%ldM ago</string>
<key>many</key> <key>many</key>
<string>%ld munud yn ôl</string> <string>%ldM ago</string>
<key>other</key> <key>other</key>
<string>%ld munud yn ôl</string> <string>%ldM ago</string>
</dict> </dict>
</dict> </dict>
<key>date.day.ago.abbr</key> <key>date.day.ago.abbr</key>
@ -608,17 +608,17 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ldd yn ôl</string> <string>%ldd ago</string>
<key>one</key> <key>one</key>
<string>%ldd yn ôl</string> <string>1d ago</string>
<key>two</key> <key>two</key>
<string>%ldd yn ôl</string> <string>%ldd ago</string>
<key>few</key> <key>few</key>
<string>%ldd yn ôl</string> <string>%ldd ago</string>
<key>many</key> <key>many</key>
<string>%ldd yn ôl</string> <string>%ldd ago</string>
<key>other</key> <key>other</key>
<string>%ldd yn ôl</string> <string>%ldd ago</string>
</dict> </dict>
</dict> </dict>
<key>date.hour.ago.abbr</key> <key>date.hour.ago.abbr</key>
@ -632,17 +632,17 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ld awr yn ôl</string> <string>%ldh ago</string>
<key>one</key> <key>one</key>
<string>%ld awr yn ôl</string> <string>1h ago</string>
<key>two</key> <key>two</key>
<string>%ld awr yn ôl</string> <string>%ldh ago</string>
<key>few</key> <key>few</key>
<string>%ld awr yn ôl</string> <string>%ldh ago</string>
<key>many</key> <key>many</key>
<string>%ld awr yn ôl</string> <string>%ldh ago</string>
<key>other</key> <key>other</key>
<string>%ld awr yn ôl</string> <string>%ldh ago</string>
</dict> </dict>
</dict> </dict>
<key>date.minute.ago.abbr</key> <key>date.minute.ago.abbr</key>
@ -656,17 +656,17 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ld munud yn ôl</string> <string>%ldm ago</string>
<key>one</key> <key>one</key>
<string>%ld munud yn ôl</string> <string>1m ago</string>
<key>two</key> <key>two</key>
<string>%ld funud yn ôl</string> <string>%ldm ago</string>
<key>few</key> <key>few</key>
<string>%ld munud yn ôl</string> <string>%ldm ago</string>
<key>many</key> <key>many</key>
<string>%ld munud yn ôl</string> <string>%ldm ago</string>
<key>other</key> <key>other</key>
<string>%ld munud yn ôl</string> <string>%ldm ago</string>
</dict> </dict>
</dict> </dict>
<key>date.second.ago.abbr</key> <key>date.second.ago.abbr</key>
@ -680,17 +680,17 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ld eiliad yn ôl</string> <string>%lds ago</string>
<key>one</key> <key>one</key>
<string>%ld eiliad yn ôl</string> <string>1s ago</string>
<key>two</key> <key>two</key>
<string>%ld eiliad yn ôl</string> <string>%lds ago</string>
<key>few</key> <key>few</key>
<string>%ld eiliad yn ôl</string> <string>%lds ago</string>
<key>many</key> <key>many</key>
<string>%ld eiliad yn ôl</string> <string>%lds ago</string>
<key>other</key> <key>other</key>
<string>%ld eiliad yn ôl</string> <string>%lds ago</string>
</dict> </dict>
</dict> </dict>
</dict> </dict>

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{ {
"NSCameraUsageDescription": "Defnyddir hwn i gymryd llun am bost", "NSCameraUsageDescription": "Used to take photo for post status",
"NSPhotoLibraryAddUsageDescription": "Defnyddir hwn i gadw llun yn eich Photo Library", "NSPhotoLibraryAddUsageDescription": "Used to save photo into the 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 notifications</string> <string>%ld unread notification</string>
</dict> </dict>
</dict> </dict>
<key>a11y.plural.count.input_limit_exceeds</key> <key>a11y.plural.count.input_limit_exceeds</key>

View File

@ -51,11 +51,6 @@
"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": {
@ -83,7 +78,6 @@
"sign_up": "Create account", "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",
@ -97,16 +91,12 @@
"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_and_explore": "Search and Explore", "search": "Search",
"notifications": "Notifications", "notification": "Notification",
"profile": "Profile" "profile": "Profile"
}, },
"keyboard": { "keyboard": {
@ -142,8 +132,6 @@
"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"
@ -165,7 +153,6 @@
"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": {
@ -181,12 +168,6 @@
"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": {
@ -463,15 +444,11 @@
"follows_you": "Follows You" "follows_you": "Follows You"
}, },
"dashboard": { "dashboard": {
"my_posts": "posts", "posts": "posts",
"my_following": "following", "following": "following",
"my_followers": "followers", "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",
@ -584,7 +561,7 @@
"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": "Favorites" "title": "Your Favorites"
}, },
"notification": { "notification": {
"title": { "title": {
@ -745,18 +722,6 @@
}, },
"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,7 @@
<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@ Zeichen übrig</string> <string>Noch %#@character_count@ übrig</string>
<key>character_count</key> <key>character_count</key>
<dict> <dict>
<key>NSStringFormatSpecTypeKey</key> <key>NSStringFormatSpecTypeKey</key>
@ -53,7 +53,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@ übrig</string> <string>%#@character_count@ left</string>
<key>character_count</key> <key>character_count</key>
<dict> <dict>
<key>NSStringFormatSpecTypeKey</key> <key>NSStringFormatSpecTypeKey</key>
@ -61,9 +61,9 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>1 Zeichen</string> <string>1 character</string>
<key>other</key> <key>other</key>
<string>%ld Zeichen</string> <string>%ld characters</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.followed_by_and_mutual</key> <key>plural.count.followed_by_and_mutual</key>

View File

@ -45,17 +45,12 @@
"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": "Beiträge löschen", "title": "Bist du dir sicher, dass du diesen Beitrag löschen möchtest?",
"message": "Bist du dir sicher, dass du diesen Beitrag löschen willst?" "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": {
@ -71,7 +66,7 @@
"ok": "OK", "ok": "OK",
"done": "Fertig", "done": "Fertig",
"confirm": "Bestätigen", "confirm": "Bestätigen",
"continue": "Weiter", "continue": "Fortfahren",
"compose": "Neue Nachricht", "compose": "Neue Nachricht",
"cancel": "Abbrechen", "cancel": "Abbrechen",
"discard": "Verwerfen", "discard": "Verwerfen",
@ -83,13 +78,12 @@
"sign_up": "Konto erstellen", "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": "Personen zum Folgen finden", "find_people": "Finde Personen zum Folgen",
"manually_search": "Stattdessen manuell suchen", "manually_search": "Stattdessen manuell suchen",
"skip": "Überspringen", "skip": "Überspringen",
"reply": "Antworten", "reply": "Antworten",
@ -97,16 +91,12 @@
"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_and_explore": "Suchen und Entdecken", "search": "Suche",
"notifications": "Mitteilungen", "notification": "Benachrichtigungen",
"profile": "Profil" "profile": "Profil"
}, },
"keyboard": { "keyboard": {
@ -142,8 +132,6 @@
"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"
@ -151,8 +139,8 @@
"meta_entity": { "meta_entity": {
"url": "Link: %s", "url": "Link: %s",
"hashtag": "Hashtag: %s", "hashtag": "Hashtag: %s",
"mention": "Profil anzeigen: %s", "mention": "Show Profile: %s",
"email": "E-Mail-Adresse: %s" "email": "Email address: %s"
}, },
"actions": { "actions": {
"reply": "Antworten", "reply": "Antworten",
@ -165,7 +153,6 @@
"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": {
@ -178,20 +165,14 @@
}, },
"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 die, die dem Autor folgen, können diesen Beitrag sehen.", "private": "Nur Follower des Authors können diesen Beitrag sehen.",
"private_from_me": "Nur die, die mir folgen, können diesen Beitrag sehen.", "private_from_me": "Nur meine Follower können diesen Beitrag sehen.",
"direct": "Nur erwähnte Benutzer können diesen Beitrag sehen." "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": "Gefolgt", "following": "Folge Ich",
"request": "Anfragen", "request": "Anfragen",
"pending": "In Warteschlange", "pending": "In Warteschlange",
"block": "Blockieren", "block": "Blockieren",
@ -206,8 +187,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": "Teilen anzeigen", "show_reblogs": "Reblogs anzeigen",
"hide_reblogs": "Teilen ausblenden" "hide_reblogs": "Reblogs ausblenden"
}, },
"timeline": { "timeline": {
"filtered": "Gefiltert", "filtered": "Gefiltert",
@ -216,7 +197,7 @@
}, },
"loader": { "loader": {
"load_missing_posts": "Fehlende Beiträge laden", "load_missing_posts": "Fehlende Beiträge laden",
"loading_missing_posts": "Fehlende Beiträge werden geladen …", "loading_missing_posts": "Lade fehlende Beiträge...",
"show_more_replies": "Weitere Antworten anzeigen" "show_more_replies": "Weitere Antworten anzeigen"
}, },
"header": { "header": {
@ -276,7 +257,7 @@
"search_servers_or_enter_url": "Suche nach einer Community oder gib eine URL ein" "search_servers_or_enter_url": "Suche nach einer Community oder gib eine URL ein"
}, },
"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"
} }
@ -367,7 +348,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": "E-Mail", "mail": "Mail",
"open_email_client": "E-Mail-Client öffnen" "open_email_client": "E-Mail-Client öffnen"
} }
}, },
@ -377,7 +358,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"
@ -386,7 +367,7 @@
}, },
"suggestion_account": { "suggestion_account": {
"title": "Finde Personen zum Folgen", "title": "Finde Personen zum Folgen",
"follow_explain": "Sobald du anderen folgst, siehst du deren Beiträge in deinem Home-Feed." "follow_explain": "Wenn du jemandem folgst, dann siehst du deren Beiträge in deinem Home-Feed."
}, },
"compose": { "compose": {
"title": { "title": {
@ -405,14 +386,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 …", "compressing_state": "Komprimieren...",
"server_processing_state": "Serververarbeitung" "server_processing_state": "Serververarbeitung..."
}, },
"poll": { "poll": {
"duration_time": "Dauer: %s", "duration_time": "Dauer: %s",
@ -427,7 +408,7 @@
"the_poll_has_empty_option": "Die Umfrage hat eine leere Option" "the_poll_has_empty_option": "Die Umfrage hat eine leere Option"
}, },
"content_warning": { "content_warning": {
"placeholder": "Hier eine Inhaltswarnung schreiben …" "placeholder": "Schreibe eine Inhaltswarnung hier..."
}, },
"visibility": { "visibility": {
"public": "Öffentlich", "public": "Öffentlich",
@ -446,8 +427,8 @@
"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", "post_options": "Post Options",
"posting_as": "Veröffentlichen als %s" "posting_as": "Posting as %s"
}, },
"keyboard": { "keyboard": {
"discard_post": "Beitrag verwerfen", "discard_post": "Beitrag verwerfen",
@ -463,15 +444,11 @@
"follows_you": "Folgt dir" "follows_you": "Folgt dir"
}, },
"dashboard": { "dashboard": {
"my_posts": "Beiträge", "posts": "Beiträge",
"my_following": "folge ich", "following": "Gefolgte",
"my_followers": "followers", "followers": "Folgende"
"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",
@ -507,12 +484,12 @@
"message": "Bestätige %s zu entsperren" "message": "Bestätige %s zu entsperren"
}, },
"confirm_show_reblogs": { "confirm_show_reblogs": {
"title": "Teilen anzeigen", "title": "Reblogs anzeigen",
"message": "Bestätigen, um Teilen anzuzeigen" "message": "Bestätigen um Reblogs anzuzeigen"
}, },
"confirm_hide_reblogs": { "confirm_hide_reblogs": {
"title": "Teilen ausblenden", "title": "Reblogs ausblenden",
"message": "Bestätigen, um Teilen auszublenden" "message": "Confirm to hide reblogs"
} }
}, },
"accessibility": { "accessibility": {
@ -523,15 +500,15 @@
} }
}, },
"follower": { "follower": {
"title": "Folgende", "title": "Follower",
"footer": "Folgende, die nicht auf deinem Server registriert sind, werden nicht angezeigt." "footer": "Folger, die nicht auf deinem Server registriert sind, werden nicht angezeigt."
}, },
"following": { "following": {
"title": "Gefolgte", "title": "Folgende",
"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": "Folgende, die du kennst", "title": "Follower, die dir bekannt vorkommen",
"followed_by_names": "Gefolgt von %s" "followed_by_names": "Gefolgt von %s"
}, },
"favorited_by": { "favorited_by": {
@ -555,7 +532,7 @@
}, },
"accounts": { "accounts": {
"title": "Konten, die dir gefallen könnten", "title": "Konten, die dir gefallen könnten",
"description": "Vielleicht gefallen dir diese Konten", "description": "Vielleicht gefallen dir diese Benutzer",
"follow": "Folgen" "follow": "Folgen"
} }
}, },
@ -745,18 +722,6 @@
}, },
"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 notifications</string> <string>%ld unread notification</string>
</dict> </dict>
</dict> </dict>
<key>a11y.plural.count.input_limit_exceeds</key> <key>a11y.plural.count.input_limit_exceeds</key>

View File

@ -51,11 +51,6 @@
"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": {
@ -83,7 +78,6 @@
"sign_up": "Create account", "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",
@ -97,16 +91,12 @@
"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_and_explore": "Search and Explore", "search": "Search",
"notifications": "Notifications", "notification": "Notification",
"profile": "Profile" "profile": "Profile"
}, },
"keyboard": { "keyboard": {
@ -142,8 +132,6 @@
"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"
@ -165,7 +153,6 @@
"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": {
@ -181,12 +168,6 @@
"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": {
@ -379,7 +360,7 @@
"published": "Published!", "published": "Published!",
"Publishing": "Publishing post...", "Publishing": "Publishing post...",
"accessibility": { "accessibility": {
"logo_label": "Mastodon", "logo_label": "Logo Button",
"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"
} }
} }
@ -463,15 +444,11 @@
"follows_you": "Follows You" "follows_you": "Follows You"
}, },
"dashboard": { "dashboard": {
"my_posts": "posts", "posts": "posts",
"my_following": "following", "following": "following",
"my_followers": "followers", "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",
@ -584,7 +561,7 @@
"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": "Favorites" "title": "Your Favorites"
}, },
"notification": { "notification": {
"title": { "title": {
@ -745,18 +722,6 @@
}, },
"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 notifications</string> <string>%ld unread notification</string>
</dict> </dict>
</dict> </dict>
<key>a11y.plural.count.input_limit_exceeds</key> <key>a11y.plural.count.input_limit_exceeds</key>
@ -60,8 +60,14 @@
<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,11 +51,6 @@
"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": {
@ -83,7 +78,6 @@
"sign_up": "Create account", "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",
@ -97,16 +91,12 @@
"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_and_explore": "Search and Explore", "search": "Search",
"notifications": "Notifications", "notification": "Notification",
"profile": "Profile" "profile": "Profile"
}, },
"keyboard": { "keyboard": {
@ -142,8 +132,6 @@
"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"
@ -165,7 +153,6 @@
"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": {
@ -181,12 +168,6 @@
"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": {
@ -379,7 +360,7 @@
"published": "Published!", "published": "Published!",
"Publishing": "Publishing post...", "Publishing": "Publishing post...",
"accessibility": { "accessibility": {
"logo_label": "Mastodon", "logo_label": "Logo Button",
"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"
} }
} }
@ -463,15 +444,11 @@
"follows_you": "Follows You" "follows_you": "Follows You"
}, },
"dashboard": { "dashboard": {
"my_posts": "posts", "posts": "posts",
"my_following": "following", "following": "following",
"my_followers": "followers", "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",
@ -584,7 +561,7 @@
"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": "Favorites" "title": "Your Favorites"
}, },
"notification": { "notification": {
"title": { "title": {
@ -745,18 +722,6 @@
}, },
"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

@ -51,11 +51,6 @@
"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": {
@ -83,7 +78,6 @@
"sign_up": "Crear cuenta", "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",
@ -97,16 +91,12 @@
"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_and_explore": "Buscar y explorar", "search": "Buscar",
"notifications": "Notificaciones", "notification": "Notificación",
"profile": "Perfil" "profile": "Perfil"
}, },
"keyboard": { "keyboard": {
@ -142,8 +132,6 @@
"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"
@ -165,7 +153,6 @@
"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": {
@ -181,12 +168,6 @@
"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": {
@ -463,15 +444,11 @@
"follows_you": "Te sigue" "follows_you": "Te sigue"
}, },
"dashboard": { "dashboard": {
"my_posts": "mensajes", "posts": "mensajes",
"my_following": "siguiendo", "following": "siguiendo",
"my_followers": "seguidores", "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",
@ -745,18 +722,6 @@
}, },
"bookmark": { "bookmark": {
"title": "Marcadores" "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

@ -53,7 +53,7 @@
<key>a11y.plural.count.characters_left</key> <key>a11y.plural.count.characters_left</key>
<dict> <dict>
<key>NSStringLocalizedFormatKey</key> <key>NSStringLocalizedFormatKey</key>
<string>Quedan %#@character_count@</string> <string>%#@character_count@ left</string>
<key>character_count</key> <key>character_count</key>
<dict> <dict>
<key>NSStringFormatSpecTypeKey</key> <key>NSStringFormatSpecTypeKey</key>
@ -61,9 +61,9 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>1 carácter</string> <string>1 character</string>
<key>other</key> <key>other</key>
<string>%ld caracteres</string> <string>%ld characters</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.followed_by_and_mutual</key> <key>plural.count.followed_by_and_mutual</key>

View File

@ -51,11 +51,6 @@
"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": {
@ -79,11 +74,10 @@
"take_photo": "Tomar foto", "take_photo": "Tomar foto",
"save_photo": "Guardar foto", "save_photo": "Guardar foto",
"copy_photo": "Copiar foto", "copy_photo": "Copiar foto",
"sign_in": "Iniciar sesión", "sign_in": "Log in",
"sign_up": "Crear cuenta", "sign_up": "Create account",
"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",
@ -97,16 +91,12 @@
"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_and_explore": "Buscar y explorar", "search": "Buscar",
"notifications": "Notificaciones", "notification": "Notificación",
"profile": "Perfil" "profile": "Perfil"
}, },
"keyboard": { "keyboard": {
@ -142,17 +132,15 @@
"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": "Enlace: %s", "url": "Link: %s",
"hashtag": "Etiqueta: %s", "hashtag": "Hashtag: %s",
"mention": "Mostrar Perfil: %s", "mention": "Show Profile: %s",
"email": "Dirección de correo electrónico: %s" "email": "Email address: %s"
}, },
"actions": { "actions": {
"reply": "Responder", "reply": "Responder",
@ -165,7 +153,6 @@
"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": {
@ -181,12 +168,6 @@
"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": {
@ -206,8 +187,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": "Mostrar reblogs", "show_reblogs": "Show Reblogs",
"hide_reblogs": "Ocultar reblogs" "hide_reblogs": "Hide Reblogs"
}, },
"timeline": { "timeline": {
"filtered": "Filtrado", "filtered": "Filtrado",
@ -238,15 +219,15 @@
"log_in": "Iniciar sesión" "log_in": "Iniciar sesión"
}, },
"login": { "login": {
"title": "Bienvenido de nuevo", "title": "Welcome back",
"subtitle": "Inicie sesión en el servidor en el que creó su cuenta.", "subtitle": "Log you in on the server you created your account on.",
"server_search_field": { "server_search_field": {
"placeholder": "Introduzca la URL o busque su servidor" "placeholder": "Enter URL or search for your server"
} }
}, },
"server_picker": { "server_picker": {
"title": "Elige un servidor,\ncualquier servidor.", "title": "Elige un servidor,\ncualquier servidor.",
"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": "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": { "button": {
"category": { "category": {
"all": "Todas", "all": "Todas",
@ -273,7 +254,7 @@
"category": "CATEGORÍA" "category": "CATEGORÍA"
}, },
"input": { "input": {
"search_servers_or_enter_url": "Buscar comunidades o introducir URL" "search_servers_or_enter_url": "Search communities or enter URL"
}, },
"empty_state": { "empty_state": {
"finding_servers": "Encontrando servidores disponibles...", "finding_servers": "Encontrando servidores disponibles...",
@ -407,12 +388,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": "Carga fallida", "load_failed": "Load Failed",
"upload_failed": "Error al cargar", "upload_failed": "Upload Failed",
"can_not_recognize_this_media_attachment": "No se puede reconocer este archivo adjunto", "can_not_recognize_this_media_attachment": "Can not recognize this media attachment",
"attachment_too_large": "Adjunto demasiado grande", "attachment_too_large": "Attachment too large",
"compressing_state": "Comprimiendo...", "compressing_state": "Compressing...",
"server_processing_state": "Procesando en el servidor..." "server_processing_state": "Server Processing..."
}, },
"poll": { "poll": {
"duration_time": "Duración: %s", "duration_time": "Duración: %s",
@ -423,8 +404,8 @@
"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_is_invalid": "The poll is invalid",
"the_poll_has_empty_option": "La encuesta tiene una opción vacía" "the_poll_has_empty_option": "The poll has empty option"
}, },
"content_warning": { "content_warning": {
"placeholder": "Escribe una advertencia precisa aquí..." "placeholder": "Escribe una advertencia precisa aquí..."
@ -446,8 +427,8 @@
"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", "post_options": "Post Options",
"posting_as": "Publicado como %s" "posting_as": "Posting as %s"
}, },
"keyboard": { "keyboard": {
"discard_post": "Descartar Publicación", "discard_post": "Descartar Publicación",
@ -463,23 +444,19 @@
"follows_you": "Te sigue" "follows_you": "Te sigue"
}, },
"dashboard": { "dashboard": {
"my_posts": "posts", "posts": "publicaciones",
"my_following": "following", "following": "siguiendo",
"my_followers": "followers", "followers": "seguidores"
"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": { "verified": {
"short": "Verificado en %s", "short": "Verified on %s",
"long": "La propiedad de este enlace fue verificada el %s" "long": "Ownership of this link was checked on %s"
} }
}, },
"segmented_control": { "segmented_control": {
@ -507,12 +484,12 @@
"message": "Confirmar para desbloquear a %s" "message": "Confirmar para desbloquear a %s"
}, },
"confirm_show_reblogs": { "confirm_show_reblogs": {
"title": "Mostrar reblogs", "title": "Show Reblogs",
"message": "Confirmar para mostrar reblogs" "message": "Confirm to show reblogs"
}, },
"confirm_hide_reblogs": { "confirm_hide_reblogs": {
"title": "Ocultar reblogs", "title": "Hide Reblogs",
"message": "Confirmar para ocultar reblogs" "message": "Confirm to hide reblogs"
} }
}, },
"accessibility": { "accessibility": {
@ -744,19 +721,7 @@
"accessibility_hint": "Haz doble toque para descartar este asistente" "accessibility_hint": "Haz doble toque para descartar este asistente"
}, },
"bookmark": { "bookmark": {
"title": "Marcadores" "title": "Bookmarks"
},
"followed_tags": {
"title": "Etiquetas seguidas",
"header": {
"posts": "publicaciones",
"participants": "participantes",
"posts_today": "publicaciones de hoy"
},
"actions": {
"follow": "Seguir",
"unfollow": "Dejar de seguir"
}
} }
} }
} }

View File

@ -63,13 +63,13 @@
<key>one</key> <key>one</key>
<string>1 character</string> <string>1 character</string>
<key>other</key> <key>other</key>
<string>%ld karaktere</string> <string>%ld characters</string>
</dict> </dict>
</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,11 +51,6 @@
"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": {
@ -79,11 +74,10 @@
"take_photo": "Atera argazkia", "take_photo": "Atera argazkia",
"save_photo": "Gorde argazkia", "save_photo": "Gorde argazkia",
"copy_photo": "Kopiatu argazkia", "copy_photo": "Kopiatu argazkia",
"sign_in": "Hasi saioa", "sign_in": "Log in",
"sign_up": "Sortu kontua", "sign_up": "Create account",
"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",
@ -97,16 +91,12 @@
"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_and_explore": "Search and Explore", "search": "Bilatu",
"notifications": "Notifications", "notification": "Jakinarazpena",
"profile": "Profila" "profile": "Profila"
}, },
"keyboard": { "keyboard": {
@ -139,20 +129,18 @@
"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": "Eduki hunkigarria", "sensitive_content": "Sensitive Content",
"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": "Lotura: %s", "url": "Link: %s",
"hashtag": "Traolak: %s", "hashtag": "Hashtag: %s",
"mention": "Erakutsi Profila: %s", "mention": "Show Profile: %s",
"email": "E-posta helbidea: %s" "email": "Email address: %s"
}, },
"actions": { "actions": {
"reply": "Erantzun", "reply": "Erantzun",
@ -165,7 +153,6 @@
"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": {
@ -181,12 +168,6 @@
"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": {
@ -206,8 +187,8 @@
"unmute_user": "Desmututu %s", "unmute_user": "Desmututu %s",
"muted": "Mutututa", "muted": "Mutututa",
"edit_info": "Editatu informazioa", "edit_info": "Editatu informazioa",
"show_reblogs": "Ikusi bultzadak", "show_reblogs": "Show Reblogs",
"hide_reblogs": "Ezkutatu bultzadak" "hide_reblogs": "Hide Reblogs"
}, },
"timeline": { "timeline": {
"filtered": "Iragazita", "filtered": "Iragazita",
@ -238,7 +219,7 @@
"log_in": "Hasi saioa" "log_in": "Hasi saioa"
}, },
"login": { "login": {
"title": "Ongi etorri berriro ere", "title": "Welcome back",
"subtitle": "Log you in on the server you created your account on.", "subtitle": "Log you in on the server you created your account on.",
"server_search_field": { "server_search_field": {
"placeholder": "Enter URL or search for your server" "placeholder": "Enter URL or search for your server"
@ -283,7 +264,7 @@
}, },
"register": { "register": {
"title": "Hitz egin iezaguzu zuri buruz.", "title": "Hitz egin iezaguzu zuri buruz.",
"lets_get_you_set_up_on_domain": "%s zerbitzariko kontua prestatuko dizugu", "lets_get_you_set_up_on_domain": "Lets get you set up on %s",
"input": { "input": {
"avatar": { "avatar": {
"delete": "Ezabatu" "delete": "Ezabatu"
@ -354,7 +335,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": "Sakatu epostaz bidali dizugun loturan zure kontua egiaztatzeko", "tap_the_link_we_emailed_to_you_to_verify_your_account": "Tap the link we emailed to you to verify your account",
"button": { "button": {
"open_email_app": "Ireki eposta aplikazioa", "open_email_app": "Ireki eposta aplikazioa",
"resend": "Berbidali" "resend": "Berbidali"
@ -379,7 +360,7 @@
"published": "Argitaratua!", "published": "Argitaratua!",
"Publishing": "Bidalketa argitaratzen...", "Publishing": "Bidalketa argitaratzen...",
"accessibility": { "accessibility": {
"logo_label": "Logo botoia", "logo_label": "Logo Button",
"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"
} }
} }
@ -408,10 +389,10 @@
"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": "Kargatzeak huts egin du", "upload_failed": "Upload Failed",
"can_not_recognize_this_media_attachment": "Can not recognize this media attachment", "can_not_recognize_this_media_attachment": "Can not recognize this media attachment",
"attachment_too_large": "Eranskina handiegia da", "attachment_too_large": "Attachment too large",
"compressing_state": "Konprimatzen...", "compressing_state": "Compressing...",
"server_processing_state": "Server Processing..." "server_processing_state": "Server Processing..."
}, },
"poll": { "poll": {
@ -423,7 +404,7 @@
"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_is_invalid": "The poll is invalid",
"the_poll_has_empty_option": "The poll has empty option" "the_poll_has_empty_option": "The poll has empty option"
}, },
"content_warning": { "content_warning": {
@ -446,7 +427,7 @@
"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", "post_options": "Post Options",
"posting_as": "Posting as %s" "posting_as": "Posting as %s"
}, },
"keyboard": { "keyboard": {
@ -460,18 +441,14 @@
}, },
"profile": { "profile": {
"header": { "header": {
"follows_you": "Jarraitzen zaitu" "follows_you": "Follows You"
}, },
"dashboard": { "dashboard": {
"my_posts": "posts", "posts": "bidalketa",
"my_following": "following", "following": "jarraitzen",
"my_followers": "followers", "followers": "jarraitzaile"
"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",
@ -479,7 +456,7 @@
}, },
"verified": { "verified": {
"short": "Verified on %s", "short": "Verified on %s",
"long": "Esteka honen jabetzaren egiaztaketa data: %s" "long": "Ownership of this link was checked on %s"
} }
}, },
"segmented_control": { "segmented_control": {
@ -507,12 +484,12 @@
"message": "Berretsi %s desblokeatzea" "message": "Berretsi %s desblokeatzea"
}, },
"confirm_show_reblogs": { "confirm_show_reblogs": {
"title": "Ikusi bultzadak", "title": "Show Reblogs",
"message": "Berretsi birbidalketak ikustea" "message": "Confirm to show reblogs"
}, },
"confirm_hide_reblogs": { "confirm_hide_reblogs": {
"title": "Ezkutatu bultzadak", "title": "Hide Reblogs",
"message": "Berretsi birbidalketak ezkutatzea" "message": "Confirm to hide reblogs"
} }
}, },
"accessibility": { "accessibility": {
@ -523,11 +500,11 @@
} }
}, },
"follower": { "follower": {
"title": "jarraitzaile", "title": "follower",
"footer": "Beste zerbitzarietako jarraitzaileak ez dira bistaratzen." "footer": "Beste zerbitzarietako jarraitzaileak ez dira bistaratzen."
}, },
"following": { "following": {
"title": "jarraitzen", "title": "following",
"footer": "Beste zerbitzarietan jarraitutakoak ez dira bistaratzen." "footer": "Beste zerbitzarietan jarraitutakoak ez dira bistaratzen."
}, },
"familiarFollowers": { "familiarFollowers": {
@ -578,10 +555,10 @@
"posts": "Argitalpenak", "posts": "Argitalpenak",
"hashtags": "Traolak", "hashtags": "Traolak",
"news": "Albisteak", "news": "Albisteak",
"community": "Komunitatea", "community": "Community",
"for_you": "Zuretzat" "for_you": "Zuretzat"
}, },
"intro": "Hauek dira zure Mastodon txokoan beraien lekua hartzen ari diren argitalpenak." "intro": "These are the posts gaining traction in your corner of Mastodon."
}, },
"favorite": { "favorite": {
"title": "Zure gogokoak" "title": "Zure gogokoak"
@ -604,10 +581,10 @@
"show_mentions": "Erakutsi aipamenak" "show_mentions": "Erakutsi aipamenak"
}, },
"follow_request": { "follow_request": {
"accept": "Onartu", "accept": "Accept",
"accepted": "Onartuta", "accepted": "Accepted",
"reject": "ukatu", "reject": "reject",
"rejected": "Ukatua" "rejected": "Rejected"
} }
}, },
"thread": { "thread": {
@ -684,46 +661,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": "1. urratsa 4tik", "step_1_of_4": "Step 1 of 4",
"whats_wrong_with_this_post": "Zer du txarra argitalpen honek?", "whats_wrong_with_this_post": "What's wrong with this post?",
"whats_wrong_with_this_account": "Zer du txarra kontu honek?", "whats_wrong_with_this_account": "What's wrong with this account?",
"whats_wrong_with_this_username": "Zer du txarra %s?", "whats_wrong_with_this_username": "What's wrong with %s?",
"select_the_best_match": "Aukeratu egokiena", "select_the_best_match": "Select the best match",
"i_dont_like_it": "Ez dut gustukoa", "i_dont_like_it": "I dont like it",
"it_is_not_something_you_want_to_see": "Ikusi nahi ez dudan zerbait da", "it_is_not_something_you_want_to_see": "It is not something you want to see",
"its_spam": "Spama da", "its_spam": "Its spam",
"malicious_links_fake_engagement_or_repetetive_replies": "Esteka maltzurrak, gezurrezko elkarrekintzak edo erantzun errepikakorrak", "malicious_links_fake_engagement_or_repetetive_replies": "Malicious links, fake engagement, or repetetive replies",
"it_violates_server_rules": "Zerbitzariaren arauak hausten ditu", "it_violates_server_rules": "It violates server rules",
"you_are_aware_that_it_breaks_specific_rules": "Arau zehatzak urratzen dituela badakizu", "you_are_aware_that_it_breaks_specific_rules": "You are aware that it breaks specific rules",
"its_something_else": "Beste zerbait da", "its_something_else": "Its something else",
"the_issue_does_not_fit_into_other_categories": "Arazoa ezin da beste kategorietan sailkatu" "the_issue_does_not_fit_into_other_categories": "The issue does not fit into other categories"
}, },
"step_two": { "step_two": {
"step_2_of_4": "2. urratsa 4tik", "step_2_of_4": "Step 2 of 4",
"which_rules_are_being_violated": "Ze arau hautsi ditu?", "which_rules_are_being_violated": "Which rules are being violated?",
"select_all_that_apply": "Hautatu dagozkion guztiak", "select_all_that_apply": "Select all that apply",
"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": "3. urratsa 4tik", "step_3_of_4": "Step 3 of 4",
"are_there_any_posts_that_back_up_this_report": "Salaketa hau babesten duen bidalketarik badago?", "are_there_any_posts_that_back_up_this_report": "Are there any posts that back up this report?",
"select_all_that_apply": "Hautatu dagozkion guztiak" "select_all_that_apply": "Select all that apply"
}, },
"step_four": { "step_four": {
"step_4_of_4": "4. urratsa 4tik", "step_4_of_4": "Step 4 of 4",
"is_there_anything_else_we_should_know": "Beste zerbait jakin beharko genuke?" "is_there_anything_else_we_should_know": "Is there anything else we should know?"
}, },
"step_final": { "step_final": {
"dont_want_to_see_this": "Ez duzu hau ikusi nahi?", "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.": "Mastodonen gustuko ez duzun zerbait ikusten duzunean, zure esperientziatik atera dezakezu pertsona hori.", "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": "Utzi jarraitzeari", "unfollow": "Unfollow",
"unfollowed": "Unfollowed", "unfollowed": "Unfollowed",
"unfollow_user": "%s jarraitzeari utzi", "unfollow_user": "Unfollow %s",
"mute_user": "Mututu %s", "mute_user": "Mute %s",
"you_wont_see_their_posts_or_reblogs_in_your_home_feed_they_wont_know_they_ve_been_muted": "Ez dituzu bere bidalketa eta birbidalketak zure hasierako jarioan ikusiko. Ez dute jakingo isilarazi dituztenik.", "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": "Blokeatu %s", "block_user": "Block %s",
"they_will_no_longer_be_able_to_follow_or_see_your_posts_but_they_can_see_if_theyve_been_blocked": "Ezin izango dituzte zure bidalketak jarraitu edo ikusi, baina blokeatuta dauden ikusi ahal izango dute.", "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": "Hau berrikusten dugun bitartean, %s erabiltzailearen aurkako neurriak hartu ditzakezu" "while_we_review_this_you_can_take_action_against_user": "While we review this, you can take action against %s"
} }
}, },
"preview": { "preview": {
@ -744,19 +721,7 @@
"accessibility_hint": "Ukitu birritan morroi hau baztertzeko" "accessibility_hint": "Ukitu birritan morroi hau baztertzeko"
}, },
"bookmark": { "bookmark": {
"title": "Laster-markak" "title": "Bookmarks"
},
"followed_tags": {
"title": "Followed Tags",
"header": {
"posts": "posts",
"participants": "participants",
"posts_today": "posts today"
},
"actions": {
"follow": "Follow",
"unfollow": "Unfollow"
}
} }
} }
} }

View File

@ -51,11 +51,6 @@
"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": {
@ -83,7 +78,6 @@
"sign_up": "Create account", "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",
@ -97,16 +91,12 @@
"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_and_explore": "Search and Explore", "search": "Haku",
"notifications": "Notifications", "notification": "Ilmoitus",
"profile": "Profiili" "profile": "Profiili"
}, },
"keyboard": { "keyboard": {
@ -142,8 +132,6 @@
"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"
@ -165,7 +153,6 @@
"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": {
@ -181,12 +168,6 @@
"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": {
@ -463,15 +444,11 @@
"follows_you": "Follows You" "follows_you": "Follows You"
}, },
"dashboard": { "dashboard": {
"my_posts": "julkaisut", "posts": "julkaisut",
"my_following": "seurattavat", "following": "seurataan",
"my_followers": "seuraajat", "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",
@ -745,18 +722,6 @@
}, },
"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

@ -51,11 +51,6 @@
"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": {
@ -83,7 +78,6 @@
"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",
@ -97,16 +91,12 @@
"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_and_explore": "Rechercher et explorer", "search": "Rechercher",
"notifications": "Notifications", "notification": "Notification",
"profile": "Profil" "profile": "Profil"
}, },
"keyboard": { "keyboard": {
@ -142,8 +132,6 @@
"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é"
@ -165,7 +153,6 @@
"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": {
@ -181,12 +168,6 @@
"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": {
@ -463,15 +444,11 @@
"follows_you": "Vous suit" "follows_you": "Vous suit"
}, },
"dashboard": { "dashboard": {
"my_posts": "messages", "posts": "publications",
"my_following": "abonnement", "following": "abonnements",
"my_followers": "abonnés", "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",
@ -745,18 +722,6 @@
}, },
"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

@ -51,11 +51,6 @@
"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": {
@ -83,7 +78,6 @@
"sign_up": "Cruthaich cunntas", "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",
@ -97,16 +91,12 @@
"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_and_explore": "Search and Explore", "search": "Lorg",
"notifications": "Notifications", "notification": "Brath",
"profile": "Pròifil" "profile": "Pròifil"
}, },
"keyboard": { "keyboard": {
@ -142,8 +132,6 @@
"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"
@ -165,7 +153,6 @@
"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": {
@ -181,12 +168,6 @@
"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": {
@ -463,15 +444,11 @@
"follows_you": "Gad leantainn" "follows_you": "Gad leantainn"
}, },
"dashboard": { "dashboard": {
"my_posts": "posts", "posts": "postaichean",
"my_following": "following", "following": "a leantainn",
"my_followers": "followers", "followers": "luchd-leantainn"
"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",
@ -745,18 +722,6 @@
}, },
"bookmark": { "bookmark": {
"title": "Comharran-lìn" "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

@ -51,11 +51,6 @@
"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": {
@ -83,7 +78,6 @@
"sign_up": "Crear conta", "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",
@ -97,16 +91,12 @@
"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_and_explore": "Buscar e Explorar", "search": "Busca",
"notifications": "Notificacións", "notification": "Notificación",
"profile": "Perfil" "profile": "Perfil"
}, },
"keyboard": { "keyboard": {
@ -142,8 +132,6 @@
"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"
@ -165,7 +153,6 @@
"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": {
@ -181,12 +168,6 @@
"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": {
@ -463,15 +444,11 @@
"follows_you": "Séguete" "follows_you": "Séguete"
}, },
"dashboard": { "dashboard": {
"my_posts": "publicacións", "posts": "publicacións",
"my_following": "seguindo", "following": "seguindo",
"my_followers": "seguidoras", "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",
@ -745,18 +722,6 @@
}, },
"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

@ -1,581 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>a11y.plural.count.unread.notification</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@notification_count_unread_notification@</string>
<key>notification_count_unread_notification</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>התראה אחת שלא נקראה</string>
<key>two</key>
<string>שתי התראות שלא נקראו</string>
<key>many</key>
<string>%ld unread notifications</string>
<key>other</key>
<string>%ld התראות שלא נקראו</string>
</dict>
</dict>
<key>a11y.plural.count.input_limit_exceeds</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>Input limit exceeds %#@character_count@</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 character</string>
<key>two</key>
<string>%ld characters</string>
<key>many</key>
<string>%ld characters</string>
<key>other</key>
<string>%ld characters</string>
</dict>
</dict>
<key>a11y.plural.count.input_limit_remains</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>Input limit remains %#@character_count@</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 character</string>
<key>two</key>
<string>%ld characters</string>
<key>many</key>
<string>%ld characters</string>
<key>other</key>
<string>%ld characters</string>
</dict>
</dict>
<key>a11y.plural.count.characters_left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@character_count@ 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

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

@ -1,6 +0,0 @@
{
"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 notifications</string> <string>%ld unread notification</string>
</dict> </dict>
</dict> </dict>
<key>a11y.plural.count.input_limit_exceeds</key> <key>a11y.plural.count.input_limit_exceeds</key>

View File

@ -51,11 +51,6 @@
"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": {
@ -83,7 +78,6 @@
"sign_up": "Create account", "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",
@ -97,16 +91,12 @@
"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_and_explore": "Search and Explore", "search": "Search",
"notifications": "Notifications", "notification": "Notification",
"profile": "Profile" "profile": "Profile"
}, },
"keyboard": { "keyboard": {
@ -142,8 +132,6 @@
"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"
@ -165,7 +153,6 @@
"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": {
@ -181,12 +168,6 @@
"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": {
@ -463,15 +444,11 @@
"follows_you": "Follows You" "follows_you": "Follows You"
}, },
"dashboard": { "dashboard": {
"my_posts": "posts", "posts": "posts",
"my_following": "following", "following": "following",
"my_followers": "followers", "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",
@ -584,7 +561,7 @@
"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": "Favorites" "title": "Your Favorites"
}, },
"notification": { "notification": {
"title": { "title": {
@ -745,18 +722,6 @@
}, },
"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 notifikasi belum dibaca</string> <string>%ld unread notification</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>Batas input melebihi %#@character_count@</string> <string>Input limit exceeds %#@character_count@</string>
<key>character_count</key> <key>character_count</key>
<dict> <dict>
<key>NSStringFormatSpecTypeKey</key> <key>NSStringFormatSpecTypeKey</key>
@ -33,7 +33,7 @@
<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>Batas input masih tersisa %#@character_count@</string> <string>Input limit remains %#@character_count@</string>
<key>character_count</key> <key>character_count</key>
<dict> <dict>
<key>NSStringFormatSpecTypeKey</key> <key>NSStringFormatSpecTypeKey</key>
@ -47,7 +47,7 @@
<key>a11y.plural.count.characters_left</key> <key>a11y.plural.count.characters_left</key>
<dict> <dict>
<key>NSStringLocalizedFormatKey</key> <key>NSStringLocalizedFormatKey</key>
<string>tersisa %#@character_count@</string> <string>%#@character_count@ left</string>
<key>character_count</key> <key>character_count</key>
<dict> <dict>
<key>NSStringFormatSpecTypeKey</key> <key>NSStringFormatSpecTypeKey</key>
@ -55,7 +55,7 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>other</key> <key>other</key>
<string>%ld karakter</string> <string>%ld characters</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.followed_by_and_mutual</key> <key>plural.count.followed_by_and_mutual</key>
@ -78,7 +78,7 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>other</key> <key>other</key>
<string>Diikuti oleh %1$@, dan %ld mutual</string> <string>Followed by %1$@, and %ld mutuals</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.metric_formatted.post</key> <key>plural.count.metric_formatted.post</key>
@ -148,7 +148,7 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>other</key> <key>other</key>
<string>Posting ulang %ld</string> <string>%ld reblogs</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.reply</key> <key>plural.count.reply</key>
@ -162,7 +162,7 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>other</key> <key>other</key>
<string>%ld balasan</string> <string>%ld replies</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.vote</key> <key>plural.count.vote</key>
@ -204,7 +204,7 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>other</key> <key>other</key>
<string>%ld obrolan</string> <string>%ld people talking</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.following</key> <key>plural.count.following</key>
@ -218,7 +218,7 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>other</key> <key>other</key>
<string>%ld mengikuti</string> <string>%ld following</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.follower</key> <key>plural.count.follower</key>

View File

@ -51,11 +51,6 @@
"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": {
@ -83,7 +78,6 @@
"sign_up": "Buat akun", "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",
@ -97,16 +91,12 @@
"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_and_explore": "Search and Explore", "search": "Cari",
"notifications": "Notifikasi", "notification": "Notifikasi",
"profile": "Profil" "profile": "Profil"
}, },
"keyboard": { "keyboard": {
@ -142,8 +132,6 @@
"sensitive_content": "Konten Sensitif", "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": "Ketuk untuk mengungkap", "tap_to_reveal": "Ketuk untuk mengungkap",
"load_embed": "Load Embed",
"link_via_user": "%s via %s",
"poll": { "poll": {
"vote": "Pilih", "vote": "Pilih",
"closed": "Ditutup" "closed": "Ditutup"
@ -165,7 +153,6 @@
"show_image": "Tampilkan gambar", "show_image": "Tampilkan gambar",
"show_gif": "Tampilkan GIF", "show_gif": "Tampilkan GIF",
"show_video_player": "Tampilkan pemutar video", "show_video_player": "Tampilkan pemutar video",
"share_link_in_post": "Share Link in Post",
"tap_then_hold_to_show_menu": "Ketuk lalu tahan untuk menampilkan menu" "tap_then_hold_to_show_menu": "Ketuk lalu tahan untuk menampilkan menu"
}, },
"tag": { "tag": {
@ -177,16 +164,10 @@
"emoji": "Emoji" "emoji": "Emoji"
}, },
"visibility": { "visibility": {
"unlisted": "Postingan ini dapat dilihat semua orang tetapi tidak ditampilkan di timeline publik.", "unlisted": "Everyone can see this post but not display in the public timeline.",
"private": "Hanya pengikut mereka yang dapat melihat postingan ini.", "private": "Hanya pengikut mereka yang dapat melihat postingan ini.",
"private_from_me": "Hanya pengikut saya yang dapat melihat postingan ini.", "private_from_me": "Hanya pengikut saya yang dapat melihat postingan ini.",
"direct": "Hanya pengguna yang disebut yang dapat melihat postingan ini." "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": {
@ -325,13 +306,13 @@
"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 adalah kata kunci yang dipesan", "reserved": "%s is a reserved keyword",
"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 bukan nilai yang didukung" "inclusion": "%s is not a supported value"
}, },
"special": { "special": {
"username_invalid": "Nama pengguna hanya berisi angka karakter dan garis bawah", "username_invalid": "Nama pengguna hanya berisi angka karakter dan garis bawah",
@ -344,7 +325,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": "Dengan melanjutkan, Anda tunduk pada ketentuan layanan dan kebijakan privasi untuk %s.", "prompt": "By continuing, youre subject to the terms of service and privacy policy for %s.",
"terms_of_service": "kebijakan layanan", "terms_of_service": "kebijakan layanan",
"privacy_policy": "kebijakan privasi", "privacy_policy": "kebijakan privasi",
"button": { "button": {
@ -354,10 +335,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": "Ketuk tautan yang kami kirimkan kepada Anda via email untuk memverifikasi akun Anda", "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": "Buka Aplikasi Surel", "open_email_app": "Buka Aplikasi Surel",
"resend": "Kirim ulang" "resend": "Resend"
}, },
"dont_receive_email": { "dont_receive_email": {
"title": "Periksa surel Anda", "title": "Periksa surel Anda",
@ -367,8 +348,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": "Pesan", "mail": "Mail",
"open_email_client": "Buka Email Klien" "open_email_client": "Open Email Client"
} }
}, },
"home_timeline": { "home_timeline": {
@ -379,13 +360,13 @@
"published": "Dipublikasikan!", "published": "Dipublikasikan!",
"Publishing": "Mempublikasikan postingan...", "Publishing": "Mempublikasikan postingan...",
"accessibility": { "accessibility": {
"logo_label": "Tombol Logo", "logo_label": "Logo Button",
"logo_hint": "Ketuk untuk menggulir ke atas dan ketuk lagi ke lokasi sebelumnya" "logo_hint": "Tap to scroll to top and tap again to previous location"
} }
} }
}, },
"suggestion_account": { "suggestion_account": {
"title": "Temukan Orang untuk Diikuti", "title": "Find People to Follow",
"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": {
@ -395,7 +376,7 @@
}, },
"media_selection": { "media_selection": {
"camera": "Ambil Foto", "camera": "Ambil Foto",
"photo_library": "Galeri Foto", "photo_library": "Photo Library",
"browse": "Telusuri" "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",
@ -411,8 +392,8 @@
"upload_failed": "Gagal Mengunggah", "upload_failed": "Gagal Mengunggah",
"can_not_recognize_this_media_attachment": "Tidak dapat mengenali lampiran media ini", "can_not_recognize_this_media_attachment": "Tidak dapat mengenali lampiran media ini",
"attachment_too_large": "Lampiran terlalu besar", "attachment_too_large": "Lampiran terlalu besar",
"compressing_state": "Mengompres...", "compressing_state": "Compressing...",
"server_processing_state": "Server Memproses..." "server_processing_state": "Server Processing..."
}, },
"poll": { "poll": {
"duration_time": "Durasi: %s", "duration_time": "Durasi: %s",
@ -422,9 +403,9 @@
"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": "Opsi %ld", "option_number": "Option %ld",
"the_poll_is_invalid": "Japat tidak valid", "the_poll_is_invalid": "The poll is invalid",
"the_poll_has_empty_option": "Japat memiliki opsi kosong" "the_poll_has_empty_option": "The poll has empty option"
}, },
"content_warning": { "content_warning": {
"placeholder": "Tulis peringatan yang akurat di sini..." "placeholder": "Tulis peringatan yang akurat di sini..."
@ -436,22 +417,22 @@
"direct": "Hanya orang yang saya sebut" "direct": "Hanya orang yang saya sebut"
}, },
"auto_complete": { "auto_complete": {
"space_to_add": "Tekan spasi untuk menambahkan" "space_to_add": "Space to add"
}, },
"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": "Pemilih Emoji Kustom", "custom_emoji_picker": "Custom Emoji Picker",
"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": "Menu Visibilitas Postingan", "post_visibility_menu": "Post Visibility Menu",
"post_options": "Opsi Postingan", "post_options": "Post Options",
"posting_as": "Posting sebagai %s" "posting_as": "Posting as %s"
}, },
"keyboard": { "keyboard": {
"discard_post": "Hapus Postingan", "discard_post": "Discard Post",
"publish_post": "Publikasikan Postingan", "publish_post": "Publish Post",
"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",
@ -460,51 +441,47 @@
}, },
"profile": { "profile": {
"header": { "header": {
"follows_you": "Mengikutimu" "follows_you": "Follows You"
}, },
"dashboard": { "dashboard": {
"my_posts": "posts", "posts": "postingan",
"my_following": "following", "following": "mengikuti",
"my_followers": "followers", "followers": "pengikut"
"other_posts": "posts",
"other_following": "following",
"other_followers": "followers"
}, },
"fields": { "fields": {
"joined": "Bergabung", "add_row": "Add Row",
"add_row": "Tambah Baris",
"placeholder": { "placeholder": {
"label": "Label", "label": "Label",
"content": "Isi" "content": "Isi"
}, },
"verified": { "verified": {
"short": "Verifikasi %s", "short": "Verified on %s",
"long": "Kepemilikan tautan ini dapat dicek pada %s" "long": "Ownership of this link was checked on %s"
} }
}, },
"segmented_control": { "segmented_control": {
"posts": "Postingan", "posts": "Postingan",
"replies": "Balasan", "replies": "Balasan",
"posts_and_replies": "Kirim dan Balas", "posts_and_replies": "Posts and Replies",
"media": "Media", "media": "Media",
"about": "Tentang" "about": "About"
}, },
"relationship_action_alert": { "relationship_action_alert": {
"confirm_mute_user": { "confirm_mute_user": {
"title": "Bisukan Akun", "title": "Mute Account",
"message": "Konfirmasi untuk bisukan %s" "message": "Confirm to mute %s"
}, },
"confirm_unmute_user": { "confirm_unmute_user": {
"title": "Berhenti Membisukan Akun", "title": "Berhenti Membisukan Akun",
"message": "Konfirmasi untuk membisukan %s" "message": "Confirm to unmute %s"
}, },
"confirm_block_user": { "confirm_block_user": {
"title": "Blokir Akun", "title": "Block Account",
"message": "Konfirmasi memblokir %s" "message": "Confirm to block %s"
}, },
"confirm_unblock_user": { "confirm_unblock_user": {
"title": "Buka Blokir Akun", "title": "Unblock Account",
"message": "Konfirmasi membuka blokir %s" "message": "Confirm to unblock %s"
}, },
"confirm_show_reblogs": { "confirm_show_reblogs": {
"title": "Show Reblogs", "title": "Show Reblogs",
@ -516,23 +493,23 @@
} }
}, },
"accessibility": { "accessibility": {
"show_avatar_image": "Tampilkan gambar avatar", "show_avatar_image": "Show avatar image",
"edit_avatar_image": "Ubah gambar avatar", "edit_avatar_image": "Edit avatar image",
"show_banner_image": "Show banner image", "show_banner_image": "Show banner image",
"double_tap_to_open_the_list": "Ketuk ganda untuk membuka daftar" "double_tap_to_open_the_list": "Double tap to open the list"
} }
}, },
"follower": { "follower": {
"title": "pengikut", "title": "follower",
"footer": "Followers from other servers are not displayed." "footer": "Followers from other servers are not displayed."
}, },
"following": { "following": {
"title": "mengikuti", "title": "following",
"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": "Diikuti oleh %s" "followed_by_names": "Followed by %s"
}, },
"favorited_by": { "favorited_by": {
"title": "Favorited By" "title": "Favorited By"
@ -549,9 +526,9 @@
"recommend": { "recommend": {
"button_text": "Lihat Semua", "button_text": "Lihat Semua",
"hash_tag": { "hash_tag": {
"title": "Sedang Tren di Mastodon", "title": "Trending on Mastodon",
"description": "Hashtags that are getting quite a bit of attention", "description": "Hashtags that are getting quite a bit of attention",
"people_talking": "%s orang sedang membicarakan" "people_talking": "%s people are talking"
}, },
"accounts": { "accounts": {
"title": "Akun-akun yang mungkin Anda sukai", "title": "Akun-akun yang mungkin Anda sukai",
@ -569,22 +546,22 @@
"empty_state": { "empty_state": {
"no_results": "Tidak ada hasil" "no_results": "Tidak ada hasil"
}, },
"recent_search": "Pencarian terbaru", "recent_search": "Recent searches",
"clear": "Hapus" "clear": "Hapus"
} }
}, },
"discovery": { "discovery": {
"tabs": { "tabs": {
"posts": "Posts", "posts": "Posts",
"hashtags": "Tagar", "hashtags": "Hashtags",
"news": "Berita", "news": "News",
"community": "Komunitas", "community": "Community",
"for_you": "Untuk Anda" "for_you": "For You"
}, },
"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": "Favorit Anda" "title": "Your Favorites"
}, },
"notification": { "notification": {
"title": { "title": {
@ -592,11 +569,11 @@
"Mentions": "Sebutan" "Mentions": "Sebutan"
}, },
"notification_description": { "notification_description": {
"followed_you": "mengikutimu", "followed_you": "followed you",
"favorited_your_post": "menyukai postinganmu", "favorited_your_post": "favorited your post",
"reblogged_your_post": "reblogged your post", "reblogged_your_post": "reblogged your post",
"mentioned_you": "menyebutmu", "mentioned_you": "mentioned you",
"request_to_follow_you": "meminta mengikutimu", "request_to_follow_you": "request to follow you",
"poll_has_ended": "poll has ended" "poll_has_ended": "poll has ended"
}, },
"keyobard": { "keyobard": {
@ -604,10 +581,10 @@
"show_mentions": "Tampilkan Sebutan" "show_mentions": "Tampilkan Sebutan"
}, },
"follow_request": { "follow_request": {
"accept": "Menerima", "accept": "Accept",
"accepted": "Diterima", "accepted": "Accepted",
"reject": "menolak", "reject": "reject",
"rejected": "Ditolak" "rejected": "Rejected"
} }
}, },
"thread": { "thread": {
@ -624,11 +601,11 @@
"dark": "Selalu Gelap" "dark": "Selalu Gelap"
}, },
"look_and_feel": { "look_and_feel": {
"title": "Lihat dan Rasakan", "title": "Look and Feel",
"use_system": "Use System", "use_system": "Use System",
"really_dark": "Sangat Gelap", "really_dark": "Really Dark",
"sorta_dark": "Agak Gelap", "sorta_dark": "Sorta Dark",
"light": "Terang" "light": "Light"
}, },
"notifications": { "notifications": {
"title": "Notifikasi", "title": "Notifikasi",
@ -640,17 +617,17 @@
"anyone": "siapapun", "anyone": "siapapun",
"follower": "seorang pengikut", "follower": "seorang pengikut",
"follow": "siapapun yang saya ikuti", "follow": "siapapun yang saya ikuti",
"noone": "tidak ada", "noone": "no one",
"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": "Nonaktifkan animasi avatar", "disable_avatar_animation": "Disable animated avatars",
"disable_emoji_animation": "Nonaktifkan animasi emoji", "disable_emoji_animation": "Disable animated emojis",
"using_default_browser": "Use default browser to open links", "using_default_browser": "Use default browser to open links",
"open_links_in_mastodon": "Buka tautan di Mastodon" "open_links_in_mastodon": "Open links in Mastodon"
}, },
"boring_zone": { "boring_zone": {
"title": "Zona Membosankan", "title": "Zona Membosankan",
@ -672,91 +649,79 @@
} }
}, },
"report": { "report": {
"title_report": "Laporkan", "title_report": "Report",
"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": "Terima kasih atas pelaporan Anda, kami akan memeriksa ini lebih lanjut.", "report_sent_title": "Thanks for reporting, well look into this.",
"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": "DILAPORKAN", "reported": "REPORTED",
"step_one": { "step_one": {
"step_1_of_4": "Langkah 1 dari 4", "step_1_of_4": "Step 1 of 4",
"whats_wrong_with_this_post": "Ada yang salah dengan postingan ini?", "whats_wrong_with_this_post": "What's wrong with this post?",
"whats_wrong_with_this_account": "Ada yang salah dengan akun ini?", "whats_wrong_with_this_account": "What's wrong with this account?",
"whats_wrong_with_this_username": "Ada yang salah dengan %s?", "whats_wrong_with_this_username": "What's wrong with %s?",
"select_the_best_match": "Pilih yang paling cocok", "select_the_best_match": "Select the best match",
"i_dont_like_it": "Saya tidak suka", "i_dont_like_it": "I dont like it",
"it_is_not_something_you_want_to_see": "Ini bukan sesuatu yang Anda ingin lihat", "it_is_not_something_you_want_to_see": "It is not something you want to see",
"its_spam": "Ini sampah", "its_spam": "Its spam",
"malicious_links_fake_engagement_or_repetetive_replies": "Tautan berbahaya, engagement palsu, atau balasan berulang", "malicious_links_fake_engagement_or_repetetive_replies": "Malicious links, fake engagement, or repetetive replies",
"it_violates_server_rules": "Melanggar ketentuan server", "it_violates_server_rules": "It violates server rules",
"you_are_aware_that_it_breaks_specific_rules": "Anda yakin bahwa ini melanggar ketentuan khusus", "you_are_aware_that_it_breaks_specific_rules": "You are aware that it breaks specific rules",
"its_something_else": "Alasan lainnya", "its_something_else": "Its something else",
"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": "Langkah 2 dari 4", "step_2_of_4": "Step 2 of 4",
"which_rules_are_being_violated": "Ketentuan manakah yang dilanggar?", "which_rules_are_being_violated": "Which rules are being violated?",
"select_all_that_apply": "Pilih semua yang berlaku", "select_all_that_apply": "Select all that apply",
"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": "Langkah 3 dari 4", "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?", "are_there_any_posts_that_back_up_this_report": "Are there any posts that back up this report?",
"select_all_that_apply": "Pilih semua yang berlaku" "select_all_that_apply": "Select all that apply"
}, },
"step_four": { "step_four": {
"step_4_of_4": "Langkah 4 dari 4", "step_4_of_4": "Step 4 of 4",
"is_there_anything_else_we_should_know": "Ada hal lain yang perlu kami ketahui?" "is_there_anything_else_we_should_know": "Is there anything else we should know?"
}, },
"step_final": { "step_final": {
"dont_want_to_see_this": "Tidak ingin melihat ini?", "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.": "When you see something you dont like on Mastodon, you can remove the person from your experience.",
"unfollow": "Berhenti ikuti", "unfollow": "Unfollow",
"unfollowed": "Unfollowed", "unfollowed": "Unfollowed",
"unfollow_user": "Berhenti ikuti %s", "unfollow_user": "Unfollow %s",
"mute_user": "Senyapkan %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.", "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": "Blokir %s", "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.", "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": "Tutup Pratinjau", "close_preview": "Close Preview",
"show_next": "Tampilkan Berikutnya", "show_next": "Show Next",
"show_previous": "Tampilkan Sebelumnya" "show_previous": "Show Previous"
} }
}, },
"account_list": { "account_list": {
"tab_bar_hint": "Profil yang dipilih saat ini: %s. Ketuk dua kali kemudian tahan untuk tampilkan ikon beralih akun", "tab_bar_hint": "Current selected profile: %s. Double tap then hold to show account switcher",
"dismiss_account_switcher": "Dismiss Account Switcher", "dismiss_account_switcher": "Dismiss Account Switcher",
"add_account": "Tambah Akun" "add_account": "Add Account"
}, },
"wizard": { "wizard": {
"new_in_mastodon": "Baru di Mastodon", "new_in_mastodon": "New in 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": "Tandai" "title": "Bookmarks"
},
"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": "Gunakan untuk mengambil foto untuk postingan status", "NSCameraUsageDescription": "Used to take photo for post status",
"NSPhotoLibraryAddUsageDescription": "Gunakan untuk menyimpan foto ke dalam Galeri Foto", "NSPhotoLibraryAddUsageDescription": "Used to save photo into the Photo Library",
"NewPostShortcutItemTitle": "Postingan Baru", "NewPostShortcutItemTitle": "Postingan Baru",
"SearchShortcutItemTitle": "Cari" "SearchShortcutItemTitle": "Cari"
} }

View File

@ -51,11 +51,6 @@
"clean_cache": { "clean_cache": {
"title": "Hreinsa skyndiminni", "title": "Hreinsa skyndiminni",
"message": "Tókst að hreinsa %s 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": { "controls": {
@ -83,7 +78,6 @@
"sign_up": "Stofna notandaaðgang", "sign_up": "Stofna notandaaðgang",
"see_more": "Sjá fleira", "see_more": "Sjá fleira",
"preview": "Forskoða", "preview": "Forskoða",
"copy": "Afrita",
"share": "Deila", "share": "Deila",
"share_user": "Deila %s", "share_user": "Deila %s",
"share_post": "Deila færslu", "share_post": "Deila færslu",
@ -97,16 +91,12 @@
"block_domain": "Útiloka %s", "block_domain": "Útiloka %s",
"unblock_domain": "Opna á %s", "unblock_domain": "Opna á %s",
"settings": "Stillingar", "settings": "Stillingar",
"delete": "Eyða", "delete": "Eyða"
"translate_post": {
"title": "Þýða úr %s",
"unknown_language": "Óþekkt"
}
}, },
"tabs": { "tabs": {
"home": "Heim", "home": "Heim",
"search_and_explore": "Leita og kanna", "search": "Leita",
"notifications": "Tilkynningar", "notification": "Tilkynning",
"profile": "Notandasnið" "profile": "Notandasnið"
}, },
"keyboard": { "keyboard": {
@ -142,8 +132,6 @@
"sensitive_content": "Viðkvæmt efni", "sensitive_content": "Viðkvæmt efni",
"media_content_warning": "Ýttu hvar sem er til að birta", "media_content_warning": "Ýttu hvar sem er til að birta",
"tap_to_reveal": "Ýttu til að birta", "tap_to_reveal": "Ýttu til að birta",
"load_embed": "Hlaða inn ívöfnu",
"link_via_user": "%s með %s",
"poll": { "poll": {
"vote": "Greiða atkvæði", "vote": "Greiða atkvæði",
"closed": "Lokið" "closed": "Lokið"
@ -165,7 +153,6 @@
"show_image": "Sýna mynd", "show_image": "Sýna mynd",
"show_gif": "Birta GIF-myndir", "show_gif": "Birta GIF-myndir",
"show_video_player": "Sýna myndspilara", "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" "tap_then_hold_to_show_menu": "Ýttu og haltu til að sýna valmynd"
}, },
"tag": { "tag": {
@ -181,12 +168,6 @@
"private": "Einungis fylgjendur þeirra geta séð þessa færslu.", "private": "Einungis fylgjendur þeirra geta séð þessa færslu.",
"private_from_me": "Einungis fylgjendur mínir 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." "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": { "friendship": {
@ -225,8 +206,8 @@
"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.", "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.", "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.", "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.", "suspended_warning": "Þessi notandi hefur verið settur í bið.",
"user_suspended_warning": "Notandaaðgangurinn %s hefur verið settur í frysti." "user_suspended_warning": "Notandaaðgangurinn %s hefur verið settur í bið."
} }
} }
} }
@ -463,15 +444,11 @@
"follows_you": "Fylgist með þér" "follows_you": "Fylgist með þér"
}, },
"dashboard": { "dashboard": {
"my_posts": "færslur", "posts": "færslur",
"my_following": "er fylgst með", "following": "fylgist með",
"my_followers": "fylgjendur", "followers": "fylgjendur"
"other_posts": "færslur",
"other_following": "er fylgst með",
"other_followers": "fylgjendur"
}, },
"fields": { "fields": {
"joined": "Gerðist þátttakandi",
"add_row": "Bæta við röð", "add_row": "Bæta við röð",
"placeholder": { "placeholder": {
"label": "Skýring", "label": "Skýring",
@ -745,18 +722,6 @@
}, },
"bookmark": { "bookmark": {
"title": "Bókamerki" "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

@ -51,11 +51,6 @@
"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": {
@ -83,7 +78,6 @@
"sign_up": "Crea un account", "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",
@ -97,16 +91,12 @@
"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_and_explore": "Cerca ed Esplora", "search": "Cerca",
"notifications": "Notifiche", "notification": "Notifiche",
"profile": "Profilo" "profile": "Profilo"
}, },
"keyboard": { "keyboard": {
@ -142,8 +132,6 @@
"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"
@ -165,14 +153,13 @@
"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": "Hashtag", "hashtag": "Etichetta",
"email": "Email", "email": "Email",
"emoji": "Emoji" "emoji": "Emoji"
}, },
@ -181,12 +168,6 @@
"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": {
@ -463,15 +444,11 @@
"follows_you": "Ti segue" "follows_you": "Ti segue"
}, },
"dashboard": { "dashboard": {
"my_posts": "post", "posts": "post",
"my_following": "seguendo", "following": "seguendo",
"my_followers": "seguaci", "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",
@ -745,18 +722,6 @@
}, },
"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

@ -51,11 +51,6 @@
"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": {
@ -77,13 +72,12 @@
"discard": "破棄", "discard": "破棄",
"try_again": "再実行", "try_again": "再実行",
"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": "投稿を共有",
@ -97,16 +91,12 @@
"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_and_explore": "Search and Explore", "search": "検索",
"notifications": "通知", "notification": "通知",
"profile": "プロフィール" "profile": "プロフィール"
}, },
"keyboard": { "keyboard": {
@ -142,17 +132,15 @@
"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": "リンク: %s", "url": "Link: %s",
"hashtag": "ハッシュタグ: %s", "hashtag": "Hashtag: %s",
"mention": "プロフィールを表示: %s", "mention": "Show Profile: %s",
"email": "メールアドレス: %s" "email": "Email address: %s"
}, },
"actions": { "actions": {
"reply": "返信", "reply": "返信",
@ -165,7 +153,6 @@
"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": {
@ -181,12 +168,6 @@
"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": {
@ -206,8 +187,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": "フィルター済み",
@ -239,14 +220,14 @@
}, },
"login": { "login": {
"title": "Welcome back", "title": "Welcome back",
"subtitle": "アカウントを作成したサーバーにログインします。", "subtitle": "Log you in on the server you created your account on.",
"server_search_field": { "server_search_field": {
"placeholder": "URLを入力またはサーバーを検索" "placeholder": "Enter URL or search for your server"
} }
}, },
"server_picker": { "server_picker": {
"title": "サーバーを選択", "title": "サーバーを選択",
"subtitle": "お住まいの地域、興味、目的に基づいてサーバーを選択してください。 サーバーに関係なく、Mastodonの誰とでも話せます。", "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": { "button": {
"category": { "category": {
"all": "すべて", "all": "すべて",
@ -273,7 +254,7 @@
"category": "カテゴリー" "category": "カテゴリー"
}, },
"input": { "input": {
"search_servers_or_enter_url": "コミュニティを検索またはURLを入力" "search_servers_or_enter_url": "Search communities or enter URL"
}, },
"empty_state": { "empty_state": {
"finding_servers": "利用可能なサーバーの検索...", "finding_servers": "利用可能なサーバーの検索...",
@ -354,7 +335,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": "再送信"
@ -407,10 +388,10 @@
"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 recognize 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...", "compressing_state": "Compressing...",
"server_processing_state": "Server Processing..." "server_processing_state": "Server Processing..."
}, },
@ -439,14 +420,14 @@
"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": "投稿オプション", "post_options": "Post Options",
"posting_as": "Posting as %s" "posting_as": "Posting as %s"
}, },
"keyboard": { "keyboard": {
@ -454,7 +435,7 @@
"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"
} }
}, },
@ -463,15 +444,11 @@
"follows_you": "フォローされています" "follows_you": "フォローされています"
}, },
"dashboard": { "dashboard": {
"my_posts": "posts", "posts": "投稿",
"my_following": "following", "following": "フォロー",
"my_followers": "followers", "followers": "フォロワー"
"other_posts": "posts",
"other_following": "following",
"other_followers": "followers"
}, },
"fields": { "fields": {
"joined": "Joined",
"add_row": "行追加", "add_row": "行追加",
"placeholder": { "placeholder": {
"label": "ラベル", "label": "ラベル",
@ -507,12 +484,12 @@
"message": "%sのブロックを解除しますか" "message": "%sのブロックを解除しますか"
}, },
"confirm_show_reblogs": { "confirm_show_reblogs": {
"title": "ブーストを表示", "title": "Show Reblogs",
"message": "ブーストを表示しますか?" "message": "Confirm to show reblogs"
}, },
"confirm_hide_reblogs": { "confirm_hide_reblogs": {
"title": "ブーストを非表示", "title": "Hide Reblogs",
"message": "ブーストを非表示にしますか?" "message": "Confirm to hide reblogs"
} }
}, },
"accessibility": { "accessibility": {
@ -535,10 +512,10 @@
"followed_by_names": "Followed by %s" "followed_by_names": "Followed by %s"
}, },
"favorited_by": { "favorited_by": {
"title": "お気に入り" "title": "Favorited By"
}, },
"reblogged_by": { "reblogged_by": {
"title": "ブースト" "title": "Reblogged By"
}, },
"search": { "search": {
"title": "検索", "title": "検索",
@ -701,28 +678,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.": "Mastodonで気に入らないものを見た場合、その人をあなたの体験から取り除くことができます。", "when_you_see_something_you_dont_like_on_mastodon_you_can_remove_the_person_from_your_experience.": "When you see something you dont like on Mastodon, you can remove the person from your experience.",
"unfollow": "フォロー解除", "unfollow": "フォロー解除",
"unfollowed": "フォロー解除しました", "unfollowed": "フォロー解除しました",
"unfollow_user": "%sをフォロー解除", "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_they_ve_been_muted": "You wont see their posts or reblogs in your home feed. They wont know theyve 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さんに対して対応することができます。"
} }
}, },
@ -744,19 +721,7 @@
"accessibility_hint": "チュートリアルを閉じるには、ダブルタップしてください" "accessibility_hint": "チュートリアルを閉じるには、ダブルタップしてください"
}, },
"bookmark": { "bookmark": {
"title": "ブックマーク" "title": "Bookmarks"
},
"followed_tags": {
"title": "Followed Tags",
"header": {
"posts": "posts",
"participants": "participants",
"posts_today": "posts today"
},
"actions": {
"follow": "Follow",
"unfollow": "Unfollow"
}
} }
} }
} }

View File

@ -51,11 +51,6 @@
"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": {
@ -83,7 +78,6 @@
"sign_up": "Snulfu-d 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",
@ -97,16 +91,12 @@
"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_and_explore": "Search and Explore", "search": "Nadi",
"notifications": "Notifications", "notification": "Tilɣa",
"profile": "Amaɣnu" "profile": "Amaɣnu"
}, },
"keyboard": { "keyboard": {
@ -142,8 +132,6 @@
"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"
@ -165,7 +153,6 @@
"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": {
@ -181,12 +168,6 @@
"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": {
@ -463,15 +444,11 @@
"follows_you": "Yeṭṭafaṛ-ik•im" "follows_you": "Yeṭṭafaṛ-ik•im"
}, },
"dashboard": { "dashboard": {
"my_posts": "posts", "posts": "tisuffaɣ",
"my_following": "following", "following": "iṭafaṛ",
"my_followers": "followers", "followers": "imeḍfaren"
"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",
@ -745,18 +722,6 @@
}, },
"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

@ -51,11 +51,6 @@
"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": {
@ -83,7 +78,6 @@
"sign_up": "Ajimêr biafirîne", "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",
@ -97,16 +91,12 @@
"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_and_explore": "Bigere û vekole", "search": "Bigere",
"notifications": "Agahdarî", "notification": "Agahdarî",
"profile": "Profîl" "profile": "Profîl"
}, },
"keyboard": { "keyboard": {
@ -142,8 +132,6 @@
"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î"
@ -165,7 +153,6 @@
"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": {
@ -181,12 +168,6 @@
"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": {
@ -463,15 +444,11 @@
"follows_you": "Te dişopîne" "follows_you": "Te dişopîne"
}, },
"dashboard": { "dashboard": {
"my_posts": "şandî", "posts": "şandî",
"my_following": "dişopîne", "following": "dişopîne",
"my_followers": "şopîner", "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",
@ -745,18 +722,6 @@
}, },
"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

@ -51,11 +51,6 @@
"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": {
@ -83,7 +78,6 @@
"sign_up": "계정 생성", "sign_up": "계정 생성",
"see_more": "더 보기", "see_more": "더 보기",
"preview": "미리보기", "preview": "미리보기",
"copy": "Copy",
"share": "공유", "share": "공유",
"share_user": "%s를 공유", "share_user": "%s를 공유",
"share_post": "게시물 공유", "share_post": "게시물 공유",
@ -97,16 +91,12 @@
"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_and_explore": "Search and Explore", "search": "검색",
"notifications": "Notifications", "notification": "알림",
"profile": "프로필" "profile": "프로필"
}, },
"keyboard": { "keyboard": {
@ -142,8 +132,6 @@
"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": "마감"
@ -165,7 +153,6 @@
"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": {
@ -181,12 +168,6 @@
"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": {
@ -463,15 +444,11 @@
"follows_you": "Follows You" "follows_you": "Follows You"
}, },
"dashboard": { "dashboard": {
"my_posts": "posts", "posts": "게시물",
"my_following": "following", "following": "팔로잉",
"my_followers": "followers", "followers": "팔로워"
"other_posts": "posts",
"other_following": "following",
"other_followers": "followers"
}, },
"fields": { "fields": {
"joined": "가입일",
"add_row": "행 추가", "add_row": "행 추가",
"placeholder": { "placeholder": {
"label": "라벨", "label": "라벨",
@ -745,18 +722,6 @@
}, },
"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 nelasītu paziņojumu</string> <string>%ld unread notification</string>
<key>one</key> <key>one</key>
<string>1 nelasīts paziņojums</string> <string>1 unread notification</string>
<key>other</key> <key>other</key>
<string>%ld nelasīti paziņojumi</string> <string>%ld unread notification</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>Ievades ierobežojums pārsniedz %#@character_count@</string> <string>Input limit exceeds %#@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 rakstzīmju</string> <string>%ld characters</string>
<key>one</key> <key>one</key>
<string>1 rakstzīme</string> <string>1 character</string>
<key>other</key> <key>other</key>
<string>%ld rakstzīmes</string> <string>%ld characters</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>Ievades ierobežojums paliek %#@character_count@</string> <string>Input limit remains %#@character_count@</string>
<key>character_count</key> <key>character_count</key>
<dict> <dict>
<key>NSStringFormatSpecTypeKey</key> <key>NSStringFormatSpecTypeKey</key>
@ -49,17 +49,17 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ld rakstzīmju</string> <string>%ld characters</string>
<key>one</key> <key>one</key>
<string>1 rakstzīme</string> <string>1 character</string>
<key>other</key> <key>other</key>
<string>%ld rakstzīmes</string> <string>%ld characters</string>
</dict> </dict>
</dict> </dict>
<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@ palikušas</string> <string>%#@character_count@ left</string>
<key>character_count</key> <key>character_count</key>
<dict> <dict>
<key>NSStringFormatSpecTypeKey</key> <key>NSStringFormatSpecTypeKey</key>
@ -67,11 +67,11 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ld rakstzīmju</string> <string>%ld characters</string>
<key>one</key> <key>one</key>
<string>1 rakstzīme</string> <string>1 character</string>
<key>other</key> <key>other</key>
<string>%ld rakstzīmes</string> <string>%ld characters</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.followed_by_and_mutual</key> <key>plural.count.followed_by_and_mutual</key>
@ -98,11 +98,11 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>Seko %1$@ un %ld kopīgi</string> <string>Followed by %1$@, and %ld mutuals</string>
<key>one</key> <key>one</key>
<string>Seko %1$@ un vēl viens kopīgs</string> <string>Followed by %1$@, and another mutual</string>
<key>other</key> <key>other</key>
<string>Seko %1$@ un %ld kopīgi</string> <string>Followed by %1$@, and %ld mutuals</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.metric_formatted.post</key> <key>plural.count.metric_formatted.post</key>
@ -116,11 +116,11 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>ziņu</string> <string>posts</string>
<key>one</key> <key>one</key>
<string>ziņa</string> <string>post</string>
<key>other</key> <key>other</key>
<string>ziņas</string> <string>posts</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.media</key> <key>plural.count.media</key>
@ -134,11 +134,11 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ld multivide</string> <string>%ld media</string>
<key>one</key> <key>one</key>
<string>1 multivide</string> <string>1 media</string>
<key>other</key> <key>other</key>
<string>%ld multivide</string> <string>%ld media</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.post</key> <key>plural.count.post</key>
@ -152,11 +152,11 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ld ziņu</string> <string>%ld posts</string>
<key>one</key> <key>one</key>
<string>1 ziņa</string> <string>1 post</string>
<key>other</key> <key>other</key>
<string>%ld ziņas</string> <string>%ld posts</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.favorite</key> <key>plural.count.favorite</key>
@ -170,11 +170,11 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ld iecienītu</string> <string>%ld favorites</string>
<key>one</key> <key>one</key>
<string>1 iecienīts</string> <string>1 favorite</string>
<key>other</key> <key>other</key>
<string>%ld iecienīti</string> <string>%ld favorites</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.reblog</key> <key>plural.count.reblog</key>
@ -188,11 +188,11 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ld reblogu</string> <string>%ld reblogs</string>
<key>one</key> <key>one</key>
<string>1 reblogs</string> <string>1 reblog</string>
<key>other</key> <key>other</key>
<string>%ld reblogi</string> <string>%ld reblogs</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.reply</key> <key>plural.count.reply</key>
@ -206,11 +206,11 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ld atbilžu</string> <string>%ld replies</string>
<key>one</key> <key>one</key>
<string>1 atbilde</string> <string>1 reply</string>
<key>other</key> <key>other</key>
<string>%ld atbildes</string> <string>%ld replies</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.vote</key> <key>plural.count.vote</key>
@ -224,11 +224,11 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ld balsu</string> <string>%ld votes</string>
<key>one</key> <key>one</key>
<string>1 balss</string> <string>1 vote</string>
<key>other</key> <key>other</key>
<string>%ld balsis</string> <string>%ld votes</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.voter</key> <key>plural.count.voter</key>
@ -242,11 +242,11 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ld balsotāju</string> <string>%ld voters</string>
<key>one</key> <key>one</key>
<string>1 balsotājs</string> <string>1 voter</string>
<key>other</key> <key>other</key>
<string>%ld balsotāji</string> <string>%ld voters</string>
</dict> </dict>
</dict> </dict>
<key>plural.people_talking</key> <key>plural.people_talking</key>
@ -260,11 +260,11 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ld cilvēku apspriež</string> <string>%ld people talking</string>
<key>one</key> <key>one</key>
<string>1 cilvēks apspriež</string> <string>1 people talking</string>
<key>other</key> <key>other</key>
<string>%ld cilvēki apspriež</string> <string>%ld people talking</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.following</key> <key>plural.count.following</key>
@ -278,11 +278,11 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ld sekotāju</string> <string>%ld following</string>
<key>one</key> <key>one</key>
<string>1 sekotājs</string> <string>1 following</string>
<key>other</key> <key>other</key>
<string>%ld sekotāji</string> <string>%ld following</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.follower</key> <key>plural.count.follower</key>
@ -296,11 +296,11 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>%ld sekotāju</string> <string>%ld followers</string>
<key>one</key> <key>one</key>
<string>1 sekotājs</string> <string>1 follower</string>
<key>other</key> <key>other</key>
<string>%ld sekotāji</string> <string>%ld followers</string>
</dict> </dict>
</dict> </dict>
<key>date.year.left</key> <key>date.year.left</key>
@ -314,11 +314,11 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>palicis %ld gadu</string> <string>%ld years left</string>
<key>one</key> <key>one</key>
<string>palicis 1 gads</string> <string>1 year left</string>
<key>other</key> <key>other</key>
<string>palikuši %ld gadi</string> <string>%ld years left</string>
</dict> </dict>
</dict> </dict>
<key>date.month.left</key> <key>date.month.left</key>
@ -332,11 +332,11 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>palicis %ld mēnešu</string> <string>%ld months left</string>
<key>one</key> <key>one</key>
<string>palicis 1 mēnesis</string> <string>1 months left</string>
<key>other</key> <key>other</key>
<string>palikuši %ld mēneši</string> <string>%ld months left</string>
</dict> </dict>
</dict> </dict>
<key>date.day.left</key> <key>date.day.left</key>
@ -350,11 +350,11 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>palikušas %ld dienas</string> <string>%ld days left</string>
<key>one</key> <key>one</key>
<string>palikusi 1 diena</string> <string>1 day left</string>
<key>other</key> <key>other</key>
<string>palikušas %ld dienas</string> <string>%ld days left</string>
</dict> </dict>
</dict> </dict>
<key>date.hour.left</key> <key>date.hour.left</key>
@ -368,11 +368,11 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>atlikušas %ld stundas</string> <string>%ld hours left</string>
<key>one</key> <key>one</key>
<string>atlikusi 1 stunda</string> <string>1 hour left</string>
<key>other</key> <key>other</key>
<string>atlikušas %ld stundas</string> <string>%ld hours left</string>
</dict> </dict>
</dict> </dict>
<key>date.minute.left</key> <key>date.minute.left</key>
@ -386,11 +386,11 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>atlikušas %ld minūtes</string> <string>%ld minutes left</string>
<key>one</key> <key>one</key>
<string>atlikusi 1 minūte</string> <string>1 minute left</string>
<key>other</key> <key>other</key>
<string>atlikušas %ld minūtes</string> <string>%ld minutes left</string>
</dict> </dict>
</dict> </dict>
<key>date.second.left</key> <key>date.second.left</key>
@ -404,11 +404,11 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>atlikušas %ld sekundes</string> <string>%ld seconds left</string>
<key>one</key> <key>one</key>
<string>atlikusi 1 sekunde</string> <string>1 second left</string>
<key>other</key> <key>other</key>
<string>atlikušas %ld sekundes</string> <string>%ld seconds left</string>
</dict> </dict>
</dict> </dict>
<key>date.year.ago.abbr</key> <key>date.year.ago.abbr</key>
@ -422,11 +422,11 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>pirms %ld g.</string> <string>%ldy ago</string>
<key>one</key> <key>one</key>
<string>pirms 1 g.</string> <string>1y ago</string>
<key>other</key> <key>other</key>
<string>pirms %ld g.</string> <string>%ldy ago</string>
</dict> </dict>
</dict> </dict>
<key>date.month.ago.abbr</key> <key>date.month.ago.abbr</key>
@ -440,11 +440,11 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>pirms %ld M.</string> <string>%ldM ago</string>
<key>one</key> <key>one</key>
<string>pirms 1 M.</string> <string>1M ago</string>
<key>other</key> <key>other</key>
<string>pirms %ld M.</string> <string>%ldM ago</string>
</dict> </dict>
</dict> </dict>
<key>date.day.ago.abbr</key> <key>date.day.ago.abbr</key>
@ -458,11 +458,11 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>pirms %ld d.</string> <string>%ldd ago</string>
<key>one</key> <key>one</key>
<string>pirms 1 d.</string> <string>1d ago</string>
<key>other</key> <key>other</key>
<string>pirms %ld d.</string> <string>%ldd ago</string>
</dict> </dict>
</dict> </dict>
<key>date.hour.ago.abbr</key> <key>date.hour.ago.abbr</key>
@ -476,11 +476,11 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>pirms %ld st.</string> <string>%ldh ago</string>
<key>one</key> <key>one</key>
<string>pirms 1 st.</string> <string>1h ago</string>
<key>other</key> <key>other</key>
<string>pirms %ld st.</string> <string>%ldh ago</string>
</dict> </dict>
</dict> </dict>
<key>date.minute.ago.abbr</key> <key>date.minute.ago.abbr</key>
@ -494,11 +494,11 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>pirms %ld m.</string> <string>%ldm ago</string>
<key>one</key> <key>one</key>
<string>pirms 1 m.</string> <string>1m ago</string>
<key>other</key> <key>other</key>
<string>pirms %ld m.</string> <string>%ldm ago</string>
</dict> </dict>
</dict> </dict>
<key>date.second.ago.abbr</key> <key>date.second.ago.abbr</key>
@ -512,11 +512,11 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>zero</key> <key>zero</key>
<string>pirms %ld s.</string> <string>%lds ago</string>
<key>one</key> <key>one</key>
<string>pirms 1 s.</string> <string>1s ago</string>
<key>other</key> <key>other</key>
<string>pirms %ld s.</string> <string>%lds ago</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": "Reģistrācijas Neveiksme" "title": "Sign Up Failure"
}, },
"server_error": { "server_error": {
"title": "Servera kļūda" "title": "Servera kļūda"
}, },
"vote_failure": { "vote_failure": {
"title": "Balsošanas Neveiksme", "title": "Vote Failure",
"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": "Apstiprini, lai atmestu izveidotās ziņas saturu." "message": "Confirm to discard composed post content."
}, },
"publish_post_failure": { "publish_post_failure": {
"title": "Publicēšanas Neveiksme", "title": "Publish Failure",
"message": "Neizdevās publicēt ziņu.\nLūdzu, pārbaudi savu interneta savienojumu.", "message": "Failed to publish the post.\nPlease check your internet connection.",
"attachments_message": { "attachments_message": {
"video_attach_with_photo": "Nevar pievienot videoklipu ziņai, kurā jau ir attēli.", "video_attach_with_photo": "Cannot attach a video to a post that already contains images.",
"more_than_one_video": "Nevar pievienot vairāk kā vienu video." "more_than_one_video": "Cannot attach more than one video."
} }
}, },
"edit_profile_failure": { "edit_profile_failure": {
"title": "Profila Rediģēšanas Kļūda", "title": "Edit Profile Error",
"message": "Nevar rediģēt profilu. Lūdzu mēģini vēlreiz." "message": "Cannot edit profile. Please try again."
}, },
"sign_out": { "sign_out": {
"title": "Iziet", "title": "Iziet",
@ -37,25 +37,20 @@
"confirm": "Iziet" "confirm": "Iziet"
}, },
"block_domain": { "block_domain": {
"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.", "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": "Bloķēt Domēnu" "block_entire_domain": "Block Domain"
}, },
"save_photo_failure": { "save_photo_failure": {
"title": "Attēla Saglabāšanas Kļūda", "title": "Save Photo Failure",
"message": "Lai saglabātu fotoattēlu, lūdzu, iespējo fotoattēlu bibliotēkas piekļuves atļauju." "message": "Please enable the photo library access permission to save the photo."
}, },
"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": "Iztīrīt Kešatmiņu", "title": "Clean Cache",
"message": "%s kešatmiņa ir veiksmīgi iztīrīta." "message": "Successfully cleaned %s cache."
},
"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": {
@ -79,53 +74,48 @@
"take_photo": "Uzņemt bildi", "take_photo": "Uzņemt bildi",
"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": "Log in",
"sign_up": "Izveidot kontu", "sign_up": "Create account",
"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": "Kopīgot %s", "share_user": "Share %s",
"share_post": "Kopīgot Ziņu", "share_post": "Share Post",
"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": "Tā vietā meklēt manuāli", "manually_search": "Manually search instead",
"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_and_explore": "Meklēt un Pārlūkot", "search": "Meklēšana",
"notifications": "Paziņojumi", "notification": "Paziņojums",
"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": "Parādīt Izlasi", "show_favorites": "Show Favorites",
"open_settings": "Atvērt iestatījumus" "open_settings": "Atvērt iestatījumus"
}, },
"timeline": { "timeline": {
"previous_status": "Iepriekšējā Ziņa", "previous_status": "Previous Post",
"next_status": "Nākamā Ziņa", "next_status": "Next Post",
"open_status": "Atvērt Ziņu", "open_status": "Open Post",
"open_author_profile": "Atvērt Autora Profilu", "open_author_profile": "Open Author's Profile",
"open_reblogger_profile": "Atvērt Reblogotāja Profilu", "open_reblogger_profile": "Open Reblogger's Profile",
"reply_status": "Atbildēt uz Ziņu", "reply_status": "Reply to Post",
"toggle_reblog": "Pārslēgt Reblogs uz Ziņu", "toggle_reblog": "Toggle Reblog on Post",
"toggle_favorite": "Pārslēgt Izlasi uz Ziņas", "toggle_favorite": "Toggle Favorite on Post",
"toggle_content_warning": "Pārslēgt Satura Brīdinājumu", "toggle_content_warning": "Toggle Content Warning",
"preview_image": "Priekšskata attēls" "preview_image": "Priekšskata attēls"
}, },
"segmented_control": { "segmented_control": {
@ -134,59 +124,50 @@
} }
}, },
"status": { "status": {
"user_reblogged": "%s reblogoja", "user_reblogged": "%s reblogged",
"user_replied_to": "Atbildēja %s", "user_replied_to": "Replied to %s",
"show_post": "Parādīt Ziņu", "show_post": "Show Post",
"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": "Pieskarieties jebkurā vietā, lai atklātu", "media_content_warning": "Tap anywhere to reveal",
"tap_to_reveal": "Piest, lai atklātu", "tap_to_reveal": "Tap to reveal",
"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": "Saite: %s", "url": "Link: %s",
"hashtag": "Sajaukt: %s", "hashtag": "Hashtag: %s",
"mention": "Rādīt Profilu: %s", "mention": "Show Profile: %s",
"email": "E-pasta adrese: %s" "email": "Email address: %s"
}, },
"actions": { "actions": {
"reply": "Atbildēt", "reply": "Atbildēt",
"reblog": "Reblogot", "reblog": "Reblogot",
"unreblog": "Atsaukt reblogu", "unreblog": "Undo reblog",
"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": "Rādīt video atskaņotāju", "show_video_player": "Show video player",
"share_link_in_post": "Kopīgot Saiti Ziņā", "tap_then_hold_to_show_menu": "Tap then hold to show menu"
"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": "Tēmturis", "hashtag": "Hashtag",
"email": "E-pasts", "email": "E-pasts",
"emoji": "Emocijzīmes" "emoji": "Emocijzīmes"
}, },
"visibility": { "visibility": {
"unlisted": "Ikviens var redzēt šo ziņu, bet to nevar parādīt publiskajā laikrindā.", "unlisted": "Everyone can see this post but not display in the public timeline.",
"private": "Šo ziņu var redzēt tikai viņu sekotāji.", "private": "Only their followers can see this post.",
"private_from_me": "Šo ziņu var redzēt tikai mani sekotāji.", "private_from_me": "Only my followers can see this post.",
"direct": "Šo ziņu var redzēt tikai minētais lietotājs." "direct": "Only mentioned user can see this post."
},
"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": {
@ -205,9 +186,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": "Rediģēt", "edit_info": "Edit Info",
"show_reblogs": "Rādīt Reblogus", "show_reblogs": "Show Reblogs",
"hide_reblogs": "Paslēpt Reblogus" "hide_reblogs": "Hide Reblogs"
}, },
"timeline": { "timeline": {
"filtered": "Filtrēts", "filtered": "Filtrēts",
@ -215,48 +196,48 @@
"now": "Tagad" "now": "Tagad"
}, },
"loader": { "loader": {
"load_missing_posts": "Ielādēt trūkstošās ziņas", "load_missing_posts": "Load missing posts",
"loading_missing_posts": "Ielādē trūkstošās ziņas...", "loading_missing_posts": "Loading missing posts...",
"show_more_replies": "Rādīt vairāk atbildes" "show_more_replies": "Rādīt vairāk atbildes"
}, },
"header": { "header": {
"no_status_found": "Nav Atrastu Ziņu", "no_status_found": "No Post Found",
"blocking_warning": "Tu nevari skatīt šī lietotāja profilu,\nlīdz tu tos atbloķē.\nTavs profils viņiem izskatās šādi.", "blocking_warning": "You cant view this user's 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.", "user_blocking_warning": "You cant view %ss profile\nuntil you unblock them.\nYour profile looks like this to them.",
"blocked_warning": "Tu nevari skatīt šī lietotāja profilu\nlīdz tie tevi atbloķē.", "blocked_warning": "You cant view this users profile\nuntil they unblock you.",
"user_blocked_warning": "Tu nevari skatīt %s profilu,\nlīdz tie tevi atbloķē.", "user_blocked_warning": "You cant view %ss profile\nuntil they unblock you.",
"suspended_warning": "Šī lietotāja darbība ir apturēta.", "suspended_warning": "This user has been suspended.",
"user_suspended_warning": "%s konta darbība ir apturēta." "user_suspended_warning": "%ss account has been suspended."
} }
} }
} }
}, },
"scene": { "scene": {
"welcome": { "welcome": {
"slogan": "Sociālie tīkli\natpakaļ tavās rokās.", "slogan": "Social networking\nback in your hands.",
"get_started": "Sāc", "get_started": "Get Started",
"log_in": "Pieteikties" "log_in": "Pieteikties"
}, },
"login": { "login": {
"title": "Laipni lūdzam atpakaļ", "title": "Welcome back",
"subtitle": "Piesakies serverī, kurā izveidoji savu kontu.", "subtitle": "Log you in on the server you created your account on.",
"server_search_field": { "server_search_field": {
"placeholder": "Ievadi URL vai meklē savu serveri" "placeholder": "Enter URL or search for your server"
} }
}, },
"server_picker": { "server_picker": {
"title": "Mastodon veido lietotāji dažādos serveros.", "title": "Mastodon is made of users in different servers.",
"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": "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": { "button": {
"category": { "category": {
"all": "Visi", "all": "Visi",
"all_accessiblity_description": "Katekorija: Visi", "all_accessiblity_description": "Katekorija: Visi",
"academia": "akadēmija", "academia": "academia",
"activism": "aktīvisms", "activism": "activism",
"food": "ēdiens", "food": "ēdiens",
"furry": "pūkains", "furry": "furry",
"games": "spēles", "games": "spēles",
"general": "galvenais", "general": "general",
"journalism": "žurnālisms", "journalism": "žurnālisms",
"lgbt": "lgbt", "lgbt": "lgbt",
"regional": "regionāli", "regional": "regionāli",
@ -273,17 +254,17 @@
"category": "KATEGORIJA" "category": "KATEGORIJA"
}, },
"input": { "input": {
"search_servers_or_enter_url": "Meklēt kopienas vai ievadīt URL" "search_servers_or_enter_url": "Search communities or enter URL"
}, },
"empty_state": { "empty_state": {
"finding_servers": "Meklē piejamos serverus...", "finding_servers": "Finding available servers...",
"bad_network": "Ielādējot datus, radās problēma. Pārbaudi interneta savienojumu.", "bad_network": "Something went wrong while loading the data. Check your internet connection.",
"no_results": "Nav rezultātu" "no_results": "Nav rezultātu"
} }
}, },
"register": { "register": {
"title": "Ļauj tevi iestatīt %s", "title": "Lets get you set up on %s",
"lets_get_you_set_up_on_domain": "Ļauj tevi iestatīt %s", "lets_get_you_set_up_on_domain": "Lets get you set up on %s",
"input": { "input": {
"avatar": { "avatar": {
"delete": "Dzēst" "delete": "Dzēst"
@ -300,7 +281,7 @@
}, },
"password": { "password": {
"placeholder": "parole", "placeholder": "parole",
"require": "Tavai parolei ir nepieciešams vismaz:", "require": "Your password needs at least:",
"character_limit": "8 rakstzīmes", "character_limit": "8 rakstzīmes",
"accessibility": { "accessibility": {
"checked": "atzīmēts", "checked": "atzīmēts",
@ -322,29 +303,29 @@
"reason": "Iemesls" "reason": "Iemesls"
}, },
"reason": { "reason": {
"blocked": "%s satur neatļautu e-pasta pakalpojumu sniedzēju", "blocked": "%s contains a disallowed email provider",
"unreachable": "%s šķiet, ka neeksistē", "unreachable": "%s šķiet, ka neeksistē",
"taken": "%s jau tiek izmantots", "taken": "%s jau tiek izmantots",
"reserved": "%s ir rezervēts atslēgvārds", "reserved": "%s is a reserved keyword",
"accepted": "%s jābūt apstiprinātām", "accepted": "%s must be accepted",
"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 nav atbalstīta vērtība" "inclusion": "%s is not a supported value"
}, },
"special": { "special": {
"username_invalid": "Lietotājvārdā drīkst būt tikai burtciparu rakstzīmes un zemsvītras", "username_invalid": "Username must only contain alphanumeric characters and underscores",
"username_too_long": "Lietotājvārds ir par garu (nedrīkst būt garāks par 30 rakstzīmēm)", "username_too_long": "Username is too long (cant be longer than 30 characters)",
"email_invalid": "Šī nav derīga e-pasta adrese", "email_invalid": "This is not a valid email address",
"password_too_short": "Parole ir pārāk īsa (jābūt vismaz 8 rakstzīmēm)" "password_too_short": "Password is too short (must be at least 8 characters)"
} }
} }
}, },
"server_rules": { "server_rules": {
"title": "Daži pamatnoteikumi.", "title": "Some ground rules.",
"subtitle": "Tos iestata un ievieš %s moderatori.", "subtitle": "These are set and enforced by the %s moderators.",
"prompt": "Turpinot, uz tevi attiecas %s pakalpojumu sniegšanas noteikumi un konfidencialitātes politika.", "prompt": "By continuing, youre subject to the terms of service and privacy policy for %s.",
"terms_of_service": "pakalpojuma noteikumi", "terms_of_service": "pakalpojuma noteikumi",
"privacy_policy": "privātuma nosacījumi", "privacy_policy": "privātuma nosacījumi",
"button": { "button": {
@ -352,45 +333,45 @@
} }
}, },
"confirm_email": { "confirm_email": {
"title": "Pēdējā lieta.", "title": "One last thing.",
"subtitle": "Pieskaries saitei, ko nosūtījām tev pa e-pastu, lai verificētu savu kontu.", "subtitle": "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", "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": "Atvērt E-pasta Lietotni", "open_email_app": "Open Email App",
"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": "Pārbaudi, vai tava e-pasta adrese ir pareiza, kā arī savu mēstuļu mapi, ja tā nav.", "description": "Check if your email address is correct as well as your junk folder if you havent.",
"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": "Pārbaudi savu iesūtni.", "title": "Check your inbox.",
"description": "Mēs tikko nosūtījām tev e-pastu. Pārbaudi savu mēstuļu mapi, ja neesi to saņēmis.", "description": "We just sent you an email. Check your junk folder if you havent.",
"mail": "Pasts", "mail": "Mail",
"open_email_client": "Atvērt E-pasta Klientu" "open_email_client": "Open Email Client"
} }
}, },
"home_timeline": { "home_timeline": {
"title": "Sākums", "title": "Home",
"navigation_bar_state": { "navigation_bar_state": {
"offline": "Bezsaistē", "offline": "Offline",
"new_posts": "Skatīt jaunās ziņas", "new_posts": "See new posts",
"published": "Publicēts!", "published": "Published!",
"Publishing": "Publicē ziņu...", "Publishing": "Publishing post...",
"accessibility": { "accessibility": {
"logo_label": "Logotipa Poga", "logo_label": "Logo Button",
"logo_hint": "Pieskaries, lai ritinātu uz augšu, un vēlreiz pieskaries iepriekšējai atrašanās vietai" "logo_hint": "Tap to scroll to top and tap again to previous location"
} }
} }
}, },
"suggestion_account": { "suggestion_account": {
"title": "Atrodi Cilvēkus kam Sekot", "title": "Find People to Follow",
"follow_explain": "Kad seko kādam, tu redzēsi viņu ziņas savā mājas plūsmā." "follow_explain": "When you follow someone, youll see their posts in your home feed."
}, },
"compose": { "compose": {
"title": { "title": {
"new_post": "Jauna Ziņa", "new_post": "New Post",
"new_reply": "Jauna atbilde" "new_reply": "Jauna atbilde"
}, },
"media_selection": { "media_selection": {
@ -398,36 +379,36 @@
"photo_library": "Attēlu krātuve", "photo_library": "Attēlu krātuve",
"browse": "Pārlūkot" "browse": "Pārlūkot"
}, },
"content_input_placeholder": "Ieraksti vai ielīmē to, ko domā", "content_input_placeholder": "Type or paste whats on your mind",
"compose_action": "Publicēt", "compose_action": "Publicēt",
"replying_to_user": "atbildot uz %s", "replying_to_user": "replying to %s",
"attachment": { "attachment": {
"photo": "attēls", "photo": "attēls",
"video": "video", "video": "video",
"attachment_broken": "Šis %s ir salauzts un nevar tikt augšuplādēts Mastodon.", "attachment_broken": "This %s is broken and cant be\nuploaded to Mastodon.",
"description_photo": "Apraksti fotoattēlu vājredzīgajiem...", "description_photo": "Describe the photo for the visually-impaired...",
"description_video": "Apraksti video vājredzīgajiem...", "description_video": "Describe the video for the visually-impaired...",
"load_failed": "Ielāde Neizdevās", "load_failed": "Load Failed",
"upload_failed": "Augšupielāde Neizdevās", "upload_failed": "Upload Failed",
"can_not_recognize_this_media_attachment": "Nevar atpazīt šo multivides pielikumu", "can_not_recognize_this_media_attachment": "Can not recognize this media attachment",
"attachment_too_large": "Pārāk liels pielikums", "attachment_too_large": "Attachment too large",
"compressing_state": "Saspiež...", "compressing_state": "Compressing...",
"server_processing_state": "Notiek servera apstrāde..." "server_processing_state": "Server Processing..."
}, },
"poll": { "poll": {
"duration_time": "Ilgums: %s", "duration_time": "Duration: %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": "Izvēle %ld", "option_number": "Option %ld",
"the_poll_is_invalid": "Aptauja nav derīga", "the_poll_is_invalid": "The poll is invalid",
"the_poll_has_empty_option": "Aptaujai ir tukša opcija" "the_poll_has_empty_option": "The poll has empty option"
}, },
"content_warning": { "content_warning": {
"placeholder": "Uzraksti šeit precīzu brīdinājumu..." "placeholder": "Write an accurate warning here..."
}, },
"visibility": { "visibility": {
"public": "Publisks", "public": "Publisks",
@ -436,26 +417,26 @@
"direct": "Tikai cilvēki, kurus es pieminu" "direct": "Tikai cilvēki, kurus es pieminu"
}, },
"auto_complete": { "auto_complete": {
"space_to_add": "Vieta, ko pievienot" "space_to_add": "Space to add"
}, },
"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": "Pielāgoto Emocijzīmju Atlasītājs", "custom_emoji_picker": "Custom Emoji Picker",
"enable_content_warning": "Iespējot Satura Brīdinājumu", "enable_content_warning": "Enable Content Warning",
"disable_content_warning": "Atspējot Satura Brīdinājumu", "disable_content_warning": "Disable Content Warning",
"post_visibility_menu": "Ziņu Redzamības Izvēlne", "post_visibility_menu": "Post Visibility Menu",
"post_options": "Ziņas Iespējas", "post_options": "Post Options",
"posting_as": "Publicēt kā %s" "posting_as": "Posting as %s"
}, },
"keyboard": { "keyboard": {
"discard_post": "Izmest Ziņu", "discard_post": "Discard Post",
"publish_post": "Publicēt Ziņu", "publish_post": "Publish Post",
"toggle_poll": "Pārslēgt Aptauju", "toggle_poll": "Toggle Poll",
"toggle_content_warning": "Pārslēgt Satura Brīdinājumu", "toggle_content_warning": "Toggle Content Warning",
"append_attachment_entry": "Pievienot pielikumu - %s", "append_attachment_entry": "Pievienot pielikumu - %s",
"select_visibility_entry": "Atlasīt Redzamību  %s" "select_visibility_entry": "Select Visibility - %s"
} }
}, },
"profile": { "profile": {
@ -463,27 +444,23 @@
"follows_you": "Seko tev" "follows_you": "Seko tev"
}, },
"dashboard": { "dashboard": {
"my_posts": "ziņas", "posts": "posts",
"my_following": "seko", "following": "seko",
"my_followers": "sekotāji", "followers": "sekottā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": "Marķējums", "label": "Label",
"content": "Saturs" "content": "Saturs"
}, },
"verified": { "verified": {
"short": "Pārbaudīts %s", "short": "Verified on %s",
"long": "Šīs saites piederība tika pārbaudīta %s" "long": "Ownership of this link was checked on %s"
} }
}, },
"segmented_control": { "segmented_control": {
"posts": "Ziņas", "posts": "Posts",
"replies": "Atbildes", "replies": "Atbildes",
"posts_and_replies": "Ziņas un atbildes", "posts_and_replies": "Ziņas un atbildes",
"media": "Multivide", "media": "Multivide",
@ -491,97 +468,97 @@
}, },
"relationship_action_alert": { "relationship_action_alert": {
"confirm_mute_user": { "confirm_mute_user": {
"title": "Izslēgt Kontu", "title": "Mute Account",
"message": "Apstiprināt, lai izslēgtu %s skaņu" "message": "Confirm to mute %s"
}, },
"confirm_unmute_user": { "confirm_unmute_user": {
"title": "Ieslēgt Kontu", "title": "Unmute Account",
"message": "Apstiprināt, lai ieslēgtu %s skaņu" "message": "Confirm to unmute %s"
}, },
"confirm_block_user": { "confirm_block_user": {
"title": "Bloķēts kontu", "title": "Bloķēts kontu",
"message": "Apstiprināt, lai bloķētu %s" "message": "Confirm to block %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": "Rādīt Reblogus", "title": "Show Reblogs",
"message": "Apstiprināt, lai rādītu reblogus" "message": "Confirm to show reblogs"
}, },
"confirm_hide_reblogs": { "confirm_hide_reblogs": {
"title": "Paslēpt Reblogus", "title": "Hide Reblogs",
"message": "Apstiprināt, lai slēptu reblogus" "message": "Confirm to hide reblogs"
} }
}, },
"accessibility": { "accessibility": {
"show_avatar_image": "Rādīt avatara attēlu", "show_avatar_image": "Show avatar image",
"edit_avatar_image": "Rediģēt avatara attēlu", "edit_avatar_image": "Edit avatar image",
"show_banner_image": "Rādīt bannera attēlu", "show_banner_image": "Show banner image",
"double_tap_to_open_the_list": "Dubultskāriens, lai atvērtu sarakstu" "double_tap_to_open_the_list": "Double tap to open the list"
} }
}, },
"follower": { "follower": {
"title": "sekottājs", "title": "sekottājs",
"footer": "Sekotāji no citiem serveriem netiek rādīti." "footer": "Followers from other servers are not displayed."
}, },
"following": { "following": {
"title": "seko", "title": "seko",
"footer": "Sekojumi no citiem serveriem netiek rādīti." "footer": "Follows from other servers are not displayed."
}, },
"familiarFollowers": { "familiarFollowers": {
"title": "Tev pazīstamie sekotāji", "title": "Followers you familiar",
"followed_by_names": "Seko %s" "followed_by_names": "Followed by %s"
}, },
"favorited_by": { "favorited_by": {
"title": "Pievienoja izlasei" "title": "Favorited By"
}, },
"reblogged_by": { "reblogged_by": {
"title": "Reblogoja" "title": "Reblogged By"
}, },
"search": { "search": {
"title": "Meklēt", "title": "Meklēt",
"search_bar": { "search_bar": {
"placeholder": "Meklēt tēmturus un lietotājus", "placeholder": "Search hashtags and users",
"cancel": "Atcelt" "cancel": "Atcelt"
}, },
"recommend": { "recommend": {
"button_text": "Skatīt visu", "button_text": "Skatīt visu",
"hash_tag": { "hash_tag": {
"title": "Tendences vietnē Mastodon", "title": "Trending on Mastodon",
"description": "Tēmturi, kuriem tiek pievērsta diezgan liela uzmanība", "description": "Hashtags that are getting quite a bit of attention",
"people_talking": "%s cilvēki apspriež" "people_talking": "%s people are talking"
}, },
"accounts": { "accounts": {
"title": "Konti, kuri tev varētu patikt", "title": "Accounts you might like",
"description": "Iespējams, tu vēlēsies sekot šiem kontiem", "description": "You may like to follow these accounts",
"follow": "Sekot" "follow": "Follow"
} }
}, },
"searching": { "searching": {
"segment": { "segment": {
"all": "Visi", "all": "All",
"people": "Cilvēki", "people": "People",
"hashtags": "Tēmturi", "hashtags": "Hashtags",
"posts": "Ziņas" "posts": "Posts"
}, },
"empty_state": { "empty_state": {
"no_results": "Nav rezultātu" "no_results": "No results"
}, },
"recent_search": "Nesen meklētais", "recent_search": "Recent searches",
"clear": "Notīrīt" "clear": "Clear"
} }
}, },
"discovery": { "discovery": {
"tabs": { "tabs": {
"posts": "Ziņas", "posts": "Ziņas",
"hashtags": "Tēmturi", "hashtags": "Hashtags",
"news": "Ziņas", "news": "Ziņas",
"community": "Kopiena", "community": "Community",
"for_you": "Priekš tevis" "for_you": "Priekš tevis"
}, },
"intro": "Šīs ir ziņas, kas iekaro tavu Mastodon stūrīti." "intro": "These are the posts gaining traction in your corner of Mastodon."
}, },
"favorite": { "favorite": {
"title": "Tava izlase" "title": "Tava izlase"
@ -592,16 +569,16 @@
"Mentions": "Pieminējumi" "Mentions": "Pieminējumi"
}, },
"notification_description": { "notification_description": {
"followed_you": "tev sekoja", "followed_you": "followed you",
"favorited_your_post": "izcēla tavu ziņu", "favorited_your_post": "favorited your post",
"reblogged_your_post": "reblogoja tavu ziņu", "reblogged_your_post": "reblogged your post",
"mentioned_you": "pieminēja tevi", "mentioned_you": "pieminēja tevi",
"request_to_follow_you": "lūgums tev sekot", "request_to_follow_you": "request to follow you",
"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": "Rādīt Pieminējumus" "show_mentions": "Show Mentions"
}, },
"follow_request": { "follow_request": {
"accept": "Pieņemt", "accept": "Pieņemt",
@ -612,7 +589,7 @@
}, },
"thread": { "thread": {
"back_title": "Ziņa", "back_title": "Ziņa",
"title": "Ziņa no %s" "title": "Post from %s"
}, },
"settings": { "settings": {
"title": "Iestatījumi", "title": "Iestatījumi",
@ -625,42 +602,42 @@
}, },
"look_and_feel": { "look_and_feel": {
"title": "Izskats", "title": "Izskats",
"use_system": "Lietot Sistēmas", "use_system": "Use System",
"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": "Izceļ manu ziņu", "favorites": "Favorites my post",
"follows": "Seko man", "follows": "Seko man",
"boosts": "Reblogo manu ziņu", "boosts": "Reblogs my post",
"mentions": "Pieminējumi", "mentions": "Pieminējumi",
"trigger": { "trigger": {
"anyone": "jebkurš", "anyone": "jebkurš",
"follower": "sekottājs", "follower": "sekottājs",
"follow": "jebkurš, kam sekoju", "follow": "anyone I follow",
"noone": "neviens", "noone": "neviens",
"title": "Paziņot man, kad" "title": "Notify me when"
} }
}, },
"preference": { "preference": {
"title": "Uzstādījumi", "title": "Uzstādījumi",
"true_black_dark_mode": "Īsti melns tumšais režīms", "true_black_dark_mode": "True black dark mode",
"disable_avatar_animation": "Atspējot animētos avatarus", "disable_avatar_animation": "Disable animated avatars",
"disable_emoji_animation": "Atspējot animētās emocijzīmes", "disable_emoji_animation": "Disable animated emojis",
"using_default_browser": "Saišu atvēršana noklusētajā pārlūkā", "using_default_browser": "Use default browser to open links",
"open_links_in_mastodon": "Atvērt saites Mastodon" "open_links_in_mastodon": "Open links in Mastodon"
}, },
"boring_zone": { "boring_zone": {
"title": "Garlaicīgā zona", "title": "The Boring Zone",
"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": "Pikantā zona", "title": "The Spicy Zone",
"clear": "Notīrīt Multivides Kešatmiņu", "clear": "Clear Media Cache",
"signout": "Iziet" "signout": "Iziet"
} }
}, },
@ -668,7 +645,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": "Aizvērt Iestatījumu Logu" "close_settings_window": "Close Settings Window"
} }
}, },
"report": { "report": {
@ -676,24 +653,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": "Vai ir vēl kādas ziņas, kuras vēlies pievienot pārskatam?", "content1": "Are there any other posts youd like to add to the report?",
"content2": "Vai moderatoriem ir kaut kas jāzina par šo ziņojumu?", "content2": "Is there anything the moderators should know about this report?",
"report_sent_title": "Paldies, ka ziņoji, mēs to izskatīsim.", "report_sent_title": "Thanks for reporting, well look into this.",
"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": "Ieraksti vai ielīmē papildu komentārus", "text_placeholder": "Type or paste additional comments",
"reported": "ZIŅOTS", "reported": "REPORTED",
"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": "Kas vainas šim ierakstam?", "whats_wrong_with_this_post": "What's wrong with this post?",
"whats_wrong_with_this_account": "Kas vainas šim kontam?", "whats_wrong_with_this_account": "What's wrong with this account?",
"whats_wrong_with_this_username": "Kas vainas %s?", "whats_wrong_with_this_username": "What's wrong with %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": "Ļaunprātīgas saites, viltus iesaistīšana vai atkārtotas atbildes", "malicious_links_fake_engagement_or_repetetive_replies": "Malicious links, fake engagement, or repetetive replies",
"it_violates_server_rules": "Tas pārkāpj servera noteikumus", "it_violates_server_rules": "It violates server rules",
"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"
@ -702,7 +679,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": "Man vienkārši tas nepatīk" "i_just_dont_like_it": "I just dont like it"
}, },
"step_three": { "step_three": {
"step_3_of_4": "3. solis no 4", "step_3_of_4": "3. solis no 4",
@ -715,48 +692,36 @@
}, },
"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.": "Kad pakalpojumā Mastodon redzi kaut ko, kas tev nepatīk, tu vari noņemt šo personu no savas pieredzes.", "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": "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": "Tu neredzēsi viņu ziņas vai reblogus savā mājas plūsmā. Viņi nezinās, ka ir izslēgti.", "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": "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": "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.", "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": "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": "Aizvērt Priekšskatījumu", "close_preview": "Close Preview",
"show_next": "Rādīt Nākamo", "show_next": "Show Next",
"show_previous": "Rādīt Iepriekšējo" "show_previous": "Show Previous"
} }
}, },
"account_list": { "account_list": {
"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", "tab_bar_hint": "Current selected profile: %s. Double tap then hold to show account switcher",
"dismiss_account_switcher": "Noraidīt Konta Pārslēdzēju", "dismiss_account_switcher": "Dismiss Account Switcher",
"add_account": "Pievienot kontu" "add_account": "Pievienot kontu"
}, },
"wizard": { "wizard": {
"new_in_mastodon": "Jaunums Mastodonā", "new_in_mastodon": "New in Mastodon",
"multiple_account_switch_intro_description": "Pārslēdzies starp vairākiem kontiem, turot nospiestu profila pogu.", "multiple_account_switch_intro_description": "Switch between multiple accounts by holding the profile button.",
"accessibility_hint": "Veic dubultskārienu, lai noraidītu šo vedni" "accessibility_hint": "Double tap to dismiss this wizard"
}, },
"bookmark": { "bookmark": {
"title": "Grāmatzīmes" "title": "Bookmarks"
},
"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": "Izmanto, lai fotografētu ziņas statusu", "NSCameraUsageDescription": "Used to take photo for post status",
"NSPhotoLibraryAddUsageDescription": "Izmanto, lai saglabātu fotoattēlu Photo Library", "NSPhotoLibraryAddUsageDescription": "Used to save photo into the Photo Library",
"NewPostShortcutItemTitle": "Jauna Ziņa", "NewPostShortcutItemTitle": "New Post",
"SearchShortcutItemTitle": "Meklēt" "SearchShortcutItemTitle": "Search"
} }

View File

@ -1,407 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>a11y.plural.count.unread.notification</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@notification_count_unread_notification@</string>
<key>notification_count_unread_notification</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>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

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

@ -1,6 +0,0 @@
{
"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 notifications</string> <string>%ld unread notification</string>
</dict> </dict>
</dict> </dict>
<key>a11y.plural.count.input_limit_exceeds</key> <key>a11y.plural.count.input_limit_exceeds</key>

View File

@ -51,11 +51,6 @@
"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": {
@ -79,11 +74,10 @@
"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": "Inloggen", "sign_in": "Log in",
"sign_up": "Account aanmaken", "sign_up": "Create account",
"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",
@ -97,16 +91,12 @@
"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_and_explore": "Search and Explore", "search": "Zoek",
"notifications": "Notifications", "notification": "Melding",
"profile": "Profiel" "profile": "Profiel"
}, },
"keyboard": { "keyboard": {
@ -142,8 +132,6 @@
"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"
@ -151,8 +139,8 @@
"meta_entity": { "meta_entity": {
"url": "Link: %s", "url": "Link: %s",
"hashtag": "Hashtag: %s", "hashtag": "Hashtag: %s",
"mention": "Profiel weergeven: %s", "mention": "Show Profile: %s",
"email": "E-mailadres: %s" "email": "Email address: %s"
}, },
"actions": { "actions": {
"reply": "Reageren", "reply": "Reageren",
@ -165,7 +153,6 @@
"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": {
@ -181,12 +168,6 @@
"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": {
@ -206,8 +187,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": "Toon reblogs", "show_reblogs": "Show Reblogs",
"hide_reblogs": "Verberg reblogs" "hide_reblogs": "Hide Reblogs"
}, },
"timeline": { "timeline": {
"filtered": "Gefilterd", "filtered": "Gefilterd",
@ -238,15 +219,15 @@
"log_in": "Log in" "log_in": "Log in"
}, },
"login": { "login": {
"title": "Welkom terug", "title": "Welcome back",
"subtitle": "Log je in op de server waarop je je account hebt aangemaakt.", "subtitle": "Log you in on the server you created your account on.",
"server_search_field": { "server_search_field": {
"placeholder": "Voer URL in of zoek naar uw server" "placeholder": "Enter URL or search for your server"
} }
}, },
"server_picker": { "server_picker": {
"title": "Kies een server, welke dan ook.", "title": "Kies een server, welke dan ook.",
"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": "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": { "button": {
"category": { "category": {
"all": "Alles", "all": "Alles",
@ -273,7 +254,7 @@
"category": "CATEGORIE" "category": "CATEGORIE"
}, },
"input": { "input": {
"search_servers_or_enter_url": "Zoek naar gemeenschappen of voer URL in" "search_servers_or_enter_url": "Search communities or enter URL"
}, },
"empty_state": { "empty_state": {
"finding_servers": "Beschikbare servers zoeken...", "finding_servers": "Beschikbare servers zoeken...",
@ -283,7 +264,7 @@
}, },
"register": { "register": {
"title": "Vertel ons over uzelf.", "title": "Vertel ons over uzelf.",
"lets_get_you_set_up_on_domain": "Laten we je account instellen op %s", "lets_get_you_set_up_on_domain": "Lets get you set up on %s",
"input": { "input": {
"avatar": { "avatar": {
"delete": "Verwijderen" "delete": "Verwijderen"
@ -354,7 +335,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": "Tik op de link in de e-mail die je hebt ontvangen om uw account te verifiëren", "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": "Email Openen", "open_email_app": "Email Openen",
"resend": "Verstuur opnieuw" "resend": "Verstuur opnieuw"
@ -379,8 +360,8 @@
"published": "Gepubliceerd!", "published": "Gepubliceerd!",
"Publishing": "Bericht publiceren...", "Publishing": "Bericht publiceren...",
"accessibility": { "accessibility": {
"logo_label": "Logo knop", "logo_label": "Logo Button",
"logo_hint": "Tik om naar boven te scrollen en tik nogmaals om terug te keren naar de vorige locatie" "logo_hint": "Tap to scroll to top and tap again to previous location"
} }
} }
}, },
@ -407,12 +388,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": "Laden mislukt", "load_failed": "Load Failed",
"upload_failed": "Uploaden mislukt", "upload_failed": "Upload Failed",
"can_not_recognize_this_media_attachment": "Kan de media in de bijlage niet herkennen", "can_not_recognize_this_media_attachment": "Can not recognize this media attachment",
"attachment_too_large": "Bijlage te groot", "attachment_too_large": "Attachment too large",
"compressing_state": "Bezig met comprimeren...", "compressing_state": "Compressing...",
"server_processing_state": "Server is bezig met verwerken..." "server_processing_state": "Server Processing..."
}, },
"poll": { "poll": {
"duration_time": "Duur: %s", "duration_time": "Duur: %s",
@ -423,8 +404,8 @@
"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_is_invalid": "The poll is invalid",
"the_poll_has_empty_option": "De peiling heeft een lege optie" "the_poll_has_empty_option": "The poll has empty option"
}, },
"content_warning": { "content_warning": {
"placeholder": "Schrijf hier een nauwkeurige waarschuwing..." "placeholder": "Schrijf hier een nauwkeurige waarschuwing..."
@ -446,8 +427,8 @@
"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", "post_options": "Post Options",
"posting_as": "Plaats bericht als %s" "posting_as": "Posting as %s"
}, },
"keyboard": { "keyboard": {
"discard_post": "Bericht Verwijderen", "discard_post": "Bericht Verwijderen",
@ -460,26 +441,22 @@
}, },
"profile": { "profile": {
"header": { "header": {
"follows_you": "Volgt jou" "follows_you": "Follows You"
}, },
"dashboard": { "dashboard": {
"my_posts": "posts", "posts": "berichten",
"my_following": "following", "following": "volgend",
"my_followers": "followers", "followers": "volgers"
"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": { "verified": {
"short": "Geverifieerd op %s", "short": "Verified on %s",
"long": "Eigendom van deze link is gecontroleerd op %s" "long": "Ownership of this link was checked on %s"
} }
}, },
"segmented_control": { "segmented_control": {
@ -507,12 +484,12 @@
"message": "Bevestig om %s te deblokkeren" "message": "Bevestig om %s te deblokkeren"
}, },
"confirm_show_reblogs": { "confirm_show_reblogs": {
"title": "Toon reblogs", "title": "Show Reblogs",
"message": "Bevestig om reblogs te tonen" "message": "Confirm to show reblogs"
}, },
"confirm_hide_reblogs": { "confirm_hide_reblogs": {
"title": "Verberg reblogs", "title": "Hide Reblogs",
"message": "Bevestig om reblogs te verbergen" "message": "Confirm to hide reblogs"
} }
}, },
"accessibility": { "accessibility": {
@ -523,16 +500,16 @@
} }
}, },
"follower": { "follower": {
"title": "volger", "title": "follower",
"footer": "Volgers van andere servers worden niet weergegeven." "footer": "Volgers van andere servers worden niet weergegeven."
}, },
"following": { "following": {
"title": "volgend", "title": "following",
"footer": "Volgers van andere servers worden niet weergegeven." "footer": "Volgers van andere servers worden niet weergegeven."
}, },
"familiarFollowers": { "familiarFollowers": {
"title": "Volgers die je kent", "title": "Followers you familiar",
"followed_by_names": "Gevolgd door %s" "followed_by_names": "Followed by %s"
}, },
"favorited_by": { "favorited_by": {
"title": "Favorited By" "title": "Favorited By"
@ -578,7 +555,7 @@
"posts": "Berichten", "posts": "Berichten",
"hashtags": "Hashtags", "hashtags": "Hashtags",
"news": "Nieuws", "news": "Nieuws",
"community": "Gemeenschap", "community": "Community",
"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."
@ -604,10 +581,10 @@
"show_mentions": "Vermeldingen weergeven" "show_mentions": "Vermeldingen weergeven"
}, },
"follow_request": { "follow_request": {
"accept": "Accepteren", "accept": "Accept",
"accepted": "Geaccepteerd", "accepted": "Accepted",
"reject": "afwijzen", "reject": "reject",
"rejected": "Afgewezen" "rejected": "Rejected"
} }
}, },
"thread": { "thread": {
@ -684,11 +661,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": "Stap 1 van 4", "step_1_of_4": "Step 1 of 4",
"whats_wrong_with_this_post": "Wat is er mis met dit bericht?", "whats_wrong_with_this_post": "What's wrong with this post?",
"whats_wrong_with_this_account": "Wat is er mis met dit bericht?", "whats_wrong_with_this_account": "What's wrong with this account?",
"whats_wrong_with_this_username": "Wat is er mis met %s?", "whats_wrong_with_this_username": "What's wrong with %s?",
"select_the_best_match": "Selecteer de beste overeenkomst", "select_the_best_match": "Select the best match",
"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",
@ -745,18 +722,6 @@
}, },
"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

@ -51,11 +51,6 @@
"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": {
@ -83,7 +78,6 @@
"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",
@ -97,16 +91,12 @@
"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_and_explore": "Search and Explore", "search": "Buscar",
"notifications": "Notifications", "notification": "Notificação",
"profile": "Perfil" "profile": "Perfil"
}, },
"keyboard": { "keyboard": {
@ -142,8 +132,6 @@
"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"
@ -165,7 +153,6 @@
"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": {
@ -181,12 +168,6 @@
"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": {
@ -463,15 +444,11 @@
"follows_you": "Segue você" "follows_you": "Segue você"
}, },
"dashboard": { "dashboard": {
"my_posts": "posts", "posts": "toots",
"my_following": "following", "following": "seguindo",
"my_followers": "followers", "followers": "seguidores"
"other_posts": "posts",
"other_following": "following",
"other_followers": "followers"
}, },
"fields": { "fields": {
"joined": "Joined",
"add_row": "Adicionar linha", "add_row": "Adicionar linha",
"placeholder": { "placeholder": {
"label": "Descrição", "label": "Descrição",
@ -745,18 +722,6 @@
}, },
"bookmark": { "bookmark": {
"title": "Marcados" "title": "Marcados"
},
"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 notifications</string> <string>%ld unread notification</string>
</dict> </dict>
</dict> </dict>
<key>a11y.plural.count.input_limit_exceeds</key> <key>a11y.plural.count.input_limit_exceeds</key>

View File

@ -51,11 +51,6 @@
"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": {
@ -83,7 +78,6 @@
"sign_up": "Create account", "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",
@ -97,16 +91,12 @@
"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_and_explore": "Search and Explore", "search": "Search",
"notifications": "Notifications", "notification": "Notification",
"profile": "Profile" "profile": "Profile"
}, },
"keyboard": { "keyboard": {
@ -142,8 +132,6 @@
"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"
@ -165,7 +153,6 @@
"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": {
@ -181,12 +168,6 @@
"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": {
@ -463,15 +444,11 @@
"follows_you": "Follows You" "follows_you": "Follows You"
}, },
"dashboard": { "dashboard": {
"my_posts": "posts", "posts": "posts",
"my_following": "following", "following": "following",
"my_followers": "followers", "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",
@ -584,7 +561,7 @@
"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": "Favorites" "title": "Your Favorites"
}, },
"notification": { "notification": {
"title": { "title": {
@ -745,18 +722,6 @@
}, },
"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,9 +15,9 @@
<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 notification</string>
<key>other</key> <key>other</key>
<string>%ld unread notifications</string> <string>%ld unread notification</string>
</dict> </dict>
</dict> </dict>
<key>a11y.plural.count.input_limit_exceeds</key> <key>a11y.plural.count.input_limit_exceeds</key>

View File

@ -13,7 +13,7 @@
}, },
"vote_failure": { "vote_failure": {
"title": "Eșec la vot", "title": "Eșec la vot",
"poll_ended": "Sondajul tău s-a încheiat" "poll_ended": "The poll has ended"
}, },
"discard_post_content": { "discard_post_content": {
"title": "Șterge Schită", "title": "Șterge Schită",
@ -41,7 +41,7 @@
"block_entire_domain": "Block Domain" "block_entire_domain": "Block Domain"
}, },
"save_photo_failure": { "save_photo_failure": {
"title": "Salvarea fotografiei a eșuat", "title": "Save Photo Failure",
"message": "Please enable the photo library access permission to save the photo." "message": "Please enable the photo library access permission to save the photo."
}, },
"delete_post": { "delete_post": {
@ -51,22 +51,17 @@
"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": {
"actions": { "actions": {
"back": "Înapoi", "back": "Back",
"next": "Înainte", "next": "Next",
"previous": "Previous", "previous": "Previous",
"open": "Deschide", "open": "Deschide",
"add": "Adaugă", "add": "Add",
"remove": "Elimină", "remove": "Elimină",
"edit": "Modifică", "edit": "Edit",
"save": "Salvează", "save": "Salvează",
"ok": "OK", "ok": "OK",
"done": "Done", "done": "Done",
@ -83,30 +78,25 @@
"sign_up": "Create account", "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",
"open_in_safari": "Open in Safari", "open_in_safari": "Open in Safari",
"open_in_browser": "Deschide în browser", "open_in_browser": "Open in Browser",
"find_people": "Găsește persoane de urmărit", "find_people": "Find people to follow",
"manually_search": "Manually search instead", "manually_search": "Manually search instead",
"skip": "Treci peste", "skip": "Skip",
"reply": "Reply", "reply": "Reply",
"report_user": "Report %s", "report_user": "Report %s",
"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": "Acasă", "home": "Home",
"search_and_explore": "Search and Explore", "search": "Search",
"notifications": "Notifications", "notification": "Notification",
"profile": "Profile" "profile": "Profile"
}, },
"keyboard": { "keyboard": {
@ -142,8 +132,6 @@
"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"
@ -165,7 +153,6 @@
"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": {
@ -181,12 +168,6 @@
"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": {
@ -463,15 +444,11 @@
"follows_you": "Follows You" "follows_you": "Follows You"
}, },
"dashboard": { "dashboard": {
"my_posts": "posts", "posts": "posts",
"my_following": "following", "following": "following",
"my_followers": "followers", "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",
@ -584,7 +561,7 @@
"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": "Favorites" "title": "Your Favorites"
}, },
"notification": { "notification": {
"title": { "title": {
@ -745,18 +722,6 @@
}, },
"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,11 +15,11 @@
<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 notification</string>
<key>many</key> <key>many</key>
<string>%ld unread notifications</string> <string>%ld unread notification</string>
<key>other</key> <key>other</key>
<string>%ld unread notifications</string> <string>%ld unread notification</string>
</dict> </dict>
</dict> </dict>
<key>a11y.plural.count.input_limit_exceeds</key> <key>a11y.plural.count.input_limit_exceeds</key>

View File

@ -51,11 +51,6 @@
"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": {
@ -83,7 +78,6 @@
"sign_up": "Create account", "sign_up": "Create account",
"see_more": "Ещё", "see_more": "Ещё",
"preview": "Предпросмотр", "preview": "Предпросмотр",
"copy": "Copy",
"share": "Поделиться", "share": "Поделиться",
"share_user": "Поделиться %s", "share_user": "Поделиться %s",
"share_post": "Поделиться постом", "share_post": "Поделиться постом",
@ -97,16 +91,12 @@
"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_and_explore": "Search and Explore", "search": "Поиск",
"notifications": "Notifications", "notification": "Уведомление",
"profile": "Профиль" "profile": "Профиль"
}, },
"keyboard": { "keyboard": {
@ -142,8 +132,6 @@
"sensitive_content": "Sensitive Content", "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": "Завершён"
@ -165,7 +153,6 @@
"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": "Нажмите и удерживайте, чтобы показать меню"
}, },
"tag": { "tag": {
@ -181,12 +168,6 @@
"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": {
@ -463,15 +444,11 @@
"follows_you": "Подписан(а) на вас" "follows_you": "Подписан(а) на вас"
}, },
"dashboard": { "dashboard": {
"my_posts": "posts", "posts": "посты",
"my_following": "following", "following": "подписки",
"my_followers": "followers", "followers": "подписчики"
"other_posts": "posts",
"other_following": "following",
"other_followers": "followers"
}, },
"fields": { "fields": {
"joined": "Joined",
"add_row": "Добавить строку", "add_row": "Добавить строку",
"placeholder": { "placeholder": {
"label": "Ярлык", "label": "Ярлык",
@ -745,18 +722,6 @@
}, },
"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 notifications</string> <string>%ld unread notification</string>
</dict> </dict>
</dict> </dict>
<key>a11y.plural.count.input_limit_exceeds</key> <key>a11y.plural.count.input_limit_exceeds</key>

View File

@ -51,11 +51,6 @@
"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": {
@ -83,7 +78,6 @@
"sign_up": "Create account", "sign_up": "Create account",
"see_more": "තව බලන්න", "see_more": "තව බලන්න",
"preview": "පෙරදසුන", "preview": "පෙරදසුන",
"copy": "Copy",
"share": "බෙදාගන්න", "share": "බෙදාගන්න",
"share_user": "%s බෙදාගන්න", "share_user": "%s බෙදාගන්න",
"share_post": "Share Post", "share_post": "Share Post",
@ -97,16 +91,12 @@
"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_and_explore": "Search and Explore", "search": "Search",
"notifications": "Notifications", "notification": "Notification",
"profile": "Profile" "profile": "Profile"
}, },
"keyboard": { "keyboard": {
@ -142,8 +132,6 @@
"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": "ඡන්දය",
"closed": "වසා ඇත" "closed": "වසා ඇත"
@ -165,7 +153,6 @@
"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": {
@ -181,12 +168,6 @@
"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": {
@ -463,15 +444,11 @@
"follows_you": "Follows You" "follows_you": "Follows You"
}, },
"dashboard": { "dashboard": {
"my_posts": "posts", "posts": "posts",
"my_following": "following", "following": "following",
"my_followers": "followers", "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": "නම්පත",
@ -584,7 +561,7 @@
"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": "Favorites" "title": "Your Favorites"
}, },
"notification": { "notification": {
"title": { "title": {
@ -745,18 +722,6 @@
}, },
"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

@ -51,11 +51,6 @@
"clean_cache": { "clean_cache": {
"title": "Počisti predpomnilnik", "title": "Počisti predpomnilnik",
"message": "Uspešno počiščem predpomnilnik %s." "message": "Uspešno počiščem predpomnilnik %s."
},
"translation_failed": {
"title": "Opomba",
"message": "Prevod je spodletel. Morda skrbnik ni omogočil prevajanja na tem strežniku ali pa strežnik teče na starejši različici Masotodona, na kateri prevajanje še ni podprto.",
"button": "V redu"
} }
}, },
"controls": { "controls": {
@ -83,7 +78,6 @@
"sign_up": "Ustvari račun", "sign_up": "Ustvari račun",
"see_more": "Pokaži več", "see_more": "Pokaži več",
"preview": "Predogled", "preview": "Predogled",
"copy": "Kopiraj",
"share": "Deli", "share": "Deli",
"share_user": "Deli %s", "share_user": "Deli %s",
"share_post": "Deli objavo", "share_post": "Deli objavo",
@ -97,16 +91,12 @@
"block_domain": "Blokiraj %s", "block_domain": "Blokiraj %s",
"unblock_domain": "Odblokiraj %s", "unblock_domain": "Odblokiraj %s",
"settings": "Nastavitve", "settings": "Nastavitve",
"delete": "Izbriši", "delete": "Izbriši"
"translate_post": {
"title": "Prevedi iz: %s",
"unknown_language": "Neznano"
}
}, },
"tabs": { "tabs": {
"home": "Domov", "home": "Domov",
"search_and_explore": "Poišči in razišči", "search": "Iskanje",
"notifications": "Obvestila", "notification": "Obvestilo",
"profile": "Profil" "profile": "Profil"
}, },
"keyboard": { "keyboard": {
@ -142,8 +132,6 @@
"sensitive_content": "Občutljiva vsebina", "sensitive_content": "Občutljiva vsebina",
"media_content_warning": "Tapnite kamorkoli, da razkrijete", "media_content_warning": "Tapnite kamorkoli, da razkrijete",
"tap_to_reveal": "Tapnite za razkritje", "tap_to_reveal": "Tapnite za razkritje",
"load_embed": "Naloži vdelano",
"link_via_user": "%s prek %s",
"poll": { "poll": {
"vote": "Glasuj", "vote": "Glasuj",
"closed": "Zaprto" "closed": "Zaprto"
@ -165,7 +153,6 @@
"show_image": "Pokaži sliko", "show_image": "Pokaži sliko",
"show_gif": "Pokaži GIF", "show_gif": "Pokaži GIF",
"show_video_player": "Pokaži predvajalnik", "show_video_player": "Pokaži predvajalnik",
"share_link_in_post": "Deli povezavo v objavi",
"tap_then_hold_to_show_menu": "Tapnite, nato držite, da se pojavi meni" "tap_then_hold_to_show_menu": "Tapnite, nato držite, da se pojavi meni"
}, },
"tag": { "tag": {
@ -181,12 +168,6 @@
"private": "Samo sledilci osebe lahko vidijo to objavo.", "private": "Samo sledilci osebe lahko vidijo to objavo.",
"private_from_me": "Samo moji sledilci lahko vidijo to objavo.", "private_from_me": "Samo moji sledilci lahko vidijo to objavo.",
"direct": "Samo omenjeni uporabnik lahko vidi to objavo." "direct": "Samo omenjeni uporabnik lahko vidi to objavo."
},
"translation": {
"translated_from": "Prevedeno iz %s s pomočjo %s",
"unknown_language": "Neznano",
"unknown_provider": "Neznano",
"show_original": "Pokaži izvirnik"
} }
}, },
"friendship": { "friendship": {
@ -463,15 +444,11 @@
"follows_you": "Vam sledi" "follows_you": "Vam sledi"
}, },
"dashboard": { "dashboard": {
"my_posts": "objav", "posts": "Objave",
"my_following": "sledi", "following": "sledi",
"my_followers": "sledilcev", "followers": "sledilcev"
"other_posts": "objav",
"other_following": "sledi",
"other_followers": "sledilcev"
}, },
"fields": { "fields": {
"joined": "Pridružen_a",
"add_row": "Dodaj vrstico", "add_row": "Dodaj vrstico",
"placeholder": { "placeholder": {
"label": "Oznaka", "label": "Oznaka",
@ -745,18 +722,6 @@
}, },
"bookmark": { "bookmark": {
"title": "Zaznamki" "title": "Zaznamki"
},
"followed_tags": {
"title": "Sledene značke",
"header": {
"posts": "objav",
"participants": "udeležencev",
"posts_today": "objav danes"
},
"actions": {
"follow": "Sledi",
"unfollow": "Prenehaj slediti"
}
} }
} }
} }

View File

@ -280,7 +280,7 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>1 år kvar</string> <string>%ld år kvar</string>
<key>other</key> <key>other</key>
<string>%ld år kvar</string> <string>%ld år kvar</string>
</dict> </dict>
@ -296,7 +296,7 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>1 månad kvar</string> <string>%ld månad kvar</string>
<key>other</key> <key>other</key>
<string>%ld månader kvar</string> <string>%ld månader kvar</string>
</dict> </dict>
@ -312,7 +312,7 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>1 dag kvar</string> <string>%ld dag kvar</string>
<key>other</key> <key>other</key>
<string>%ld dagar kvar</string> <string>%ld dagar kvar</string>
</dict> </dict>
@ -360,7 +360,7 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>1 sekund kvar</string> <string>%ld sekund kvar</string>
<key>other</key> <key>other</key>
<string>%ld sekunder kvar</string> <string>%ld sekunder kvar</string>
</dict> </dict>
@ -408,7 +408,7 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>1d sedan</string> <string>%ldd sedan</string>
<key>other</key> <key>other</key>
<string>%ldd sedan</string> <string>%ldd sedan</string>
</dict> </dict>
@ -424,7 +424,7 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>1t sedan</string> <string>%ldt sedan</string>
<key>other</key> <key>other</key>
<string>%ldt sedan</string> <string>%ldt sedan</string>
</dict> </dict>

View File

@ -51,11 +51,6 @@
"clean_cache": { "clean_cache": {
"title": "Rensa cache", "title": "Rensa cache",
"message": "Rensade %s cache." "message": "Rensade %s cache."
},
"translation_failed": {
"title": "Anteckning",
"message": "Översättningen misslyckades. Det kan hända att administratören inte har aktiverat översättningar på den här servern eller att servern kör en äldre version av Mastodon som inte har stöd för översättningar ännu.",
"button": "OK"
} }
}, },
"controls": { "controls": {
@ -83,7 +78,6 @@
"sign_up": "Skapa konto", "sign_up": "Skapa konto",
"see_more": "Visa mer", "see_more": "Visa mer",
"preview": "Förhandsvisa", "preview": "Förhandsvisa",
"copy": "Kopiera",
"share": "Dela", "share": "Dela",
"share_user": "Dela %s", "share_user": "Dela %s",
"share_post": "Dela inlägg", "share_post": "Dela inlägg",
@ -97,16 +91,12 @@
"block_domain": "Blockera %s", "block_domain": "Blockera %s",
"unblock_domain": "Avblockera %s", "unblock_domain": "Avblockera %s",
"settings": "Inställningar", "settings": "Inställningar",
"delete": "Radera", "delete": "Radera"
"translate_post": {
"title": "Översätt från %s",
"unknown_language": "Okänt"
}
}, },
"tabs": { "tabs": {
"home": "Hem", "home": "Hem",
"search_and_explore": "Sök och utforska", "search": "Sök",
"notifications": "Notiser", "notification": "Notis",
"profile": "Profil" "profile": "Profil"
}, },
"keyboard": { "keyboard": {
@ -142,8 +132,6 @@
"sensitive_content": "Känsligt innehåll", "sensitive_content": "Känsligt innehåll",
"media_content_warning": "Tryck var som helst för att visa", "media_content_warning": "Tryck var som helst för att visa",
"tap_to_reveal": "Tryck för att visa", "tap_to_reveal": "Tryck för att visa",
"load_embed": "Ladda inbäddning",
"link_via_user": "%s via %s",
"poll": { "poll": {
"vote": "Rösta", "vote": "Rösta",
"closed": "Stängd" "closed": "Stängd"
@ -165,7 +153,6 @@
"show_image": "Visa bild", "show_image": "Visa bild",
"show_gif": "Visa GIF", "show_gif": "Visa GIF",
"show_video_player": "Visa videospelare", "show_video_player": "Visa videospelare",
"share_link_in_post": "Dela länk i inlägg",
"tap_then_hold_to_show_menu": "Tryck och håll ned för att visa menyn" "tap_then_hold_to_show_menu": "Tryck och håll ned för att visa menyn"
}, },
"tag": { "tag": {
@ -181,12 +168,6 @@
"private": "Endast deras följare kan se detta inlägg.", "private": "Endast deras följare kan se detta inlägg.",
"private_from_me": "Bara mina följare kan se det här inlägget.", "private_from_me": "Bara mina följare kan se det här inlägget.",
"direct": "Endast omnämnda användare kan se detta inlägg." "direct": "Endast omnämnda användare kan se detta inlägg."
},
"translation": {
"translated_from": "Översatt från %s med %s",
"unknown_language": "Okänt",
"unknown_provider": "Okänd",
"show_original": "Visa original"
} }
}, },
"friendship": { "friendship": {
@ -463,15 +444,11 @@
"follows_you": "Följer dig" "follows_you": "Följer dig"
}, },
"dashboard": { "dashboard": {
"my_posts": "inlägg", "posts": "inlägg",
"my_following": "följer", "following": "följer",
"my_followers": "följare", "followers": "följare"
"other_posts": "inlägg",
"other_following": "följer",
"other_followers": "följare"
}, },
"fields": { "fields": {
"joined": "Gick med",
"add_row": "Lägg till rad", "add_row": "Lägg till rad",
"placeholder": { "placeholder": {
"label": "Etikett", "label": "Etikett",
@ -745,18 +722,6 @@
}, },
"bookmark": { "bookmark": {
"title": "Bokmärken" "title": "Bokmärken"
},
"followed_tags": {
"title": "Följda hashtaggar",
"header": {
"posts": "inlägg",
"participants": "deltagare",
"posts_today": "inlägg idag"
},
"actions": {
"follow": "Följ",
"unfollow": "Avfölj"
}
} }
} }
} }

View File

@ -51,11 +51,6 @@
"clean_cache": { "clean_cache": {
"title": "ล้างแคช", "title": "ล้างแคช",
"message": "ล้างแคช %s สำเร็จ" "message": "ล้างแคช %s สำเร็จ"
},
"translation_failed": {
"title": "หมายเหตุ",
"message": "การแปลล้มเหลว บางทีผู้ดูแลอาจไม่ได้เปิดใช้งานการแปลในเซิร์ฟเวอร์นี้หรือเซิร์ฟเวอร์นี้กำลังใช้ Mastodon รุ่นเก่ากว่าที่ยังไม่รองรับการแปล",
"button": "ตกลง"
} }
}, },
"controls": { "controls": {
@ -83,7 +78,6 @@
"sign_up": "สร้างบัญชี", "sign_up": "สร้างบัญชี",
"see_more": "ดูเพิ่มเติม", "see_more": "ดูเพิ่มเติม",
"preview": "แสดงตัวอย่าง", "preview": "แสดงตัวอย่าง",
"copy": "คัดลอก",
"share": "แบ่งปัน", "share": "แบ่งปัน",
"share_user": "แบ่งปัน %s", "share_user": "แบ่งปัน %s",
"share_post": "แบ่งปันโพสต์", "share_post": "แบ่งปันโพสต์",
@ -97,16 +91,12 @@
"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_and_explore": "ค้นหาและสำรวจ", "search": "ค้นหา",
"notifications": "การแจ้งเตือน", "notification": "การแจ้งเตือน",
"profile": "โปรไฟล์" "profile": "โปรไฟล์"
}, },
"keyboard": { "keyboard": {
@ -142,8 +132,6 @@
"sensitive_content": "เนื้อหาที่ละเอียดอ่อน", "sensitive_content": "เนื้อหาที่ละเอียดอ่อน",
"media_content_warning": "แตะที่ใดก็ตามเพื่อเปิดเผย", "media_content_warning": "แตะที่ใดก็ตามเพื่อเปิดเผย",
"tap_to_reveal": "แตะเพื่อเปิดเผย", "tap_to_reveal": "แตะเพื่อเปิดเผย",
"load_embed": "โหลดที่ฝังไว้",
"link_via_user": "%s ผ่าน %s",
"poll": { "poll": {
"vote": "ลงคะแนน", "vote": "ลงคะแนน",
"closed": "ปิดแล้ว" "closed": "ปิดแล้ว"
@ -165,7 +153,6 @@
"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": {
@ -181,12 +168,6 @@
"private": "เฉพาะผู้ติดตามของเขาเท่านั้นที่สามารถเห็นโพสต์นี้", "private": "เฉพาะผู้ติดตามของเขาเท่านั้นที่สามารถเห็นโพสต์นี้",
"private_from_me": "เฉพาะผู้ติดตามของฉันเท่านั้นที่สามารถเห็นโพสต์นี้", "private_from_me": "เฉพาะผู้ติดตามของฉันเท่านั้นที่สามารถเห็นโพสต์นี้",
"direct": "เฉพาะผู้ใช้ที่กล่าวถึงเท่านั้นที่สามารถเห็นโพสต์นี้" "direct": "เฉพาะผู้ใช้ที่กล่าวถึงเท่านั้นที่สามารถเห็นโพสต์นี้"
},
"translation": {
"translated_from": "แปลจาก %s โดยใช้ %s",
"unknown_language": "ไม่รู้จัก",
"unknown_provider": "ไม่รู้จัก",
"show_original": "แสดงดั้งเดิมอยู่"
} }
}, },
"friendship": { "friendship": {
@ -463,15 +444,11 @@
"follows_you": "ติดตามคุณ" "follows_you": "ติดตามคุณ"
}, },
"dashboard": { "dashboard": {
"my_posts": "โพสต์", "posts": "โพสต์",
"my_following": "กำลังติดตาม", "following": "กำลังติดตาม",
"my_followers": "ผู้ติดตาม", "followers": "ผู้ติดตาม"
"other_posts": "โพสต์",
"other_following": "กำลังติดตาม",
"other_followers": "ผู้ติดตาม"
}, },
"fields": { "fields": {
"joined": "เข้าร่วมเมื่อ",
"add_row": "เพิ่มแถว", "add_row": "เพิ่มแถว",
"placeholder": { "placeholder": {
"label": "ป้ายชื่อ", "label": "ป้ายชื่อ",
@ -745,18 +722,6 @@
}, },
"bookmark": { "bookmark": {
"title": "ที่คั่นหน้า" "title": "ที่คั่นหน้า"
},
"followed_tags": {
"title": "แท็กที่ติดตาม",
"header": {
"posts": "โพสต์",
"participants": "ผู้เข้าร่วม",
"posts_today": "โพสต์วันนี้"
},
"actions": {
"follow": "ติดตาม",
"unfollow": "เลิกติดตาม"
}
} }
} }
} }

View File

@ -53,7 +53,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@ kaldı</string> <string>%#@character_count@ left</string>
<key>character_count</key> <key>character_count</key>
<dict> <dict>
<key>NSStringFormatSpecTypeKey</key> <key>NSStringFormatSpecTypeKey</key>
@ -61,9 +61,9 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>1 karakter</string> <string>1 character</string>
<key>other</key> <key>other</key>
<string>%ld karakter</string> <string>%ld characters</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.followed_by_and_mutual</key> <key>plural.count.followed_by_and_mutual</key>
@ -88,9 +88,9 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>%1$@ ve bir ortak kişi tarafından takip edildi</string> <string>Followed by %1$@, and another mutual</string>
<key>other</key> <key>other</key>
<string>%1$@ ve %ld ortak kişi tarafından takip edildi</string> <string>Followed by %1$@, and %ld mutuals</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.metric_formatted.post</key> <key>plural.count.metric_formatted.post</key>
@ -120,9 +120,9 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>1 medya</string> <string>1 media</string>
<key>other</key> <key>other</key>
<string>%ld medya</string> <string>%ld media</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.post</key> <key>plural.count.post</key>

View File

@ -51,11 +51,6 @@
"clean_cache": { "clean_cache": {
"title": "Önbelleği Temizle", "title": "Önbelleği Temizle",
"message": "%s boyutunda önbellek temizlendi." "message": "%s boyutunda önbellek temizlendi."
},
"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": {
@ -79,11 +74,10 @@
"take_photo": "Fotoğraf Çek", "take_photo": "Fotoğraf Çek",
"save_photo": "Fotoğrafı Kaydet", "save_photo": "Fotoğrafı Kaydet",
"copy_photo": "Fotoğrafı Kopyala", "copy_photo": "Fotoğrafı Kopyala",
"sign_in": "Giriş Yap", "sign_in": "Log in",
"sign_up": "Hesap oluştur", "sign_up": "Create account",
"see_more": "Daha Fazla Gör", "see_more": "Daha Fazla Gör",
"preview": "Önizleme", "preview": "Önizleme",
"copy": "Copy",
"share": "Paylaş", "share": "Paylaş",
"share_user": "%s ile paylaş", "share_user": "%s ile paylaş",
"share_post": "Gönderiyi Paylaş", "share_post": "Gönderiyi Paylaş",
@ -97,16 +91,12 @@
"block_domain": "%s kişisini engelle", "block_domain": "%s kişisini engelle",
"unblock_domain": "%s kişisinin engelini kaldır", "unblock_domain": "%s kişisinin engelini kaldır",
"settings": "Ayarlar", "settings": "Ayarlar",
"delete": "Sil", "delete": "Sil"
"translate_post": {
"title": "Translate from %s",
"unknown_language": "Unknown"
}
}, },
"tabs": { "tabs": {
"home": "Ana Sayfa", "home": "Ana Sayfa",
"search_and_explore": "Ara ve Keşfet", "search": "Arama",
"notifications": "Bildirimler", "notification": "Bildirimler",
"profile": "Profil" "profile": "Profil"
}, },
"keyboard": { "keyboard": {
@ -142,17 +132,15 @@
"sensitive_content": "Hassas İçerik", "sensitive_content": "Hassas İçerik",
"media_content_warning": "Göstermek için herhangi bir yere basın", "media_content_warning": "Göstermek için herhangi bir yere basın",
"tap_to_reveal": "Göstermek için basın", "tap_to_reveal": "Göstermek için basın",
"load_embed": "Load Embed",
"link_via_user": "%s via %s",
"poll": { "poll": {
"vote": "Oy ver", "vote": "Oy ver",
"closed": "Kapandı" "closed": "Kapandı"
}, },
"meta_entity": { "meta_entity": {
"url": "Bağlantı: %s", "url": "Link: %s",
"hashtag": "Etiket: %s", "hashtag": "Hashtag: %s",
"mention": "Profili Göster: %s", "mention": "Show Profile: %s",
"email": "E-posta adresi: %s" "email": "Email address: %s"
}, },
"actions": { "actions": {
"reply": "Yanıtla", "reply": "Yanıtla",
@ -165,7 +153,6 @@
"show_image": "Görüntüyü göster", "show_image": "Görüntüyü göster",
"show_gif": "GIF'i göster", "show_gif": "GIF'i göster",
"show_video_player": "Video oynatıcıyı göster", "show_video_player": "Video oynatıcıyı göster",
"share_link_in_post": "Share Link in Post",
"tap_then_hold_to_show_menu": "Menüyü göstermek için dokunun ve basılı tutun" "tap_then_hold_to_show_menu": "Menüyü göstermek için dokunun ve basılı tutun"
}, },
"tag": { "tag": {
@ -181,12 +168,6 @@
"private": "Sadece gönderi sahibinin takipçileri bu gönderiyi görebilir.", "private": "Sadece gönderi sahibinin takipçileri bu gönderiyi görebilir.",
"private_from_me": "Sadece benim takipçilerim bu gönderiyi görebilir.", "private_from_me": "Sadece benim takipçilerim bu gönderiyi görebilir.",
"direct": "Sadece bahsedilen kullanıcı bu gönderiyi görebilir." "direct": "Sadece bahsedilen kullanıcı bu gönderiyi görebilir."
},
"translation": {
"translated_from": "Translated from %s using %s",
"unknown_language": "Unknown",
"unknown_provider": "Unknown",
"show_original": "Shown Original"
} }
}, },
"friendship": { "friendship": {
@ -206,8 +187,8 @@
"unmute_user": "Sesini aç %s", "unmute_user": "Sesini aç %s",
"muted": "Susturuldu", "muted": "Susturuldu",
"edit_info": "Bilgiyi Düzenle", "edit_info": "Bilgiyi Düzenle",
"show_reblogs": "Yeniden Paylaşımları Göster", "show_reblogs": "Show Reblogs",
"hide_reblogs": "Yeniden Paylaşımları Gizle" "hide_reblogs": "Hide Reblogs"
}, },
"timeline": { "timeline": {
"filtered": "Filtrelenmiş", "filtered": "Filtrelenmiş",
@ -238,15 +219,15 @@
"log_in": "Oturum Aç" "log_in": "Oturum Aç"
}, },
"login": { "login": {
"title": "Tekrar hoş geldin", "title": "Welcome back",
"subtitle": "Hesabını oluşturduğun sunucuya giriş yap.", "subtitle": "Log you in on the server you created your account on.",
"server_search_field": { "server_search_field": {
"placeholder": "Bir URL girin ya da sunucunuzu arayın" "placeholder": "Enter URL or search for your server"
} }
}, },
"server_picker": { "server_picker": {
"title": "Mastodon, farklı topluluklardaki kullanıcılardan oluşur.", "title": "Mastodon, farklı topluluklardaki kullanıcılardan oluşur.",
"subtitle": "Bölgenize dayalı, ilginize dayalı ya da genel amaçlı bir sunucu seçin. Hangi sunucuda olduğunuz fark etmeksizin Mastodon'daki herkes ile konuşabilirsiniz.", "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": { "button": {
"category": { "category": {
"all": "Tümü", "all": "Tümü",
@ -273,7 +254,7 @@
"category": "KATEGORİ" "category": "KATEGORİ"
}, },
"input": { "input": {
"search_servers_or_enter_url": "Topluluklar arayın ya da bir URL girin" "search_servers_or_enter_url": "Search communities or enter URL"
}, },
"empty_state": { "empty_state": {
"finding_servers": "Mevcut sunucular aranıyor...", "finding_servers": "Mevcut sunucular aranıyor...",
@ -407,12 +388,12 @@
"attachment_broken": "Bu %s bozuk ve Mastodon'a\nyüklenemiyor.", "attachment_broken": "Bu %s bozuk ve Mastodon'a\nyüklenemiyor.",
"description_photo": "Görme engelliler için fotoğrafı tarif edin...", "description_photo": "Görme engelliler için fotoğrafı tarif edin...",
"description_video": "Görme engelliler için videoyu tarif edin...", "description_video": "Görme engelliler için videoyu tarif edin...",
"load_failed": "Yükleme Başarısız", "load_failed": "Load Failed",
"upload_failed": "Yükleme Başarısız", "upload_failed": "Upload Failed",
"can_not_recognize_this_media_attachment": "Ekteki medya uzantısı görüntülenemiyor", "can_not_recognize_this_media_attachment": "Can not recognize this media attachment",
"attachment_too_large": "Ek boyutu çok büyük", "attachment_too_large": "Attachment too large",
"compressing_state": "Sıkıştırılıyor...", "compressing_state": "Compressing...",
"server_processing_state": "Sunucu İşliyor..." "server_processing_state": "Server Processing..."
}, },
"poll": { "poll": {
"duration_time": "Süre: %s", "duration_time": "Süre: %s",
@ -423,7 +404,7 @@
"three_days": "3 Gün", "three_days": "3 Gün",
"seven_days": "7 Gün", "seven_days": "7 Gün",
"option_number": "Seçenek %ld", "option_number": "Seçenek %ld",
"the_poll_is_invalid": "Anket geçersiz", "the_poll_is_invalid": "The poll is invalid",
"the_poll_has_empty_option": "The poll has empty option" "the_poll_has_empty_option": "The poll has empty option"
}, },
"content_warning": { "content_warning": {
@ -446,8 +427,8 @@
"enable_content_warning": "İçerik Uyarısını Etkinleştir", "enable_content_warning": "İçerik Uyarısını Etkinleştir",
"disable_content_warning": "İçerik Uyarısını Kapat", "disable_content_warning": "İçerik Uyarısını Kapat",
"post_visibility_menu": "Gönderi Görünürlüğü Menüsü", "post_visibility_menu": "Gönderi Görünürlüğü Menüsü",
"post_options": "Gönderi Seçenekleri", "post_options": "Post Options",
"posting_as": "%s olarak paylaşılıyor" "posting_as": "Posting as %s"
}, },
"keyboard": { "keyboard": {
"discard_post": "Gönderiyi İptal Et", "discard_post": "Gönderiyi İptal Et",
@ -463,23 +444,19 @@
"follows_you": "Seni takip ediyor" "follows_you": "Seni takip ediyor"
}, },
"dashboard": { "dashboard": {
"my_posts": "posts", "posts": "gönderiler",
"my_following": "following", "following": "takip ediliyor",
"my_followers": "followers", "followers": "takipçi"
"other_posts": "posts",
"other_following": "following",
"other_followers": "followers"
}, },
"fields": { "fields": {
"joined": "Joined",
"add_row": "Satır Ekle", "add_row": "Satır Ekle",
"placeholder": { "placeholder": {
"label": "Etiket", "label": "Etiket",
"content": "İçerik" "content": "İçerik"
}, },
"verified": { "verified": {
"short": "%s tarafında onaylı", "short": "Verified on %s",
"long": "%s adresinin sahipliği kontrol edilmiş" "long": "Ownership of this link was checked on %s"
} }
}, },
"segmented_control": { "segmented_control": {
@ -507,12 +484,12 @@
"message": "%s engellemeyi kaldırmayı onaylayın" "message": "%s engellemeyi kaldırmayı onaylayın"
}, },
"confirm_show_reblogs": { "confirm_show_reblogs": {
"title": "Yeniden Paylaşımları Göster", "title": "Show Reblogs",
"message": "Yeniden paylaşımları göstermeyi onayla" "message": "Confirm to show reblogs"
}, },
"confirm_hide_reblogs": { "confirm_hide_reblogs": {
"title": "Yeniden Paylaşımları Gizle", "title": "Hide Reblogs",
"message": "Yeniden paylaşımları gizlemeyi onayla" "message": "Confirm to hide reblogs"
} }
}, },
"accessibility": { "accessibility": {
@ -531,8 +508,8 @@
"footer": "Diğer sunucudaki takip edilenler gösterilemiyor." "footer": "Diğer sunucudaki takip edilenler gösterilemiyor."
}, },
"familiarFollowers": { "familiarFollowers": {
"title": "Tanıyor olabileceğin takipçiler", "title": "Followers you familiar",
"followed_by_names": "%s tarafından takip ediliyor" "followed_by_names": "Followed by %s"
}, },
"favorited_by": { "favorited_by": {
"title": "Favorited By" "title": "Favorited By"
@ -604,10 +581,10 @@
"show_mentions": "Bahsetmeleri Göster" "show_mentions": "Bahsetmeleri Göster"
}, },
"follow_request": { "follow_request": {
"accept": "Kabul Et", "accept": "Accept",
"accepted": "Kabul Edildi", "accepted": "Accepted",
"reject": "Reddet", "reject": "reject",
"rejected": "Reddedildi" "rejected": "Rejected"
} }
}, },
"thread": { "thread": {
@ -692,9 +669,9 @@
"i_dont_like_it": "Beğenmedim", "i_dont_like_it": "Beğenmedim",
"it_is_not_something_you_want_to_see": "Görmek isteyeceğim bir şey değil", "it_is_not_something_you_want_to_see": "Görmek isteyeceğim bir şey değil",
"its_spam": "Spam", "its_spam": "Spam",
"malicious_links_fake_engagement_or_repetetive_replies": "Kötü niyetli bağlantılar, sahte etkileşim veya tekrarlayan yanıtlar", "malicious_links_fake_engagement_or_repetetive_replies": "Malicious links, fake engagement, or repetetive replies",
"it_violates_server_rules": "Sunucu kurallarını ihlal ediyor", "it_violates_server_rules": "Sunucu kurallarını ihlal ediyor",
"you_are_aware_that_it_breaks_specific_rules": "Belirli kuralları ihlal ettiğinin farkındasınız", "you_are_aware_that_it_breaks_specific_rules": "You are aware that it breaks specific rules",
"its_something_else": "Başka bir şey", "its_something_else": "Başka bir şey",
"the_issue_does_not_fit_into_other_categories": "Sorun bunlardan biri değil" "the_issue_does_not_fit_into_other_categories": "Sorun bunlardan biri değil"
}, },
@ -715,15 +692,15 @@
}, },
"step_final": { "step_final": {
"dont_want_to_see_this": "Bunu görmek istemiyor musunuz?", "dont_want_to_see_this": "Bunu görmek istemiyor musunuz?",
"when_you_see_something_you_dont_like_on_mastodon_you_can_remove_the_person_from_your_experience.": "Mastodon'da beğenmediğiniz bir şey gördüğünüzde, o kişiyi deneyiminizden çıkarabilirsiniz.", "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": "Takibi bırak", "unfollow": "Takibi bırak",
"unfollowed": "Takipten çıkıldı", "unfollowed": "Unfollowed",
"unfollow_user": "Takipten çık %s", "unfollow_user": "Takipten çık %s",
"mute_user": "Sustur %s", "mute_user": "Sustur %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": "%s kişisini engelle", "block_user": "Block %s",
"they_will_no_longer_be_able_to_follow_or_see_your_posts_but_they_can_see_if_theyve_been_blocked": "Artık sizi takip edemez ve gönderilerinizi göremezler ama engellendiklerini görebilirler.", "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": "Biz bunu incelerken siz %s hesabına karşı önlem alabilirsiniz" "while_we_review_this_you_can_take_action_against_user": "While we review this, you can take action against %s"
} }
}, },
"preview": { "preview": {
@ -744,19 +721,7 @@
"accessibility_hint": "Bu yardımı kapatmak için çift tıklayın" "accessibility_hint": "Bu yardımı kapatmak için çift tıklayın"
}, },
"bookmark": { "bookmark": {
"title": "Yer İmleri" "title": "Bookmarks"
},
"followed_tags": {
"title": "Takip Edilen Etiketler",
"header": {
"posts": "gönderiler",
"participants": "katılımcılar",
"posts_today": "posts today"
},
"actions": {
"follow": "Takip et",
"unfollow": "Takibi bırak"
}
} }
} }
} }

View File

@ -13,19 +13,19 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>1 не прочитане сповіщення</string> <string>1 unread notification</string>
<key>few</key> <key>few</key>
<string>%ld не прочитаних сповіщень</string> <string>%ld unread notification</string>
<key>many</key> <key>many</key>
<string>%ld не прочитаних сповіщень</string> <string>%ld unread notification</string>
<key>other</key> <key>other</key>
<string>%ld не прочитаних сповіщень</string> <string>%ld unread notification</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>Перевищено ліміт вводу на %#@character_count@</string> <string>Input limit exceeds %#@character_count@</string>
<key>character_count</key> <key>character_count</key>
<dict> <dict>
<key>NSStringFormatSpecTypeKey</key> <key>NSStringFormatSpecTypeKey</key>
@ -33,19 +33,19 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>1 символ</string> <string>1 character</string>
<key>few</key> <key>few</key>
<string>%ld символи</string> <string>%ld characters</string>
<key>many</key> <key>many</key>
<string>%ld символів</string> <string>%ld characters</string>
<key>other</key> <key>other</key>
<string>%ld символів</string> <string>%ld characters</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>Залишається вхідний ліміт %#@character_count@</string> <string>Input limit remains %#@character_count@</string>
<key>character_count</key> <key>character_count</key>
<dict> <dict>
<key>NSStringFormatSpecTypeKey</key> <key>NSStringFormatSpecTypeKey</key>
@ -53,19 +53,19 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>1 символ</string> <string>1 character</string>
<key>few</key> <key>few</key>
<string>%ld символи</string> <string>%ld characters</string>
<key>many</key> <key>many</key>
<string>%ld символів</string> <string>%ld characters</string>
<key>other</key> <key>other</key>
<string>%ld символів</string> <string>%ld characters</string>
</dict> </dict>
</dict> </dict>
<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@ ліворуч</string> <string>%#@character_count@ left</string>
<key>character_count</key> <key>character_count</key>
<dict> <dict>
<key>NSStringFormatSpecTypeKey</key> <key>NSStringFormatSpecTypeKey</key>
@ -73,13 +73,13 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>1 символ</string> <string>1 character</string>
<key>few</key> <key>few</key>
<string>%ld символи</string> <string>%ld characters</string>
<key>many</key> <key>many</key>
<string>%ld символів</string> <string>%ld characters</string>
<key>other</key> <key>other</key>
<string>%ld символів</string> <string>%ld characters</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.followed_by_and_mutual</key> <key>plural.count.followed_by_and_mutual</key>
@ -108,13 +108,13 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>Читають %1$@ та інші</string> <string>Followed by %1$@, and another mutual</string>
<key>few</key> <key>few</key>
<string>Читають %1$@, та %ld взаємних</string> <string>Followed by %1$@, and %ld mutuals</string>
<key>many</key> <key>many</key>
<string>Читають %1$@, та %ld взаємних</string> <string>Followed by %1$@, and %ld mutuals</string>
<key>other</key> <key>other</key>
<string>Читають %1$@, та %ld взаємних</string> <string>Followed by %1$@, and %ld mutuals</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.metric_formatted.post</key> <key>plural.count.metric_formatted.post</key>
@ -128,13 +128,13 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>допис</string> <string>post</string>
<key>few</key> <key>few</key>
<string>дописи</string> <string>posts</string>
<key>many</key> <key>many</key>
<string>дописів</string> <string>posts</string>
<key>other</key> <key>other</key>
<string>дописів</string> <string>posts</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.media</key> <key>plural.count.media</key>
@ -148,13 +148,13 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>медіа</string> <string>1 media</string>
<key>few</key> <key>few</key>
<string>%ld медіа</string> <string>%ld media</string>
<key>many</key> <key>many</key>
<string>%ld медіа</string> <string>%ld media</string>
<key>other</key> <key>other</key>
<string>%ld медіа</string> <string>%ld media</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.post</key> <key>plural.count.post</key>
@ -168,13 +168,13 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>1 пост</string> <string>1 post</string>
<key>few</key> <key>few</key>
<string>%ld пости</string> <string>%ld posts</string>
<key>many</key> <key>many</key>
<string>%ld постів</string> <string>%ld posts</string>
<key>other</key> <key>other</key>
<string>%ld постів</string> <string>%ld posts</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.favorite</key> <key>plural.count.favorite</key>
@ -188,13 +188,13 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>1 улюблене</string> <string>1 favorite</string>
<key>few</key> <key>few</key>
<string>%ld улюблених</string> <string>%ld favorites</string>
<key>many</key> <key>many</key>
<string>%ld улюблених</string> <string>%ld favorites</string>
<key>other</key> <key>other</key>
<string>%ld улюблених</string> <string>%ld favorites</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.reblog</key> <key>plural.count.reblog</key>
@ -208,13 +208,13 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>1 репост</string> <string>1 reblog</string>
<key>few</key> <key>few</key>
<string>%ld репости</string> <string>%ld reblogs</string>
<key>many</key> <key>many</key>
<string>%ld репостів</string> <string>%ld reblogs</string>
<key>other</key> <key>other</key>
<string>%ld репостів</string> <string>%ld reblogs</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.reply</key> <key>plural.count.reply</key>
@ -228,13 +228,13 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>1 відповідь</string> <string>1 reply</string>
<key>few</key> <key>few</key>
<string>%ld відповіді</string> <string>%ld replies</string>
<key>many</key> <key>many</key>
<string>%ld відповідей</string> <string>%ld replies</string>
<key>other</key> <key>other</key>
<string>%ld відповідей</string> <string>%ld replies</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.vote</key> <key>plural.count.vote</key>
@ -248,13 +248,13 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>1 голос</string> <string>1 vote</string>
<key>few</key> <key>few</key>
<string>%ld голоси</string> <string>%ld votes</string>
<key>many</key> <key>many</key>
<string>%ld голосів</string> <string>%ld votes</string>
<key>other</key> <key>other</key>
<string>%ld голосів</string> <string>%ld votes</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.voter</key> <key>plural.count.voter</key>
@ -268,13 +268,13 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>1 учасник голосування</string> <string>1 voter</string>
<key>few</key> <key>few</key>
<string>%ld учасники голосування</string> <string>%ld voters</string>
<key>many</key> <key>many</key>
<string>%ld учасників голосування</string> <string>%ld voters</string>
<key>other</key> <key>other</key>
<string>%ld учасників голосування</string> <string>%ld voters</string>
</dict> </dict>
</dict> </dict>
<key>plural.people_talking</key> <key>plural.people_talking</key>
@ -288,13 +288,13 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>1 людина говорить</string> <string>1 people talking</string>
<key>few</key> <key>few</key>
<string>%ld людей говорять</string> <string>%ld people talking</string>
<key>many</key> <key>many</key>
<string>%ld людей говорять</string> <string>%ld people talking</string>
<key>other</key> <key>other</key>
<string>%ld людей говорять</string> <string>%ld people talking</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.following</key> <key>plural.count.following</key>
@ -308,13 +308,13 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>підписаний</string> <string>1 following</string>
<key>few</key> <key>few</key>
<string>Підписаний на %ld</string> <string>%ld following</string>
<key>many</key> <key>many</key>
<string>Підписаний на %ld</string> <string>%ld following</string>
<key>other</key> <key>other</key>
<string>Підписаний на %ld</string> <string>%ld following</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.follower</key> <key>plural.count.follower</key>
@ -328,13 +328,13 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>1 підписник</string> <string>1 follower</string>
<key>few</key> <key>few</key>
<string>%ld підписників</string> <string>%ld followers</string>
<key>many</key> <key>many</key>
<string>%ld підписників</string> <string>%ld followers</string>
<key>other</key> <key>other</key>
<string>%ld підписників</string> <string>%ld followers</string>
</dict> </dict>
</dict> </dict>
<key>date.year.left</key> <key>date.year.left</key>
@ -348,13 +348,13 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>залишився 1 рік</string> <string>1 year left</string>
<key>few</key> <key>few</key>
<string>%ld років залишилося</string> <string>%ld years left</string>
<key>many</key> <key>many</key>
<string>%ld років залишилося</string> <string>%ld years left</string>
<key>other</key> <key>other</key>
<string>%ld років залишилося</string> <string>%ld years left</string>
</dict> </dict>
</dict> </dict>
<key>date.month.left</key> <key>date.month.left</key>
@ -368,13 +368,13 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>1 місяць залишився</string> <string>1 months left</string>
<key>few</key> <key>few</key>
<string>%ld місяців залишилося</string> <string>%ld months left</string>
<key>many</key> <key>many</key>
<string>%ld місяців залишилося</string> <string>%ld months left</string>
<key>other</key> <key>other</key>
<string>%ld місяців залишилося</string> <string>%ld months left</string>
</dict> </dict>
</dict> </dict>
<key>date.day.left</key> <key>date.day.left</key>
@ -388,13 +388,13 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>Лишився 1 день</string> <string>1 day left</string>
<key>few</key> <key>few</key>
<string>%ld днів залишилося</string> <string>%ld days left</string>
<key>many</key> <key>many</key>
<string>%ld днів залишилося</string> <string>%ld days left</string>
<key>other</key> <key>other</key>
<string>%ld днів залишилося</string> <string>%ld days left</string>
</dict> </dict>
</dict> </dict>
<key>date.hour.left</key> <key>date.hour.left</key>
@ -408,13 +408,13 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>Залишилася 1 година</string> <string>1 hour left</string>
<key>few</key> <key>few</key>
<string>%ld годин залишилося</string> <string>%ld hours left</string>
<key>many</key> <key>many</key>
<string>%ld годин залишилося</string> <string>%ld hours left</string>
<key>other</key> <key>other</key>
<string>%ld годин залишилося</string> <string>%ld hours left</string>
</dict> </dict>
</dict> </dict>
<key>date.minute.left</key> <key>date.minute.left</key>
@ -428,13 +428,13 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>Залишилась одна хвилина</string> <string>1 minute left</string>
<key>few</key> <key>few</key>
<string>%ld хвилин залишилося</string> <string>%ld minutes left</string>
<key>many</key> <key>many</key>
<string>%ld хвилин залишилося</string> <string>%ld minutes left</string>
<key>other</key> <key>other</key>
<string>%ld хвилин залишилося</string> <string>%ld minutes left</string>
</dict> </dict>
</dict> </dict>
<key>date.second.left</key> <key>date.second.left</key>
@ -448,13 +448,13 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>Залишилась одна секунда</string> <string>1 second left</string>
<key>few</key> <key>few</key>
<string>%ld секунд залишилося</string> <string>%ld seconds left</string>
<key>many</key> <key>many</key>
<string>%ld секунд залишилося</string> <string>%ld seconds left</string>
<key>other</key> <key>other</key>
<string>%ld секунд залишилося</string> <string>%ld seconds left</string>
</dict> </dict>
</dict> </dict>
<key>date.year.ago.abbr</key> <key>date.year.ago.abbr</key>
@ -468,13 +468,13 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>1 рік тому</string> <string>1y ago</string>
<key>few</key> <key>few</key>
<string>%ld роки тому</string> <string>%ldy ago</string>
<key>many</key> <key>many</key>
<string>%ld років тому</string> <string>%ldy ago</string>
<key>other</key> <key>other</key>
<string>%ld років тому</string> <string>%ldy ago</string>
</dict> </dict>
</dict> </dict>
<key>date.month.ago.abbr</key> <key>date.month.ago.abbr</key>
@ -488,13 +488,13 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>1 місяць тому</string> <string>1M ago</string>
<key>few</key> <key>few</key>
<string>%ld місяці тому</string> <string>%ldM ago</string>
<key>many</key> <key>many</key>
<string>%ld місяців тому</string> <string>%ldM ago</string>
<key>other</key> <key>other</key>
<string>%ld Місяців тому</string> <string>%ldM ago</string>
</dict> </dict>
</dict> </dict>
<key>date.day.ago.abbr</key> <key>date.day.ago.abbr</key>
@ -508,13 +508,13 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>1 день тому</string> <string>1d ago</string>
<key>few</key> <key>few</key>
<string>%ld дня тому</string> <string>%ldd ago</string>
<key>many</key> <key>many</key>
<string>%ld днів тому</string> <string>%ldd ago</string>
<key>other</key> <key>other</key>
<string>%ld днів тому</string> <string>%ldd ago</string>
</dict> </dict>
</dict> </dict>
<key>date.hour.ago.abbr</key> <key>date.hour.ago.abbr</key>
@ -528,13 +528,13 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>1 годину тому</string> <string>1h ago</string>
<key>few</key> <key>few</key>
<string>%ld години тому</string> <string>%ldh ago</string>
<key>many</key> <key>many</key>
<string>%ld годин тому</string> <string>%ldh ago</string>
<key>other</key> <key>other</key>
<string>%ld годин тому</string> <string>%ldh ago</string>
</dict> </dict>
</dict> </dict>
<key>date.minute.ago.abbr</key> <key>date.minute.ago.abbr</key>
@ -548,13 +548,13 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>1 хвилину тому</string> <string>1m ago</string>
<key>few</key> <key>few</key>
<string>%ld хвилини тому</string> <string>%ldm ago</string>
<key>many</key> <key>many</key>
<string>%ld хвилин тому</string> <string>%ldm ago</string>
<key>other</key> <key>other</key>
<string>%ld хвилин тому</string> <string>%ldm ago</string>
</dict> </dict>
</dict> </dict>
<key>date.second.ago.abbr</key> <key>date.second.ago.abbr</key>
@ -568,13 +568,13 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>1 секунду тому</string> <string>1s ago</string>
<key>few</key> <key>few</key>
<string>%ld секунди тому</string> <string>%lds ago</string>
<key>many</key> <key>many</key>
<string>%ld секунд тому</string> <string>%lds ago</string>
<key>other</key> <key>other</key>
<string>%ld секунд тому</string> <string>%lds ago</string>
</dict> </dict>
</dict> </dict>
</dict> </dict>

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{ {
"NSCameraUsageDescription": "Використовується, щоб зробити фотографію для статусу публікації", "NSCameraUsageDescription": "Used to take photo for post status",
"NSPhotoLibraryAddUsageDescription": "Використовується для збереження фото в бібліотеку", "NSPhotoLibraryAddUsageDescription": "Used to save photo into the Photo Library",
"NewPostShortcutItemTitle": "Новий допис", "NewPostShortcutItemTitle": "New Post",
"SearchShortcutItemTitle": "Пошук" "SearchShortcutItemTitle": "Search"
} }

View File

@ -51,11 +51,6 @@
"clean_cache": { "clean_cache": {
"title": "Xóa bộ nhớ đệm", "title": "Xóa bộ nhớ đệm",
"message": "Đã xóa %s bộ nhớ đệm." "message": "Đã xóa %s bộ nhớ đệm."
},
"translation_failed": {
"title": "Ghi chú",
"message": "Dịch không thành công. Có thể quản trị viên chưa bật dịch trên máy chủ này hoặc máy chủ này đang chạy phiên bản cũ hơn của Mastodon chưa hỗ trợ dịch.",
"button": "OK"
} }
}, },
"controls": { "controls": {
@ -83,7 +78,6 @@
"sign_up": "Tạo tài khoản", "sign_up": "Tạo tài khoản",
"see_more": "Xem thêm", "see_more": "Xem thêm",
"preview": "Xem trước", "preview": "Xem trước",
"copy": "Chép",
"share": "Chia sẻ", "share": "Chia sẻ",
"share_user": "Chia sẻ %s", "share_user": "Chia sẻ %s",
"share_post": "Chia sẻ tút", "share_post": "Chia sẻ tút",
@ -97,16 +91,12 @@
"block_domain": "Chặn %s", "block_domain": "Chặn %s",
"unblock_domain": "Bỏ chặn %s", "unblock_domain": "Bỏ chặn %s",
"settings": "Cài đặt", "settings": "Cài đặt",
"delete": "Xóa", "delete": "Xóa"
"translate_post": {
"title": "Dịch từ %s",
"unknown_language": "Chưa xác định"
}
}, },
"tabs": { "tabs": {
"home": "Bảng tin", "home": "Bảng tin",
"search_and_explore": "Tìm và Khám Phá", "search": "Tìm kiếm",
"notifications": "Thông báo", "notification": "Thông báo",
"profile": "Trang hồ sơ" "profile": "Trang hồ sơ"
}, },
"keyboard": { "keyboard": {
@ -142,8 +132,6 @@
"sensitive_content": "Nội dung nhạy cảm", "sensitive_content": "Nội dung nhạy cảm",
"media_content_warning": "Nhấn để hiển thị", "media_content_warning": "Nhấn để hiển thị",
"tap_to_reveal": "Nhấn để xem", "tap_to_reveal": "Nhấn để xem",
"load_embed": "Nạp mã nhúng",
"link_via_user": "%s bởi %s",
"poll": { "poll": {
"vote": "Bình chọn", "vote": "Bình chọn",
"closed": "Kết thúc" "closed": "Kết thúc"
@ -165,7 +153,6 @@
"show_image": "Hiển thị hình ảnh", "show_image": "Hiển thị hình ảnh",
"show_gif": "Hiển thị GIF", "show_gif": "Hiển thị GIF",
"show_video_player": "Hiện trình phát video", "show_video_player": "Hiện trình phát video",
"share_link_in_post": "Chia sẻ liên kết trong Tút",
"tap_then_hold_to_show_menu": "Nhấn giữ để hiện menu" "tap_then_hold_to_show_menu": "Nhấn giữ để hiện menu"
}, },
"tag": { "tag": {
@ -181,12 +168,6 @@
"private": "Chỉ người theo dõi của họ có thể thấy tút này.", "private": "Chỉ người theo dõi của họ có thể thấy tút này.",
"private_from_me": "Chỉ người theo dõi tôi có thể thấy tút này.", "private_from_me": "Chỉ người theo dõi tôi có thể thấy tút này.",
"direct": "Chỉ người được nhắc đến có thể thấy tút." "direct": "Chỉ người được nhắc đến có thể thấy tút."
},
"translation": {
"translated_from": "Dịch từ %s bằng %s",
"unknown_language": "Không xác định",
"unknown_provider": "Không biết",
"show_original": "Bản gốc"
} }
}, },
"friendship": { "friendship": {
@ -400,7 +381,7 @@
}, },
"content_input_placeholder": "Cho thế giới biết bạn đang nghĩ gì", "content_input_placeholder": "Cho thế giới biết bạn đang nghĩ gì",
"compose_action": "Đăng", "compose_action": "Đăng",
"replying_to_user": "%s viết tiếp", "replying_to_user": "trả lời %s",
"attachment": { "attachment": {
"photo": "ảnh", "photo": "ảnh",
"video": "video", "video": "video",
@ -463,15 +444,11 @@
"follows_you": "Đang theo dõi bạn" "follows_you": "Đang theo dõi bạn"
}, },
"dashboard": { "dashboard": {
"my_posts": "posts", "posts": "tút",
"my_following": "following", "following": "theo dõi",
"my_followers": "followers", "followers": "người theo dõi"
"other_posts": "posts",
"other_following": "following",
"other_followers": "followers"
}, },
"fields": { "fields": {
"joined": "Đã tham gia",
"add_row": "Thêm hàng", "add_row": "Thêm hàng",
"placeholder": { "placeholder": {
"label": "Nhãn", "label": "Nhãn",
@ -745,18 +722,6 @@
}, },
"bookmark": { "bookmark": {
"title": "Tút đã lưu" "title": "Tút đã lưu"
},
"followed_tags": {
"title": "Hashtag Theo Dõi",
"header": {
"posts": "tút",
"participants": "người thảo luận",
"posts_today": "tút hôm nay"
},
"actions": {
"follow": "Theo dõi",
"unfollow": "Ngưng theo dõi"
}
} }
} }
} }

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