Compare commits

..

2 Commits

Author SHA1 Message Date
CMK 3aa5eaf9a7 chore: add how it work guide 2022-03-30 17:34:47 +08:00
CMK abbcd30772 chore: update README 2022-03-29 18:54:21 +08:00
374 changed files with 3565 additions and 23477 deletions

View File

@ -1,13 +1,9 @@
#!/bin/bash
# Install Ruby Bundler
gem install bundler:2.3.11
# Install Ruby Gems
bundle install
sudo gem install cocoapods-keys
# stub keys. DO NOT use in production
bundle exec pod keys set notification_endpoint "<endpoint>"
bundle exec pod keys set notification_endpoint_debug "<endpoint>"
pod keys set notification_endpoint "<endpoint>"
pod keys set notification_endpoint_debug "<endpoint>"
bundle exec pod install
pod install

View File

@ -10,7 +10,10 @@ import Foundation
import CryptoKit
import KeychainAccess
import Keys
import MastodonCommon
enum AppName {
public static let groupID = "group.org.joinmastodon.app"
}
public final class AppSecret {

View File

@ -15,8 +15,8 @@
<key>CFBundlePackageType</key>
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
<key>CFBundleShortVersionString</key>
<string>1.4.1</string>
<string>1.3.0</string>
<key>CFBundleVersion</key>
<string>126</string>
<string>109</string>
</dict>
</plist>

View File

@ -1,12 +1,14 @@
//
// UserDefaults.swift
//
// AppShared
//
// Created by MainasuK on 2022-4-29.
// Created by MainasuK Cirno on 2021-4-27.
//
import Foundation
import UIKit
import MastodonCommon
extension UserDefaults {
public static let shared = UserDefaults(suiteName: AppName.groupID)!
}

View File

@ -0,0 +1,14 @@
# How it works
TBD
## MastodonSDK
This is a Swift Pacakge 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
- MastodonExtension: system API extension
- MastodonLocalization: i18n resources
- MastodonSDK: Mastodon API client
- MastodonUI: App UI components

View File

@ -12,13 +12,12 @@ Intell the latest version of Xcode from the App Store or Apple Developer Downloa
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 [CocoaPods-Keys](https://github.com/orta/cocoapods-keys). Ruby Gems are managed through Bundler. The M1 Mac needs virtual ruby env to workaround compatibility issues.
The app use [CocoaPods]() and [CocoaPods-Keys](https://github.com/orta/cocoapods-keys). The M1 Mac needs virtual ruby env to workaround compatibility issues.
#### Intel Mac
```zsh
gem install bundler
bundle install
sudo gem install cocoapods cocoapods-keys
```
#### M1 Mac
@ -41,19 +40,18 @@ rbenv global 3.0.3
ruby --version
# > ruby 3.0.3p157 (2021-11-24 revision 3fb7d2cadc) [arm64-darwin21]
gem install bundler
bundle install
sudo gem install cocoapods cocoapods-keys
```
## Bootstrap
```zsh
# make a clean build
bundle install
bundle exec pod clean
sudo gem install cocoapods-clean
pod clean
# make install
bundle exec pod install --repo-update
pod install --repo-update
# open workspace
open Mastodon.xcworkspace
@ -61,7 +59,7 @@ open Mastodon.xcworkspace
The CocoaPods-Key plugin will request the push notification endpoint. You can fufill the empty string and set it later. To setup the push notification. Please check section `Push Notification` below.
The app requires the `App Group` capability. To make sure it works for your developer membership. Please check [AppSecret.swift](../AppShared/AppSecret.swift) file and set another unique `groupID` and update `App Group` settings.
The app requires the `App Group` capability. To make sure it works for your developer membership. Please check [AppSecret.swift](../AppShared/AppSecret.swift) and [AppName.swift](../MastodonSDK/Sources/MastodonCommon/AppName.swift) file and set another unique `groupID` and update `App Group` settings.
#### Push Notification (Optional)
The app is compatible with [toot-relay](https://github.com/DagAgren/toot-relay) APNs. You can set your push notification endpoint via Cocoapod-Keys. There are two endpoints:
@ -82,4 +80,4 @@ Please check and set the `notification.Topic` to the app BundleID in [toot-relay
## What's next
We welcome contributions! And if you have an interest to contribute codes. Here is a document that describes the app architecture and what's tech stack it uses.
We welcome contributions! And if you have an interest to contribute codes. [Here](./How-it-works.md) is a document that describes the app architecture and what's tech stack it uses.

View File

@ -1,6 +0,0 @@
source "https://rubygems.org"
gem "cocoapods"
gem "cocoapods-clean"
gem "cocoapods-keys"

View File

@ -1,109 +0,0 @@
GEM
remote: https://rubygems.org/
specs:
CFPropertyList (3.0.5)
rexml
RubyInline (3.12.5)
ZenTest (~> 4.3)
ZenTest (4.12.1)
activesupport (6.1.5.1)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 1.6, < 2)
minitest (>= 5.1)
tzinfo (~> 2.0)
zeitwerk (~> 2.3)
addressable (2.8.0)
public_suffix (>= 2.0.2, < 5.0)
algoliasearch (1.27.5)
httpclient (~> 2.8, >= 2.8.3)
json (>= 1.5.1)
atomos (0.1.3)
claide (1.1.0)
cocoapods (1.11.3)
addressable (~> 2.8)
claide (>= 1.0.2, < 2.0)
cocoapods-core (= 1.11.3)
cocoapods-deintegrate (>= 1.0.3, < 2.0)
cocoapods-downloader (>= 1.4.0, < 2.0)
cocoapods-plugins (>= 1.0.0, < 2.0)
cocoapods-search (>= 1.0.0, < 2.0)
cocoapods-trunk (>= 1.4.0, < 2.0)
cocoapods-try (>= 1.1.0, < 2.0)
colored2 (~> 3.1)
escape (~> 0.0.4)
fourflusher (>= 2.3.0, < 3.0)
gh_inspector (~> 1.0)
molinillo (~> 0.8.0)
nap (~> 1.0)
ruby-macho (>= 1.0, < 3.0)
xcodeproj (>= 1.21.0, < 2.0)
cocoapods-clean (0.0.1)
cocoapods-core (1.11.3)
activesupport (>= 5.0, < 7)
addressable (~> 2.8)
algoliasearch (~> 1.0)
concurrent-ruby (~> 1.1)
fuzzy_match (~> 2.0.4)
nap (~> 1.0)
netrc (~> 0.11)
public_suffix (~> 4.0)
typhoeus (~> 1.0)
cocoapods-deintegrate (1.0.5)
cocoapods-downloader (1.6.3)
cocoapods-keys (2.2.1)
dotenv
osx_keychain
cocoapods-plugins (1.0.0)
nap
cocoapods-search (1.0.1)
cocoapods-trunk (1.6.0)
nap (>= 0.8, < 2.0)
netrc (~> 0.11)
cocoapods-try (1.2.0)
colored2 (3.1.2)
concurrent-ruby (1.1.10)
dotenv (2.7.6)
escape (0.0.4)
ethon (0.15.0)
ffi (>= 1.15.0)
ffi (1.15.5)
fourflusher (2.3.1)
fuzzy_match (2.0.4)
gh_inspector (1.1.3)
httpclient (2.8.3)
i18n (1.10.0)
concurrent-ruby (~> 1.0)
json (2.6.1)
minitest (5.15.0)
molinillo (0.8.0)
nanaimo (0.3.0)
nap (1.1.0)
netrc (0.11.0)
osx_keychain (1.0.2)
RubyInline (~> 3)
public_suffix (4.0.7)
rexml (3.2.5)
ruby-macho (2.5.1)
typhoeus (1.4.0)
ethon (>= 0.9.0)
tzinfo (2.0.4)
concurrent-ruby (~> 1.0)
xcodeproj (1.21.0)
CFPropertyList (>= 2.3.3, < 4.0)
atomos (~> 0.1.3)
claide (>= 1.0.2, < 2.0)
colored2 (~> 3.1)
nanaimo (~> 0.3.0)
rexml (~> 3.2.4)
zeitwerk (2.5.4)
PLATFORMS
ruby
DEPENDENCIES
cocoapods
cocoapods-clean
cocoapods-keys
BUNDLED WITH
2.3.11

View File

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

View File

@ -1,51 +0,0 @@
"16wxgf" = "پۆستێک بکە";
"751xkl" = "نووسین";
"CsR7G2" = "پۆستێک بکە";
"HZSGTr" = "چی پۆست بکرێت؟";
"HdGikU" = "پۆستکردنەکە سەرکەوتوو نەبوو";
"KDNTJ4" = "هۆکاری سەرنەکەوتن";
"RHxKOw" = "پۆست بە نووسینەوە بکە";
"RxSqsb" = "پۆست";
"WCIR3D" = "${content} لە ماستۆدۆن پۆست بکە";
"ZKJSNu" = "پۆست";
"ZS1XaK" = "${content}";
"ZbSjzC" = "دەرکەوتن";
"Zo4jgJ" = "دەرکەوتنی پۆست";
"apSxMG-dYQ5NN" = "${count} بژاردە بۆ 'گشتی' هەن.";
"apSxMG-ehFLjY" = "${count} بژاردە بۆ 'تەنیا شوێنکەوتووەکان' هەن.";
"ayoYEb-dYQ5NN" = "${content}، گشتی";
"ayoYEb-ehFLjY" = "${content}، تەنیا شوێنکەوتووەکان";
"dUyuGg" = "پۆستێک بکە";
"dYQ5NN" = "گشتی";
"ehFLjY" = "تەنیا شوێنکەوتووەکان";
"gfePDu" = "پۆستکردنەکە سەرکەوتوو نەبوو. ${failureReason}";
"k7dbKQ" = "پۆستەکە کرا.";
"oGiqmY-dYQ5NN" = "دڵنیایت لە هەڵبژاردنی 'گشتی'؟";
"oGiqmY-ehFLjY" = "دڵنیایت لە هەڵبژاردنی 'تەنیا شوێنکەوتووەکان'؟";
"rM6dvp" = "بەستەر";
"ryJLwG" = "پۆستەکە کرا. ";

View File

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>There are ${count} options matching ${content}. - 2</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_option@ بژاردە بۆ '${content}' هەن.</string>
<key>count_option</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>%ld</string>
<key>one</key>
<string>%ld بژاردە</string>
<key>other</key>
<string>%ld بژاردە</string>
</dict>
</dict>
<key>There are ${count} options matching ${visibility}.</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_option@ بژاردە بۆ '${visibility}' هەن.</string>
<key>count_option</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>%ld</string>
<key>one</key>
<string>%ld بژاردە</string>
<key>other</key>
<string>%ld بژاردە</string>
</dict>
</dict>
</dict>
</plist>

View File

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

View File

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

View File

@ -1,51 +0,0 @@
"16wxgf" = "Post on Mastodon";
"751xkl" = "Text Content";
"CsR7G2" = "Post on Mastodon";
"HZSGTr" = "What content to post?";
"HdGikU" = "Posting failed";
"KDNTJ4" = "Failure Reason";
"RHxKOw" = "Send Post with text content";
"RxSqsb" = "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,38 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>There are ${count} options matching ${content}. - 2</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>There are %#@count_option@ matching ${content}.</string>
<key>count_option</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>%ld</string>
<key>one</key>
<string>1 option</string>
<key>other</key>
<string>%ld options</string>
</dict>
</dict>
<key>There are ${count} options matching ${visibility}.</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>There are %#@count_option@ matching ${visibility}.</string>
<key>count_option</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>%ld</string>
<key>one</key>
<string>1 option</string>
<key>other</key>
<string>%ld options</string>
</dict>
</dict>
</dict>
</plist>

View File

@ -1,51 +1,51 @@
"16wxgf" = "Pubblica su Mastodon";
"16wxgf" = "Post on Mastodon";
"751xkl" = "Contenuto testuale";
"751xkl" = "Text Content";
"CsR7G2" = "Pubblica su Mastodon";
"CsR7G2" = "Post on Mastodon";
"HZSGTr" = "Quale contenuto postare?";
"HZSGTr" = "What content to post?";
"HdGikU" = "Pubblicazione non riuscita";
"HdGikU" = "Posting failed";
"KDNTJ4" = "Motivo del fallimento";
"KDNTJ4" = "Failure Reason";
"RHxKOw" = "Invia post con contenuto testuale";
"RHxKOw" = "Send Post with text content";
"RxSqsb" = "Pubblica";
"RxSqsb" = "Post";
"WCIR3D" = "Pubblica ${content} su Mastodon";
"WCIR3D" = "Post ${content} on Mastodon";
"ZKJSNu" = "Pubblica";
"ZKJSNu" = "Post";
"ZS1XaK" = "${content}";
"ZbSjzC" = "Visibilità";
"ZbSjzC" = "Visibility";
"Zo4jgJ" = "Visibilità del post";
"Zo4jgJ" = "Post Visibility";
"apSxMG-dYQ5NN" = "Ci sono ${count} opzioni corrispondenti a 'Pubblico'.";
"apSxMG-dYQ5NN" = "There are ${count} options matching Public.";
"apSxMG-ehFLjY" = "Ci sono ${count} opzioni corrispondenti a Solo Seguaci.";
"apSxMG-ehFLjY" = "There are ${count} options matching Followers Only.";
"ayoYEb-dYQ5NN" = "${content}, Pubblico";
"ayoYEb-dYQ5NN" = "${content}, Public";
"ayoYEb-ehFLjY" = "${content}, Solo seguaci";
"ayoYEb-ehFLjY" = "${content}, Followers Only";
"dUyuGg" = "Pubblica su Mastodon";
"dUyuGg" = "Post on Mastodon";
"dYQ5NN" = "Pubblico";
"dYQ5NN" = "Public";
"ehFLjY" = "Solo i seguaci";
"ehFLjY" = "Followers Only";
"gfePDu" = "Pubblicazione fallita. ${failureReason}";
"gfePDu" = "Posting failed. ${failureReason}";
"k7dbKQ" = "Post inviato con successo.";
"k7dbKQ" = "Post was sent successfully.";
"oGiqmY-dYQ5NN" = "Solo per confermare, volevi Pubblico?";
"oGiqmY-dYQ5NN" = "Just to confirm, you wanted Public?";
"oGiqmY-ehFLjY" = "Solo per confermare, volevi 'Solo seguaci'?";
"oGiqmY-ehFLjY" = "Just to confirm, you wanted Followers Only?";
"rM6dvp" = "URL";
"ryJLwG" = "Post inviato con successo. ";
"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>Ci sono %#@count_option@ corrispondenti a «${content}».</string>
<string>There are %#@count_option@ matching ${content}.</string>
<key>count_option</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
@ -13,15 +13,15 @@
<key>NSStringFormatValueTypeKey</key>
<string>%ld</string>
<key>one</key>
<string>1 opzione</string>
<string>1 option</string>
<key>other</key>
<string>%ld opzioni</string>
<string>%ld options</string>
</dict>
</dict>
<key>There are ${count} options matching ${visibility}.</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>Ci sono %#@count_option@ corrispondenti a «${visibility}».</string>
<string>There are %#@count_option@ matching ${visibility}.</string>
<key>count_option</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
@ -29,9 +29,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>%ld</string>
<key>one</key>
<string>1 opzione</string>
<string>1 option</string>
<key>other</key>
<string>%ld opzioni</string>
<string>%ld options</string>
</dict>
</dict>
</dict>

View File

@ -1,51 +1,51 @@
"16wxgf" = "Posta på Mastodon";
"16wxgf" = "Post on Mastodon";
"751xkl" = "Textinnehåll";
"751xkl" = "Text Content";
"CsR7G2" = "Posta på Mastodon";
"CsR7G2" = "Post on Mastodon";
"HZSGTr" = "Vilket innehåll ska jag posta?";
"HZSGTr" = "What content to post?";
"HdGikU" = "Inlägget misslyckades";
"HdGikU" = "Posting failed";
"KDNTJ4" = "Felorsak";
"KDNTJ4" = "Failure Reason";
"RHxKOw" = "Skicka inlägg med textinnehåll";
"RHxKOw" = "Send Post with text content";
"RxSqsb" = "Posta";
"RxSqsb" = "Post";
"WCIR3D" = "Posta ${content} på Mastodon";
"ZKJSNu" = "Posta";
"ZKJSNu" = "Post";
"ZS1XaK" = "${content}";
"ZbSjzC" = "Synlighet";
"ZbSjzC" = "Visibility";
"Zo4jgJ" = "Inläggssynlighet";
"Zo4jgJ" = "Post Visibility";
"apSxMG-dYQ5NN" = "Det finns ${count} alternativ som matchar Publikt.";
"apSxMG-dYQ5NN" = "There are ${count} options matching Public.";
"apSxMG-ehFLjY" = "Det finns ${count} alternativ som matchar Endast följare.";
"apSxMG-ehFLjY" = "There are ${count} options matching Followers Only.";
"ayoYEb-dYQ5NN" = "${content}, Publikt";
"ayoYEb-dYQ5NN" = "${content}, Public";
"ayoYEb-ehFLjY" = "${content}, Endast följare";
"ayoYEb-ehFLjY" = "${content}, Followers Only";
"dUyuGg" = "Posta på Mastodon";
"dUyuGg" = "Post on Mastodon";
"dYQ5NN" = "Publikt";
"ehFLjY" = "Endast följare";
"gfePDu" = "Inlägget misslyckades. ${failureReason}";
"gfePDu" = "Posting failed. ${failureReason}";
"k7dbKQ" = "Inlägget har postats.";
"k7dbKQ" = "Post was sent successfully.";
"oGiqmY-dYQ5NN" = "Bara för att bekräfta, ville du ha 'Publikt'?";
"oGiqmY-dYQ5NN" = "Just to confirm, you wanted Public?";
"oGiqmY-ehFLjY" = "Bara för att bekräfta, ville du ha 'Endast följare'?";
"oGiqmY-ehFLjY" = "Just to confirm, you wanted Followers Only?";
"rM6dvp" = "URL";
"ryJLwG" = "Inlägget har postats. ";
"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>Det finns %#@count_option@ alternativ som matchar ${content}.</string>
<string>There are %#@count_option@ matching ${content}.</string>
<key>count_option</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
@ -13,15 +13,15 @@
<key>NSStringFormatValueTypeKey</key>
<string>%ld</string>
<key>one</key>
<string>%ld alternativ</string>
<string>1 option</string>
<key>other</key>
<string>%ld alternativ</string>
<string>%ld options</string>
</dict>
</dict>
<key>There are ${count} options matching ${visibility}.</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>Det finns %#@count_option@ alternativ som matchar ${visibility}.</string>
<string>There are %#@count_option@ matching ${visibility}.</string>
<key>count_option</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
@ -29,9 +29,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>%ld</string>
<key>one</key>
<string>%ld alternativ</string>
<string>1 option</string>
<key>other</key>
<string>%ld alternativ</string>
<string>%ld options</string>
</dict>
</dict>
</dict>

View File

@ -1,51 +0,0 @@
"16wxgf" = "Mastodon'da paylaş";
"751xkl" = "Metin içeriği";
"CsR7G2" = "Mastodon'da paylaş";
"HZSGTr" = "Ne içeriği paylaşılacak?";
"HdGikU" = "Gönderi paylaşılamadı";
"KDNTJ4" = "Hata Sebebi";
"RHxKOw" = "Metin içeriği ile gönderiyi paylaş";
"RxSqsb" = "Gönderi";
"WCIR3D" = "${content} içeriğini Mastodon'da paylaş";
"ZKJSNu" = "Gönderi";
"ZS1XaK" = "${content}";
"ZbSjzC" = "Gizlilik";
"Zo4jgJ" = "Gönderi Gizliliği";
"apSxMG-dYQ5NN" = "\"Herkese açık\" ile eşleşen ${count} seçenek var.";
"apSxMG-ehFLjY" = "\"Sadece takipçiler\" ile eşleşen ${count} seçenek var.";
"ayoYEb-dYQ5NN" = "${content}, Herkese açık";
"ayoYEb-ehFLjY" = "${content}, Sadece takipçiler";
"dUyuGg" = "Mastodon'da paylaş";
"dYQ5NN" = "Herkese açık";
"ehFLjY" = "Sadece takipçiler";
"gfePDu" = "Gönderi paylaşılamadı. ${failureReason}";
"k7dbKQ" = "Gönderi başarıyla paylaşıldı.";
"oGiqmY-dYQ5NN" = "\"Herkese açık\" paylaşmak istediğinize emin misiniz?";
"oGiqmY-ehFLjY" = "\"Sadece takipçiler\" için paylaşmak istediğinize emin misiniz?";
"rM6dvp" = "Bağlantı";
"ryJLwG" = "Gönderi başarıyla paylaşıldı. ";

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>${content} ile eşleşen %#@count_option@ var.</string>
<key>count_option</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>%ld</string>
<key>one</key>
<string>1 seçenek</string>
<key>other</key>
<string>%ld seçenek</string>
</dict>
</dict>
<key>There are ${count} options matching ${visibility}.</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>${visibility} ile eşleşen %#@count_option@ var.</string>
<key>count_option</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>%ld</string>
<key>one</key>
<string>1 seçenek</string>
<key>other</key>
<string>%ld seçenek</string>
</dict>
</dict>
</dict>
</plist>

View File

@ -1,51 +0,0 @@
"16wxgf" = "Đăng lên Mastodon";
"751xkl" = "Nội dung văn bản";
"CsR7G2" = "Đăng lên Mastodon";
"HZSGTr" = "Đăng loại nội dung nào?";
"HdGikU" = "Không thể đăng";
"KDNTJ4" = "Lý do không thể đăng";
"RHxKOw" = "Gửi tút với nội dung là chữ";
"RxSqsb" = "Tút";
"WCIR3D" = "Đăng ${content} lên Mastodon";
"ZKJSNu" = "Tút";
"ZS1XaK" = "${content}";
"ZbSjzC" = "Hiển thị";
"Zo4jgJ" = "Thay đổi quyền riêng tư";
"apSxMG-dYQ5NN" = "Có ${count} lựa chọn khớp với Công khai.";
"apSxMG-ehFLjY" = "Có ${count} lựa chọn khớp với Riêng tư.";
"ayoYEb-dYQ5NN" = "${content}, Công khai";
"ayoYEb-ehFLjY" = "${content}, Riêng tư";
"dUyuGg" = "Đăng lên Mastodon";
"dYQ5NN" = "Công khai";
"ehFLjY" = "Riêng tư";
"gfePDu" = "Không thể đăng. ${failureReason}";
"k7dbKQ" = "Đã đăng tút thành công.";
"oGiqmY-dYQ5NN" = "Xin xác nhận, bạn muốn Công khai?";
"oGiqmY-ehFLjY" = "Xin xác nhận, bạn muốn Riêng tư?";
"rM6dvp" = "URL";
"ryJLwG" = "Đã đăng tút thành công. ";

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>Có %#@count_option@ khớp với ${content}.</string>
<key>count_option</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>%ld</string>
<key>other</key>
<string>%ld lựa chọn</string>
</dict>
</dict>
<key>There are ${count} options matching ${visibility}.</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>Có %#@count_option@ khớp với ${visibility}.</string>
<key>count_option</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>%ld</string>
<key>other</key>
<string>%ld lựa chọn</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" = "網址";
"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,13 +13,13 @@
<key>NSStringFormatValueTypeKey</key>
<string>%ld</string>
<key>other</key>
<string>%ld 個選項</string>
<string>%ld options</string>
</dict>
</dict>
<key>There are ${count} options matching ${visibility}.</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>有 %#@count_option@ 符合「 ${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 個選項</string>
<string>%ld options</string>
</dict>
</dict>
</dict>

View File

@ -51,26 +51,18 @@ private func map(language: String) -> String? {
case "eu_ES": return "eu-ES" // Basque
case "ca_ES": return "ca" // Catalan
case "zh_CN": return "zh-Hans" // Chinese Simplified
case "zh_TW": return "zh-Hant" // Chinese Traditional
case "nl_NL": return "nl" // Dutch
case "en_US": return "en"
case "fr_FR": return "fr" // French
case "gl_ES": return "gl" // Galician
case "de_DE": return "de" // German
case "it_IT": return "it" // Italian
case "ja_JP": return "ja" // Japanese
case "kab_KAB": return "kab" // Kabyle
case "kmr_TR": return "ku" // Kurmanji (Kurdish)
case "ru_RU": return "ru" // Russian
case "gd_GB": return "gd-GB" // Scottish Gaelic
case "ckb_IR": return "ckb" // Sorani (Kurdish)
case "es_ES": return "es" // Spanish
case "es_AR": return "es-419" // Spanish, Argentina
case "sv-SE": return "sv" // Swedish
case "sv_FI": return "sv_FI" // Swedish, Finland
case "th_TH": return "th" // Thai
case "tr_TR": return "tr" // Turkish
case "vi_VN": return "vi" // Vietnamese
default: return nil
}
}

View File

@ -170,30 +170,6 @@
<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>zero</key>
<string>لا رَدّ</string>
<key>one</key>
<string>رَدٌّ واحِد</string>
<key>two</key>
<string>رَدَّانِ اِثنان</string>
<key>few</key>
<string>%ld رُدُود</string>
<key>many</key>
<string>%ld رَدًّا</string>
<key>other</key>
<string>%ld رَدّ</string>
</dict>
</dict>
<key>plural.count.vote</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
@ -471,15 +447,15 @@
<key>zero</key>
<string>مُنذُ لَحظة</string>
<key>one</key>
<string>مُنذُ %ldع</string>
<string>مُنذُ سنة</string>
<key>two</key>
<string>مُنذُ %ldع</string>
<string>مُنذُ سنتين</string>
<key>few</key>
<string>مُنذُ %ldع</string>
<string>مُنذُ %ld سنين</string>
<key>many</key>
<string>مُنذُ %ldع</string>
<string>مُنذُ %ld سنةً</string>
<key>other</key>
<string>مُنذُ %ldع</string>
<string>مُنذُ %ld سنة</string>
</dict>
</dict>
<key>date.month.ago.abbr</key>
@ -495,15 +471,15 @@
<key>zero</key>
<string>مُنذُ لَحظة</string>
<key>one</key>
<string>مُنذُ %ldش</string>
<string>مُنذُ شهر</string>
<key>two</key>
<string>مُنذُ %ldش</string>
<string>مُنذُ شهرين</string>
<key>few</key>
<string>مُنذُ %ldش</string>
<string>مُنذُ %ld أشهُر</string>
<key>many</key>
<string>مُنذُ %ldش</string>
<string>مُنذُ %ld شهرًا</string>
<key>other</key>
<string>مُنذُ %ldش</string>
<string>مُنذُ %ld شهر</string>
</dict>
</dict>
<key>date.day.ago.abbr</key>
@ -519,15 +495,15 @@
<key>zero</key>
<string>مُنذُ لَحظة</string>
<key>one</key>
<string>مُنذُ %ldي</string>
<string>مُنذُ يوم</string>
<key>two</key>
<string>مُنذُ %ldي</string>
<string>مُنذُ يومين</string>
<key>few</key>
<string>مُنذُ %ldي</string>
<string>مُنذُ %ld أيام</string>
<key>many</key>
<string>مُنذُ %ldي</string>
<string>مُنذُ %ld يومًا</string>
<key>other</key>
<string>مُنذُ %ldي</string>
<string>مُنذُ %ld يوم</string>
</dict>
</dict>
<key>date.hour.ago.abbr</key>
@ -543,15 +519,15 @@
<key>zero</key>
<string>مُنذُ لَحظة</string>
<key>one</key>
<string>مُنذُ %ldس</string>
<string>مُنذُ ساعة</string>
<key>two</key>
<string>مُنذُ %ldس</string>
<string>مُنذُ ساعتين</string>
<key>few</key>
<string>مُنذُ %ldس</string>
<string>مُنذُ %ld ساعات</string>
<key>many</key>
<string>مُنذُ %ldس</string>
<string>مُنذُ %ld ساعةًَ</string>
<key>other</key>
<string>مُنذُ %ldس</string>
<string>مُنذُ %ld ساعة</string>
</dict>
</dict>
<key>date.minute.ago.abbr</key>
@ -567,15 +543,15 @@
<key>zero</key>
<string>مُنذُ لَحظة</string>
<key>one</key>
<string>مُنذُ %ldد</string>
<string>مُنذُ دقيقة</string>
<key>two</key>
<string>مُنذُ %ldد</string>
<string>مُنذُ دقيقتان</string>
<key>few</key>
<string>مُنذُ %ldد</string>
<string>مُنذُ %ld دقائق</string>
<key>many</key>
<string>مُنذُ %ldد</string>
<string>مُنذُ %ld دقيقةً</string>
<key>other</key>
<string>مُنذُ %ldد</string>
<string>مُنذُ %ld دقيقة</string>
</dict>
</dict>
<key>date.second.ago.abbr</key>
@ -591,15 +567,15 @@
<key>zero</key>
<string>مُنذُ لَحظة</string>
<key>one</key>
<string>مُنذُ %ldث</string>
<string>مُنذُ ثانية</string>
<key>two</key>
<string>مُنذُ %ldث</string>
<string>مُنذُ ثانيتين</string>
<key>few</key>
<string>مُنذُ %ldث</string>
<string>مُنذُ %ld ثوان</string>
<key>many</key>
<string>مُنذُ %ldث</string>
<string>مُنذُ %ld ثانية</string>
<key>other</key>
<string>مُنذُ %ldث</string>
<string>مُنذُ %ld ثانية</string>
</dict>
</dict>
</dict>

View File

@ -32,9 +32,9 @@
"message": "يتعذَّر تعديل الملف التعريفي. يُرجى المُحاولة مرة أُخرى."
},
"sign_out": {
"title": َسجيلُ الخُروج",
"title": سجيل الخروج",
"message": "هل أنت متأكد من رغبتك في تسجيل الخُروج؟",
"confirm": َسجيلُ الخُروج"
"confirm": سجيل الخروج"
},
"block_domain": {
"title": "هل أنتَ مُتأكِّدٌ حقًا مِن رغبتك في حظر %s بالكامل؟ في معظم الحالات، يكون مِنَ الكافي والمُفَضَّل استهداف عدد محدود للحظر أو الكتم. لن ترى محتوى من هذا النطاق وسوف يُزال جميع متابعيك المتواجدين فيه.",
@ -49,8 +49,8 @@
"message": "هَل أنتَ مُتأكِدٌ مِن رَغبتِكَ فِي حَذفِ هَذَا المَنشُور؟"
},
"clean_cache": {
"title": "مَحوُ ذاكِرَةِ التَّخزينِ المُؤقَّت",
"message": "مُحِيَ ما مَساحَتُهُ %s مِن ذاكِرَةِ التَّخزينِ المُؤقَّت بِنجاح."
"title": "مَحو ذاكرة التخزين المؤقت",
"message": "تمَّ مَحو %s مِن ذاكرة التخزين المؤقت بنجاح."
}
},
"controls": {
@ -61,7 +61,7 @@
"open": "فتح",
"add": "إضافة",
"remove": "حذف",
"edit": َحرير",
"edit": حرير",
"save": "حفظ",
"ok": "حسنًا",
"done": "تمّ",
@ -79,7 +79,7 @@
"see_more": "عرض المزيد",
"preview": "مُعاينة",
"share": "المُشارك",
"share_user": "مُشارَكَةُ %s",
"share_user": "مُشاركة %s",
"share_post": "مشارك المنشور",
"open_in_safari": "الفَتحُ في Safari",
"open_in_browser": "الفَتحُ في المُتَصَفِّح",
@ -87,7 +87,7 @@
"manually_search": "البحث يدويًا بدلًا من ذلك",
"skip": "تخطي",
"reply": "الرَّد",
"report_user": "الإبلاغُ عَن %s",
"report_user": "الإبلاغ عن %s",
"block_domain": "حظر %s",
"unblock_domain": "رفع الحظر عن %s",
"settings": "الإعدادات",
@ -97,13 +97,13 @@
"home": "الرَّئِيسَة",
"search": "البَحث",
"notification": "الإشعارات",
"profile": "المِلَفُّ التَّعريفِيّ"
"profile": "الملف التعريفي"
},
"keyboard": {
"common": {
"switch_to_tab": "التبديل إلى %s",
"compose_new_post": "تأليف منشور جديد",
"show_favorites": "أظْهِر المُفضَّلة",
"show_favorites": "إظهار المُفضَّلة",
"open_settings": "فَتحُ الإعدادات"
},
"timeline": {
@ -124,14 +124,12 @@
}
},
"status": {
"user_reblogged": "أعادَ %s تَدوينَها",
"user_reblogged": "أعادَ %s تدوينها",
"user_replied_to": "رَدًا على %s",
"show_post": "أظْهِر مَنشور",
"show_user_profile": "أظْهِر المِلَفَّ التَّعريفِيَّ لِلمُستَخدِم",
"show_post": "إظهار منشور",
"show_user_profile": "إظهار الملف التعريفي للمُستخدِم",
"content_warning": "تحذير المُحتوى",
"sensitive_content": "مُحتَوى حَسَّاس",
"media_content_warning": "اُنقُر لِلكَشف",
"tap_to_reveal": "اُنقُر لِلكَشف",
"media_content_warning": "انقر للكشف",
"poll": {
"vote": "صَوِّت",
"closed": "انتهى"
@ -143,18 +141,14 @@
"favorite": "التفضيل",
"unfavorite": "إزالة التفضيل",
"menu": "القائمة",
"hide": "إخفاء",
"show_image": "أظْهِرِ الصُّورَة",
"show_gif": "أظْهِر GIF",
"show_video_player": "أظْهِر مُشَغِّلَ المَقاطِعِ المَرئِيَّة",
"tap_then_hold_to_show_menu": "اُنقُر مُطَوَّلًا لِإظْهَارِ القائِمَة"
"hide": "إخفاء"
},
"tag": {
"url": "عنوان URL",
"mention": "إشارة",
"link": "رابط",
"hashtag": "وسم",
"email": َريدٌ إلِكتُرُونِيّ",
"email": ريد إلكتروني",
"emoji": "رمز تعبيري"
},
"visibility": {
@ -170,17 +164,17 @@
"request": "إرسال طَلَب",
"pending": "قيد المُراجعة",
"block": "حظر",
"block_user": َظرُ %s",
"block_user": ظر %s",
"block_domain": "حظر %s",
"unblock": "رفع الحَظر",
"unblock_user": "رفع الحَظر عن %s",
"blocked": "محظور",
"mute": "كَتم",
"mute_user": "كَتمُ %s",
"mute_user": "كَتم %s",
"unmute": "رفع الكتم",
"unmute_user": "رفع الكتم عن %s",
"muted": "مكتوم",
"edit_info": َحريرُ المَعلُومات"
"edit_info": عديل المعلومات"
},
"timeline": {
"filtered": "مُصفَّى",
@ -190,7 +184,7 @@
"loader": {
"load_missing_posts": "تحميل المَنشورات المَفقودَة",
"loading_missing_posts": "يَجري تحميل المَنشورات المَفقودَة...",
"show_more_replies": "أظْهِر مَزيدًا مِنَ الرُّدود"
"show_more_replies": "إظهار مَزيد مِنَ الرُّدود"
},
"header": {
"no_status_found": "لَم يُعْثَر على مَنشورات",
@ -255,14 +249,14 @@
"delete": "حذف"
},
"username": {
"placeholder": "اِسمُ مُستَخدِم",
"placeholder": "اِسم مُستَخدِم",
"duplicate_prompt": "اِسم المُستَخدِم هذا مأخوذٌ بالفعل."
},
"display_name": {
"placeholder": "اِسمُ عَرض"
"placeholder": "اِسم العَرض"
},
"email": {
"placeholder": َريدٌ إلِكتُرُونِيّ"
"placeholder": ريد إلكتروني"
},
"password": {
"placeholder": "رمز سري",
@ -272,7 +266,7 @@
"checked": "مُتَحَققٌ مِنه",
"unchecked": "غيرُ مُتَحَققٍ مِنه"
},
"hint": َجِبُ أن يَحتَوي رَمزُكَ السِرِّيَ علَى ثَمانِ خاناتٍ أقلًا"
"hint": جب أن يكون رمزك السري مكوَّن من ثمان خانات على الأقل"
},
"invite": {
"registration_user_invite_request": "لماذا ترغب في الانضمام؟"
@ -280,7 +274,7 @@
},
"error": {
"item": {
"username": "اِسمُ المُستَخدِم",
"username": "اِسم المُستَخدِم",
"email": "البريد الإلكتروني",
"password": "الرمز السري",
"agreement": "الاِتِّفاقيَّة",
@ -351,7 +345,7 @@
},
"compose": {
"title": {
"new_post": َنشُورٌ جَديد",
"new_post": نشور جديد",
"new_reply": "رَدٌّ جديد"
},
"media_selection": {
@ -383,10 +377,10 @@
"placeholder": "اكتب تَحذيرًا دَقيقًا هُنا..."
},
"visibility": {
"public": ِلعَامَّة",
"public": لعامة",
"unlisted": "غير مُدرَج",
"private": "للمُتابِعينَ فقط",
"direct": ِمَن أشرتُ إليهِم فَقَط"
"direct": لأشخاص المُشار إليهم فقط"
},
"auto_complete": {
"space_to_add": "انقر على مساحة لإضافتِها"
@ -413,7 +407,7 @@
"dashboard": {
"posts": "مَنشورات",
"following": "مُتابَع",
"followers": ُتابِع"
"followers": تابِع"
},
"fields": {
"add_row": "إضافة صف",
@ -425,7 +419,7 @@
"segmented_control": {
"posts": "مَنشورات",
"replies": "رُدُود",
"posts_and_replies": "مَنشُوراتٌ وَرُدُود",
"posts_and_replies": "المَنشوراتُ وَالرُدود",
"media": "وَسائِط",
"about": "حَول"
},
@ -446,12 +440,6 @@
"title": "رَفعُ الحَظرِ عَنِ الحِساب",
"message": "تأكيدُ رَفع الحَظرِ عَن %s"
}
},
"accessibility": {
"show_avatar_image": "أظْهِر الصُّورَةَ الرَّمزِيَّة",
"edit_avatar_image": "تَحريرُ الصُّورَةِ الرَّمزِيَّة",
"show_banner_image": "أظْهِر صُورَةَ الرَّايَة",
"double_tap_to_open_the_list": "اُنقُر نَقرًا مُزدَوَجًا لِفَتحِ القائِمَة"
}
},
"follower": {
@ -461,15 +449,15 @@
"footer": "لا يُمكِن عَرض المُتابَعات مِنَ الخوادم الأُخرى."
},
"search": {
"title": "البَحث",
"title": "البحث",
"search_bar": {
"placeholder": "اِبحَث عَن وُسُومٍ أو مُستَخدِمين",
"placeholder": "البحث عن وسوم أو مستخدمين",
"cancel": "إلغاء"
},
"recommend": {
"button_text": "إظهار الكُل",
"hash_tag": {
"title": "ذُو شَعبِيَّةٍ عَلَى مَاستودُون",
"title": "ذُو شعبيَّة على ماستودون",
"description": "الوُسُومُ الَّتي تَحظى بقدرٍ كبيرٍ مِنَ الاِهتمام",
"people_talking": "%s أشخاص يتحدَّثوا"
},
@ -482,9 +470,9 @@
"searching": {
"segment": {
"all": "الكُل",
"people": "أشخاص",
"hashtags": "وُسُوم",
"posts": "مَنشُورات"
"people": "الأشخاص",
"hashtags": "الوُسُوم",
"posts": "المَنشورات"
},
"empty_state": {
"no_results": "لا تُوجَدُ نتائِج"
@ -493,16 +481,6 @@
"clear": "مَحو"
}
},
"discovery": {
"tabs": {
"posts": "مَنشُورات",
"hashtags": "وُسُوم",
"news": "أخبار",
"community": "المُجتَمَع",
"for_you": "لَك"
},
"intro": "هَذِهِ هِيَ المَنشُوراتُ الَّتي تَكْتَسِبُ شَعبِيَّةً فِي الرُّكنِ الخاصِّ بِكَ مِن مَاستُودون."
},
"favorite": {
"title": "مُفضَّلَتُك"
},
@ -520,8 +498,8 @@
"poll_has_ended": "انتهى استطلاعُ الرأي"
},
"keyobard": {
"show_everything": "أظْهِر كُلَّ شَيء",
"show_mentions": "أظْهِر الإشارَات"
"show_everything": "إظهار كل شيء",
"show_mentions": "إظهار الإشارات"
}
},
"thread": {
@ -563,8 +541,7 @@
"true_black_dark_mode": "النَّمَطُ الأسوَدُ الداكِنُ الحَقيقي",
"disable_avatar_animation": "تَعطيلُ الصوَرِ الرمزيَّةِ المُتحرِّكَة",
"disable_emoji_animation": "تَعطيلُ الرُموزِ التَّعبيريَّةِ المُتحرِّكَة",
"using_default_browser": "اِستِخدامُ المُتصفِّحِ الاِفتراضي لِفتحِ الرَّوابِط",
"open_links_in_mastodon": "فَتحُ الرَّوابِطِ فِي مَاستودُون"
"using_default_browser": "اِستِخدامُ المُتصفِّحِ الاِفتراضي لِفتحِ الرَّوابِط"
},
"boring_zone": {
"title": "المنطِقَةُ المُملَّة",
@ -574,7 +551,7 @@
},
"spicy_zone": {
"title": "المنطِقَةُ اللَّاذِعَة",
"clear": "مَحوُ ذاكِرَةِ التَّخزينِ المُؤقَّتِ لِلوسائِط",
"clear": "مَحوُ ذاكِرَةُ التَّخزينِ المُؤقت لِلوسائِط",
"signout": "تَسجيلُ الخُروج"
}
},
@ -601,12 +578,12 @@
"preview": {
"keyboard": {
"close_preview": "إغلاق المُعايَنَة",
"show_next": "أظْهِر التَّالي",
"show_previous": "أظْهِر السَّابِق"
"show_next": "إظهار التالي",
"show_previous": "إظهار السابق"
}
},
"account_list": {
"tab_bar_hint": "المِلَفُّ المُحدَّدُ حالِيًّا: %s. اُنقُر نَقرًا مُزدَوَجًا مَعَ الاِستِمرارِ لِإظهارِ مُبدِّلِ الحِساب",
"tab_bar_hint": "المِلف المُحدَّد حاليًا: %s. انقر نقرًا مزدوجًا مع الاستمرار لإظهار مُبدِّل الحِساب",
"dismiss_account_switcher": "تجاهُل مبدِّل الحِساب",
"add_account": "إضافَةُ حِساب"
},

View File

@ -1,6 +1,6 @@
{
"NSCameraUsageDescription": "يُستخدم لالتقاط الصورة عِندَ نشر الحالات",
"NSPhotoLibraryAddUsageDescription": "يُستخدم لحِفظ الصورة في مكتبة الصور",
"NewPostShortcutItemTitle": َنشُورٌ جَديد",
"NewPostShortcutItemTitle": نشور جديد",
"SearchShortcutItemTitle": "البحث"
}

View File

@ -114,22 +114,6 @@
<string>%ld impulsos</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 Resposta</string>
<key>other</key>
<string>%ld respostes</string>
</dict>
</dict>
<key>plural.count.vote</key>
<dict>
<key>NSStringLocalizedFormatKey</key>

View File

@ -41,11 +41,11 @@
"block_entire_domain": "Bloquejar Domini"
},
"save_photo_failure": {
"title": "Error al Desar la Foto",
"title": "Desa l'Error de la Foto",
"message": "Activa el permís d'accés a la biblioteca de fotos per desar-la."
},
"delete_post": {
"title": "Esborrar Publicació",
"title": "Estàs segur que vols suprimir aquesta publicació?",
"message": "Estàs segur que vols suprimir aquesta publicació?"
},
"clean_cache": {
@ -83,7 +83,7 @@
"share_post": "Compartir Publicació",
"open_in_safari": "Obrir a Safari",
"open_in_browser": "Obre al navegador",
"find_people": "Busca persones a seguir",
"find_people": "Busca persones per seguir",
"manually_search": "Cerca manualment a canvi",
"skip": "Omet",
"reply": "Respon",
@ -110,28 +110,26 @@
"previous_status": "Publicació anterior",
"next_status": "Publicació següent",
"open_status": "Obre la publicació",
"open_author_profile": "Obre el Perfil de l'Autor",
"open_reblogger_profile": "Obre el Perfil del Impulsor",
"reply_status": "Respon a la Publicació",
"toggle_reblog": "Commuta l'Impuls de la Publicació",
"toggle_favorite": "Commuta el Favorit de la Publicació",
"open_author_profile": "Obre el perfil de l'autor",
"open_reblogger_profile": "Obre el perfil del impulsor",
"reply_status": "Respon a la publicació",
"toggle_reblog": "Commuta l'impuls de la publicació",
"toggle_favorite": "Commuta el Favorit de la publicació",
"toggle_content_warning": "Commuta l'Avís de Contingut",
"preview_image": "Vista prèvia de l'Imatge"
},
"segmented_control": {
"previous_section": "Secció Anterior",
"next_section": "Secció Següent"
"previous_section": "Secció anterior",
"next_section": "Secció següent"
}
},
"status": {
"user_reblogged": "%s ha impulsat",
"user_replied_to": "Ha respòs a %s",
"show_post": "Mostra la Publicació",
"show_post": "Mostra la publicació",
"show_user_profile": "Mostra el perfil de l'usuari",
"content_warning": "Advertència de Contingut",
"sensitive_content": "Contingut sensible",
"media_content_warning": "Toca qualsevol lloc per a mostrar",
"tap_to_reveal": "Toca per a mostrar",
"media_content_warning": "Toca qualsevol lloc per mostrar",
"poll": {
"vote": "Vota",
"closed": "Finalitzada"
@ -143,11 +141,7 @@
"favorite": "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",
"tap_then_hold_to_show_menu": "Toca i manté per a veure el menú"
"hide": "Amaga"
},
"tag": {
"url": "URL",
@ -188,15 +182,15 @@
"now": "Ara"
},
"loader": {
"load_missing_posts": "Carrega les publicacions faltants",
"loading_missing_posts": "Carregant les publicacions faltants...",
"load_missing_posts": "Carrega les publicacions que falten",
"loading_missing_posts": "Carregant les publicacions que falten...",
"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\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.",
"blocked_warning": "No pots veure el perfil d'aquest usuari\n fins 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."
@ -211,7 +205,7 @@
"log_in": "Inicia sessió"
},
"server_picker": {
"title": "Mastodon està fet d'usuaris en diferents comunitats.",
"title": "Tria un servidor,\nqualsevol servidor.",
"subtitle": "Tria una comunitat segons els teus interessos, regió o una de propòsit general.",
"subtitle_extend": "Tria una comunitat segons els teus interessos, regió o una de propòsit general. Cada comunitat és operada per una organització totalment independent o individualment.",
"button": {
@ -272,7 +266,7 @@
"checked": "verificat",
"unchecked": "no verificat"
},
"hint": "La teva contrasenya ha de tenir com a mínim vuit caràcters"
"hint": "La teva contrasenya ha de tenir com a mínim buit caràcters"
},
"invite": {
"registration_user_invite_request": "Perquè vols unir-te?"
@ -300,7 +294,7 @@
"inclusion": "%s no és un valor suportat"
},
"special": {
"username_invalid": "El nom d'usuari ha de contenir només caràcters alfanumèrics i guions baixos",
"username_invalid": "El nom d'usuari només ha de contenir caràcters alfanumèrics i guions baixos",
"username_too_long": "El nom d'usuari és massa llarg (no pot ser més llarg de 30 caràcters)",
"email_invalid": "Aquesta no és una adreça de correu electrònic vàlida",
"password_too_short": "La contrasenya és massa curta (ha de tenir 8 caràcters com a mínim)"
@ -319,7 +313,7 @@
},
"confirm_email": {
"title": "Una última cosa.",
"subtitle": "Toca l'enllaç del correu electrònic que t'hem enviat per a confirmar el teu compte.",
"subtitle": "Acabem d'enviar un correu electrònic a %s,\ntoca l'enllaç per a confirmar el teu compte.",
"button": {
"open_email_app": "Obre l'aplicació de correu",
"resend": "Reenvia"
@ -446,12 +440,6 @@
"title": "Desbloqueja el Compte",
"message": "Confirma per a desbloquejar %s"
}
},
"accessibility": {
"show_avatar_image": "Mostra l'imatge del avatar",
"edit_avatar_image": "Edita l'imatge del avatar",
"show_banner_image": "Mostra l'imatge del bàner",
"double_tap_to_open_the_list": "Doble toc per a veure la llista"
}
},
"follower": {
@ -493,16 +481,6 @@
"clear": "Neteja"
}
},
"discovery": {
"tabs": {
"posts": "Publicacions",
"hashtags": "Etiquetes",
"news": "Notícies",
"community": "Comunitat",
"for_you": "Per a tu"
},
"intro": "Aquestes son les publicacions que criden l'atenció en el teu racó de Mastodon."
},
"favorite": {
"title": "Els teus Favorits"
},
@ -554,7 +532,7 @@
"anyone": "algú",
"follower": "un seguidor",
"follow": "a qualsevol que segueixi",
"noone": "ningú",
"noone": "algú",
"title": "Notifica'm quan"
}
},
@ -563,8 +541,7 @@
"true_black_dark_mode": "Mode negre fosc autèntic",
"disable_avatar_animation": "Desactiva avatars animats",
"disable_emoji_animation": "Desactiva emojis animats",
"using_default_browser": "Utilitza el navegador predeterminat per a obrir enllaços",
"open_links_in_mastodon": "Obre enllaços a Mastodon"
"using_default_browser": "Utilitza el navegador predeterminat per a obrir enllaços"
},
"boring_zone": {
"title": "La Zona Avorrida",

View File

@ -1,406 +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>%ld ئاگاداریی نەبینراو</string>
<key>other</key>
<string>%ld ئاگاداریی نەبینراو</string>
</dict>
</dict>
<key>a11y.plural.count.input_limit_exceeds</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>سنووری نووسین %#@character_count@ دەرباز دەکات</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>%ld نووسە</string>
<key>other</key>
<string>%ld نووسە</string>
</dict>
</dict>
<key>a11y.plural.count.input_limit_remains</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>سنووری نووسین %#@character_count@ دەمێنێتەوە</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>%ld نووسە</string>
<key>other</key>
<string>%ld نووسە</string>
</dict>
</dict>
<key>plural.count.metric_formatted.post</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%@%#@post_count@</string>
<key>post_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>پۆست</string>
<key>other</key>
<string>پۆست</string>
</dict>
</dict>
<key>plural.count.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>%ld پۆست</string>
<key>other</key>
<string>%ld پۆست</string>
</dict>
</dict>
<key>plural.count.favorite</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@favorite_count@</string>
<key>favorite_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>%ld بەدڵبوو</string>
<key>other</key>
<string>%ld بەدڵبوو</string>
</dict>
</dict>
<key>plural.count.reblog</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@reblog_count@</string>
<key>reblog_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>%ld پۆستکردنەوە</string>
<key>other</key>
<string>%ld پۆستکردنەوە</string>
</dict>
</dict>
<key>plural.count.reply</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@reply_count@</string>
<key>reply_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>%ld وەڵام</string>
<key>other</key>
<string>%ld وەڵام</string>
</dict>
</dict>
<key>plural.count.vote</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@vote_count@</string>
<key>vote_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>%ld دەنگ</string>
<key>other</key>
<string>%ld دەنگ</string>
</dict>
</dict>
<key>plural.count.voter</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@voter_count@</string>
<key>voter_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>%ld دەنگدەر</string>
<key>other</key>
<string>%ld دەنگدەر</string>
</dict>
</dict>
<key>plural.people_talking</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_people_talking@</string>
<key>count_people_talking</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>%ld کەس باسی دەکات</string>
<key>other</key>
<string>%ld کەس باسی دەکەن</string>
</dict>
</dict>
<key>plural.count.following</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_following@</string>
<key>count_following</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>%ld شوێنکەوتن</string>
<key>other</key>
<string>%ld شوێنکەوتن</string>
</dict>
</dict>
<key>plural.count.follower</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_follower@</string>
<key>count_follower</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>%ld شوێنکەوتوو</string>
<key>other</key>
<string>%ld شوێنکەوتوو</string>
</dict>
</dict>
<key>date.year.left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_year_left@</string>
<key>count_year_left</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>%ld ساڵی ماوە</string>
<key>other</key>
<string>%ld ساڵی ماوە</string>
</dict>
</dict>
<key>date.month.left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_month_left@</string>
<key>count_month_left</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>%ld مانگی ماوە</string>
<key>other</key>
<string>%ld مانگی ماوە</string>
</dict>
</dict>
<key>date.day.left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_day_left@</string>
<key>count_day_left</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>%ld ڕۆژی ماوە</string>
<key>other</key>
<string>%ld ڕۆژی ماوە</string>
</dict>
</dict>
<key>date.hour.left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_hour_left@</string>
<key>count_hour_left</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>%ld کاتژمێری ماوە</string>
<key>other</key>
<string>%ld کاتژمێری ماوە</string>
</dict>
</dict>
<key>date.minute.left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_minute_left@</string>
<key>count_minute_left</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>%ld خولەکی ماوە</string>
<key>other</key>
<string>%ld خولەکی ماوە</string>
</dict>
</dict>
<key>date.second.left</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_second_left@</string>
<key>count_second_left</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>%ld چرکەی ماوە</string>
<key>other</key>
<string>%ld چرکەی ماوە</string>
</dict>
</dict>
<key>date.year.ago.abbr</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_year_ago_abbr@</string>
<key>count_year_ago_abbr</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>%ld ساڵ لەمەوبەر</string>
<key>other</key>
<string>%ld ساڵ لەمەوبەر</string>
</dict>
</dict>
<key>date.month.ago.abbr</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_month_ago_abbr@</string>
<key>count_month_ago_abbr</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>%ld مانگ لەمەوبەر</string>
<key>other</key>
<string>%ld مانگ لەمەوبەر</string>
</dict>
</dict>
<key>date.day.ago.abbr</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_day_ago_abbr@</string>
<key>count_day_ago_abbr</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>%ld ڕۆژ لەمەوبەر</string>
<key>other</key>
<string>%ld ڕۆژ لەمەوبەر</string>
</dict>
</dict>
<key>date.hour.ago.abbr</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_hour_ago_abbr@</string>
<key>count_hour_ago_abbr</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>%ld کاتژمێر لەمەوبەر</string>
<key>other</key>
<string>%ld کاتژمێر لەمەوبەر</string>
</dict>
</dict>
<key>date.minute.ago.abbr</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_minute_ago_abbr@</string>
<key>count_minute_ago_abbr</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>%ld خولەک لەمەوبەر</string>
<key>other</key>
<string>%ld خولەک لەمەوبەر</string>
</dict>
</dict>
<key>date.second.ago.abbr</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_second_ago_abbr@</string>
<key>count_second_ago_abbr</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>%ld چرکە لەمەوبەر</string>
<key>other</key>
<string>%ld چرکە لەمەوبەر</string>
</dict>
</dict>
</dict>
</plist>

View File

@ -1,619 +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": "نەتوانرا پۆستەکە بکرێت.\nتکایە لە بەردەستبوونی هێڵی ئینتەرنێت دڵنیا بە.",
"attachments_message": {
"video_attach_with_photo": "ناتوانیت ڤیدیۆ بۆ پۆستێک زیاد بکەیت کە وێنەی تێدایە.",
"more_than_one_video": "ناتوانیت زیاتر لە یەک ڤیدیۆی پێوە بلکێنیت."
}
},
"edit_profile_failure": {
"title": "نەتوانرا دەستکاریی پرۆفایل بکرێت",
"message": "ناتوانرێت دەستکاریی پرۆفایل بکرێت. تکایە دووبارە هەوڵ بدەوە."
},
"sign_out": {
"title": "دەربچۆ",
"message": "دڵنیایت دەتەوێت دەربچیت؟",
"confirm": "دەربچۆ"
},
"block_domain": {
"title": "دڵنیایت دەتەوێت تەواوی %s ئاستەنگ بکەیت؟ لە زۆر بارەکاندا ئاستەنگکردنی بچووک باشترە. ئەگەر وا بکەیت، لەو ڕاژەکارەوە هیچ شتێک نابینیت و هەموو شوێنکەوتووەکانت لەوێوە لادەبرێن.",
"block_entire_domain": "هەموو ڕاژەکارەکە ئاستەنگ بکە"
},
"save_photo_failure": {
"title": "نەتوانرا وێنەکە هەڵبگیرێت",
"message": "تکایە ڕێ بە ماستۆدۆن بدە تاوەکو بتوانێت وێنەکە هەڵبگرێت."
},
"delete_post": {
"title": "بیسڕەوە",
"message": "دڵنیایت دەتەوێت ئەم پۆستە بسڕیتەوە؟"
},
"clean_cache": {
"title": "بیرگە پاک بکەوە",
"message": "سەرکەوتووانە بیرگەی %s پاک کرایەوە."
}
},
"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": "پێشبینین",
"share": "هاوبەشی بکە",
"share_user": "%s هاوبەش بکە",
"share_post": "هاوبەشی بکە",
"open_in_safari": "لە Safari بیکەوە",
"open_in_browser": "لە وێبگەڕ بیکەوە",
"find_people": "خەڵک بدۆزەوە",
"manually_search": "خۆت بگەڕێ",
"skip": "بیپەڕێنە",
"reply": "وەڵامی بدەوە",
"report_user": "سکاڵا لە %s بکە",
"block_domain": "%s ئاستەنگ بکە",
"unblock_domain": "%s ئاستەنگ مەکە",
"settings": "رێکخستنەکان",
"delete": "بیسڕەوە"
},
"tabs": {
"home": "ماڵەوە",
"search": "بگەڕێ",
"notification": "ئاگادارکردنەوەکان",
"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": "دەستی پیا بنێ بۆ نیشاندانی",
"poll": {
"vote": "دەنگ بدە",
"closed": "داخراوە"
},
"actions": {
"reply": "وەڵامی بدەوە",
"reblog": "پۆستی بکەوە",
"unreblog": "پۆستکردنەکە بگەڕێنەوە",
"favorite": "بەدڵمە",
"unfavorite": "بەدڵبوونەکە بگەڕێنەوە",
"menu": "پێڕست",
"hide": "بیشارەوە",
"show_image": "وێنەکە نیشان بدە",
"show_gif": "گیفەکە نیشان بدە",
"show_video_player": "ڤیدیۆکە لێ بدە",
"tap_then_hold_to_show_menu": "دەستی پیا بنێ و بیگرە بۆ نیشاندانی پێڕستەکە"
},
"tag": {
"url": "بەستەر",
"mention": "ئاماژە",
"link": "بەستەر",
"hashtag": "هاشتاگ",
"email": "ئیمێڵ",
"emoji": "ئیمۆجی"
},
"visibility": {
"unlisted": "هەرکەسێک دەتوانێت ئەم پۆستە ببینێت بەڵام ناچێتە بەردەمیان.",
"private": "تەنیا شوێنکەوتووەکانی دەتوانن ئەم پۆستە ببینن.",
"private_from_me": "تەنیا شوێنکەوتووەکانم دەتوانن ئەم پۆستە ببینن.",
"direct": "تەنیا بەکارهێنەرە ئاماژە پێکراوەکە دەتوانێت ئەم پۆستە ببینێت."
}
},
"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": "دەستکاری"
},
"timeline": {
"filtered": "پاڵێوراو",
"timestamp": {
"now": "ئێستا"
},
"loader": {
"load_missing_posts": "پۆستە ماوەکان بار بکە",
"loading_missing_posts": "پۆستە ماوەکان بار دەکرێن...",
"show_more_replies": "وەڵامی زیاتر نیشان بدە"
},
"header": {
"no_status_found": "هیچ پۆستێک نەدۆزرایەوە",
"blocking_warning": "ناتوانیت پرۆفایلی ئەم بەکارهێنەرە ببینیت\nهەتا ئاستەنگەکەیان لادەبەیت.\nپرۆفایلەکەت ئاوها لایان دەردەکەوێت.",
"user_blocking_warning": "ناتوانیت پرۆفایلی %s ببینیت\nهەتا ئاستەنگەکەیان لادەبەیت.\nپرۆفایلەکەت ئاوها لایان دەردەکەوێت.",
"blocked_warning": "ناتوانیت پرۆفایلی ئەم بەکارهێنەرە ببینیت\nتا ئەو کاتەی ئاستەنگەکەت لادەبات.",
"user_blocked_warning": "ناتوانیت پرۆفایلی %s ببینیت\nتا ئەو کاتەی ئاستەنگەکەت لادەبات.",
"suspended_warning": "ئەم بەکارهێنەرە ڕاگیراوە.",
"user_suspended_warning": "هەژماری %s ڕاگیراوە."
}
}
}
},
"scene": {
"welcome": {
"slogan": "تۆڕی کۆمەڵایەتی\nلەژێر دەستەکانت.",
"get_started": "دەست پێ بکە",
"log_in": "بچۆ ژوورەوە"
},
"server_picker": {
"title": "ماستۆدۆن لە چەندان بەکارهێنەر پێک دێت کە لە ڕاژەکاری جیاواز دان.",
"subtitle": "ڕاژەکارێکێکی گشتی یان دانەیەک لەسەر بنەمای حەزەکانت و هەرێمەکەت هەڵبژێرە.",
"subtitle_extend": "ڕاژەکارێکێکی گشتی یان دانەیەک لەسەر بنەمای حەزەکانت و هەرێمەکەت هەڵبژێرە. هەر ڕاژەکارێک لەلایەن ڕێکخراوێک یان تاکەکەسێک بەڕێوە دەبرێت.",
"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": {
"placeholder": "بگەڕێ"
},
"empty_state": {
"finding_servers": "ڕاژەکار دەدۆزرێتەوە...",
"bad_network": "هەڵەیەک ڕوویدا لە کاتی بارکردن. لە هەبوونی هێڵی ئینتەرنێت دڵنیا بە.",
"no_results": "ئەنجام نییە"
}
},
"register": {
"title": "خۆت تۆمار بکە لە %s",
"input": {
"avatar": {
"delete": "بیسڕەوە"
},
"username": {
"placeholder": "ناوی بەکارهێنەر",
"duplicate_prompt": "ئەم ناوە گیراوە."
},
"display_name": {
"placeholder": "ناوی نیشاندان"
},
"email": {
"placeholder": "ئیمێڵ"
},
"password": {
"placeholder": "تێپەڕوشە",
"require": "تێپەڕوشەکەت لایەنی کەم پێویستیی هەیە بە:",
"character_limit": "8 پیت",
"accessibility": {
"checked": "هەڵبژێردراو",
"unchecked": "هەڵنەبژێردراو"
},
"hint": "دەبێت تێپەڕوشەکەت لایەنی کەم هەشت نووسە بێت"
},
"invite": {
"registration_user_invite_request": "بۆچی دەتەوێت بەشدار بیت؟"
}
},
"error": {
"item": {
"username": "ناوی بەکارهێنەر",
"email": "ئیمێڵ",
"password": "تێپەڕوشە",
"agreement": "ڕێککەوتن",
"locale": "زمان",
"reason": "هۆکار"
},
"reason": {
"blocked": "%s خزمەتگوزارییەکی ئیمێڵی ڕێپێنەدراو بەکار دەهێنێت",
"unreachable": "%s بوونی نییە",
"taken": "%s بەکار هێنراوە لەلایەن یەکێکی تر",
"reserved": "%s وشەیەکی گیراوە",
"accepted": "%s دەبێت قبووڵ بکرێت",
"blank": "%s پێویستە",
"invalid": "%s نادروستە",
"too_long": "%s زۆر درێژە",
"too_short": "%s زۆر کورتە",
"inclusion": "%s پشتگیرینەکراوە"
},
"special": {
"username_invalid": "ناوی بەکارهێنەر دەبێت تەنیا پیت، ژمارە و هێڵی ژێرەوەی تێدا بێت",
"username_too_long": "ناوی بەکارهێنەرەکە زۆر درێژە (ناکرێت لە 30 نووسە زیاتر بێت)",
"email_invalid": "ئەم ئیمێڵە دروست نییە",
"password_too_short": "تێپەڕوشەکە زۆر کورتە (نابێت لە 8 نووسە کەمتر بێت)"
}
}
},
"server_rules": {
"title": "یاساکانی ڕاژەکار",
"subtitle": "ئەمانە لەلایەن چاودێرەکانی %s دانراون و ناچار دەکرێن.",
"prompt": "بەردەوامبوونت واتای ڕازیبوونتە بە مەرجەکانی خزمەتگوزاری و سیاسەتی تایبەتێتیی %s.",
"terms_of_service": "مەرجەکانی بەکارهێنان",
"privacy_policy": "سیاسەتی تایبەتێتی",
"button": {
"confirm": "ڕازیم"
}
},
"confirm_email": {
"title": "کۆتا شت.",
"subtitle": "بۆ پشتڕاستکردنەوەی هەژمارەکەت ئەو بەستەرە بکەوە کە بە ئیمێڵ بۆمان ناردوویت.",
"button": {
"open_email_app": "بەرنامەی ئیمێڵەکەت بکەوە",
"resend": "بینێرەوە"
},
"dont_receive_email": {
"title": "ئیمێڵەکەت ببینە",
"description": "دڵنیا بە لەوەی ئیمێڵەکەت دروستە و هەموو بوخچەکانت بگەڕێ.",
"resend_email": "ئیمێڵەکە بنێرەوە"
},
"open_email_app": {
"title": "ئیمێڵەکانت ببینە.",
"description": "ئیمێڵێکمان بۆ ناردیت. هەموو بوخچەکانت ببینە.",
"mail": "Mail",
"open_email_client": "بەرنامەی ئیمێڵەکەت بکەوە"
}
},
"home_timeline": {
"title": "ماڵەوە",
"navigation_bar_state": {
"offline": "دەرهێڵ",
"new_posts": "پۆستە نوێکان ببینە",
"published": "بڵاوکرایەوە!",
"Publishing": "پۆستەکە بڵاو دەکرێتەوە..."
}
},
"suggestion_account": {
"title": "خەڵک بدۆزەوە",
"follow_explain": "کاتێک شوێنی یەکێک دەکەویت، پۆستەکانی دێتە بەردەمت."
},
"compose": {
"title": {
"new_post": "پۆستی نوێ",
"new_reply": "وەڵامی نوێ"
},
"media_selection": {
"camera": "وێنە بگرە",
"photo_library": "وێنەکان",
"browse": "بگەڕێ"
},
"content_input_placeholder": "دەتەوێت چی پۆست بکەیت؟",
"compose_action": "بڵاوی بکەوە",
"replying_to_user": "لە وەڵامدا بۆ %s",
"attachment": {
"photo": "وێنە",
"video": "ڤیدیۆ",
"attachment_broken": "ئەم %sـە تێک چووە و ناتوانیت بەرزی بکەیتەوە.",
"description_photo": "وێنەکەت بۆ نابیناکان باس بکە...",
"description_video": "ڤیدیۆکەت بۆ نابیناکان باس بکە..."
},
"poll": {
"duration_time": "کات: %s",
"thirty_minutes": "30 خولەک",
"one_hour": "1 کاتژمێر",
"six_hours": "6 کاتژمێر",
"one_day": "1 ڕۆژ",
"three_days": "3 ڕۆژ",
"seven_days": "7 ڕۆژ",
"option_number": "بژاردەی %ld"
},
"content_warning": {
"placeholder": "ئاگادارییەکەت لێرە بنووسە..."
},
"visibility": {
"public": "گشتی",
"unlisted": "پێشنیارنەکراو",
"private": "تەنیا شوێنکەوتووان",
"direct": "ئەوانەی ئاماژەیان پێ دەکەم"
},
"auto_complete": {
"space_to_add": "بۆشایی دابنێ بۆ زیادکردن"
},
"accessibility": {
"append_attachment": "پێوەکراوی پێوە بکە",
"append_poll": "دەنگدان زیاد بکە",
"remove_poll": "دانگدانەکە لابە",
"custom_emoji_picker": "هەڵبژێری ئیمۆجی",
"enable_content_warning": "ئاگاداریی ناوەڕۆک چالاک بکە",
"disable_content_warning": "ئاگاداریی ناوەڕۆک ناچالاک بکە",
"post_visibility_menu": "پێڕستی شێوازی دەرکەوتنی پۆست"
},
"keyboard": {
"discard_post": "پۆستەکە هەڵوەشێنەوە",
"publish_post": "پۆستە بڵاو بکەوە",
"toggle_poll": "دەنگدانەکە نیشان بدە",
"toggle_content_warning": "ئاگاداریی ناوەڕۆک نیشان بدە",
"append_attachment_entry": "پێوەکراوی پێوە بکە - %s",
"select_visibility_entry": "شێوازی دەرکەوتن هەڵبژێرە - %s"
}
},
"profile": {
"dashboard": {
"posts": "پۆستەکان",
"following": "شوێنکەوتن",
"followers": "شوێنکەوتوو"
},
"fields": {
"add_row": "ڕیز زیاد بکە",
"placeholder": {
"label": "ناونیشان",
"content": "ناوەڕۆک"
}
},
"segmented_control": {
"posts": "پۆستەکان",
"replies": "وەڵامەکان",
"posts_and_replies": "پۆست و وەڵامەکان",
"media": "میدیا",
"about": "دەربارە"
},
"relationship_action_alert": {
"confirm_mute_user": {
"title": "بێدەنگی بکە",
"message": "دڵیا ببەوە بۆ بێدەنگکردنی %s"
},
"confirm_unmute_user": {
"title": "بێدەنگی مەکە",
"message": "دڵنیا ببەوە بۆ بێدەنگنەکردنی %s"
},
"confirm_block_user": {
"title": "ئاستەنگی بکە",
"message": "دڵنیا ببەوە بۆ ئاستەنگکردنی %s"
},
"confirm_unblock_user": {
"title": "ئاستەنگی مەکە",
"message": "دڵنیا ببەوە بۆ لابردنی ئاستەنگی %s"
}
},
"accessibility": {
"show_avatar_image": "وێنەکە نیشان بدە",
"edit_avatar_image": "دەستکاریی وێنەکە بکە",
"show_banner_image": "وێنەکەی پشتەوە نیشان بدە",
"double_tap_to_open_the_list": "دوو جار دەستی پیا بنێ بۆ کردنەوەی لیستەکە"
}
},
"follower": {
"footer": "شوێنکەوتووەکانی لە ڕاژەکارەکانی ترەوە نیشان نادرێت."
},
"following": {
"footer": "شوێنکەوتنەکانی بۆ هەژماری ڕاژەکارەکانی تر نیشان نادرێت."
},
"search": {
"title": "بگەڕێ",
"search_bar": {
"placeholder": "بۆ هاشتاگ و بەکارهێنەر بگەڕێ",
"cancel": "بگەڕێوە"
},
"recommend": {
"button_text": "هەمووی ببینە",
"hash_tag": {
"title": "ڕۆژەڤ",
"description": "ئەو هاشتاگانەی سەرنجی زۆریان لەسەرە",
"people_talking": "%s کەس باسی دەکەن"
},
"accounts": {
"title": "لەوانەیە حەزت لەمانە بێت",
"description": "لەوانەیە بتەوێت شوێنی ئەم هەژمارانە بکەویت",
"follow": "شوێنی بکەوە"
}
},
"searching": {
"segment": {
"all": "هەمووی",
"people": "خەڵک",
"hashtags": "هاشتاگ",
"posts": "پۆست"
},
"empty_state": {
"no_results": "هیچ ئەنجامێک نەدۆزرایەوە"
},
"recent_search": "گەڕانەکانی پێشترت",
"clear": "بیانسڕەوە"
}
},
"discovery": {
"tabs": {
"posts": "پۆستەکان",
"hashtags": "هاشتاگەکان",
"news": "هەواڵەکان",
"community": "Community",
"for_you": "بۆ تۆ"
},
"intro": "پۆست هەیە سەرنجیان لەسەرە لە گۆشەکەی تۆ."
},
"favorite": {
"title": "بەدڵبووەکانت"
},
"notification": {
"title": {
"Everything": "هەمووی",
"Mentions": "ئاماژەکان"
},
"notification_description": {
"followed_you": "شوێنت کەوت",
"favorited_your_post": "پۆستەکەتی بەدڵ بوو",
"reblogged_your_post": "پۆستەکەتی پۆست کردەوە",
"mentioned_you": "ئاماژەی پێت کرد",
"request_to_follow_you": "داواکاری بۆ شوێنکەوتنت",
"poll_has_ended": "دەنگدانەکە کۆتایی هات"
},
"keyobard": {
"show_everything": "هەموو شتێک نیشان بدە",
"show_mentions": "ئاماژەکان نیشان بدە"
}
},
"thread": {
"back_title": "پۆستەکە",
"title": "پۆستی %s"
},
"settings": {
"title": "رێکخستنەکان",
"section": {
"appearance": {
"title": "ڕووخسار",
"automatic": "خۆکار",
"light": "ڕووناک",
"dark": "تاریک"
},
"look_and_feel": {
"title": "ڕووخسار و هەست",
"use_system": "سیستەم",
"really_dark": "زۆر تاریک",
"sorta_dark": "کەم تاریک",
"light": "ڕووناک"
},
"notifications": {
"title": "ئاماژەکان نیشان بدە",
"favorites": "پۆستەکەمی بەدڵ دەبێت",
"follows": "شوێنم دەکەوێت",
"boosts": "پۆستەکەم پۆست دەکاتەوە",
"mentions": "ئاماژەم پێ دەکات",
"trigger": {
"anyone": "هەرکەسێک",
"follower": "شوێنکەوتووێکم",
"follow": "هەرکەسێک شوێنی دەکەوم",
"noone": "هیچکەس",
"title": "ئاگادارم بکەوە کاتێک"
}
},
"preference": {
"title": "پەسەندەکان",
"true_black_dark_mode": "دۆخی ڕەش",
"disable_avatar_animation": "وێنە جووڵاوەکان ناچالاک بکە",
"disable_emoji_animation": "ئیمۆجییە جووڵاوەکان ناچالاک بکە",
"using_default_browser": "وێبگەڕی بنەڕەت بەکار بهێنە بۆ کردنەوەی بەستەرەکان",
"open_links_in_mastodon": "بەستەرەکان لەناو ماستۆدۆن بکەوە"
},
"boring_zone": {
"title": "ناوچە بێنازەکە",
"account_settings": "ڕێکخستنەکانی هەژمار",
"terms": "مەرجەکانی بەکارهێنان",
"privacy": "سیاسەتی تایبەتێتی"
},
"spicy_zone": {
"title": "ناوچەی گەرم",
"clear": "بیرگە پاک بکەوە",
"signout": "دەربچۆ"
}
},
"footer": {
"mastodon_description": "ماستۆدۆن پڕۆژەیەکی سەرچاوەکراوەیە. دەتوانیت لە گیتهەب لە کێشەکان ئاگادارمان بکەیتەوە: %s (%s)"
},
"keyboard": {
"close_settings_window": "ڕێخستنەکان دابخە"
}
},
"report": {
"title_report": "سکاڵای لێ بکە",
"title": "سکاڵا لە %s بکە",
"step1": "هەنگاوی 1 لە 2",
"step2": "هەنگاوی 2 لە 2",
"content1": "پۆستی تر هەیە بتەوێت سکاڵایان لێ بکەیت؟",
"content2": "هیچ شتێکی هەیە بە چاودێرەکان بیزانن دەربارەی ئەم سکاڵایە؟",
"report_sent_title": "سپاس بۆ سکاڵاکات، پێیدا دەچینەوە.",
"send": "سکاڵاکە بنێرە",
"skip_to_send": "بەبێ لێدوان بینێرە",
"text_placeholder": "ڕوونکردنەوەی زۆرتر بدە",
"reported": "سکاڵای لێ کرا"
},
"preview": {
"keyboard": {
"close_preview": "پێشبینینەکە دابخە",
"show_next": "هی دواتر نیشان بدە",
"show_previous": "هی پێشتر نیشان بدە"
}
},
"account_list": {
"tab_bar_hint": "هەژماری ئێستا: %s. دوو جا دەستی پیا بنێ بۆ کردنەوەی پێڕستی هەژمارەکان.",
"dismiss_account_switcher": "پێڕستی هەژمارەکان دابخە",
"add_account": "هەژمارێک زیاد بکە"
},
"wizard": {
"new_in_mastodon": "نوێ",
"multiple_account_switch_intro_description": "هەژمارەکەت بگۆڕە بە دەستڕاگرتن لەسەر دوگمەی پرۆفایلەکە.",
"accessibility_hint": "دوو جار دەستی پیا بنێ بۆ داخستنی"
}
}
}

