Compare commits

..

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

624 changed files with 7973 additions and 25159 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
uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: '3.11'
- run: |
pip3 install codemagic-cli-tools
- run: |

11
.gitignore vendored
View File

@ -125,13 +125,4 @@ Localization/StringsConvertor/output
.DS_Store
env/**/**
!env/.env
## Ruby ###
vendor/
.bundle/
# IDEs
.idea
.vscode
!env/.env

View File

@ -1 +0,0 @@
3.0.3

View File

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

View File

@ -1,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.
## 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
# install the rbenv
brew install rbenv
# configure the terminal
which ruby
# > /usr/bin/ruby
echo 'eval "$(rbenv init -)"' >> ~/.zprofile
@ -26,12 +33,15 @@ source ~/.zprofile
which ruby
# > /Users/mainasuk/.rbenv/shims/ruby
# restart the terminal
# select ruby
rbenv install --list
# here we use the latest 3.0.x version
rbenv install 3.0.3
rbenv global 3.0.3
ruby --version
# > ruby 3.0.3p157 (2021-11-24 revision 3fb7d2cadc) [arm64-darwin21]
# install ruby (we use the version defined in .ruby-version)
rbenv install
# install gem dependencies
gem install bundler
bundle install
```

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -1,51 +0,0 @@
"16wxgf" = "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";
"HZSGTr" = "Konten apa yang ingin diposting?";
"HZSGTr" = "What content to post?";
"HdGikU" = "Gagal memposting";
"KDNTJ4" = "Alasan Kegagalan";
"RHxKOw" = "Kirim Postingan dengan konten berupa teks";
"RHxKOw" = "Send Post with text content";
"RxSqsb" = "Postingan";
@ -24,9 +24,9 @@
"Zo4jgJ" = "Visibilitas Postingan";
"apSxMG-dYQ5NN" = "Tidak ada ${count} opsi yang cocok dengan 'Publik'.";
"apSxMG-dYQ5NN" = "There are ${count} options matching Public.";
"apSxMG-ehFLjY" = "Tidak ada ${count} opsi yang cocok dengan 'Untuk Pengikut Saja'.";
"apSxMG-ehFLjY" = "There are ${count} options matching Followers Only.";
"ayoYEb-dYQ5NN" = "${content}, Publik";

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -51,11 +51,6 @@
"clean_cache": {
"title": "Clean Cache",
"message": "Successfully cleaned %s cache."
},
"translation_failed": {
"title": "Note",
"message": "Translation failed. Maybe the administrator has not enabled translations on this server or this server is running an older version of Mastodon where translations are not yet supported.",
"button": "OK"
}
},
"controls": {
@ -83,7 +78,6 @@
"sign_up": "Create account",
"see_more": "See More",
"preview": "Preview",
"copy": "Copy",
"share": "Share",
"share_user": "Share %s",
"share_post": "Share Post",
@ -97,16 +91,12 @@
"block_domain": "Block %s",
"unblock_domain": "Unblock %s",
"settings": "Settings",
"delete": "Delete",
"translate_post": {
"title": "Translate from %s",
"unknown_language": "Unknown"
}
"delete": "Delete"
},
"tabs": {
"home": "Home",
"search_and_explore": "Search and Explore",
"notifications": "Notifications",
"search": "Search",
"notification": "Notification",
"profile": "Profile"
},
"keyboard": {
@ -142,8 +132,6 @@
"sensitive_content": "Sensitive Content",
"media_content_warning": "Tap anywhere to reveal",
"tap_to_reveal": "Tap to reveal",
"load_embed": "Load Embed",
"link_via_user": "%s via %s",
"poll": {
"vote": "Vote",
"closed": "Closed"
@ -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": {
@ -181,18 +168,6 @@
"private": "Only their followers can see this post.",
"private_from_me": "Only my followers can see this post.",
"direct": "Only mentioned user can see this post."
},
"translation": {
"translated_from": "Translated from %s using %s",
"unknown_language": "Unknown",
"unknown_provider": "Unknown",
"show_original": "Show Original"
},
"media": {
"accessibility_label": "%s, attachment %d of %d",
"expand_image_hint": "Expands the image. Double-tap and hold to show actions",
"expand_gif_hint": "Expands the GIF. Double-tap and hold to show actions",
"expand_video_hint": "Shows the video player. Double-tap and hold to show actions"
}
},
"friendship": {
@ -241,21 +216,7 @@
"welcome": {
"slogan": "Social networking\nback in your hands.",
"get_started": "Get Started",
"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.",
},
}
"log_in": "Log In"
},
"login": {
"title": "Welcome back",
@ -265,7 +226,8 @@
}
},
"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": {
"category": {
"all": "All",
@ -300,19 +262,9 @@
"no_results": "No results"
}
},
"privacy": {
"title": "Privacy",
"policy": {
"ios": "Privacy Policy - Mastodon for iOS";
"server" = "Privacy Policy - %s";
},
"button": {
"confirm": "I agree"
}
}
"register": {
"title": "Create account",
"title": "Lets get you set up on %s",
"lets_get_you_set_up_on_domain": "Lets get you set up on %s",
"input": {
"avatar": {
"delete": "Delete"
@ -329,7 +281,6 @@
},
"password": {
"placeholder": "password",
"confirmation_placeholder": "Confirm Password",
"require": "Your password needs at least:",
"character_limit": "8 characters",
"accessibility": {
@ -383,7 +334,8 @@
},
"confirm_email": {
"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": {
"open_email_app": "Open Email App",
"resend": "Resend"
@ -408,7 +360,7 @@
"published": "Published!",
"Publishing": "Publishing post...",
"accessibility": {
"logo_label": "Mastodon",
"logo_label": "Logo Button",
"logo_hint": "Tap to scroll to top and tap again to previous location"
}
}
@ -444,7 +396,6 @@
"server_processing_state": "Server Processing..."
},
"poll": {
"title": "Poll",
"duration_time": "Duration: %s",
"thirty_minutes": "30 minutes",
"one_hour": "1 Hour",
@ -486,12 +437,6 @@
"toggle_content_warning": "Toggle Content Warning",
"append_attachment_entry": "Add Attachment - %s",
"select_visibility_entry": "Select Visibility - %s"
},
"language": {
"title": "Post Language",
"suggested": "Suggested",
"recent": "Recent",
"other": "Other Language…"
}
},
"profile": {
@ -499,15 +444,11 @@
"follows_you": "Follows You"
},
"dashboard": {
"my_posts": "posts",
"my_following": "following",
"my_followers": "followers",
"other_posts": "posts",
"other_following": "following",
"other_followers": "followers"
"posts": "posts",
"following": "following",
"followers": "followers"
},
"fields": {
"joined": "Joined",
"add_row": "Add Row",
"placeholder": {
"label": "Label",
@ -620,7 +561,7 @@
"intro": "These are the posts gaining traction in your corner of Mastodon."
},
"favorite": {
"title": "Favorites"
"title": "Your Favorites"
},
"notification": {
"title": {
@ -781,19 +722,6 @@
},
"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,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>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>يتبقى %#@character_count@</string>
<string>%#@character_count@ left</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
@ -91,9 +91,9 @@
<key>two</key>
<string>حَرفانِ اِثنان</string>
<key>few</key>
<string>%ld أحرُف</string>
<string>%ld characters</string>
<key>many</key>
<string>%ld حَرفًا</string>
<string>%ld characters</string>
<key>other</key>
<string>%ld حَرف</string>
</dict>

View File

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

View File

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

View File

@ -2,60 +2,55 @@
"common": {
"alerts": {
"common": {
"please_try_again": "Torna-ho a provar.",
"please_try_again_later": "Prova-ho més tard."
"please_try_again": "Si us plau intenta-ho de nou.",
"please_try_again_later": "Si us plau, prova-ho més tard."
},
"sign_up_failure": {
"title": "Error en el registre"
},
"server_error": {
"title": "Error del servidor"
"title": "Error del Servidor"
},
"vote_failure": {
"title": "Error en votar",
"title": "Error del Vot",
"poll_ended": "L'enquesta ha finalitzat"
},
"discard_post_content": {
"title": "Descarta l'esborrany",
"message": "Confirma per a descartar el contingut de la publicació."
"message": "Confirma per a descartar el contingut de la publicació composta."
},
"publish_post_failure": {
"title": "Error en publicar",
"message": "No s'ha pogut enviar la publicació.\nComprova la connexió a Internet.",
"title": "Error de Publicació",
"message": "No s'ha pogut enviar la publicació.\nComprova la teva connexió a Internet.",
"attachments_message": {
"video_attach_with_photo": "No es pot adjuntar un vídeo a 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": {
"title": "Error en editar el perfil",
"message": "No es pot editar el perfil. Torna-ho a provar."
"title": "Error al Editar el Perfil",
"message": "No es pot editar el perfil. Si us plau torna-ho a provar."
},
"sign_out": {
"title": "Tanca la sessió",
"message": "Segur que vols tancar la sessió?",
"confirm": "Tanca la sessió"
"title": "Tancar Sessió",
"message": "Estàs segur que vols tancar la sessió?",
"confirm": "Tancar Sessió"
},
"block_domain": {
"title": "Estàs totalment segur que vols bloquejar per complet %s? En la majoria dels casos bloquejar o silenciar uns pocs objectius és suficient i preferible. No veureu contingut daquest domini i se suprimirà qualsevol dels vostres seguidors daquest domini.",
"block_entire_domain": "Bloca el domini"
"title": "Estàs segur, realment segur que vols bloquejar totalment %s? En la majoria dels casos bloquejar o silenciar uns pocs objectius és suficient i preferible. No veureu contingut daquest domini i se suprimirà qualsevol dels vostres seguidors daquest domini.",
"block_entire_domain": "Bloquejar Domini"
},
"save_photo_failure": {
"title": "Error en desar la foto",
"message": "Activa el permís d'accés a la biblioteca de fotos per a desar-la."
"title": "Error al Desar la Foto",
"message": "Activa el permís d'accés a la biblioteca de fotos per desar-la."
},
"delete_post": {
"title": "Eliminar la publicació",
"message": "Segur que vols eliminar aquesta publicació?"
"title": "Esborrar Publicació",
"message": "Estàs segur que vols suprimir aquesta publicació?"
},
"clean_cache": {
"title": "Neteja la memòria cau",
"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": {
@ -72,21 +67,20 @@
"done": "Fet",
"confirm": "Confirma",
"continue": "Continua",
"compose": "Redacta",
"compose": "Composa",
"cancel": "Cancel·la",
"discard": "Descarta",
"try_again": "Torna a provar",
"take_photo": "Fes una foto",
"save_photo": "Desa la foto",
"copy_photo": "Copia la foto",
"sign_in": "Inicia sessió",
"sign_in": "Iniciar sessió",
"sign_up": "Crea un compte",
"see_more": "Mostra'n més",
"see_more": "Veure més",
"preview": "Vista prèvia",
"copy": "Copia",
"share": "Comparteix",
"share_user": "Comparteix %s",
"share_post": "Comparteix la publicació",
"share_user": "Compartir %s",
"share_post": "Compartir Publicació",
"open_in_safari": "Obrir a Safari",
"open_in_browser": "Obre al navegador",
"find_people": "Busca persones a seguir",
@ -97,16 +91,12 @@
"block_domain": "Bloqueja %s",
"unblock_domain": "Desbloqueja %s",
"settings": "Configuració",
"delete": "Suprimeix",
"translate_post": {
"title": "Traduït del %s",
"unknown_language": "Desconegut"
}
"delete": "Suprimeix"
},
"tabs": {
"home": "Inici",
"search_and_explore": "Cerca i Explora",
"notifications": "Notificacions",
"search": "Cerca",
"notification": "Notificació",
"profile": "Perfil"
},
"keyboard": {
@ -120,9 +110,9 @@
"previous_status": "Publicació anterior",
"next_status": "Publicació següent",
"open_status": "Obre la publicació",
"open_author_profile": "Obre el perfil de l'autor",
"open_reblogger_profile": "Obre el perfil de l'impuls",
"reply_status": "Respon a la publicació",
"open_author_profile": "Obre el Perfil de l'Autor",
"open_reblogger_profile": "Obre el Perfil del Impulsor",
"reply_status": "Respon a la Publicació",
"toggle_reblog": "Commuta l'Impuls de la Publicació",
"toggle_favorite": "Commuta el Favorit de la Publicació",
"toggle_content_warning": "Commuta l'Avís de Contingut",
@ -142,30 +132,27 @@
"sensitive_content": "Contingut sensible",
"media_content_warning": "Toca qualsevol lloc per a mostrar",
"tap_to_reveal": "Toca per a mostrar",
"load_embed": "Carregar incrustat",
"link_via_user": "%s través de %s",
"poll": {
"vote": "Vota",
"closed": "Finalitzada"
},
"meta_entity": {
"url": "Enllaç: %s",
"hashtag": "Etiqueta: %s",
"mention": "Mostra el perfil: %s",
"hashtag": "Etiqueta %s",
"mention": "Mostra el Perfil: %s",
"email": "Correu electrònic: %s"
},
"actions": {
"reply": "Respon",
"reblog": "Impulsa",
"unreblog": "Desfés l'impuls",
"reblog": "Impuls",
"unreblog": "Desfer l'impuls",
"favorite": "Favorit",
"unfavorite": "Desfés el favorit",
"unfavorite": "Desfer Favorit",
"menu": "Menú",
"hide": "Amaga",
"show_image": "Mostra la imatge",
"show_gif": "Mostra el GIF",
"show_video_player": "Mostra el reproductor de vídeo",
"share_link_in_post": "Compartir l'Enllaç en el Tut",
"tap_then_hold_to_show_menu": "Toca i manté per a veure el menú"
},
"tag": {
@ -174,32 +161,26 @@
"link": "Enllaç",
"hashtag": "Etiqueta",
"email": "Correu electrònic",
"emoji": "Emojis"
"emoji": "Emoji"
},
"visibility": {
"unlisted": "Tothom pot veure aquesta publicació, però no es mostra en la línia de temps pública.",
"unlisted": "Tothom pot veure aquesta publicació però no es mostra en la línia de temps pública.",
"private": "Només els seus seguidors poden veure aquesta publicació.",
"private_from_me": "Només els meus seguidors poden veure aquesta publicació.",
"direct": "Només l'usuari mencionat pot veure aquesta publicació."
},
"translation": {
"translated_from": "Traduït del %s fent servir %s",
"unknown_language": "Desconegut",
"unknown_provider": "Desconegut",
"show_original": "Mostra l'original"
}
},
"friendship": {
"follow": "Segueix",
"following": "Seguint",
"request": "Sol·licitud",
"request": "Petició",
"pending": "Pendent",
"block": "Bloca",
"block_user": "Bloca %s",
"block_domain": "Bloca %s",
"unblock": "Desbloca",
"unblock_user": "Desbloca %s",
"blocked": "Blocat",
"block": "Bloqueja",
"block_user": "Bloqueja %s",
"block_domain": "Bloqueja %s",
"unblock": "Desbloqueja",
"unblock_user": "Desbloqueja %s",
"blocked": "Bloquejat",
"mute": "Silencia",
"mute_user": "Silencia %s",
"unmute": "Deixa de silenciar",
@ -215,16 +196,16 @@
"now": "Ara"
},
"loader": {
"load_missing_posts": "Carrega les publicacions restants",
"loading_missing_posts": "Carregant les publicacions restants...",
"load_missing_posts": "Carrega les publicacions faltants",
"loading_missing_posts": "Carregant les publicacions faltants...",
"show_more_replies": "Mostra més respostes"
},
"header": {
"no_status_found": "No s'ha trobat cap publicació",
"blocking_warning": "No pots veure el perfil d'aquest usuari\nfins que el desbloquis.\nEl teu perfil els sembla així.",
"user_blocking_warning": "No pots veure el perfil de %s\nfins que el desbloquis.\nEl teu perfil els sembla així.",
"blocked_warning": "No pots veure el perfil d'aquest usuari\nfins que et desbloqui.",
"user_blocked_warning": "No pots veure el perfil de %s\n fins que et desbloqui.",
"blocking_warning": "No pots veure el perfil d'aquest usuari\n fins que el desbloquegis.\nEl teu perfil els sembla així.",
"user_blocking_warning": "No pots veure el perfil de %s\n fins que el desbloquegis.\nEl teu perfil els sembla així.",
"blocked_warning": "No pots veure el perfil d'aquest usuari\nfins que et desbloquegi.",
"user_blocked_warning": "No pots veure el perfil de %s\n fins que et desbloquegi.",
"suspended_warning": "Aquest usuari ha estat suspès.",
"user_suspended_warning": "El compte de %s ha estat suspès."
}
@ -245,7 +226,7 @@
}
},
"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.",
"button": {
"category": {
@ -386,11 +367,11 @@
},
"suggestion_account": {
"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": {
"title": {
"new_post": "Nou Tut",
"new_post": "Nova publicació",
"new_reply": "Nova Resposta"
},
"media_selection": {
@ -405,8 +386,8 @@
"photo": "foto",
"video": "vídeo",
"attachment_broken": "Aquest %s està trencat i no pot ser\ncarregat a Mastodon.",
"description_photo": "Descriu la foto per a les persones amb diversitat funcional...",
"description_video": "Descriu el vídeo per a les persones amb diversitat funcional...",
"description_photo": "Descriu la foto per als disminuïts visuals...",
"description_video": "Descriu el vídeo per als disminuïts visuals...",
"load_failed": "Ha fallat la càrrega",
"upload_failed": "Pujada fallida",
"can_not_recognize_this_media_attachment": "No es pot reconèixer aquest adjunt multimèdia",
@ -445,13 +426,13 @@
"custom_emoji_picker": "Selector d'Emoji Personalitzat",
"enable_content_warning": "Activa l'Avís de Contingut",
"disable_content_warning": "Desactiva l'Avís de Contingut",
"post_visibility_menu": "Menú de Visibilitat del Tut",
"post_options": "Opcions del Tut",
"post_visibility_menu": "Menú de Visibilitat de Publicació",
"post_options": "Opcions del tut",
"posting_as": "Publicant com a %s"
},
"keyboard": {
"discard_post": "Descarta el Tut",
"publish_post": "Envia el Tut",
"discard_post": "Descarta la Publicació",
"publish_post": "Envia la Publicació",
"toggle_poll": "Commuta l'enquesta",
"toggle_content_warning": "Commuta l'Avís de Contingut",
"append_attachment_entry": "Afegeix Adjunt - %s",
@ -463,15 +444,11 @@
"follows_you": "Et segueix"
},
"dashboard": {
"my_posts": "tuts",
"my_following": "seguint",
"my_followers": "seguidors",
"other_posts": "tuts",
"other_following": "seguint",
"other_followers": "seguidors"
"posts": "publicacions",
"following": "seguint",
"followers": "seguidors"
},
"fields": {
"joined": "S'hi va unir",
"add_row": "Afegeix fila",
"placeholder": {
"label": "Etiqueta",
@ -483,9 +460,9 @@
}
},
"segmented_control": {
"posts": "Tuts",
"posts": "Publicacions",
"replies": "Respostes",
"posts_and_replies": "Tuts i Respostes",
"posts_and_replies": "Publicacions i Respostes",
"media": "Mèdia",
"about": "Quant a"
},
@ -499,12 +476,12 @@
"message": "Confirma deixar de silenciar a %s"
},
"confirm_block_user": {
"title": "Bloca el Compte",
"message": "Confirma per a blocar %s"
"title": "Bloqueja el Compte",
"message": "Confirma per a bloquejar %s"
},
"confirm_unblock_user": {
"title": "Desbloca el Compte",
"message": "Confirma per a desblocar %s"
"title": "Desbloqueja el Compte",
"message": "Confirma per a desbloquejar %s"
},
"confirm_show_reblogs": {
"title": "Mostra els Impulsos",
@ -564,7 +541,7 @@
"all": "Tots",
"people": "Gent",
"hashtags": "Etiquetes",
"posts": "Tuts"
"posts": "Publicacions"
},
"empty_state": {
"no_results": "No hi ha resultats"
@ -575,13 +552,13 @@
},
"discovery": {
"tabs": {
"posts": "Tuts",
"posts": "Publicacions",
"hashtags": "Etiquetes",
"news": "Notícies",
"community": "Comunitat",
"for_you": "Per a tu"
},
"intro": "Aquests son els tuts que criden l'atenció en el teu racó de Mastodon."
"intro": "Aquestes son les publicacions que criden l'atenció en el teu racó de Mastodon."
},
"favorite": {
"title": "Els teus Favorits"
@ -611,8 +588,8 @@
}
},
"thread": {
"back_title": "Tut",
"title": "Tut de %s"
"back_title": "Publicació",
"title": "Publicació de %s"
},
"settings": {
"title": "Configuració",
@ -632,9 +609,9 @@
},
"notifications": {
"title": "Notificacions",
"favorites": "Ha afavorit el meu tut",
"favorites": "Ha afavorit el meu estat",
"follows": "Em segueix",
"boosts": "Ha impulsat el meu tut",
"boosts": "Ha impulsat el meu estat",
"mentions": "M'ha mencionat",
"trigger": {
"anyone": "algú",
@ -676,7 +653,7 @@
"title": "Informa sobre %s",
"step1": "Pas 1 de 2",
"step2": "Pas 2 de 2",
"content1": "Hi ha algun altre tut que vulguis afegir a l'informe?",
"content1": "Hi ha alguna altre publicació que vulguis afegir a l'informe?",
"content2": "Hi ha alguna cosa que els moderadors hagin de saber sobre aquest informe?",
"report_sent_title": "Gràcies per informar, ho investigarem.",
"send": "Envia Informe",
@ -685,7 +662,7 @@
"reported": "REPORTAT",
"step_one": {
"step_1_of_4": "Pas 1 de 4",
"whats_wrong_with_this_post": "Quin és el problema amb aquest tut?",
"whats_wrong_with_this_post": "Quin és el problema amb aquesta publicació?",
"whats_wrong_with_this_account": "Quin és el problema amb aquest compte?",
"whats_wrong_with_this_username": "Quin és el problema amb %s?",
"select_the_best_match": "Selecciona la millor coincidència",
@ -706,7 +683,7 @@
},
"step_three": {
"step_3_of_4": "Pas 3 de 4",
"are_there_any_posts_that_back_up_this_report": "Hi ha alguns tuts que recolzin aquest informe?",
"are_there_any_posts_that_back_up_this_report": "Hi ha alguna publicació que recolzi aquest informe?",
"select_all_that_apply": "Selecciona tot el que correspongui"
},
"step_four": {
@ -715,14 +692,14 @@
},
"step_final": {
"dont_want_to_see_this": "No vols veure això?",
"when_you_see_something_you_dont_like_on_mastodon_you_can_remove_the_person_from_your_experience.": "Quan veus alguna cosa que no t'agrada a Mastodon, pots eliminar la persona de la teva experiència.",
"when_you_see_something_you_dont_like_on_mastodon_you_can_remove_the_person_from_your_experience.": "Quan veus alguna cosa que no t'agrada a Mastodon, pots eliminar la persona de la vostra experiència.",
"unfollow": "Deixa de seguir",
"unfollowed": "S'ha deixat de seguir",
"unfollow_user": "Deixa de seguir %s",
"mute_user": "Silencia %s",
"you_wont_see_their_posts_or_reblogs_in_your_home_feed_they_wont_know_they_ve_been_muted": "No veuràs els seus tuts o impulsos a la teva línia de temps personal. No sabran que han estat silenciats.",
"you_wont_see_their_posts_or_reblogs_in_your_home_feed_they_wont_know_they_ve_been_muted": "No veuràs les seves publicacions o impulsos a la teva línia de temps personal. No sabran que han estat silenciats.",
"block_user": "Bloca %s",
"they_will_no_longer_be_able_to_follow_or_see_your_posts_but_they_can_see_if_theyve_been_blocked": "Ja no podran seguir ni veure els teus 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"
}
},
@ -745,18 +722,6 @@
},
"bookmark": {
"title": "Marcadors"
},
"followed_tags": {
"title": "Etiquetes seguides",
"header": {
"posts": "tuts",
"participants": "participants",
"posts_today": "tuts d'avui"
},
"actions": {
"follow": "Segueix",
"unfollow": "Deixa de seguir"
}
}
}
}

View File

@ -51,11 +51,6 @@
"clean_cache": {
"title": "بیرگە پاک بکەوە",
"message": "سەرکەوتووانە بیرگەی %s پاک کرایەوە."
},
"translation_failed": {
"title": "Note",
"message": "Translation failed. Maybe the administrator has not enabled translations on this server or this server is running an older version of Mastodon where translations are not yet supported.",
"button": "OK"
}
},
"controls": {
@ -83,7 +78,6 @@
"sign_up": "Create account",
"see_more": "زیاتر ببینە",
"preview": "پێشبینین",
"copy": "Copy",
"share": "هاوبەشی بکە",
"share_user": "%s هاوبەش بکە",
"share_post": "هاوبەشی بکە",
@ -97,16 +91,12 @@
"block_domain": "%s ئاستەنگ بکە",
"unblock_domain": "%s ئاستەنگ مەکە",
"settings": "رێکخستنەکان",
"delete": "بیسڕەوە",
"translate_post": {
"title": "Translate from %s",
"unknown_language": "Unknown"
}
"delete": "بیسڕەوە"
},
"tabs": {
"home": "ماڵەوە",
"search_and_explore": "Search and Explore",
"notifications": "Notifications",
"search": "بگەڕێ",
"notification": "ئاگادارکردنەوەکان",
"profile": "پرۆفایل"
},
"keyboard": {
@ -142,8 +132,6 @@
"sensitive_content": "ناوەڕۆکی هەستیار",
"media_content_warning": "دەستی پیا بنێ بۆ نیشاندانی",
"tap_to_reveal": "دەستی پیا بنێ بۆ نیشاندانی",
"load_embed": "Load Embed",
"link_via_user": "%s via %s",
"poll": {
"vote": "دەنگ بدە",
"closed": "داخراوە"
@ -165,7 +153,6 @@
"show_image": "وێنەکە نیشان بدە",
"show_gif": "گیفەکە نیشان بدە",
"show_video_player": "ڤیدیۆکە لێ بدە",
"share_link_in_post": "Share Link in Post",
"tap_then_hold_to_show_menu": "دەستی پیا بنێ و بیگرە بۆ نیشاندانی پێڕستەکە"
},
"tag": {
@ -181,12 +168,6 @@
"private": "تەنیا شوێنکەوتووەکانی دەتوانن ئەم پۆستە ببینن.",
"private_from_me": "تەنیا شوێنکەوتووەکانم دەتوانن ئەم پۆستە ببینن.",
"direct": "تەنیا بەکارهێنەرە ئاماژە پێکراوەکە دەتوانێت ئەم پۆستە ببینێت."
},
"translation": {
"translated_from": "Translated from %s using %s",
"unknown_language": "Unknown",
"unknown_provider": "Unknown",
"show_original": "Shown Original"
}
},
"friendship": {
@ -463,15 +444,11 @@
"follows_you": "Follows You"
},
"dashboard": {
"my_posts": "posts",
"my_following": "following",
"my_followers": "followers",
"other_posts": "posts",
"other_following": "following",
"other_followers": "followers"
"posts": "پۆستەکان",
"following": "شوێنکەوتن",
"followers": "شوێنکەوتوو"
},
"fields": {
"joined": "Joined",
"add_row": "ڕیز زیاد بکە",
"placeholder": {
"label": "ناونیشان",
@ -745,18 +722,6 @@
},
"bookmark": {
"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>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@character_count@ zbývá</string>
<string>%#@character_count@ left</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>

View File

@ -51,11 +51,6 @@
"clean_cache": {
"title": "Vyčistit mezipaměť",
"message": "Úspěšně vyčištěno %s mezipaměti."
},
"translation_failed": {
"title": "Poznámka",
"message": "Překlad se nezdařil. Správce možná nepovolil překlad na tomto serveru nebo tento server používá starší verzi Mastodonu, kde překlady ještě nejsou podporovány.",
"button": "OK"
}
},
"controls": {
@ -83,7 +78,6 @@
"sign_up": "Vytvořit účet",
"see_more": "Zobrazit více",
"preview": "Náhled",
"copy": "Kopírovat",
"share": "Sdílet",
"share_user": "Sdílet %s",
"share_post": "Sdílet příspěvek",
@ -97,16 +91,12 @@
"block_domain": "Blokovat %s",
"unblock_domain": "Odblokovat %s",
"settings": "Nastavení",
"delete": "Smazat",
"translate_post": {
"title": "Přeložit z %s",
"unknown_language": "Neznámý"
}
"delete": "Smazat"
},
"tabs": {
"home": "Domů",
"search_and_explore": "Hledat a zkoumat",
"notifications": "Oznámení",
"search": "Hledat",
"notification": "Oznamování",
"profile": "Profil"
},
"keyboard": {
@ -123,8 +113,8 @@
"open_author_profile": "Otevřít profil autora",
"open_reblogger_profile": "Otevřít rebloggerův profil",
"reply_status": "Odpovědět na příspěvek",
"toggle_reblog": "Přepnout Reblog na příspěvku",
"toggle_favorite": "Přepnout Oblíbené na příspěvku",
"toggle_reblog": "Toggle Reblog on Post",
"toggle_favorite": "Toggle Favorite on Post",
"toggle_content_warning": "Přepnout varování obsahu",
"preview_image": "Náhled obrázku"
},
@ -142,8 +132,6 @@
"sensitive_content": "Citlivý obsah",
"media_content_warning": "Klepnutím kdekoli zobrazíte",
"tap_to_reveal": "Klepnutím zobrazit",
"load_embed": "Načíst vložené",
"link_via_user": "%s přes %s",
"poll": {
"vote": "Hlasovat",
"closed": "Uzavřeno"
@ -165,7 +153,6 @@
"show_image": "Zobrazit obrázek",
"show_gif": "Zobrazit GIF",
"show_video_player": "Zobrazit video přehrávač",
"share_link_in_post": "Sdílet odkaz v příspěvku",
"tap_then_hold_to_show_menu": "Klepnutím podržte pro zobrazení nabídky"
},
"tag": {
@ -181,12 +168,6 @@
"private": "Pouze jejich sledující mohou vidět tento příspěvek.",
"private_from_me": "Pouze moji sledující mohou vidět tento příspěvek.",
"direct": "Pouze zmíněný uživatel může vidět tento příspěvek."
},
"translation": {
"translated_from": "Přeloženo z %s pomocí %s",
"unknown_language": "Neznámý",
"unknown_provider": "Neznámý",
"show_original": "Zobrazit originál"
}
},
"friendship": {
@ -463,15 +444,11 @@
"follows_you": "Sleduje vás"
},
"dashboard": {
"my_posts": "příspěvky",
"my_following": "sledování",
"my_followers": "sledující",
"other_posts": "příspěvky",
"other_following": "sledování",
"other_followers": "sledující"
"posts": "příspěvky",
"following": "sledování",
"followers": "sledující"
},
"fields": {
"joined": "Připojen/a",
"add_row": "Přidat řádek",
"placeholder": {
"label": "Označení",
@ -745,18 +722,6 @@
},
"bookmark": {
"title": "Záložky"
},
"followed_tags": {
"title": "Sledované štítky",
"header": {
"posts": "příspěvky",
"participants": "účastníci",
"posts_today": "příspěvky dnes"
},
"actions": {
"follow": "Sledovat",
"unfollow": "Přestat sledovat"
}
}
}
}

View File

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

File diff suppressed because it is too large Load Diff

View File

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

View File

@ -15,7 +15,7 @@
<key>one</key>
<string>1 unread notification</string>
<key>other</key>
<string>%ld unread notifications</string>
<string>%ld unread notification</string>
</dict>
</dict>
<key>a11y.plural.count.input_limit_exceeds</key>

View File

@ -51,11 +51,6 @@
"clean_cache": {
"title": "Clean Cache",
"message": "Successfully cleaned %s cache."
},
"translation_failed": {
"title": "Note",
"message": "Translation failed. Maybe the administrator has not enabled translations on this server or this server is running an older version of Mastodon where translations are not yet supported.",
"button": "OK"
}
},
"controls": {
@ -83,7 +78,6 @@
"sign_up": "Create account",
"see_more": "See More",
"preview": "Preview",
"copy": "Copy",
"share": "Share",
"share_user": "Share %s",
"share_post": "Share Post",
@ -97,16 +91,12 @@
"block_domain": "Block %s",
"unblock_domain": "Unblock %s",
"settings": "Settings",
"delete": "Delete",
"translate_post": {
"title": "Translate from %s",
"unknown_language": "Unknown"
}
"delete": "Delete"
},
"tabs": {
"home": "Home",
"search_and_explore": "Search and Explore",
"notifications": "Notifications",
"search": "Search",
"notification": "Notification",
"profile": "Profile"
},
"keyboard": {
@ -142,8 +132,6 @@
"sensitive_content": "Sensitive Content",
"media_content_warning": "Tap anywhere to reveal",
"tap_to_reveal": "Tap to reveal",
"load_embed": "Load Embed",
"link_via_user": "%s via %s",
"poll": {
"vote": "Vote",
"closed": "Closed"
@ -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": {
@ -181,12 +168,6 @@
"private": "Only their followers can see this post.",
"private_from_me": "Only my followers can see this post.",
"direct": "Only mentioned user can see this post."
},
"translation": {
"translated_from": "Translated from %s using %s",
"unknown_language": "Unknown",
"unknown_provider": "Unknown",
"show_original": "Shown Original"
}
},
"friendship": {
@ -463,15 +444,11 @@
"follows_you": "Follows You"
},
"dashboard": {
"my_posts": "posts",
"my_following": "following",
"my_followers": "followers",
"other_posts": "posts",
"other_following": "following",
"other_followers": "followers"
"posts": "posts",
"following": "following",
"followers": "followers"
},
"fields": {
"joined": "Joined",
"add_row": "Add Row",
"placeholder": {
"label": "Label",
@ -584,7 +561,7 @@
"intro": "These are the posts gaining traction in your corner of Mastodon."
},
"favorite": {
"title": "Favorites"
"title": "Your Favorites"
},
"notification": {
"title": {
@ -745,18 +722,6 @@
},
"bookmark": {
"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>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>Noch %#@character_count@ Zeichen übrig</string>
<string>Noch %#@character_count@ übrig</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
@ -53,7 +53,7 @@
<key>a11y.plural.count.characters_left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@character_count@ übrig</string>
<string>%#@character_count@ left</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
@ -61,9 +61,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 Zeichen</string>
<string>1 character</string>
<key>other</key>
<string>%ld Zeichen</string>
<string>%ld characters</string>
</dict>
</dict>
<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."
},
"delete_post": {
"title": "Beiträge löschen",
"title": "Bist du dir sicher, dass du diesen Beitrag löschen möchtest?",
"message": "Bist du dir sicher, dass du diesen Beitrag löschen willst?"
},
"clean_cache": {
"title": "Zwischenspeicher leeren",
"message": "%s erfolgreich aus dem Cache gelöscht."
},
"translation_failed": {
"title": "Hinweis",
"message": "Übersetzung fehlgeschlagen. Möglicherweise 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": {
@ -71,7 +66,7 @@
"ok": "OK",
"done": "Fertig",
"confirm": "Bestätigen",
"continue": "Weiter",
"continue": "Fortfahren",
"compose": "Neue Nachricht",
"cancel": "Abbrechen",
"discard": "Verwerfen",
@ -83,13 +78,12 @@
"sign_up": "Konto erstellen",
"see_more": "Mehr anzeigen",
"preview": "Vorschau",
"copy": "Kopieren",
"share": "Teilen",
"share_user": "%s teilen",
"share_post": "Beitrag teilen",
"open_in_safari": "In Safari öffnen",
"open_in_browser": "Im Browser anzeigen",
"find_people": "Personen zum Folgen finden",
"find_people": "Finde Personen zum Folgen",
"manually_search": "Stattdessen manuell suchen",
"skip": "Überspringen",
"reply": "Antworten",
@ -97,16 +91,12 @@
"block_domain": "%s blockieren",
"unblock_domain": "Blockierung von %s aufheben",
"settings": "Einstellungen",
"delete": "Löschen",
"translate_post": {
"title": "Von %s übersetzen",
"unknown_language": "Unbekannt"
}
"delete": "Löschen"
},
"tabs": {
"home": "Startseite",
"search_and_explore": "Suchen und Entdecken",
"notifications": "Mitteilungen",
"search": "Suche",
"notification": "Benachrichtigungen",
"profile": "Profil"
},
"keyboard": {
@ -142,8 +132,6 @@
"sensitive_content": "NSFW-Inhalt",
"media_content_warning": "Tippe irgendwo zum Anzeigen",
"tap_to_reveal": "Zum Anzeigen tippen",
"load_embed": "Eingebettetes laden",
"link_via_user": "%s via %s",
"poll": {
"vote": "Abstimmen",
"closed": "Beendet"
@ -151,8 +139,8 @@
"meta_entity": {
"url": "Link: %s",
"hashtag": "Hashtag: %s",
"mention": "Profil anzeigen: %s",
"email": "E-Mail-Adresse: %s"
"mention": "Show Profile: %s",
"email": "Email address: %s"
},
"actions": {
"reply": "Antworten",
@ -165,7 +153,6 @@
"show_image": "Bild anzeigen",
"show_gif": "GIF anzeigen",
"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"
},
"tag": {
@ -178,20 +165,14 @@
},
"visibility": {
"unlisted": "Jeder kann diesen Post sehen, aber nicht in der öffentlichen Timeline zeigen.",
"private": "Nur die, die dem Autor folgen, können diesen Beitrag sehen.",
"private_from_me": "Nur die, die mir folgen, können diesen Beitrag sehen.",
"private": "Nur Follower des Authors können diesen Beitrag sehen.",
"private_from_me": "Nur meine Follower können diesen Beitrag sehen.",
"direct": "Nur erwähnte Benutzer können diesen Beitrag sehen."
},
"translation": {
"translated_from": "Übersetzt von %s mit %s",
"unknown_language": "Unbekannt",
"unknown_provider": "Unbekannt",
"show_original": "Original anzeigen"
}
},
"friendship": {
"follow": "Folgen",
"following": "Gefolgt",
"following": "Folge Ich",
"request": "Anfragen",
"pending": "In Warteschlange",
"block": "Blockieren",
@ -206,8 +187,8 @@
"unmute_user": "%s nicht mehr stummschalten",
"muted": "Stummgeschaltet",
"edit_info": "Information bearbeiten",
"show_reblogs": "Teilen anzeigen",
"hide_reblogs": "Teilen ausblenden"
"show_reblogs": "Reblogs anzeigen",
"hide_reblogs": "Reblogs ausblenden"
},
"timeline": {
"filtered": "Gefiltert",
@ -216,7 +197,7 @@
},
"loader": {
"load_missing_posts": "Fehlende Beiträge laden",
"loading_missing_posts": "Fehlende Beiträge werden geladen …",
"loading_missing_posts": "Lade fehlende Beiträge...",
"show_more_replies": "Weitere Antworten anzeigen"
},
"header": {
@ -276,7 +257,7 @@
"search_servers_or_enter_url": "Suche nach einer Community oder gib eine URL ein"
},
"empty_state": {
"finding_servers": "Verfügbare Server werden gesucht",
"finding_servers": "Verfügbare Server werden gesucht...",
"bad_network": "Beim Laden der Daten ist etwas schief gelaufen. Überprüfe deine Internetverbindung.",
"no_results": "Keine Ergebnisse"
}
@ -367,7 +348,7 @@
"open_email_app": {
"title": "Überprüfe deinen Posteingang.",
"description": "Wir haben dir gerade eine E-Mail geschickt. Überprüfe deinen Spam-Ordner, falls du es noch nicht getan hast.",
"mail": "E-Mail",
"mail": "Mail",
"open_email_client": "E-Mail-Client öffnen"
}
},
@ -377,7 +358,7 @@
"offline": "Offline",
"new_posts": "Neue Beiträge anzeigen",
"published": "Veröffentlicht!",
"Publishing": "Beitrag wird veröffentlicht",
"Publishing": "Beitrag wird veröffentlicht...",
"accessibility": {
"logo_label": "Logo-Button",
"logo_hint": "Zum Scrollen nach oben tippen und zum vorherigen Ort erneut tippen"
@ -386,7 +367,7 @@
},
"suggestion_account": {
"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": {
"title": {
@ -405,14 +386,14 @@
"photo": "Foto",
"video": "Video",
"attachment_broken": "Dieses %s scheint defekt zu sein und\nkann nicht auf Mastodon hochgeladen werden.",
"description_photo": "Für Menschen mit Sehbehinderung beschreiben",
"description_video": "Für Menschen mit Sehbehinderung beschreiben",
"description_photo": "Für Menschen mit Sehbehinderung beschreiben...",
"description_video": "Für Menschen mit Sehbehinderung beschreiben...",
"load_failed": "Laden fehlgeschlagen",
"upload_failed": "Upload fehlgeschlagen",
"can_not_recognize_this_media_attachment": "Medienanhang wurde nicht erkannt",
"attachment_too_large": "Anhang zu groß",
"compressing_state": "wird komprimiert …",
"server_processing_state": "Serververarbeitung"
"compressing_state": "Komprimieren...",
"server_processing_state": "Serververarbeitung..."
},
"poll": {
"duration_time": "Dauer: %s",
@ -427,7 +408,7 @@
"the_poll_has_empty_option": "Die Umfrage hat eine leere Option"
},
"content_warning": {
"placeholder": "Hier eine Inhaltswarnung schreiben …"
"placeholder": "Schreibe eine Inhaltswarnung hier..."
},
"visibility": {
"public": "Öffentlich",
@ -446,8 +427,8 @@
"enable_content_warning": "Inhaltswarnung einschalten",
"disable_content_warning": "Inhaltswarnung ausschalten",
"post_visibility_menu": "Sichtbarkeitsmenü",
"post_options": "Beitragsoptionen",
"posting_as": "Veröffentlichen als %s"
"post_options": "Post Options",
"posting_as": "Posting as %s"
},
"keyboard": {
"discard_post": "Beitrag verwerfen",
@ -463,15 +444,11 @@
"follows_you": "Folgt dir"
},
"dashboard": {
"my_posts": "Beiträge",
"my_following": "folge ich",
"my_followers": "followers",
"other_posts": "Beiträge",
"other_following": "folge ich",
"other_followers": "followers"
"posts": "Beiträge",
"following": "Gefolgte",
"followers": "Folgende"
},
"fields": {
"joined": "Beigetreten",
"add_row": "Zeile hinzufügen",
"placeholder": {
"label": "Bezeichnung",
@ -507,12 +484,12 @@
"message": "Bestätige %s zu entsperren"
},
"confirm_show_reblogs": {
"title": "Teilen anzeigen",
"message": "Bestätigen, um Teilen anzuzeigen"
"title": "Reblogs anzeigen",
"message": "Bestätigen um Reblogs anzuzeigen"
},
"confirm_hide_reblogs": {
"title": "Teilen ausblenden",
"message": "Bestätigen, um Teilen auszublenden"
"title": "Reblogs ausblenden",
"message": "Confirm to hide reblogs"
}
},
"accessibility": {
@ -523,15 +500,15 @@
}
},
"follower": {
"title": "Folgende",
"footer": "Folgende, die nicht auf deinem Server registriert sind, werden nicht angezeigt."
"title": "Follower",
"footer": "Folger, die nicht auf deinem Server registriert sind, werden nicht angezeigt."
},
"following": {
"title": "Gefolgte",
"title": "Folgende",
"footer": "Gefolgte, die nicht auf deinem Server registriert sind, werden nicht angezeigt."
},
"familiarFollowers": {
"title": "Folgende, die du kennst",
"title": "Follower, die dir bekannt vorkommen",
"followed_by_names": "Gefolgt von %s"
},
"favorited_by": {
@ -555,7 +532,7 @@
},
"accounts": {
"title": "Konten, die dir gefallen könnten",
"description": "Vielleicht gefallen dir diese Konten",
"description": "Vielleicht gefallen dir diese Benutzer",
"follow": "Folgen"
}
},
@ -745,18 +722,6 @@
},
"bookmark": {
"title": "Lesezeichen"
},
"followed_tags": {
"title": "Gefolgte Hashtags",
"header": {
"posts": "Beiträge",
"participants": "Teilnehmer*innen",
"posts_today": "Beiträge heute"
},
"actions": {
"follow": "Folgen",
"unfollow": "Entfolgen"
}
}
}
}

View File

@ -15,7 +15,7 @@
<key>one</key>
<string>1 unread notification</string>
<key>other</key>
<string>%ld unread notifications</string>
<string>%ld unread notification</string>
</dict>
</dict>
<key>a11y.plural.count.input_limit_exceeds</key>

View File

@ -51,11 +51,6 @@
"clean_cache": {
"title": "Clean Cache",
"message": "Successfully cleaned %s cache."
},
"translation_failed": {
"title": "Note",
"message": "Translation failed. Maybe the administrator has not enabled translations on this server or this server is running an older version of Mastodon where translations are not yet supported.",
"button": "OK"
}
},
"controls": {
@ -83,7 +78,6 @@
"sign_up": "Create account",
"see_more": "See More",
"preview": "Preview",
"copy": "Copy",
"share": "Share",
"share_user": "Share %s",
"share_post": "Share Post",
@ -97,16 +91,12 @@
"block_domain": "Block %s",
"unblock_domain": "Unblock %s",
"settings": "Settings",
"delete": "Delete",
"translate_post": {
"title": "Translate from %s",
"unknown_language": "Unknown"
}
"delete": "Delete"
},
"tabs": {
"home": "Home",
"search_and_explore": "Search and Explore",
"notifications": "Notifications",
"search": "Search",
"notification": "Notification",
"profile": "Profile"
},
"keyboard": {
@ -142,8 +132,6 @@
"sensitive_content": "Sensitive Content",
"media_content_warning": "Tap anywhere to reveal",
"tap_to_reveal": "Tap to reveal",
"load_embed": "Load Embed",
"link_via_user": "%s via %s",
"poll": {
"vote": "Vote",
"closed": "Closed"
@ -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": {
@ -181,12 +168,6 @@
"private": "Only their followers can see this post.",
"private_from_me": "Only my followers can see this post.",
"direct": "Only mentioned user can see this post."
},
"translation": {
"translated_from": "Translated from %s using %s",
"unknown_language": "Unknown",
"unknown_provider": "Unknown",
"show_original": "Shown Original"
}
},
"friendship": {
@ -379,7 +360,7 @@
"published": "Published!",
"Publishing": "Publishing post...",
"accessibility": {
"logo_label": "Mastodon",
"logo_label": "Logo Button",
"logo_hint": "Tap to scroll to top and tap again to previous location"
}
}
@ -463,15 +444,11 @@
"follows_you": "Follows You"
},
"dashboard": {
"my_posts": "posts",
"my_following": "following",
"my_followers": "followers",
"other_posts": "posts",
"other_following": "following",
"other_followers": "followers"
"posts": "posts",
"following": "following",
"followers": "followers"
},
"fields": {
"joined": "Joined",
"add_row": "Add Row",
"placeholder": {
"label": "Label",
@ -584,7 +561,7 @@
"intro": "These are the posts gaining traction in your corner of Mastodon."
},
"favorite": {
"title": "Favorites"
"title": "Your Favorites"
},
"notification": {
"title": {
@ -745,18 +722,6 @@
},
"bookmark": {
"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>
<string>1 unread notification</string>
<key>other</key>
<string>%ld unread notifications</string>
<string>%ld unread notification</string>
</dict>
</dict>
<key>a11y.plural.count.input_limit_exceeds</key>
@ -60,8 +60,14 @@
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>zero</key>
<string>no characters</string>
<key>one</key>
<string>1 character</string>
<key>few</key>
<string>%ld characters</string>
<key>many</key>
<string>%ld characters</string>
<key>other</key>
<string>%ld characters</string>
</dict>

View File

@ -51,11 +51,6 @@
"clean_cache": {
"title": "Clean Cache",
"message": "Successfully cleaned %s cache."
},
"translation_failed": {
"title": "Note",
"message": "Translation failed. Maybe the administrator has not enabled translations on this server or this server is running an older version of Mastodon where translations are not yet supported.",
"button": "OK"
}
},
"controls": {
@ -83,7 +78,6 @@
"sign_up": "Create account",
"see_more": "See More",
"preview": "Preview",
"copy": "Copy",
"share": "Share",
"share_user": "Share %s",
"share_post": "Share Post",
@ -97,16 +91,12 @@
"block_domain": "Block %s",
"unblock_domain": "Unblock %s",
"settings": "Settings",
"delete": "Delete",
"translate_post": {
"title": "Translate from %s",
"unknown_language": "Unknown"
}
"delete": "Delete"
},
"tabs": {
"home": "Home",
"search_and_explore": "Search and Explore",
"notifications": "Notifications",
"search": "Search",
"notification": "Notification",
"profile": "Profile"
},
"keyboard": {
@ -142,8 +132,6 @@
"sensitive_content": "Sensitive Content",
"media_content_warning": "Tap anywhere to reveal",
"tap_to_reveal": "Tap to reveal",
"load_embed": "Load Embed",
"link_via_user": "%s via %s",
"poll": {
"vote": "Vote",
"closed": "Closed"
@ -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": {
@ -181,12 +168,6 @@
"private": "Only their followers can see this post.",
"private_from_me": "Only my followers can see this post.",
"direct": "Only mentioned user can see this post."
},
"translation": {
"translated_from": "Translated from %s using %s",
"unknown_language": "Unknown",
"unknown_provider": "Unknown",
"show_original": "Shown Original"
}
},
"friendship": {
@ -379,7 +360,7 @@
"published": "Published!",
"Publishing": "Publishing post...",
"accessibility": {
"logo_label": "Mastodon",
"logo_label": "Logo Button",
"logo_hint": "Tap to scroll to top and tap again to previous location"
}
}
@ -463,15 +444,11 @@
"follows_you": "Follows You"
},
"dashboard": {
"my_posts": "posts",
"my_following": "following",
"my_followers": "followers",
"other_posts": "posts",
"other_following": "following",
"other_followers": "followers"
"posts": "posts",
"following": "following",
"followers": "followers"
},
"fields": {
"joined": "Joined",
"add_row": "Add Row",
"placeholder": {
"label": "Label",
@ -584,7 +561,7 @@
"intro": "These are the posts gaining traction in your corner of Mastodon."
},
"favorite": {
"title": "Favorites"
"title": "Your Favorites"
},
"notification": {
"title": {
@ -745,18 +722,6 @@
},
"bookmark": {
"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": {
"title": "Limpiar caché",
"message": "Se limpió exitosamente %s de la memoria caché."
},
"translation_failed": {
"title": "Nota",
"message": "Falló la traducción. Tal vez el administrador no habilitó las traducciones en este servidor, o este servidor está ejecutando una versión antigua de Mastodon en donde las traducciones aún no estaban disponibles.",
"button": "Aceptar"
}
},
"controls": {
@ -83,7 +78,6 @@
"sign_up": "Crear cuenta",
"see_more": "Ver más",
"preview": "Previsualización",
"copy": "Copiar",
"share": "Compartir",
"share_user": "Compartir %s",
"share_post": "Compartir mensaje",
@ -97,16 +91,12 @@
"block_domain": "Bloquear a %s",
"unblock_domain": "Desbloquear a %s",
"settings": "Configuración",
"delete": "Eliminar",
"translate_post": {
"title": "Traducido desde el %s",
"unknown_language": "Desconocido"
}
"delete": "Eliminar"
},
"tabs": {
"home": "Principal",
"search_and_explore": "Buscar y explorar",
"notifications": "Notificaciones",
"search": "Buscar",
"notification": "Notificación",
"profile": "Perfil"
},
"keyboard": {
@ -142,8 +132,6 @@
"sensitive_content": "Contenido sensible",
"media_content_warning": "Tocá en cualquier parte para mostrar",
"tap_to_reveal": "Tocá para mostrar",
"load_embed": "Cargar lo insertado",
"link_via_user": "%s vía %s",
"poll": {
"vote": "Votar",
"closed": "Cerrada"
@ -165,7 +153,6 @@
"show_image": "Mostrar imagen",
"show_gif": "Mostrar GIF",
"show_video_player": "Mostrar reproductor de video",
"share_link_in_post": "Compartir enlace en mensaje",
"tap_then_hold_to_show_menu": "Tocá y mantené presionado para mostrar el menú"
},
"tag": {
@ -181,12 +168,6 @@
"private": "Sólo sus seguidores pueden ver este mensaje.",
"private_from_me": "Sólo mis seguidores pueden ver este mensaje.",
"direct": "Sólo el usuario mencionado puede ver este mensaje."
},
"translation": {
"translated_from": "Traducido desde el %s vía %s",
"unknown_language": "Desconocido",
"unknown_provider": "Desconocido",
"show_original": "Mostrar original"
}
},
"friendship": {
@ -463,15 +444,11 @@
"follows_you": "Te sigue"
},
"dashboard": {
"my_posts": "mensajes",
"my_following": "siguiendo",
"my_followers": "seguidores",
"other_posts": "mensajes",
"other_following": "siguiendo",
"other_followers": "seguidores"
"posts": "mensajes",
"following": "siguiendo",
"followers": "seguidores"
},
"fields": {
"joined": "En este servidor desde",
"add_row": "Agregar fila",
"placeholder": {
"label": "Nombre de campo",
@ -745,18 +722,6 @@
},
"bookmark": {
"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>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>Quedan %#@character_count@</string>
<string>%#@character_count@ left</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
@ -61,9 +61,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 carácter</string>
<string>1 character</string>
<key>other</key>
<string>%ld caracteres</string>
<string>%ld characters</string>
</dict>
</dict>
<key>plural.count.followed_by_and_mutual</key>

View File

@ -51,11 +51,6 @@
"clean_cache": {
"title": "Limpiar Caché",
"message": "Se han limpiado con éxito %s de caché."
},
"translation_failed": {
"title": "Nota",
"message": "Error al traducir. Tal vez el administrador no ha habilitado las traducciones en este servidor o este servidor está ejecutando una versión antigua de Mastodon donde las traducciones aún no están soportadas.",
"button": "Aceptar"
}
},
"controls": {
@ -79,11 +74,10 @@
"take_photo": "Tomar foto",
"save_photo": "Guardar foto",
"copy_photo": "Copiar foto",
"sign_in": "Iniciar sesión",
"sign_up": "Crear cuenta",
"sign_in": "Log in",
"sign_up": "Create account",
"see_more": "Ver más",
"preview": "Vista previa",
"copy": "Copiar",
"share": "Compartir",
"share_user": "Compartir %s",
"share_post": "Compartir publicación",
@ -97,16 +91,12 @@
"block_domain": "Bloquear %s",
"unblock_domain": "Desbloquear %s",
"settings": "Configuración",
"delete": "Borrar",
"translate_post": {
"title": "Traducir desde %s",
"unknown_language": "Desconocido"
}
"delete": "Borrar"
},
"tabs": {
"home": "Inicio",
"search_and_explore": "Buscar y explorar",
"notifications": "Notificaciones",
"search": "Buscar",
"notification": "Notificación",
"profile": "Perfil"
},
"keyboard": {
@ -142,17 +132,15 @@
"sensitive_content": "Contenido sensible",
"media_content_warning": "Pulsa en cualquier sitio para mostrar",
"tap_to_reveal": "Tocar para revelar",
"load_embed": "Cargar incrustado",
"link_via_user": "%s vía %s",
"poll": {
"vote": "Vota",
"closed": "Cerrado"
},
"meta_entity": {
"url": "Enlace: %s",
"hashtag": "Etiqueta: %s",
"mention": "Mostrar Perfil: %s",
"email": "Dirección de correo electrónico: %s"
"url": "Link: %s",
"hashtag": "Hashtag: %s",
"mention": "Show Profile: %s",
"email": "Email address: %s"
},
"actions": {
"reply": "Responder",
@ -165,7 +153,6 @@
"show_image": "Mostrar imagen",
"show_gif": "Mostrar GIF",
"show_video_player": "Mostrar reproductor de vídeo",
"share_link_in_post": "Compartir enlace en publicación",
"tap_then_hold_to_show_menu": "Toca, después mantén para mostrar el menú"
},
"tag": {
@ -181,12 +168,6 @@
"private": "Sólo sus seguidores pueden ver este mensaje.",
"private_from_me": "Sólo mis seguidores pueden ver este mensaje.",
"direct": "Sólo el usuario mencionado puede ver este mensaje."
},
"translation": {
"translated_from": "Traducido desde %s usando %s",
"unknown_language": "Desconocido",
"unknown_provider": "Desconocido",
"show_original": "Mostrar Original"
}
},
"friendship": {
@ -206,8 +187,8 @@
"unmute_user": "Desmutear a %s",
"muted": "Silenciado",
"edit_info": "Editar Info",
"show_reblogs": "Mostrar reblogs",
"hide_reblogs": "Ocultar reblogs"
"show_reblogs": "Show Reblogs",
"hide_reblogs": "Hide Reblogs"
},
"timeline": {
"filtered": "Filtrado",
@ -238,15 +219,15 @@
"log_in": "Iniciar sesión"
},
"login": {
"title": "Bienvenido de nuevo",
"subtitle": "Inicie sesión en el servidor en el que creó su cuenta.",
"title": "Welcome back",
"subtitle": "Log you in on the server you created your account on.",
"server_search_field": {
"placeholder": "Introduzca la URL o busque su servidor"
"placeholder": "Enter URL or search for your server"
}
},
"server_picker": {
"title": "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": {
"category": {
"all": "Todas",
@ -273,7 +254,7 @@
"category": "CATEGORÍA"
},
"input": {
"search_servers_or_enter_url": "Buscar comunidades o introducir URL"
"search_servers_or_enter_url": "Search communities or enter URL"
},
"empty_state": {
"finding_servers": "Encontrando servidores disponibles...",
@ -407,12 +388,12 @@
"attachment_broken": "Este %s está roto y no puede\nsubirse a Mastodon.",
"description_photo": "Describe la foto para los usuarios con dificultad visual...",
"description_video": "Describe el vídeo para los usuarios con dificultad visual...",
"load_failed": "Carga fallida",
"upload_failed": "Error al cargar",
"can_not_recognize_this_media_attachment": "No se puede reconocer este archivo adjunto",
"attachment_too_large": "Adjunto demasiado grande",
"compressing_state": "Comprimiendo...",
"server_processing_state": "Procesando en el servidor..."
"load_failed": "Load Failed",
"upload_failed": "Upload Failed",
"can_not_recognize_this_media_attachment": "Can not recognize this media attachment",
"attachment_too_large": "Attachment too large",
"compressing_state": "Compressing...",
"server_processing_state": "Server Processing..."
},
"poll": {
"duration_time": "Duración: %s",
@ -423,8 +404,8 @@
"three_days": "4 Días",
"seven_days": "7 Días",
"option_number": "Opción %ld",
"the_poll_is_invalid": "La encuesta no es válida",
"the_poll_has_empty_option": "La encuesta tiene una opción vacía"
"the_poll_is_invalid": "The poll is invalid",
"the_poll_has_empty_option": "The poll has empty option"
},
"content_warning": {
"placeholder": "Escribe una advertencia precisa aquí..."
@ -446,8 +427,8 @@
"enable_content_warning": "Activar Advertencia de Contenido",
"disable_content_warning": "Desactivar Advertencia de Contenido",
"post_visibility_menu": "Menú de Visibilidad de la Publicación",
"post_options": "Opciones de Publicación",
"posting_as": "Publicado como %s"
"post_options": "Post Options",
"posting_as": "Posting as %s"
},
"keyboard": {
"discard_post": "Descartar Publicación",
@ -463,23 +444,19 @@
"follows_you": "Te sigue"
},
"dashboard": {
"my_posts": "posts",
"my_following": "following",
"my_followers": "followers",
"other_posts": "posts",
"other_following": "following",
"other_followers": "followers"
"posts": "publicaciones",
"following": "siguiendo",
"followers": "seguidores"
},
"fields": {
"joined": "Se unió",
"add_row": "Añadir Fila",
"placeholder": {
"label": "Nombre para el campo",
"content": "Contenido"
},
"verified": {
"short": "Verificado en %s",
"long": "La propiedad de este enlace fue verificada el %s"
"short": "Verified on %s",
"long": "Ownership of this link was checked on %s"
}
},
"segmented_control": {
@ -507,12 +484,12 @@
"message": "Confirmar para desbloquear a %s"
},
"confirm_show_reblogs": {
"title": "Mostrar reblogs",
"message": "Confirmar para mostrar reblogs"
"title": "Show Reblogs",
"message": "Confirm to show reblogs"
},
"confirm_hide_reblogs": {
"title": "Ocultar reblogs",
"message": "Confirmar para ocultar reblogs"
"title": "Hide Reblogs",
"message": "Confirm to hide reblogs"
}
},
"accessibility": {
@ -744,19 +721,7 @@
"accessibility_hint": "Haz doble toque para descartar este asistente"
},
"bookmark": {
"title": "Marcadores"
},
"followed_tags": {
"title": "Etiquetas seguidas",
"header": {
"posts": "publicaciones",
"participants": "participantes",
"posts_today": "publicaciones de hoy"
},
"actions": {
"follow": "Seguir",
"unfollow": "Dejar de seguir"
}
"title": "Bookmarks"
}
}
}

View File

@ -63,13 +63,13 @@
<key>one</key>
<string>1 character</string>
<key>other</key>
<string>%ld karaktere</string>
<string>%ld characters</string>
</dict>
</dict>
<key>plural.count.followed_by_and_mutual</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@names@: "%#@count_mutual@</string>
<string>%#@names@%#@count_mutual@</string>
<key>names</key>
<dict>
<key>one</key>

View File

@ -51,11 +51,6 @@
"clean_cache": {
"title": "Garbitu cache-a",
"message": "Behar bezala garbitu da %s cache-a."
},
"translation_failed": {
"title": "Note",
"message": "Translation failed. Maybe the administrator has not enabled translations on this server or this server is running an older version of Mastodon where translations are not yet supported.",
"button": "OK"
}
},
"controls": {
@ -79,11 +74,10 @@
"take_photo": "Atera argazkia",
"save_photo": "Gorde argazkia",
"copy_photo": "Kopiatu argazkia",
"sign_in": "Hasi saioa",
"sign_up": "Sortu kontua",
"sign_in": "Log in",
"sign_up": "Create account",
"see_more": "Ikusi gehiago",
"preview": "Aurrebista",
"copy": "Copy",
"share": "Partekatu",
"share_user": "Partekatu %s",
"share_post": "Partekatu bidalketa",
@ -97,16 +91,12 @@
"block_domain": "Blokeatu %s",
"unblock_domain": "Desblokeatu %s",
"settings": "Ezarpenak",
"delete": "Ezabatu",
"translate_post": {
"title": "Translate from %s",
"unknown_language": "Unknown"
}
"delete": "Ezabatu"
},
"tabs": {
"home": "Hasiera",
"search_and_explore": "Search and Explore",
"notifications": "Notifications",
"search": "Bilatu",
"notification": "Jakinarazpena",
"profile": "Profila"
},
"keyboard": {
@ -139,20 +129,18 @@
"show_post": "Erakutsi bidalketa",
"show_user_profile": "Erakutsi erabiltzailearen profila",
"content_warning": "Edukiaren abisua",
"sensitive_content": "Eduki hunkigarria",
"sensitive_content": "Sensitive Content",
"media_content_warning": "Ukitu edonon bistaratzeko",
"tap_to_reveal": "Sakatu erakusteko",
"load_embed": "Load Embed",
"link_via_user": "%s via %s",
"poll": {
"vote": "Bozkatu",
"closed": "Itxita"
},
"meta_entity": {
"url": "Lotura: %s",
"hashtag": "Traolak: %s",
"mention": "Erakutsi Profila: %s",
"email": "E-posta helbidea: %s"
"url": "Link: %s",
"hashtag": "Hashtag: %s",
"mention": "Show Profile: %s",
"email": "Email address: %s"
},
"actions": {
"reply": "Erantzun",
@ -165,7 +153,6 @@
"show_image": "Erakutsi irudia",
"show_gif": "Erakutsi GIFa",
"show_video_player": "Erakutsi bideo-erreproduzigailua",
"share_link_in_post": "Share Link in Post",
"tap_then_hold_to_show_menu": "Sakatu eta eutsi menua erakusteko"
},
"tag": {
@ -181,12 +168,6 @@
"private": "Beren jarraitzaileek soilik ikus dezakete bidalketa hau.",
"private_from_me": "Nire jarraitzaileek soilik ikus dezakete bidalketa hau.",
"direct": "Aipatutako erabiltzaileek soilik ikus dezakete bidalketa hau."
},
"translation": {
"translated_from": "Translated from %s using %s",
"unknown_language": "Unknown",
"unknown_provider": "Unknown",
"show_original": "Shown Original"
}
},
"friendship": {
@ -206,8 +187,8 @@
"unmute_user": "Desmututu %s",
"muted": "Mutututa",
"edit_info": "Editatu informazioa",
"show_reblogs": "Ikusi bultzadak",
"hide_reblogs": "Ezkutatu bultzadak"
"show_reblogs": "Show Reblogs",
"hide_reblogs": "Hide Reblogs"
},
"timeline": {
"filtered": "Iragazita",
@ -238,7 +219,7 @@
"log_in": "Hasi saioa"
},
"login": {
"title": "Ongi etorri berriro ere",
"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"
@ -283,7 +264,7 @@
},
"register": {
"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": {
"avatar": {
"delete": "Ezabatu"
@ -354,7 +335,7 @@
"confirm_email": {
"title": "Eta azkenik...",
"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": {
"open_email_app": "Ireki eposta aplikazioa",
"resend": "Berbidali"
@ -379,7 +360,7 @@
"published": "Argitaratua!",
"Publishing": "Bidalketa argitaratzen...",
"accessibility": {
"logo_label": "Logo botoia",
"logo_label": "Logo Button",
"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_video": "Deskribatu bideoa ikusmen arazoak dituztenentzat...",
"load_failed": "Load Failed",
"upload_failed": "Kargatzeak huts egin du",
"upload_failed": "Upload Failed",
"can_not_recognize_this_media_attachment": "Can not recognize this media attachment",
"attachment_too_large": "Eranskina handiegia da",
"compressing_state": "Konprimatzen...",
"attachment_too_large": "Attachment too large",
"compressing_state": "Compressing...",
"server_processing_state": "Server Processing..."
},
"poll": {
@ -423,7 +404,7 @@
"three_days": "3 egun",
"seven_days": "7 egun",
"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"
},
"content_warning": {
@ -446,7 +427,7 @@
"enable_content_warning": "Gaitu edukiaren abisua",
"disable_content_warning": "Desgaitu edukiaren abisua",
"post_visibility_menu": "Bidalketaren ikusgaitasunaren menua",
"post_options": "Bildalketaren aukerak",
"post_options": "Post Options",
"posting_as": "Posting as %s"
},
"keyboard": {
@ -460,18 +441,14 @@
},
"profile": {
"header": {
"follows_you": "Jarraitzen zaitu"
"follows_you": "Follows You"
},
"dashboard": {
"my_posts": "posts",
"my_following": "following",
"my_followers": "followers",
"other_posts": "posts",
"other_following": "following",
"other_followers": "followers"
"posts": "bidalketa",
"following": "jarraitzen",
"followers": "jarraitzaile"
},
"fields": {
"joined": "Joined",
"add_row": "Gehitu errenkada",
"placeholder": {
"label": "Etiketa",
@ -479,7 +456,7 @@
},
"verified": {
"short": "Verified on %s",
"long": "Esteka honen jabetzaren egiaztaketa data: %s"
"long": "Ownership of this link was checked on %s"
}
},
"segmented_control": {
@ -507,12 +484,12 @@
"message": "Berretsi %s desblokeatzea"
},
"confirm_show_reblogs": {
"title": "Ikusi bultzadak",
"message": "Berretsi birbidalketak ikustea"
"title": "Show Reblogs",
"message": "Confirm to show reblogs"
},
"confirm_hide_reblogs": {
"title": "Ezkutatu bultzadak",
"message": "Berretsi birbidalketak ezkutatzea"
"title": "Hide Reblogs",
"message": "Confirm to hide reblogs"
}
},
"accessibility": {
@ -523,11 +500,11 @@
}
},
"follower": {
"title": "jarraitzaile",
"title": "follower",
"footer": "Beste zerbitzarietako jarraitzaileak ez dira bistaratzen."
},
"following": {
"title": "jarraitzen",
"title": "following",
"footer": "Beste zerbitzarietan jarraitutakoak ez dira bistaratzen."
},
"familiarFollowers": {
@ -578,10 +555,10 @@
"posts": "Argitalpenak",
"hashtags": "Traolak",
"news": "Albisteak",
"community": "Komunitatea",
"community": "Community",
"for_you": "Zuretzat"
},
"intro": "Hauek dira zure Mastodon txokoan beraien lekua hartzen ari diren argitalpenak."
"intro": "These are the posts gaining traction in your corner of Mastodon."
},
"favorite": {
"title": "Zure gogokoak"
@ -604,10 +581,10 @@
"show_mentions": "Erakutsi aipamenak"
},
"follow_request": {
"accept": "Onartu",
"accepted": "Onartuta",
"reject": "ukatu",
"rejected": "Ukatua"
"accept": "Accept",
"accepted": "Accepted",
"reject": "reject",
"rejected": "Rejected"
}
},
"thread": {
@ -684,46 +661,46 @@
"text_placeholder": "Idatzi edo itsatsi iruzkin gehigarriak",
"reported": "SALATUA",
"step_one": {
"step_1_of_4": "1. urratsa 4tik",
"whats_wrong_with_this_post": "Zer du txarra argitalpen honek?",
"whats_wrong_with_this_account": "Zer du txarra kontu honek?",
"whats_wrong_with_this_username": "Zer du txarra %s?",
"select_the_best_match": "Aukeratu egokiena",
"i_dont_like_it": "Ez dut gustukoa",
"it_is_not_something_you_want_to_see": "Ikusi nahi ez dudan zerbait da",
"its_spam": "Spama da",
"malicious_links_fake_engagement_or_repetetive_replies": "Esteka maltzurrak, gezurrezko elkarrekintzak edo erantzun errepikakorrak",
"it_violates_server_rules": "Zerbitzariaren arauak hausten ditu",
"you_are_aware_that_it_breaks_specific_rules": "Arau zehatzak urratzen dituela badakizu",
"its_something_else": "Beste zerbait da",
"the_issue_does_not_fit_into_other_categories": "Arazoa ezin da beste kategorietan sailkatu"
"step_1_of_4": "Step 1 of 4",
"whats_wrong_with_this_post": "What's wrong with this post?",
"whats_wrong_with_this_account": "What's wrong with this account?",
"whats_wrong_with_this_username": "What's wrong with %s?",
"select_the_best_match": "Select the best match",
"i_dont_like_it": "I dont like it",
"it_is_not_something_you_want_to_see": "It is not something you want to see",
"its_spam": "Its spam",
"malicious_links_fake_engagement_or_repetetive_replies": "Malicious links, fake engagement, or repetetive replies",
"it_violates_server_rules": "It violates server rules",
"you_are_aware_that_it_breaks_specific_rules": "You are aware that it breaks specific rules",
"its_something_else": "Its something else",
"the_issue_does_not_fit_into_other_categories": "The issue does not fit into other categories"
},
"step_two": {
"step_2_of_4": "2. urratsa 4tik",
"which_rules_are_being_violated": "Ze arau hautsi ditu?",
"select_all_that_apply": "Hautatu dagozkion guztiak",
"step_2_of_4": "Step 2 of 4",
"which_rules_are_being_violated": "Which rules are being violated?",
"select_all_that_apply": "Select all that apply",
"i_just_dont_like_it": "I just dont like it"
},
"step_three": {
"step_3_of_4": "3. urratsa 4tik",
"are_there_any_posts_that_back_up_this_report": "Salaketa hau babesten duen bidalketarik badago?",
"select_all_that_apply": "Hautatu dagozkion guztiak"
"step_3_of_4": "Step 3 of 4",
"are_there_any_posts_that_back_up_this_report": "Are there any posts that back up this report?",
"select_all_that_apply": "Select all that apply"
},
"step_four": {
"step_4_of_4": "4. urratsa 4tik",
"is_there_anything_else_we_should_know": "Beste zerbait jakin beharko genuke?"
"step_4_of_4": "Step 4 of 4",
"is_there_anything_else_we_should_know": "Is there anything else we should know?"
},
"step_final": {
"dont_want_to_see_this": "Ez duzu hau ikusi nahi?",
"when_you_see_something_you_dont_like_on_mastodon_you_can_remove_the_person_from_your_experience.": "Mastodonen gustuko ez duzun zerbait ikusten duzunean, zure esperientziatik atera dezakezu pertsona hori.",
"unfollow": "Utzi jarraitzeari",
"dont_want_to_see_this": "Dont want to see this?",
"when_you_see_something_you_dont_like_on_mastodon_you_can_remove_the_person_from_your_experience.": "When you see something you dont like on Mastodon, you can remove the person from your experience.",
"unfollow": "Unfollow",
"unfollowed": "Unfollowed",
"unfollow_user": "%s jarraitzeari utzi",
"mute_user": "Mututu %s",
"you_wont_see_their_posts_or_reblogs_in_your_home_feed_they_wont_know_they_ve_been_muted": "Ez dituzu bere bidalketa eta birbidalketak zure hasierako jarioan ikusiko. Ez dute jakingo isilarazi dituztenik.",
"block_user": "Blokeatu %s",
"they_will_no_longer_be_able_to_follow_or_see_your_posts_but_they_can_see_if_theyve_been_blocked": "Ezin izango dituzte zure bidalketak jarraitu edo ikusi, baina blokeatuta dauden ikusi ahal izango dute.",
"while_we_review_this_you_can_take_action_against_user": "Hau berrikusten dugun bitartean, %s erabiltzailearen aurkako neurriak hartu ditzakezu"
"unfollow_user": "Unfollow %s",
"mute_user": "Mute %s",
"you_wont_see_their_posts_or_reblogs_in_your_home_feed_they_wont_know_they_ve_been_muted": "You wont see their posts or reblogs in your home feed. They wont know theyve been muted.",
"block_user": "Block %s",
"they_will_no_longer_be_able_to_follow_or_see_your_posts_but_they_can_see_if_theyve_been_blocked": "They will no longer be able to follow or see your posts, but they can see if theyve been blocked.",
"while_we_review_this_you_can_take_action_against_user": "While we review this, you can take action against %s"
}
},
"preview": {
@ -744,19 +721,7 @@
"accessibility_hint": "Ukitu birritan morroi hau baztertzeko"
},
"bookmark": {
"title": "Laster-markak"
},
"followed_tags": {
"title": "Followed Tags",
"header": {
"posts": "posts",
"participants": "participants",
"posts_today": "posts today"
},
"actions": {
"follow": "Follow",
"unfollow": "Unfollow"
}
"title": "Bookmarks"
}
}
}

View File

@ -51,11 +51,6 @@
"clean_cache": {
"title": "Puhdista välimuisti",
"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": {
@ -83,7 +78,6 @@
"sign_up": "Create account",
"see_more": "Näytä lisää",
"preview": "Esikatselu",
"copy": "Copy",
"share": "Jaa",
"share_user": "Jaa %s",
"share_post": "Jaa julkaisu",
@ -97,16 +91,12 @@
"block_domain": "Estä %s",
"unblock_domain": "Poista esto %s",
"settings": "Asetukset",
"delete": "Poista",
"translate_post": {
"title": "Translate from %s",
"unknown_language": "Unknown"
}
"delete": "Poista"
},
"tabs": {
"home": "Koti",
"search_and_explore": "Search and Explore",
"notifications": "Notifications",
"search": "Haku",
"notification": "Ilmoitus",
"profile": "Profiili"
},
"keyboard": {
@ -142,8 +132,6 @@
"sensitive_content": "Sensitive Content",
"media_content_warning": "Napauta mistä tahansa paljastaaksesi",
"tap_to_reveal": "Tap to reveal",
"load_embed": "Load Embed",
"link_via_user": "%s via %s",
"poll": {
"vote": "Vote",
"closed": "Suljettu"
@ -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": {
@ -181,12 +168,6 @@
"private": "Only their followers can see this post.",
"private_from_me": "Only my followers can see this post.",
"direct": "Only mentioned user can see this post."
},
"translation": {
"translated_from": "Käännetty kielestä %s palvelulla %s",
"unknown_language": "Unknown",
"unknown_provider": "Tuntematon",
"show_original": "Shown Original"
}
},
"friendship": {
@ -463,15 +444,11 @@
"follows_you": "Follows You"
},
"dashboard": {
"my_posts": "julkaisut",
"my_following": "seurattavat",
"my_followers": "seuraajat",
"other_posts": "julkaisut",
"other_following": "seurattavat",
"other_followers": "seuraajat"
"posts": "julkaisut",
"following": "seurataan",
"followers": "seuraajat"
},
"fields": {
"joined": "Joined",
"add_row": "Lisää rivi",
"placeholder": {
"label": "Nimi",
@ -745,18 +722,6 @@
},
"bookmark": {
"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": {
"title": "Vider le cache",
"message": "Cache de %s effacé avec succès."
},
"translation_failed": {
"title": "Note",
"message": "La traduction a échoué. Peut-être que l'administrateur n'a pas activé les traductions sur ce serveur ou que ce serveur utilise une ancienne version de Mastodon où les traductions ne sont pas encore prises en charge.",
"button": "OK"
}
},
"controls": {
@ -83,7 +78,6 @@
"sign_up": "Créer un compte",
"see_more": "Voir plus",
"preview": "Aperçu",
"copy": "Copier",
"share": "Partager",
"share_user": "Partager %s",
"share_post": "Partager la publication",
@ -97,16 +91,12 @@
"block_domain": "Bloquer %s",
"unblock_domain": "Débloquer %s",
"settings": "Paramètres",
"delete": "Supprimer",
"translate_post": {
"title": "Traduit depuis %s",
"unknown_language": "Inconnu"
}
"delete": "Supprimer"
},
"tabs": {
"home": "Accueil",
"search_and_explore": "Rechercher et explorer",
"notifications": "Notifications",
"search": "Rechercher",
"notification": "Notification",
"profile": "Profil"
},
"keyboard": {
@ -142,8 +132,6 @@
"sensitive_content": "Contenu sensible",
"media_content_warning": "Tapotez nimporte où pour révéler la publication",
"tap_to_reveal": "Appuyer pour afficher",
"load_embed": "Charger l'intégration",
"link_via_user": "%s via %s",
"poll": {
"vote": "Voter",
"closed": "Fermé"
@ -165,7 +153,6 @@
"show_image": "Afficher limage",
"show_gif": "Afficher le GIF",
"show_video_player": "Afficher le lecteur vidéo",
"share_link_in_post": "Partager le lien dans le message",
"tap_then_hold_to_show_menu": "Appuyez et maintenez pour afficher le menu"
},
"tag": {
@ -181,12 +168,6 @@
"private": "Seul·e·s leurs abonné·e·s peuvent voir ce message.",
"private_from_me": "Seul·e·s mes abonné·e·s peuvent voir ce message.",
"direct": "Seul·e lutilisateur·rice mentionnée peut voir ce message."
},
"translation": {
"translated_from": "Traduit de %s en utilisant %s",
"unknown_language": "Inconnu",
"unknown_provider": "Inconnu",
"show_original": "Afficher loriginal"
}
},
"friendship": {
@ -463,15 +444,11 @@
"follows_you": "Vous suit"
},
"dashboard": {
"my_posts": "messages",
"my_following": "abonnement",
"my_followers": "abonnés",
"other_posts": "publications",
"other_following": "abonnement",
"other_followers": "abonnés"
"posts": "publications",
"following": "abonnements",
"followers": "abonnés"
},
"fields": {
"joined": "Ici depuis",
"add_row": "Ajouter une rangée",
"placeholder": {
"label": "Étiquette",
@ -745,18 +722,6 @@
},
"bookmark": {
"title": "Favoris"
},
"followed_tags": {
"title": "Tags suivis",
"header": {
"posts": "messages",
"participants": "participants",
"posts_today": "messages aujourd'hui"
},
"actions": {
"follow": "Suivre",
"unfollow": "Ne plus suivre"
}
}
}
}

View File

@ -51,11 +51,6 @@
"clean_cache": {
"title": "Falamhaich an tasgadan",
"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": {
@ -83,7 +78,6 @@
"sign_up": "Cruthaich cunntas",
"see_more": "Seall a bharrachd",
"preview": "Ro-sheall",
"copy": "Copy",
"share": "Co-roinn",
"share_user": "Co-roinn %s",
"share_post": "Co-roinn am post",
@ -97,16 +91,12 @@
"block_domain": "Bac %s",
"unblock_domain": "Dì-bhac %s",
"settings": "Roghainnean",
"delete": "Sguab às",
"translate_post": {
"title": "Translate from %s",
"unknown_language": "Unknown"
}
"delete": "Sguab às"
},
"tabs": {
"home": "Dachaigh",
"search_and_explore": "Search and Explore",
"notifications": "Notifications",
"search": "Lorg",
"notification": "Brath",
"profile": "Pròifil"
},
"keyboard": {
@ -142,8 +132,6 @@
"sensitive_content": "Susbaint fhrionasach",
"media_content_warning": "Thoir gnogag àite sam bith gus a nochdadh",
"tap_to_reveal": "Thoir gnogag gus a nochdadh",
"load_embed": "Load Embed",
"link_via_user": "%s via %s",
"poll": {
"vote": "Cuir bhòt",
"closed": "Dùinte"
@ -165,7 +153,6 @@
"show_image": "Seall an dealbh",
"show_gif": "Seall an GIF",
"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"
},
"tag": {
@ -181,12 +168,6 @@
"private": "Chan fhaic ach an luchd-leantainn aca am post seo.",
"private_from_me": "Chan fhaic ach an luchd-leantainn agam am post seo.",
"direct": "Chan fhaic ach an cleachdaiche air an dugadh iomradh am post seo."
},
"translation": {
"translated_from": "Translated from %s using %s",
"unknown_language": "Unknown",
"unknown_provider": "Unknown",
"show_original": "Shown Original"
}
},
"friendship": {
@ -463,15 +444,11 @@
"follows_you": "Gad leantainn"
},
"dashboard": {
"my_posts": "posts",
"my_following": "following",
"my_followers": "followers",
"other_posts": "posts",
"other_following": "following",
"other_followers": "followers"
"posts": "postaichean",
"following": "a leantainn",
"followers": "luchd-leantainn"
},
"fields": {
"joined": "Joined",
"add_row": "Cuir ràgh ris",
"placeholder": {
"label": "Leubail",
@ -745,18 +722,6 @@
},
"bookmark": {
"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": {
"title": "Limpar caché",
"message": "Baleirouse %s da caché correctamente."
},
"translation_failed": {
"title": "Nota",
"message": "Fallou a tradución. É posible que a administración non activase a tradución neste servidor ou que o servidor teña unha versión antiga de Mastodon que non ten soporte para a tradución.",
"button": "OK"
}
},
"controls": {
@ -83,7 +78,6 @@
"sign_up": "Crear conta",
"see_more": "Ver máis",
"preview": "Vista previa",
"copy": "Copiar",
"share": "Compartir",
"share_user": "Compartir %s",
"share_post": "Compartir publicación",
@ -97,16 +91,12 @@
"block_domain": "Bloquear a %s",
"unblock_domain": "Desbloquear a %s",
"settings": "Axustes",
"delete": "Eliminar",
"translate_post": {
"title": "Traducido do %s",
"unknown_language": "Descoñecido"
}
"delete": "Eliminar"
},
"tabs": {
"home": "Inicio",
"search_and_explore": "Buscar e Explorar",
"notifications": "Notificacións",
"search": "Busca",
"notification": "Notificación",
"profile": "Perfil"
},
"keyboard": {
@ -142,8 +132,6 @@
"sensitive_content": "Contido sensible",
"media_content_warning": "Toca nalgures para mostrar",
"tap_to_reveal": "Toca para mostrar",
"load_embed": "Cargar o contido",
"link_via_user": "%s vía %s",
"poll": {
"vote": "Votar",
"closed": "Pechada"
@ -165,7 +153,6 @@
"show_image": "Mostrar a imaxe",
"show_gif": "Mostrar GIF",
"show_video_player": "Mostrar reprodutor de vídeo",
"share_link_in_post": "Compartir Ligazón na Publicación",
"tap_then_hold_to_show_menu": "Toca e mantén preso para menú"
},
"tag": {
@ -181,12 +168,6 @@
"private": "Só as seguidoras poden ver a publicación.",
"private_from_me": "Só as miñas seguidoras poden ver esta publicación.",
"direct": "Só a usuaria mencionada pode ver a publicación."
},
"translation": {
"translated_from": "Traducido do %s usando %s",
"unknown_language": "Descoñecido",
"unknown_provider": "Descoñecido",
"show_original": "Mostrar o orixinal"
}
},
"friendship": {
@ -463,15 +444,11 @@
"follows_you": "Séguete"
},
"dashboard": {
"my_posts": "publicacións",
"my_following": "seguindo",
"my_followers": "seguidoras",
"other_posts": "publicacións",
"other_following": "seguindo",
"other_followers": "seguidoras"
"posts": "publicacións",
"following": "seguindo",
"followers": "seguidoras"
},
"fields": {
"joined": "Uniuse",
"add_row": "Engadir fila",
"placeholder": {
"label": "Etiqueta",
@ -745,18 +722,6 @@
},
"bookmark": {
"title": "Marcadores"
},
"followed_tags": {
"title": "Cancelos seguidos",
"header": {
"posts": "publicacións",
"participants": "participantes",
"posts_today": "publicacións de hoxe"
},
"actions": {
"follow": "Seguir",
"unfollow": "Deixar de seguir"
}
}
}
}

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>
<string>1 unread notification</string>
<key>other</key>
<string>%ld unread notifications</string>
<string>%ld unread notification</string>
</dict>
</dict>
<key>a11y.plural.count.input_limit_exceeds</key>

View File

@ -51,11 +51,6 @@
"clean_cache": {
"title": "Clean Cache",
"message": "Successfully cleaned %s cache."
},
"translation_failed": {
"title": "Note",
"message": "Translation failed. Maybe the administrator has not enabled translations on this server or this server is running an older version of Mastodon where translations are not yet supported.",
"button": "OK"
}
},
"controls": {
@ -83,7 +78,6 @@
"sign_up": "Create account",
"see_more": "See More",
"preview": "Preview",
"copy": "Copy",
"share": "Share",
"share_user": "Share %s",
"share_post": "Share Post",
@ -97,16 +91,12 @@
"block_domain": "Block %s",
"unblock_domain": "Unblock %s",
"settings": "Settings",
"delete": "Delete",
"translate_post": {
"title": "Translate from %s",
"unknown_language": "Unknown"
}
"delete": "Delete"
},
"tabs": {
"home": "Home",
"search_and_explore": "Search and Explore",
"notifications": "Notifications",
"search": "Search",
"notification": "Notification",
"profile": "Profile"
},
"keyboard": {
@ -142,8 +132,6 @@
"sensitive_content": "Sensitive Content",
"media_content_warning": "Tap anywhere to reveal",
"tap_to_reveal": "Tap to reveal",
"load_embed": "Load Embed",
"link_via_user": "%s via %s",
"poll": {
"vote": "Vote",
"closed": "Closed"
@ -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": {
@ -181,12 +168,6 @@
"private": "Only their followers can see this post.",
"private_from_me": "Only my followers can see this post.",
"direct": "Only mentioned user can see this post."
},
"translation": {
"translated_from": "Translated from %s using %s",
"unknown_language": "Unknown",
"unknown_provider": "Unknown",
"show_original": "Shown Original"
}
},
"friendship": {
@ -463,15 +444,11 @@
"follows_you": "Follows You"
},
"dashboard": {
"my_posts": "posts",
"my_following": "following",
"my_followers": "followers",
"other_posts": "posts",
"other_following": "following",
"other_followers": "followers"
"posts": "posts",
"following": "following",
"followers": "followers"
},
"fields": {
"joined": "Joined",
"add_row": "Add Row",
"placeholder": {
"label": "Label",
@ -584,7 +561,7 @@
"intro": "These are the posts gaining traction in your corner of Mastodon."
},
"favorite": {
"title": "Favorites"
"title": "Your Favorites"
},
"notification": {
"title": {
@ -745,18 +722,6 @@
},
"bookmark": {
"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>
<string>ld</string>
<key>other</key>
<string>%ld notifikasi belum dibaca</string>
<string>%ld unread notification</string>
</dict>
</dict>
<key>a11y.plural.count.input_limit_exceeds</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>Batas input melebihi %#@character_count@</string>
<string>Input limit exceeds %#@character_count@</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
@ -33,7 +33,7 @@
<key>a11y.plural.count.input_limit_remains</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>Batas input masih tersisa %#@character_count@</string>
<string>Input limit remains %#@character_count@</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
@ -47,7 +47,7 @@
<key>a11y.plural.count.characters_left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>tersisa %#@character_count@</string>
<string>%#@character_count@ left</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
@ -55,7 +55,7 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>other</key>
<string>%ld karakter</string>
<string>%ld characters</string>
</dict>
</dict>
<key>plural.count.followed_by_and_mutual</key>
@ -78,7 +78,7 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>other</key>
<string>Diikuti oleh %1$@, dan %ld mutual</string>
<string>Followed by %1$@, and %ld mutuals</string>
</dict>
</dict>
<key>plural.count.metric_formatted.post</key>
@ -148,7 +148,7 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>other</key>
<string>Posting ulang %ld</string>
<string>%ld reblogs</string>
</dict>
</dict>
<key>plural.count.reply</key>
@ -162,7 +162,7 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>other</key>
<string>%ld balasan</string>
<string>%ld replies</string>
</dict>
</dict>
<key>plural.count.vote</key>
@ -204,7 +204,7 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>other</key>
<string>%ld obrolan</string>
<string>%ld people talking</string>
</dict>
</dict>
<key>plural.count.following</key>
@ -218,7 +218,7 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>other</key>
<string>%ld mengikuti</string>
<string>%ld following</string>
</dict>
</dict>
<key>plural.count.follower</key>

View File

@ -51,11 +51,6 @@
"clean_cache": {
"title": "Bersihkan 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": {
@ -83,7 +78,6 @@
"sign_up": "Buat akun",
"see_more": "Lihat lebih banyak",
"preview": "Pratinjau",
"copy": "Copy",
"share": "Bagikan",
"share_user": "Bagikan %s",
"share_post": "Bagikan Postingan",
@ -97,16 +91,12 @@
"block_domain": "Blokir %s",
"unblock_domain": "Berhenti memblokir %s",
"settings": "Pengaturan",
"delete": "Hapus",
"translate_post": {
"title": "Translate from %s",
"unknown_language": "Unknown"
}
"delete": "Hapus"
},
"tabs": {
"home": "Beranda",
"search_and_explore": "Search and Explore",
"notifications": "Notifikasi",
"search": "Cari",
"notification": "Notifikasi",
"profile": "Profil"
},
"keyboard": {
@ -142,8 +132,6 @@
"sensitive_content": "Konten Sensitif",
"media_content_warning": "Ketuk di mana saja untuk melihat",
"tap_to_reveal": "Ketuk untuk mengungkap",
"load_embed": "Load Embed",
"link_via_user": "%s via %s",
"poll": {
"vote": "Pilih",
"closed": "Ditutup"
@ -165,7 +153,6 @@
"show_image": "Tampilkan gambar",
"show_gif": "Tampilkan GIF",
"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"
},
"tag": {
@ -177,16 +164,10 @@
"emoji": "Emoji"
},
"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_from_me": "Hanya pengikut saya 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": {
@ -325,13 +306,13 @@
"blocked": "%s mengandung penyedia surel yang dilarang",
"unreachable": "%s sepertinya tidak ada",
"taken": "%s sudah digunakan",
"reserved": "%s adalah kata kunci yang dipesan",
"reserved": "%s is a reserved keyword",
"accepted": "%s harus diterima",
"blank": "%s diperlukan",
"invalid": "%s tidak valid",
"too_long": "%s terlalu panjang",
"too_short": "%s terlalu pendek",
"inclusion": "%s bukan nilai yang didukung"
"inclusion": "%s is not a supported value"
},
"special": {
"username_invalid": "Nama pengguna hanya berisi angka karakter dan garis bawah",
@ -344,7 +325,7 @@
"server_rules": {
"title": "Beberapa aturan dasar.",
"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",
"privacy_policy": "kebijakan privasi",
"button": {
@ -354,10 +335,10 @@
"confirm_email": {
"title": "Satu hal lagi.",
"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": {
"open_email_app": "Buka Aplikasi Surel",
"resend": "Kirim ulang"
"resend": "Resend"
},
"dont_receive_email": {
"title": "Periksa surel Anda",
@ -367,8 +348,8 @@
"open_email_app": {
"title": "Periksa kotak masuk Anda.",
"description": "Kami baru saja mengirimkan Anda sebuah surel. Periksa folder junk Anda jika Anda belum memeriksanya.",
"mail": "Pesan",
"open_email_client": "Buka Email Klien"
"mail": "Mail",
"open_email_client": "Open Email Client"
}
},
"home_timeline": {
@ -379,13 +360,13 @@
"published": "Dipublikasikan!",
"Publishing": "Mempublikasikan postingan...",
"accessibility": {
"logo_label": "Tombol Logo",
"logo_hint": "Ketuk untuk menggulir ke atas dan ketuk lagi ke lokasi sebelumnya"
"logo_label": "Logo Button",
"logo_hint": "Tap to scroll to top and tap again to previous location"
}
}
},
"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."
},
"compose": {
@ -395,7 +376,7 @@
},
"media_selection": {
"camera": "Ambil Foto",
"photo_library": "Galeri Foto",
"photo_library": "Photo Library",
"browse": "Telusuri"
},
"content_input_placeholder": "Ketik atau tempel apa yang Anda pada pikiran Anda",
@ -411,8 +392,8 @@
"upload_failed": "Gagal Mengunggah",
"can_not_recognize_this_media_attachment": "Tidak dapat mengenali lampiran media ini",
"attachment_too_large": "Lampiran terlalu besar",
"compressing_state": "Mengompres...",
"server_processing_state": "Server Memproses..."
"compressing_state": "Compressing...",
"server_processing_state": "Server Processing..."
},
"poll": {
"duration_time": "Durasi: %s",
@ -422,9 +403,9 @@
"one_day": "1 Hari",
"three_days": "3 Hari",
"seven_days": "7 Hari",
"option_number": "Opsi %ld",
"the_poll_is_invalid": "Japat tidak valid",
"the_poll_has_empty_option": "Japat memiliki opsi kosong"
"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": "Tulis peringatan yang akurat di sini..."
@ -436,22 +417,22 @@
"direct": "Hanya orang yang saya sebut"
},
"auto_complete": {
"space_to_add": "Tekan spasi untuk menambahkan"
"space_to_add": "Space to add"
},
"accessibility": {
"append_attachment": "Tambahkan Lampiran",
"append_poll": "Tambahkan Japat",
"remove_poll": "Hapus Japat",
"custom_emoji_picker": "Pemilih Emoji Kustom",
"custom_emoji_picker": "Custom Emoji Picker",
"enable_content_warning": "Aktifkan Peringatan Konten",
"disable_content_warning": "Nonaktifkan Peringatan Konten",
"post_visibility_menu": "Menu Visibilitas Postingan",
"post_options": "Opsi Postingan",
"posting_as": "Posting sebagai %s"
"post_visibility_menu": "Post Visibility Menu",
"post_options": "Post Options",
"posting_as": "Posting as %s"
},
"keyboard": {
"discard_post": "Hapus Postingan",
"publish_post": "Publikasikan Postingan",
"discard_post": "Discard Post",
"publish_post": "Publish Post",
"toggle_poll": "Toggle Poll",
"toggle_content_warning": "Toggle Content Warning",
"append_attachment_entry": "Tambahkan Lampiran - %s",
@ -460,51 +441,47 @@
},
"profile": {
"header": {
"follows_you": "Mengikutimu"
"follows_you": "Follows You"
},
"dashboard": {
"my_posts": "posts",
"my_following": "following",
"my_followers": "followers",
"other_posts": "posts",
"other_following": "following",
"other_followers": "followers"
"posts": "postingan",
"following": "mengikuti",
"followers": "pengikut"
},
"fields": {
"joined": "Bergabung",
"add_row": "Tambah Baris",
"add_row": "Add Row",
"placeholder": {
"label": "Label",
"content": "Isi"
},
"verified": {
"short": "Verifikasi %s",
"long": "Kepemilikan tautan ini dapat dicek pada %s"
"short": "Verified on %s",
"long": "Ownership of this link was checked on %s"
}
},
"segmented_control": {
"posts": "Postingan",
"replies": "Balasan",
"posts_and_replies": "Kirim dan Balas",
"posts_and_replies": "Posts and Replies",
"media": "Media",
"about": "Tentang"
"about": "About"
},
"relationship_action_alert": {
"confirm_mute_user": {
"title": "Bisukan Akun",
"message": "Konfirmasi untuk bisukan %s"
"title": "Mute Account",
"message": "Confirm to mute %s"
},
"confirm_unmute_user": {
"title": "Berhenti Membisukan Akun",
"message": "Konfirmasi untuk membisukan %s"
"message": "Confirm to unmute %s"
},
"confirm_block_user": {
"title": "Blokir Akun",
"message": "Konfirmasi memblokir %s"
"title": "Block Account",
"message": "Confirm to block %s"
},
"confirm_unblock_user": {
"title": "Buka Blokir Akun",
"message": "Konfirmasi membuka blokir %s"
"title": "Unblock Account",
"message": "Confirm to unblock %s"
},
"confirm_show_reblogs": {
"title": "Show Reblogs",
@ -516,23 +493,23 @@
}
},
"accessibility": {
"show_avatar_image": "Tampilkan gambar avatar",
"edit_avatar_image": "Ubah gambar avatar",
"show_avatar_image": "Show avatar image",
"edit_avatar_image": "Edit avatar 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": {
"title": "pengikut",
"title": "follower",
"footer": "Followers from other servers are not displayed."
},
"following": {
"title": "mengikuti",
"title": "following",
"footer": "Follows from other servers are not displayed."
},
"familiarFollowers": {
"title": "Followers you familiar",
"followed_by_names": "Diikuti oleh %s"
"followed_by_names": "Followed by %s"
},
"favorited_by": {
"title": "Favorited By"
@ -549,9 +526,9 @@
"recommend": {
"button_text": "Lihat Semua",
"hash_tag": {
"title": "Sedang Tren di Mastodon",
"title": "Trending on Mastodon",
"description": "Hashtags that are getting quite a bit of attention",
"people_talking": "%s orang sedang membicarakan"
"people_talking": "%s people are talking"
},
"accounts": {
"title": "Akun-akun yang mungkin Anda sukai",
@ -569,22 +546,22 @@
"empty_state": {
"no_results": "Tidak ada hasil"
},
"recent_search": "Pencarian terbaru",
"recent_search": "Recent searches",
"clear": "Hapus"
}
},
"discovery": {
"tabs": {
"posts": "Posts",
"hashtags": "Tagar",
"news": "Berita",
"community": "Komunitas",
"for_you": "Untuk Anda"
"hashtags": "Hashtags",
"news": "News",
"community": "Community",
"for_you": "For You"
},
"intro": "These are the posts gaining traction in your corner of Mastodon."
},
"favorite": {
"title": "Favorit Anda"
"title": "Your Favorites"
},
"notification": {
"title": {
@ -592,11 +569,11 @@
"Mentions": "Sebutan"
},
"notification_description": {
"followed_you": "mengikutimu",
"favorited_your_post": "menyukai postinganmu",
"followed_you": "followed you",
"favorited_your_post": "favorited your post",
"reblogged_your_post": "reblogged your post",
"mentioned_you": "menyebutmu",
"request_to_follow_you": "meminta mengikutimu",
"mentioned_you": "mentioned you",
"request_to_follow_you": "request to follow you",
"poll_has_ended": "poll has ended"
},
"keyobard": {
@ -604,10 +581,10 @@
"show_mentions": "Tampilkan Sebutan"
},
"follow_request": {
"accept": "Menerima",
"accepted": "Diterima",
"reject": "menolak",
"rejected": "Ditolak"
"accept": "Accept",
"accepted": "Accepted",
"reject": "reject",
"rejected": "Rejected"
}
},
"thread": {
@ -624,11 +601,11 @@
"dark": "Selalu Gelap"
},
"look_and_feel": {
"title": "Lihat dan Rasakan",
"title": "Look and Feel",
"use_system": "Use System",
"really_dark": "Sangat Gelap",
"sorta_dark": "Agak Gelap",
"light": "Terang"
"really_dark": "Really Dark",
"sorta_dark": "Sorta Dark",
"light": "Light"
},
"notifications": {
"title": "Notifikasi",
@ -640,17 +617,17 @@
"anyone": "siapapun",
"follower": "seorang pengikut",
"follow": "siapapun yang saya ikuti",
"noone": "tidak ada",
"noone": "no one",
"title": "Beritahu saya ketika"
}
},
"preference": {
"title": "Preferensi",
"true_black_dark_mode": "True black dark mode",
"disable_avatar_animation": "Nonaktifkan animasi avatar",
"disable_emoji_animation": "Nonaktifkan animasi emoji",
"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": "Buka tautan di Mastodon"
"open_links_in_mastodon": "Open links in Mastodon"
},
"boring_zone": {
"title": "Zona Membosankan",
@ -672,91 +649,79 @@
}
},
"report": {
"title_report": "Laporkan",
"title_report": "Report",
"title": "Laporkan %s",
"step1": "Langkah 1 dari 2",
"step2": "Langkah 2 dari 2",
"content1": "Apakah ada postingan lain yang ingin Anda tambahkan ke laporannya?",
"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",
"skip_to_send": "Kirim tanpa komentar",
"text_placeholder": "Ketik atau tempel komentar tambahan",
"reported": "DILAPORKAN",
"reported": "REPORTED",
"step_one": {
"step_1_of_4": "Langkah 1 dari 4",
"whats_wrong_with_this_post": "Ada yang salah dengan postingan ini?",
"whats_wrong_with_this_account": "Ada yang salah dengan akun ini?",
"whats_wrong_with_this_username": "Ada yang salah dengan %s?",
"select_the_best_match": "Pilih yang paling cocok",
"i_dont_like_it": "Saya tidak suka",
"it_is_not_something_you_want_to_see": "Ini bukan sesuatu yang Anda ingin lihat",
"its_spam": "Ini sampah",
"malicious_links_fake_engagement_or_repetetive_replies": "Tautan berbahaya, engagement palsu, atau balasan berulang",
"it_violates_server_rules": "Melanggar ketentuan server",
"you_are_aware_that_it_breaks_specific_rules": "Anda yakin bahwa ini melanggar ketentuan khusus",
"its_something_else": "Alasan lainnya",
"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": "Langkah 2 dari 4",
"which_rules_are_being_violated": "Ketentuan manakah yang dilanggar?",
"select_all_that_apply": "Pilih semua yang berlaku",
"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": "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?",
"select_all_that_apply": "Pilih semua yang berlaku"
"select_all_that_apply": "Select all that apply"
},
"step_four": {
"step_4_of_4": "Langkah 4 dari 4",
"is_there_anything_else_we_should_know": "Ada hal lain yang perlu kami ketahui?"
"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": "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.",
"unfollow": "Berhenti ikuti",
"unfollow": "Unfollow",
"unfollowed": "Unfollowed",
"unfollow_user": "Berhenti ikuti %s",
"mute_user": "Senyapkan %s",
"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": "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.",
"while_we_review_this_you_can_take_action_against_user": "While we review this, you can take action against %s"
}
},
"preview": {
"keyboard": {
"close_preview": "Tutup Pratinjau",
"show_next": "Tampilkan Berikutnya",
"show_previous": "Tampilkan Sebelumnya"
"close_preview": "Close Preview",
"show_next": "Show Next",
"show_previous": "Show Previous"
}
},
"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",
"add_account": "Tambah Akun"
"add_account": "Add Account"
},
"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.",
"accessibility_hint": "Double tap to dismiss this wizard"
},
"bookmark": {
"title": "Tandai"
},
"followed_tags": {
"title": "Followed Tags",
"header": {
"posts": "posts",
"participants": "participants",
"posts_today": "posts today"
},
"actions": {
"follow": "Follow",
"unfollow": "Unfollow"
}
"title": "Bookmarks"
}
}
}

View File

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

View File

@ -51,11 +51,6 @@
"clean_cache": {
"title": "Hreinsa skyndiminni",
"message": "Tókst að hreinsa %s skyndiminni."
},
"translation_failed": {
"title": "Athugasemd",
"message": "Þýðing mistókst. Mögulega hefur kerfisstjórinn ekki virkjað þýðingar á þessum netþjóni, eða að netþjónninn sé keyrður á eldri útgáfu Mastodon þar sem þýðingar séu ekki studdar.",
"button": "Í lagi"
}
},
"controls": {
@ -83,7 +78,6 @@
"sign_up": "Stofna notandaaðgang",
"see_more": "Sjá fleira",
"preview": "Forskoða",
"copy": "Afrita",
"share": "Deila",
"share_user": "Deila %s",
"share_post": "Deila færslu",
@ -97,16 +91,12 @@
"block_domain": "Útiloka %s",
"unblock_domain": "Opna á %s",
"settings": "Stillingar",
"delete": "Eyða",
"translate_post": {
"title": "Þýða úr %s",
"unknown_language": "Óþekkt"
}
"delete": "Eyða"
},
"tabs": {
"home": "Heim",
"search_and_explore": "Leita og kanna",
"notifications": "Tilkynningar",
"search": "Leita",
"notification": "Tilkynning",
"profile": "Notandasnið"
},
"keyboard": {
@ -142,8 +132,6 @@
"sensitive_content": "Viðkvæmt efni",
"media_content_warning": "Ýttu hvar sem er til að birta",
"tap_to_reveal": "Ýttu til að birta",
"load_embed": "Hlaða inn ívöfnu",
"link_via_user": "%s með %s",
"poll": {
"vote": "Greiða atkvæði",
"closed": "Lokið"
@ -165,7 +153,6 @@
"show_image": "Sýna mynd",
"show_gif": "Birta GIF-myndir",
"show_video_player": "Sýna myndspilara",
"share_link_in_post": "Deila tengli í færslu",
"tap_then_hold_to_show_menu": "Ýttu og haltu til að sýna valmynd"
},
"tag": {
@ -181,12 +168,6 @@
"private": "Einungis fylgjendur þeirra geta séð þessa færslu.",
"private_from_me": "Einungis fylgjendur mínir geta séð þessa færslu.",
"direct": "Einungis notendur sem minnst er á geta séð þessa færslu."
},
"translation": {
"translated_from": "Þýtt úr %s með %s",
"unknown_language": "Óþekkt",
"unknown_provider": "Óþekkt",
"show_original": "Birta upprunalegt"
}
},
"friendship": {
@ -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.",
"blocked_warning": "Þú getur ekki séð sniðið hjá þessum notanda\nfyrr en hann hættir að útiloka þig.",
"user_blocked_warning": "Þú getur ekki séð sniðið hjá %s\nfyrr en hann hættir að útiloka þig.",
"suspended_warning": "Þessi notandi hefur verið settur í frysti.",
"user_suspended_warning": "Notandaaðgangurinn %s hefur verið settur í frysti."
"suspended_warning": "Þessi notandi hefur verið settur í bið.",
"user_suspended_warning": "Notandaaðgangurinn %s hefur verið settur í bið."
}
}
}
@ -463,15 +444,11 @@
"follows_you": "Fylgist með þér"
},
"dashboard": {
"my_posts": "færslur",
"my_following": "er fylgst með",
"my_followers": "fylgjendur",
"other_posts": "færslur",
"other_following": "er fylgst með",
"other_followers": "fylgjendur"
"posts": "færslur",
"following": "fylgist með",
"followers": "fylgjendur"
},
"fields": {
"joined": "Gerðist þátttakandi",
"add_row": "Bæta við röð",
"placeholder": {
"label": "Skýring",
@ -745,18 +722,6 @@
},
"bookmark": {
"title": "Bókamerki"
},
"followed_tags": {
"title": "Myllumerki sem fylgst er með",
"header": {
"posts": "færslur",
"participants": "þátttakendur",
"posts_today": "færslur í dag"
},
"actions": {
"follow": "Fylgjast með",
"unfollow": "Hætta að fylgjast með"
}
}
}
}

View File

@ -51,11 +51,6 @@
"clean_cache": {
"title": "Pulisci la cache",
"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": {
@ -83,7 +78,6 @@
"sign_up": "Crea un account",
"see_more": "Visualizza altro",
"preview": "Anteprima",
"copy": "Copia",
"share": "Condividi",
"share_user": "Condividi %s",
"share_post": "Condividi il post",
@ -97,16 +91,12 @@
"block_domain": "Blocca %s",
"unblock_domain": "Sblocca %s",
"settings": "Impostazioni",
"delete": "Elimina",
"translate_post": {
"title": "Traduci da %s",
"unknown_language": "Sconosciuto"
}
"delete": "Elimina"
},
"tabs": {
"home": "Inizio",
"search_and_explore": "Cerca ed Esplora",
"notifications": "Notifiche",
"search": "Cerca",
"notification": "Notifiche",
"profile": "Profilo"
},
"keyboard": {
@ -142,8 +132,6 @@
"sensitive_content": "Contenuto sensibile",
"media_content_warning": "Tocca ovunque per rivelare",
"tap_to_reveal": "Tocca per rivelare",
"load_embed": "Carica Incorpora",
"link_via_user": "%s tramite %s",
"poll": {
"vote": "Vota",
"closed": "Chiuso"
@ -165,14 +153,13 @@
"show_image": "Mostra immagine",
"show_gif": "Mostra GIF",
"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"
},
"tag": {
"url": "URL",
"mention": "Menzione",
"link": "Collegamento",
"hashtag": "Hashtag",
"hashtag": "Etichetta",
"email": "Email",
"emoji": "Emoji"
},
@ -181,12 +168,6 @@
"private": "Solo i loro 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."
},
"translation": {
"translated_from": "Tradotto da %s utilizzando %s",
"unknown_language": "Sconosciuto",
"unknown_provider": "Sconosciuto",
"show_original": "Mostra l'originale"
}
},
"friendship": {
@ -463,15 +444,11 @@
"follows_you": "Ti segue"
},
"dashboard": {
"my_posts": "post",
"my_following": "seguendo",
"my_followers": "seguaci",
"other_posts": "post",
"other_following": "seguendo",
"other_followers": "seguaci"
"posts": "post",
"following": "seguendo",
"followers": "seguaci"
},
"fields": {
"joined": "Profilo iscritto",
"add_row": "Aggiungi riga",
"placeholder": {
"label": "Etichetta",
@ -745,18 +722,6 @@
},
"bookmark": {
"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": {
"title": "キャッシュを消去",
"message": "%sのキャッシュを消去しました。"
},
"translation_failed": {
"title": "Note",
"message": "Translation failed. Maybe the administrator has not enabled translations on this server or this server is running an older version of Mastodon where translations are not yet supported.",
"button": "OK"
}
},
"controls": {
@ -77,13 +72,12 @@
"discard": "破棄",
"try_again": "再実行",
"take_photo": "写真を撮る",
"save_photo": "写真を保存",
"save_photo": "写真を撮る",
"copy_photo": "写真をコピー",
"sign_in": "ログイン",
"sign_up": "アカウント作成",
"sign_in": "Log in",
"sign_up": "Create account",
"see_more": "もっと見る",
"preview": "プレビュー",
"copy": "Copy",
"share": "共有",
"share_user": "%sを共有",
"share_post": "投稿を共有",
@ -97,16 +91,12 @@
"block_domain": "%sをブロック",
"unblock_domain": "%sのブロックを解除",
"settings": "設定",
"delete": "削除",
"translate_post": {
"title": "Translate from %s",
"unknown_language": "Unknown"
}
"delete": "削除"
},
"tabs": {
"home": "ホーム",
"search_and_explore": "Search and Explore",
"notifications": "通知",
"search": "検索",
"notification": "通知",
"profile": "プロフィール"
},
"keyboard": {
@ -142,17 +132,15 @@
"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"
"url": "Link: %s",
"hashtag": "Hashtag: %s",
"mention": "Show Profile: %s",
"email": "Email address: %s"
},
"actions": {
"reply": "返信",
@ -165,7 +153,6 @@
"show_image": "画像を表示",
"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": {
@ -181,12 +168,6 @@
"private": "この投稿はフォロワーに限り見ることができます。",
"private_from_me": "この投稿はフォロワーに限り見ることができます。",
"direct": "この投稿はメンションされたユーザーに限り見ることができます。"
},
"translation": {
"translated_from": "Translated from %s using %s",
"unknown_language": "Unknown",
"unknown_provider": "Unknown",
"show_original": "Shown Original"
}
},
"friendship": {
@ -206,8 +187,8 @@
"unmute_user": "%sのミュートを解除",
"muted": "ミュート済み",
"edit_info": "編集",
"show_reblogs": "ブーストを表示",
"hide_reblogs": "ブーストを非表示"
"show_reblogs": "Show Reblogs",
"hide_reblogs": "Hide Reblogs"
},
"timeline": {
"filtered": "フィルター済み",
@ -239,14 +220,14 @@
},
"login": {
"title": "Welcome back",
"subtitle": "アカウントを作成したサーバーにログインします。",
"subtitle": "Log you in on the server you created your account on.",
"server_search_field": {
"placeholder": "URLを入力またはサーバーを検索"
"placeholder": "Enter URL or search for your server"
}
},
"server_picker": {
"title": "サーバーを選択",
"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": {
"category": {
"all": "すべて",
@ -273,7 +254,7 @@
"category": "カテゴリー"
},
"input": {
"search_servers_or_enter_url": "コミュニティを検索またはURLを入力"
"search_servers_or_enter_url": "Search communities or enter URL"
},
"empty_state": {
"finding_servers": "利用可能なサーバーの検索...",
@ -354,7 +335,7 @@
"confirm_email": {
"title": "さいごにもうひとつ。",
"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": {
"open_email_app": "メールアプリを開く",
"resend": "再送信"
@ -407,10 +388,10 @@
"attachment_broken": "%sは壊れていてMastodonにアップロードできません。",
"description_photo": "閲覧が難しいユーザーへの画像説明",
"description_video": "閲覧が難しいユーザーへの映像説明",
"load_failed": "読み込みに失敗しました",
"upload_failed": "アップロードに失敗しました",
"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": "Attachment too large",
"compressing_state": "Compressing...",
"server_processing_state": "Server Processing..."
},
@ -439,14 +420,14 @@
"space_to_add": "スペースを追加"
},
"accessibility": {
"append_attachment": "添付ファイルを追加",
"append_attachment": "アタッチメントの追加",
"append_poll": "投票を追加",
"remove_poll": "投票を消去",
"custom_emoji_picker": "カスタム絵文字ピッカー",
"enable_content_warning": "閲覧注意を有効にする",
"disable_content_warning": "閲覧注意を無効にする",
"post_visibility_menu": "投稿の表示メニュー",
"post_options": "投稿オプション",
"post_options": "Post Options",
"posting_as": "Posting as %s"
},
"keyboard": {
@ -454,7 +435,7 @@
"publish_post": "投稿する",
"toggle_poll": "投票を切り替える",
"toggle_content_warning": "閲覧注意を切り替える",
"append_attachment_entry": "添付ファイルを追加 - %s",
"append_attachment_entry": "アタッチメントを追加 - %s",
"select_visibility_entry": "公開設定を選択 - %s"
}
},
@ -463,15 +444,11 @@
"follows_you": "フォローされています"
},
"dashboard": {
"my_posts": "posts",
"my_following": "following",
"my_followers": "followers",
"other_posts": "posts",
"other_following": "following",
"other_followers": "followers"
"posts": "投稿",
"following": "フォロー",
"followers": "フォロワー"
},
"fields": {
"joined": "Joined",
"add_row": "行追加",
"placeholder": {
"label": "ラベル",
@ -507,12 +484,12 @@
"message": "%sのブロックを解除しますか"
},
"confirm_show_reblogs": {
"title": "ブーストを表示",
"message": "ブーストを表示しますか?"
"title": "Show Reblogs",
"message": "Confirm to show reblogs"
},
"confirm_hide_reblogs": {
"title": "ブーストを非表示",
"message": "ブーストを非表示にしますか?"
"title": "Hide Reblogs",
"message": "Confirm to hide reblogs"
}
},
"accessibility": {
@ -535,10 +512,10 @@
"followed_by_names": "Followed by %s"
},
"favorited_by": {
"title": "お気に入り"
"title": "Favorited By"
},
"reblogged_by": {
"title": "ブースト"
"title": "Reblogged By"
},
"search": {
"title": "検索",
@ -701,28 +678,28 @@
"step_two": {
"step_2_of_4": "ステップ 2/4",
"which_rules_are_being_violated": "どのルールに違反していますか?",
"select_all_that_apply": "当てはまるものをすべて選んでください",
"i_just_dont_like_it": "興味がありません"
"select_all_that_apply": "Select all that apply",
"i_just_dont_like_it": "I just dont like it"
},
"step_three": {
"step_3_of_4": "ステップ 3/4",
"are_there_any_posts_that_back_up_this_report": "この通報を裏付けるような投稿はありますか?",
"select_all_that_apply": "当てはまるものをすべて選んでください"
"are_there_any_posts_that_back_up_this_report": "Are there any posts that back up this report?",
"select_all_that_apply": "Select all that apply"
},
"step_four": {
"step_4_of_4": "ステップ 4/4",
"is_there_anything_else_we_should_know": "その他に私たちに伝えておくべき事はありますか?"
},
"step_final": {
"dont_want_to_see_this": "見えないようにしたいですか?",
"when_you_see_something_you_dont_like_on_mastodon_you_can_remove_the_person_from_your_experience.": "Mastodonで気に入らないものを見た場合、その人をあなたの体験から取り除くことができます。",
"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": "フォロー解除",
"unfollowed": "フォロー解除しました",
"unfollow_user": "%sをフォロー解除",
"mute_user": "%sをミュート",
"you_wont_see_their_posts_or_reblogs_in_your_home_feed_they_wont_know_they_ve_been_muted": "ホームに投稿やブーストは表示されなくなります。相手にミュートしたことは伝わりません。",
"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をブロック",
"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さんに対して対応することができます。"
}
},
@ -744,19 +721,7 @@
"accessibility_hint": "チュートリアルを閉じるには、ダブルタップしてください"
},
"bookmark": {
"title": "ブックマーク"
},
"followed_tags": {
"title": "Followed Tags",
"header": {
"posts": "posts",
"participants": "participants",
"posts_today": "posts today"
},
"actions": {
"follow": "Follow",
"unfollow": "Unfollow"
}
"title": "Bookmarks"
}
}
}

View File

@ -51,11 +51,6 @@
"clean_cache": {
"title": "Sfeḍ tuffirt",
"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": {
@ -83,7 +78,6 @@
"sign_up": "Snulfu-d amiḍan",
"see_more": "Wali ugar",
"preview": "Taskant",
"copy": "Copy",
"share": "Bḍu",
"share_user": "Bḍu %s",
"share_post": "Bḍu tasuffeɣt",
@ -97,16 +91,12 @@
"block_domain": "Sewḥel %s",
"unblock_domain": "Serreḥ i %s",
"settings": "Iɣewwaṛen",
"delete": "Kkes",
"translate_post": {
"title": "Translate from %s",
"unknown_language": "Unknown"
}
"delete": "Kkes"
},
"tabs": {
"home": "Agejdan",
"search_and_explore": "Search and Explore",
"notifications": "Notifications",
"search": "Nadi",
"notification": "Tilɣa",
"profile": "Amaɣnu"
},
"keyboard": {
@ -142,8 +132,6 @@
"sensitive_content": "Agbur amḥulfu",
"media_content_warning": "Sit anida tebɣiḍ i wakken ad twaliḍ",
"tap_to_reveal": "Sit i uskan",
"load_embed": "Load Embed",
"link_via_user": "%s via %s",
"poll": {
"vote": "Dɣeṛ",
"closed": "Ifukk"
@ -165,7 +153,6 @@
"show_image": "Sken tugna",
"show_gif": "Sken GIF",
"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ɣ"
},
"tag": {
@ -181,12 +168,6 @@
"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.",
"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": {
@ -463,15 +444,11 @@
"follows_you": "Yeṭṭafaṛ-ik•im"
},
"dashboard": {
"my_posts": "posts",
"my_following": "following",
"my_followers": "followers",
"other_posts": "posts",
"other_following": "following",
"other_followers": "followers"
"posts": "tisuffaɣ",
"following": "iṭafaṛ",
"followers": "imeḍfaren"
},
"fields": {
"joined": "Joined",
"add_row": "Rnu izirig",
"placeholder": {
"label": "Tabzimt",
@ -745,18 +722,6 @@
},
"bookmark": {
"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": {
"title": "Pêşbîrê pak bike",
"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": {
@ -83,7 +78,6 @@
"sign_up": "Ajimêr biafirîne",
"see_more": "Bêtir bibîne",
"preview": "Pêşdîtin",
"copy": "Jê bigire",
"share": "Parve bike",
"share_user": "%s parve bike",
"share_post": "Şandiyê parve bike",
@ -97,16 +91,12 @@
"block_domain": "%s asteng bike",
"unblock_domain": "%s asteng neke",
"settings": "Sazkarî",
"delete": "Jê bibe",
"translate_post": {
"title": "Ji %s wergerîne",
"unknown_language": "Nenas"
}
"delete": "Jê bibe"
},
"tabs": {
"home": "Serrûpel",
"search_and_explore": "Bigere û vekole",
"notifications": "Agahdarî",
"search": "Bigere",
"notification": "Agahdarî",
"profile": "Profîl"
},
"keyboard": {
@ -142,8 +132,6 @@
"sensitive_content": "Naveroka hestiyarî",
"media_content_warning": "Ji bo eşkerekirinê li derekî bitikîne",
"tap_to_reveal": "Ji bo dîtinê bitikîne",
"load_embed": "Load Embed",
"link_via_user": "%s bi riya %s",
"poll": {
"vote": "Deng bide",
"closed": "Girtî"
@ -165,7 +153,6 @@
"show_image": "Wêneyê nîşan bide",
"show_gif": "GIF 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"
},
"tag": {
@ -181,12 +168,6 @@
"private": "Tenê şopînerên wan 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."
},
"translation": {
"translated_from": "Hate wergerandin ji %s bi riya %s",
"unknown_language": "Nenas",
"unknown_provider": "Nenas",
"show_original": "A resen nîşan bide"
}
},
"friendship": {
@ -463,15 +444,11 @@
"follows_you": "Te dişopîne"
},
"dashboard": {
"my_posts": "şandî",
"my_following": "dişopîne",
"my_followers": "şopîner",
"other_posts": "şandî",
"other_following": "dişopîne",
"other_followers": "şopîner"
"posts": "şandî",
"following": "dişopîne",
"followers": "şopîner"
},
"fields": {
"joined": "Dîroka tevlîbûnê",
"add_row": "Rêzê tevlî bike",
"placeholder": {
"label": "Nîşan",
@ -745,18 +722,6 @@
},
"bookmark": {
"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": {
"title": "캐시 삭제",
"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": {
@ -83,7 +78,6 @@
"sign_up": "계정 생성",
"see_more": "더 보기",
"preview": "미리보기",
"copy": "Copy",
"share": "공유",
"share_user": "%s를 공유",
"share_post": "게시물 공유",
@ -97,16 +91,12 @@
"block_domain": "%s 차단하기",
"unblock_domain": "%s 차단 해제",
"settings": "설정",
"delete": "삭제",
"translate_post": {
"title": "Translate from %s",
"unknown_language": "Unknown"
}
"delete": "삭제"
},
"tabs": {
"home": "홈",
"search_and_explore": "Search and Explore",
"notifications": "Notifications",
"search": "검색",
"notification": "알림",
"profile": "프로필"
},
"keyboard": {
@ -142,8 +132,6 @@
"sensitive_content": "민감한 콘텐츠",
"media_content_warning": "아무 곳이나 눌러서 보기",
"tap_to_reveal": "눌러서 확인",
"load_embed": "Load Embed",
"link_via_user": "%s via %s",
"poll": {
"vote": "투표",
"closed": "마감"
@ -165,7 +153,6 @@
"show_image": "이미지 표시",
"show_gif": "GIF 보기",
"show_video_player": "비디오 플레이어 보기",
"share_link_in_post": "Share Link in Post",
"tap_then_hold_to_show_menu": "Tap then hold to show menu"
},
"tag": {
@ -181,12 +168,6 @@
"private": "Only their followers can see this post.",
"private_from_me": "Only my followers can see this post.",
"direct": "Only mentioned user can see this post."
},
"translation": {
"translated_from": "%s에서 %s를 사용해 번역됨",
"unknown_language": "알 수 없음",
"unknown_provider": "알 수 없음",
"show_original": "원본 보기"
}
},
"friendship": {
@ -463,15 +444,11 @@
"follows_you": "Follows You"
},
"dashboard": {
"my_posts": "posts",
"my_following": "following",
"my_followers": "followers",
"other_posts": "posts",
"other_following": "following",
"other_followers": "followers"
"posts": "게시물",
"following": "팔로잉",
"followers": "팔로워"
},
"fields": {
"joined": "가입일",
"add_row": "행 추가",
"placeholder": {
"label": "라벨",
@ -745,18 +722,6 @@
},
"bookmark": {
"title": "Bookmarks"
},
"followed_tags": {
"title": "팔로우한 태그",
"header": {
"posts": "게시물",
"participants": "참가자",
"posts_today": "오늘"
},
"actions": {
"follow": "팔로우",
"unfollow": "팔로우 해제"
}
}
}
}

View File

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

View File

@ -6,30 +6,30 @@
"please_try_again_later": "Lūdzu, mēģiniet vēlreiz vēlāk."
},
"sign_up_failure": {
"title": "Reģistrācijas Neveiksme"
"title": "Sign Up Failure"
},
"server_error": {
"title": "Servera kļūda"
},
"vote_failure": {
"title": "Balsošanas Neveiksme",
"title": "Vote Failure",
"poll_ended": "Balsošana beidzās"
},
"discard_post_content": {
"title": "Atmest malnrakstu",
"message": "Apstiprini, lai atmestu izveidotās ziņas saturu."
"message": "Confirm to discard composed post content."
},
"publish_post_failure": {
"title": "Publicēšanas Neveiksme",
"message": "Neizdevās publicēt ziņu.\nLūdzu, pārbaudi savu interneta savienojumu.",
"title": "Publish Failure",
"message": "Failed to publish the post.\nPlease check your internet connection.",
"attachments_message": {
"video_attach_with_photo": "Nevar pievienot videoklipu ziņai, kurā jau ir attēli.",
"more_than_one_video": "Nevar pievienot vairāk kā vienu video."
"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": "Profila Rediģēšanas Kļūda",
"message": "Nevar rediģēt profilu. Lūdzu mēģini vēlreiz."
"title": "Edit Profile Error",
"message": "Cannot edit profile. Please try again."
},
"sign_out": {
"title": "Iziet",
@ -37,25 +37,20 @@
"confirm": "Iziet"
},
"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.",
"block_entire_domain": "Bloķēt Domēnu"
"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": "Attēla Saglabāšanas Kļūda",
"message": "Lai saglabātu fotoattēlu, lūdzu, iespējo fotoattēlu bibliotēkas piekļuves atļauju."
"title": "Save Photo Failure",
"message": "Please enable the photo library access permission to save the photo."
},
"delete_post": {
"title": "Dzēst ierakstu",
"message": "Vai tiešām vēlies dzēst ierakstu?"
},
"clean_cache": {
"title": "Iztīrīt Kešatmiņu",
"message": "%s kešatmiņa ir veiksmīgi iztīrīta."
},
"translation_failed": {
"title": "Piezīme",
"message": "Tulkošana neizdevās. Varbūt administrators nav iespējojis tulkojumus šajā serverī vai arī šajā serverī darbojas vecāka Mastodon versija, kurā tulkojumi vēl netiek atbalstīti.",
"button": "Labi"
"title": "Clean Cache",
"message": "Successfully cleaned %s cache."
}
},
"controls": {
@ -79,53 +74,48 @@
"take_photo": "Uzņemt bildi",
"save_photo": "Saglabāt bildi",
"copy_photo": "Kopēt bildi",
"sign_in": "Pieteikties",
"sign_up": "Izveidot kontu",
"sign_in": "Log in",
"sign_up": "Create account",
"see_more": "Skatīt vairāk",
"preview": "Priekšskatījums",
"copy": "Kopēt",
"share": "Dalīties",
"share_user": "Kopīgot %s",
"share_post": "Kopīgot Ziņu",
"share_user": "Share %s",
"share_post": "Share Post",
"open_in_safari": "Atvērt Safari",
"open_in_browser": "Atvērt pārlūkprogrammā",
"find_people": "Atrodi cilvēkus kam sekot",
"manually_search": "Tā vietā meklēt manuāli",
"manually_search": "Manually search instead",
"skip": "Izlaist",
"reply": "Atbildēt",
"report_user": "Ziņot par lietotāju @%s",
"block_domain": "Bloķēt %s",
"unblock_domain": "Atbloķēt %s",
"settings": "Iestatījumi",
"delete": "Dzēst",
"translate_post": {
"title": "Tulkot no %s",
"unknown_language": "Nezināms"
}
"delete": "Dzēst"
},
"tabs": {
"home": "Sākums",
"search_and_explore": "Meklēt un Pārlūkot",
"notifications": "Paziņojumi",
"search": "Meklēšana",
"notification": "Paziņojums",
"profile": "Profils"
},
"keyboard": {
"common": {
"switch_to_tab": "Pārslēgties uz: %s",
"compose_new_post": "Veidot jaunu ziņu",
"show_favorites": "Parādīt Izlasi",
"show_favorites": "Show Favorites",
"open_settings": "Atvērt iestatījumus"
},
"timeline": {
"previous_status": "Iepriekšējā Ziņa",
"next_status": "Nākamā Ziņa",
"open_status": "Atvērt Ziņu",
"open_author_profile": "Atvērt Autora Profilu",
"open_reblogger_profile": "Atvērt Reblogotāja Profilu",
"reply_status": "Atbildēt uz Ziņu",
"toggle_reblog": "Pārslēgt Reblogs uz Ziņu",
"toggle_favorite": "Pārslēgt Izlasi uz Ziņas",
"toggle_content_warning": "Pārslēgt Satura Brīdinājumu",
"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": "Priekšskata attēls"
},
"segmented_control": {
@ -134,59 +124,50 @@
}
},
"status": {
"user_reblogged": "%s reblogoja",
"user_replied_to": "Atbildēja %s",
"show_post": "Parādīt Ziņu",
"user_reblogged": "%s reblogged",
"user_replied_to": "Replied to %s",
"show_post": "Show Post",
"show_user_profile": "Parādīt lietotāja profilu",
"content_warning": "Satura brīdinājums",
"sensitive_content": "Sensitīvs saturs",
"media_content_warning": "Pieskarieties jebkurā vietā, lai atklātu",
"tap_to_reveal": "Piest, lai atklātu",
"load_embed": "Ielādēt Iegultos",
"link_via_user": "%s caur %s",
"media_content_warning": "Tap anywhere to reveal",
"tap_to_reveal": "Tap to reveal",
"poll": {
"vote": "Balsot",
"closed": "Aizvērts"
},
"meta_entity": {
"url": "Saite: %s",
"hashtag": "Sajaukt: %s",
"mention": "Rādīt Profilu: %s",
"email": "E-pasta adrese: %s"
"url": "Link: %s",
"hashtag": "Hashtag: %s",
"mention": "Show Profile: %s",
"email": "Email address: %s"
},
"actions": {
"reply": "Atbildēt",
"reblog": "Reblogot",
"unreblog": "Atsaukt reblogu",
"unreblog": "Undo reblog",
"favorite": "Izlase",
"unfavorite": "Izņemt no izlases",
"menu": "Izvēlne",
"hide": "Slēpt",
"show_image": "Rādīt attēlu",
"show_gif": "Rādīt GIF",
"show_video_player": "Rādīt video atskaņotāju",
"share_link_in_post": "Kopīgot Saiti Ziņā",
"tap_then_hold_to_show_menu": "Pieskaries un turi, lai parādītu izvēlni"
"show_video_player": "Show video player",
"tap_then_hold_to_show_menu": "Tap then hold to show menu"
},
"tag": {
"url": "URL",
"mention": "Pieminēt",
"link": "Saite",
"hashtag": "Tēmturis",
"hashtag": "Hashtag",
"email": "E-pasts",
"emoji": "Emocijzīmes"
},
"visibility": {
"unlisted": "Ikviens var redzēt šo ziņu, bet to nevar parādīt publiskajā laikrindā.",
"private": "Šo ziņu var redzēt tikai viņu sekotāji.",
"private_from_me": "Šo ziņu var redzēt tikai mani sekotāji.",
"direct": "Šo ziņu var redzēt tikai minētais lietotājs."
},
"translation": {
"translated_from": "Tulkots no %s, izmantojot %s",
"unknown_language": "Nezināms",
"unknown_provider": "Nezināms",
"show_original": "Parādīts Oriģināls"
"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."
}
},
"friendship": {
@ -205,9 +186,9 @@
"unmute": "Noņemt apklusinājumu",
"unmute_user": "Noņemt apklusinājumu @%s",
"muted": "Apklusināts",
"edit_info": "Rediģēt",
"show_reblogs": "Rādīt Reblogus",
"hide_reblogs": "Paslēpt Reblogus"
"edit_info": "Edit Info",
"show_reblogs": "Show Reblogs",
"hide_reblogs": "Hide Reblogs"
},
"timeline": {
"filtered": "Filtrēts",
@ -215,48 +196,48 @@
"now": "Tagad"
},
"loader": {
"load_missing_posts": "Ielādēt trūkstošās ziņas",
"loading_missing_posts": "Ielādē trūkstošās ziņas...",
"load_missing_posts": "Load missing posts",
"loading_missing_posts": "Loading missing posts...",
"show_more_replies": "Rādīt vairāk atbildes"
},
"header": {
"no_status_found": "Nav Atrastu Ziņu",
"blocking_warning": "Tu nevari skatīt šī lietotāja profilu,\nlīdz tu tos atbloķē.\nTavs profils viņiem izskatās šādi.",
"user_blocking_warning": "Tu nevari skatīt %s profilu,\nlīdz tu tos atbloķē.\nTavs profils viņiem izskatās šādi.",
"blocked_warning": "Tu nevari skatīt šī lietotāja profilu\nlīdz tie tevi atbloķē.",
"user_blocked_warning": "Tu nevari skatīt %s profilu,\nlīdz tie tevi atbloķē.",
"suspended_warning": "Šī lietotāja darbība ir apturēta.",
"user_suspended_warning": "%s konta darbība ir apturēta."
"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": "Sociālie tīkli\natpakaļ tavās rokās.",
"get_started": "Sāc",
"slogan": "Social networking\nback in your hands.",
"get_started": "Get Started",
"log_in": "Pieteikties"
},
"login": {
"title": "Laipni lūdzam atpakaļ",
"subtitle": "Piesakies serverī, kurā izveidoji savu kontu.",
"title": "Welcome back",
"subtitle": "Log you in on the server you created your account on.",
"server_search_field": {
"placeholder": "Ievadi URL vai meklē savu serveri"
"placeholder": "Enter URL or search for your server"
}
},
"server_picker": {
"title": "Mastodon veido lietotāji dažādos serveros.",
"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.",
"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": "Visi",
"all_accessiblity_description": "Katekorija: Visi",
"academia": "akadēmija",
"activism": "aktīvisms",
"academia": "academia",
"activism": "activism",
"food": "ēdiens",
"furry": "pūkains",
"furry": "furry",
"games": "spēles",
"general": "galvenais",
"general": "general",
"journalism": "žurnālisms",
"lgbt": "lgbt",
"regional": "regionāli",
@ -273,17 +254,17 @@
"category": "KATEGORIJA"
},
"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": {
"finding_servers": "Meklē piejamos serverus...",
"bad_network": "Ielādējot datus, radās problēma. Pārbaudi interneta savienojumu.",
"finding_servers": "Finding available servers...",
"bad_network": "Something went wrong while loading the data. Check your internet connection.",
"no_results": "Nav rezultātu"
}
},
"register": {
"title": "Ļauj tevi iestatīt %s",
"lets_get_you_set_up_on_domain": "Ļauj tevi iestatīt %s",
"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": "Dzēst"
@ -300,7 +281,7 @@
},
"password": {
"placeholder": "parole",
"require": "Tavai parolei ir nepieciešams vismaz:",
"require": "Your password needs at least:",
"character_limit": "8 rakstzīmes",
"accessibility": {
"checked": "atzīmēts",
@ -322,29 +303,29 @@
"reason": "Iemesls"
},
"reason": {
"blocked": "%s satur neatļautu e-pasta pakalpojumu sniedzēju",
"blocked": "%s contains a disallowed email provider",
"unreachable": "%s šķiet, ka neeksistē",
"taken": "%s jau tiek izmantots",
"reserved": "%s ir rezervēts atslēgvārds",
"accepted": "%s jābūt apstiprinātām",
"reserved": "%s is a reserved keyword",
"accepted": "%s must be accepted",
"blank": "%s ir obligāts",
"invalid": "%s ir nederīgs",
"too_long": "%s ir pārāk garaš",
"too_short": "%s ir pārāk īs",
"inclusion": "%s nav atbalstīta vērtība"
"inclusion": "%s is not a supported value"
},
"special": {
"username_invalid": "Lietotājvārdā drīkst būt tikai burtciparu rakstzīmes un zemsvītras",
"username_too_long": "Lietotājvārds ir par garu (nedrīkst būt garāks par 30 rakstzīmēm)",
"email_invalid": "Šī nav derīga e-pasta adrese",
"password_too_short": "Parole ir pārāk īsa (jābūt vismaz 8 rakstzīmēm)"
"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": "Daži pamatnoteikumi.",
"subtitle": "Tos iestata un ievieš %s moderatori.",
"prompt": "Turpinot, uz tevi attiecas %s pakalpojumu sniegšanas noteikumi un konfidencialitātes politika.",
"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": "pakalpojuma noteikumi",
"privacy_policy": "privātuma nosacījumi",
"button": {
@ -352,45 +333,45 @@
}
},
"confirm_email": {
"title": "Pēdējā lieta.",
"subtitle": "Pieskaries saitei, ko nosūtījām tev pa e-pastu, lai verificētu savu kontu.",
"tap_the_link_we_emailed_to_you_to_verify_your_account": "Pieskaries saitei, ko nosūtījām tev pa e-pastu, lai verificētu savu kontu",
"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": "Atvērt E-pasta Lietotni",
"open_email_app": "Open Email App",
"resend": "Nosūtīt atkārtoti"
},
"dont_receive_email": {
"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"
},
"open_email_app": {
"title": "Pārbaudi savu iesūtni.",
"description": "Mēs tikko nosūtījām tev e-pastu. Pārbaudi savu mēstuļu mapi, ja neesi to saņēmis.",
"mail": "Pasts",
"open_email_client": "Atvērt E-pasta Klientu"
"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": "Sākums",
"title": "Home",
"navigation_bar_state": {
"offline": "Bezsaistē",
"new_posts": "Skatīt jaunās ziņas",
"published": "Publicēts!",
"Publishing": "Publicē ziņu...",
"offline": "Offline",
"new_posts": "See new posts",
"published": "Published!",
"Publishing": "Publishing post...",
"accessibility": {
"logo_label": "Logotipa Poga",
"logo_hint": "Pieskaries, lai ritinātu uz augšu, un vēlreiz pieskaries iepriekšējai atrašanās vietai"
"logo_label": "Logo Button",
"logo_hint": "Tap to scroll to top and tap again to previous location"
}
}
},
"suggestion_account": {
"title": "Atrodi Cilvēkus kam Sekot",
"follow_explain": "Kad seko kādam, tu redzēsi viņu ziņas savā mājas plūsmā."
"title": "Find People to Follow",
"follow_explain": "When you follow someone, youll see their posts in your home feed."
},
"compose": {
"title": {
"new_post": "Jauna Ziņa",
"new_post": "New Post",
"new_reply": "Jauna atbilde"
},
"media_selection": {
@ -398,36 +379,36 @@
"photo_library": "Attēlu krātuve",
"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",
"replying_to_user": "atbildot uz %s",
"replying_to_user": "replying to %s",
"attachment": {
"photo": "attēls",
"video": "video",
"attachment_broken": "Šis %s ir salauzts un nevar tikt augšuplādēts Mastodon.",
"description_photo": "Apraksti fotoattēlu vājredzīgajiem...",
"description_video": "Apraksti video vājredzīgajiem...",
"load_failed": "Ielāde Neizdevās",
"upload_failed": "Augšupielāde Neizdevās",
"can_not_recognize_this_media_attachment": "Nevar atpazīt šo multivides pielikumu",
"attachment_too_large": "Pārāk liels pielikums",
"compressing_state": "Saspiež...",
"server_processing_state": "Notiek servera apstrāde..."
"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": "Ilgums: %s",
"duration_time": "Duration: %s",
"thirty_minutes": "30 minūtes",
"one_hour": "1 Stunda",
"six_hours": "6 stundas",
"one_day": "1 Diena",
"three_days": "3 Dienas",
"seven_days": "7 Dienas",
"option_number": "Izvēle %ld",
"the_poll_is_invalid": "Aptauja nav derīga",
"the_poll_has_empty_option": "Aptaujai ir tukša opcija"
"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": "Uzraksti šeit precīzu brīdinājumu..."
"placeholder": "Write an accurate warning here..."
},
"visibility": {
"public": "Publisks",
@ -436,26 +417,26 @@
"direct": "Tikai cilvēki, kurus es pieminu"
},
"auto_complete": {
"space_to_add": "Vieta, ko pievienot"
"space_to_add": "Space to add"
},
"accessibility": {
"append_attachment": "Pievienot pielikumu",
"append_poll": "Pievienot aptauju",
"remove_poll": "Noņemt aptauju",
"custom_emoji_picker": "Pielāgoto Emocijzīmju Atlasītājs",
"enable_content_warning": "Iespējot Satura Brīdinājumu",
"disable_content_warning": "Atspējot Satura Brīdinājumu",
"post_visibility_menu": "Ziņu Redzamības Izvēlne",
"post_options": "Ziņas Iespējas",
"posting_as": "Publicēt kā %s"
"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": "Izmest Ziņu",
"publish_post": "Publicēt Ziņu",
"toggle_poll": "Pārslēgt Aptauju",
"toggle_content_warning": "Pārslēgt Satura Brīdinājumu",
"discard_post": "Discard Post",
"publish_post": "Publish Post",
"toggle_poll": "Toggle Poll",
"toggle_content_warning": "Toggle Content Warning",
"append_attachment_entry": "Pievienot pielikumu - %s",
"select_visibility_entry": "Atlasīt Redzamību  %s"
"select_visibility_entry": "Select Visibility - %s"
}
},
"profile": {
@ -463,27 +444,23 @@
"follows_you": "Seko tev"
},
"dashboard": {
"my_posts": "ziņas",
"my_following": "seko",
"my_followers": "sekotāji",
"other_posts": "ziņas",
"other_following": "seko",
"other_followers": "sekotāji"
"posts": "posts",
"following": "seko",
"followers": "sekottāji"
},
"fields": {
"joined": "Pievienojās",
"add_row": "Pievienot rindu",
"placeholder": {
"label": "Marķējums",
"label": "Label",
"content": "Saturs"
},
"verified": {
"short": "Pārbaudīts %s",
"long": "Šīs saites piederība tika pārbaudīta %s"
"short": "Verified on %s",
"long": "Ownership of this link was checked on %s"
}
},
"segmented_control": {
"posts": "Ziņas",
"posts": "Posts",
"replies": "Atbildes",
"posts_and_replies": "Ziņas un atbildes",
"media": "Multivide",
@ -491,97 +468,97 @@
},
"relationship_action_alert": {
"confirm_mute_user": {
"title": "Izslēgt Kontu",
"message": "Apstiprināt, lai izslēgtu %s skaņu"
"title": "Mute Account",
"message": "Confirm to mute %s"
},
"confirm_unmute_user": {
"title": "Ieslēgt Kontu",
"message": "Apstiprināt, lai ieslēgtu %s skaņu"
"title": "Unmute Account",
"message": "Confirm to unmute %s"
},
"confirm_block_user": {
"title": "Bloķēts kontu",
"message": "Apstiprināt, lai bloķētu %s"
"message": "Confirm to block %s"
},
"confirm_unblock_user": {
"title": "Atbloķēt kontu",
"message": "Apstiprini lai atbloķētu %s"
},
"confirm_show_reblogs": {
"title": "Rādīt Reblogus",
"message": "Apstiprināt, lai rādītu reblogus"
"title": "Show Reblogs",
"message": "Confirm to show reblogs"
},
"confirm_hide_reblogs": {
"title": "Paslēpt Reblogus",
"message": "Apstiprināt, lai slēptu reblogus"
"title": "Hide Reblogs",
"message": "Confirm to hide reblogs"
}
},
"accessibility": {
"show_avatar_image": "Rādīt avatara attēlu",
"edit_avatar_image": "Rediģēt avatara attēlu",
"show_banner_image": "Rādīt bannera attēlu",
"double_tap_to_open_the_list": "Dubultskāriens, lai atvērtu sarakstu"
"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": "sekottājs",
"footer": "Sekotāji no citiem serveriem netiek rādīti."
"footer": "Followers from other servers are not displayed."
},
"following": {
"title": "seko",
"footer": "Sekojumi no citiem serveriem netiek rādīti."
"footer": "Follows from other servers are not displayed."
},
"familiarFollowers": {
"title": "Tev pazīstamie sekotāji",
"followed_by_names": "Seko %s"
"title": "Followers you familiar",
"followed_by_names": "Followed by %s"
},
"favorited_by": {
"title": "Pievienoja izlasei"
"title": "Favorited By"
},
"reblogged_by": {
"title": "Reblogoja"
"title": "Reblogged By"
},
"search": {
"title": "Meklēt",
"search_bar": {
"placeholder": "Meklēt tēmturus un lietotājus",
"placeholder": "Search hashtags and users",
"cancel": "Atcelt"
},
"recommend": {
"button_text": "Skatīt visu",
"hash_tag": {
"title": "Tendences vietnē Mastodon",
"description": "Tēmturi, kuriem tiek pievērsta diezgan liela uzmanība",
"people_talking": "%s cilvēki apspriež"
"title": "Trending on Mastodon",
"description": "Hashtags that are getting quite a bit of attention",
"people_talking": "%s people are talking"
},
"accounts": {
"title": "Konti, kuri tev varētu patikt",
"description": "Iespējams, tu vēlēsies sekot šiem kontiem",
"follow": "Sekot"
"title": "Accounts you might like",
"description": "You may like to follow these accounts",
"follow": "Follow"
}
},
"searching": {
"segment": {
"all": "Visi",
"people": "Cilvēki",
"hashtags": "Tēmturi",
"posts": "Ziņas"
"all": "All",
"people": "People",
"hashtags": "Hashtags",
"posts": "Posts"
},
"empty_state": {
"no_results": "Nav rezultātu"
"no_results": "No results"
},
"recent_search": "Nesen meklētais",
"clear": "Notīrīt"
"recent_search": "Recent searches",
"clear": "Clear"
}
},
"discovery": {
"tabs": {
"posts": "Ziņas",
"hashtags": "Tēmturi",
"hashtags": "Hashtags",
"news": "Ziņas",
"community": "Kopiena",
"community": "Community",
"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": {
"title": "Tava izlase"
@ -592,16 +569,16 @@
"Mentions": "Pieminējumi"
},
"notification_description": {
"followed_you": "tev sekoja",
"favorited_your_post": "izcēla tavu ziņu",
"reblogged_your_post": "reblogoja tavu ziņu",
"followed_you": "followed you",
"favorited_your_post": "favorited your post",
"reblogged_your_post": "reblogged your post",
"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"
},
"keyobard": {
"show_everything": "Parādīt man visu",
"show_mentions": "Rādīt Pieminējumus"
"show_mentions": "Show Mentions"
},
"follow_request": {
"accept": "Pieņemt",
@ -612,7 +589,7 @@
},
"thread": {
"back_title": "Ziņa",
"title": "Ziņa no %s"
"title": "Post from %s"
},
"settings": {
"title": "Iestatījumi",
@ -625,42 +602,42 @@
},
"look_and_feel": {
"title": "Izskats",
"use_system": "Lietot Sistēmas",
"use_system": "Use System",
"really_dark": "Ļoti tumšs",
"sorta_dark": "Itkā tumšs",
"light": "Gaišs"
},
"notifications": {
"title": "Paziņojumi",
"favorites": "Izceļ manu ziņu",
"favorites": "Favorites my post",
"follows": "Seko man",
"boosts": "Reblogo manu ziņu",
"boosts": "Reblogs my post",
"mentions": "Pieminējumi",
"trigger": {
"anyone": "jebkurš",
"follower": "sekottājs",
"follow": "jebkurš, kam sekoju",
"follow": "anyone I follow",
"noone": "neviens",
"title": "Paziņot man, kad"
"title": "Notify me when"
}
},
"preference": {
"title": "Uzstādījumi",
"true_black_dark_mode": "Īsti melns tumšais režīms",
"disable_avatar_animation": "Atspējot animētos avatarus",
"disable_emoji_animation": "Atspējot animētās emocijzīmes",
"using_default_browser": "Saišu atvēršana noklusētajā pārlūkā",
"open_links_in_mastodon": "Atvērt saites Mastodon"
"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": "Garlaicīgā zona",
"title": "The Boring Zone",
"account_settings": "Konta iestatījumi",
"terms": "Pakalpojuma noteikumi",
"privacy": "Privātuma politika"
},
"spicy_zone": {
"title": "Pikantā zona",
"clear": "Notīrīt Multivides Kešatmiņu",
"title": "The Spicy Zone",
"clear": "Clear Media Cache",
"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)"
},
"keyboard": {
"close_settings_window": "Aizvērt Iestatījumu Logu"
"close_settings_window": "Close Settings Window"
}
},
"report": {
@ -676,24 +653,24 @@
"title": "Ziņot %s",
"step1": "1. solis no 2",
"step2": "2. solis no 2",
"content1": "Vai ir vēl kādas ziņas, kuras vēlies pievienot pārskatam?",
"content2": "Vai moderatoriem ir kaut kas jāzina par šo ziņojumu?",
"report_sent_title": "Paldies, ka ziņoji, mēs to izskatīsim.",
"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": "Nosūtīt Sūdzību",
"skip_to_send": "Sūtīt bez komentāra",
"text_placeholder": "Ieraksti vai ielīmē papildu komentārus",
"reported": "ZIŅOTS",
"text_placeholder": "Type or paste additional comments",
"reported": "REPORTED",
"step_one": {
"step_1_of_4": "1. solis no 4",
"whats_wrong_with_this_post": "Kas vainas šim ierakstam?",
"whats_wrong_with_this_account": "Kas vainas šim kontam?",
"whats_wrong_with_this_username": "Kas vainas %s?",
"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": "Izvēlieties labāko atbilstību",
"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",
"its_spam": "Tas ir spams",
"malicious_links_fake_engagement_or_repetetive_replies": "Ļaunprātīgas saites, viltus iesaistīšana vai atkārtotas atbildes",
"it_violates_server_rules": "Tas pārkāpj servera noteikumus",
"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": "Tu zini, ka tas pārkāpj īpašus noteikumus",
"its_something_else": "Tas ir kaut kas cits",
"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",
"which_rules_are_being_violated": "Kuri noteikumi tiek pārkāpti?",
"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_3_of_4": "3. solis no 4",
@ -715,48 +692,36 @@
},
"step_final": {
"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",
"unfollowed": "Atsekoja",
"unfollow_user": "Atsekot %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",
"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"
}
},
"preview": {
"keyboard": {
"close_preview": "Aizvērt Priekšskatījumu",
"show_next": "Rādīt Nākamo",
"show_previous": "Rādīt Iepriekšējo"
"close_preview": "Close Preview",
"show_next": "Show Next",
"show_previous": "Show Previous"
}
},
"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",
"dismiss_account_switcher": "Noraidīt Konta Pārslēdzēju",
"tab_bar_hint": "Current selected profile: %s. Double tap then hold to show account switcher",
"dismiss_account_switcher": "Dismiss Account Switcher",
"add_account": "Pievienot kontu"
},
"wizard": {
"new_in_mastodon": "Jaunums Mastodonā",
"multiple_account_switch_intro_description": "Pārslēdzies starp vairākiem kontiem, turot nospiestu profila pogu.",
"accessibility_hint": "Veic dubultskārienu, lai noraidītu šo vedni"
"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": "Grāmatzīmes"
},
"followed_tags": {
"title": "Sekotie Tēmturi",
"header": {
"posts": "ziņas",
"participants": "dalībnieki",
"posts_today": "ziņas šodien"
},
"actions": {
"follow": "Sekot",
"unfollow": "Atsekot"
}
"title": "Bookmarks"
}
}
}

View File

@ -1,6 +1,6 @@
{
"NSCameraUsageDescription": "Izmanto, lai fotografētu ziņas statusu",
"NSPhotoLibraryAddUsageDescription": "Izmanto, lai saglabātu fotoattēlu Photo Library",
"NewPostShortcutItemTitle": "Jauna Ziņa",
"SearchShortcutItemTitle": "Meklēt"
"NSCameraUsageDescription": "Used to take photo for post status",
"NSPhotoLibraryAddUsageDescription": "Used to save photo into the Photo Library",
"NewPostShortcutItemTitle": "New Post",
"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>
<string>1 unread notification</string>
<key>other</key>
<string>%ld unread notifications</string>
<string>%ld unread notification</string>
</dict>
</dict>
<key>a11y.plural.count.input_limit_exceeds</key>

View File

@ -51,11 +51,6 @@
"clean_cache": {
"title": "Cache-geheugen Wissen",
"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": {
@ -79,11 +74,10 @@
"take_photo": "Maak foto",
"save_photo": "Bewaar foto",
"copy_photo": "Kopieer foto",
"sign_in": "Inloggen",
"sign_up": "Account aanmaken",
"sign_in": "Log in",
"sign_up": "Create account",
"see_more": "Meer",
"preview": "Voorvertoning",
"copy": "Copy",
"share": "Deel",
"share_user": "Delen %s",
"share_post": "Deel bericht",
@ -97,16 +91,12 @@
"block_domain": "Blokkeer %s",
"unblock_domain": "Deblokkeer %s",
"settings": "Instellingen",
"delete": "Verwijder",
"translate_post": {
"title": "Translate from %s",
"unknown_language": "Unknown"
}
"delete": "Verwijder"
},
"tabs": {
"home": "Start",
"search_and_explore": "Search and Explore",
"notifications": "Notifications",
"search": "Zoek",
"notification": "Melding",
"profile": "Profiel"
},
"keyboard": {
@ -142,8 +132,6 @@
"sensitive_content": "Gevoelige inhoud",
"media_content_warning": "Tap hier om te tonen",
"tap_to_reveal": "Tik om te onthullen",
"load_embed": "Load Embed",
"link_via_user": "%s via %s",
"poll": {
"vote": "Stemmen",
"closed": "Gesloten"
@ -151,8 +139,8 @@
"meta_entity": {
"url": "Link: %s",
"hashtag": "Hashtag: %s",
"mention": "Profiel weergeven: %s",
"email": "E-mailadres: %s"
"mention": "Show Profile: %s",
"email": "Email address: %s"
},
"actions": {
"reply": "Reageren",
@ -165,7 +153,6 @@
"show_image": "Toon afbeelding",
"show_gif": "GIF weergeven",
"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"
},
"tag": {
@ -181,12 +168,6 @@
"private": "Alleen hun volgers kunnen dit bericht zien.",
"private_from_me": "Alleen mijn volgers kunnen 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": {
@ -206,8 +187,8 @@
"unmute_user": "%s niet langer negeren",
"muted": "Genegeerd",
"edit_info": "Bewerken",
"show_reblogs": "Toon reblogs",
"hide_reblogs": "Verberg reblogs"
"show_reblogs": "Show Reblogs",
"hide_reblogs": "Hide Reblogs"
},
"timeline": {
"filtered": "Gefilterd",
@ -238,15 +219,15 @@
"log_in": "Log in"
},
"login": {
"title": "Welkom terug",
"subtitle": "Log je in op de server waarop je je account hebt aangemaakt.",
"title": "Welcome back",
"subtitle": "Log you in on the server you created your account on.",
"server_search_field": {
"placeholder": "Voer URL in of zoek naar uw server"
"placeholder": "Enter URL or search for your server"
}
},
"server_picker": {
"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": {
"category": {
"all": "Alles",
@ -273,7 +254,7 @@
"category": "CATEGORIE"
},
"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": {
"finding_servers": "Beschikbare servers zoeken...",
@ -283,7 +264,7 @@
},
"register": {
"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": {
"avatar": {
"delete": "Verwijderen"
@ -354,7 +335,7 @@
"confirm_email": {
"title": "Nog één ding.",
"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": {
"open_email_app": "Email Openen",
"resend": "Verstuur opnieuw"
@ -379,8 +360,8 @@
"published": "Gepubliceerd!",
"Publishing": "Bericht publiceren...",
"accessibility": {
"logo_label": "Logo knop",
"logo_hint": "Tik om naar boven te scrollen en tik nogmaals om terug te keren naar de vorige locatie"
"logo_label": "Logo Button",
"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.",
"description_photo": "Omschrijf de foto voor mensen met een visuele beperking...",
"description_video": "Omschrijf de video voor mensen met een visuele beperking...",
"load_failed": "Laden mislukt",
"upload_failed": "Uploaden mislukt",
"can_not_recognize_this_media_attachment": "Kan de media in de bijlage niet herkennen",
"attachment_too_large": "Bijlage te groot",
"compressing_state": "Bezig met comprimeren...",
"server_processing_state": "Server is bezig met verwerken..."
"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": "Duur: %s",
@ -423,8 +404,8 @@
"three_days": "3 Dagen",
"seven_days": "7 Dagen",
"option_number": "Optie %ld",
"the_poll_is_invalid": "De peiling is ongeldig",
"the_poll_has_empty_option": "De peiling heeft een lege optie"
"the_poll_is_invalid": "The poll is invalid",
"the_poll_has_empty_option": "The poll has empty option"
},
"content_warning": {
"placeholder": "Schrijf hier een nauwkeurige waarschuwing..."
@ -446,8 +427,8 @@
"enable_content_warning": "Inhoudswaarschuwing inschakelen",
"disable_content_warning": "Inhoudswaarschuwing Uitschakelen",
"post_visibility_menu": "Berichtzichtbaarheidsmenu",
"post_options": "Plaats Bericht Opties",
"posting_as": "Plaats bericht als %s"
"post_options": "Post Options",
"posting_as": "Posting as %s"
},
"keyboard": {
"discard_post": "Bericht Verwijderen",
@ -460,26 +441,22 @@
},
"profile": {
"header": {
"follows_you": "Volgt jou"
"follows_you": "Follows You"
},
"dashboard": {
"my_posts": "posts",
"my_following": "following",
"my_followers": "followers",
"other_posts": "posts",
"other_following": "following",
"other_followers": "followers"
"posts": "berichten",
"following": "volgend",
"followers": "volgers"
},
"fields": {
"joined": "Joined",
"add_row": "Rij Toevoegen",
"placeholder": {
"label": "Etiket",
"content": "Inhoud"
},
"verified": {
"short": "Geverifieerd op %s",
"long": "Eigendom van deze link is gecontroleerd op %s"
"short": "Verified on %s",
"long": "Ownership of this link was checked on %s"
}
},
"segmented_control": {
@ -507,12 +484,12 @@
"message": "Bevestig om %s te deblokkeren"
},
"confirm_show_reblogs": {
"title": "Toon reblogs",
"message": "Bevestig om reblogs te tonen"
"title": "Show Reblogs",
"message": "Confirm to show reblogs"
},
"confirm_hide_reblogs": {
"title": "Verberg reblogs",
"message": "Bevestig om reblogs te verbergen"
"title": "Hide Reblogs",
"message": "Confirm to hide reblogs"
}
},
"accessibility": {
@ -523,16 +500,16 @@
}
},
"follower": {
"title": "volger",
"title": "follower",
"footer": "Volgers van andere servers worden niet weergegeven."
},
"following": {
"title": "volgend",
"title": "following",
"footer": "Volgers van andere servers worden niet weergegeven."
},
"familiarFollowers": {
"title": "Volgers die je kent",
"followed_by_names": "Gevolgd door %s"
"title": "Followers you familiar",
"followed_by_names": "Followed by %s"
},
"favorited_by": {
"title": "Favorited By"
@ -578,7 +555,7 @@
"posts": "Berichten",
"hashtags": "Hashtags",
"news": "Nieuws",
"community": "Gemeenschap",
"community": "Community",
"for_you": "Voor jou"
},
"intro": "Dit zijn de berichten die populair zijn in jouw Mastodon-kringen."
@ -604,10 +581,10 @@
"show_mentions": "Vermeldingen weergeven"
},
"follow_request": {
"accept": "Accepteren",
"accepted": "Geaccepteerd",
"reject": "afwijzen",
"rejected": "Afgewezen"
"accept": "Accept",
"accepted": "Accepted",
"reject": "reject",
"rejected": "Rejected"
}
},
"thread": {
@ -684,11 +661,11 @@
"text_placeholder": "Schrijf of plak aanvullende opmerkingen",
"reported": "Gerapporteerd",
"step_one": {
"step_1_of_4": "Stap 1 van 4",
"whats_wrong_with_this_post": "Wat is er mis met dit bericht?",
"whats_wrong_with_this_account": "Wat is er mis met dit bericht?",
"whats_wrong_with_this_username": "Wat is er mis met %s?",
"select_the_best_match": "Selecteer de beste overeenkomst",
"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",
@ -745,18 +722,6 @@
},
"bookmark": {
"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": {
"title": "Limpar Cache",
"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": {
@ -83,7 +78,6 @@
"sign_up": "Criar conta",
"see_more": "Ver mais",
"preview": "Pré-visualização",
"copy": "Copy",
"share": "Compartilhar",
"share_user": "Compartilhar %s",
"share_post": "Compartilhar postagem",
@ -97,16 +91,12 @@
"block_domain": "Bloquear %s",
"unblock_domain": "Desbloquear %s",
"settings": "Configurações",
"delete": "Excluir",
"translate_post": {
"title": "Translate from %s",
"unknown_language": "Unknown"
}
"delete": "Excluir"
},
"tabs": {
"home": "Início",
"search_and_explore": "Search and Explore",
"notifications": "Notifications",
"search": "Buscar",
"notification": "Notificação",
"profile": "Perfil"
},
"keyboard": {
@ -142,8 +132,6 @@
"sensitive_content": "Conteúdo sensível",
"media_content_warning": "Toque em qualquer lugar para revelar",
"tap_to_reveal": "Toque para revelar",
"load_embed": "Load Embed",
"link_via_user": "%s via %s",
"poll": {
"vote": "Votar",
"closed": "Fechado"
@ -165,7 +153,6 @@
"show_image": "Exibir imagem",
"show_gif": "Exibir GIF",
"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"
},
"tag": {
@ -181,12 +168,6 @@
"private": "Somente seus 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."
},
"translation": {
"translated_from": "Translated from %s using %s",
"unknown_language": "Unknown",
"unknown_provider": "Unknown",
"show_original": "Shown Original"
}
},
"friendship": {
@ -463,15 +444,11 @@
"follows_you": "Segue você"
},
"dashboard": {
"my_posts": "posts",
"my_following": "following",
"my_followers": "followers",
"other_posts": "posts",
"other_following": "following",
"other_followers": "followers"
"posts": "toots",
"following": "seguindo",
"followers": "seguidores"
},
"fields": {
"joined": "Joined",
"add_row": "Adicionar linha",
"placeholder": {
"label": "Descrição",
@ -745,18 +722,6 @@
},
"bookmark": {
"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>
<string>1 unread notification</string>
<key>other</key>
<string>%ld unread notifications</string>
<string>%ld unread notification</string>
</dict>
</dict>
<key>a11y.plural.count.input_limit_exceeds</key>

View File

@ -51,11 +51,6 @@
"clean_cache": {
"title": "Clean Cache",
"message": "Successfully cleaned %s cache."
},
"translation_failed": {
"title": "Note",
"message": "Translation failed. Maybe the administrator has not enabled translations on this server or this server is running an older version of Mastodon where translations are not yet supported.",
"button": "OK"
}
},
"controls": {
@ -83,7 +78,6 @@
"sign_up": "Create account",
"see_more": "See More",
"preview": "Preview",
"copy": "Copy",
"share": "Share",
"share_user": "Share %s",
"share_post": "Share Post",
@ -97,16 +91,12 @@
"block_domain": "Block %s",
"unblock_domain": "Unblock %s",
"settings": "Settings",
"delete": "Delete",
"translate_post": {
"title": "Translate from %s",
"unknown_language": "Unknown"
}
"delete": "Delete"
},
"tabs": {
"home": "Home",
"search_and_explore": "Search and Explore",
"notifications": "Notifications",
"search": "Search",
"notification": "Notification",
"profile": "Profile"
},
"keyboard": {
@ -142,8 +132,6 @@
"sensitive_content": "Sensitive Content",
"media_content_warning": "Tap anywhere to reveal",
"tap_to_reveal": "Tap to reveal",
"load_embed": "Load Embed",
"link_via_user": "%s via %s",
"poll": {
"vote": "Vote",
"closed": "Closed"
@ -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": {
@ -181,12 +168,6 @@
"private": "Only their followers can see this post.",
"private_from_me": "Only my followers can see this post.",
"direct": "Only mentioned user can see this post."
},
"translation": {
"translated_from": "Translated from %s using %s",
"unknown_language": "Unknown",
"unknown_provider": "Unknown",
"show_original": "Shown Original"
}
},
"friendship": {
@ -463,15 +444,11 @@
"follows_you": "Follows You"
},
"dashboard": {
"my_posts": "posts",
"my_following": "following",
"my_followers": "followers",
"other_posts": "posts",
"other_following": "following",
"other_followers": "followers"
"posts": "posts",
"following": "following",
"followers": "followers"
},
"fields": {
"joined": "Joined",
"add_row": "Add Row",
"placeholder": {
"label": "Label",
@ -584,7 +561,7 @@
"intro": "These are the posts gaining traction in your corner of Mastodon."
},
"favorite": {
"title": "Favorites"
"title": "Your Favorites"
},
"notification": {
"title": {
@ -745,18 +722,6 @@
},
"bookmark": {
"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>
<string>1 unread notification</string>
<key>few</key>
<string>%ld unread notifications</string>
<string>%ld unread notification</string>
<key>other</key>
<string>%ld unread notifications</string>
<string>%ld unread notification</string>
</dict>
</dict>
<key>a11y.plural.count.input_limit_exceeds</key>

View File

@ -13,7 +13,7 @@
},
"vote_failure": {
"title": "Eșec la vot",
"poll_ended": "Sondajul tău s-a încheiat"
"poll_ended": "The poll has ended"
},
"discard_post_content": {
"title": "Șterge Schită",
@ -41,7 +41,7 @@
"block_entire_domain": "Block Domain"
},
"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."
},
"delete_post": {
@ -51,22 +51,17 @@
"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": "Înapoi",
"next": "Înainte",
"back": "Back",
"next": "Next",
"previous": "Previous",
"open": "Deschide",
"add": "Adaugă",
"add": "Add",
"remove": "Elimină",
"edit": "Modifică",
"edit": "Edit",
"save": "Salvează",
"ok": "OK",
"done": "Done",
@ -83,30 +78,25 @@
"sign_up": "Create account",
"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": "Deschide în browser",
"find_people": "Găsește persoane de urmărit",
"open_in_browser": "Open in Browser",
"find_people": "Find people to follow",
"manually_search": "Manually search instead",
"skip": "Treci peste",
"skip": "Skip",
"reply": "Reply",
"report_user": "Report %s",
"block_domain": "Block %s",
"unblock_domain": "Unblock %s",
"settings": "Settings",
"delete": "Delete",
"translate_post": {
"title": "Translate from %s",
"unknown_language": "Unknown"
}
"delete": "Delete"
},
"tabs": {
"home": "Acasă",
"search_and_explore": "Search and Explore",
"notifications": "Notifications",
"home": "Home",
"search": "Search",
"notification": "Notification",
"profile": "Profile"
},
"keyboard": {
@ -142,8 +132,6 @@
"sensitive_content": "Sensitive Content",
"media_content_warning": "Tap anywhere to reveal",
"tap_to_reveal": "Tap to reveal",
"load_embed": "Load Embed",
"link_via_user": "%s via %s",
"poll": {
"vote": "Vote",
"closed": "Closed"
@ -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": {
@ -181,12 +168,6 @@
"private": "Only their followers can see this post.",
"private_from_me": "Only my followers can see this post.",
"direct": "Only mentioned user can see this post."
},
"translation": {
"translated_from": "Translated from %s using %s",
"unknown_language": "Unknown",
"unknown_provider": "Unknown",
"show_original": "Shown Original"
}
},
"friendship": {
@ -463,15 +444,11 @@
"follows_you": "Follows You"
},
"dashboard": {
"my_posts": "posts",
"my_following": "following",
"my_followers": "followers",
"other_posts": "posts",
"other_following": "following",
"other_followers": "followers"
"posts": "posts",
"following": "following",
"followers": "followers"
},
"fields": {
"joined": "Joined",
"add_row": "Add Row",
"placeholder": {
"label": "Label",
@ -584,7 +561,7 @@
"intro": "These are the posts gaining traction in your corner of Mastodon."
},
"favorite": {
"title": "Favorites"
"title": "Your Favorites"
},
"notification": {
"title": {
@ -745,18 +722,6 @@
},
"bookmark": {
"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>
<string>1 unread notification</string>
<key>few</key>
<string>%ld unread notifications</string>
<string>%ld unread notification</string>
<key>many</key>
<string>%ld unread notifications</string>
<string>%ld unread notification</string>
<key>other</key>
<string>%ld unread notifications</string>
<string>%ld unread notification</string>
</dict>
</dict>
<key>a11y.plural.count.input_limit_exceeds</key>

View File

@ -51,11 +51,6 @@
"clean_cache": {
"title": "Очистка кэша",
"message": "Успешно очищено %s кэша."
},
"translation_failed": {
"title": "Note",
"message": "Translation failed. Maybe the administrator has not enabled translations on this server or this server is running an older version of Mastodon where translations are not yet supported.",
"button": "OK"
}
},
"controls": {
@ -83,7 +78,6 @@
"sign_up": "Create account",
"see_more": "Ещё",
"preview": "Предпросмотр",
"copy": "Copy",
"share": "Поделиться",
"share_user": "Поделиться %s",
"share_post": "Поделиться постом",
@ -97,16 +91,12 @@
"block_domain": "Заблокировать %s",
"unblock_domain": "Разблокировать %s",
"settings": "Настройки",
"delete": "Удалить",
"translate_post": {
"title": "Translate from %s",
"unknown_language": "Unknown"
}
"delete": "Удалить"
},
"tabs": {
"home": "Главная",
"search_and_explore": "Search and Explore",
"notifications": "Notifications",
"search": "Поиск",
"notification": "Уведомление",
"profile": "Профиль"
},
"keyboard": {
@ -142,8 +132,6 @@
"sensitive_content": "Sensitive Content",
"media_content_warning": "Нажмите в любом месте, чтобы показать",
"tap_to_reveal": "Нажмите, чтобы показать",
"load_embed": "Load Embed",
"link_via_user": "%s via %s",
"poll": {
"vote": "Проголосовать",
"closed": "Завершён"
@ -165,7 +153,6 @@
"show_image": "Показать изображение",
"show_gif": "Показать GIF",
"show_video_player": "Показать видеопроигрыватель",
"share_link_in_post": "Share Link in Post",
"tap_then_hold_to_show_menu": "Нажмите и удерживайте, чтобы показать меню"
},
"tag": {
@ -181,12 +168,6 @@
"private": "Only their followers can see this post.",
"private_from_me": "Only my followers can see this post.",
"direct": "Only mentioned user can see this post."
},
"translation": {
"translated_from": "Translated from %s using %s",
"unknown_language": "Unknown",
"unknown_provider": "Unknown",
"show_original": "Shown Original"
}
},
"friendship": {
@ -463,15 +444,11 @@
"follows_you": "Подписан(а) на вас"
},
"dashboard": {
"my_posts": "posts",
"my_following": "following",
"my_followers": "followers",
"other_posts": "posts",
"other_following": "following",
"other_followers": "followers"
"posts": "посты",
"following": "подписки",
"followers": "подписчики"
},
"fields": {
"joined": "Joined",
"add_row": "Добавить строку",
"placeholder": {
"label": "Ярлык",
@ -745,18 +722,6 @@
},
"bookmark": {
"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>
<string>1 unread notification</string>
<key>other</key>
<string>%ld unread notifications</string>
<string>%ld unread notification</string>
</dict>
</dict>
<key>a11y.plural.count.input_limit_exceeds</key>

View File

@ -51,11 +51,6 @@
"clean_cache": {
"title": "Clean Cache",
"message": "Successfully cleaned %s cache."
},
"translation_failed": {
"title": "Note",
"message": "Translation failed. Maybe the administrator has not enabled translations on this server or this server is running an older version of Mastodon where translations are not yet supported.",
"button": "OK"
}
},
"controls": {
@ -83,7 +78,6 @@
"sign_up": "Create account",
"see_more": "තව බලන්න",
"preview": "පෙරදසුන",
"copy": "Copy",
"share": "බෙදාගන්න",
"share_user": "%s බෙදාගන්න",
"share_post": "Share Post",
@ -97,16 +91,12 @@
"block_domain": "Block %s",
"unblock_domain": "Unblock %s",
"settings": "Settings",
"delete": "Delete",
"translate_post": {
"title": "Translate from %s",
"unknown_language": "Unknown"
}
"delete": "Delete"
},
"tabs": {
"home": "Home",
"search_and_explore": "Search and Explore",
"notifications": "Notifications",
"search": "Search",
"notification": "Notification",
"profile": "Profile"
},
"keyboard": {
@ -142,8 +132,6 @@
"sensitive_content": "Sensitive Content",
"media_content_warning": "Tap anywhere to reveal",
"tap_to_reveal": "Tap to reveal",
"load_embed": "Load Embed",
"link_via_user": "%s via %s",
"poll": {
"vote": "ඡන්දය",
"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": {
@ -181,12 +168,6 @@
"private": "Only their followers can see this post.",
"private_from_me": "Only my followers can see this post.",
"direct": "Only mentioned user can see this post."
},
"translation": {
"translated_from": "Translated from %s using %s",
"unknown_language": "Unknown",
"unknown_provider": "Unknown",
"show_original": "Shown Original"
}
},
"friendship": {
@ -463,15 +444,11 @@
"follows_you": "Follows You"
},
"dashboard": {
"my_posts": "posts",
"my_following": "following",
"my_followers": "followers",
"other_posts": "posts",
"other_following": "following",
"other_followers": "followers"
"posts": "posts",
"following": "following",
"followers": "followers"
},
"fields": {
"joined": "Joined",
"add_row": "Add Row",
"placeholder": {
"label": "නම්පත",
@ -584,7 +561,7 @@
"intro": "These are the posts gaining traction in your corner of Mastodon."
},
"favorite": {
"title": "Favorites"
"title": "Your Favorites"
},
"notification": {
"title": {
@ -745,18 +722,6 @@
},
"bookmark": {
"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": {
"title": "Počisti predpomnilnik",
"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": {
@ -83,7 +78,6 @@
"sign_up": "Ustvari račun",
"see_more": "Pokaži več",
"preview": "Predogled",
"copy": "Kopiraj",
"share": "Deli",
"share_user": "Deli %s",
"share_post": "Deli objavo",
@ -97,16 +91,12 @@
"block_domain": "Blokiraj %s",
"unblock_domain": "Odblokiraj %s",
"settings": "Nastavitve",
"delete": "Izbriši",
"translate_post": {
"title": "Prevedi iz: %s",
"unknown_language": "Neznano"
}
"delete": "Izbriši"
},
"tabs": {
"home": "Domov",
"search_and_explore": "Poišči in razišči",
"notifications": "Obvestila",
"search": "Iskanje",
"notification": "Obvestilo",
"profile": "Profil"
},
"keyboard": {
@ -142,8 +132,6 @@
"sensitive_content": "Občutljiva vsebina",
"media_content_warning": "Tapnite kamorkoli, da razkrijete",
"tap_to_reveal": "Tapnite za razkritje",
"load_embed": "Naloži vdelano",
"link_via_user": "%s prek %s",
"poll": {
"vote": "Glasuj",
"closed": "Zaprto"
@ -165,7 +153,6 @@
"show_image": "Pokaži sliko",
"show_gif": "Pokaži GIF",
"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"
},
"tag": {
@ -181,12 +168,6 @@
"private": "Samo sledilci osebe lahko vidijo to objavo.",
"private_from_me": "Samo moji sledilci lahko vidijo 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": {
@ -463,15 +444,11 @@
"follows_you": "Vam sledi"
},
"dashboard": {
"my_posts": "objav",
"my_following": "sledi",
"my_followers": "sledilcev",
"other_posts": "objav",
"other_following": "sledi",
"other_followers": "sledilcev"
"posts": "Objave",
"following": "sledi",
"followers": "sledilcev"
},
"fields": {
"joined": "Pridružen_a",
"add_row": "Dodaj vrstico",
"placeholder": {
"label": "Oznaka",
@ -745,18 +722,6 @@
},
"bookmark": {
"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>
<string>ld</string>
<key>one</key>
<string>1 år kvar</string>
<string>%ld år kvar</string>
<key>other</key>
<string>%ld år kvar</string>
</dict>
@ -296,7 +296,7 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 månad kvar</string>
<string>%ld månad kvar</string>
<key>other</key>
<string>%ld månader kvar</string>
</dict>
@ -312,7 +312,7 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 dag kvar</string>
<string>%ld dag kvar</string>
<key>other</key>
<string>%ld dagar kvar</string>
</dict>
@ -360,7 +360,7 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 sekund kvar</string>
<string>%ld sekund kvar</string>
<key>other</key>
<string>%ld sekunder kvar</string>
</dict>
@ -408,7 +408,7 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1d sedan</string>
<string>%ldd sedan</string>
<key>other</key>
<string>%ldd sedan</string>
</dict>
@ -424,7 +424,7 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1t sedan</string>
<string>%ldt sedan</string>
<key>other</key>
<string>%ldt sedan</string>
</dict>

View File

@ -51,11 +51,6 @@
"clean_cache": {
"title": "Rensa 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": {
@ -83,7 +78,6 @@
"sign_up": "Skapa konto",
"see_more": "Visa mer",
"preview": "Förhandsvisa",
"copy": "Kopiera",
"share": "Dela",
"share_user": "Dela %s",
"share_post": "Dela inlägg",
@ -97,16 +91,12 @@
"block_domain": "Blockera %s",
"unblock_domain": "Avblockera %s",
"settings": "Inställningar",
"delete": "Radera",
"translate_post": {
"title": "Översätt från %s",
"unknown_language": "Okänt"
}
"delete": "Radera"
},
"tabs": {
"home": "Hem",
"search_and_explore": "Sök och utforska",
"notifications": "Notiser",
"search": "Sök",
"notification": "Notis",
"profile": "Profil"
},
"keyboard": {
@ -142,8 +132,6 @@
"sensitive_content": "Känsligt innehåll",
"media_content_warning": "Tryck var som helst för att visa",
"tap_to_reveal": "Tryck för att visa",
"load_embed": "Ladda inbäddning",
"link_via_user": "%s via %s",
"poll": {
"vote": "Rösta",
"closed": "Stängd"
@ -165,7 +153,6 @@
"show_image": "Visa bild",
"show_gif": "Visa GIF",
"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"
},
"tag": {
@ -181,12 +168,6 @@
"private": "Endast deras följare kan se detta inlägg.",
"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."
},
"translation": {
"translated_from": "Översatt från %s med %s",
"unknown_language": "Okänt",
"unknown_provider": "Okänd",
"show_original": "Visa original"
}
},
"friendship": {
@ -463,15 +444,11 @@
"follows_you": "Följer dig"
},
"dashboard": {
"my_posts": "inlägg",
"my_following": "följer",
"my_followers": "följare",
"other_posts": "inlägg",
"other_following": "följer",
"other_followers": "följare"
"posts": "inlägg",
"following": "följer",
"followers": "följare"
},
"fields": {
"joined": "Gick med",
"add_row": "Lägg till rad",
"placeholder": {
"label": "Etikett",
@ -745,18 +722,6 @@
},
"bookmark": {
"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": {
"title": "ล้างแคช",
"message": "ล้างแคช %s สำเร็จ"
},
"translation_failed": {
"title": "หมายเหตุ",
"message": "การแปลล้มเหลว บางทีผู้ดูแลอาจไม่ได้เปิดใช้งานการแปลในเซิร์ฟเวอร์นี้หรือเซิร์ฟเวอร์นี้กำลังใช้ Mastodon รุ่นเก่ากว่าที่ยังไม่รองรับการแปล",
"button": "ตกลง"
}
},
"controls": {
@ -83,7 +78,6 @@
"sign_up": "สร้างบัญชี",
"see_more": "ดูเพิ่มเติม",
"preview": "แสดงตัวอย่าง",
"copy": "คัดลอก",
"share": "แบ่งปัน",
"share_user": "แบ่งปัน %s",
"share_post": "แบ่งปันโพสต์",
@ -97,16 +91,12 @@
"block_domain": "ปิดกั้น %s",
"unblock_domain": "เลิกปิดกั้น %s",
"settings": "การตั้งค่า",
"delete": "ลบ",
"translate_post": {
"title": "แปลจาก %s",
"unknown_language": "ไม่รู้จัก"
}
"delete": "ลบ"
},
"tabs": {
"home": "หน้าแรก",
"search_and_explore": "ค้นหาและสำรวจ",
"notifications": "การแจ้งเตือน",
"search": "ค้นหา",
"notification": "การแจ้งเตือน",
"profile": "โปรไฟล์"
},
"keyboard": {
@ -142,8 +132,6 @@
"sensitive_content": "เนื้อหาที่ละเอียดอ่อน",
"media_content_warning": "แตะที่ใดก็ตามเพื่อเปิดเผย",
"tap_to_reveal": "แตะเพื่อเปิดเผย",
"load_embed": "โหลดที่ฝังไว้",
"link_via_user": "%s ผ่าน %s",
"poll": {
"vote": "ลงคะแนน",
"closed": "ปิดแล้ว"
@ -165,7 +153,6 @@
"show_image": "แสดงภาพ",
"show_gif": "แสดง GIF",
"show_video_player": "แสดงตัวเล่นวิดีโอ",
"share_link_in_post": "แบ่งปันลิงก์ในโพสต์",
"tap_then_hold_to_show_menu": "แตะค้างไว้เพื่อแสดงเมนู"
},
"tag": {
@ -181,12 +168,6 @@
"private": "เฉพาะผู้ติดตามของเขาเท่านั้นที่สามารถเห็นโพสต์นี้",
"private_from_me": "เฉพาะผู้ติดตามของฉันเท่านั้นที่สามารถเห็นโพสต์นี้",
"direct": "เฉพาะผู้ใช้ที่กล่าวถึงเท่านั้นที่สามารถเห็นโพสต์นี้"
},
"translation": {
"translated_from": "แปลจาก %s โดยใช้ %s",
"unknown_language": "ไม่รู้จัก",
"unknown_provider": "ไม่รู้จัก",
"show_original": "แสดงดั้งเดิมอยู่"
}
},
"friendship": {
@ -463,15 +444,11 @@
"follows_you": "ติดตามคุณ"
},
"dashboard": {
"my_posts": "โพสต์",
"my_following": "กำลังติดตาม",
"my_followers": "ผู้ติดตาม",
"other_posts": "โพสต์",
"other_following": "กำลังติดตาม",
"other_followers": "ผู้ติดตาม"
"posts": "โพสต์",
"following": "กำลังติดตาม",
"followers": "ผู้ติดตาม"
},
"fields": {
"joined": "เข้าร่วมเมื่อ",
"add_row": "เพิ่มแถว",
"placeholder": {
"label": "ป้ายชื่อ",
@ -745,18 +722,6 @@
},
"bookmark": {
"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>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@character_count@ kaldı</string>
<string>%#@character_count@ left</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
@ -61,9 +61,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 karakter</string>
<string>1 character</string>
<key>other</key>
<string>%ld karakter</string>
<string>%ld characters</string>
</dict>
</dict>
<key>plural.count.followed_by_and_mutual</key>
@ -88,9 +88,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>%1$@ ve bir ortak kişi tarafından takip edildi</string>
<string>Followed by %1$@, and another mutual</string>
<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>
<key>plural.count.metric_formatted.post</key>
@ -120,9 +120,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 medya</string>
<string>1 media</string>
<key>other</key>
<string>%ld medya</string>
<string>%ld media</string>
</dict>
</dict>
<key>plural.count.post</key>

View File

@ -51,11 +51,6 @@
"clean_cache": {
"title": "Önbelleği Temizle",
"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": {
@ -79,11 +74,10 @@
"take_photo": "Fotoğraf Çek",
"save_photo": "Fotoğrafı Kaydet",
"copy_photo": "Fotoğrafı Kopyala",
"sign_in": "Giriş Yap",
"sign_up": "Hesap oluştur",
"sign_in": "Log in",
"sign_up": "Create account",
"see_more": "Daha Fazla Gör",
"preview": "Önizleme",
"copy": "Copy",
"share": "Paylaş",
"share_user": "%s ile paylaş",
"share_post": "Gönderiyi Paylaş",
@ -97,16 +91,12 @@
"block_domain": "%s kişisini engelle",
"unblock_domain": "%s kişisinin engelini kaldır",
"settings": "Ayarlar",
"delete": "Sil",
"translate_post": {
"title": "Translate from %s",
"unknown_language": "Unknown"
}
"delete": "Sil"
},
"tabs": {
"home": "Ana Sayfa",
"search_and_explore": "Ara ve Keşfet",
"notifications": "Bildirimler",
"search": "Arama",
"notification": "Bildirimler",
"profile": "Profil"
},
"keyboard": {
@ -142,17 +132,15 @@
"sensitive_content": "Hassas İçerik",
"media_content_warning": "Göstermek için herhangi bir yere basın",
"tap_to_reveal": "Göstermek için basın",
"load_embed": "Load Embed",
"link_via_user": "%s via %s",
"poll": {
"vote": "Oy ver",
"closed": "Kapandı"
},
"meta_entity": {
"url": "Bağlantı: %s",
"hashtag": "Etiket: %s",
"mention": "Profili Göster: %s",
"email": "E-posta adresi: %s"
"url": "Link: %s",
"hashtag": "Hashtag: %s",
"mention": "Show Profile: %s",
"email": "Email address: %s"
},
"actions": {
"reply": "Yanıtla",
@ -165,7 +153,6 @@
"show_image": "Görüntüyü göster",
"show_gif": "GIF'i 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"
},
"tag": {
@ -181,12 +168,6 @@
"private": "Sadece gönderi sahibinin takipçileri 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."
},
"translation": {
"translated_from": "Translated from %s using %s",
"unknown_language": "Unknown",
"unknown_provider": "Unknown",
"show_original": "Shown Original"
}
},
"friendship": {
@ -206,8 +187,8 @@
"unmute_user": "Sesini aç %s",
"muted": "Susturuldu",
"edit_info": "Bilgiyi Düzenle",
"show_reblogs": "Yeniden Paylaşımları Göster",
"hide_reblogs": "Yeniden Paylaşımları Gizle"
"show_reblogs": "Show Reblogs",
"hide_reblogs": "Hide Reblogs"
},
"timeline": {
"filtered": "Filtrelenmiş",
@ -238,15 +219,15 @@
"log_in": "Oturum Aç"
},
"login": {
"title": "Tekrar hoş geldin",
"subtitle": "Hesabını oluşturduğun sunucuya giriş yap.",
"title": "Welcome back",
"subtitle": "Log you in on the server you created your account on.",
"server_search_field": {
"placeholder": "Bir URL girin ya da sunucunuzu arayın"
"placeholder": "Enter URL or search for your server"
}
},
"server_picker": {
"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": {
"category": {
"all": "Tümü",
@ -273,7 +254,7 @@
"category": "KATEGORİ"
},
"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": {
"finding_servers": "Mevcut sunucular aranıyor...",
@ -407,12 +388,12 @@
"attachment_broken": "Bu %s bozuk ve Mastodon'a\nyüklenemiyor.",
"description_photo": "Görme engelliler için fotoğrafı tarif edin...",
"description_video": "Görme engelliler için videoyu tarif edin...",
"load_failed": "Yükleme Başarısız",
"upload_failed": "Yükleme Başarısız",
"can_not_recognize_this_media_attachment": "Ekteki medya uzantısı görüntülenemiyor",
"attachment_too_large": "Ek boyutu çok büyük",
"compressing_state": "Sıkıştırılıyor...",
"server_processing_state": "Sunucu İşliyor..."
"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": "Süre: %s",
@ -423,7 +404,7 @@
"three_days": "3 Gün",
"seven_days": "7 Gün",
"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"
},
"content_warning": {
@ -446,8 +427,8 @@
"enable_content_warning": "İçerik Uyarısını Etkinleştir",
"disable_content_warning": "İçerik Uyarısını Kapat",
"post_visibility_menu": "Gönderi Görünürlüğü Menüsü",
"post_options": "Gönderi Seçenekleri",
"posting_as": "%s olarak paylaşılıyor"
"post_options": "Post Options",
"posting_as": "Posting as %s"
},
"keyboard": {
"discard_post": "Gönderiyi İptal Et",
@ -463,23 +444,19 @@
"follows_you": "Seni takip ediyor"
},
"dashboard": {
"my_posts": "posts",
"my_following": "following",
"my_followers": "followers",
"other_posts": "posts",
"other_following": "following",
"other_followers": "followers"
"posts": "gönderiler",
"following": "takip ediliyor",
"followers": "takipçi"
},
"fields": {
"joined": "Joined",
"add_row": "Satır Ekle",
"placeholder": {
"label": "Etiket",
"content": "İçerik"
},
"verified": {
"short": "%s tarafında onaylı",
"long": "%s adresinin sahipliği kontrol edilmiş"
"short": "Verified on %s",
"long": "Ownership of this link was checked on %s"
}
},
"segmented_control": {
@ -507,12 +484,12 @@
"message": "%s engellemeyi kaldırmayı onaylayın"
},
"confirm_show_reblogs": {
"title": "Yeniden Paylaşımları Göster",
"message": "Yeniden paylaşımları göstermeyi onayla"
"title": "Show Reblogs",
"message": "Confirm to show reblogs"
},
"confirm_hide_reblogs": {
"title": "Yeniden Paylaşımları Gizle",
"message": "Yeniden paylaşımları gizlemeyi onayla"
"title": "Hide Reblogs",
"message": "Confirm to hide reblogs"
}
},
"accessibility": {
@ -531,8 +508,8 @@
"footer": "Diğer sunucudaki takip edilenler gösterilemiyor."
},
"familiarFollowers": {
"title": "Tanıyor olabileceğin takipçiler",
"followed_by_names": "%s tarafından takip ediliyor"
"title": "Followers you familiar",
"followed_by_names": "Followed by %s"
},
"favorited_by": {
"title": "Favorited By"
@ -604,10 +581,10 @@
"show_mentions": "Bahsetmeleri Göster"
},
"follow_request": {
"accept": "Kabul Et",
"accepted": "Kabul Edildi",
"reject": "Reddet",
"rejected": "Reddedildi"
"accept": "Accept",
"accepted": "Accepted",
"reject": "reject",
"rejected": "Rejected"
}
},
"thread": {
@ -692,9 +669,9 @@
"i_dont_like_it": "Beğenmedim",
"it_is_not_something_you_want_to_see": "Görmek isteyeceğim bir şey değil",
"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",
"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",
"the_issue_does_not_fit_into_other_categories": "Sorun bunlardan biri değil"
},
@ -715,15 +692,15 @@
},
"step_final": {
"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",
"unfollowed": "Takipten çıkıldı",
"unfollowed": "Unfollowed",
"unfollow_user": "Takipten çık %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.",
"block_user": "%s kişisini engelle",
"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.",
"while_we_review_this_you_can_take_action_against_user": "Biz bunu incelerken siz %s hesabına karşı önlem alabilirsiniz"
"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": {
@ -744,19 +721,7 @@
"accessibility_hint": "Bu yardımı kapatmak için çift tıklayın"
},
"bookmark": {
"title": "Yer İmleri"
},
"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"
}
"title": "Bookmarks"
}
}
}

View File

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

File diff suppressed because it is too large Load Diff

View File

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

View File

@ -51,11 +51,6 @@
"clean_cache": {
"title": "Xóa 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": {
@ -83,7 +78,6 @@
"sign_up": "Tạo tài khoản",
"see_more": "Xem thêm",
"preview": "Xem trước",
"copy": "Chép",
"share": "Chia sẻ",
"share_user": "Chia sẻ %s",
"share_post": "Chia sẻ tút",
@ -97,16 +91,12 @@
"block_domain": "Chặn %s",
"unblock_domain": "Bỏ chặn %s",
"settings": "Cài đặt",
"delete": "Xóa",
"translate_post": {
"title": "Dịch từ %s",
"unknown_language": "Chưa xác định"
}
"delete": "Xóa"
},
"tabs": {
"home": "Bảng tin",
"search_and_explore": "Tìm và Khám Phá",
"notifications": "Thông báo",
"search": "Tìm kiếm",
"notification": "Thông báo",
"profile": "Trang hồ sơ"
},
"keyboard": {
@ -142,8 +132,6 @@
"sensitive_content": "Nội dung nhạy cảm",
"media_content_warning": "Nhấn để hiển thị",
"tap_to_reveal": "Nhấn để xem",
"load_embed": "Nạp mã nhúng",
"link_via_user": "%s bởi %s",
"poll": {
"vote": "Bình chọn",
"closed": "Kết thúc"
@ -165,7 +153,6 @@
"show_image": "Hiển thị hình ảnh",
"show_gif": "Hiển thị GIF",
"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"
},
"tag": {
@ -181,12 +168,6 @@
"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.",
"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": {
@ -400,7 +381,7 @@
},
"content_input_placeholder": "Cho thế giới biết bạn đang nghĩ gì",
"compose_action": "Đăng",
"replying_to_user": "%s viết tiếp",
"replying_to_user": "trả lời %s",
"attachment": {
"photo": "ảnh",
"video": "video",
@ -463,15 +444,11 @@
"follows_you": "Đang theo dõi bạn"
},
"dashboard": {
"my_posts": "posts",
"my_following": "following",
"my_followers": "followers",
"other_posts": "posts",
"other_following": "following",
"other_followers": "followers"
"posts": "tút",
"following": "theo dõi",
"followers": "người theo dõi"
},
"fields": {
"joined": "Đã tham gia",
"add_row": "Thêm hàng",
"placeholder": {
"label": "Nhãn",
@ -745,18 +722,6 @@
},
"bookmark": {
"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