View File

@ -1,6 +0,0 @@
{
"NSCameraUsageDescription": "بەکار دێت بۆ گرتنی وێنەیەک بۆ پۆستەکە",
"NSPhotoLibraryAddUsageDescription": "بەکار دێت بۆ هەڵگرتنی وێنە",
"NewPostShortcutItemTitle": "پۆستی نوێ",
"SearchShortcutItemTitle": "بگەڕێ"
}

View File

@ -170,30 +170,6 @@
<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>zero</key>
<string>%ld replies</string>
<key>one</key>
<string>1 reply</string>
<key>two</key>
<string>%ld replies</string>
<key>few</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>

View File

@ -129,9 +129,7 @@
"show_post": "Show Post",
"show_user_profile": "Show user profile",
"content_warning": "Content Warning",
"sensitive_content": "Sensitive Content",
"media_content_warning": "Tap anywhere to reveal",
"tap_to_reveal": "Tap to reveal",
"poll": {
"vote": "Vote",
"closed": "Closed"
@ -143,11 +141,7 @@
"favorite": "Favorite",
"unfavorite": "Unfavorite",
"menu": "Menu",
"hide": "Hide",
"show_image": "Show image",
"show_gif": "Show GIF",
"show_video_player": "Show video player",
"tap_then_hold_to_show_menu": "Tap then hold to show menu"
"hide": "Hide"
},
"tag": {
"url": "URL",
@ -211,9 +205,9 @@
"log_in": "Log In"
},
"server_picker": {
"title": "Mastodon is made of users in different servers.",
"subtitle": "Pick a server based on your interests, region, or a general purpose one.",
"subtitle_extend": "Pick a server based on your interests, region, or a general purpose one. Each server is operated by an entirely independent organization or individual.",
"title": "Mastodon is made of users in different communities.",
"subtitle": "Pick a community based on your interests, region, or a general purpose one.",
"subtitle_extend": "Pick a community based on your interests, region, or a general purpose one. Each community is operated by an entirely independent organization or individual.",
"button": {
"category": {
"all": "All",
@ -240,7 +234,7 @@
"category": "CATEGORY"
},
"input": {
"placeholder": "Search servers"
"placeholder": "Search communities"
},
"empty_state": {
"finding_servers": "Finding available servers...",
@ -446,12 +440,6 @@
"title": "Unblock Account",
"message": "Confirm to unblock %s"
}
},
"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": {
@ -493,16 +481,6 @@
"clear": "Clear"
}
},
"discovery": {
"tabs": {
"posts": "Posts",
"hashtags": "Hashtags",
"news": "News",
"community": "Community",
"for_you": "For You"
},
"intro": "These are the posts gaining traction in your corner of Mastodon."
},
"favorite": {
"title": "Your Favorites"
},
@ -563,8 +541,7 @@
"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"
"using_default_browser": "Use default browser to open links"
},
"boring_zone": {
"title": "The Boring Zone",

View File

@ -114,22 +114,6 @@
<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>other</key>
<string>%ld replies</string>
</dict>
</dict>
<key>plural.count.vote</key>
<dict>
<key>NSStringLocalizedFormatKey</key>

View File

@ -129,9 +129,7 @@
"show_post": "Show Post",
"show_user_profile": "Show user profile",
"content_warning": "Content Warning",
"sensitive_content": "Sensitive Content",
"media_content_warning": "Tap anywhere to reveal",
"tap_to_reveal": "Tap to reveal",
"poll": {
"vote": "Vote",
"closed": "Closed"
@ -143,11 +141,7 @@
"favorite": "Favorite",
"unfavorite": "Unfavorite",
"menu": "Menu",
"hide": "Hide",
"show_image": "Show image",
"show_gif": "Show GIF",
"show_video_player": "Show video player",
"tap_then_hold_to_show_menu": "Tap then hold to show menu"
"hide": "Hide"
},
"tag": {
"url": "URL",
@ -211,9 +205,9 @@
"log_in": "Log In"
},
"server_picker": {
"title": "Mastodon is made of users in different servers.",
"subtitle": "Pick a server based on your interests, region, or a general purpose one.",
"subtitle_extend": "Pick a server based on your interests, region, or a general purpose one. Each server is operated by an entirely independent organization or individual.",
"title": "Mastodon is made of users in different communities.",
"subtitle": "Pick a community based on your interests, region, or a general purpose one.",
"subtitle_extend": "Pick a community based on your interests, region, or a general purpose one. Each community is operated by an entirely independent organization or individual.",
"button": {
"category": {
"all": "All",
@ -240,7 +234,7 @@
"category": "CATEGORY"
},
"input": {
"placeholder": "Search servers"
"placeholder": "Search communities"
},
"empty_state": {
"finding_servers": "Finding available servers...",
@ -446,12 +440,6 @@
"title": "Unblock Account",
"message": "Confirm to unblock %s"
}
},
"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": {
@ -493,16 +481,6 @@
"clear": "Clear"
}
},
"discovery": {
"tabs": {
"posts": "Posts",
"hashtags": "Hashtags",
"news": "News",
"community": "Community",
"for_you": "For You"
},
"intro": "These are the posts gaining traction in your corner of Mastodon."
},
"favorite": {
"title": "Your Favorites"
},
@ -563,8 +541,7 @@
"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"
"using_default_browser": "Use default browser to open links"
},
"boring_zone": {
"title": "The Boring Zone",

View File

@ -114,22 +114,6 @@
<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 Antwort</string>
<key>other</key>
<string>%ld Antworten</string>
</dict>
</dict>
<key>plural.count.vote</key>
<dict>
<key>NSStringLocalizedFormatKey</key>

View File

@ -129,9 +129,7 @@
"show_post": "Beitrag anzeigen",
"show_user_profile": "Benutzerprofil anzeigen",
"content_warning": "Inhaltswarnung",
"sensitive_content": "Sensitive Content",
"media_content_warning": "Tippe irgendwo zum Anzeigen",
"tap_to_reveal": "Zum Anzeigen tippen",
"poll": {
"vote": "Abstimmen",
"closed": "Beendet"
@ -143,11 +141,7 @@
"favorite": "Favorit",
"unfavorite": "Aus Favoriten entfernen",
"menu": "Menü",
"hide": "Verstecken",
"show_image": "Bild anzeigen",
"show_gif": "GIF anzeigen",
"show_video_player": "Zeige Video-Player",
"tap_then_hold_to_show_menu": "Halte gedrückt um das Menü anzuzeigen"
"hide": "Verstecken"
},
"tag": {
"url": "URL",
@ -446,12 +440,6 @@
"title": "Konto entsperren",
"message": "Bestätige %s zu entsperren"
}
},
"accessibility": {
"show_avatar_image": "Profilbild anzeigen",
"edit_avatar_image": "Profilbild bearbeiten",
"show_banner_image": "Bannerbild anzeigen",
"double_tap_to_open_the_list": "Doppeltippen, um die Liste zu öffnen"
}
},
"follower": {
@ -493,16 +481,6 @@
"clear": "Zurücksetzen"
}
},
"discovery": {
"tabs": {
"posts": "Beiträge",
"hashtags": "Hashtags",
"news": "Nachrichten",
"community": "Community",
"for_you": "Für dich"
},
"intro": "These are the posts gaining traction in your corner of Mastodon."
},
"favorite": {
"title": "Deine Favoriten"
},
@ -563,8 +541,7 @@
"true_black_dark_mode": "Vollständig dunkler Dunkelmodus",
"disable_avatar_animation": "Animierte Profilbilder deaktivieren",
"disable_emoji_animation": "Animierte Emojis deaktivieren",
"using_default_browser": "Standardbrowser zum Öffnen von Links verwenden",
"open_links_in_mastodon": "Links in Mastodon öffnen"
"using_default_browser": "Standardbrowser zum Öffnen von Links verwenden"
},
"boring_zone": {
"title": "Der langweilige Bereich",

View File

@ -114,22 +114,6 @@
<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>other</key>
<string>%ld replies</string>
</dict>
</dict>
<key>plural.count.vote</key>
<dict>
<key>NSStringLocalizedFormatKey</key>

View File

@ -129,9 +129,7 @@
"show_post": "Show Post",
"show_user_profile": "Show user profile",
"content_warning": "Content Warning",
"sensitive_content": "Sensitive Content",
"media_content_warning": "Tap anywhere to reveal",
"tap_to_reveal": "Tap to reveal",
"poll": {
"vote": "Vote",
"closed": "Closed"
@ -143,11 +141,7 @@
"favorite": "Favorite",
"unfavorite": "Unfavorite",
"menu": "Menu",
"hide": "Hide",
"show_image": "Show image",
"show_gif": "Show GIF",
"show_video_player": "Show video player",
"tap_then_hold_to_show_menu": "Tap then hold to show menu"
"hide": "Hide"
},
"tag": {
"url": "URL",
@ -211,9 +205,9 @@
"log_in": "Log In"
},
"server_picker": {
"title": "Mastodon is made of users in different servers.",
"subtitle": "Pick a server based on your interests, region, or a general purpose one.",
"subtitle_extend": "Pick a server based on your interests, region, or a general purpose one. Each server is operated by an entirely independent organization or individual.",
"title": "Mastodon is made of users in different communities.",
"subtitle": "Pick a community based on your interests, region, or a general purpose one.",
"subtitle_extend": "Pick a community based on your interests, region, or a general purpose one. Each community is operated by an entirely independent organization or individual.",
"button": {
"category": {
"all": "All",
@ -240,7 +234,7 @@
"category": "CATEGORY"
},
"input": {
"placeholder": "Search servers"
"placeholder": "Search communities"
},
"empty_state": {
"finding_servers": "Finding available servers...",
@ -446,12 +440,6 @@
"title": "Unblock Account",
"message": "Confirm to unblock %s"
}
},
"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": {
@ -493,16 +481,6 @@
"clear": "Clear"
}
},
"discovery": {
"tabs": {
"posts": "Posts",
"hashtags": "Hashtags",
"news": "News",
"community": "Community",
"for_you": "For You"
},
"intro": "These are the posts gaining traction in your corner of Mastodon."
},
"favorite": {
"title": "Your Favorites"
},
@ -563,8 +541,7 @@
"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"
"using_default_browser": "Use default browser to open links"
},
"boring_zone": {
"title": "The Boring Zone",

View File

@ -114,22 +114,6 @@
<string>%ld adhesiones</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>

View File

@ -45,7 +45,7 @@
"message": "Por favor, habilitá el permiso de acceso a la biblioteca de fotos para guardar la imagen."
},
"delete_post": {
"title": "Eliminar mensaje",
"title": "¿Estás seguro que querés eliminar este mensaje?",
"message": "¿Estás seguro que querés eliminar este mensaje?"
},
"clean_cache": {
@ -113,9 +113,9 @@
"open_author_profile": "Abrir perfil del autor",
"open_reblogger_profile": "Abrir perfil del adherente",
"reply_status": "Responder al mensaje",
"toggle_reblog": "Cambiar adhesión al mensaje",
"toggle_favorite": "Cambiar marca de favorito del mensaje",
"toggle_content_warning": "Cambiar modo de advertencia de contenido",
"toggle_reblog": "Cambiar la adhesión en el mensaje",
"toggle_favorite": "Cambiar la marca de favorito en el mensaje",
"toggle_content_warning": "Cambiar la advertencia de contenido",
"preview_image": "Previsualizar imagen"
},
"segmented_control": {
@ -129,9 +129,7 @@
"show_post": "Mostrar mensaje",
"show_user_profile": "Mostrar perfil de usuario",
"content_warning": "Advertencia de contenido",
"sensitive_content": "Contenido sensible",
"media_content_warning": "Tocá en cualquier parte para mostrar",
"tap_to_reveal": "Tocá para mostrar",
"media_content_warning": "Toca en cualquier lugar para mostrar",
"poll": {
"vote": "Votar",
"closed": "Cerrada"
@ -143,11 +141,7 @@
"favorite": "Marcar como favorito",
"unfavorite": "Dejar de marcar como favorito",
"menu": "Menú",
"hide": "Ocultar",
"show_image": "Mostrar imagen",
"show_gif": "Mostrar GIF",
"show_video_player": "Mostrar reproductor de video",
"tap_then_hold_to_show_menu": "Tocá y mantené presionado para mostrar el menú"
"hide": "Ocultar"
},
"tag": {
"url": "Dirección web",
@ -446,12 +440,6 @@
"title": "Desbloquear cuenta",
"message": "Confirmá para desbloquear a %s"
}
},
"accessibility": {
"show_avatar_image": "Mostrar imagen de avatar",
"edit_avatar_image": "Editar imagen de avatar",
"show_banner_image": "Mostrar imagen de banner",
"double_tap_to_open_the_list": "Tocá dos veces para abrir la lista"
}
},
"follower": {
@ -493,16 +481,6 @@
"clear": "Limpiar"
}
},
"discovery": {
"tabs": {
"posts": "Mensajes",
"hashtags": "Etiquetas",
"news": "Novedades",
"community": "Community",
"for_you": "Para vos"
},
"intro": "Estos son los mensajes que están ganando tracción en tu rincón de Mastodon."
},
"favorite": {
"title": "Tus favoritos"
},
@ -563,8 +541,7 @@
"true_black_dark_mode": "Modo negro oscuro real",
"disable_avatar_animation": "Deshabilitar avatares animados",
"disable_emoji_animation": "Deshabilitar emojis animados",
"using_default_browser": "Usar navegador web predeterminado para abrir enlaces",
"open_links_in_mastodon": "Abrir enlaces en Mastodon"
"using_default_browser": "Usar navegador web predeterminado para abrir enlaces"
},
"boring_zone": {
"title": "La zona aburrida",

View File

@ -114,22 +114,6 @@
<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>

View File

@ -129,9 +129,7 @@
"show_post": "Mostrar Publicación",
"show_user_profile": "Mostrar perfil del usuario",
"content_warning": "Advertencia de Contenido",
"sensitive_content": "Sensitive Content",
"media_content_warning": "Pulsa en cualquier sitio para mostrar",
"tap_to_reveal": "Tocar para revelar",
"poll": {
"vote": "Vota",
"closed": "Cerrado"
@ -143,11 +141,7 @@
"favorite": "Favorito",
"unfavorite": "No favorito",
"menu": "Menú",
"hide": "Ocultar",
"show_image": "Mostrar imagen",
"show_gif": "Mostrar GIF",
"show_video_player": "Mostrar reproductor de vídeo",
"tap_then_hold_to_show_menu": "Toca, después mantén para mostrar el menú"
"hide": "Ocultar"
},
"tag": {
"url": "URL",
@ -446,12 +440,6 @@
"title": "Desbloquear cuenta",
"message": "Confirmar para desbloquear a %s"
}
},
"accessibility": {
"show_avatar_image": "Mostrar imagen del avatar",
"edit_avatar_image": "Editar imagen del avatar",
"show_banner_image": "Mostrar imagen de banner",
"double_tap_to_open_the_list": "Pulsa dos veces para abrir la lista"
}
},
"follower": {
@ -493,16 +481,6 @@
"clear": "Borrar"
}
},
"discovery": {
"tabs": {
"posts": "Publicaciones",
"hashtags": "Etiquetas",
"news": "Noticias",
"community": "Community",
"for_you": "Para Ti"
},
"intro": "These are the posts gaining traction in your corner of Mastodon."
},
"favorite": {
"title": "Tus Favoritos"
},
@ -563,8 +541,7 @@
"true_black_dark_mode": "Modo oscuro negro real",
"disable_avatar_animation": "Deshabilitar avatares animados",
"disable_emoji_animation": "Deshabilitar emojis animados",
"using_default_browser": "Usar navegador predeterminado para abrir los enlaces",
"open_links_in_mastodon": "Abrir links en Mastodon"
"using_default_browser": "Usar navegador predeterminado para abrir los enlaces"
},
"boring_zone": {
"title": "La Zona Aburrida",

View File

@ -114,22 +114,6 @@
<string>%ld bultzada</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>Erantzun bat</string>
<key>other</key>
<string>%ld erantzun</string>
</dict>
</dict>
<key>plural.count.vote</key>
<dict>
<key>NSStringLocalizedFormatKey</key>

View File

@ -129,9 +129,7 @@
"show_post": "Erakutsi bidalketa",
"show_user_profile": "Erakutsi erabiltzailearen profila",
"content_warning": "Edukiaren abisua",
"sensitive_content": "Sensitive Content",
"media_content_warning": "Ukitu edonon bistaratzeko",
"tap_to_reveal": "Sakatu erakusteko",
"poll": {
"vote": "Bozkatu",
"closed": "Itxita"
@ -143,11 +141,7 @@
"favorite": "Gogokoa",
"unfavorite": "Kendu gogokoa",
"menu": "Menua",
"hide": "Ezkutatu",
"show_image": "Erakutsi irudia",
"show_gif": "Erakutsi GIFa",
"show_video_player": "Erakutsi bideo-erreproduzigailua",
"tap_then_hold_to_show_menu": "Sakatu eta eutsi menua erakusteko"
"hide": "Ezkutatu"
},
"tag": {
"url": "URLa",
@ -446,12 +440,6 @@
"title": "Desblokeatu kontua",
"message": "Berretsi %s desblokeatzea"
}
},
"accessibility": {
"show_avatar_image": "Erakutsi abatarra",
"edit_avatar_image": "Editatu abatarra",
"show_banner_image": "Erakutsi banner irudia",
"double_tap_to_open_the_list": "Sakatu birritan zerrenda irekitzeko"
}
},
"follower": {
@ -493,16 +481,6 @@
"clear": "Garbitu"
}
},
"discovery": {
"tabs": {
"posts": "Argitalpenak",
"hashtags": "Traolak",
"news": "Albisteak",
"community": "Community",
"for_you": "Zuretzat"
},
"intro": "These are the posts gaining traction in your corner of Mastodon."
},
"favorite": {
"title": "Zure gogokoak"
},
@ -513,8 +491,8 @@
},
"notification_description": {
"followed_you": "zu jarraitzen hasi da",
"favorited_your_post": "(e)k zure bidalketa gogoko du",
"reblogged_your_post": "(e)k bultzada eman dio zure bidalketari",
"favorited_your_post": "erabiltzaileak zure bidalketa gogoko du",
"reblogged_your_post": "erabiltzaileak bultzada eman dio zure bidalketari",
"mentioned_you": "erabiltzaileak aipatu zaitu",
"request_to_follow_you": "erabiltzaileak zu jarraitzea eskatu du",
"poll_has_ended": "inkesta amaitu da"
@ -563,8 +541,7 @@
"true_black_dark_mode": "Benetako modu beltz iluna",
"disable_avatar_animation": "Desgaitu abatar animatuak",
"disable_emoji_animation": "Desgaitu emoji animatuak",
"using_default_browser": "Erabili nabigatzaile lehenetsia estekak irekitzeko",
"open_links_in_mastodon": "Ireki estekak Mastodonen"
"using_default_browser": "Erabili nabigatzaile lehenetsia estekak irekitzeko"
},
"boring_zone": {
"title": "Eremu aspergarria",

View File

@ -1,406 +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 unread notification</string>
<key>other</key>
<string>%ld unread notification</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>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>other</key>
<string>%ld characters</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>other</key>
<string>posts</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>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>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>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>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>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>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>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>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>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>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>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>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>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>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>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>1y ago</string>
<key>other</key>
<string>%ldy ago</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>1M ago</string>
<key>other</key>
<string>%ldM ago</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>1d ago</string>
<key>other</key>
<string>%ldd ago</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>1h ago</string>
<key>other</key>
<string>%ldh ago</string>
</dict>
</dict>
<key>date.minute.ago.abbr</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_minute_ago_abbr@</string>
<key>count_minute_ago_abbr</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1m ago</string>
<key>other</key>
<string>%ldm ago</string>
</dict>
</dict>
<key>date.second.ago.abbr</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_second_ago_abbr@</string>
<key>count_second_ago_abbr</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1s ago</string>
<key>other</key>
<string>%lds ago</string>
</dict>
</dict>
</dict>
</plist>

View File

@ -1,619 +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."
}
},
"controls": {
"actions": {
"back": "Back",
"next": "Next",
"previous": "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": "Sign In",
"sign_up": "Sign Up",
"see_more": "See More",
"preview": "Preview",
"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": "Block %s",
"unblock_domain": "Unblock %s",
"settings": "Settings",
"delete": "Delete"
},
"tabs": {
"home": "Home",
"search": "Search",
"notification": "Notification",
"profile": "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": "Sensitive Content",
"media_content_warning": "Tap anywhere to reveal",
"tap_to_reveal": "Tap to reveal",
"poll": {
"vote": "Vote",
"closed": "Closed"
},
"actions": {
"reply": "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",
"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."
}
},
"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"
},
"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": "Get Started",
"log_in": "Log In"
},
"server_picker": {
"title": "Mastodon is made of users in different servers.",
"subtitle": "Pick a server based on your interests, region, or a general purpose one.",
"subtitle_extend": "Pick a server based on your interests, region, or a general purpose one. Each server is operated by an entirely independent organization or individual.",
"button": {
"category": {
"all": "All",
"all_accessiblity_description": "Category: All",
"academia": "academia",
"activism": "activism",
"food": "food",
"furry": "furry",
"games": "games",
"general": "general",
"journalism": "journalism",
"lgbt": "lgbt",
"regional": "regional",
"art": "art",
"music": "music",
"tech": "tech"
},
"see_less": "See Less",
"see_more": "See More"
},
"label": {
"language": "LANGUAGE",
"users": "USERS",
"category": "CATEGORY"
},
"input": {
"placeholder": "Search servers"
},
"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",
"input": {
"avatar": {
"delete": "Delete"
},
"username": {
"placeholder": "username",
"duplicate_prompt": "This username is taken."
},
"display_name": {
"placeholder": "display name"
},
"email": {
"placeholder": "email"
},
"password": {
"placeholder": "password",
"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": "Username",
"email": "Email",
"password": "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.",
"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..."
}
},
"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..."
},
"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"
},
"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"
},
"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": {
"dashboard": {
"posts": "posts",
"following": "following",
"followers": "followers"
},
"fields": {
"add_row": "Add Row",
"placeholder": {
"label": "Label",
"content": "Content"
}
},
"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"
}
},
"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": {
"footer": "Followers from other servers are not displayed."
},
"following": {
"footer": "Follows from other servers are not displayed."
},
"search": {
"title": "Search",
"search_bar": {
"placeholder": "Search hashtags and users",
"cancel": "Cancel"
},
"recommend": {
"button_text": "See All",
"hash_tag": {
"title": "Trending on Mastodon",
"description": "Hashtags that are getting quite a bit of attention",
"people_talking": "%s people are talking"
},
"accounts": {
"title": "Accounts you might like",
"description": "You may like to follow these accounts",
"follow": "Follow"
}
},
"searching": {
"segment": {
"all": "All",
"people": "People",
"hashtags": "Hashtags",
"posts": "Posts"
},
"empty_state": {
"no_results": "No results"
},
"recent_search": "Recent searches",
"clear": "Clear"
}
},
"discovery": {
"tabs": {
"posts": "Posts",
"hashtags": "Hashtags",
"news": "News",
"community": "Community",
"for_you": "For You"
},
"intro": "These are the posts gaining traction in your corner of Mastodon."
},
"favorite": {
"title": "Your Favorites"
},
"notification": {
"title": {
"Everything": "Everything",
"Mentions": "Mentions"
},
"notification_description": {
"followed_you": "followed you",
"favorited_your_post": "favorited your post",
"reblogged_your_post": "reblogged your post",
"mentioned_you": "mentioned you",
"request_to_follow_you": "request to follow you",
"poll_has_ended": "poll has ended"
},
"keyobard": {
"show_everything": "Show Everything",
"show_mentions": "Show Mentions"
}
},
"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"
},
"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"
}
}
}

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

@ -114,22 +114,6 @@
<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 réponse</string>
<key>other</key>
<string>%ld réponses</string>
</dict>
</dict>
<key>plural.count.vote</key>
<dict>
<key>NSStringLocalizedFormatKey</key>

View File

@ -129,9 +129,7 @@
"show_post": "Montrer la publication",
"show_user_profile": "Montrer le profil de lutilisateur·rice",
"content_warning": "Avertissement de contenu",
"sensitive_content": "Sensitive Content",
"media_content_warning": "Tapotez nimporte où pour révéler la publication",
"tap_to_reveal": "Appuyer pour afficher",
"poll": {
"vote": "Voter",
"closed": "Fermé"
@ -143,11 +141,7 @@
"favorite": "Favori",
"unfavorite": "Retirer des favoris",
"menu": "Menu",
"hide": "Cacher",
"show_image": "Afficher limage",
"show_gif": "Afficher le GIF",
"show_video_player": "Afficher le lecteur vidéo",
"tap_then_hold_to_show_menu": "Tap then hold to show menu"
"hide": "Cacher"
},
"tag": {
"url": "URL",
@ -446,12 +440,6 @@
"title": "Débloquer le compte",
"message": "Confirmer le déblocage de %s"
}
},
"accessibility": {
"show_avatar_image": "Afficher lavatar",
"edit_avatar_image": "Modifier lavatar",
"show_banner_image": "Afficher limage de la bannière",
"double_tap_to_open_the_list": "Appuyer deux fois pour ouvrir la liste"
}
},
"follower": {
@ -493,16 +481,6 @@
"clear": "Effacer"
}
},
"discovery": {
"tabs": {
"posts": "Messages",
"hashtags": "Hashtags",
"news": "Actualité",
"community": "Community",
"for_you": "Pour vous"
},
"intro": "These are the posts gaining traction in your corner of Mastodon."
},
"favorite": {
"title": "Vos favoris"
},
@ -563,8 +541,7 @@
"true_black_dark_mode": "Vrai mode sombre",
"disable_avatar_animation": "Désactiver les avatars animés",
"disable_emoji_animation": "Désactiver les émojis animées",
"using_default_browser": "Utiliser le navigateur par défaut pour ouvrir les liens",
"open_links_in_mastodon": "Ouvrir les liens dans Mastodon"
"using_default_browser": "Utiliser le navigateur par défaut pour ouvrir les liens"
},
"boring_zone": {
"title": "La zone ennuyante",

View File

@ -142,26 +142,6 @@
<string>%ld brosnachadh</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>%ld fhreagairt</string>
<key>two</key>
<string>%ld fhreagairt</string>
<key>few</key>
<string>%ld freagairtean</string>
<key>other</key>
<string>%ld freagairt</string>
</dict>
</dict>
<key>plural.count.vote</key>
<dict>
<key>NSStringLocalizedFormatKey</key>

View File

@ -129,9 +129,7 @@
"show_post": "Seall am post",
"show_user_profile": "Seall pròifil a chleachdaiche",
"content_warning": "Rabhadh susbainte",
"sensitive_content": "Susbaint fhrionasach",
"media_content_warning": "Thoir gnogag àite sam bith gus a nochdadh",
"tap_to_reveal": "Thoir gnogag gus a nochdadh",
"poll": {
"vote": "Cuir bhòt",
"closed": "Dùinte"
@ -143,11 +141,7 @@
"favorite": "Cuir ris na h-annsachdan",
"unfavorite": "Thoir air falbh o na h-annsachdan",
"menu": "Clàr-taice",
"hide": "Falaich",
"show_image": "Seall an dealbh",
"show_gif": "Seall an GIF",
"show_video_player": "Seall cluicheadair video",
"tap_then_hold_to_show_menu": "Thoir gnogag s cùm sìos a shealltainn a chlàir-thaice"
"hide": "Falaich"
},
"tag": {
"url": "URL",
@ -446,12 +440,6 @@
"title": "Dì-bhac an cunntas",
"message": "Dearbh dì-bhacadh %s"
}
},
"accessibility": {
"show_avatar_image": "Seall dealbh an avatar",
"edit_avatar_image": "Deasaich dealbh an avatar",
"show_banner_image": "Seall dealbh brataich",
"double_tap_to_open_the_list": "Thoir gnogag dhùbailte a dhfhosgladh na liosta"
}
},
"follower": {
@ -493,16 +481,6 @@
"clear": "Falamhaich"
}
},
"discovery": {
"tabs": {
"posts": "Postaichean",
"hashtags": "Tagaichean hais",
"news": "Naidheachdan",
"community": "Community",
"for_you": "Dhut-sa"
},
"intro": "Seo na postaichean fèillmhor nad cheàrnaidh de Mhastodon."
},
"favorite": {
"title": "Na h-annsachdan agad"
},
@ -563,8 +541,7 @@
"true_black_dark_mode": "Modh dubh dorcha",
"disable_avatar_animation": "Cuir beothachadh nan avataran à comas",
"disable_emoji_animation": "Cuir beothachadh nan Emojis à comas",
"using_default_browser": "Cleachd am brabhsair bunaiteach airson ceanglaichean fhosgladh",
"open_links_in_mastodon": "Fosgail ceanglaichean ann am Mastodon"
"using_default_browser": "Cleachd am brabhsair bunaiteach airson ceanglaichean fhosgladh"
},
"boring_zone": {
"title": "An earrann ràsanach",

View File

@ -1,406 +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 unread notification</string>
<key>other</key>
<string>%ld unread notification</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>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>other</key>
<string>%ld characters</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>other</key>
<string>posts</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>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>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>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>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>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>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>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>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>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>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>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>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>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>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>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>1y ago</string>
<key>other</key>
<string>%ldy ago</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>1M ago</string>
<key>other</key>
<string>%ldM ago</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>1d ago</string>
<key>other</key>
<string>%ldd ago</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>1h ago</string>
<key>other</key>
<string>%ldh ago</string>
</dict>
</dict>
<key>date.minute.ago.abbr</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_minute_ago_abbr@</string>
<key>count_minute_ago_abbr</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1m ago</string>
<key>other</key>
<string>%ldm ago</string>
</dict>
</dict>
<key>date.second.ago.abbr</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_second_ago_abbr@</string>
<key>count_second_ago_abbr</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1s ago</string>
<key>other</key>
<string>%lds ago</string>
</dict>
</dict>
</dict>
</plist>

View File

@ -1,619 +0,0 @@
{
"common": {
"alerts": {
"common": {
"please_try_again": "Inténtao de novo.",
"please_try_again_later": "Inténtao de novo máis tarde."
},
"sign_up_failure": {
"title": "Fallou o rexistro"
},
"server_error": {
"title": "Erro do servidor"
},
"vote_failure": {
"title": "Fallou a votación",
"poll_ended": "A enquisa rematou"
},
"discard_post_content": {
"title": "Descartar Borrador",
"message": "Confirma que queres descartar o contido do borrador."
},
"publish_post_failure": {
"title": "Fallou a publicación",
"message": "Fallou a publicación.\nComproba a conexión a internet.",
"attachments_message": {
"video_attach_with_photo": "Non podes anexar un vídeo a unha publicación que xa contén imaxes.",
"more_than_one_video": "Non podes anexar máis de un vídeo."
}
},
"edit_profile_failure": {
"title": "Erro ao editar o perfil",
"message": "Non se editou o perfil. Inténtao máis tarde."
},
"sign_out": {
"title": "Pechar sesión",
"message": "Tes a certeza de queres pechar a sesión?",
"confirm": "Pechar sesión"
},
"block_domain": {
"title": "Tes a certeza de querer bloquear todo de %s? Na meirande parte dos casos uns bloqueos ou silenciados específicos son suficientes e preferibles. Non verás máis o contido deste dominio en ningunha cronoloxía pública e as túas seguidoras deste dominio serán eliminadas.",
"block_entire_domain": "Bloquear Dominio"
},
"save_photo_failure": {
"title": "Erro ao gardar a fotografía",
"message": "Activa o permiso de acceso á galería de fotos para gardar a foto."
},
"delete_post": {
"title": "Eliminar publicación",
"message": "Tes a certeza de querer eliminar esta publicación?"
},
"clean_cache": {
"title": "Limpar caché",
"message": "Baleirouse %s da caché correctamente."
}
},
"controls": {
"actions": {
"back": "Volver",
"next": "Seguinte",
"previous": "Anterior",
"open": "Abrir",
"add": "Engadir",
"remove": "Eliminar",
"edit": "Editar",
"save": "Gardar",
"ok": "OK",
"done": "Feito",
"confirm": "Confirmar",
"continue": "Continuar",
"compose": "Escribir",
"cancel": "Cancelar",
"discard": "Descartar",
"try_again": "Intentar de novo",
"take_photo": "Facer foto",
"save_photo": "Gardar foto",
"copy_photo": "Copiar foto",
"sign_in": "Acceder",
"sign_up": "Inscribirse",
"see_more": "Ver máis",
"preview": "Vista previa",
"share": "Compartir",
"share_user": "Compartir %s",
"share_post": "Compartir publicación",
"open_in_safari": "Abrir en Safari",
"open_in_browser": "Abrir no navegador",
"find_people": "Atopar persoas para seguir",
"manually_search": "Buscar de xeito manual",
"skip": "Omitir",
"reply": "Responder",
"report_user": "Denunciar a %s",
"block_domain": "Bloquear a %s",
"unblock_domain": "Desbloquear a %s",
"settings": "Axustes",
"delete": "Eliminar"
},
"tabs": {
"home": "Inicio",
"search": "Busca",
"notification": "Notificación",
"profile": "Perfil"
},
"keyboard": {
"common": {
"switch_to_tab": "Cambiar a %s",
"compose_new_post": "Escribir Nova publicación",
"show_favorites": "Mostrar Favoritos",
"open_settings": "Abrir axustes"
},
"timeline": {
"previous_status": "Publicación anterior",
"next_status": "Publicación seguinte",
"open_status": "Abrir publicación",
"open_author_profile": "Ver Perfil da autora",
"open_reblogger_profile": "Ver perfil de quen promoveu",
"reply_status": "Responder á publicación",
"toggle_reblog": "Promover a publicación",
"toggle_favorite": "Engadir publicación a Favoritas",
"toggle_content_warning": "Marcar con Aviso sobre o contido",
"preview_image": "Previsualización da imaxe"
},
"segmented_control": {
"previous_section": "Sección anterior",
"next_section": "Sección seguinte"
}
},
"status": {
"user_reblogged": "%s promoveu",
"user_replied_to": "Respondeu a %s",
"show_post": "Mostrar publicación",
"show_user_profile": "Mostrar perfil da usuaria",
"content_warning": "Aviso sobre o contido",
"sensitive_content": "Contido sensible",
"media_content_warning": "Toca nalgures para mostrar",
"tap_to_reveal": "Toca para mostrar",
"poll": {
"vote": "Votar",
"closed": "Pechada"
},
"actions": {
"reply": "Responder",
"reblog": "Promover",
"unreblog": "Retirar promoción",
"favorite": "Favorecer",
"unfavorite": "Eliminar dos favoritos",
"menu": "Menú",
"hide": "Agochar",
"show_image": "Mostrar a imaxe",
"show_gif": "Mostrar GIF",
"show_video_player": "Mostrar reprodutor de vídeo",
"tap_then_hold_to_show_menu": "Toca e mantén preso para menú"
},
"tag": {
"url": "URL",
"mention": "Mención",
"link": "Ligazón",
"hashtag": "Cancelo",
"email": "Email",
"emoji": "Emoticona"
},
"visibility": {
"unlisted": "A publicación é visible para calquera pero non aparece na cronoloxía pública.",
"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."
}
},
"friendship": {
"follow": "Seguir",
"following": "Seguindo",
"request": "Solicitar",
"pending": "Pendente",
"block": "Bloquear",
"block_user": "Bloquear a %s",
"block_domain": "Bloquear a %s",
"unblock": "Desbloquear",
"unblock_user": "Desbloquear a %s",
"blocked": "Bloqueada",
"mute": "Acalar",
"mute_user": "Acalar a %s",
"unmute": "Non Acalar",
"unmute_user": "Deixar de acalar a @%s",
"muted": "Acalada",
"edit_info": "Editar info"
},
"timeline": {
"filtered": "Filtrado",
"timestamp": {
"now": "Agora"
},
"loader": {
"load_missing_posts": "Cargar publicacións que faltan",
"loading_missing_posts": "Cargando as publicacións que faltan...",
"show_more_replies": "Mostrar máis respostas"
},
"header": {
"no_status_found": "Non se atopa a publicación",
"blocking_warning": "Non podes ver o perfil da usuaria\nata que a desbloquees.\nAsí ven outras o teu perfil.",
"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": "Comezar",
"log_in": "Acceder"
},
"server_picker": {
"title": "Mastodon fórmano as persoas das diferentes comunidades.",
"subtitle": "Elixe unha comunidade en función dos teus intereses, rexión ou unha de propósito xeral.",
"subtitle_extend": "Elixe unha comunidade en función dos teus intereses, rexión ou unha de propósito xeral. Cada comunidade está xestionada por unha organización totalmente independente ou unha única persoa.",
"button": {
"category": {
"all": "Todo",
"all_accessiblity_description": "Categoría: Todo",
"academia": "academia",
"activism": "activismo",
"food": "comida",
"furry": "peluxos",
"games": "xogos",
"general": "xeral",
"journalism": "xornalismo",
"lgbt": "lgbt",
"regional": "rexional",
"art": "arte",
"music": "música",
"tech": "tecnoloxía"
},
"see_less": "Ver menos",
"see_more": "Ver máis"
},
"label": {
"language": "IDIOMA",
"users": "USUARIAS",
"category": "CATEGORÍA"
},
"input": {
"placeholder": "Buscar comunidades"
},
"empty_state": {
"finding_servers": "Buscando servidores dispoñibles...",
"bad_network": "Algo fallou ao cargar os datos. Comproba a conexión a internet.",
"no_results": "Sen resultados"
}
},
"register": {
"title": "Imos crear a túa conta en %s",
"input": {
"avatar": {
"delete": "Eliminar"
},
"username": {
"placeholder": "identificador",
"duplicate_prompt": "Este nome de usuaria xa está en uso."
},
"display_name": {
"placeholder": "nome público"
},
"email": {
"placeholder": "email"
},
"password": {
"placeholder": "contrasinal",
"require": "O contrasinal debe ter polo menos:",
"character_limit": "8 caracteres",
"accessibility": {
"checked": "validado",
"unchecked": "non validado"
},
"hint": "O teu contrasinal debe ter cando menos oito caracteres"
},
"invite": {
"registration_user_invite_request": "Por que queres unirte?"
}
},
"error": {
"item": {
"username": "Identificador",
"email": "Email",
"password": "Contrasinal",
"agreement": "Acordo",
"locale": "Locale",
"reason": "Razón"
},
"reason": {
"blocked": "%s é un provedor de email non autorizado",
"unreachable": "%s semella que non existe",
"taken": "%s xa está en uso",
"reserved": "%s é unha palabra reservada",
"accepted": "%s debe ser aceptado",
"blank": "%s é requerido",
"invalid": "%s non é válido",
"too_long": "%s é demasiado longo",
"too_short": "%s é demasiado curto",
"inclusion": "%s non é un valor soportado"
},
"special": {
"username_invalid": "O nome de usuaria só pode ter caracteres alfanuméricos e trazos baixos",
"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.",
"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..."
}
},
"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..."
},
"poll": {
"duration_time": "Duration: %s",
"thirty_minutes": "30 minutes",
"one_hour": "1 Hour",
"six_hours": "6 Hours",
"one_day": "1 Día",
"three_days": "3 Días",
"seven_days": "7 Días",
"option_number": "Opción %ld"
},
"content_warning": {
"placeholder": "Escribe o teu aviso aquí..."
},
"visibility": {
"public": "Público",
"unlisted": "Non listado",
"private": "Só para seguidoras",
"direct": "Só para persoas mencionadas"
},
"auto_complete": {
"space_to_add": "Barra de espazo engade"
},
"accessibility": {
"append_attachment": "Engadir anexo",
"append_poll": "Engadir enquisa",
"remove_poll": "Eliminar enquisa",
"custom_emoji_picker": "Selector emoji personalizado",
"enable_content_warning": "Marcar con Aviso sobre o contido",
"disable_content_warning": "Retirar Aviso sobre o contido",
"post_visibility_menu": "Visibilidade da publicación"
},
"keyboard": {
"discard_post": "Descartar publicación",
"publish_post": "Publicar",
"toggle_poll": "Activar enquisa",
"toggle_content_warning": "Marcar con Aviso sobre o contido",
"append_attachment_entry": "Engadir anexo - %s",
"select_visibility_entry": "Elexir visibilidade - %s"
}
},
"profile": {
"dashboard": {
"posts": "publicacións",
"following": "seguindo",
"followers": "seguidoras"
},
"fields": {
"add_row": "Engadir fila",
"placeholder": {
"label": "Etiqueta",
"content": "Contido"
}
},
"segmented_control": {
"posts": "Publicacións",
"replies": "Respostas",
"posts_and_replies": "Publicacións e respostas",
"media": "Multimedia",
"about": "Acerca de"
},
"relationship_action_alert": {
"confirm_mute_user": {
"title": "Acalar conta",
"message": "Confirma Acalar a %s"
},
"confirm_unmute_user": {
"title": "Retirar acalado da Conta",
"message": "Confirma restablecer a %s"
},
"confirm_block_user": {
"title": "Bloquear Conta",
"message": "Confirma o bloqueo de %s"
},
"confirm_unblock_user": {
"title": "Desbloquear Conta",
"message": "Confirma o desbloqueo de %s"
}
},
"accessibility": {
"show_avatar_image": "Mostrar imaxe de avatar",
"edit_avatar_image": "Editar imaxe de avatar",
"show_banner_image": "Mostrar imaxe de cabeceira",
"double_tap_to_open_the_list": "Dous toques para abrir a lista"
}
},
"follower": {
"footer": "Non se mostran seguidoras desde outros servidores."
},
"following": {
"footer": "Non se mostran os seguimentos desde outros servidores."
},
"search": {
"title": "Procurar",
"search_bar": {
"placeholder": "Buscar cancelos e usuarias",
"cancel": "Cancelar"
},
"recommend": {
"button_text": "Ver todo",
"hash_tag": {
"title": "En voga en Mastodon",
"description": "Cancelos que están recibindo moita atención",
"people_talking": "%s persoas están comentando"
},
"accounts": {
"title": "Contas que poderían gustarche",
"description": "Mira se che interesan estas contas",
"follow": "Seguir"
}
},
"searching": {
"segment": {
"all": "Todo",
"people": "Persoas",
"hashtags": "Cancelos",
"posts": "Publicacións"
},
"empty_state": {
"no_results": "Sen resultados"
},
"recent_search": "Buscas recentes",
"clear": "Limpar"
}
},
"discovery": {
"tabs": {
"posts": "Publicacións",
"hashtags": "Cancelos",
"news": "Novas",
"community": "Comunidade",
"for_you": "For You"
},
"intro": "These are the posts gaining traction in your corner of Mastodon."
},
"favorite": {
"title": "Your Favorites"
},
"notification": {
"title": {
"Everything": "Everything",
"Mentions": "Mentions"
},
"notification_description": {
"followed_you": "followed you",
"favorited_your_post": "favorited your post",
"reblogged_your_post": "reblogged your post",
"mentioned_you": "mentioned you",
"request_to_follow_you": "request to follow you",
"poll_has_ended": "poll has ended"
},
"keyobard": {
"show_everything": "Show Everything",
"show_mentions": "Show Mentions"
}
},
"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": "Denunciar",
"title": "Denunciar a %s",
"step1": "Paso 1 de 2",
"step2": "Paso 2 de 2",
"content1": "Hai outras publicacións que desexes engadir á denuncia?",
"content2": "Hai algo que a moderación deba saber acerca desta denuncia?",
"report_sent_title": "Grazas pola denuncia, investigarémola.",
"send": "Enviar Denuncia",
"skip_to_send": "Enviar sen comentarios",
"text_placeholder": "Escribe ou pega comentarios adicionais",
"reported": "DENUNCIADO"
},
"preview": {
"keyboard": {
"close_preview": "Pechar vista previa",
"show_next": "Mostrar Seguinte",
"show_previous": "Mostar Anterior"
}
},
"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"
}
}
}

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

@ -114,22 +114,6 @@
<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>other</key>
<string>%ld replies</string>
</dict>
</dict>
<key>plural.count.vote</key>
<dict>
<key>NSStringLocalizedFormatKey</key>

View File

@ -2,8 +2,8 @@
"common": {
"alerts": {
"common": {
"please_try_again": "कृपया फिर से प्रयास करें।",
"please_try_again_later": "बाद में फिर से प्रयास करें।"
"please_try_again": "Please try again.",
"please_try_again_later": "Please try again later."
},
"sign_up_failure": {
"title": "Sign Up Failure"
@ -45,7 +45,7 @@
"message": "Please enable the photo library access permission to save the photo."
},
"delete_post": {
"title": "पोस्ट को हटाएं",
"title": "Delete Post",
"message": "Are you sure you want to delete this post?"
},
"clean_cache": {
@ -129,9 +129,7 @@
"show_post": "Show Post",
"show_user_profile": "Show user profile",
"content_warning": "Content Warning",
"sensitive_content": "Sensitive Content",
"media_content_warning": "Tap anywhere to reveal",
"tap_to_reveal": "Tap to reveal",
"poll": {
"vote": "Vote",
"closed": "Closed"
@ -143,11 +141,7 @@
"favorite": "Favorite",
"unfavorite": "Unfavorite",
"menu": "Menu",
"hide": "Hide",
"show_image": "Show image",
"show_gif": "Show GIF",
"show_video_player": "Show video player",
"tap_then_hold_to_show_menu": "Tap then hold to show menu"
"hide": "Hide"
},
"tag": {
"url": "URL",
@ -211,9 +205,9 @@
"log_in": "Log In"
},
"server_picker": {
"title": "Mastodon is made of users in different servers.",
"subtitle": "Pick a server based on your interests, region, or a general purpose one.",
"subtitle_extend": "Pick a server based on your interests, region, or a general purpose one. Each server is operated by an entirely independent organization or individual.",
"title": "Mastodon is made of users in different communities.",
"subtitle": "Pick a community based on your interests, region, or a general purpose one.",
"subtitle_extend": "Pick a community based on your interests, region, or a general purpose one. Each community is operated by an entirely independent organization or individual.",
"button": {
"category": {
"all": "All",
@ -240,7 +234,7 @@
"category": "CATEGORY"
},
"input": {
"placeholder": "Search servers"
"placeholder": "Search communities"
},
"empty_state": {
"finding_servers": "Finding available servers...",
@ -446,12 +440,6 @@
"title": "Unblock Account",
"message": "Confirm to unblock %s"
}
},
"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": {
@ -493,16 +481,6 @@
"clear": "Clear"
}
},
"discovery": {
"tabs": {
"posts": "Posts",
"hashtags": "Hashtags",
"news": "News",
"community": "Community",
"for_you": "For You"
},
"intro": "These are the posts gaining traction in your corner of Mastodon."
},
"favorite": {
"title": "Your Favorites"
},
@ -563,8 +541,7 @@
"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"
"using_default_browser": "Use default browser to open links"
},
"boring_zone": {
"title": "The Boring Zone",

View File

@ -100,20 +100,6 @@
<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>other</key>
<string>%ld replies</string>
</dict>
</dict>
<key>plural.count.vote</key>
<dict>
<key>NSStringLocalizedFormatKey</key>

View File

@ -2,8 +2,8 @@
"common": {
"alerts": {
"common": {
"please_try_again": "Silakan coba lagi.",
"please_try_again_later": "Silakan coba lagi nanti."
"please_try_again": "Harap coba lagi.",
"please_try_again_later": "Coba lagi nanti."
},
"sign_up_failure": {
"title": "Sign Up Failure"
@ -129,9 +129,7 @@
"show_post": "Tampilkan Postingan",
"show_user_profile": "Tampilkan Profil Pengguna",
"content_warning": "Peringatan Konten",
"sensitive_content": "Sensitive Content",
"media_content_warning": "Ketuk di mana saja untuk melihat",
"tap_to_reveal": "Tap to reveal",
"poll": {
"vote": "Vote",
"closed": "Ditutup"
@ -143,11 +141,7 @@
"favorite": "Favorit",
"unfavorite": "Unfavorite",
"menu": "Menu",
"hide": "Hide",
"show_image": "Show image",
"show_gif": "Show GIF",
"show_video_player": "Show video player",
"tap_then_hold_to_show_menu": "Tap then hold to show menu"
"hide": "Hide"
},
"tag": {
"url": "URL",
@ -212,8 +206,8 @@
},
"server_picker": {
"title": "Pilih sebuah server,\nserver manapun.",
"subtitle": "Pick a server based on your interests, region, or a general purpose one.",
"subtitle_extend": "Pick a server based on your interests, region, or a general purpose one. Each server is operated by an entirely independent organization or individual.",
"subtitle": "Pick a community based on your interests, region, or a general purpose one.",
"subtitle_extend": "Pick a community based on your interests, region, or a general purpose one. Each community is operated by an entirely independent organization or individual.",
"button": {
"category": {
"all": "Semua",
@ -240,7 +234,7 @@
"category": "KATEGORI"
},
"input": {
"placeholder": "Search servers"
"placeholder": "Search communities"
},
"empty_state": {
"finding_servers": "Mencari server yang tersedia...",
@ -446,12 +440,6 @@
"title": "Unblock Account",
"message": "Confirm to unblock %s"
}
},
"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": {
@ -493,16 +481,6 @@
"clear": "Hapus"
}
},
"discovery": {
"tabs": {
"posts": "Posts",
"hashtags": "Hashtags",
"news": "News",
"community": "Community",
"for_you": "For You"
},
"intro": "These are the posts gaining traction in your corner of Mastodon."
},
"favorite": {
"title": "Your Favorites"
},
@ -563,8 +541,7 @@
"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"
"using_default_browser": "Use default browser to open links"
},
"boring_zone": {
"title": "Zona Membosankan",

View File

@ -13,15 +13,15 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 notifica non letta</string>
<string>1 unread notification</string>
<key>other</key>
<string>%ld notifiche non lette</string>
<string>%ld unread notification</string>
</dict>
</dict>
<key>a11y.plural.count.input_limit_exceeds</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>Il limite di input supera %#@character_count@</string>
<string>Input limit exceeds %#@character_count@</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
@ -29,15 +29,15 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 carattere</string>
<string>1 character</string>
<key>other</key>
<string>%ld caratteri</string>
<string>%ld characters</string>
</dict>
</dict>
<key>a11y.plural.count.input_limit_remains</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>Il limite di input rimane %#@character_count@</string>
<string>Input limit remains %#@character_count@</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
@ -45,9 +45,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 carattere</string>
<string>1 character</string>
<key>other</key>
<string>%ld caratteri</string>
<string>%ld characters</string>
</dict>
</dict>
<key>plural.count.metric_formatted.post</key>
@ -63,7 +63,7 @@
<key>one</key>
<string>post</string>
<key>other</key>
<string>post</string>
<string>posts</string>
</dict>
</dict>
<key>plural.count.post</key>
@ -79,7 +79,7 @@
<key>one</key>
<string>1 post</string>
<key>other</key>
<string>%ld post</string>
<string>%ld posts</string>
</dict>
</dict>
<key>plural.count.favorite</key>
@ -93,9 +93,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 preferito</string>
<string>1 favorite</string>
<key>other</key>
<string>%ld preferiti</string>
<string>%ld favorites</string>
</dict>
</dict>
<key>plural.count.reblog</key>
@ -109,25 +109,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 condivisione</string>
<string>1 reblog</string>
<key>other</key>
<string>%ld condivisioni</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 risposta</string>
<key>other</key>
<string>%ld risposte</string>
<string>%ld reblogs</string>
</dict>
</dict>
<key>plural.count.vote</key>
@ -141,9 +125,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 voto</string>
<string>1 vote</string>
<key>other</key>
<string>%ld voti</string>
<string>%ld votes</string>
</dict>
</dict>
<key>plural.count.voter</key>
@ -157,9 +141,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 votante</string>
<string>1 voter</string>
<key>other</key>
<string>%ld votanti</string>
<string>%ld voters</string>
</dict>
</dict>
<key>plural.people_talking</key>
@ -173,9 +157,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 persona ne parla</string>
<string>1 people talking</string>
<key>other</key>
<string>%ld persone ne parlano</string>
<string>%ld people talking</string>
</dict>
</dict>
<key>plural.count.following</key>
@ -191,7 +175,7 @@
<key>one</key>
<string>1 following</string>
<key>other</key>
<string>%ld stanno seguendo</string>
<string>%ld following</string>
</dict>
</dict>
<key>plural.count.follower</key>
@ -205,9 +189,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 seguace</string>
<string>1 follower</string>
<key>other</key>
<string>%ld seguaci</string>
<string>%ld followers</string>
</dict>
</dict>
<key>date.year.left</key>
@ -221,9 +205,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 anno rimasto</string>
<string>1 year left</string>
<key>other</key>
<string>%ld anni rimasti</string>
<string>%ld years left</string>
</dict>
</dict>
<key>date.month.left</key>
@ -237,9 +221,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 mese rimasto</string>
<string>1 months left</string>
<key>other</key>
<string>%ld mesi rimasti</string>
<string>%ld months left</string>
</dict>
</dict>
<key>date.day.left</key>
@ -253,9 +237,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 giorno rimasto</string>
<string>1 day left</string>
<key>other</key>
<string>%ld giorni rimasti</string>
<string>%ld days left</string>
</dict>
</dict>
<key>date.hour.left</key>
@ -269,9 +253,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 ora rimasta</string>
<string>1 hour left</string>
<key>other</key>
<string>%ld ore rimaste</string>
<string>%ld hours left</string>
</dict>
</dict>
<key>date.minute.left</key>
@ -285,9 +269,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 minuto rimasto</string>
<string>1 minute left</string>
<key>other</key>
<string>%ld minuti rimasti</string>
<string>%ld minutes left</string>
</dict>
</dict>
<key>date.second.left</key>
@ -301,9 +285,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 secondo rimasto</string>
<string>1 second left</string>
<key>other</key>
<string>%ld secondi rimasti</string>
<string>%ld seconds left</string>
</dict>
</dict>
<key>date.year.ago.abbr</key>
@ -317,9 +301,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 anno fa</string>
<string>1y ago</string>
<key>other</key>
<string>%ld anni fa</string>
<string>%ldy ago</string>
</dict>
</dict>
<key>date.month.ago.abbr</key>
@ -333,9 +317,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 mese fa</string>
<string>1M ago</string>
<key>other</key>
<string>%ld mesi fa</string>
<string>%ldM ago</string>
</dict>
</dict>
<key>date.day.ago.abbr</key>
@ -349,9 +333,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 giorno fa</string>
<string>1d ago</string>
<key>other</key>
<string>%ld giorni fa</string>
<string>%ldd ago</string>
</dict>
</dict>
<key>date.hour.ago.abbr</key>
@ -365,9 +349,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 ora fa</string>
<string>1h ago</string>
<key>other</key>
<string>%ld ore fa</string>
<string>%ldh ago</string>
</dict>
</dict>
<key>date.minute.ago.abbr</key>
@ -381,9 +365,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 minuto fa</string>
<string>1m ago</string>
<key>other</key>
<string>%ld minuti fa</string>
<string>%ldm ago</string>
</dict>
</dict>
<key>date.second.ago.abbr</key>
@ -397,9 +381,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 secondo fa</string>
<string>1s ago</string>
<key>other</key>
<string>%ld secondi fa</string>
<string>%lds ago</string>
</dict>
</dict>
</dict>

View File

@ -2,618 +2,595 @@
"common": {
"alerts": {
"common": {
"please_try_again": "Per favore riprova.",
"please_try_again_later": "Per favore, riprova più tardi."
"please_try_again": "Please try again.",
"please_try_again_later": "Please try again later."
},
"sign_up_failure": {
"title": "Iscrizione fallita"
"title": "Sign Up Failure"
},
"server_error": {
"title": "Errore del server"
"title": "Server Error"
},
"vote_failure": {
"title": "Voto fallito",
"poll_ended": "Il sondaggio è terminato"
"title": "Vote Failure",
"poll_ended": "The poll has ended"
},
"discard_post_content": {
"title": "Elimina bozza",
"message": "Confermare di scartare il contenuto del post composto."
"title": "Discard Draft",
"message": "Confirm to discard composed post content."
},
"publish_post_failure": {
"title": "Pubblicazione fallita",
"message": "Pubblicazione del post fallita.\nPer favore verifica la tua connessione internet.",
"title": "Publish Failure",
"message": "Failed to publish the post.\nPlease check your internet connection.",
"attachments_message": {
"video_attach_with_photo": "Impossibile allegare un filmato a un post che contiene già immagini.",
"more_than_one_video": "Impossibile allegare più di un filmato."
"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": "Errore nella modifica del profilo",
"message": "Impossibile modificare il profilo. Per favore, riprova."
"title": "Edit Profile Error",
"message": "Cannot edit profile. Please try again."
},
"sign_out": {
"title": "Esci",
"message": "Vuoi davvero scollegarti?",
"confirm": "Esci"
"title": "Sign Out",
"message": "Are you sure you want to sign out?",
"confirm": "Sign Out"
},
"block_domain": {
"title": "Vuoi davvero bloccare %s completamente? Nella maggioranza dei casi, è preferibile e sufficiente bloccare o silenziare pochi account in modo mirato. Non vedrai i contenuti di quel dominio e tutti i tuoi follower da quel dominio verranno rimossi.",
"block_entire_domain": "Blocca il dominio"
"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": "Salvataggio foto fallito",
"message": "Si prega di abilitare l'autorizzazione di accesso alla galleria immagini per salvare la foto."
"title": "Save Photo Failure",
"message": "Please enable the photo library access permission to save the photo."
},
"delete_post": {
"title": "Cancella il post",
"message": "Vuoi veramente eliminare questo post?"
"title": "Delete Post",
"message": "Are you sure you want to delete this post?"
},
"clean_cache": {
"title": "Pulisci la cache",
"message": "Cache %s pulita con successo."
"title": "Clean Cache",
"message": "Successfully cleaned %s cache."
}
},
"controls": {
"actions": {
"back": "Indietro",
"next": "Avanti",
"previous": "Precedente",
"open": "Apri",
"add": "Aggiungi",
"remove": "Rimuovi",
"edit": "Modifica",
"save": "Salva",
"back": "Back",
"next": "Next",
"previous": "Previous",
"open": "Open",
"add": "Add",
"remove": "Remove",
"edit": "Edit",
"save": "Save",
"ok": "OK",
"done": "Fatto",
"confirm": "Conferma",
"continue": "Continua",
"compose": "Scrivi",
"cancel": "Annulla",
"discard": "Abbandona",
"try_again": "Riprova",
"take_photo": "Scatta foto",
"save_photo": "Salva foto",
"copy_photo": "Copia foto",
"sign_in": "Accedi",
"sign_up": "Registrati",
"see_more": "Visualizza altro",
"preview": "Anteprima",
"share": "Condividi",
"share_user": "Condividi %s",
"share_post": "Condividi il post",
"open_in_safari": "Apri su Safari",
"open_in_browser": "Apri nel browser",
"find_people": "Trova persone da seguire",
"manually_search": "Cerca manualmente invece",
"skip": "Salta",
"reply": "Rispondi",
"report_user": "Segnala %s",
"block_domain": "Blocca %s",
"unblock_domain": "Sblocca %s",
"settings": "Impostazioni",
"delete": "Elimina"
"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": "Sign In",
"sign_up": "Sign Up",
"see_more": "See More",
"preview": "Preview",
"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": "Block %s",
"unblock_domain": "Unblock %s",
"settings": "Settings",
"delete": "Delete"
},
"tabs": {
"home": "Inizio",
"search": "Cerca",
"notification": "Notifiche",
"profile": "Profilo"
"home": "Home",
"search": "Search",
"notification": "Notification",
"profile": "Profile"
},
"keyboard": {
"common": {
"switch_to_tab": "Passa a %s",
"compose_new_post": "Componi un nuovo post",
"show_favorites": "Mostra preferiti",
"open_settings": "Apri Impostazioni"
"switch_to_tab": "Switch to %s",
"compose_new_post": "Compose New Post",
"show_favorites": "Show Favorites",
"open_settings": "Open Settings"
},
"timeline": {
"previous_status": "Post precedente",
"next_status": "Post successivo",
"open_status": "Apri il post",
"open_author_profile": "Apri il profilo dell'autore",
"open_reblogger_profile": "Apri il profilo di chi ha condiviso",
"reply_status": "Rispondi al post",
"toggle_reblog": "Attiva/Disattiva condivisione sul post",
"toggle_favorite": "Attiva/Disattiva preferito nel post",
"toggle_content_warning": "Attiva/Disattiva avvertimento contenuti",
"preview_image": "Anteprima immagine"
"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": "Sezione precedente",
"next_section": "Sezione successiva"
"previous_section": "Previous Section",
"next_section": "Next Section"
}
},
"status": {
"user_reblogged": "%s hanno condiviso",
"user_replied_to": "Rispondi a %s",
"show_post": "Mostra il post",
"show_user_profile": "Mostra il profilo dell'utente",
"content_warning": "Avviso sul contenuto",
"sensitive_content": "Contenuto sensibile",
"media_content_warning": "Tocca ovunque per rivelare",
"tap_to_reveal": "Tocca per rivelare",
"user_reblogged": "%s reblogged",
"user_replied_to": "Replied to %s",
"show_post": "Show Post",
"show_user_profile": "Show user profile",
"content_warning": "Content Warning",
"media_content_warning": "Tap anywhere to reveal",
"poll": {
"vote": "Vota",
"closed": "Chiuso"
"vote": "Vote",
"closed": "Closed"
},
"actions": {
"reply": "Rispondi",
"reblog": "Condivisione",
"unreblog": "Annulla condivisione",
"favorite": "Preferito",
"unfavorite": "Non preferito",
"menu": "Menù",
"hide": "Nascondi",
"show_image": "Mostra immagine",
"show_gif": "Mostra GIF",
"show_video_player": "Mostra lettore video",
"tap_then_hold_to_show_menu": "Tocca quindi tieni premuto per mostrare il menu"
"reply": "Reply",
"reblog": "Reblog",
"unreblog": "Undo reblog",
"favorite": "Favorite",
"unfavorite": "Unfavorite",
"menu": "Menu",
"hide": "Hide"
},
"tag": {
"url": "URL",
"mention": "Menzione",
"link": "Collegamento",
"hashtag": "Etichetta",
"mention": "Mention",
"link": "Link",
"hashtag": "Hashtag",
"email": "Email",
"emoji": "Emoji"
},
"visibility": {
"unlisted": "Tutti possono vedere questo post ma non mostrare nella cronologia pubblica.",
"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."
"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": {
"follow": "Segui",
"following": "Stai seguendo",
"request": "Richiesta",
"pending": "In attesa",
"block": "Blocca",
"block_user": "Blocca %s",
"block_domain": "Blocca %s",
"unblock": "Sblocca",
"unblock_user": "Sblocca %s",
"blocked": "Bloccato",
"mute": "Silenzia",
"mute_user": "Silenzia %s",
"unmute": "Riattiva",
"unmute_user": "Riattiva %s",
"muted": "Silenziato",
"edit_info": "Modifica info"
"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"
},
"timeline": {
"filtered": "Filtrato",
"filtered": "Filtered",
"timestamp": {
"now": "Ora"
"now": "Now"
},
"loader": {
"load_missing_posts": "Carica i post mancanti",
"loading_missing_posts": "Caricamento post mancanti...",
"show_more_replies": "Mostra più risposte"
"load_missing_posts": "Load missing posts",
"loading_missing_posts": "Loading missing posts...",
"show_more_replies": "Show more replies"
},
"header": {
"no_status_found": "Nessun post trovato",
"blocking_warning": "Non puoi visualizzare il profilo di questo utente\nfinché non li sblocchi.\nIl tuo profilo sembra questo per loro.",
"user_blocking_warning": "Non puoi visualizzare il profilo di %s\nfinché non li sblocchi.\nIl tuo profilo sembra questo per loro.",
"blocked_warning": "Non puoi visualizzare il profilo di questo utente\nfino a quando non ti sbloccano.",
"user_blocked_warning": "Non puoi visualizzare il profilo di %s\nfino a quando non ti sbloccano.",
"suspended_warning": "Questo utente è stato sospeso.",
"user_suspended_warning": "L'account di %s è stato sospeso."
"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": "Il social network, di nuovo nelle tue mani.",
"get_started": "Inizia",
"log_in": "Accedi"
"slogan": "Social networking\nback in your hands.",
"get_started": "Get Started",
"log_in": "Log In"
},
"server_picker": {
"title": "Mastodon è fatto di utenti in diverse comunità.",
"subtitle": "Scegli una comunità basata sui tuoi interessi, regione o uno scopo generale.",
"subtitle_extend": "Scegli una comunità basata sui tuoi interessi, regione o uno scopo generale. Ogni comunità è gestita da un'organizzazione completamente indipendente o individuale.",
"title": "Mastodon is made of users in different communities.",
"subtitle": "Pick a community based on your interests, region, or a general purpose one.",
"subtitle_extend": "Pick a community based on your interests, region, or a general purpose one. Each community is operated by an entirely independent organization or individual.",
"button": {
"category": {
"all": "Tutti",
"all_accessiblity_description": "Categoria: Tutti",
"academia": "accademia",
"activism": "attivismo",
"food": "cibo",
"furry": "peloso",
"games": "giochi",
"general": "generale",
"journalism": "giornalismo",
"all": "All",
"all_accessiblity_description": "Category: All",
"academia": "academia",
"activism": "activism",
"food": "food",
"furry": "furry",
"games": "games",
"general": "general",
"journalism": "journalism",
"lgbt": "lgbt",
"regional": "locale",
"art": "arte",
"music": "musica",
"tech": "tecnologia"
"regional": "regional",
"art": "art",
"music": "music",
"tech": "tech"
},
"see_less": "Vedi meno",
"see_more": "Vedi di più"
"see_less": "See Less",
"see_more": "See More"
},
"label": {
"language": "LINGUA",
"users": "UTENTI",
"category": "CATEGORIA"
"language": "LANGUAGE",
"users": "USERS",
"category": "CATEGORY"
},
"input": {
"placeholder": "Cerca comunità"
"placeholder": "Search communities"
},
"empty_state": {
"finding_servers": "Ricerca server disponibili...",
"bad_network": "Qualcosa è andato storto durante il caricamento dei dati. Controlla la tua connessione internet.",
"no_results": "Nessun risultato"
"finding_servers": "Finding available servers...",
"bad_network": "Something went wrong while loading the data. Check your internet connection.",
"no_results": "No results"
}
},
"register": {
"title": "Facciamo in modo che sia configurato il %s",
"title": "Lets get you set up on %s",
"input": {
"avatar": {
"delete": "Elimina"
"delete": "Delete"
},
"username": {
"placeholder": "nome utente",
"duplicate_prompt": "Questo nome utente è già stato preso."
"placeholder": "username",
"duplicate_prompt": "This username is taken."
},
"display_name": {
"placeholder": "visualizza nome"
"placeholder": "display name"
},
"email": {
"placeholder": "email"
},
"password": {
"placeholder": "password",
"require": "La tua password ha bisogno di almeno:",
"character_limit": "8 caratteri",
"require": "Your password needs at least:",
"character_limit": "8 characters",
"accessibility": {
"checked": "verificato",
"unchecked": "non verificato"
"checked": "checked",
"unchecked": "unchecked"
},
"hint": "La tua password deve essere di almeno 8 caratteri"
"hint": "Your password needs at least eight characters"
},
"invite": {
"registration_user_invite_request": "Perché vuoi unirti?"
"registration_user_invite_request": "Why do you want to join?"
}
},
"error": {
"item": {
"username": "Nome utente",
"username": "Username",
"email": "Email",
"password": "Password",
"agreement": "Accordo",
"agreement": "Agreement",
"locale": "Locale",
"reason": "Motivo"
"reason": "Reason"
},
"reason": {
"blocked": "%s contiene un provider email non consentito",
"unreachable": "%s non sembra esistere",
"taken": "%s è già in uso",
"reserved": "%s è una parola chiave riservata",
"accepted": "%s deve essere accettato",
"blank": "%s è richiesto",
"invalid": "%s non è valido",
"too_long": "%s è troppo lungo",
"too_short": "%s è troppo corto",
"inclusion": "%s non è un valore supportato"
"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": "Il nome utente deve contenere solo caratteri alfanumerici e trattini bassi",
"username_too_long": "Il nome utente è troppo lungo (non può essere più lungo di 30 caratteri)",
"email_invalid": "Questo non è un indirizzo email valido",
"password_too_short": "La password è troppo corta (deve contenere almeno 8 caratteri)"
"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": "Alcune regole di base.",
"subtitle": "Questi sono impostati e applicati dai moderatori %s.",
"prompt": "Continuando, sei soggetto alle condizioni di servizio e all'informativa sulla privacy per %s.",
"terms_of_service": "condizioni del servizio",
"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": "Accetto"
"confirm": "I Agree"
}
},
"confirm_email": {
"title": "Un'ultima cosa.",
"subtitle": "Tocca il link che ti abbiamo inviato per verificare il tuo account.",
"title": "One last thing.",
"subtitle": "Tap the link we emailed to you to verify your account.",
"button": {
"open_email_app": "Apri l'app Email",
"resend": "Invia di nuovo"
"open_email_app": "Open Email App",
"resend": "Resend"
},
"dont_receive_email": {
"title": "Controlla la tua e-mail",
"description": "Controlla se il tuo indirizzo email sia corretto, così come la tua cartella spazzatura se non ce l'hai.",
"resend_email": "Invia e-mail di nuovo"
"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": "Controlla la tua posta in arrivo.",
"description": "Ti abbiamo appena inviato un'email. Controlla la tua cartella spazzatura se non ce l'hai.",
"mail": "Posta",
"open_email_client": "Apri client Email"
"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": "Inizio",
"title": "Home",
"navigation_bar_state": {
"offline": "Non in linea",
"new_posts": "Vedi nuovi post",
"published": "Pubblicato!",
"Publishing": "Pubblicazione post..."
"offline": "Offline",
"new_posts": "See new posts",
"published": "Published!",
"Publishing": "Publishing post..."
}
},
"suggestion_account": {
"title": "Trova alcune persone da seguire",
"follow_explain": "Quando segui qualcuno, vedrai i loro post nella tua home feed."
"title": "Find People to Follow",
"follow_explain": "When you follow someone, youll see their posts in your home feed."
},
"compose": {
"title": {
"new_post": "Nuovo post",
"new_reply": "Nuova risposta"
"new_post": "New Post",
"new_reply": "New Reply"
},
"media_selection": {
"camera": "Scatta foto",
"photo_library": "Libreria foto",
"browse": "Sfoglia"
"camera": "Take Photo",
"photo_library": "Photo Library",
"browse": "Browse"
},
"content_input_placeholder": "Digita o incolla quello che hai in mente",
"compose_action": "Pubblica",
"replying_to_user": "rispondendo a %s",
"content_input_placeholder": "Type or paste whats on your mind",
"compose_action": "Publish",
"replying_to_user": "replying to %s",
"attachment": {
"photo": "foto",
"video": "filmato",
"attachment_broken": "Questo %s è rotto e non può essere\ncaricato su Mastodon.",
"description_photo": "Descrivi la foto per gli utenti ipovedenti...",
"description_video": "Descrivi il filmato per gli utenti ipovedenti..."
"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..."
},
"poll": {
"duration_time": "Durata: %s",
"thirty_minutes": "30 minuti",
"one_hour": "1 ora",
"six_hours": "6 ore",
"one_day": "1 giorno",
"three_days": "3 giorni",
"seven_days": "7 giorni",
"option_number": "Opzione %ld"
"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"
},
"content_warning": {
"placeholder": "Scrivi un avviso accurato qui..."
"placeholder": "Write an accurate warning here..."
},
"visibility": {
"public": "Pubblico",
"unlisted": "Non elencato",
"private": "Solo i seguaci",
"direct": "Solo le persone che menziono"
"public": "Public",
"unlisted": "Unlisted",
"private": "Followers only",
"direct": "Only people I mention"
},
"auto_complete": {
"space_to_add": "Spazio da aggiungere"
"space_to_add": "Space to add"
},
"accessibility": {
"append_attachment": "Aggiungi allegato",
"append_poll": "Aggiungi sondaggio",
"remove_poll": "Elimina sondaggio",
"custom_emoji_picker": "Selettore Emoji personalizzato",
"enable_content_warning": "Abilita avvertimento contenuti",
"disable_content_warning": "Disabilita avviso di contenuti",
"post_visibility_menu": "Menu di visibilità del post"
"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"
},
"keyboard": {
"discard_post": "Scarta post",
"publish_post": "Pubblica il post",
"toggle_poll": "Attiva/Disattiva Sondaggio",
"toggle_content_warning": "Attiva/Disattiva avviso contenuti",
"append_attachment_entry": "Aggiungi allegato - %s",
"select_visibility_entry": "Seleziona visibilità - %s"
"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": {
"dashboard": {
"posts": "post",
"following": "seguendo",
"followers": "seguaci"
"posts": "posts",
"following": "following",
"followers": "followers"
},
"fields": {
"add_row": "Aggiungi riga",
"add_row": "Add Row",
"placeholder": {
"label": "Etichetta",
"content": "Contenuto"
"label": "Label",
"content": "Content"
}
},
"segmented_control": {
"posts": "Post",
"replies": "Risposte",
"posts_and_replies": "Post e risposte",
"posts": "Posts",
"replies": "Replies",
"posts_and_replies": "Posts and Replies",
"media": "Media",
"about": "Info su"
"about": "About"
},
"relationship_action_alert": {
"confirm_mute_user": {
"title": "Silenzia account",
"message": "Confermi di silenziare %s"
"title": "Mute Account",
"message": "Confirm to mute %s"
},
"confirm_unmute_user": {
"title": "Riattiva account",
"message": "Confermi di riattivare %s"
"title": "Unmute Account",
"message": "Confirm to unmute %s"
},
"confirm_block_user": {
"title": "Blocca account",
"message": "Confermi di bloccare %s"
"title": "Block Account",
"message": "Confirm to block %s"
},
"confirm_unblock_user": {
"title": "Sblocca account",
"message": "Conferma per sbloccare %s"
"title": "Unblock Account",
"message": "Confirm to unblock %s"
}
},
"accessibility": {
"show_avatar_image": "Mostra immagine avatar",
"edit_avatar_image": "Modifica immagine avatar",
"show_banner_image": "Mostra immagine banner",
"double_tap_to_open_the_list": "Doppio tocco per aprire la lista"
}
},
"follower": {
"footer": "I seguaci da altri server non vengono visualizzati."
"footer": "Followers from other servers are not displayed."
},
"following": {
"footer": "I follow da altri server non vengono visualizzati."
"footer": "Follows from other servers are not displayed."
},
"search": {
"title": "Cerca",
"title": "Search",
"search_bar": {
"placeholder": "Cerca hashtag e utenti",
"cancel": "Annulla"
"placeholder": "Search hashtags and users",
"cancel": "Cancel"
},
"recommend": {
"button_text": "Vedi tutto",
"button_text": "See All",
"hash_tag": {
"title": "Di tendenza su Mastodon",
"description": "Hashtag che stanno ottenendo un bel po' di attenzione",
"people_talking": "%s persone ne parlano"
"title": "Trending on Mastodon",
"description": "Hashtags that are getting quite a bit of attention",
"people_talking": "%s people are talking"
},
"accounts": {
"title": "Account che potrebbero piacerti",
"description": "Potresti voler seguire questi account",
"follow": "Segui"
"title": "Accounts you might like",
"description": "You may like to follow these accounts",
"follow": "Follow"
}
},
"searching": {
"segment": {
"all": "Tutto",
"people": "Persone",
"all": "All",
"people": "People",
"hashtags": "Hashtags",
"posts": "Post"
"posts": "Posts"
},
"empty_state": {
"no_results": "Nessun risultato"
"no_results": "No results"
},
"recent_search": "Ricerche recenti",
"clear": "Cancella"
"recent_search": "Recent searches",
"clear": "Clear"
}
},
"discovery": {
"tabs": {
"posts": "Post",
"hashtags": "Hashtag",
"news": "Notizie",
"community": "Comunità",
"for_you": "Per Te"
},
"intro": "Questi sono i post che stanno guadagnando popolarità nel tuo angolo di Mastodon."
},
"favorite": {
"title": "I tuoi preferiti"
"title": "Your Favorites"
},
"notification": {
"title": {
"Everything": "Tutto",
"Mentions": "Menzioni"
"Everything": "Everything",
"Mentions": "Mentions"
},
"notification_description": {
"followed_you": "ti ha seguito",
"favorited_your_post": "ha apprezzato il tuo post",
"reblogged_your_post": "ha ripostato il tuo post",
"mentioned_you": "ti ha menzionato",
"request_to_follow_you": "richiesta di seguirti",
"poll_has_ended": "sondaggio terminato"
"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": "Mostra Tutto",
"show_mentions": "Mostra Menzioni"
"show_everything": "Show Everything",
"show_mentions": "Show Mentions"
}
},
"thread": {
"back_title": "Post",
"title": "Post da %s"
"title": "Post from %s"
},
"settings": {
"title": "Impostazioni",
"title": "Settings",
"section": {
"appearance": {
"title": "Aspetto",
"automatic": "Automatico",
"light": "Sempre chiaro",
"dark": "Sempre scuro"
"title": "Appearance",
"automatic": "Automatic",
"light": "Always Light",
"dark": "Always Dark"
},
"look_and_feel": {
"title": "Look and Feel",
"use_system": "Predefinito di sistema",
"really_dark": "Davvero scuro",
"sorta_dark": "Un po' scuro",
"light": "Chiaro"
"use_system": "Use System",
"really_dark": "Really Dark",
"sorta_dark": "Sorta Dark",
"light": "Light"
},
"notifications": {
"title": "Notifiche",
"favorites": "Apprezza i miei post",
"follows": "Mi segue",
"boosts": "Condivide i miei post",
"mentions": "Mi menziona",
"title": "Notifications",
"favorites": "Favorites my post",
"follows": "Follows me",
"boosts": "Reblogs my post",
"mentions": "Mentions me",
"trigger": {
"anyone": "chiunque",
"follower": "un seguace",
"follow": "chiunque io segua",
"noone": "nessuno",
"title": "Avvisami quando"
"anyone": "anyone",
"follower": "a follower",
"follow": "anyone I follow",
"noone": "no one",
"title": "Notify me when"
}
},
"preference": {
"title": "Preferenze",
"true_black_dark_mode": "Modalità molto scura",
"disable_avatar_animation": "Disabilita avatar animati",
"disable_emoji_animation": "Disabilita emoji animate",
"using_default_browser": "Usa browser predefinito per aprire i collegamenti",
"open_links_in_mastodon": "Apri i link in Mastodon"
"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"
},
"boring_zone": {
"title": "La zona boring",
"account_settings": "Impostazioni account",
"terms": "Termini di servizio",
"privacy": "Politica sulla Privacy"
"title": "The Boring Zone",
"account_settings": "Account Settings",
"terms": "Terms of Service",
"privacy": "Privacy Policy"
},
"spicy_zone": {
"title": "La zona piccante",
"clear": "Cancella la cache multimediale",
"signout": "Esci"
"title": "The Spicy Zone",
"clear": "Clear Media Cache",
"signout": "Sign Out"
}
},
"footer": {
"mastodon_description": "Mastodon è un software open source. Puoi segnalare problemi su GitHub a %s (%s)"
"mastodon_description": "Mastodon is open source software. You can report issues on GitHub at %s (%s)"
},
"keyboard": {
"close_settings_window": "Chiudi la finestra Impostazioni"
"close_settings_window": "Close Settings Window"
}
},
"report": {
"title_report": "Segnala",
"title": "Segnala %s",
"step1": "Fase 1 di 2",
"step2": "Fase 2 di 2",
"content1": "Ci sono altri post che vorresti aggiungere alla segnalazione?",
"content2": "C'è qualcosa che i moderatori dovrebbero sapere su questa segnalazione?",
"report_sent_title": "Grazie per la segnalazione, esamineremo questo aspetto.",
"send": "Invia segnalazione",
"skip_to_send": "Invia senza commento",
"text_placeholder": "Digita o incolla commenti aggiuntivi",
"reported": "SEGNALATO"
"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"
},
"preview": {
"keyboard": {
"close_preview": "Chiudi anteprima",
"show_next": "Mostra successivo",
"show_previous": "Mostra precedente"
"close_preview": "Close Preview",
"show_next": "Show Next",
"show_previous": "Show Previous"
}
},
"account_list": {
"tab_bar_hint": "Profilo corrente selezionato: %s. Doppio tocco e tieni premuto per mostrare il cambio account",
"dismiss_account_switcher": "Ignora il cambio account",
"add_account": "Aggiungi account"
"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": "Nuovo su Mastodon",
"multiple_account_switch_intro_description": "Passa tra più account tenendo premuto il pulsante del profilo.",
"accessibility_hint": "Doppio tocco per eliminare questa procedura guidata"
"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"
}
}
}

View File

@ -1,6 +1,6 @@
{
"NSCameraUsageDescription": "Usato per scattare foto per lo stato del post",
"NSPhotoLibraryAddUsageDescription": "Utilizzato per salvare la foto nella galleria immagini",
"NewPostShortcutItemTitle": "Nuovo post",
"SearchShortcutItemTitle": "Cerca"
"NSCameraUsageDescription": "Used to take photo for post status",
"NSPhotoLibraryAddUsageDescription": "Used to save photo into the Photo Library",
"NewPostShortcutItemTitle": "New Post",
"SearchShortcutItemTitle": "Search"
}

View File

@ -100,20 +100,6 @@
<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 replies</string>
</dict>
</dict>
<key>plural.count.vote</key>
<dict>
<key>NSStringLocalizedFormatKey</key>

View File

@ -86,7 +86,7 @@
"find_people": "フォローする人を見つける",
"manually_search": "手動で検索する",
"skip": "スキップ",
"reply": "返信",
"reply": "リプライ",
"report_user": "%sを通報",
"block_domain": "%sをブロック",
"unblock_domain": "%sのブロックを解除",
@ -125,29 +125,23 @@
},
"status": {
"user_reblogged": "%sがブースト",
"user_replied_to": "%sに返信",
"user_replied_to": "%sがリプライ",
"show_post": "投稿を見る",
"show_user_profile": "プロフィールを見る",
"content_warning": "コンテンツ警告",
"sensitive_content": "Sensitive Content",
"media_content_warning": "どこかをタップして表示",
"tap_to_reveal": "Tap to reveal",
"poll": {
"vote": "投票",
"closed": "クローズド"
},
"actions": {
"reply": "返信",
"reply": "リプライ",
"reblog": "ブースト",
"unreblog": "ブーストを戻す",
"favorite": "お気に入り",
"unfavorite": "お気に入り登録を取り消す",
"menu": "メニュー",
"hide": "非表示",
"show_image": "Show image",
"show_gif": "Show GIF",
"show_video_player": "Show video player",
"tap_then_hold_to_show_menu": "Tap then hold to show menu"
"hide": "非表示"
},
"tag": {
"url": "URL",
@ -190,7 +184,7 @@
"loader": {
"load_missing_posts": "不足している投稿を読み込む",
"loading_missing_posts": "読込中...",
"show_more_replies": "返信をさらに表示"
"show_more_replies": "リプライをもっとみる"
},
"header": {
"no_status_found": "投稿が見つかりません",
@ -352,7 +346,7 @@
"compose": {
"title": {
"new_post": "新しい投稿",
"new_reply": "新しい返信"
"new_reply": "新しいリプライ"
},
"media_selection": {
"camera": "写真を撮る",
@ -361,7 +355,7 @@
},
"content_input_placeholder": "気になることを入力またはペースト",
"compose_action": "投稿",
"replying_to_user": "%sに返信",
"replying_to_user": "%sにリプライ",
"attachment": {
"photo": "写真",
"video": "動画",
@ -424,10 +418,10 @@
},
"segmented_control": {
"posts": "投稿",
"replies": "返信",
"posts_and_replies": "投稿と返信",
"replies": "リプライ",
"posts_and_replies": "Posts and Replies",
"media": "メディア",
"about": "概要"
"about": "About"
},
"relationship_action_alert": {
"confirm_mute_user": {
@ -446,12 +440,6 @@
"title": "Unblock Account",
"message": "Confirm to unblock %s"
}
},
"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": {
@ -493,16 +481,6 @@
"clear": "クリア"
}
},
"discovery": {
"tabs": {
"posts": "投稿",
"hashtags": "ハッシュタグ",
"news": "ニュース",
"community": "Community",
"for_you": "For You"
},
"intro": "These are the posts gaining traction in your corner of Mastodon."
},
"favorite": {
"title": "お気に入り"
},
@ -563,8 +541,7 @@
"true_black_dark_mode": "真っ黒なダークテーマを使用する",
"disable_avatar_animation": "アバターのアニメーションを無効化する",
"disable_emoji_animation": "絵文字のアニメーションを無効化する",
"using_default_browser": "既定のブラウザでリンクを開く",
"open_links_in_mastodon": "Open links in Mastodon"
"using_default_browser": "既定のブラウザでリンクを開く"
},
"boring_zone": {
"title": "アプリについて",
@ -586,17 +563,17 @@
}
},
"report": {
"title_report": "報告する",
"title_report": "Report",
"title": "%sを通報",
"step1": "ステップ 1/2",
"step2": "ステップ 2/2",
"content1": "他に通報したい投稿はありますか?",
"content2": "この通報についてモデレーターに伝達しておきたい事項はありますか?",
"report_sent_title": "ご報告ありがとうございます、追って確認します。",
"report_sent_title": "Thanks for reporting, well look into this.",
"send": "通報を送信",
"skip_to_send": "コメントなしで送信",
"text_placeholder": "追加コメントを入力",
"reported": "報告済み"
"reported": "REPORTED"
},
"preview": {
"keyboard": {

View File

@ -114,22 +114,6 @@
<string>%ld n uɛiwed n usuffeɣ</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 tririt</string>
<key>other</key>
<string>%ld tririyin</string>
</dict>
</dict>
<key>plural.count.vote</key>
<dict>
<key>NSStringLocalizedFormatKey</key>

View File

@ -129,9 +129,7 @@
"show_post": "Sken-d tasuffeɣt",
"show_user_profile": "Ssken-d amaɣnu n useqdac",
"content_warning": "Alɣu n ugbur",
"sensitive_content": "Agbur amḥulfu",
"media_content_warning": "Sit anida tebɣiḍ i wakken ad twaliḍ",
"tap_to_reveal": "Sit i uskan",
"poll": {
"vote": "Dɣeṛ",
"closed": "Ifukk"
@ -143,11 +141,7 @@
"favorite": "Anurif",
"unfavorite": "Kkes seg yismenyifen",
"menu": "Umuɣ",
"hide": "Ffer",
"show_image": "Sken tugna",
"show_gif": "Sken GIF",
"show_video_player": "Sken ameɣri n tvidyut",
"tap_then_hold_to_show_menu": "Sit teǧǧeḍ aḍad-ik•im i wakken ad d-iffeɣ wumuɣ"
"hide": "Ffer"
},
"tag": {
"url": "URL",
@ -221,7 +215,7 @@
"academia": "akadimi",
"activism": "tinuɣmest",
"food": "učči",
"furry": "s taḍut",
"furry": "furry",
"games": "uraren",
"general": "amatu",
"journalism": "taɣamsa",
@ -446,12 +440,6 @@
"title": "Kkes asewḥel i umiḍan",
"message": "Sentem tukksa n usgugem i %s"
}
},
"accessibility": {
"show_avatar_image": "Sken tugna n avaṭar",
"edit_avatar_image": "Ẓreg tugna n avaṭar",
"show_banner_image": "Sken tugna n uɣerrac",
"double_tap_to_open_the_list": "Sin isitiyen i twaledyawt n tebdart"
}
},
"follower": {
@ -493,16 +481,6 @@
"clear": "Sfeḍ"
}
},
"discovery": {
"tabs": {
"posts": "Tisuffaɣ",
"hashtags": "Ihacṭagen",
"news": "Isallen",
"community": "Community",
"for_you": "I kečč·kem"
},
"intro": "Tigi d tisuffaɣ i d-ijebbden s waṭas deg tama-inek•inem n Mastodon."
},
"favorite": {
"title": "Ismenyifen-ik·im"
},
@ -563,8 +541,7 @@
"true_black_dark_mode": "Askar aberkan n tidet",
"disable_avatar_animation": "Sens ivaṭaren yettembiwilen",
"disable_emoji_animation": "Sens imujiten yettembiwilen",
"using_default_browser": "Seqdec iminig amezwer i twaledyawt n yiseɣwan",
"open_links_in_mastodon": "Ldi iseɣwan deg Mastodon"
"using_default_browser": "Seqdec iminig amezwer i twaledyawt n yiseɣwan"
},
"boring_zone": {
"title": "Tamnaḍt yessefcalen",

View File

@ -114,22 +114,6 @@
<string>%ld ji nû ve nivîsandin</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 bersiv</string>
<key>other</key>
<string>%ld bersiv</string>
</dict>
</dict>
<key>plural.count.vote</key>
<dict>
<key>NSStringLocalizedFormatKey</key>

View File

@ -129,9 +129,7 @@
"show_post": "Şandiyê nîşan bide",
"show_user_profile": "Profîla bikarhêner nîşan bide",
"content_warning": "Hişyariya naverokê",
"sensitive_content": "Naveroka hestiyarî",
"media_content_warning": "Ji bo eşkerekirinê li derekî bitikîne",
"tap_to_reveal": "Ji bo dîtinê bitikîne",
"poll": {
"vote": "Deng bide",
"closed": "Girtî"
@ -143,11 +141,7 @@
"favorite": "Bijarte",
"unfavorite": "Nebijarte",
"menu": "Kulîn",
"hide": "Veşêre",
"show_image": "Wêneyê nîşan bide",
"show_gif": "GIF nîşan bide",
"show_video_player": "Lêdera vîdyoyê nîşan bide",
"tap_then_hold_to_show_menu": "Ji bo nîşandana menuyê dirêj bitikîne"
"hide": "Veşêre"
},
"tag": {
"url": "URL",
@ -446,12 +440,6 @@
"title": "Astengiyê li ser ajimêr rake",
"message": "Ji bo rakirina astengkirinê %s bipejirîne"
}
},
"accessibility": {
"show_avatar_image": "Wêneya avatar nîşan bide",
"edit_avatar_image": "Wêneya avatar serrast bike",
"show_banner_image": "Wêneya paşrûyê nîşan bide",
"double_tap_to_open_the_list": "Ducaran bitikîne bo vekirina listeyê"
}
},
"follower": {
@ -493,16 +481,6 @@
"clear": "Pak bike"
}
},
"discovery": {
"tabs": {
"posts": "Şandî",
"hashtags": "Hashtag",
"news": "Nûçe",
"community": "Civak",
"for_you": "Ji bo te"
},
"intro": "Ev şandiyên ku di quncika Mastodon balê dikişîne."
},
"favorite": {
"title": "Bijarteyên te"
},
@ -563,8 +541,7 @@
"true_black_dark_mode": "Moda tarî ya reş a rastîn",
"disable_avatar_animation": "Avatarên anîmasyonî neçalak bike",
"disable_emoji_animation": "Emojiyên anîmasyonî neçalak bike",
"using_default_browser": "Ji bo vekirina girêdanan geroka berdest bi kar bîne",
"open_links_in_mastodon": "Girêdanan di Mastodon de veke"
"using_default_browser": "Ji bo vekirina girêdanan geroka berdest bi kar bîne"
},
"boring_zone": {
"title": "Devera acizker",

View File

@ -100,20 +100,6 @@
<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 replies</string>
</dict>
</dict>
<key>plural.count.vote</key>
<dict>
<key>NSStringLocalizedFormatKey</key>

View File

@ -129,9 +129,7 @@
"show_post": "게시물 보기",
"show_user_profile": "사용자 프로필 보기",
"content_warning": "열람 주의",
"sensitive_content": "Sensitive Content",
"media_content_warning": "Tap anywhere to reveal",
"tap_to_reveal": "Tap to reveal",
"poll": {
"vote": "투표",
"closed": "마감"
@ -143,11 +141,7 @@
"favorite": "즐겨찾기",
"unfavorite": "즐겨찾기 해제",
"menu": "메뉴",
"hide": "Hide",
"show_image": "Show image",
"show_gif": "Show GIF",
"show_video_player": "Show video player",
"tap_then_hold_to_show_menu": "Tap then hold to show menu"
"hide": "Hide"
},
"tag": {
"url": "URL",
@ -212,8 +206,8 @@
},
"server_picker": {
"title": "서버를 고르세요,\n아무 서버나 좋습니다.",
"subtitle": "Pick a server based on your interests, region, or a general purpose one.",
"subtitle_extend": "Pick a server based on your interests, region, or a general purpose one. Each server is operated by an entirely independent organization or individual.",
"subtitle": "Pick a community based on your interests, region, or a general purpose one.",
"subtitle_extend": "Pick a community based on your interests, region, or a general purpose one. Each community is operated by an entirely independent organization or individual.",
"button": {
"category": {
"all": "모두",
@ -240,7 +234,7 @@
"category": "분류"
},
"input": {
"placeholder": "Search servers"
"placeholder": "Search communities"
},
"empty_state": {
"finding_servers": "Finding available servers...",
@ -446,12 +440,6 @@
"title": "Unblock Account",
"message": "Confirm to unblock %s"
}
},
"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": {
@ -493,16 +481,6 @@
"clear": "Clear"
}
},
"discovery": {
"tabs": {
"posts": "Posts",
"hashtags": "Hashtags",
"news": "News",
"community": "Community",
"for_you": "For You"
},
"intro": "These are the posts gaining traction in your corner of Mastodon."
},
"favorite": {
"title": "Your Favorites"
},
@ -563,8 +541,7 @@
"true_black_dark_mode": "트루 블랙 어두운 모드",
"disable_avatar_animation": "움직이는 아바타 비활성화",
"disable_emoji_animation": "움직이는 에모지 비활성화",
"using_default_browser": "기본 브라우저로 링크 열기",
"open_links_in_mastodon": "Open links in Mastodon"
"using_default_browser": "기본 브라우저로 링크 열기"
},
"boring_zone": {
"title": "지루한 영역",

View File

@ -114,22 +114,6 @@
<string>%ld gedeelde berichten</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>other</key>
<string>%ld replies</string>
</dict>
</dict>
<key>plural.count.vote</key>
<dict>
<key>NSStringLocalizedFormatKey</key>

View File

@ -16,37 +16,37 @@
"poll_ended": "De peiling is beëindigd"
},
"discard_post_content": {
"title": "Verwijder concept",
"title": "Concept Verwijderen",
"message": "Bevestig het verwijderen van het concept bericht."
},
"publish_post_failure": {
"title": "Publicatiefout",
"message": "Het publiceren van het bericht is mislukt. Controleer je internetverbinding.",
"message": "Het publiceren van het bericht is mislukt. Controleer alstublieft uw internetverbinding.",
"attachments_message": {
"video_attach_with_photo": "Een video kan niet aan een bericht met afbeeldingen worden gekoppeld.",
"more_than_one_video": "Kan niet meer dan één video toevoegen."
"more_than_one_video": "Slechts één video kan aan een bericht worden gekoppeld."
}
},
"edit_profile_failure": {
"title": "Profiel bewerken mislukt",
"message": "Je profiel kan niet bewerkt worden. Probeer het opnieuw."
"message": "Het profiel kan niet bewerkt worden. Probeer het opnieuw."
},
"sign_out": {
"title": "Log-uit",
"message": "Weet je zeker dat je wilt uitloggen?",
"confirm": "Log-uit"
"title": "Afmelden",
"message": "Weet u zeker dat u zich wilt afmelden?",
"confirm": "Afmelden"
},
"block_domain": {
"title": "Weet je het echt heel erg zeker dat je alles van %s wilt negeren? In de meeste gevallen is het blokkeren of negeren van een paar specifieke personen voldoende. Je zult geen berichten van deze server op openbare tijdlijnen zien of in jouw meldingen. Jouw volgers van deze server worden verwijderd.",
"block_entire_domain": "Blokkeer domein"
"title": "Weet u zeker dat u alles van %s wilt blokkeren? In de meeste gevallen is het blokkeren of negeren van een paar specifieke personen voldoende en wenselijker. U zult geen berichten meer zien van dit domein en volgers van dit domein worden verwijderd.",
"block_entire_domain": "Domein blokkeren"
},
"save_photo_failure": {
"title": "Foto Opslaan Mislukt",
"message": "Geef toestemming om de foto op te slaan."
},
"delete_post": {
"title": "Verwijder Bericht",
"message": "Weet je zeker dat je dit bericht wilt verwijderen?"
"title": "Weet u zeker dat u dit bericht wilt verwijderen?",
"message": "Are you sure you want to delete this post?"
},
"clean_cache": {
"title": "Cache-geheugen Wissen",
@ -59,49 +59,49 @@
"next": "Volgende",
"previous": "Vorige",
"open": "Open",
"add": "Voeg toe",
"remove": "Verwijder",
"edit": "Bewerk",
"save": "Bewaar",
"ok": "Ok",
"add": "Toevoegen",
"remove": "Verwijderen",
"edit": "Bewerken",
"save": "Opslaan",
"ok": "Oké",
"done": "Klaar",
"confirm": "Bevestigen",
"continue": "Ga verder",
"compose": "Schrijf bericht",
"cancel": "Annuleer",
"continue": "Doorgaan",
"compose": "Compose",
"cancel": "Annuleren",
"discard": "Weggooien",
"try_again": "Probeer Opnieuw",
"take_photo": "Maak foto",
"save_photo": "Bewaar foto",
"copy_photo": "Kopieer foto",
"take_photo": "Foto Maken",
"save_photo": "Foto Opslaan",
"copy_photo": "Foto kopiëren",
"sign_in": "Aanmelden",
"sign_up": "Registreren",
"see_more": "Meer",
"preview": "Voorvertoning",
"share": "Deel",
"share": "Delen",
"share_user": "Delen %s",
"share_post": "Deel bericht",
"share_post": "Bericht Delen",
"open_in_safari": "Open in Safari",
"open_in_browser": "Open in browser",
"open_in_browser": "Open in Browser",
"find_people": "Zoek mensen om te volgen",
"manually_search": "Handmatig zoeken",
"skip": "Overslaan",
"reply": "Reageer",
"reply": "Reageren",
"report_user": "Rapporteer %s",
"block_domain": "Blokkeer %s",
"unblock_domain": "Deblokkeer %s",
"settings": "Instellingen",
"delete": "Verwijder"
"delete": "Verwijderen"
},
"tabs": {
"home": "Start",
"search": "Zoek",
"search": "Zoeken",
"notification": "Melding",
"profile": "Profiel"
},
"keyboard": {
"common": {
"switch_to_tab": "Overschakelen naar %s",
"switch_to_tab": "Wisselen naar %s",
"compose_new_post": "Nieuw Bericht Opstellen",
"show_favorites": "Favorieten Weergeven",
"open_settings": "Open Instellingen"
@ -112,10 +112,10 @@
"open_status": "Open Bericht",
"open_author_profile": "Open Auteursprofiel",
"open_reblogger_profile": "Open Delersprofiel",
"reply_status": "Reageer",
"reply_status": "Reageren",
"toggle_reblog": "Delen bij berichten omschakelen",
"toggle_favorite": "Favoriet in-/uitschakelen bij Post",
"toggle_content_warning": "Inhoudswaarschuwing",
"toggle_favorite": "Favoriet Omschakelen bij Bericht",
"toggle_content_warning": "Inhoudswaarschuwing Omschakelen",
"preview_image": "Voorvertoning Afbeelding"
},
"segmented_control": {
@ -124,14 +124,12 @@
}
},
"status": {
"user_reblogged": "%s heeft gedeeld",
"user_reblogged": "%s gedeeld",
"user_replied_to": "Reactie op %s",
"show_post": "Toon Bericht",
"show_user_profile": "Toon Gebruikersprofiel",
"content_warning": "Inhoudswaarschuwing",
"sensitive_content": "Gevoelige inhoud",
"media_content_warning": "Tap hier om te tonen",
"tap_to_reveal": "Tik om te onthullen",
"poll": {
"vote": "Stemmen",
"closed": "Gesloten"
@ -143,11 +141,7 @@
"favorite": "Toevoegen aan Favorieten",
"unfavorite": "Verwijderen uit Favorieten",
"menu": "Menu",
"hide": "Verberg",
"show_image": "Toon afbeelding",
"show_gif": "GIF weergeven",
"show_video_player": "Toon videospeler",
"tap_then_hold_to_show_menu": "Tik en houd vast om menu te tonen"
"hide": "Hide"
},
"tag": {
"url": "URL",
@ -158,10 +152,10 @@
"emoji": "Emoji"
},
"visibility": {
"unlisted": "Iedereen kan dit bericht zien maar het wordt niet in de publieke tijdlijn getoond.",
"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."
"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": {
@ -207,13 +201,13 @@
"scene": {
"welcome": {
"slogan": "Sociale media terug in uw handen.",
"get_started": "Aan de slag",
"log_in": "Log in"
"get_started": "Get Started",
"log_in": "Log In"
},
"server_picker": {
"title": "Kies een server, welke dan ook.",
"subtitle": "Kies een gemeenschap gebaseerd op jouw interesses, regio of een algemeen doel.",
"subtitle_extend": "Kies een gemeenschap gebaseerd op jouw interesses, regio, of een algemeen doel. Elke gemeenschap wordt beheerd door een volledig onafhankelijke organisatie of individu.",
"subtitle": "Pick a community based on your interests, region, or a general purpose one.",
"subtitle_extend": "Pick a community based on your interests, region, or a general purpose one. Each community is operated by an entirely independent organization or individual.",
"button": {
"category": {
"all": "Alles",
@ -266,11 +260,11 @@
},
"password": {
"placeholder": "wachtwoord",
"require": "Je wachtwoord moet ten minste:",
"character_limit": "8 tekens",
"require": "Your password needs at least:",
"character_limit": "8 characters",
"accessibility": {
"checked": "ingeschakeld",
"unchecked": "uitgeschakeld"
"checked": "checked",
"unchecked": "unchecked"
},
"hint": "Uw wachtwoord moet ten minste acht tekens bevatten"
},
@ -322,7 +316,7 @@
"subtitle": "We hebben een e-mail gestuurd naar %s,\nklik op de link om uw account te bevestigen.",
"button": {
"open_email_app": "Email Openen",
"resend": "Verstuur opnieuw"
"resend": "Resend"
},
"dont_receive_email": {
"title": "Controleer uw emailadres",
@ -425,40 +419,34 @@
"segmented_control": {
"posts": "Berichten",
"replies": "Reacties",
"posts_and_replies": "Berichten en reacties",
"posts_and_replies": "Posts and Replies",
"media": "Media",
"about": "Informatie"
"about": "About"
},
"relationship_action_alert": {
"confirm_mute_user": {
"title": "Negeer account",
"message": "Bevestig om %s te negeren"
"title": "Mute Account",
"message": "Confirm to mute %s"
},
"confirm_unmute_user": {
"title": "Account Negeren",
"message": "Bevestig om %s te negeren"
},
"confirm_block_user": {
"title": "Blokkeer account",
"message": "Bevestig om %s te blokkeren"
"title": "Block Account",
"message": "Confirm to block %s"
},
"confirm_unblock_user": {
"title": "Deblokkeer Account",
"message": "Bevestig om %s te deblokkeren"
"title": "Unblock Account",
"message": "Confirm to unblock %s"
}
},
"accessibility": {
"show_avatar_image": "Toon avatar-afbeelding",
"edit_avatar_image": "Bewerk avatar-afbeelding",
"show_banner_image": "Toon banner-afbeelding",
"double_tap_to_open_the_list": "Dubbel tikken om de lijst te openen"
}
},
"follower": {
"footer": "Volgers van andere servers worden niet weergegeven."
"footer": "Followers from other servers are not displayed."
},
"following": {
"footer": "Volgers van andere servers worden niet weergegeven."
"footer": "Follows from other servers are not displayed."
},
"search": {
"title": "Zoeken",
@ -493,16 +481,6 @@
"clear": "Wissen"
}
},
"discovery": {
"tabs": {
"posts": "Berichten",
"hashtags": "Hashtags",
"news": "Nieuws",
"community": "Community",
"for_you": "Voor jou"
},
"intro": "Dit zijn de berichten die populair zijn in jouw Mastodon-kringen."
},
"favorite": {
"title": "Uw favorieten"
},
@ -512,12 +490,12 @@
"Mentions": "Vermeldingen"
},
"notification_description": {
"followed_you": "volgt je",
"favorited_your_post": "heeft je bericht als favoriet gemrkeerd",
"reblogged_your_post": "deelde je bericht",
"mentioned_you": "noemde je",
"request_to_follow_you": "verzoek je te volgen",
"poll_has_ended": "de peiling is beëindigd"
"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": "Alles weergeven",
@ -538,11 +516,11 @@
"dark": "Altijd Donker"
},
"look_and_feel": {
"title": "Opmaak",
"use_system": "Gebruik systeem",
"really_dark": "Echt donker",
"sorta_dark": "Donker",
"light": "Licht"
"title": "Look and Feel",
"use_system": "Use System",
"really_dark": "Really Dark",
"sorta_dark": "Sorta Dark",
"light": "Light"
},
"notifications": {
"title": "Meldingen",
@ -563,8 +541,7 @@
"true_black_dark_mode": "Echt zwarte donker uiterlijk",
"disable_avatar_animation": "Geanimeerde avatars uitschakelen",
"disable_emoji_animation": "Geanimeerde emojis uitschakelen",
"using_default_browser": "Gebruik de standaard browser om links te openen",
"open_links_in_mastodon": "Open links in Mastodon"
"using_default_browser": "Gebruik de standaard browser om links te openen"
},
"boring_zone": {
"title": "De Saaie Instellingen",
@ -586,17 +563,17 @@
}
},
"report": {
"title_report": "Rapporteer",
"title_report": "Report",
"title": "Rapporteer %s",
"step1": "Stap 1 van 2",
"step2": "Stap 2 van 2",
"content1": "Zijn er nog meer berichten die u aan het rapport wilt toevoegen?",
"content2": "Is er iets anders over dit rapport dat de moderators zouden moeten weten?",
"report_sent_title": "Bedankt voor het rapporteren, we zullen hiernaar kijken.",
"report_sent_title": "Thanks for reporting, well look into this.",
"send": "Stuur rapport",
"skip_to_send": "Verstuur zonder opmerkingen",
"text_placeholder": "Schrijf of plak aanvullende opmerkingen",
"reported": "Gerapporteerd"
"reported": "REPORTED"
},
"preview": {
"keyboard": {
@ -606,14 +583,14 @@
}
},
"account_list": {
"tab_bar_hint": "Huidige geselecteerde profiel: %s. Dubbel-tik en houd vast om account te wisselen",
"dismiss_account_switcher": "Annuleer account wisselen",
"add_account": "Voeg account toe"
"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": "Nieuw in Mastodon",
"multiple_account_switch_intro_description": "Schakel tussen meerdere accounts door de profielknop in te drukken en vast te houden.",
"accessibility_hint": "Tik tweemaal om het popup-scherm te sluiten"
"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"
}
}
}

View File

@ -2,5 +2,5 @@
"NSCameraUsageDescription": "Gebruikt om foto's te nemen voor je berichten",
"NSPhotoLibraryAddUsageDescription": "Gebruikt om foto's op te slaan in de fotobibliotheek",
"NewPostShortcutItemTitle": "Nieuw Bericht",
"SearchShortcutItemTitle": "Zoek"
"SearchShortcutItemTitle": "Zoeken"
}

View File

@ -13,15 +13,15 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 notificação não lida</string>
<string>1 unread notification</string>
<key>other</key>
<string>%ld notificações não lidas</string>
<string>%ld unread notification</string>
</dict>
</dict>
<key>a11y.plural.count.input_limit_exceeds</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>Limite de caracteres excedido %#@character_count@</string>
<string>Input limit exceeds %#@character_count@</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
@ -29,15 +29,15 @@
<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>a11y.plural.count.input_limit_remains</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>Limite de caracteres continua excedido %#@character_count@</string>
<string>Input limit remains %#@character_count@</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
@ -45,9 +45,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.metric_formatted.post</key>
@ -77,9 +77,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 toot</string>
<string>1 post</string>
<key>other</key>
<string>%ld toots</string>
<string>%ld posts</string>
</dict>
</dict>
<key>plural.count.favorite</key>
@ -93,9 +93,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 favorito</string>
<string>1 favorite</string>
<key>other</key>
<string>%ld favoritos</string>
<string>%ld favorites</string>
</dict>
</dict>
<key>plural.count.reblog</key>
@ -114,22 +114,6 @@
<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 resposta</string>
<key>other</key>
<string>%ld respostas</string>
</dict>
</dict>
<key>plural.count.vote</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
@ -141,9 +125,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 voto</string>
<string>1 vote</string>
<key>other</key>
<string>%ld votos</string>
<string>%ld votes</string>
</dict>
</dict>
<key>plural.count.voter</key>
@ -157,9 +141,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 votante</string>
<string>1 voter</string>
<key>other</key>
<string>%ld votantes</string>
<string>%ld voters</string>
</dict>
</dict>
<key>plural.people_talking</key>
@ -173,9 +157,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 pessoa falando</string>
<string>1 people talking</string>
<key>other</key>
<string>%ld pessoas falando</string>
<string>%ld people talking</string>
</dict>
</dict>
<key>plural.count.following</key>
@ -189,9 +173,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 seguindo</string>
<string>1 following</string>
<key>other</key>
<string>%ld seguindo</string>
<string>%ld following</string>
</dict>
</dict>
<key>plural.count.follower</key>
@ -205,9 +189,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 seguidor</string>
<string>1 follower</string>
<key>other</key>
<string>%ld seguidores</string>
<string>%ld followers</string>
</dict>
</dict>
<key>date.year.left</key>
@ -221,9 +205,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 ano restante</string>
<string>1 year left</string>
<key>other</key>
<string>%ld anos restantes</string>
<string>%ld years left</string>
</dict>
</dict>
<key>date.month.left</key>
@ -237,9 +221,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 mês restante</string>
<string>1 months left</string>
<key>other</key>
<string>%ld meses restantes</string>
<string>%ld months left</string>
</dict>
</dict>
<key>date.day.left</key>
@ -253,9 +237,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 dia restante</string>
<string>1 day left</string>
<key>other</key>
<string>%ld dias restantes</string>
<string>%ld days left</string>
</dict>
</dict>
<key>date.hour.left</key>
@ -269,9 +253,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 hora restante</string>
<string>1 hour left</string>
<key>other</key>
<string>%ld horas restantes</string>
<string>%ld hours left</string>
</dict>
</dict>
<key>date.minute.left</key>
@ -285,9 +269,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 minuto restante</string>
<string>1 minute left</string>
<key>other</key>
<string>%ld minutos restantes</string>
<string>%ld minutes left</string>
</dict>
</dict>
<key>date.second.left</key>
@ -301,9 +285,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 segundo restante</string>
<string>1 second left</string>
<key>other</key>
<string>%ld segundos restantes</string>
<string>%ld seconds left</string>
</dict>
</dict>
<key>date.year.ago.abbr</key>
@ -317,9 +301,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 ano atrás</string>
<string>1y ago</string>
<key>other</key>
<string>%ldy anos atrás</string>
<string>%ldy ago</string>
</dict>
</dict>
<key>date.month.ago.abbr</key>
@ -333,9 +317,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 mês atrás</string>
<string>1M ago</string>
<key>other</key>
<string>%ldM meses atrás</string>
<string>%ldM ago</string>
</dict>
</dict>
<key>date.day.ago.abbr</key>
@ -349,9 +333,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 dia atrás</string>
<string>1d ago</string>
<key>other</key>
<string>%ldd dias atrás</string>
<string>%ldd ago</string>
</dict>
</dict>
<key>date.hour.ago.abbr</key>
@ -365,9 +349,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1h atrás</string>
<string>1h ago</string>
<key>other</key>
<string>%ldh horas atrás</string>
<string>%ldh ago</string>
</dict>
</dict>
<key>date.minute.ago.abbr</key>
@ -381,9 +365,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>Há 1 min</string>
<string>1m ago</string>
<key>other</key>
<string>Há %ldm minutos</string>
<string>%ldm ago</string>
</dict>
</dict>
<key>date.second.ago.abbr</key>
@ -397,9 +381,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>Há 1 segundo</string>
<string>1s ago</string>
<key>other</key>
<string>Há %lds segundos</string>
<string>%lds ago</string>
</dict>
</dict>
</dict>

View File

@ -2,84 +2,84 @@
"common": {
"alerts": {
"common": {
"please_try_again": "Por favor tente novamente.",
"please_try_again_later": "Tente novamente mais tarde."
"please_try_again": "Please try again.",
"please_try_again_later": "Please try again later."
},
"sign_up_failure": {
"title": "Sign Up Failure"
},
"server_error": {
"title": "Erro do servidor"
"title": "Server Error"
},
"vote_failure": {
"title": "Falha ao votar",
"poll_ended": "Essa enquete terminou"
"title": "Vote Failure",
"poll_ended": "The poll has ended"
},
"discard_post_content": {
"title": "Deletar Rascunho",
"title": "Discard Draft",
"message": "Confirm to discard composed post content."
},
"publish_post_failure": {
"title": "Falha ao publicar",
"message": "Falha ao publicar o post.\nPor favor verifique a sua conexão de internet.",
"title": "Publish Failure",
"message": "Failed to publish the post.\nPlease check your internet connection.",
"attachments_message": {
"video_attach_with_photo": "Não é possível adicionar um vídeo à um toot que já contém imagens.",
"more_than_one_video": "Não é possível adicionar mais de um vídeo."
"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": "Falha ao atualizar perfil",
"message": "Não foi possível atualizar o perfil. Por favor tente novamente."
"title": "Edit Profile Error",
"message": "Cannot edit profile. Please try again."
},
"sign_out": {
"title": "Sair",
"message": "Você tem certeza que deseja sair?",
"confirm": "Sair"
"title": "Sign Out",
"message": "Are you sure you want to sign out?",
"confirm": "Sign Out"
},
"block_domain": {
"title": "Você tem absoluta certeza de que quer bloquear todo %s? Na maioria dos casos é suficiente e preferível bloquear ou ignorar algumas contas específicas. Você não verá conteúdos desse domínio, e todos os seus seguidores desse domínio serão removidos.",
"block_entire_domain": "Bloquear Domínio"
"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": "Falha ao salvar foto",
"title": "Save Photo Failure",
"message": "Please enable the photo library access permission to save the photo."
},
"delete_post": {
"title": "Deletar Toot",
"message": "Você tem certeza que deseja deletar esse toot?"
"title": "Delete Post",
"message": "Are you sure you want to delete this post?"
},
"clean_cache": {
"title": "Limpar Cache",
"message": "%s do cache removidos com sucesso."
"title": "Clean Cache",
"message": "Successfully cleaned %s cache."
}
},
"controls": {
"actions": {
"back": "Voltar",
"next": "Próximo",
"previous": "Anterior",
"open": "Abrir",
"add": "Adicionar",
"remove": "Remover",
"edit": "Editar",
"save": "Salvar",
"back": "Back",
"next": "Next",
"previous": "Previous",
"open": "Open",
"add": "Add",
"remove": "Remove",
"edit": "Edit",
"save": "Save",
"ok": "OK",
"done": "Concluir",
"confirm": "Confirmar",
"continue": "Continuar",
"compose": "Compor",
"cancel": "Cancelar",
"discard": "Descartar",
"try_again": "Tente novamente",
"done": "Done",
"confirm": "Confirm",
"continue": "Continue",
"compose": "Compose",
"cancel": "Cancel",
"discard": "Discard",
"try_again": "Try Again",
"take_photo": "Take Photo",
"save_photo": "Salvar foto",
"copy_photo": "Copiar foto",
"save_photo": "Save Photo",
"copy_photo": "Copy Photo",
"sign_in": "Sign In",
"sign_up": "Sign Up",
"see_more": "See More",
"preview": "Preview",
"share": "Compartilhar",
"share_user": "Compartilhar %s",
"share": "Share",
"share_user": "Share %s",
"share_post": "Share Post",
"open_in_safari": "Open in Safari",
"open_in_browser": "Open in Browser",
@ -129,25 +129,19 @@
"show_post": "Show Post",
"show_user_profile": "Show user profile",
"content_warning": "Content Warning",
"sensitive_content": "Sensitive Content",
"media_content_warning": "Tap anywhere to reveal",
"tap_to_reveal": "Tap to reveal",
"poll": {
"vote": "Vote",
"closed": "Closed"
},
"actions": {
"reply": "Responder",
"reply": "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",
"tap_then_hold_to_show_menu": "Tap then hold to show menu"
"hide": "Hide"
},
"tag": {
"url": "URL",
@ -211,9 +205,9 @@
"log_in": "Log In"
},
"server_picker": {
"title": "Mastodon is made of users in different servers.",
"subtitle": "Pick a server based on your interests, region, or a general purpose one.",
"subtitle_extend": "Pick a server based on your interests, region, or a general purpose one. Each server is operated by an entirely independent organization or individual.",
"title": "Mastodon is made of users in different communities.",
"subtitle": "Pick a community based on your interests, region, or a general purpose one.",
"subtitle_extend": "Pick a community based on your interests, region, or a general purpose one. Each community is operated by an entirely independent organization or individual.",
"button": {
"category": {
"all": "All",
@ -240,7 +234,7 @@
"category": "CATEGORY"
},
"input": {
"placeholder": "Search servers"
"placeholder": "Search communities"
},
"empty_state": {
"finding_servers": "Finding available servers...",
@ -446,12 +440,6 @@
"title": "Unblock Account",
"message": "Confirm to unblock %s"
}
},
"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": {
@ -493,16 +481,6 @@
"clear": "Clear"
}
},
"discovery": {
"tabs": {
"posts": "Posts",
"hashtags": "Hashtags",
"news": "News",
"community": "Community",
"for_you": "For You"
},
"intro": "These are the posts gaining traction in your corner of Mastodon."
},
"favorite": {
"title": "Your Favorites"
},
@ -563,8 +541,7 @@
"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"
"using_default_browser": "Use default browser to open links"
},
"boring_zone": {
"title": "The Boring Zone",

View File

@ -114,22 +114,6 @@
<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>other</key>
<string>%ld replies</string>
</dict>
</dict>
<key>plural.count.vote</key>
<dict>
<key>NSStringLocalizedFormatKey</key>

View File

@ -129,9 +129,7 @@
"show_post": "Show Post",
"show_user_profile": "Show user profile",
"content_warning": "Content Warning",
"sensitive_content": "Sensitive Content",
"media_content_warning": "Tap anywhere to reveal",
"tap_to_reveal": "Tap to reveal",
"poll": {
"vote": "Vote",
"closed": "Closed"
@ -143,11 +141,7 @@
"favorite": "Favorite",
"unfavorite": "Unfavorite",
"menu": "Menu",
"hide": "Hide",
"show_image": "Show image",
"show_gif": "Show GIF",
"show_video_player": "Show video player",
"tap_then_hold_to_show_menu": "Tap then hold to show menu"
"hide": "Hide"
},
"tag": {
"url": "URL",
@ -211,9 +205,9 @@
"log_in": "Log In"
},
"server_picker": {
"title": "Mastodon is made of users in different servers.",
"subtitle": "Pick a server based on your interests, region, or a general purpose one.",
"subtitle_extend": "Pick a server based on your interests, region, or a general purpose one. Each server is operated by an entirely independent organization or individual.",
"title": "Mastodon is made of users in different communities.",
"subtitle": "Pick a community based on your interests, region, or a general purpose one.",
"subtitle_extend": "Pick a community based on your interests, region, or a general purpose one. Each community is operated by an entirely independent organization or individual.",
"button": {
"category": {
"all": "All",
@ -240,7 +234,7 @@
"category": "CATEGORY"
},
"input": {
"placeholder": "Search servers"
"placeholder": "Search communities"
},
"empty_state": {
"finding_servers": "Finding available servers...",
@ -446,12 +440,6 @@
"title": "Unblock Account",
"message": "Confirm to unblock %s"
}
},
"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": {
@ -493,16 +481,6 @@
"clear": "Clear"
}
},
"discovery": {
"tabs": {
"posts": "Posts",
"hashtags": "Hashtags",
"news": "News",
"community": "Community",
"for_you": "For You"
},
"intro": "These are the posts gaining traction in your corner of Mastodon."
},
"favorite": {
"title": "Your Favorites"
},
@ -563,8 +541,7 @@
"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"
"using_default_browser": "Use default browser to open links"
},
"boring_zone": {
"title": "The Boring Zone",

View File

@ -128,24 +128,6 @@
<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>few</key>
<string>%ld replies</string>
<key>other</key>
<string>%ld replies</string>
</dict>
</dict>
<key>plural.count.vote</key>
<dict>
<key>NSStringLocalizedFormatKey</key>

View File

@ -129,9 +129,7 @@
"show_post": "Show Post",
"show_user_profile": "Show user profile",
"content_warning": "Content Warning",
"sensitive_content": "Sensitive Content",
"media_content_warning": "Tap anywhere to reveal",
"tap_to_reveal": "Tap to reveal",
"poll": {
"vote": "Vote",
"closed": "Closed"
@ -143,11 +141,7 @@
"favorite": "Favorite",
"unfavorite": "Unfavorite",
"menu": "Menu",
"hide": "Hide",
"show_image": "Show image",
"show_gif": "Show GIF",
"show_video_player": "Show video player",
"tap_then_hold_to_show_menu": "Tap then hold to show menu"
"hide": "Hide"
},
"tag": {
"url": "URL",
@ -211,9 +205,9 @@
"log_in": "Log In"
},
"server_picker": {
"title": "Mastodon is made of users in different servers.",
"subtitle": "Pick a server based on your interests, region, or a general purpose one.",
"subtitle_extend": "Pick a server based on your interests, region, or a general purpose one. Each server is operated by an entirely independent organization or individual.",
"title": "Mastodon is made of users in different communities.",
"subtitle": "Pick a community based on your interests, region, or a general purpose one.",
"subtitle_extend": "Pick a community based on your interests, region, or a general purpose one. Each community is operated by an entirely independent organization or individual.",
"button": {
"category": {
"all": "All",
@ -240,7 +234,7 @@
"category": "CATEGORY"
},
"input": {
"placeholder": "Search servers"
"placeholder": "Search communities"
},
"empty_state": {
"finding_servers": "Finding available servers...",
@ -446,12 +440,6 @@
"title": "Unblock Account",
"message": "Confirm to unblock %s"
}
},
"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": {
@ -493,16 +481,6 @@
"clear": "Clear"
}
},
"discovery": {
"tabs": {
"posts": "Posts",
"hashtags": "Hashtags",
"news": "News",
"community": "Community",
"for_you": "For You"
},
"intro": "These are the posts gaining traction in your corner of Mastodon."
},
"favorite": {
"title": "Your Favorites"
},
@ -563,8 +541,7 @@
"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"
"using_default_browser": "Use default browser to open links"
},
"boring_zone": {
"title": "The Boring Zone",

View File

@ -142,26 +142,6 @@
<string>%ld продвинули</string>
</dict>
</dict>
<key>plural.count.reply</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@reply_count@</string>
<key>reply_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 reply</string>
<key>few</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>

View File

@ -46,7 +46,7 @@
},
"delete_post": {
"title": "Вы уверены, что хотите удалить этот пост?",
"message": "Вы уверены, что хотите удалить этот пост?"
"message": "Are you sure you want to delete this post?"
},
"clean_cache": {
"title": "Очистка кэша",
@ -129,9 +129,7 @@
"show_post": "Показать пост",
"show_user_profile": "Показать профиль пользователя",
"content_warning": "Предупреждение о содержании",
"sensitive_content": "Sensitive Content",
"media_content_warning": "Нажмите в любом месте, чтобы показать",
"tap_to_reveal": "Нажмите, чтобы показать",
"poll": {
"vote": "Проголосовать",
"closed": "Завершён"
@ -143,11 +141,7 @@
"favorite": "Добавить в избранное",
"unfavorite": "Убрать из избранного",
"menu": "Меню",
"hide": "Скрыть",
"show_image": "Показать изображение",
"show_gif": "Показать GIF",
"show_video_player": "Показать видеопроигрыватель",
"tap_then_hold_to_show_menu": "Нажмите и удерживайте, чтобы показать меню"
"hide": "Hide"
},
"tag": {
"url": "Ссылка",
@ -176,7 +170,7 @@
"unblock_user": "Разблокировать %s",
"blocked": "В заблокированных",
"mute": "Игнорировать",
"mute_user": "Игнорировать %s",
"mute_user": "Добавить %s в игнорируемые",
"unmute": "Убрать из игнорируемых",
"unmute_user": "Убрать %s из игнорируемых",
"muted": "В игнорируемых",
@ -207,13 +201,13 @@
"scene": {
"welcome": {
"slogan": "Социальная сеть\nпод вашим контролем.",
"get_started": "Присоединиться",
"get_started": "Get Started",
"log_in": "Вход"
},
"server_picker": {
"title": "Выберите сервер,\nлюбой сервер.",
"subtitle": "Выберите сообщество на основе своих интересов, региона или общей тематики.",
"subtitle_extend": "Pick a server based on your interests, region, or a general purpose one. Each server is operated by an entirely independent organization or individual.",
"subtitle_extend": "Pick a community based on your interests, region, or a general purpose one. Each community is operated by an entirely independent organization or individual.",
"button": {
"category": {
"all": "Все",
@ -322,7 +316,7 @@
"subtitle": "Мы только что отправили письмо на\n%s.\nНажмите на ссылку в нём, чтобы\nподтвердить свою учётную запись.",
"button": {
"open_email_app": "Открыть приложение почты",
"resend": "Отправить заново"
"resend": "Resend"
},
"dont_receive_email": {
"title": "Проверьте свой e-mail адрес",
@ -425,7 +419,7 @@
"segmented_control": {
"posts": "Посты",
"replies": "Ответы",
"posts_and_replies": "Посты и ответы",
"posts_and_replies": "Posts and Replies",
"media": "Медиа",
"about": "About"
},
@ -446,12 +440,6 @@
"title": "Unblock Account",
"message": "Confirm to unblock %s"
}
},
"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": {
@ -493,16 +481,6 @@
"clear": "Очистить"
}
},
"discovery": {
"tabs": {
"posts": "Posts",
"hashtags": "Hashtags",
"news": "News",
"community": "Сообщество",
"for_you": "For You"
},
"intro": "These are the posts gaining traction in your corner of Mastodon."
},
"favorite": {
"title": "Ваше избранное"
},
@ -563,8 +541,7 @@
"true_black_dark_mode": "Полноценно чёрный режим",
"disable_avatar_animation": "Отключить анимацию аватарок",
"disable_emoji_animation": "Отключить анимацию эмодзи",
"using_default_browser": "Использовать браузер по умолчанию для открытия ссылок",
"open_links_in_mastodon": "Открывать ссылки в Мастодоне"
"using_default_browser": "Использовать браузер по умолчанию для открытия ссылок"
},
"boring_zone": {
"title": "Зона скукотищи",
@ -586,7 +563,7 @@
}
},
"report": {
"title_report": "Жалоба",
"title_report": "Report",
"title": "Пожаловаться на %s",
"step1": "Шаг 1 из 2",
"step2": "Шаг 2 из 2",
@ -611,7 +588,7 @@
"add_account": "Add Account"
},
"wizard": {
"new_in_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"
}

View File

@ -114,22 +114,6 @@
<string>%ld edelleen jakoa</string>
</dict>
</dict>
<key>plural.count.reply</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@reply_count@</string>
<key>reply_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 svar</string>
<key>other</key>
<string>%ld svar</string>
</dict>
</dict>
<key>plural.count.vote</key>
<dict>
<key>NSStringLocalizedFormatKey</key>

View File

@ -12,18 +12,18 @@
"title": "Palvelinvirhe"
},
"vote_failure": {
"title": "Röstning misslyckades",
"title": "Vote Failure",
"poll_ended": "Kysely on päättynyt"
},
"discard_post_content": {
"title": "Hylkää luonnos",
"message": "Bekräfta för att slänga inläggsutkast."
"message": "Confirm to discard composed post content."
},
"publish_post_failure": {
"title": "Julkaiseminen epäonnistui",
"message": "Julkaisun julkaiseminen epäonnistui.\nTarkista internet-yhteytesi.",
"attachments_message": {
"video_attach_with_photo": "Det går inte att bifoga en video till en status som redan innehåller bilder.",
"video_attach_with_photo": "Cannot attach a video to a post that already contains images.",
"more_than_one_video": "Ei voi liittä yhtä videota enempää."
}
},
@ -37,16 +37,16 @@
"confirm": "Kirjaudu ulos"
},
"block_domain": {
"title": "Är du verkligen, verkligen säker på att du vill blockera hela %s? I de flesta fall är några riktade blockeringar eller nedtystade konton tillräckligt och att föredra. Du kommer inte se innehåll från den domänen och dina följare från den domänen kommer att tas bort.",
"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": "Estä verkkotunnus"
},
"save_photo_failure": {
"title": "Kuvan tallentaminen epäonnistui",
"message": "Aktivera åtkomst till Bilder för att spara bilden."
"message": "Please enable the photo library access permission to save the photo."
},
"delete_post": {
"title": "Haluatko varmasti poistaa tämän julkaisun?",
"message": "Är du säker på att du vill radera detta inlägg?"
"message": "Are you sure you want to delete this post?"
},
"clean_cache": {
"title": "Puhdista välimuisti",
@ -82,9 +82,9 @@
"share_user": "Jaa %s",
"share_post": "Jaa julkaisu",
"open_in_safari": "Avaa Safarissa",
"open_in_browser": "Öppna i webbläsare",
"open_in_browser": "Open in Browser",
"find_people": "Löydä tilejä seurattavaksi",
"manually_search": "Sök manuellt istället",
"manually_search": "Manually search instead",
"skip": "Ohita",
"reply": "Vastaa",
"report_user": "Ilmianna %s",
@ -113,13 +113,13 @@
"open_author_profile": "Avaa tekijän profiili",
"open_reblogger_profile": "Avaa edelleen jakajan profiili",
"reply_status": "Vastaa julkaisuun",
"toggle_reblog": "Växla ompostning på inlägg",
"toggle_favorite": "Växla favorit på inlägg",
"toggle_reblog": "Toggle Reblog on Post",
"toggle_favorite": "Toggle Favorite on Post",
"toggle_content_warning": "Vaihda sisältövaroitus",
"preview_image": "Förhandsgranska bild"
"preview_image": "Preview Image"
},
"segmented_control": {
"previous_section": "Föregående avsnitt",
"previous_section": "Previous Section",
"next_section": "Seuraava lohko"
}
},
@ -129,39 +129,33 @@
"show_post": "Näytä julkaisu",
"show_user_profile": "Näytä tili",
"content_warning": "Sisältövaroitus",
"sensitive_content": "Känsligt innehåll",
"media_content_warning": "Napauta mistä tahansa paljastaaksesi",
"tap_to_reveal": "Tryck för att visa",
"poll": {
"vote": "Rösta",
"vote": "Vote",
"closed": "Suljettu"
},
"actions": {
"reply": "Vastaa",
"reblog": "Jaa edelleen",
"unreblog": "Peru edelleen jako",
"favorite": "Favorit",
"unfavorite": "Ta bort favorit",
"favorite": "Favorite",
"unfavorite": "Unfavorite",
"menu": "Valikko",
"hide": "Dölj",
"show_image": "Visa bild",
"show_gif": "Visa GIF",
"show_video_player": "Visa videospelare",
"tap_then_hold_to_show_menu": "Tryck och håll ned för att visa menyn"
"hide": "Dölj"
},
"tag": {
"url": "URL",
"mention": "Nämn",
"mention": "Mention",
"link": "Linkki",
"hashtag": "Hashtagi",
"email": "Sähköposti",
"emoji": "Emoji"
},
"visibility": {
"unlisted": "Alla kan se detta inlägg men det visas inte i den offentliga tidslinjen.",
"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 nämnda användare kan se detta inlägg."
"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": {
@ -173,7 +167,7 @@
"block_user": "Estä %s",
"block_domain": "Estä %s",
"unblock": "Poista esto",
"unblock_user": "Avblockera %s",
"unblock_user": "Unblock %s",
"blocked": "Estetty",
"mute": "Mykistä",
"mute_user": "Mykistä %s",
@ -212,8 +206,8 @@
},
"server_picker": {
"title": "Valitse palvelin,\nmikä tahansa palvelin.",
"subtitle": "Välj en gemenskap baserad på dina intressen, region eller ett allmänt syfte.",
"subtitle_extend": "Välj en gemenskap baserad på dina intressen, region eller ett allmänt syfte. Varje gemenskap drivs av en helt oberoende organisation eller individ.",
"subtitle": "Pick a community based on your interests, region, or a general purpose one.",
"subtitle_extend": "Pick a community based on your interests, region, or a general purpose one. Each community is operated by an entirely independent organization or individual.",
"button": {
"category": {
"all": "Kaikki",
@ -266,11 +260,11 @@
},
"password": {
"placeholder": "salasana",
"require": "Ditt lösenord behöver minst:",
"character_limit": "8 tecken",
"require": "Your password needs at least:",
"character_limit": "8 characters",
"accessibility": {
"checked": "markerad",
"unchecked": "avmarkerad"
"checked": "checked",
"unchecked": "unchecked"
},
"hint": "Salasanassasi on oltava vähintään kahdeksan merkkiä"
},
@ -284,14 +278,14 @@
"email": "Sähköposti",
"password": "Salasana",
"agreement": "Hyväksy",
"locale": "Språk",
"locale": "Locale",
"reason": "Syy"
},
"reason": {
"blocked": "%s sisältää estetyn sähköpostipalveluntarjoajan",
"unreachable": "%s ei näytä olevan olemassa",
"taken": "%s on jo käytössä",
"reserved": "%s är ett reserverat nyckelord",
"reserved": "%s is a reserved keyword",
"accepted": "%s täytyy hyväksyä",
"blank": "%s vaaditaan",
"invalid": "%s on virheellinen",
@ -322,7 +316,7 @@
"subtitle": "Lähetimme juuri sähköpostin osoitteeseen %s, napauta siinä olevaa linkkiä vahvistaaksesi tilisi.",
"button": {
"open_email_app": "Avaa sähköpostisovellus",
"resend": "Skicka igen"
"resend": "Resend"
},
"dont_receive_email": {
"title": "Tarkista sähköpostisi",
@ -365,7 +359,7 @@
"attachment": {
"photo": "kuva",
"video": "video",
"attachment_broken": "Denna %s är trasig och kan inte\nladdas upp till Mastodon.",
"attachment_broken": "This %s is broken and cant be\nuploaded to Mastodon.",
"description_photo": "Kuvaile kuva näkövammaisille...",
"description_video": "Kuvaile video näkövammaisille..."
},
@ -389,7 +383,7 @@
"direct": "Vain mainitsemani tilit"
},
"auto_complete": {
"space_to_add": "Mellanslag att lägga till"
"space_to_add": "Space to add"
},
"accessibility": {
"append_attachment": "Lisää liite",
@ -425,33 +419,27 @@
"segmented_control": {
"posts": "Julkaisut",
"replies": "Vastaukset",
"posts_and_replies": "Inlägg och svar",
"posts_and_replies": "Posts and Replies",
"media": "Media",
"about": "Om"
},
"relationship_action_alert": {
"confirm_mute_user": {
"title": "Tysta konto",
"message": "Bekräfta för att tysta %s"
"title": "Mute Account",
"message": "Confirm to mute %s"
},
"confirm_unmute_user": {
"title": "Poista tilin mykistys",
"message": "Vahvista, että haluat poistaa mykistyksen tililtä %s"
},
"confirm_block_user": {
"title": "Blockera konto",
"message": "Bekräfta för att blockera %s"
"title": "Block Account",
"message": "Confirm to block %s"
},
"confirm_unblock_user": {
"title": "Avblockera konto",
"message": "Bekräfta för att avblockera %s"
"title": "Unblock Account",
"message": "Confirm to unblock %s"
}
},
"accessibility": {
"show_avatar_image": "Visa profilbild",
"edit_avatar_image": "Redigera profilbild",
"show_banner_image": "Visa banner",
"double_tap_to_open_the_list": "Dubbeltryck för att öppna listan"
}
},
"follower": {
@ -493,16 +481,6 @@
"clear": "Tyhjennä"
}
},
"discovery": {
"tabs": {
"posts": "Inlägg",
"hashtags": "Hashtaggar",
"news": "Nyheter",
"community": "Community",
"for_you": "För dig"
},
"intro": "Detta är de inlägg som engagerar i ditt hörn av Mastodon."
},
"favorite": {
"title": "Omat suosikit"
},
@ -512,12 +490,12 @@
"Mentions": "Maininnat"
},
"notification_description": {
"followed_you": "följde dig",
"favorited_your_post": "favoriserade ditt inlägg",
"reblogged_your_post": "ompostade ditt inlägg",
"followed_you": "followed you",
"favorited_your_post": "favorited your post",
"reblogged_your_post": "reblogged your post",
"mentioned_you": "nämnde dig",
"request_to_follow_you": "begär att följa dig",
"poll_has_ended": "omröstningen har avslutats"
"request_to_follow_you": "request to follow you",
"poll_has_ended": "poll has ended"
},
"keyobard": {
"show_everything": "Näytä kaikki",
@ -538,15 +516,15 @@
"dark": "Tumma"
},
"look_and_feel": {
"title": "Utseende och känsla",
"use_system": "Följ systeminställningarna",
"really_dark": "Verkligen mörk",
"sorta_dark": "Ganska mörk",
"title": "Look and Feel",
"use_system": "Use System",
"really_dark": "Really Dark",
"sorta_dark": "Sorta Dark",
"light": "Ljust"
},
"notifications": {
"title": "Ilmoitukset",
"favorites": "Favoriserar mitt inlägg",
"favorites": "Favorites my post",
"follows": "Seuraa minua",
"boosts": "Omien julkaisujen edelleen jaot",
"mentions": "Mainitsee minut",
@ -563,8 +541,7 @@
"true_black_dark_mode": "Todellinen mustan tumma tila",
"disable_avatar_animation": "Poista käytöstä animoidut avatarit",
"disable_emoji_animation": "Poista käytöstä animoidut emojit",
"using_default_browser": "Käytä oletusselainta linkkien avaamiseen",
"open_links_in_mastodon": "Öppna länkar i Mastodon"
"using_default_browser": "Käytä oletusselainta linkkien avaamiseen"
},
"boring_zone": {
"title": "Tylsä alue",
@ -586,17 +563,17 @@
}
},
"report": {
"title_report": "Rapportera",
"title_report": "Report",
"title": "Ilmianna %s",
"step1": "Vaihe 1/2",
"step2": "Vaihe 2/2",
"content1": "Onko julkaisuja, joita haluaisit lisätä ilmiantoon?",
"content2": "Onko valvojien syytä tietää tästä ilmiannosta?",
"report_sent_title": "Tack för din rapport, vi ska titta på det.",
"report_sent_title": "Thanks for reporting, well look into this.",
"send": "Lähetä ilmianto",
"skip_to_send": "Lähetä ilman kommentteja",
"text_placeholder": "Kirjoita tai liitä lisäkommentteja",
"reported": "RAPPORTERAD"
"reported": "REPORTED"
},
"preview": {
"keyboard": {

View File

@ -13,15 +13,15 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 oläst notis</string>
<string>1 unread notification</string>
<key>other</key>
<string>%ld olästa notiser</string>
<string>%ld unread notification</string>
</dict>
</dict>
<key>a11y.plural.count.input_limit_exceeds</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>Inmatningsgränsen överskrider %#@character_count@</string>
<string>Input limit exceeds %#@character_count@</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
@ -37,7 +37,7 @@
<key>a11y.plural.count.input_limit_remains</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>Inmatningsgränsen återstår %#@character_count@</string>
<string>Input limit remains %#@character_count@</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
@ -61,9 +61,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>inlägg</string>
<string>post</string>
<key>other</key>
<string>inläggen</string>
<string>posts</string>
</dict>
</dict>
<key>plural.count.post</key>
@ -77,9 +77,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 inlägg</string>
<string>1 post</string>
<key>other</key>
<string>%ld inlägg</string>
<string>%ld posts</string>
</dict>
</dict>
<key>plural.count.favorite</key>
@ -93,9 +93,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 favorit</string>
<string>1 favorite</string>
<key>other</key>
<string>%ld favoriter</string>
<string>%ld favorites</string>
</dict>
</dict>
<key>plural.count.reblog</key>
@ -109,25 +109,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>%ld ompostning</string>
<string>1 reblog</string>
<key>other</key>
<string>%ld ompostningar</string>
</dict>
</dict>
<key>plural.count.reply</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@reply_count@</string>
<key>reply_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 svar</string>
<key>other</key>
<string>%ld svar</string>
<string>%ld reblogs</string>
</dict>
</dict>
<key>plural.count.vote</key>
@ -157,9 +141,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>%ld röst</string>
<string>1 voter</string>
<key>other</key>
<string>%ld röster</string>
<string>%ld voters</string>
</dict>
</dict>
<key>plural.people_talking</key>
@ -173,9 +157,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>%ld person diskuterar</string>
<string>1 people talking</string>
<key>other</key>
<string>%ld personer diskuterar</string>
<string>%ld people talking</string>
</dict>
</dict>
<key>plural.count.following</key>
@ -189,9 +173,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>%ld följer</string>
<string>1 following</string>
<key>other</key>
<string>%ld följer</string>
<string>%ld following</string>
</dict>
</dict>
<key>plural.count.follower</key>
@ -221,9 +205,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>%ld år kvar</string>
<string>1 year left</string>
<key>other</key>
<string>%ld år kvar</string>
<string>%ld years left</string>
</dict>
</dict>
<key>date.month.left</key>
@ -237,9 +221,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>%ld månad kvar</string>
<string>1 months left</string>
<key>other</key>
<string>%ld månader kvar</string>
<string>%ld months left</string>
</dict>
</dict>
<key>date.day.left</key>
@ -253,9 +237,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>%ld dag kvar</string>
<string>1 day left</string>
<key>other</key>
<string>%ld dagar kvar</string>
<string>%ld days left</string>
</dict>
</dict>
<key>date.hour.left</key>
@ -269,9 +253,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>%ld timme kvar</string>
<string>1 hour left</string>
<key>other</key>
<string>%ld timmar kvar</string>
<string>%ld hours left</string>
</dict>
</dict>
<key>date.minute.left</key>
@ -285,9 +269,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>%ld minut kvar</string>
<string>1 minute left</string>
<key>other</key>
<string>%ld minuter kvar</string>
<string>%ld minutes left</string>
</dict>
</dict>
<key>date.second.left</key>
@ -301,9 +285,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>%ld sekund kvar</string>
<string>1 second left</string>
<key>other</key>
<string>%ld sekunder kvar</string>
<string>%ld seconds left</string>
</dict>
</dict>
<key>date.year.ago.abbr</key>
@ -317,9 +301,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>%ldå sedan</string>
<string>1y ago</string>
<key>other</key>
<string>%ldå sedan</string>
<string>%ldy ago</string>
</dict>
</dict>
<key>date.month.ago.abbr</key>
@ -333,9 +317,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>%ldmån sedan</string>
<string>1M ago</string>
<key>other</key>
<string>%ld mån sedan</string>
<string>%ldM ago</string>
</dict>
</dict>
<key>date.day.ago.abbr</key>
@ -349,9 +333,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>%ldd sedan</string>
<string>1d ago</string>
<key>other</key>
<string>%ldd sedan</string>
<string>%ldd ago</string>
</dict>
</dict>
<key>date.hour.ago.abbr</key>
@ -365,9 +349,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>%ldt sedan</string>
<string>1h ago</string>
<key>other</key>
<string>%ldt sedan</string>
<string>%ldh ago</string>
</dict>
</dict>
<key>date.minute.ago.abbr</key>
@ -381,9 +365,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>%ld min sedan</string>
<string>1m ago</string>
<key>other</key>
<string>%ld min sedan</string>
<string>%ldm ago</string>
</dict>
</dict>
<key>date.second.ago.abbr</key>
@ -397,9 +381,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>%lds sedan</string>
<string>1s sedan</string>
<key>other</key>
<string>%lds sedan</string>
<string>%lds ago</string>
</dict>
</dict>
</dict>

View File

@ -6,233 +6,227 @@
"please_try_again_later": "Var god försök igen senare."
},
"sign_up_failure": {
"title": "Registrering misslyckades"
"title": "Sign Up Failure"
},
"server_error": {
"title": "Serverfel"
},
"vote_failure": {
"title": "Röstning misslyckades",
"title": "Vote Failure",
"poll_ended": "Omröstningen har avslutats"
},
"discard_post_content": {
"title": "Släng utkast",
"message": "Bekräfta för att slänga inläggsutkast."
"title": "Discard Draft",
"message": "Confirm to discard composed post content."
},
"publish_post_failure": {
"title": "Publicering misslyckades",
"message": "Det gick inte att publicera inlägget.\nKontrollera din internetanslutning.",
"title": "Publish Failure",
"message": "Failed to publish the post.\nPlease check your internet connection.",
"attachments_message": {
"video_attach_with_photo": "Det går inte att bifoga en video till en status som redan innehåller bilder.",
"more_than_one_video": "Det går inte att bifoga mer än en 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": "Fel vid profilredigering",
"message": "Kan inte redigera profil. Försök igen."
"title": "Edit Profile Error",
"message": "Cannot edit profile. Please try again."
},
"sign_out": {
"title": "Logga ut",
"title": "Sign Out",
"message": "Är du säker på att du vill logga ut?",
"confirm": "Logga ut"
"confirm": "Sign Out"
},
"block_domain": {
"title": "Är du verkligen, verkligen säker på att du vill blockera hela %s? I de flesta fall är några riktade blockeringar eller nedtystade konton tillräckligt och att föredra. Du kommer inte se innehåll från den domänen och dina följare från den domänen kommer att tas bort.",
"block_entire_domain": "Blockera domän"
"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": "Kunde inte spara foto",
"message": "Aktivera åtkomst till Bilder för att spara bilden."
"title": "Save Photo Failure",
"message": "Please enable the photo library access permission to save the photo."
},
"delete_post": {
"title": "Radera inlägg",
"message": "Är du säker på att du vill radera detta inlägg?"
"title": "Delete Post",
"message": "Are you sure you want to delete this post?"
},
"clean_cache": {
"title": "Rensa cache",
"message": "Rensade %s cache."
"message": "Successfully cleaned %s cache."
}
},
"controls": {
"actions": {
"back": "Tillbaka",
"next": "Nästa",
"previous": "Tidigare",
"open": "Öppna",
"add": "Lägg till",
"remove": "Radera",
"back": "Back",
"next": "Next",
"previous": "Previous",
"open": "Open",
"add": "Add",
"remove": "Remove",
"edit": "Redigera",
"save": "Spara",
"ok": "OK",
"done": "Klar",
"confirm": "Bekräfta",
"confirm": "Confirm",
"continue": "Fortsätt",
"compose": "Skriv",
"compose": "Compose",
"cancel": "Avbryt",
"discard": "Kasta",
"discard": "Discard",
"try_again": "Försök igen",
"take_photo": "Ta foto",
"take_photo": "Take Photo",
"save_photo": "Spara foto",
"copy_photo": "Kopiera foto",
"sign_in": "Logga in",
"sign_up": "Registrera dig",
"see_more": "Visa mer",
"preview": "Förhandstitt",
"sign_in": "Sign In",
"sign_up": "Sign Up",
"see_more": "See More",
"preview": "Preview",
"share": "Dela",
"share_user": "Dela %s",
"share_post": "Dela inlägg",
"share_post": "Share Post",
"open_in_safari": "Öppna i Safari",
"open_in_browser": "Öppna i webbläsare",
"find_people": "Hitta personer att följa",
"manually_search": "Sök manuellt istället",
"skip": "Hoppa över",
"reply": "Svara",
"open_in_browser": "Open in Browser",
"find_people": "Find people to follow",
"manually_search": "Manually search instead",
"skip": "Skip",
"reply": "Reply",
"report_user": "Rapportera %s",
"block_domain": "Blockera %s",
"unblock_domain": "Avblockera %s",
"block_domain": "Block %s",
"unblock_domain": "Unblock %s",
"settings": "Inställningar",
"delete": "Radera"
},
"tabs": {
"home": "Hem",
"search": "Sök",
"notification": "Avisering",
"home": "Home",
"search": "Search",
"notification": "Notification",
"profile": "Profil"
},
"keyboard": {
"common": {
"switch_to_tab": "Växla till %s",
"compose_new_post": "Skriv nytt inlägg",
"show_favorites": "Visa favoriter",
"open_settings": "Öppna inställningar"
"switch_to_tab": "Switch to %s",
"compose_new_post": "Compose New Post",
"show_favorites": "Show Favorites",
"open_settings": "Open Settings"
},
"timeline": {
"previous_status": "Föregående inlägg",
"next_status": "Nästa inlägg",
"open_status": "Öppna inlägg",
"open_author_profile": "Öppna författarens profil",
"open_reblogger_profile": "Öppna ompostarens profil",
"reply_status": "Svara på inlägg",
"toggle_reblog": "Växla ompostning på inlägg",
"toggle_favorite": "Växla favorit på inlägg",
"toggle_content_warning": "Växla innehållsvarning",
"preview_image": "Förhandsgranska bild"
"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": "Föregående avsnitt",
"next_section": "Nästa avsnitt"
"previous_section": "Previous Section",
"next_section": "Next Section"
}
},
"status": {
"user_reblogged": "%s ompostade",
"user_replied_to": "Svarade på %s",
"show_post": "Visa inlägg",
"show_user_profile": "Visa användarprofil",
"content_warning": "Innehållsvarning",
"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",
"user_reblogged": "%s reblogged",
"user_replied_to": "Replied to %s",
"show_post": "Show Post",
"show_user_profile": "Show user profile",
"content_warning": "Content Warning",
"media_content_warning": "Tap anywhere to reveal",
"poll": {
"vote": "Rösta",
"closed": "Stängd"
"vote": "Vote",
"closed": "Closed"
},
"actions": {
"reply": "Svara",
"reblog": "Omposta",
"unreblog": "Ångra ompostning",
"favorite": "Favorit",
"unfavorite": "Ta bort favorit",
"reply": "Reply",
"reblog": "Reblog",
"unreblog": "Undo reblog",
"favorite": "Favorite",
"unfavorite": "Unfavorite",
"menu": "Meny",
"hide": "Dölj",
"show_image": "Visa bild",
"show_gif": "Visa GIF",
"show_video_player": "Visa videospelare",
"tap_then_hold_to_show_menu": "Tryck och håll ned för att visa menyn"
"hide": "Dölj"
},
"tag": {
"url": "URL",
"mention": "Nämn",
"link": "Länk",
"hashtag": "Hashtagg",
"email": "E-post",
"mention": "Mention",
"link": "Link",
"hashtag": "Hashtag",
"email": "Email",
"emoji": "Emoji"
},
"visibility": {
"unlisted": "Alla kan se detta inlägg men det visas inte i den offentliga tidslinjen.",
"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 nämnda användare kan se detta inlägg."
"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": {
"follow": "Följ",
"following": "Följer",
"request": "Begäran",
"pending": "Väntande",
"block": "Blockera",
"block_user": "Blockera %s",
"block_domain": "Blockera %s",
"unblock": "Avblockera",
"unblock_user": "Avblockera %s",
"blocked": "Blockerad",
"mute": "Tysta",
"mute_user": "Tysta %s",
"unmute": "Avtysta",
"unmute_user": "Avtysta %s",
"muted": "Tystad",
"edit_info": "Redigera info"
"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"
},
"timeline": {
"filtered": "Filtrerat",
"filtered": "Filtered",
"timestamp": {
"now": "Nu"
},
"loader": {
"load_missing_posts": "Ladda saknade inlägg",
"loading_missing_posts": "Laddar saknade inlägg...",
"load_missing_posts": "Load missing posts",
"loading_missing_posts": "Loading missing posts...",
"show_more_replies": "Visa fler svar"
},
"header": {
"no_status_found": "Inga inlägg hittades",
"blocking_warning": "Du kan inte visa användarens profil\nförrän du avblockerar dem.\nDin profil ser ut så här för dem.",
"user_blocking_warning": "Du kan inte visa %ss profil\nförrän du avblockerar dem.\nDin profil ser ut så här för dem.",
"blocked_warning": "Du kan inte visa den här användarens profil\nförrän de avblockerar dig.",
"user_blocked_warning": "Du kan inte visa %ss profil\nförrän de avblockerar dig.",
"suspended_warning": "Denna användare har stängts av.",
"user_suspended_warning": "%ss konto har blivit avstängt."
"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": "Socialt nätverkande\ntillbaka i dina händer.",
"slogan": "Social networking\nback in your hands.",
"get_started": "Kom igång",
"log_in": "Logga in"
},
"server_picker": {
"title": "Mastodon utgörs av användare i olika gemenskaper.",
"subtitle": "Välj en gemenskap baserad på dina intressen, region eller ett allmänt syfte.",
"subtitle_extend": "Välj en gemenskap baserad på dina intressen, region eller ett allmänt syfte. Varje gemenskap drivs av en helt oberoende organisation eller individ.",
"title": "Mastodon is made of users in different communities.",
"subtitle": "Pick a community based on your interests, region, or a general purpose one.",
"subtitle_extend": "Pick a community based on your interests, region, or a general purpose one. Each community is operated by an entirely independent organization or individual.",
"button": {
"category": {
"all": "Alla",
"all": "All",
"all_accessiblity_description": "Kategori: Alla",
"academia": "vetenskap",
"activism": "aktivism",
"food": "mat",
"academia": "academia",
"activism": "activism",
"food": "food",
"furry": "furry",
"games": "spel",
"general": "allmänt",
"journalism": "journalistik",
"games": "games",
"general": "general",
"journalism": "journalism",
"lgbt": "lgbt",
"regional": "regionalt",
"art": "konst",
"music": "musik",
"tech": "teknik"
"regional": "regional",
"art": "art",
"music": "music",
"tech": "tech"
},
"see_less": "Visa mindre",
"see_more": "Visa mer"
"see_less": "See Less",
"see_more": "See More"
},
"label": {
"language": "SPRÅK",
@ -240,380 +234,363 @@
"category": "KATEGORI"
},
"input": {
"placeholder": "Sök gemenskaper"
"placeholder": "Search communities"
},
"empty_state": {
"finding_servers": "Söker tillgängliga servrar...",
"bad_network": "Något gick fel när data laddades. Försök igen eller kontrollera din internetanslutning.",
"finding_servers": "Finding available servers...",
"bad_network": "Something went wrong while loading the data. Check your internet connection.",
"no_results": "Inga resultat"
}
},
"register": {
"title": "Låt oss få igång dig på %s",
"title": "Lets get you set up on %s",
"input": {
"avatar": {
"delete": "Radera"
},
"username": {
"placeholder": "användarnamn",
"duplicate_prompt": "Det här användarnamnet är redan taget."
"placeholder": "username",
"duplicate_prompt": "This username is taken."
},
"display_name": {
"placeholder": "visningsnamn"
"placeholder": "display name"
},
"email": {
"placeholder": "e-post"
"placeholder": "email"
},
"password": {
"placeholder": "lösenord",
"require": "Ditt lösenord behöver minst:",
"character_limit": "8 tecken",
"placeholder": "password",
"require": "Your password needs at least:",
"character_limit": "8 characters",
"accessibility": {
"checked": "markerad",
"unchecked": "avmarkerad"
"checked": "checked",
"unchecked": "unchecked"
},
"hint": "Ditt lösenord måste bestå av minst 8 tecken"
"hint": "Your password needs at least eight characters"
},
"invite": {
"registration_user_invite_request": "Varför vill du gå med?"
"registration_user_invite_request": "Why do you want to join?"
}
},
"error": {
"item": {
"username": "Användarnamn",
"email": "E-post",
"email": "Email",
"password": "Lösenord",
"agreement": "Avtal",
"locale": "Språk",
"reason": "Anledning"
"agreement": "Agreement",
"locale": "Locale",
"reason": "Reason"
},
"reason": {
"blocked": "%s innehåller en icke tillåten e-postleverantör",
"unreachable": "%s verkar inte existera",
"taken": "%s används redan",
"reserved": "%s är ett reserverat nyckelord",
"accepted": "%s måste godkännas",
"blank": "%s krävs",
"invalid": "%s är ogiltig",
"too_long": "%s är för långt",
"too_short": "%s är för kort",
"inclusion": "%s är inte ett värde som stöds"
"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": "Användarnamnet kan bara innehålla alfanumeriska tecken och understreck",
"username_too_long": "Användarnamnet är för långt (kan inte vara längre än 30 tecken)",
"email_invalid": "Detta är inte en giltig e-postadress",
"password_too_short": "Lösenordet är för kort (det måste vara minst 8 tecken)"
"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": "Några grundregler.",
"subtitle": "Dessa sätts och verkställs av moderatorerna på %s.",
"prompt": "Genom att fortsätta omfattas du av villkoren för tjänsten och sekretesspolicyn för %s.",
"terms_of_service": "användarvillkor",
"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": "integritetspolicy",
"button": {
"confirm": "Jag godkänner"
"confirm": "I Agree"
}
},
"confirm_email": {
"title": "En sista sak.",
"subtitle": "Tryck på länken vi e-postade till dig för att verifiera ditt konto.",
"title": "One last thing.",
"subtitle": "Tap the link we emailed to you to verify your account.",
"button": {
"open_email_app": "Öppna epostappen",
"resend": "Skicka igen"
"open_email_app": "Open Email App",
"resend": "Resend"
},
"dont_receive_email": {
"title": "Kolla din e-post",
"description": "Kontrollera om din e-postadress är korrekt samt din skräppostmapp om du inte har gjort det.",
"resend_email": "Skicka e-postmeddelande igen"
"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": "Kolla din inkorg.",
"description": "Vi har precis skickat ett e-postmeddelande till dig. Kontrollera din skräpmapp om du inte har gjort det.",
"mail": "E-post",
"open_email_client": "Öppna e-postklient"
"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": "Hem",
"title": "Home",
"navigation_bar_state": {
"offline": "Offline",
"new_posts": "Se nya inlägg",
"published": "Publicerad!",
"Publishing": "Publicerar inlägget..."
"new_posts": "See new posts",
"published": "Published!",
"Publishing": "Publishing post..."
}
},
"suggestion_account": {
"title": "Hitta personer att följa",
"follow_explain": "När du följer någon, kommer du att se deras inlägg i ditt hemflöde."
"title": "Find People to Follow",
"follow_explain": "When you follow someone, youll see their posts in your home feed."
},
"compose": {
"title": {
"new_post": "Nytt inlägg",
"new_reply": "Nytt svar"
"new_post": "New Post",
"new_reply": "New Reply"
},
"media_selection": {
"camera": "Ta foto",
"camera": "Take Photo",
"photo_library": "Fotobibliotek",
"browse": "Bläddra"
},
"content_input_placeholder": "Skriv eller klistra in vad du har på hjärtat",
"content_input_placeholder": "Type or paste whats on your mind",
"compose_action": "Publicera",
"replying_to_user": "svarar %s",
"replying_to_user": "replying to %s",
"attachment": {
"photo": "foto",
"photo": "photo",
"video": "video",
"attachment_broken": "Denna %s är trasig och kan inte\nladdas upp till Mastodon.",
"description_photo": "Beskriv fotot för synskadade...",
"description_video": "Beskriv videon för de synskadade..."
"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..."
},
"poll": {
"duration_time": "Varaktighet: %s",
"thirty_minutes": "30 minuter",
"one_hour": "1 timme",
"six_hours": "6 timmar",
"one_day": "1dag",
"three_days": "3 dagar",
"seven_days": "7 dagar",
"option_number": "Alternativ %ld"
"one_hour": "1 Hour",
"six_hours": "6 Hours",
"one_day": "1 Day",
"three_days": "3 Days",
"seven_days": "7 Days",
"option_number": "Option %ld"
},
"content_warning": {
"placeholder": "Skriv en noggrann varning här..."
"placeholder": "Write an accurate warning here..."
},
"visibility": {
"public": "Publik",
"unlisted": "Olistad",
"private": "Endast följare",
"direct": "Bara personer jag nämner"
"public": "Public",
"unlisted": "Unlisted",
"private": "Followers only",
"direct": "Only people I mention"
},
"auto_complete": {
"space_to_add": "Mellanslag att lägga till"
"space_to_add": "Space to add"
},
"accessibility": {
"append_attachment": "Lägg till bilaga",
"append_poll": "Lägg till omröstning",
"remove_poll": "Ta bort omröstning",
"custom_emoji_picker": "Anpassad emoji-väljare",
"enable_content_warning": "Aktivera innehållsvarning",
"disable_content_warning": "Inaktivera innehållsvarning",
"post_visibility_menu": "Inläggssynlighetsmeny"
"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"
},
"keyboard": {
"discard_post": "Kasta inlägget",
"publish_post": "Publicerar inlägget",
"toggle_poll": "Växla omröstning",
"toggle_content_warning": "Växla innehållsvarning",
"append_attachment_entry": "Lägg till bilaga - %s",
"select_visibility_entry": "Välj synlighet - %s"
"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": {
"dashboard": {
"posts": "inlägg",
"following": "följer",
"followers": "följare"
"posts": "posts",
"following": "following",
"followers": "followers"
},
"fields": {
"add_row": "Lägg till rad",
"add_row": "Add Row",
"placeholder": {
"label": "Etikett",
"content": "Innehåll"
"label": "Label",
"content": "Content"
}
},
"segmented_control": {
"posts": "Inlägg",
"replies": "Svar",
"posts_and_replies": "Inlägg och svar",
"posts": "Posts",
"replies": "Replies",
"posts_and_replies": "Posts and Replies",
"media": "Media",
"about": "Om"
},
"relationship_action_alert": {
"confirm_mute_user": {
"title": "Tysta konto",
"message": "Bekräfta för att tysta %s"
"title": "Mute Account",
"message": "Confirm to mute %s"
},
"confirm_unmute_user": {
"title": "Avtysta konto",
"message": "Bekräfta för att avtysta %s"
"title": "Unmute Account",
"message": "Confirm to unmute %s"
},
"confirm_block_user": {
"title": "Blockera konto",
"message": "Bekräfta för att blockera %s"
"title": "Block Account",
"message": "Confirm to block %s"
},
"confirm_unblock_user": {
"title": "Avblockera konto",
"message": "Bekräfta för att avblockera %s"
"title": "Unblock Account",
"message": "Confirm to unblock %s"
}
},
"accessibility": {
"show_avatar_image": "Visa profilbild",
"edit_avatar_image": "Redigera profilbild",
"show_banner_image": "Visa banner",
"double_tap_to_open_the_list": "Dubbeltryck för att öppna listan"
}
},
"follower": {
"footer": "Följare från andra servrar visas inte."
"footer": "Followers from other servers are not displayed."
},
"following": {
"footer": "Följda på andra servrar visas inte."
"footer": "Follows from other servers are not displayed."
},
"search": {
"title": "Sök",
"title": "Search",
"search_bar": {
"placeholder": "Sök hashtaggar och användare",
"placeholder": "Search hashtags and users",
"cancel": "Avbryt"
},
"recommend": {
"button_text": "Visa alla",
"button_text": "See All",
"hash_tag": {
"title": "Trendar på Mastodon",
"description": "Hashtaggar som får en hel del uppmärksamhet",
"people_talking": "%s personer diskuterar"
"title": "Trending on Mastodon",
"description": "Hashtags that are getting quite a bit of attention",
"people_talking": "%s people are talking"
},
"accounts": {
"title": "Konton som du kanske gillar",
"description": "Du kanske vill följa dessa konton",
"title": "Accounts you might like",
"description": "You may like to follow these accounts",
"follow": "Följ"
}
},
"searching": {
"segment": {
"all": "Allt",
"people": "Personer",
"hashtags": "Hashtaggar",
"posts": "Inlägg"
"all": "All",
"people": "People",
"hashtags": "Hashtags",
"posts": "Posts"
},
"empty_state": {
"no_results": "Inga resultat"
},
"recent_search": "Senaste sökningarna",
"recent_search": "Recent searches",
"clear": "Rensa"
}
},
"discovery": {
"tabs": {
"posts": "Inlägg",
"hashtags": "Hashtaggar",
"news": "Nyheter",
"community": "Gemenskap",
"for_you": "För dig"
},
"intro": "Detta är de inlägg som engagerar i ditt hörn av Mastodon."
},
"favorite": {
"title": "Dina favoriter"
"title": "Your Favorites"
},
"notification": {
"title": {
"Everything": "Allting",
"Mentions": "Omnämningar"
"Everything": "Everything",
"Mentions": "Mentions"
},
"notification_description": {
"followed_you": "följde dig",
"favorited_your_post": "favoriserade ditt inlägg",
"reblogged_your_post": "ompostade ditt inlägg",
"followed_you": "followed you",
"favorited_your_post": "favorited your post",
"reblogged_your_post": "reblogged your post",
"mentioned_you": "nämnde dig",
"request_to_follow_you": "begär att följa dig",
"poll_has_ended": "omröstningen har avslutats"
"request_to_follow_you": "request to follow you",
"poll_has_ended": "poll has ended"
},
"keyobard": {
"show_everything": "Visa allt",
"show_mentions": "Visa omnämningar"
"show_everything": "Show Everything",
"show_mentions": "Show Mentions"
}
},
"thread": {
"back_title": "Inlägg",
"title": "Inlägg från %s"
"back_title": "Post",
"title": "Post from %s"
},
"settings": {
"title": "Inställningar",
"section": {
"appearance": {
"title": "Utseende",
"automatic": "Automatisk",
"light": "Alltid ljus",
"dark": "Alltid mörk"
"title": "Appearance",
"automatic": "Automatic",
"light": "Always Light",
"dark": "Always Dark"
},
"look_and_feel": {
"title": "Utseende och känsla",
"use_system": "Följ systeminställningarna",
"really_dark": "Verkligen mörk",
"sorta_dark": "Ganska mörk",
"title": "Look and Feel",
"use_system": "Use System",
"really_dark": "Really Dark",
"sorta_dark": "Sorta Dark",
"light": "Ljust"
},
"notifications": {
"title": "Aviseringar",
"favorites": "Favoriserar mitt inlägg",
"follows": "Följer mig",
"boosts": "Ompostar mitt inlägg",
"mentions": "Nämner mig",
"title": "Notifications",
"favorites": "Favorites my post",
"follows": "Follows me",
"boosts": "Reblogs my post",
"mentions": "Mentions me",
"trigger": {
"anyone": "alla",
"follower": "en följare",
"follow": "någon jag följer",
"noone": "ingen",
"title": "Meddela mig när"
"anyone": "anyone",
"follower": "a follower",
"follow": "anyone I follow",
"noone": "no one",
"title": "Notify me when"
}
},
"preference": {
"title": "Inställningar",
"true_black_dark_mode": "True black-mörkt läge",
"title": "Preferences",
"true_black_dark_mode": "True black dark mode",
"disable_avatar_animation": "Inaktivera animerade avatarer",
"disable_emoji_animation": "Inaktivera animerade emojis",
"using_default_browser": "Använd standardwebbläsare för att öppna länkar",
"open_links_in_mastodon": "Öppna länkar i Mastodon"
"using_default_browser": "Use default browser to open links"
},
"boring_zone": {
"title": "Den tråkiga zonen",
"title": "The Boring Zone",
"account_settings": "Kontoinställningar",
"terms": "Användarvillkor",
"privacy": "Integritetspolicy"
},
"spicy_zone": {
"title": "Den spännande zonen",
"clear": "Rensa mediacache",
"title": "The Spicy Zone",
"clear": "Clear Media Cache",
"signout": "Logga ut"
}
},
"footer": {
"mastodon_description": "Mastodon är programvara med öppen källkod. Du kan rapportera problem via GitHub på %s (%s)"
"mastodon_description": "Mastodon is open source software. You can report issues on GitHub at %s (%s)"
},
"keyboard": {
"close_settings_window": "Stäng inställningsfönstret"
"close_settings_window": "Close Settings Window"
}
},
"report": {
"title_report": "Rapportera",
"title_report": "Report",
"title": "Rapportera %s",
"step1": "Steg 1 av 2",
"step2": "Steg 2 av 2",
"content1": "Finns det några andra inlägg du vill lägga till i rapporten?",
"content2": "Finns det något som moderatorerna borde känna till om denna rapport?",
"report_sent_title": "Tack för din rapport, vi ska titta på det.",
"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": "Skicka rapport",
"skip_to_send": "Skicka utan kommentar",
"text_placeholder": "Skriv eller klistra in ytterligare kommentarer",
"reported": "RAPPORTERAD"
"skip_to_send": "Send without comment",
"text_placeholder": "Type or paste additional comments",
"reported": "REPORTED"
},
"preview": {
"keyboard": {
"close_preview": "Stäng förhandsvisning",
"show_next": "Visa nästa",
"show_previous": "Visa föregående"
"close_preview": "Close Preview",
"show_next": "Show Next",
"show_previous": "Show Previous"
}
},
"account_list": {
"tab_bar_hint": "Nuvarande vald profil: %s. Dubbeltryck och håll för att visa kontoväxlare",
"dismiss_account_switcher": "Stäng kontoväxlare",
"tab_bar_hint": "Current selected profile: %s. Double tap then hold to show account switcher",
"dismiss_account_switcher": "Dismiss Account Switcher",
"add_account": "Lägg till konto"
},
"wizard": {
"new_in_mastodon": "Nytt i Mastodon",
"multiple_account_switch_intro_description": "Växla mellan flera konton genom att hålla inne profilknappen.",
"accessibility_hint": "Dubbeltryck för att avvisa den här guiden"
"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"
}
}
}

View File

@ -1,6 +1,6 @@
{
"NSCameraUsageDescription": "Används för att ta foto till inlägg",
"NSPhotoLibraryAddUsageDescription": "Används för att spara foto till Bilder",
"NewPostShortcutItemTitle": "Nytt inlägg",
"SearchShortcutItemTitle": "Sök"
"NSCameraUsageDescription": "Used to take photo for post status",
"NSPhotoLibraryAddUsageDescription": "Used to save photo into the Photo Library",
"NewPostShortcutItemTitle": "New Post",
"SearchShortcutItemTitle": "Search"
}

View File

@ -100,20 +100,6 @@
<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>

View File

@ -129,9 +129,7 @@
"show_post": "แสดงโพสต์",
"show_user_profile": "แสดงโปรไฟล์ผู้ใช้",
"content_warning": "คำเตือนเนื้อหา",
"sensitive_content": "เนื้อหาที่ละเอียดอ่อน",
"media_content_warning": "แตะที่ใดก็ตามเพื่อเปิดเผย",
"tap_to_reveal": "แตะเพื่อเปิดเผย",
"poll": {
"vote": "ลงคะแนน",
"closed": "ปิดแล้ว"
@ -143,11 +141,7 @@
"favorite": "ชื่นชอบ",
"unfavorite": "เลิกชื่นชอบ",
"menu": "เมนู",
"hide": "ซ่อน",
"show_image": "แสดงภาพ",
"show_gif": "แสดง GIF",
"show_video_player": "แสดงตัวเล่นวิดีโอ",
"tap_then_hold_to_show_menu": "แตะค้างไว้เพื่อแสดงเมนู"
"hide": "ซ่อน"
},
"tag": {
"url": "URL",
@ -446,12 +440,6 @@
"title": "เลิกปิดกั้นบัญชี",
"message": "ยืนยันเพื่อเลิกปิดกั้น %s"
}
},
"accessibility": {
"show_avatar_image": "แสดงภาพประจำตัว",
"edit_avatar_image": "แก้ไขภาพประจำตัว",
"show_banner_image": "แสดงภาพแบนเนอร์",
"double_tap_to_open_the_list": "แตะสองครั้งเพื่อเปิดรายการ"
}
},
"follower": {
@ -493,16 +481,6 @@
"clear": "ล้าง"
}
},
"discovery": {
"tabs": {
"posts": "โพสต์",
"hashtags": "แฮชแท็ก",
"news": "ข่าว",
"community": "Community",
"for_you": "สำหรับคุณ"
},
"intro": "นี่คือโพสต์ที่กำลังได้รับความสนใจในมุมของ Mastodon ของคุณ"
},
"favorite": {
"title": "รายการโปรดของคุณ"
},
@ -563,8 +541,7 @@
"true_black_dark_mode": "โหมดมืดดำสนิท",
"disable_avatar_animation": "ปิดใช้งานภาพประจำตัวแบบเคลื่อนไหว",
"disable_emoji_animation": "ปิดใช้งานอีโมจิแบบเคลื่อนไหว",
"using_default_browser": "ใช้เบราว์เซอร์เริ่มต้นเพื่อเปิดลิงก์",
"open_links_in_mastodon": "เปิดลิงก์ใน Mastodon"
"using_default_browser": "ใช้เบราว์เซอร์เริ่มต้นเพื่อเปิดลิงก์"
},
"boring_zone": {
"title": "โซนน่าเบื่อ",

View File

@ -1,406 +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>Okunmamış 1 bildirim</string>
<key>other</key>
<string>Okunmamış %ld bildirim</string>
</dict>
</dict>
<key>a11y.plural.count.input_limit_exceeds</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@character_count@ karakter limiti aşıyor</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 karakter</string>
<key>other</key>
<string>%ld karakter</string>
</dict>
</dict>
<key>a11y.plural.count.input_limit_remains</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@character_count@ karakter limiti var</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 karakter</string>
<key>other</key>
<string>%ld karakter</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>gönderi</string>
<key>other</key>
<string>gönderi</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 gönderi</string>
<key>other</key>
<string>%ld gönderi</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 favori</string>
<key>other</key>
<string>%ld favori</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 yeniden paylaşım</string>
<key>other</key>
<string>%ld yeniden paylaşım</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>%ld yanıt</string>
<key>other</key>
<string>%ld yanıt</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 oy</string>
<key>other</key>
<string>%ld oy</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 oy veren</string>
<key>other</key>
<string>%ld oy veren</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 kişi konuşuyor</string>
<key>other</key>
<string>%ld kişi konuşuyor</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 takip edilen</string>
<key>other</key>
<string>%ld takip edilen</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 takipçi</string>
<key>other</key>
<string>%ld takipçi</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 yıl kaldı</string>
<key>other</key>
<string>%ld yıl kaldı</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 ay kaldı</string>
<key>other</key>
<string>%ld ay kaldı</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 gün kaldı</string>
<key>other</key>
<string>%ld gün kaldı</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 saat kaldı</string>
<key>other</key>
<string>%ld saat kaldı</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 dakika kaldı</string>
<key>other</key>
<string>%ld dakika kaldı</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 saniye kaldı</string>
<key>other</key>
<string>%ld saniye kaldı</string>
</dict>
</dict>
<key>date.year.ago.abbr</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_year_ago_abbr@</string>
<key>count_year_ago_abbr</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 yıl önce</string>
<key>other</key>
<string>%ld yıl önce</string>
</dict>
</dict>
<key>date.month.ago.abbr</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_month_ago_abbr@</string>
<key>count_month_ago_abbr</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 ay önce</string>
<key>other</key>
<string>%ld ay önce</string>
</dict>
</dict>
<key>date.day.ago.abbr</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_day_ago_abbr@</string>
<key>count_day_ago_abbr</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 gün önce</string>
<key>other</key>
<string>%ld gün önce</string>
</dict>
</dict>
<key>date.hour.ago.abbr</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_hour_ago_abbr@</string>
<key>count_hour_ago_abbr</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 saat önce</string>
<key>other</key>
<string>%ld saat önce</string>
</dict>
</dict>
<key>date.minute.ago.abbr</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_minute_ago_abbr@</string>
<key>count_minute_ago_abbr</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 dakika önce</string>
<key>other</key>
<string>%ld dakika önce</string>
</dict>
</dict>
<key>date.second.ago.abbr</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@count_second_ago_abbr@</string>
<key>count_second_ago_abbr</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 saniye önce</string>
<key>other</key>
<string>%ld saniye önce</string>
</dict>
</dict>
</dict>
</plist>

View File

@ -1,619 +0,0 @@
{
"common": {
"alerts": {
"common": {
"please_try_again": "Lütfen tekrar deneyin.",
"please_try_again_later": "Lütfen daha sonra tekrar deneyin."
},
"sign_up_failure": {
"title": "Kaydolma Başarısız"
},
"server_error": {
"title": "Sunucu Hatası"
},
"vote_failure": {
"title": "Oy Verme Başarısız",
"poll_ended": "Anket bitti"
},
"discard_post_content": {
"title": "Taslağı Sil",
"message": "Yazdığın gönderiyi paylaşmadan silmek istiyor musun?"
},
"publish_post_failure": {
"title": "Paylaşılamadı",
"message": "Gönderi paylaşılamadı. Lütfen internet bağlantını kontrol et.",
"attachments_message": {
"video_attach_with_photo": "İçeriğinde görseller olan bir gönderiye video eklenemez.",
"more_than_one_video": "Gönderiye birden fazla video eklenemez."
}
},
"edit_profile_failure": {
"title": "Profil Düzenleme Hatası",
"message": "Profil düzenlenemedi. Lütfen tekrar deneyin."
},
"sign_out": {
"title": "Oturumu Kapat",
"message": "Oturumu kapatmak istediğinize emin misiniz?",
"confirm": "Oturumu Kapat"
},
"block_domain": {
"title": "%s alan adını tamamen engellemek istediğine gerçekten emin misiniz? Pek çok durumda o alan adından birkaç kişiyi engellemek ve sessize almak yeterlidir ve tercih edilir. Engellediğinizde bu alan adından herhangi bir içerik görmeyeceksiniz ve o alan adından olan takipçileriniz silinecek.",
"block_entire_domain": "Alan Adını Engelle"
},
"save_photo_failure": {
"title": "Görsel Kaydetme Hatası",
"message": "Görseli kaydetmek için lütfen galeri erişim iznini aktifleştirin."
},
"delete_post": {
"title": "Gönderiyi Sil",
"message": "Bu gönderiyi silmek istediğinize emin misiniz?"
},
"clean_cache": {
"title": "Önbelleği Temizle",
"message": "%s boyutunda önbellek temizlendi."
}
},
"controls": {
"actions": {
"back": "Geri",
"next": "İleri",
"previous": "Önceki",
"open": "Aç",
"add": "Ekle",
"remove": "Kaldır",
"edit": "Düzenle",
"save": "Kaydet",
"ok": "Tamam",
"done": "Kapat",
"confirm": "Onayla",
"continue": "Devam et",
"compose": "Yaz",
"cancel": "İptal et",
"discard": "Vazgeç",
"try_again": "Tekrar Deneyin",
"take_photo": "Fotoğraf Çek",
"save_photo": "Fotoğrafı Kaydet",
"copy_photo": "Fotoğrafı Kopyala",
"sign_in": "Giriş Yap",
"sign_up": "Kaydol",
"see_more": "Daha Fazla Gör",
"preview": "Önizleme",
"share": "Paylaş",
"share_user": "%s ile paylaş",
"share_post": "Gönderiyi Paylaş",
"open_in_safari": "Safari'de Aç",
"open_in_browser": "Tarayıcıda Aç",
"find_people": "Takip etmek için birkaç kişi bul",
"manually_search": "Onun yerine manuel olarak ara",
"skip": "Atla",
"reply": "Yanıtla",
"report_user": "%s kişisini bildir",
"block_domain": "%s kişisini engelle",
"unblock_domain": "%s kişisinin engelini kaldır",
"settings": "Ayarlar",
"delete": "Sil"
},
"tabs": {
"home": "Ana Sayfa",
"search": "Arama",
"notification": "Bildirimler",
"profile": "Profil"
},
"keyboard": {
"common": {
"switch_to_tab": "Geç: %s",
"compose_new_post": "Yeni Gönderi Yaz",
"show_favorites": "Favorilerimi Göster",
"open_settings": "Ayarları Aç"
},
"timeline": {
"previous_status": "Önceki Gönderi",
"next_status": "Sonraki Gönderi",
"open_status": "Gönderiyi Aç",
"open_author_profile": "Yazarın Profilini Aç",
"open_reblogger_profile": "Yeniden Paylaşanın Profilini Aç",
"reply_status": "Gönderiyi Yanıtla",
"toggle_reblog": "Gönderiyi yeniden paylaşma durumunu değiştir",
"toggle_favorite": "Gönderiyi favorileme durumunu değiştir",
"toggle_content_warning": "İçerik Uyarısı durumunu değiştir",
"preview_image": "Görseli Önizle"
},
"segmented_control": {
"previous_section": "Önceki Seçim",
"next_section": "Sonraki Bölüm"
}
},
"status": {
"user_reblogged": "%s yeniden paylaştı",
"user_replied_to": "%s kullanıcısına yanıt verdi",
"show_post": "Gönderiyi Göster",
"show_user_profile": "Kullanıcı profilini göster",
"content_warning": "İçerik Uyarısı",
"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",
"poll": {
"vote": "Oy ver",
"closed": "Kapandı"
},
"actions": {
"reply": "Yanıtla",
"reblog": "Yeniden paylaş",
"unreblog": "Yeniden paylaşımı geri al",
"favorite": "Favorile",
"unfavorite": "Favorilerden Çıkar",
"menu": "Menü",
"hide": "Gizle",
"show_image": "Görüntüyü göster",
"show_gif": "GIF'i göster",
"show_video_player": "Video oynatıcıyı göster",
"tap_then_hold_to_show_menu": "Menüyü göstermek için dokunun ve basılı tutun"
},
"tag": {
"url": "Bağlantı",
"mention": "Bahset",
"link": "Bağlantı",
"hashtag": "Etiket",
"email": "E-posta",
"emoji": "Emoji"
},
"visibility": {
"unlisted": "Bu gönderiyi herkes görebilir, fakat herkese açık zaman tünelinde gösterilmez.",
"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."
}
},
"friendship": {
"follow": "Takip et",
"following": "Takip ediliyor",
"request": "İstek",
"pending": "Bekliyor",
"block": "Engelle",
"block_user": "%s kişisini engelle",
"block_domain": "%s kişisini engelle",
"unblock": "Engeli kaldır",
"unblock_user": "%s kişisinin engelini kaldır",
"blocked": "Engellendi",
"mute": "Sessize al",
"mute_user": "Sustur %s",
"unmute": "Susturmayı kaldır",
"unmute_user": "Sesini aç %s",
"muted": "Susturuldu",
"edit_info": "Bilgiyi Düzenle"
},
"timeline": {
"filtered": "Filtrelenmiş",
"timestamp": {
"now": "Şimdi"
},
"loader": {
"load_missing_posts": "Daha fazla gönderi yükle",
"loading_missing_posts": "Daha fazla gönderi yükleniyor...",
"show_more_replies": "Daha fazla yanıt görüntüe"
},
"header": {
"no_status_found": "Hiçbir Gönderi Bulunamadı",
"blocking_warning": "Bu kişinin engelini kaldırana kadar\nonun profilini göremezsiniz.\nBu kişiye göre profiliniz böyle gözüküyor.",
"user_blocking_warning": "%s kişisinin engelini kaldırana kadar\nonun profilini göremezsiniz.\nBu kişiye göre profiliniz böyle gözüküyor.",
"blocked_warning": "Bu kişi sizin engelinizi kaldırana\nkadar onun profilini göremezsiniz.",
"user_blocked_warning": "%s kişisi sizin engelinizi kaldırana\nkadar onun profilini göremezsiniz.",
"suspended_warning": "Bu kullanıcı askıya alındı.",
"user_suspended_warning": "%s kişisinin hesabı askıya alındı."
}
}
}
},
"scene": {
"welcome": {
"slogan": "Sosyal ağ,\ntekrardan ellerinizde.",
"get_started": "Başlayın",
"log_in": "Oturum Aç"
},
"server_picker": {
"title": "Mastodon, farklı topluluklardaki kullanıcılardan oluşur.",
"subtitle": "İlgi alanlarınıza, bölgenize veya genel amaçlı bir topluluk seçin.",
"subtitle_extend": "İlgi alanlarınıza, bölgenize veya genel amaçlı bir topluluk seçin. Her topluluk tamamen bağımsız bir kuruluş veya kişi tarafından işletilmektedir.",
"button": {
"category": {
"all": "Tümü",
"all_accessiblity_description": "Kategori: Tümü",
"academia": "akademi",
"activism": "aktivizm",
"food": "yiyecek",
"furry": "furry",
"games": "oyunlar",
"general": "genel",
"journalism": "gazetecilik",
"lgbt": "lgbt",
"regional": "bölgesel",
"art": "sanat",
"music": "müzik",
"tech": "teknoloji"
},
"see_less": "Daha Az Göster",
"see_more": "Daha Fazla Gör"
},
"label": {
"language": "DİL",
"users": "KULLANICILAR",
"category": "KATEGORİ"
},
"input": {
"placeholder": "Toplulukları ara"
},
"empty_state": {
"finding_servers": "Mevcut sunucular aranıyor...",
"bad_network": "Veriyi yüklerken bir hata oluştu. Lütfen internet bağlantınızı kontrol edin.",
"no_results": "Sonuç yok"
}
},
"register": {
"title": "%s için kurulumunuzu yapalım",
"input": {
"avatar": {
"delete": "Sil"
},
"username": {
"placeholder": "kullanıcı adı",
"duplicate_prompt": "Bu kullanıcı adı alınmış."
},
"display_name": {
"placeholder": "görünen ad"
},
"email": {
"placeholder": "e-posta"
},
"password": {
"placeholder": "parola",
"require": "Parolanızda en azından şunlar olmalı:",
"character_limit": "8 karakter",
"accessibility": {
"checked": "işaretli",
"unchecked": "işaretsiz"
},
"hint": "Parolanız en az sekiz karakter içermelidir"
},
"invite": {
"registration_user_invite_request": "Neden katılmak istiyorsun?"
}
},
"error": {
"item": {
"username": "Kullanıcı adı",
"email": "E-posta",
"password": "Parola",
"agreement": "Anlaşma",
"locale": "Locale",
"reason": "Sebep"
},
"reason": {
"blocked": "%s izin verilmeyen bir e-posta sağlayıcı içeriyor",
"unreachable": "%s mevcut değil",
"taken": "%s zaten kullanımda",
"reserved": "%s rezerve edilen bir kelime",
"accepted": "%s kabul edilmelidir",
"blank": "%s gerekli",
"invalid": "%s geçersiz",
"too_long": "%s çok uzun",
"too_short": "%s çok kısa",
"inclusion": "%s desteklenen bir değer değil"
},
"special": {
"username_invalid": "Kullanıcı adı yalnızca alfasayısal karakterler ve alt çizgiler içerebilir",
"username_too_long": "Kullanıcı adı çok uzun (30 karakterden uzun olamaz)",
"email_invalid": "Bu geçerli bir e-posta adresi değil",
"password_too_short": "Şifre çok kısa (en az 8 karakter olmalı)"
}
}
},
"server_rules": {
"title": "Bazı temel kurallar.",
"subtitle": "Bunlar, %s moderatörleri tarafından ayarlanmış ve uygulanmıştır.",
"prompt": "Devam ederek, %s için kullanım şartlarını ve gizlilik politikasını kabul etmiş olursunuz.",
"terms_of_service": "kullanım şartları",
"privacy_policy": "gizlilik politikası",
"button": {
"confirm": "Kabul Ediyorum"
}
},
"confirm_email": {
"title": "Son bir şey.",
"subtitle": "Hesabınızı doğrulamak için size e-postayla gönderdiğimiz bağlantıya dokunun.",
"button": {
"open_email_app": "E-posta Uygulamasını Aç",
"resend": "Yeniden gönder"
},
"dont_receive_email": {
"title": "Posta kutunuzu kontrol edin",
"description": "E-posta adresinizin doğru olup olmadığını ve doğru ise gereksiz klasörünüzü kontrol edin.",
"resend_email": "E-postayı Yeniden Gönder"
},
"open_email_app": {
"title": "Gelen kutunuzu kontrol edin.",
"description": "Size bir e-posta gönderdik. Eğer e-postayı almadıysanız, gereksiz klasörünü kontrol edin.",
"mail": "Posta",
"open_email_client": "E-posta İstemcisini Aç"
}
},
"home_timeline": {
"title": "Ana Sayfa",
"navigation_bar_state": {
"offline": "Çevrimdışı",
"new_posts": "Yeni gönderiler gör",
"published": "Yayınlandı!",
"Publishing": "Gönderi yayınlanıyor..."
}
},
"suggestion_account": {
"title": "Takip Edecek İnsanlar Bul",
"follow_explain": "Birisini takip ettiğinizde, ana sayfanızda o kişinin gönderilerini görürsünüz."
},
"compose": {
"title": {
"new_post": "Yeni Gönderi",
"new_reply": "Yeni Yanıt"
},
"media_selection": {
"camera": "Fotoğraf Çek",
"photo_library": "Fotoğraf Albümü",
"browse": "Göz at"
},
"content_input_placeholder": "Aklınızdan geçenleri yazın veya yapıştırın",
"compose_action": "Yayınla",
"replying_to_user": "yanıtlanıyor: %s",
"attachment": {
"photo": "fotoğraf",
"video": "video",
"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..."
},
"poll": {
"duration_time": "Süre: %s",
"thirty_minutes": "30 dakika",
"one_hour": "1 Saat",
"six_hours": "6 Saat",
"one_day": "1 Gün",
"three_days": "3 Gün",
"seven_days": "7 Gün",
"option_number": "Seçenek %ld"
},
"content_warning": {
"placeholder": "Buraya kesin bir uyarı yazın..."
},
"visibility": {
"public": "Herkese açık",
"unlisted": "Listelenmemiş",
"private": "Yalnızca takipçiler",
"direct": "Sadece bahsettiğim insanlar"
},
"auto_complete": {
"space_to_add": "Eklemek için boşluk tuşuna basın"
},
"accessibility": {
"append_attachment": "Dosya Ekle",
"append_poll": "Anket Ekle",
"remove_poll": "Anketi Kaldır",
"custom_emoji_picker": "Özel Emoji Seçici",
"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ü"
},
"keyboard": {
"discard_post": "Gönderiyi İptal Et",
"publish_post": "Gönderiyi Yayınla",
"toggle_poll": "Anketi Aç/Kapat",
"toggle_content_warning": "İçerik Uyarısı durumunu değiştir",
"append_attachment_entry": "Dosya Ekle - %s",
"select_visibility_entry": "Görünürlüğü Seç - %s"
}
},
"profile": {
"dashboard": {
"posts": "gönderiler",
"following": "takip ediliyor",
"followers": "takipçi"
},
"fields": {
"add_row": "Satır Ekle",
"placeholder": {
"label": "Etiket",
"content": "İçerik"
}
},
"segmented_control": {
"posts": "Gönderiler",
"replies": "Yanıtlar",
"posts_and_replies": "Gönderiler ve Yanıtlar",
"media": "Medya",
"about": "Hakkında"
},
"relationship_action_alert": {
"confirm_mute_user": {
"title": "Hesabı sustur",
"message": "%s susturmak için onaylayın"
},
"confirm_unmute_user": {
"title": "Susturmayı kaldır",
"message": "%s susturmasını kaldırmak için onaylayın"
},
"confirm_block_user": {
"title": "Hesabı Engelle",
"message": "%s engellemeyi onayla"
},
"confirm_unblock_user": {
"title": "Hesabın Engelini Kaldır",
"message": "%s engellemeyi kaldırmayı onaylayın"
}
},
"accessibility": {
"show_avatar_image": "Profil resmini göster",
"edit_avatar_image": "Profil fotoğrafını düzenle",
"show_banner_image": "Kapak fotoğrafını göster",
"double_tap_to_open_the_list": "Listeyi açmak için çift tıklayın"
}
},
"follower": {
"footer": "Diğer sunucudaki takipçiler gösterilemiyor."
},
"following": {
"footer": "Diğer sunucudaki takip edilenler gösterilemiyor."
},
"search": {
"title": "Arama",
"search_bar": {
"placeholder": "Etiketleri ve kullanıcıları ara",
"cancel": "İptal"
},
"recommend": {
"button_text": "Tümünü Gör",
"hash_tag": {
"title": "Mastodon'da Popüler",
"description": "Oldukça ilgi gören etiketler",
"people_talking": "%s kişi konuşuyor"
},
"accounts": {
"title": "Hoşunuza gidebilecek hesaplar",
"description": "Bu hesapları takip etmek isteyebilirsiniz",
"follow": "Takip et"
}
},
"searching": {
"segment": {
"all": "Tümü",
"people": "İnsanlar",
"hashtags": "Etiketler",
"posts": "Gönderiler"
},
"empty_state": {
"no_results": "Sonuç yok"
},
"recent_search": "Son aramalar",
"clear": "Temizle"
}
},
"discovery": {
"tabs": {
"posts": "Gönderiler",
"hashtags": "Etiketler",
"news": "Haberler",
"community": "Community",
"for_you": "Senin İçin"
},
"intro": "Bunlar, Mastodon'un köşesinde ilgi çeken gönderilerdir."
},
"favorite": {
"title": "Favorilerin"
},
"notification": {
"title": {
"Everything": "Her şey",
"Mentions": "Bahsetmeler"
},
"notification_description": {
"followed_you": "seni takip etti",
"favorited_your_post": "gönderini favoriledi",
"reblogged_your_post": "gönderini yeniden paylaştı",
"mentioned_you": "senden bahsetti",
"request_to_follow_you": "size takip isteği gönderdi",
"poll_has_ended": "anket sona erdi"
},
"keyobard": {
"show_everything": "Her Şeyi Göster",
"show_mentions": "Bahsetmeleri Göster"
}
},
"thread": {
"back_title": "Gönderi",
"title": "%s kullanıcının gönderisi"
},
"settings": {
"title": "Ayarlar",
"section": {
"appearance": {
"title": "Görünüm",
"automatic": "Otomatik",
"light": "Daima Açık",
"dark": "Daima Koyu"
},
"look_and_feel": {
"title": "Look and Feel",
"use_system": "Sistem İle Aynı",
"really_dark": "Gerçek Koyu",
"sorta_dark": "Hafif Koyu",
"light": "Açık"
},
"notifications": {
"title": "Bildirimler",
"favorites": "Gönderimi favorilerine eklediğinde",
"follows": "Beni takip ettiğinde",
"boosts": "Gönderimi yeniden paylaştığında",
"mentions": "Benden bahsettiğinde",
"trigger": {
"anyone": "herhangi biri",
"follower": "bir takipçim",
"follow": "takip ettiğim biri",
"noone": "bilgilendirme",
"title": "Beni şu durumda bilgilendir: "
}
},
"preference": {
"title": "Tercihler",
"true_black_dark_mode": "Tam siyah koyu modu",
"disable_avatar_animation": "Hareketli avatarları devre dışı bırak",
"disable_emoji_animation": "Hareketli emojileri devre dışı bırak",
"using_default_browser": "Bağlantıları varsayılan tarayıcıda aç",
"open_links_in_mastodon": "Bağlantıları Mastodon içinden aç"
},
"boring_zone": {
"title": "Sıkıcı Bölge",
"account_settings": "Hesap Ayarları",
"terms": "Hizmet Şartları",
"privacy": "Gizlilik Politikası"
},
"spicy_zone": {
"title": "Tehlikeli bölge",
"clear": "Medya Önbelleğini Temizle",
"signout": "Oturumu Kapat"
}
},
"footer": {
"mastodon_description": "Mastodon açık kaynaklı bir yazılımdır. GitHub'dan %s (%s) üzerinden katkıda bulunabilir veya sorunları bildirebilirsiniz"
},
"keyboard": {
"close_settings_window": "Ayarlar Penceresini Kapat"
}
},
"report": {
"title_report": "Raporla",
"title": "%s kişisini bildir",
"step1": "Adım 1/2",
"step2": "Adım 2/2",
"content1": "Bu rapora eklemek istediğiniz başka gönderiler var mı?",
"content2": "Bu rapor hakkında moderatörlerin bilmesi gerektiği bir şey var mı?",
"report_sent_title": "Rapor için teşekkürler, bununla ilgileneceğiz.",
"send": "Raporu Gönder",
"skip_to_send": "Yorum yapmadan gönder",
"text_placeholder": "Ek yorum yazın veya yapıştırın",
"reported": "RAPORLANDI"
},
"preview": {
"keyboard": {
"close_preview": "Önizlemeyi Kapat",
"show_next": "Sonrakini Göster",
"show_previous": "Öncekini Göster"
}
},
"account_list": {
"tab_bar_hint": "Şu anki seçili profil: %s. Hesap değiştiriciyi göstermek için iki kez dokunun ve basılı tutun",
"dismiss_account_switcher": "Hesap Değiştiriciyi Kapat",
"add_account": "Hesap Ekle"
},
"wizard": {
"new_in_mastodon": "Mastodon'da Yeni",
"multiple_account_switch_intro_description": "Profil butonuna basılı tutarak birden fazla hesap arasında geçiş yapın.",
"accessibility_hint": "Bu yardımı kapatmak için çift tıklayın"
}
}
}

View File

@ -1,6 +0,0 @@
{
"NSCameraUsageDescription": "Fotoğraf çekerek durum paylaşmak için kullanılır",
"NSPhotoLibraryAddUsageDescription": "Fotoğraf Albümü'ne fotoğraf kaydetmek için kullanılır",
"NewPostShortcutItemTitle": "Yeni Gönderi",
"SearchShortcutItemTitle": "Arama"
}

View File

@ -1,356 +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 thông báo chưa đọc</string>
</dict>
</dict>
<key>a11y.plural.count.input_limit_exceeds</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>Giới hạn nhập tối đa %#@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 ký tự</string>
</dict>
</dict>
<key>a11y.plural.count.input_limit_remains</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>Giới hạn nhập còn lại %#@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 ký tự</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>tút</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 tút</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 lượt thích</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 đăng lại</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 trả lời</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 bình chọn</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 người bình chọn</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 người đang thảo luận</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 đang theo dõi</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 người theo dõi</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 năm còn lại</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 tháng còn lại</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 ngày còn lại</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 giờ còn lại</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 phút còn lại</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 giây còn lại</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 năm trước</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 tháng trước</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 ngày trước</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>%ldh</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>%ldm</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>%lds</string>
</dict>
</dict>
</dict>
</plist>

View File

@ -1,619 +0,0 @@
{
"common": {
"alerts": {
"common": {
"please_try_again": "Vui lòng thử lại.",
"please_try_again_later": "Vui lòng thử lại sau."
},
"sign_up_failure": {
"title": "Đăng ký không thành công"
},
"server_error": {
"title": "Lỗi máy chủ"
},
"vote_failure": {
"title": "Bình chọn không thành công",
"poll_ended": "Cuộc bình chọn đã kết thúc"
},
"discard_post_content": {
"title": "Bỏ bản nháp",
"message": "Xác nhận bỏ qua nội dung tút đã viết."
},
"publish_post_failure": {
"title": "Đăng tút không thành công",
"message": "Không thể đăng tút.\nVui lòng kiểm tra kết nối mạng.",
"attachments_message": {
"video_attach_with_photo": "Không thể đính kèm video cùng với hình ảnh.",
"more_than_one_video": "Không thể đính kèm nhiều video."
}
},
"edit_profile_failure": {
"title": "Lỗi chỉnh sửa hồ sơ",
"message": "Không thể chỉnh sửa hồ sơ. Vui lòng thử lại."
},
"sign_out": {
"title": "Đăng xuất",
"message": "Bạn có chắc muốn đăng xuất không?",
"confirm": "Đăng xuất"
},
"block_domain": {
"title": "Bạn thật sự muốn ẩn toàn bộ nội dung từ %s? Sẽ hợp lý hơn nếu bạn chỉ chặn hoặc ẩn một vài tài khoản cụ thể. Ẩn toàn bộ nội dung từ máy chủ sẽ khiến bạn không còn thấy nội dung từ máy chủ đó ở bất kỳ nơi nào, kể cả thông báo. Người theo dõi bạn từ máy chủ đó cũng sẽ bị xóa luôn.",
"block_entire_domain": "Chặn máy chủ"
},
"save_photo_failure": {
"title": "Lưu hình ảnh không thành công",
"message": "Vui lòng cho phép quyền truy cập thư viện hình ảnh để lưu hình ảnh về máy."
},
"delete_post": {
"title": "Xóa tút",
"message": "Bạn có chắc muốn xóa tút này không?"
},
"clean_cache": {
"title": "Xóa bộ nhớ đệm",
"message": "Đã xóa %s bộ nhớ đệm."
}
},
"controls": {
"actions": {
"back": "Quay lại",
"next": "Kế tiếp",
"previous": "Trước đó",
"open": "Mở",
"add": "Thêm",
"remove": "Xóa",
"edit": "Sửa",
"save": "Lưu",
"ok": "OK",
"done": "Xong",
"confirm": "Xác nhận",
"continue": "Tiếp tục",
"compose": "Viết tút",
"cancel": "Hủy bỏ",
"discard": "Bỏ qua",
"try_again": "Thử lại",
"take_photo": "Chụp ảnh",
"save_photo": "Lưu ảnh",
"copy_photo": "Sao chép ảnh",
"sign_in": "Đăng nhập",
"sign_up": "Đăng ký",
"see_more": "Xem thêm",
"preview": "Xem trước",
"share": "Chia sẻ",
"share_user": "Chia sẻ %s",
"share_post": "Chia sẻ tút",
"open_in_safari": "Mở bằng Safari",
"open_in_browser": "Mở trong trình duyệt",
"find_people": "Đề xuất theo dõi",
"manually_search": "Tự tìm kiếm thủ công",
"skip": "Bỏ qua",
"reply": "Trả lời",
"report_user": "Báo cáo %s",
"block_domain": "Chặn %s",
"unblock_domain": "Bỏ chặn %s",
"settings": "Cài đặt",
"delete": "Xóa"
},
"tabs": {
"home": "Bảng tin",
"search": "Tìm kiếm",
"notification": "Thông báo",
"profile": "Trang hồ sơ"
},
"keyboard": {
"common": {
"switch_to_tab": "Chuyển thành %s",
"compose_new_post": "Viết tút mới",
"show_favorites": "Hiện lượt thích",
"open_settings": "Mở cài đặt"
},
"timeline": {
"previous_status": "Tút trước",
"next_status": "Tút sau",
"open_status": "Mở tút",
"open_author_profile": "Mở trang người viết tút",
"open_reblogger_profile": "Mở trang người đăng lại tút",
"reply_status": "Trả lời tút",
"toggle_reblog": "Chọn đăng lại tút",
"toggle_favorite": "Chọn thích tút",
"toggle_content_warning": "Chọn nội dung ẩn",
"preview_image": "Xem trước hình ảnh"
},
"segmented_control": {
"previous_section": "Tới phần trước",
"next_section": "Tới phần tiếp theo"
}
},
"status": {
"user_reblogged": "%s đăng lại",
"user_replied_to": "Trả lời đến %s",
"show_post": "Xem tút",
"show_user_profile": "Xem trang hồ sơ",
"content_warning": "Nội dung ẩn",
"sensitive_content": "Nội dung nhạy cảm",
"media_content_warning": "Nhấn để hiển thị",
"tap_to_reveal": "Nhấn để xem",
"poll": {
"vote": "Bình chọn",
"closed": "Kết thúc"
},
"actions": {
"reply": "Trả lời",
"reblog": "Đăng lại",
"unreblog": "Hủy đăng lại",
"favorite": "Thích",
"unfavorite": "Bỏ thích",
"menu": "Menu",
"hide": "Ẩn",
"show_image": "Hiển thị hình ảnh",
"show_gif": "Hiển thị GIF",
"show_video_player": "Hiện trình phát video",
"tap_then_hold_to_show_menu": "Nhấn giữ để hiện menu"
},
"tag": {
"url": "URL",
"mention": "Nhắc đến",
"link": "Liên kết",
"hashtag": "Hashtag",
"email": "Email",
"emoji": "Emoji"
},
"visibility": {
"unlisted": "Ai cũng thấy tút này nhưng không hiện trên bảng tin máy chủ.",
"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."
}
},
"friendship": {
"follow": "Theo dõi",
"following": "Đang theo dõi",
"request": "Yêu cầu",
"pending": "Đang chờ",
"block": "Chặn",
"block_user": "Chặn %s",
"block_domain": "Chặn %s",
"unblock": "Bỏ chặn",
"unblock_user": "Bỏ chặn %s",
"blocked": "Đã chặn",
"mute": "Ẩn",
"mute_user": "Ẩn %s",
"unmute": "Bỏ ẩn",
"unmute_user": "Bỏ ẩn %s",
"muted": "Đã ẩn",
"edit_info": "Chỉnh sửa"
},
"timeline": {
"filtered": "Bộ lọc",
"timestamp": {
"now": "Vừa xong"
},
"loader": {
"load_missing_posts": "Tải tút chưa đọc",
"loading_missing_posts": "Đang tải tút chưa đọc...",
"show_more_replies": "Xem lượt trả lời"
},
"header": {
"no_status_found": "Không tìm thấy tút",
"blocking_warning": "Bạn không thể xem trang người này\ncho tới khi bạn bỏ chặn họ.\nHọ sẽ thấy trang của bạn như thế này.",
"user_blocking_warning": "Bạn không thể xem trang %s\ncho tới khi bạn bỏ chặn họ.\nHọ sẽ thấy trang của bạn như thế này.",
"blocked_warning": "Bạn không thể xem trang người này\ncho tới khi họ bỏ chặn bạn.",
"user_blocked_warning": "Bạn không thể xem trang %s\ncho tới khi họ bỏ chặn bạn.",
"suspended_warning": "Người dùng đã bị vô hiệu hóa.",
"user_suspended_warning": "%s đã bị vô hiệu hóa."
}
}
}
},
"scene": {
"welcome": {
"slogan": "Mạng xã hội\ndo bạn kiểm soát.",
"get_started": "Bắt đầu",
"log_in": "Đăng nhập"
},
"server_picker": {
"title": "Mastodon gồm nhiều máy chủ với thành viên riêng.",
"subtitle": "Chọn một máy chủ dựa theo sở thích, tôn giáo, hoặc ý muốn của bạn.",
"subtitle_extend": "Chọn một máy chủ dựa theo sở thích, tôn giáo, hoặc ý muốn của bạn. Mỗi máy chủ có thể được vận hành bởi một cá nhân hoặc một tổ chức.",
"button": {
"category": {
"all": "Toàn bộ",
"all_accessiblity_description": "Phân loại: Toàn bộ",
"academia": "học thuật",
"activism": "hoạt động xã hội",
"food": "ăn uống",
"furry": "furry",
"games": "trò chơi điện tử",
"general": "chung",
"journalism": "tin tức",
"lgbt": "lgbt",
"regional": "khu vực",
"art": "nghệ thuật",
"music": "âm nhạc",
"tech": "công nghệ"
},
"see_less": "Ẩn bớt",
"see_more": "Nhiều hơn"
},
"label": {
"language": "NGÔN NGỮ",
"users": "NGƯỜI DÙNG",
"category": "PHÂN LOẠI"
},
"input": {
"placeholder": "Tìm máy chủ"
},
"empty_state": {
"finding_servers": "Đang tìm máy chủ hoạt động...",
"bad_network": "Đã xảy ra lỗi. Hãy thử lại hoặc kiểm tra kết nối internet của bạn.",
"no_results": "Không có kết quả"
}
},
"register": {
"title": "Hãy để tôi đăng ký trên %s",
"input": {
"avatar": {
"delete": "Xóa"
},
"username": {
"placeholder": "tên người dùng",
"duplicate_prompt": "Tên người dùng đã tồn tại."
},
"display_name": {
"placeholder": "tên hiển thị"
},
"email": {
"placeholder": "email"
},
"password": {
"placeholder": "mật khẩu",
"require": "Mật khẩu phải tối thiểu:",
"character_limit": "8 ký tự",
"accessibility": {
"checked": "đã ổn",
"unchecked": "chưa ổn"
},
"hint": "Mật khẩu của bạn phải dài tối thiểu 8 ký tự"
},
"invite": {
"registration_user_invite_request": "Vì sao bạn muốn tham gia?"
}
},
"error": {
"item": {
"username": "Tên người dùng",
"email": "Email",
"password": "Mật khẩu",
"agreement": "Thoả thuận",
"locale": "Cục bộ",
"reason": "Lý do"
},
"reason": {
"blocked": "%s dùng dịch vụ email bị cấm",
"unreachable": "%s không tồn tại",
"taken": "%s đã tồn tại",
"reserved": "%s là một từ khóa hạn chế",
"accepted": "%s phải được đồng ý",
"blank": "%s là bắt buộc",
"invalid": "%s không hợp lệ",
"too_long": "%s quá dài",
"too_short": "%s quá ngắn",
"inclusion": "%s chứa ký tự không được hỗ trợ"
},
"special": {
"username_invalid": "Tên người dùng chỉ có thể chứa các ký tự chữ và số và dấu gạch dưới",
"username_too_long": "Tên người dùng không thể dài hơn 30 ký tự",
"email_invalid": "Đây không phải là một địa chỉ email khả dụng",
"password_too_short": "Mật khẩu của bạn quá ngắn, phải có ít nhất 8 ký tự"
}
}
},
"server_rules": {
"title": "Quy tắc máy chủ.",
"subtitle": "Được ban hành và áp dụng bởi quản trị viên %s",
"prompt": "Tiếp tục nghĩa là bạn đồng ý điều khoản dịch vụ và chính sách bảo mật của %s.",
"terms_of_service": "điều khoản dịch vụ",
"privacy_policy": "chính sách bảo mật",
"button": {
"confirm": "Tôi đồng ý"
}
},
"confirm_email": {
"title": "Còn điều này nữa.",
"subtitle": "Nhấn vào liên kết chúng tôi gửi qua email để xác thực tài khoản.",
"button": {
"open_email_app": "Mở ứng dụng email",
"resend": "Gửi lại"
},
"dont_receive_email": {
"title": "Kiểm tra email",
"description": "Kiểm tra địa chỉ email của bạn đúng chưa hoặc có bị chuyển vào thư rác.",
"resend_email": "Gửi lại email"
},
"open_email_app": {
"title": "Kiểm tra hộp thư của bạn.",
"description": "Chúng tôi vừa gửi email cho bạn. Kiểm tra thư rác nếu bạn không thấy.",
"mail": "Email",
"open_email_client": "Mở ứng dụng email"
}
},
"home_timeline": {
"title": "Bảng tin",
"navigation_bar_state": {
"offline": "Ngoại tuyến",
"new_posts": "Đọc những tút mới",
"published": "Đã đăng!",
"Publishing": "Đang đăng tút..."
}
},
"suggestion_account": {
"title": "Đề xuất theo dõi",
"follow_explain": "Khi theo dõi ai đó, bạn sẽ thấy tút của họ trong bảng tin."
},
"compose": {
"title": {
"new_post": "Viết tút",
"new_reply": "Viết trả lời"
},
"media_selection": {
"camera": "Chụp ảnh",
"photo_library": "Thư viện hình ảnh",
"browse": "Chọn"
},
"content_input_placeholder": "Cho thế giới biết bạn đang nghĩ gì",
"compose_action": "Đăng",
"replying_to_user": "trả lời %s",
"attachment": {
"photo": "ảnh",
"video": "video",
"attachment_broken": "%s này bị lỗi và không thể\ntải lên Mastodon.",
"description_photo": "Mô tả hình ảnh cho người khiếm thị...",
"description_video": "Mô tả video cho người khiếm thị..."
},
"poll": {
"duration_time": "Thời hạn: %s",
"thirty_minutes": "30 phút",
"one_hour": "1 giờ",
"six_hours": "6 giờ",
"one_day": "1 ngày",
"three_days": "3 ngày",
"seven_days": "7 ngày",
"option_number": "Lựa chọn %ld"
},
"content_warning": {
"placeholder": "Viết nội dung ẩn của bạn ở đây..."
},
"visibility": {
"public": "Công khai",
"unlisted": "Hạn chế",
"private": "Riêng tư",
"direct": "Nhắn riêng"
},
"auto_complete": {
"space_to_add": "Khoảng cách để thêm"
},
"accessibility": {
"append_attachment": "Thêm media",
"append_poll": "Tạo bình chọn",
"remove_poll": "Xóa bình chọn",
"custom_emoji_picker": "Chọn emoji",
"enable_content_warning": "Bật nội dung ẩn",
"disable_content_warning": "Tắt nội dung ẩn",
"post_visibility_menu": "Menu hiển thị tút"
},
"keyboard": {
"discard_post": "Hủy đăng tút",
"publish_post": "Đăng tút",
"toggle_poll": "Mở bình chọn",
"toggle_content_warning": "Mở nội dung ẩn",
"append_attachment_entry": "Thêm media - %s",
"select_visibility_entry": "Thay đổi quyền riêng tư - %s"
}
},
"profile": {
"dashboard": {
"posts": "tút",
"following": "theo dõi",
"followers": "người theo dõi"
},
"fields": {
"add_row": "Thêm hàng",
"placeholder": {
"label": "Nhãn",
"content": "Nội dung"
}
},
"segmented_control": {
"posts": "Tút",
"replies": "Trả lời",
"posts_and_replies": "Tút và trả lời",
"media": "Media",
"about": "Giới thiệu"
},
"relationship_action_alert": {
"confirm_mute_user": {
"title": "Ẩn người dùng",
"message": "Xác nhận ẩn %s"
},
"confirm_unmute_user": {
"title": "Bỏ ẩn người dùng",
"message": "Xác nhận bỏ ẩn %s"
},
"confirm_block_user": {
"title": "Chặn người dùng",
"message": "Xác nhận chặn %s"
},
"confirm_unblock_user": {
"title": "Bỏ chặn người dùng",
"message": "Xác nhận bỏ chặn %s"
}
},
"accessibility": {
"show_avatar_image": "Hiển thị ảnh đại diện",
"edit_avatar_image": "Sửa ảnh đại diện",
"show_banner_image": "Hiển thị ảnh bìa",
"double_tap_to_open_the_list": "Nhấn hai lần để mở danh sách"
}
},
"follower": {
"footer": "Không hiển thị người theo dõi từ máy chủ khác."
},
"following": {
"footer": "Không hiển thị người bạn theo dõi từ máy chủ khác."
},
"search": {
"title": "Tìm kiếm",
"search_bar": {
"placeholder": "Tìm hashtag và người dùng",
"cancel": "Hủy bỏ"
},
"recommend": {
"button_text": "Xem tất cả",
"hash_tag": {
"title": "Xu hướng trên Mastodon",
"description": "Những hashtag đang được sử dụng nhiều nhất",
"people_talking": "%s người đang thảo luận"
},
"accounts": {
"title": "Những người bạn có thể thích",
"description": "Bạn có thể muốn theo dõi những người này",
"follow": "Theo dõi"
}
},
"searching": {
"segment": {
"all": "Tất cả",
"people": "Người dùng",
"hashtags": "Hashtag",
"posts": "Tút"
},
"empty_state": {
"no_results": "Không có kết quả"
},
"recent_search": "Tìm kiếm gần đây",
"clear": "Xóa"
}
},
"discovery": {
"tabs": {
"posts": "Tút",
"hashtags": "Hashtag",
"news": "Tin tức",
"community": "Máy chủ",
"for_you": "Dành cho bạn"
},
"intro": "Đây là những tút thu hút được sự chú ý trong góc Mastodon của bạn."
},
"favorite": {
"title": "Lượt thích"
},
"notification": {
"title": {
"Everything": "Mọi thứ",
"Mentions": "Lượt nhắc đến"
},
"notification_description": {
"followed_you": "đã theo dõi bạn",
"favorited_your_post": "thích tút của bạn",
"reblogged_your_post": "đăng lại tút của bạn",
"mentioned_you": "nhắc đến bạn",
"request_to_follow_you": "yêu cầu theo dõi bạn",
"poll_has_ended": "cuộc bình chọn đã kết thúc"
},
"keyobard": {
"show_everything": "Hiện mọi thứ",
"show_mentions": "Hiện lượt nhắc"
}
},
"thread": {
"back_title": "Tút",
"title": "Tút của %s"
},
"settings": {
"title": "Cài đặt",
"section": {
"appearance": {
"title": "Giao diện",
"automatic": "Tự động",
"light": "Sáng",
"dark": "Tối"
},
"look_and_feel": {
"title": "Giao diện",
"use_system": "Mặc định hệ thống",
"really_dark": "Tối Mạnh",
"sorta_dark": "Tối Nhẹ",
"light": "Sáng"
},
"notifications": {
"title": "Thông báo",
"favorites": "Thích tút của tôi",
"follows": "Theo dõi tôi",
"boosts": "Đăng lại tút của tôi",
"mentions": "Nhắc đến tôi",
"trigger": {
"anyone": "ai đó",
"follower": "người theo dõi tôi",
"follow": "người tôi theo dõi",
"noone": "không một ai",
"title": "Thông báo khi"
}
},
"preference": {
"title": "Chung",
"true_black_dark_mode": "Chế độ tối chân thật",
"disable_avatar_animation": "Tắt ảnh đại diện GIF",
"disable_emoji_animation": "Tắt emoji dạng GIF",
"using_default_browser": "Dùng trình duyệt mặc định",
"open_links_in_mastodon": "Mở liên kết trong Mastodon"
},
"boring_zone": {
"title": "Nhàm chán",
"account_settings": "Cài đặt tài khoản",
"terms": "Điều khoản dịch vụ",
"privacy": "Chính sách bảo mật"
},
"spicy_zone": {
"title": "Thú vị",
"clear": "Xóa bộ nhớ đệm",
"signout": "Đăng xuất"
}
},
"footer": {
"mastodon_description": "Mastodon là phần mềm mã nguồn mở. Bạn có thể báo lỗi trên GitHub tại %s (%s)"
},
"keyboard": {
"close_settings_window": "Đóng cửa sổ cài đặt"
}
},
"report": {
"title_report": "Báo cáo",
"title": "Báo cáo %s",
"step1": "Bước 1 trong 2",
"step2": "Bước 2 trong 2",
"content1": "Bạn muốn thêm tút nào vào báo cáo nữa không?",
"content2": "Kiểm duyệt viên cần biết gì về báo cáo này?",
"report_sent_title": "Cảm ơn đã báo cáo, chúng tôi sẽ xem xét kỹ.",
"send": "Gửi báo cáo",
"skip_to_send": "Gửi không ghi chú",
"text_placeholder": "Nhập hoặc bổ sung chú thích",
"reported": "ĐÃ BÁO CÁO"
},
"preview": {
"keyboard": {
"close_preview": "Đóng xem trước",
"show_next": "Hiện kế tiếp",
"show_previous": "Hiện trước đó"
}
},
"account_list": {
"tab_bar_hint": "Đang dùng tài khoản: %s. Nhấn hai lần và giữ để đổi sang tài khoản khác",
"dismiss_account_switcher": "Bỏ qua chuyển đổi tài khoản",
"add_account": "Thêm tài khoản"
},
"wizard": {
"new_in_mastodon": "Mới trên Mastodon",
"multiple_account_switch_intro_description": "Chuyển đổi giữa nhiều tài khoản bằng cách đè giữ nút tài khoản.",
"accessibility_hint": "Nhấn hai lần để bỏ qua"
}
}
}

View File

@ -1,6 +0,0 @@
{
"NSCameraUsageDescription": "Được sử dụng để chụp ảnh cho tút",
"NSPhotoLibraryAddUsageDescription": "Được sử dụng để lưu ảnh vào Thư viện ảnh",
"NewPostShortcutItemTitle": "Viết tút",
"SearchShortcutItemTitle": "Tìm kiếm"
}

View File

@ -100,20 +100,6 @@
<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>

View File

@ -129,9 +129,7 @@
"show_post": "显示帖子",
"show_user_profile": "查看用户个人资料",
"content_warning": "内容警告",
"sensitive_content": "敏感内容",
"media_content_warning": "点击任意位置显示",
"tap_to_reveal": "点击以显示",
"poll": {
"vote": "投票",
"closed": "已关闭"
@ -143,11 +141,7 @@
"favorite": "喜欢",
"unfavorite": "取消喜欢",
"menu": "菜单",
"hide": "隐藏",
"show_image": "显示图片",
"show_gif": "显示 GIF",
"show_video_player": "显示视频播放器",
"tap_then_hold_to_show_menu": "长按以显示菜单"
"hide": "隐藏"
},
"tag": {
"url": "URL",
@ -446,12 +440,6 @@
"title": "解除屏蔽帐户",
"message": "确认取消屏蔽 %s"
}
},
"accessibility": {
"show_avatar_image": "显示头像",
"edit_avatar_image": "编辑头像",
"show_banner_image": "显示顶部横幅图片",
"double_tap_to_open_the_list": "双击打开列表"
}
},
"follower": {
@ -493,16 +481,6 @@
"clear": "清除"
}
},
"discovery": {
"tabs": {
"posts": "嘟文",
"hashtags": "话题标签",
"news": "最新消息",
"community": "社区",
"for_you": "为你推荐"
},
"intro": "这些嘟文在你的长毛象小宇宙中备受关注。"
},
"favorite": {
"title": "你的喜欢"
},
@ -563,8 +541,7 @@
"true_black_dark_mode": "纯黑模式",
"disable_avatar_animation": "禁用动画头像",
"disable_emoji_animation": "禁用动画表情",
"using_default_browser": "使用默认浏览器打开链接",
"open_links_in_mastodon": "在 Mastodon 中打开链接"
"using_default_browser": "使用默认浏览器打开链接"
},
"boring_zone": {
"title": "The Boring Zone",

View File

@ -13,13 +13,13 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</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>
@ -27,13 +27,13 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</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>
@ -41,7 +41,7 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>other</key>
<string>%ld 個字</string>
<string>%ld characters</string>
</dict>
</dict>
<key>plural.count.metric_formatted.post</key>
@ -55,7 +55,7 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>other</key>
<string>嘟文</string>
<string>posts</string>
</dict>
</dict>
<key>plural.count.post</key>
@ -69,7 +69,7 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>other</key>
<string>%ld 則嘟文</string>
<string>%ld posts</string>
</dict>
</dict>
<key>plural.count.favorite</key>
@ -83,7 +83,7 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>other</key>
<string>%ld 個最愛</string>
<string>%ld favorites</string>
</dict>
</dict>
<key>plural.count.reblog</key>
@ -97,21 +97,7 @@
<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>
<string>%ld reblogs</string>
</dict>
</dict>
<key>plural.count.vote</key>
@ -125,7 +111,7 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>other</key>
<string>%ld </string>
<string>%ld votes</string>
</dict>
</dict>
<key>plural.count.voter</key>
@ -139,7 +125,7 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>other</key>
<string>%ld 位投票者</string>
<string>%ld voters</string>
</dict>
</dict>
<key>plural.people_talking</key>
@ -153,7 +139,7 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>other</key>
<string>%ld 個人正在討論</string>
<string>%ld people talking</string>
</dict>
</dict>
<key>plural.count.following</key>
@ -167,7 +153,7 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>other</key>
<string>%ld 個跟隨中</string>
<string>%ld following</string>
</dict>
</dict>
<key>plural.count.follower</key>
@ -181,7 +167,7 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>other</key>
<string>%ld 個跟隨者</string>
<string>%ld followers</string>
</dict>
</dict>
<key>date.year.left</key>
@ -195,7 +181,7 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>other</key>
<string>還有 %ld 年</string>
<string>%ld years left</string>
</dict>
</dict>
<key>date.month.left</key>
@ -209,7 +195,7 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>other</key>
<string>還有 %ld 個月</string>
<string>%ld months left</string>
</dict>
</dict>
<key>date.day.left</key>
@ -223,7 +209,7 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>other</key>
<string>還有 %ld 天</string>
<string>%ld days left</string>
</dict>
</dict>
<key>date.hour.left</key>
@ -237,7 +223,7 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>other</key>
<string>還有 %ld 小時</string>
<string>%ld hours left</string>
</dict>
</dict>
<key>date.minute.left</key>
@ -251,7 +237,7 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>other</key>
<string>還有 %ld 分鐘</string>
<string>%ld minutes left</string>
</dict>
</dict>
<key>date.second.left</key>
@ -265,7 +251,7 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>other</key>
<string>還有 %ld 秒</string>
<string>%ld seconds left</string>
</dict>
</dict>
<key>date.year.ago.abbr</key>
@ -279,7 +265,7 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>other</key>
<string>%ld 年前</string>
<string>%ldy ago</string>
</dict>
</dict>
<key>date.month.ago.abbr</key>
@ -293,7 +279,7 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>other</key>
<string>%ld 個月前</string>
<string>%ldM ago</string>
</dict>
</dict>
<key>date.day.ago.abbr</key>
@ -307,7 +293,7 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>other</key>
<string>%ld 天前</string>
<string>%ldd ago</string>
</dict>
</dict>
<key>date.hour.ago.abbr</key>
@ -321,7 +307,7 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>other</key>
<string>%ld 小時前</string>
<string>%ldh ago</string>
</dict>
</dict>
<key>date.minute.ago.abbr</key>
@ -335,7 +321,7 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>other</key>
<string>%ld 分鐘前</string>
<string>%ldm ago</string>
</dict>
</dict>
<key>date.second.ago.abbr</key>
@ -349,7 +335,7 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>other</key>
<string>%ld 秒前</string>
<string>%lds ago</string>
</dict>
</dict>
</dict>

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