chore: update i18n strings

This commit is contained in:
CMK 2022-02-15 14:45:34 +08:00
parent 5b40b876a7
commit 74334126f0
37 changed files with 2116 additions and 871 deletions

View File

@ -7,7 +7,7 @@
<key>AppShared.xcscheme_^#shared#^_</key>
<dict>
<key>orderHint</key>
<integer>20</integer>
<integer>18</integer>
</dict>
<key>CoreDataStack.xcscheme_^#shared#^_</key>
<dict>
@ -97,7 +97,7 @@
<key>MastodonIntent.xcscheme_^#shared#^_</key>
<dict>
<key>orderHint</key>
<integer>19</integer>
<integer>20</integer>
</dict>
<key>MastodonIntents.xcscheme_^#shared#^_</key>
<dict>
@ -117,7 +117,7 @@
<key>ShareActionExtension.xcscheme_^#shared#^_</key>
<dict>
<key>orderHint</key>
<integer>18</integer>
<integer>19</integer>
</dict>
</dict>
<key>SuppressBuildableAutocreation</key>

View File

@ -8,7 +8,7 @@
import Foundation
enum RegisterItem: Hashable {
case header
case header(domain: String)
case avatar
case name
case username

View File

@ -36,7 +36,7 @@ final class MastodonConfirmEmailViewController: UIViewController, NeedsDependenc
let label = UILabel()
label.font = UIFontMetrics(forTextStyle: .title1).scaledFont(for: UIFont.systemFont(ofSize: 20))
label.textColor = .secondaryLabel
label.text = L10n.Scene.ConfirmEmail.subtitle(viewModel.email)
label.text = L10n.Scene.ConfirmEmail.subtitle
label.numberOfLines = 0
return label
}()
@ -135,7 +135,7 @@ extension MastodonConfirmEmailViewController {
.store(in: &self.disposeBag)
navigationActionView.backButton.setTitle("Resend", for: .normal) // TODO: i18n
navigationActionView.backButton.setTitle(L10n.Scene.ConfirmEmail.Button.resend, for: .normal)
navigationActionView.backButton.addTarget(self, action: #selector(MastodonConfirmEmailViewController.resendButtonPressed(_:)), for: .touchUpInside)
navigationActionView.nextButton.setTitle(L10n.Scene.ConfirmEmail.Button.openEmailApp, for: .normal)

View File

@ -21,9 +21,9 @@ extension MastodonRegisterViewModel {
diffableDataSource = UITableViewDiffableDataSource(tableView: tableView) { tableView, indexPath, item in
switch item {
case .header:
case .header(let domain):
let cell = tableView.dequeueReusableCell(withIdentifier: String(describing: OnboardingHeadlineTableViewCell.self), for: indexPath) as! OnboardingHeadlineTableViewCell
cell.titleLabel.text = L10n.Scene.Register.title
cell.titleLabel.text = L10n.Scene.Register.title(domain)
cell.subTitleLabel.isHidden = true
return cell
case .avatar:
@ -136,7 +136,7 @@ extension MastodonRegisterViewModel {
var snapshot = NSDiffableDataSourceSnapshot<RegisterSection, RegisterItem>()
snapshot.appendSections([.main])
snapshot.appendItems([.header], toSection: .main)
snapshot.appendItems([.header(domain: domain)], toSection: .main)
snapshot.appendItems([.avatar, .name, .username, .email, .password, .hint], toSection: .main)
if approvalRequired {
snapshot.appendItems([.reason], toSection: .main)

View File

@ -50,7 +50,7 @@ final class WelcomeViewController: UIViewController, NeedsDependency {
private(set) lazy var signUpButton: PrimaryActionButton = {
let button = PrimaryActionButton()
button.adjustsBackgroundImageWhenUserInterfaceStyleChanges = false
button.setTitle("Get Started", for: .normal) // TODO: i18n
button.setTitle(L10n.Scene.Welcome.getStarted, for: .normal)
let backgroundImageColor: UIColor = .white
let backgroundImageHighlightedColor: UIColor = UIColor(white: 0.8, alpha: 1.0)
button.setBackgroundImage(.placeholder(color: backgroundImageColor), for: .normal)

View File

@ -1002,8 +1002,8 @@ extension ProfileViewController: ProfileHeaderViewDelegate {
let name = user.displayNameWithFallback
let alertController = UIAlertController(
title: L10n.Scene.Profile.RelationshipActionAlert.ConfirmUnblockUsre.title,
message: L10n.Scene.Profile.RelationshipActionAlert.ConfirmUnblockUsre.message(name),
title: L10n.Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.title,
message: L10n.Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.message(name),
preferredStyle: .alert
)
let record = ManagedObjectRecord<MastodonUser>(objectID: user.objectID)

View File

@ -44,9 +44,9 @@ final class ProfilePagingViewModel: NSObject {
let barItems: [TMBarItemable] = {
let items = [
TMBarItem(title: L10n.Scene.Profile.SegmentedControl.posts),
TMBarItem(title: "Posts and Replies"), // TODO: i18n
TMBarItem(title: L10n.Scene.Profile.SegmentedControl.postsAndReplies), // TODO: i18n
TMBarItem(title: L10n.Scene.Profile.SegmentedControl.media),
TMBarItem(title: "About"),
TMBarItem(title: L10n.Scene.Profile.SegmentedControl.about),
]
return items
}()

View File

@ -31,7 +31,7 @@ final class ReportResultActionTableViewCell: UITableViewCell {
let reportBannerLabel: UILabel = {
let label = UILabel()
let padding = Array(repeating: " ", count: 2).joined()
label.text = padding + "Reported" + padding // TODO: i18n
label.text = padding + L10n.Scene.Report.reported + padding
label.textColor = Asset.Scene.Report.reportBanner.color
label.font = FontFamily.Staatliches.regular.font(size: 49)
label.backgroundColor = Asset.Scene.Report.background.color

View File

@ -19,7 +19,7 @@ extension ReportViewControllerAppearance {
func setupAppearance() {
title = "Report" // TODO: i18n
title = L10n.Scene.Report.titleReport
view.backgroundColor = Asset.Scene.Report.background.color
setupNavigationBarAppearance()

View File

@ -118,37 +118,37 @@ extension NotificationView {
switch type {
case .follow:
self.viewModel.notificationIndicatorText = createMetaContent(
text: L10n.Scene.Notification.userFollowedYou(""),
text: L10n.Scene.Notification.NotificationDescription.followedYou,
emojis: emojis.asDictionary
)
case .followRequest:
self.viewModel.notificationIndicatorText = createMetaContent(
text: L10n.Scene.Notification.userRequestedToFollowYou(author.displayNameWithFallback),
text: L10n.Scene.Notification.NotificationDescription.requestToFollowYou,
emojis: emojis.asDictionary
)
case .mention:
self.viewModel.notificationIndicatorText = createMetaContent(
text: L10n.Scene.Notification.userMentionedYou(""),
text: L10n.Scene.Notification.NotificationDescription.mentionedYou,
emojis: emojis.asDictionary
)
case .reblog:
self.viewModel.notificationIndicatorText = createMetaContent(
text: L10n.Scene.Notification.userRebloggedYourPost(""),
text: L10n.Scene.Notification.NotificationDescription.rebloggedYourPost,
emojis: emojis.asDictionary
)
case .favourite:
self.viewModel.notificationIndicatorText = createMetaContent(
text: L10n.Scene.Notification.userFavoritedYourPost(""),
text: L10n.Scene.Notification.NotificationDescription.favoritedYourPost,
emojis: emojis.asDictionary
)
case .poll:
self.viewModel.notificationIndicatorText = createMetaContent(
text: L10n.Scene.Notification.userYourPollHasEnded(""),
text: L10n.Scene.Notification.NotificationDescription.pollHasEnded,
emojis: emojis.asDictionary
)
case .status:
self.viewModel.notificationIndicatorText = createMetaContent(
text: L10n.Scene.Notification.userMentionedYou(""),
text: L10n.Scene.Notification.NotificationDescription.mentionedYou,
emojis: emojis.asDictionary
)
case ._other:

View File

@ -1,52 +1,51 @@
"16wxgf" = "Post on Mastodon";
"16wxgf" = "Argitaratu Mastodonen";
"751xkl" = "Text Content";
"751xkl" = "Testu-edukia";
"CsR7G2" = "Post on Mastodon";
"CsR7G2" = "Argitaratu Mastodonen";
"HZSGTr" = "What content to post?";
"HZSGTr" = "Ze eduki argitaratu?";
"HdGikU" = "Posting failed";
"HdGikU" = "Argitaratzeak huts egin du";
"KDNTJ4" = "Failure Reason";
"KDNTJ4" = "Hutsegitearen arrazoia";
"RHxKOw" = "Send Post with text content";
"RHxKOw" = "Argitaratu bidalketa testu-edukiarekin";
"RxSqsb" = "Post";
"RxSqsb" = "Bidali";
"WCIR3D" = "Post ${content} on Mastodon";
"WCIR3D" = "Argitaratu ${content} Mastodonen";
"ZKJSNu" = "Post";
"ZKJSNu" = "Bidali";
"ZS1XaK" = "${content}";
"ZbSjzC" = "Visibility";
"ZbSjzC" = "Ikusgaitasuna";
"Zo4jgJ" = "Post Visibility";
"Zo4jgJ" = "Bidalketaren ikusgaitasuna";
"apSxMG-dYQ5NN" = "There are ${count} options matching Public.";
"apSxMG-dYQ5NN" = "'Publikoa'-rekin bat datozen ${count} aukera daude.";
"apSxMG-ehFLjY" = "There are ${count} options matching Followers Only.";
"apSxMG-ehFLjY" = "'Jarraitzaileak soilik'-ekin bat datozen ${count} aukera daude.";
"ayoYEb-dYQ5NN" = "${content}, Public";
"ayoYEb-dYQ5NN" = "${content}, publikoa";
"ayoYEb-ehFLjY" = "${content}, Followers Only";
"ayoYEb-ehFLjY" = "${content}, jarraitzaileak besterik ez";
"dUyuGg" = "Post on Mastodon";
"dUyuGg" = "Argitaratu Mastodonen";
"dYQ5NN" = "Public";
"dYQ5NN" = "Publikoa";
"ehFLjY" = "Followers Only";
"ehFLjY" = "Jarraitzaileak soilik";
"gfePDu" = "Posting failed. ${failureReason}";
"gfePDu" = "Argitaratzeak huts egin du. ${failureReason}";
"k7dbKQ" = "Post was sent successfully.";
"k7dbKQ" = "Bidalketa behar bezala bidali da.";
"oGiqmY-dYQ5NN" = "Just to confirm, you wanted Public?";
"oGiqmY-dYQ5NN" = "Berresteagatik, 'Publikoa' izatea nahi duzu?";
"oGiqmY-ehFLjY" = "Just to confirm, you wanted Followers Only?";
"oGiqmY-ehFLjY" = "Berresteagatik, 'Jarraitzaileak soilik' izatea nahi duzu?";
"rM6dvp" = "URL";
"ryJLwG" = "Post was sent successfully.";
"rM6dvp" = "URLa";
"ryJLwG" = "Bidalketa behar bezala bidali da. ";

View File

@ -12,7 +12,7 @@
"RHxKOw" = "Envoyer une publication avec du contenu texte";
"RxSqsb" = "Post";
"RxSqsb" = "Publication";
"WCIR3D" = "Publier du ${content} sur Mastodon";
@ -24,9 +24,9 @@
"Zo4jgJ" = "Visibilité de la publication";
"apSxMG-dYQ5NN" = "There are ${count} options matching Public.";
"apSxMG-dYQ5NN" = "Il y a ${count} options correspondant à « Public ».";
"apSxMG-ehFLjY" = "There are ${count} options matching Followers Only.";
"apSxMG-ehFLjY" = "Il y a ${count} options correspondant à « Abonnés uniquement ».";
"ayoYEb-dYQ5NN" = "${content}, Public";

View File

@ -1,51 +1,51 @@
"16wxgf" = "Post on Mastodon";
"16wxgf" = "Mastodonに投稿";
"751xkl" = "Text Content";
"751xkl" = "テキストコンテンツ";
"CsR7G2" = "Post on Mastodon";
"CsR7G2" = "Mastodonに投稿";
"HZSGTr" = "What content to post?";
"HdGikU" = "Posting failed";
"HdGikU" = "投稿に失敗しました";
"KDNTJ4" = "Failure Reason";
"KDNTJ4" = "失敗の理由";
"RHxKOw" = "Send Post with text content";
"RxSqsb" = "Post";
"RxSqsb" = "投稿";
"WCIR3D" = "Post ${content} on Mastodon";
"WCIR3D" = "Mastodonに ${content} を投稿";
"ZKJSNu" = "Post";
"ZKJSNu" = "投稿";
"ZS1XaK" = "${content}";
"ZbSjzC" = "Visibility";
"ZbSjzC" = "公開範囲";
"Zo4jgJ" = "Post Visibility";
"Zo4jgJ" = "投稿の公開範囲";
"apSxMG-dYQ5NN" = "There are ${count} options matching Public.";
"apSxMG-dYQ5NN" = "「パブリック」にマッチするオプションが${count}個あります。";
"apSxMG-ehFLjY" = "There are ${count} options matching Followers Only.";
"apSxMG-ehFLjY" = "「フォロワーのみ」にマッチするオプションが${count}個あります。";
"ayoYEb-dYQ5NN" = "${content}, Public";
"ayoYEb-dYQ5NN" = "${content}, パブリック";
"ayoYEb-ehFLjY" = "${content}, Followers Only";
"ayoYEb-ehFLjY" = "${content}, フォロワーのみ";
"dUyuGg" = "Post on Mastodon";
"dUyuGg" = "Mastodonに投稿";
"dYQ5NN" = "Public";
"dYQ5NN" = "パブリック";
"ehFLjY" = "Followers Only";
"ehFLjY" = "フォロワーのみ";
"gfePDu" = "Posting failed. ${failureReason}";
"gfePDu" = "投稿に失敗しました。 ${failureReason}";
"k7dbKQ" = "Post was sent successfully.";
"k7dbKQ" = "投稿に成功しました。";
"oGiqmY-dYQ5NN" = "Just to confirm, you wanted Public?";
"oGiqmY-dYQ5NN" = "「パブリック」で間違いないですか?";
"oGiqmY-ehFLjY" = "Just to confirm, you wanted Followers Only?";
"oGiqmY-ehFLjY" = "「フォロワーのみ」で間違いないですか?";
"rM6dvp" = "URL";
"ryJLwG" = "Post was sent successfully. ";
"ryJLwG" = "投稿に成功しました。 ";

View File

@ -1,51 +1,51 @@
"16wxgf" = "Post on Mastodon";
"16wxgf" = "Julkaise Mastodonissa";
"751xkl" = "Text Content";
"751xkl" = "Tekstisisältö";
"CsR7G2" = "Post on Mastodon";
"CsR7G2" = "Julkaise Mastodonissa";
"HZSGTr" = "What content to post?";
"HZSGTr" = "Mitä sisältöä julkaista?";
"HdGikU" = "Posting failed";
"HdGikU" = "Julkaiseminen epäonnistui";
"KDNTJ4" = "Failure Reason";
"KDNTJ4" = "Epäonnistumisen syy";
"RHxKOw" = "Send Post with text content";
"RHxKOw" = "Lähetä julkaisu teksisisällöllä";
"RxSqsb" = "Post";
"RxSqsb" = "Julkaisu";
"WCIR3D" = "Posta ${content} på Mastodon";
"WCIR3D" = "Julkaise ${content} Mastodonissa";
"ZKJSNu" = "Post";
"ZKJSNu" = "Julkaisu";
"ZS1XaK" = "${content}";
"ZbSjzC" = "Visibility";
"ZbSjzC" = "Näkyvyys";
"Zo4jgJ" = "Post Visibility";
"Zo4jgJ" = "Julkaisun näkyvyys";
"apSxMG-dYQ5NN" = "There are ${count} options matching Public.";
"apSxMG-dYQ5NN" = "On ${count} vaihtoehtoa, jotka vastaavat Julkinen.";
"apSxMG-ehFLjY" = "There are ${count} options matching Followers Only.";
"apSxMG-ehFLjY" = "On ${count} vaihtoehtoa, jotka vastaavat Vain seuraajat.";
"ayoYEb-dYQ5NN" = "${content}, Public";
"ayoYEb-dYQ5NN" = "${content}, julkinen";
"ayoYEb-ehFLjY" = "${content}, Followers Only";
"ayoYEb-ehFLjY" = "${content}, vain seuraajat";
"dUyuGg" = "Post on Mastodon";
"dUyuGg" = "Julkaise Mastodonissa";
"dYQ5NN" = "Public";
"dYQ5NN" = "Julkinen";
"ehFLjY" = "Followers Only";
"ehFLjY" = "Vain seuraajat";
"gfePDu" = "Posting failed. ${failureReason}";
"gfePDu" = "Julkaiseminen epäonnistui. ${failureReason}";
"k7dbKQ" = "Post was sent successfully.";
"k7dbKQ" = "Julkaisu lähetettiin onnistuneesti.";
"oGiqmY-dYQ5NN" = "Just to confirm, you wanted Public?";
"oGiqmY-dYQ5NN" = "Vahvitukseksi, halusit Julkinen?";
"oGiqmY-ehFLjY" = "Just to confirm, you wanted Followers Only?";
"oGiqmY-ehFLjY" = "Vahvitstukseksi, halusit Vain seuraajat?";
"rM6dvp" = "URL";
"ryJLwG" = "Post was sent successfully. ";
"ryJLwG" = "Julkaisu lähetettiin onnistuneesti. ";

View File

@ -36,9 +36,9 @@ public enum L10n {
public static let pleaseTryAgainLater = L10n.tr("Localizable", "Common.Alerts.Common.PleaseTryAgainLater")
}
public enum DeletePost {
/// Delete
public static let delete = L10n.tr("Localizable", "Common.Alerts.DeletePost.Delete")
/// Are you sure you want to delete this post?
public static let message = L10n.tr("Localizable", "Common.Alerts.DeletePost.Message")
/// Delete Post
public static let title = L10n.tr("Localizable", "Common.Alerts.DeletePost.Title")
}
public enum DiscardPostContent {
@ -132,6 +132,8 @@ public enum L10n {
public static let ok = L10n.tr("Localizable", "Common.Controls.Actions.Ok")
/// Open
public static let `open` = L10n.tr("Localizable", "Common.Controls.Actions.Open")
/// Open in Browser
public static let openInBrowser = L10n.tr("Localizable", "Common.Controls.Actions.OpenInBrowser")
/// Open in Safari
public static let openInSafari = L10n.tr("Localizable", "Common.Controls.Actions.OpenInSafari")
/// Preview
@ -283,6 +285,8 @@ public enum L10n {
public enum Actions {
/// Favorite
public static let favorite = L10n.tr("Localizable", "Common.Controls.Status.Actions.Favorite")
/// Hide
public static let hide = L10n.tr("Localizable", "Common.Controls.Status.Actions.Hide")
/// Menu
public static let menu = L10n.tr("Localizable", "Common.Controls.Status.Actions.Menu")
/// Reblog
@ -314,6 +318,16 @@ public enum L10n {
/// URL
public static let url = L10n.tr("Localizable", "Common.Controls.Status.Tag.Url")
}
public enum Visibility {
/// Only mentioned user can see this post.
public static let direct = L10n.tr("Localizable", "Common.Controls.Status.Visibility.Direct")
/// Only their followers can see this post.
public static let `private` = L10n.tr("Localizable", "Common.Controls.Status.Visibility.Private")
/// Only my followers can see this post.
public static let privateFromMe = L10n.tr("Localizable", "Common.Controls.Status.Visibility.PrivateFromMe")
/// Everyone can see this post but not display in the public timeline.
public static let unlisted = L10n.tr("Localizable", "Common.Controls.Status.Visibility.Unlisted")
}
}
public enum Tabs {
/// Home
@ -490,17 +504,15 @@ public enum L10n {
}
}
public enum ConfirmEmail {
/// We just sent an email to %@,\ntap the link to confirm your account.
public static func subtitle(_ p1: Any) -> String {
return L10n.tr("Localizable", "Scene.ConfirmEmail.Subtitle", String(describing: p1))
}
/// Tap the link we emailed to you to verify your account.
public static let subtitle = L10n.tr("Localizable", "Scene.ConfirmEmail.Subtitle")
/// One last thing.
public static let title = L10n.tr("Localizable", "Scene.ConfirmEmail.Title")
public enum Button {
/// I never got an email
public static let dontReceiveEmail = L10n.tr("Localizable", "Scene.ConfirmEmail.Button.DontReceiveEmail")
/// Open Email App
public static let openEmailApp = L10n.tr("Localizable", "Scene.ConfirmEmail.Button.OpenEmailApp")
/// Resend
public static let resend = L10n.tr("Localizable", "Scene.ConfirmEmail.Button.Resend")
}
public enum DontReceiveEmail {
/// Check if your email address is correct as well as your junk folder if you havent.
@ -548,36 +560,26 @@ public enum L10n {
}
}
public enum Notification {
/// %@ favorited your post
public static func userFavoritedYourPost(_ p1: Any) -> String {
return L10n.tr("Localizable", "Scene.Notification.UserFavorited Your Post", String(describing: p1))
}
/// %@ followed you
public static func userFollowedYou(_ p1: Any) -> String {
return L10n.tr("Localizable", "Scene.Notification.UserFollowedYou", String(describing: p1))
}
/// %@ mentioned you
public static func userMentionedYou(_ p1: Any) -> String {
return L10n.tr("Localizable", "Scene.Notification.UserMentionedYou", String(describing: p1))
}
/// %@ reblogged your post
public static func userRebloggedYourPost(_ p1: Any) -> String {
return L10n.tr("Localizable", "Scene.Notification.UserRebloggedYourPost", String(describing: p1))
}
/// %@ requested to follow you
public static func userRequestedToFollowYou(_ p1: Any) -> String {
return L10n.tr("Localizable", "Scene.Notification.UserRequestedToFollowYou", String(describing: p1))
}
/// %@ Your poll has ended
public static func userYourPollHasEnded(_ p1: Any) -> String {
return L10n.tr("Localizable", "Scene.Notification.UserYourPollHasEnded", String(describing: p1))
}
public enum Keyobard {
/// Show Everything
public static let showEverything = L10n.tr("Localizable", "Scene.Notification.Keyobard.ShowEverything")
/// Show Mentions
public static let showMentions = L10n.tr("Localizable", "Scene.Notification.Keyobard.ShowMentions")
}
public enum NotificationDescription {
/// favorited your post
public static let favoritedYourPost = L10n.tr("Localizable", "Scene.Notification.NotificationDescription.FavoritedYourPost")
/// followed you
public static let followedYou = L10n.tr("Localizable", "Scene.Notification.NotificationDescription.FollowedYou")
/// mentioned you
public static let mentionedYou = L10n.tr("Localizable", "Scene.Notification.NotificationDescription.MentionedYou")
/// poll has ended
public static let pollHasEnded = L10n.tr("Localizable", "Scene.Notification.NotificationDescription.PollHasEnded")
/// reblogged your post
public static let rebloggedYourPost = L10n.tr("Localizable", "Scene.Notification.NotificationDescription.RebloggedYourPost")
/// request to follow you
public static let requestToFollowYou = L10n.tr("Localizable", "Scene.Notification.NotificationDescription.RequestToFollowYou")
}
public enum Title {
/// Everything
public static let everything = L10n.tr("Localizable", "Scene.Notification.Title.Everything")
@ -615,13 +617,29 @@ public enum L10n {
}
}
public enum RelationshipActionAlert {
public enum ConfirmUnblockUsre {
public enum ConfirmBlockUser {
/// Confirm to block %@
public static func message(_ p1: Any) -> String {
return L10n.tr("Localizable", "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message", String(describing: p1))
}
/// Block Account
public static let title = L10n.tr("Localizable", "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title")
}
public enum ConfirmMuteUser {
/// Confirm to mute %@
public static func message(_ p1: Any) -> String {
return L10n.tr("Localizable", "Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Message", String(describing: p1))
}
/// Mute Account
public static let title = L10n.tr("Localizable", "Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title")
}
public enum ConfirmUnblockUser {
/// Confirm to unblock %@
public static func message(_ p1: Any) -> String {
return L10n.tr("Localizable", "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUsre.Message", String(describing: p1))
return L10n.tr("Localizable", "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message", String(describing: p1))
}
/// Unblock Account
public static let title = L10n.tr("Localizable", "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUsre.Title")
public static let title = L10n.tr("Localizable", "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title")
}
public enum ConfirmUnmuteUser {
/// Confirm to unmute %@
@ -633,17 +651,23 @@ public enum L10n {
}
}
public enum SegmentedControl {
/// About
public static let about = L10n.tr("Localizable", "Scene.Profile.SegmentedControl.About")
/// Media
public static let media = L10n.tr("Localizable", "Scene.Profile.SegmentedControl.Media")
/// Posts
public static let posts = L10n.tr("Localizable", "Scene.Profile.SegmentedControl.Posts")
/// Posts and Replies
public static let postsAndReplies = L10n.tr("Localizable", "Scene.Profile.SegmentedControl.PostsAndReplies")
/// Replies
public static let replies = L10n.tr("Localizable", "Scene.Profile.SegmentedControl.Replies")
}
}
public enum Register {
/// Tell us about you.
public static let title = L10n.tr("Localizable", "Scene.Register.Title")
/// Lets get you set up on %@
public static func title(_ p1: Any) -> String {
return L10n.tr("Localizable", "Scene.Register.Title", String(describing: p1))
}
public enum Error {
public enum Item {
/// Agreement
@ -730,10 +754,20 @@ public enum L10n {
public static let registrationUserInviteRequest = L10n.tr("Localizable", "Scene.Register.Input.Invite.RegistrationUserInviteRequest")
}
public enum Password {
/// 8 characters
public static let characterLimit = L10n.tr("Localizable", "Scene.Register.Input.Password.CharacterLimit")
/// Your password needs at least eight characters
public static let hint = L10n.tr("Localizable", "Scene.Register.Input.Password.Hint")
/// password
public static let placeholder = L10n.tr("Localizable", "Scene.Register.Input.Password.Placeholder")
/// Your password needs at least:
public static let require = L10n.tr("Localizable", "Scene.Register.Input.Password.Require")
public enum Accessibility {
/// checked
public static let checked = L10n.tr("Localizable", "Scene.Register.Input.Password.Accessibility.Checked")
/// unchecked
public static let unchecked = L10n.tr("Localizable", "Scene.Register.Input.Password.Accessibility.Unchecked")
}
}
public enum Username {
/// This username is taken.
@ -748,6 +782,10 @@ public enum L10n {
public static let content1 = L10n.tr("Localizable", "Scene.Report.Content1")
/// Is there anything the moderators should know about this report?
public static let content2 = L10n.tr("Localizable", "Scene.Report.Content2")
/// REPORTED
public static let reported = L10n.tr("Localizable", "Scene.Report.Reported")
/// Thanks for reporting, well look into this.
public static let reportSentTitle = L10n.tr("Localizable", "Scene.Report.ReportSentTitle")
/// Send Report
public static let send = L10n.tr("Localizable", "Scene.Report.Send")
/// Send without comment
@ -762,6 +800,8 @@ public enum L10n {
public static func title(_ p1: Any) -> String {
return L10n.tr("Localizable", "Scene.Report.Title", String(describing: p1))
}
/// Report
public static let titleReport = L10n.tr("Localizable", "Scene.Report.TitleReport")
}
public enum Search {
/// Search
@ -816,7 +856,11 @@ public enum L10n {
}
}
public enum ServerPicker {
/// Pick a server,\nany server.
/// Pick a community based on your interests, region, or a general purpose one.
public static let subtitle = L10n.tr("Localizable", "Scene.ServerPicker.Subtitle")
/// Pick a community based on your interests, region, or a general purpose one. Each community is operated by an entirely independent organization or individual.
public static let subtitleExtend = L10n.tr("Localizable", "Scene.ServerPicker.SubtitleExtend")
/// Mastodon is made of users in different communities.
public static let title = L10n.tr("Localizable", "Scene.ServerPicker.Title")
public enum Button {
/// See Less
@ -863,7 +907,7 @@ public enum L10n {
public static let noResults = L10n.tr("Localizable", "Scene.ServerPicker.EmptyState.NoResults")
}
public enum Input {
/// Find a server or join your own...
/// Search communities
public static let placeholder = L10n.tr("Localizable", "Scene.ServerPicker.Input.Placeholder")
}
public enum Label {
@ -882,7 +926,7 @@ public enum L10n {
public static func prompt(_ p1: Any) -> String {
return L10n.tr("Localizable", "Scene.ServerRules.Prompt", String(describing: p1))
}
/// These rules are set by the admins of %@.
/// These are set and enforced by the %@ moderators.
public static func subtitle(_ p1: Any) -> String {
return L10n.tr("Localizable", "Scene.ServerRules.Subtitle", String(describing: p1))
}
@ -929,6 +973,18 @@ public enum L10n {
/// The Boring Zone
public static let title = L10n.tr("Localizable", "Scene.Settings.Section.BoringZone.Title")
}
public enum LookAndFeel {
/// Light
public static let light = L10n.tr("Localizable", "Scene.Settings.Section.LookAndFeel.Light")
/// Really Dark
public static let reallyDark = L10n.tr("Localizable", "Scene.Settings.Section.LookAndFeel.ReallyDark")
/// Sorta Dark
public static let sortaDark = L10n.tr("Localizable", "Scene.Settings.Section.LookAndFeel.SortaDark")
/// Look and Feel
public static let title = L10n.tr("Localizable", "Scene.Settings.Section.LookAndFeel.Title")
/// Use System
public static let useSystem = L10n.tr("Localizable", "Scene.Settings.Section.LookAndFeel.UseSystem")
}
public enum Notifications {
/// Reblogs my post
public static let boosts = L10n.tr("Localizable", "Scene.Settings.Section.Notifications.Boosts")
@ -990,6 +1046,10 @@ public enum L10n {
}
}
public enum Welcome {
/// Get Started
public static let getStarted = L10n.tr("Localizable", "Scene.Welcome.GetStarted")
/// Log In
public static let logIn = L10n.tr("Localizable", "Scene.Welcome.LogIn")
/// Social networking\nback in your hands.
public static let slogan = L10n.tr("Localizable", "Scene.Welcome.Slogan")
}

View File

@ -1,15 +1,15 @@
"Common.Alerts.BlockDomain.BlockEntireDomain" = "حظر النِطاق";
"Common.Alerts.BlockDomain.Title" = "هل أنتَ مُتأكِّدٌ حقًا مِن رغبتك في حظر %@ بالكامل؟ في معظم الحالات، يكون مِنَ الكافي والمُفَضَّل استهداف عدد محدود للحظر أو الكتم. لن ترى محتوى من هذا النطاق وسوف يتم إزالة جميع متابعيك المتواجدين فيه.";
"Common.Alerts.CleanCache.Message" = "تمَّ مَحو ذاكرة التخزين المؤقت %@ بنجاح.";
"Common.Alerts.BlockDomain.BlockEntireDomain" = "حظر النِّطاق";
"Common.Alerts.BlockDomain.Title" = "هل أنتَ مُتأكِّدٌ حقًا مِن رغبتك في حظر %@ بالكامل؟ في معظم الحالات، يكون مِنَ الكافي والمُفَضَّل استهداف عدد محدود للحظر أو الكتم. لن ترى محتوى من هذا النطاق وسوف يُزال جميع متابعيك المتواجدين فيه.";
"Common.Alerts.CleanCache.Message" = "تمَّ مَحو %@ مِن ذاكرة التخزين المؤقت بنجاح.";
"Common.Alerts.CleanCache.Title" = "مَحو ذاكرة التخزين المؤقت";
"Common.Alerts.Common.PleaseTryAgain" = "يُرجى المحاولة مرة أُخرى.";
"Common.Alerts.Common.PleaseTryAgainLater" = "يُرجى المحاولة مرة أُخرى لاحقاً.";
"Common.Alerts.DeletePost.Delete" = "احذف";
"Common.Alerts.Common.PleaseTryAgain" = "يُرجى المُحاولة مرة أُخرى.";
"Common.Alerts.Common.PleaseTryAgainLater" = "يُرجى المُحاولة مرة أُخرى لاحقًا.";
"Common.Alerts.DeletePost.Message" = "هَل أنتَ مُتأكِدٌ مِن رَغبتِكَ فِي حَذفِ هَذَا المَنشُور؟";
"Common.Alerts.DeletePost.Title" = "هل أنت متأكد من رغبتك في حذف هذا المنشور؟";
"Common.Alerts.DiscardPostContent.Message" = "أكِّد للتخلص مِن مُحتوى مَنشور مؤلَّف.";
"Common.Alerts.DiscardPostContent.Title" = "التخلص من المسودة";
"Common.Alerts.EditProfileFailure.Message" = "لا يمكن تعديل الملف الشخصي. يُرجى المحاولة مرة أُخرى.";
"Common.Alerts.EditProfileFailure.Title" = "خطأ في تَحرير الملف الشخصي";
"Common.Alerts.EditProfileFailure.Message" = "يتعذَّر تعديل الملف التعريفي. يُرجى المُحاولة مرة أُخرى.";
"Common.Alerts.EditProfileFailure.Title" = "خطأ في تَحرير الملف التعريفي";
"Common.Alerts.PublishPostFailure.AttachmentsMessage.MoreThanOneVideo" = "لا يُمكِنُ إرفاق أكثر مِن مَقطع مرئي واحِد.";
"Common.Alerts.PublishPostFailure.AttachmentsMessage.VideoAttachWithPhoto" = "لا يُمكن إرفاق مقطع مرئي إلى مَنشور يحتوي بالفعل على صُوَر.";
"Common.Alerts.PublishPostFailure.Message" = "فَشَلَ نَشر المَنشور.
@ -19,7 +19,7 @@
"Common.Alerts.SavePhotoFailure.Title" = "إخفاق في حفظ الصورة";
"Common.Alerts.ServerError.Title" = "خطأ في الخادم";
"Common.Alerts.SignOut.Confirm" = "تسجيل الخروج";
"Common.Alerts.SignOut.Message" = "هل أنت متأكد من رغبتك في تسجيل الخروج؟";
"Common.Alerts.SignOut.Message" = "هل أنت متأكد من رغبتك في تسجيل الخُروج؟";
"Common.Alerts.SignOut.Title" = "تسجيل الخروج";
"Common.Alerts.SignUpFailure.Title" = "إخفاق في التسجيل";
"Common.Alerts.VoteFailure.PollEnded" = "انتهى استطلاع الرأي";
@ -32,21 +32,22 @@
"Common.Controls.Actions.Confirm" = "تأكيد";
"Common.Controls.Actions.Continue" = "واصل";
"Common.Controls.Actions.CopyPhoto" = "نسخ الصورة";
"Common.Controls.Actions.Delete" = "احذف";
"Common.Controls.Actions.Discard" = "تجاهل";
"Common.Controls.Actions.Delete" = "حذف";
"Common.Controls.Actions.Discard" = "تجاهُل";
"Common.Controls.Actions.Done" = "تمّ";
"Common.Controls.Actions.Edit" = "تحرير";
"Common.Controls.Actions.FindPeople" = "ابحث عن أشخاص لمتابعتهم";
"Common.Controls.Actions.ManuallySearch" = "البحث يدوياً بدلاً من ذلك";
"Common.Controls.Actions.FindPeople" = "ابحث عن أشخاص لِمُتابعتهم";
"Common.Controls.Actions.ManuallySearch" = "البحث يدويًا بدلًا من ذلك";
"Common.Controls.Actions.Next" = "التالي";
"Common.Controls.Actions.Ok" = "حسنًا";
"Common.Controls.Actions.Open" = "افتح";
"Common.Controls.Actions.OpenInSafari" = "الفتح في Safari";
"Common.Controls.Actions.Open" = "فتح";
"Common.Controls.Actions.OpenInBrowser" = "الفَتحُ في المُتَصَفِّح";
"Common.Controls.Actions.OpenInSafari" = "الفَتحُ في Safari";
"Common.Controls.Actions.Preview" = "مُعاينة";
"Common.Controls.Actions.Previous" = "السابق";
"Common.Controls.Actions.Remove" = "احذف";
"Common.Controls.Actions.Reply" = "الرَد";
"Common.Controls.Actions.ReportUser" = "ابلغ عن %@";
"Common.Controls.Actions.Remove" = "حذف";
"Common.Controls.Actions.Reply" = "الرَّد";
"Common.Controls.Actions.ReportUser" = "الإبلاغ عن %@";
"Common.Controls.Actions.Save" = "حفظ";
"Common.Controls.Actions.SavePhoto" = "حفظ الصورة";
"Common.Controls.Actions.SeeMore" = "عرض المزيد";
@ -59,290 +60,318 @@
"Common.Controls.Actions.Skip" = "تخطي";
"Common.Controls.Actions.TakePhoto" = "التقاط صورة";
"Common.Controls.Actions.TryAgain" = "المُحاولة مرة أُخرى";
"Common.Controls.Actions.UnblockDomain" = "إلغاء حظر %@";
"Common.Controls.Actions.UnblockDomain" = "رفع الحظر عن %@";
"Common.Controls.Friendship.Block" = "حظر";
"Common.Controls.Friendship.BlockDomain" = "حظر %@";
"Common.Controls.Friendship.BlockUser" = "حظر %@";
"Common.Controls.Friendship.Blocked" = "محظور";
"Common.Controls.Friendship.EditInfo" = "تعديل المعلومات";
"Common.Controls.Friendship.Follow" = "اتبع";
"Common.Controls.Friendship.Follow" = "مُتابَعَة";
"Common.Controls.Friendship.Following" = "مُتابَع";
"Common.Controls.Friendship.Mute" = "أكتم";
"Common.Controls.Friendship.MuteUser" = "أكتم %@";
"Common.Controls.Friendship.Mute" = "كَتم";
"Common.Controls.Friendship.MuteUser" = "كَتم %@";
"Common.Controls.Friendship.Muted" = "مكتوم";
"Common.Controls.Friendship.Pending" = "قيد المُراجعة";
"Common.Controls.Friendship.Request" = "إرسال طَلَب";
"Common.Controls.Friendship.Unblock" = "إلغاء الحَظر";
"Common.Controls.Friendship.UnblockUser" = "إلغاء حظر %@";
"Common.Controls.Friendship.Unmute" = "إلغاء الكتم";
"Common.Controls.Friendship.UnmuteUser" = "إلغاء كتم %@";
"Common.Controls.Friendship.Unblock" = "رفع الحَظر";
"Common.Controls.Friendship.UnblockUser" = "رفع الحَظر عن %@";
"Common.Controls.Friendship.Unmute" = "رفع الكتم";
"Common.Controls.Friendship.UnmuteUser" = "رفع الكتم عن %@";
"Common.Controls.Keyboard.Common.ComposeNewPost" = "تأليف منشور جديد";
"Common.Controls.Keyboard.Common.OpenSettings" = "أفتح الإعدادات";
"Common.Controls.Keyboard.Common.ShowFavorites" = "إظهار المفضلة";
"Common.Controls.Keyboard.Common.OpenSettings" = "فَتحُ الإعدادات";
"Common.Controls.Keyboard.Common.ShowFavorites" = "إظهار المُفضَّلة";
"Common.Controls.Keyboard.Common.SwitchToTab" = "التبديل إلى %@";
"Common.Controls.Keyboard.SegmentedControl.NextSection" = "القسم التالي";
"Common.Controls.Keyboard.SegmentedControl.PreviousSection" = "القسم السابق";
"Common.Controls.Keyboard.Timeline.NextStatus" = "المنشور التالي";
"Common.Controls.Keyboard.Timeline.OpenAuthorProfile" = "افتح الملف التعريفي للمؤلف";
"Common.Controls.Keyboard.Timeline.OpenRebloggerProfile" = "افتح الملف التعريفي لمشارِك المنشور";
"Common.Controls.Keyboard.Timeline.OpenStatus" = "افتح المنشور";
"Common.Controls.Keyboard.Timeline.OpenAuthorProfile" = "فتح الملف التعريفي للمؤلف";
"Common.Controls.Keyboard.Timeline.OpenRebloggerProfile" = "فتح الملف التعريفي لمُعيد تدوين المنشور";
"Common.Controls.Keyboard.Timeline.OpenStatus" = "فتح المنشور";
"Common.Controls.Keyboard.Timeline.PreviewImage" = "معاينة الصورة";
"Common.Controls.Keyboard.Timeline.PreviousStatus" = "المنشور السابق";
"Common.Controls.Keyboard.Timeline.ReplyStatus" = "رد على المنشور";
"Common.Controls.Keyboard.Timeline.ReplyStatus" = "الرَّد على مَنشور";
"Common.Controls.Keyboard.Timeline.ToggleContentWarning" = "تبديل تحذير المُحتَوى";
"Common.Controls.Keyboard.Timeline.ToggleFavorite" = "تبديل المفضلة لِمنشور";
"Common.Controls.Keyboard.Timeline.ToggleReblog" = "تبديل إعادة تدوين منشور";
"Common.Controls.Status.Actions.Favorite" = "إضافة إلى المفضلة";
"Common.Controls.Keyboard.Timeline.ToggleReblog" = "تبديل إعادة تدوين مَنشور";
"Common.Controls.Status.Actions.Favorite" = "التفضيل";
"Common.Controls.Status.Actions.Hide" = "إخفاء";
"Common.Controls.Status.Actions.Menu" = "القائمة";
"Common.Controls.Status.Actions.Reblog" = "إعادة النشر";
"Common.Controls.Status.Actions.Reply" = "رد";
"Common.Controls.Status.Actions.Unfavorite" = "إزالة من المفضلة";
"Common.Controls.Status.Actions.Unreblog" = "تراجع عن إعادة النشر";
"Common.Controls.Status.ContentWarning" = "تحذير عن المحتوى";
"Common.Controls.Status.MediaContentWarning" = "انقر على أي مكان للكشف";
"Common.Controls.Status.Actions.Reply" = "الرَّد";
"Common.Controls.Status.Actions.Unfavorite" = "إزالة التفضيل";
"Common.Controls.Status.Actions.Unreblog" = "التراجُع عن إعادة النشر";
"Common.Controls.Status.ContentWarning" = "تحذير المُحتوى";
"Common.Controls.Status.MediaContentWarning" = "انقر للكشف";
"Common.Controls.Status.Poll.Closed" = "انتهى";
"Common.Controls.Status.Poll.Vote" = "صَوِّت";
"Common.Controls.Status.ShowPost" = "اظهر المنشور";
"Common.Controls.Status.ShowUserProfile" = "اظهر الملف التعريفي للمستخدم";
"Common.Controls.Status.Tag.Email" = "البريد الإلكتروني";
"Common.Controls.Status.Tag.Emoji" = "إيموجي";
"Common.Controls.Status.Tag.Hashtag" = "الوسم";
"Common.Controls.Status.Tag.Link" = "الرابط";
"Common.Controls.Status.Tag.Mention" = "أشر إلى";
"Common.Controls.Status.ShowPost" = "إظهار منشور";
"Common.Controls.Status.ShowUserProfile" = "إظهار الملف التعريفي للمُستخدِم";
"Common.Controls.Status.Tag.Email" = "بريد إلكتروني";
"Common.Controls.Status.Tag.Emoji" = "رمز تعبيري";
"Common.Controls.Status.Tag.Hashtag" = "وسم";
"Common.Controls.Status.Tag.Link" = "رابط";
"Common.Controls.Status.Tag.Mention" = "إشارة";
"Common.Controls.Status.Tag.Url" = "عنوان URL";
"Common.Controls.Status.UserReblogged" = "أعادَ %@ تدوينها";
"Common.Controls.Status.UserRepliedTo" = "رد على %@";
"Common.Controls.Tabs.Home" = "الخيط الرئيسي";
"Common.Controls.Status.UserRepliedTo" = "رَدًا على %@";
"Common.Controls.Status.Visibility.Direct" = "المُستخدمِونَ المُشارِ إليهم فَقَطْ مَن يُمكِنُهُم رُؤيَةُ هَذَا المَنشُور.";
"Common.Controls.Status.Visibility.Private" = "فَقَطْ مُتابِعينَهُم مَن يُمكِنُهُم رُؤيَةُ هَذَا المَنشُور.";
"Common.Controls.Status.Visibility.PrivateFromMe" = "فَقَطْ مُتابِعيني أنَا مَن يُمكِنُهُم رُؤيَةُ هَذَا المَنشُور.";
"Common.Controls.Status.Visibility.Unlisted" = "يُمكِنُ لِلجَميعِ رُؤيَةُ هَذَا المَنشورِ وَلكِنَّهُ لَا يُعرَضُ فِي الخَطِّ الزَمنيّ العام.";
"Common.Controls.Tabs.Home" = "الرَّئِيسَة";
"Common.Controls.Tabs.Notification" = "الإشعارات";
"Common.Controls.Tabs.Profile" = "الملف التعريفي";
"Common.Controls.Tabs.Search" = "بحث";
"Common.Controls.Tabs.Search" = "البَحث";
"Common.Controls.Timeline.Filtered" = "مُصفَّى";
"Common.Controls.Timeline.Header.BlockedWarning" = "لا يُمكِنُكَ عَرض الملف الشخصي لهذا المُستخدِم
حتَّى يَرفَعَ الحَظر عَنك.";
"Common.Controls.Timeline.Header.BlockingWarning" = "لا يُمكنك الاطلاع على الملف الشخصي لهذا المُستخدِم
"Common.Controls.Timeline.Header.BlockedWarning" = "لا يُمكِنُكَ عَرض الملف التَعريفي لهذا المُستخدِم
حتَّى يَرفَعَ الحَظرَ عَنك.";
"Common.Controls.Timeline.Header.BlockingWarning" = "لا يُمكِنُكَ الاِطلاع على الملف التَعريفي لهذا المُستخدِم
حتَّى تَرفعَ الحَظر عنه.
ملفًّكَ الشخصي يَظهَرُ بِمثل هذِهِ الحالة بالنسبةِ لَهُ أيضًا.";
"Common.Controls.Timeline.Header.NoStatusFound" = "لا توجد هناك منشورات";
ملفُّكَ التَعريفي يَظهَرُ بِمثل هذِهِ الحالة بالنسبةِ لَهُ أيضًا.";
"Common.Controls.Timeline.Header.NoStatusFound" = "لَم يُعْثَر على مَنشورات";
"Common.Controls.Timeline.Header.SuspendedWarning" = "تمَّ إيقاف هذا المُستخدِم.";
"Common.Controls.Timeline.Header.UserBlockedWarning" = "لا يُمكِنُكَ عَرض ملف %@ الشخصي
"Common.Controls.Timeline.Header.UserBlockedWarning" = "لا يُمكِنُكَ عَرض ملف %@ التَعريفي
حتَّى يَرفَعَ الحَظر عَنك.";
"Common.Controls.Timeline.Header.UserBlockingWarning" = "لا يُمكنك الاطلاع على ملف %@ الشخصي
"Common.Controls.Timeline.Header.UserBlockingWarning" = "لا يُمكنك الاطلاع على ملف %@ التَعريفي
حتَّى تَرفعَ الحَظر عنه.
ملفًّكَ الشخصي يَظهَرُ بِمثل هذِهِ الحالة بالنسبةِ لَهُ أيضًا.";
"Common.Controls.Timeline.Header.UserSuspendedWarning" = "لقد أوقِفَ حِساب %@.";
"Common.Controls.Timeline.Loader.LoadMissingPosts" = "تحميل المنشورات المَفقودة";
"Common.Controls.Timeline.Loader.LoadingMissingPosts" = "تحميل المزيد من المنشورات...";
"Common.Controls.Timeline.Loader.ShowMoreReplies" = "إظهار المزيد من الردود";
"Common.Controls.Timeline.Timestamp.Now" = "الأن";
"Scene.AccountList.AddAccount" = "إضافة حساب";
"Scene.AccountList.DismissAccountSwitcher" = "تجاهُل مبدِّل الحساب";
"Scene.AccountList.TabBarHint" = "المِلف المُحدَّد حاليًا: %@. انقر نقرًا مزدوجًا ثم اضغط مع الاستمرار لإظهار مُبدِّل الحِساب";
ملفُّكَ التَعريفي يَظهَرُ بِمثل هذِهِ الحالة بالنسبةِ لَهُ أيضًا.";
"Common.Controls.Timeline.Header.UserSuspendedWarning" = "لقد أُوقِفَ حِساب %@.";
"Common.Controls.Timeline.Loader.LoadMissingPosts" = "تحميل المَنشورات المَفقودَة";
"Common.Controls.Timeline.Loader.LoadingMissingPosts" = "يَجري تحميل المَنشورات المَفقودَة...";
"Common.Controls.Timeline.Loader.ShowMoreReplies" = "إظهار مَزيد مِنَ الرُّدود";
"Common.Controls.Timeline.Timestamp.Now" = "الآن";
"Scene.AccountList.AddAccount" = "إضافَةُ حِساب";
"Scene.AccountList.DismissAccountSwitcher" = "تجاهُل مبدِّل الحِساب";
"Scene.AccountList.TabBarHint" = "المِلف المُحدَّد حاليًا: %@. انقر نقرًا مزدوجًا مع الاستمرار لإظهار مُبدِّل الحِساب";
"Scene.Compose.Accessibility.AppendAttachment" = "إضافة مُرفَق";
"Scene.Compose.Accessibility.AppendPoll" = "اضافة استطلاع رأي";
"Scene.Compose.Accessibility.CustomEmojiPicker" = "منتقي مخصص للإيموجي";
"Scene.Compose.Accessibility.DisableContentWarning" = "تعطيل تحذير الحتوى";
"Scene.Compose.Accessibility.EnableContentWarning" = "تنشيط تحذير المحتوى";
"Scene.Compose.Accessibility.CustomEmojiPicker" = "منتقي الرموز التعبيرية المُخصَّص";
"Scene.Compose.Accessibility.DisableContentWarning" = "تعطيل تحذير المُحتَوى";
"Scene.Compose.Accessibility.EnableContentWarning" = "تفعيل تحذير المُحتَوى";
"Scene.Compose.Accessibility.PostVisibilityMenu" = "قائمة ظهور المنشور";
"Scene.Compose.Accessibility.RemovePoll" = "إزالة الاستطلاع";
"Scene.Compose.Attachment.AttachmentBroken" = "هذا ال%@ مُعطَّل ويتعذَّر رفعه إلى ماستودون.";
"Scene.Compose.Attachment.DescriptionPhoto" = "صِف الصورة للمكفوفين...";
"Scene.Compose.Attachment.DescriptionVideo" = "صِف المقطع المرئي للمكفوفين...";
"Scene.Compose.Attachment.AttachmentBroken" = "هذا ال%@ مُعطَّل
ويتعذَّرُ رفعُه إلى ماستودون.";
"Scene.Compose.Attachment.DescriptionPhoto" = "صِف الصورة للمَكفوفين...";
"Scene.Compose.Attachment.DescriptionVideo" = "صِف المقطع المرئي للمَكفوفين...";
"Scene.Compose.Attachment.Photo" = "صورة";
"Scene.Compose.Attachment.Video" = "فيديو";
"Scene.Compose.AutoComplete.SpaceToAdd" = "انقر مساحة لإضافتِها";
"Scene.Compose.ComposeAction" = "انشر";
"Scene.Compose.Attachment.Video" = "مقطع مرئي";
"Scene.Compose.AutoComplete.SpaceToAdd" = "انقر على مساحة لإضافتِها";
"Scene.Compose.ComposeAction" = "نَشر";
"Scene.Compose.ContentInputPlaceholder" = "أخبِرنا بِما يَجُولُ فِي ذِهنَك";
"Scene.Compose.ContentWarning.Placeholder" = "اكتب تَحذيرًا دَقيقًا هُنا...";
"Scene.Compose.Keyboard.AppendAttachmentEntry" = "إضافة مُرفَق - %@";
"Scene.Compose.Keyboard.DiscardPost" = "تجاهُل المنشور";
"Scene.Compose.Keyboard.PublishPost" = "نَشر المَنشُور";
"Scene.Compose.Keyboard.SelectVisibilityEntry" = "اختر مدى الظهور - %@";
"Scene.Compose.Keyboard.ToggleContentWarning" = "تبديل تحذير المُحتوى";
"Scene.Compose.Keyboard.ToggleContentWarning" = "تبديل تحذير المُحتَوى";
"Scene.Compose.Keyboard.TogglePoll" = "تبديل الاستطلاع";
"Scene.Compose.MediaSelection.Browse" = "تصفح";
"Scene.Compose.MediaSelection.Camera" = "التقط صورة";
"Scene.Compose.MediaSelection.Camera" = "إلتقاط صورة";
"Scene.Compose.MediaSelection.PhotoLibrary" = "مكتبة الصور";
"Scene.Compose.Poll.DurationTime" = "المدة: %@";
"Scene.Compose.Poll.OneDay" = "يوم واحد";
"Scene.Compose.Poll.OneHour" = "ساعة واحدة";
"Scene.Compose.Poll.DurationTime" = "المُدَّة: %@";
"Scene.Compose.Poll.OneDay" = "يومٌ واحِد";
"Scene.Compose.Poll.OneHour" = "ساعةٌ واحدة";
"Scene.Compose.Poll.OptionNumber" = "الخيار %ld";
"Scene.Compose.Poll.SevenDays" = "7 أيام";
"Scene.Compose.Poll.SixHours" = "6 ساعات";
"Scene.Compose.Poll.ThirtyMinutes" = "30 دقيقة";
"Scene.Compose.Poll.ThreeDays" = "3 أيام";
"Scene.Compose.ReplyingToUser" = "رد على %@";
"Scene.Compose.Poll.SevenDays" = "سبعةُ أيام";
"Scene.Compose.Poll.SixHours" = "سِتُّ ساعات";
"Scene.Compose.Poll.ThirtyMinutes" = "ثلاثون دقيقة";
"Scene.Compose.Poll.ThreeDays" = "ثلاثةُ أيام";
"Scene.Compose.ReplyingToUser" = "رَدًا على %@";
"Scene.Compose.Title.NewPost" = "منشور جديد";
"Scene.Compose.Title.NewReply" = "رد جديد";
"Scene.Compose.Visibility.Direct" = "ففط للأشخاص المشار إليهم";
"Scene.Compose.Visibility.Private" = "لمتابعيك فقط";
"Scene.Compose.Title.NewReply" = "رَدٌّ جديد";
"Scene.Compose.Visibility.Direct" = "للأشخاص المُشار إليهم فقط";
"Scene.Compose.Visibility.Private" = "للمُتابِعينَ فقط";
"Scene.Compose.Visibility.Public" = "للعامة";
"Scene.Compose.Visibility.Unlisted" = "غير مُدرَج";
"Scene.ConfirmEmail.Button.DontReceiveEmail" = "لم أستلم أبدًا بريدا إلكترونيا";
"Scene.ConfirmEmail.Button.OpenEmailApp" = "افتح تطبيق البريد الإلكتروني";
"Scene.ConfirmEmail.DontReceiveEmail.Description" = "تحقق ممَّ إذا كان عنوان بريدك الإلكتروني صحيحًا وكذلك تأكد مِن مجلد البريد غير الهام إذا لم تكن قد فعلت ذلك.";
"Scene.ConfirmEmail.Button.OpenEmailApp" = "فتح تطبيق البريد الإلكتروني";
"Scene.ConfirmEmail.Button.Resend" = "إعادَةُ الإرسال";
"Scene.ConfirmEmail.DontReceiveEmail.Description" = "تحقق ممَّ إذا كان عنوان بريدك الإلكتروني صحيحًا، وكذلك تأكد مِن مجلد البريد غير الهام إذا لم تكن قد فعلت ذلك.";
"Scene.ConfirmEmail.DontReceiveEmail.ResendEmail" = "إعادة إرسال البريد الإلكتروني";
"Scene.ConfirmEmail.DontReceiveEmail.Title" = "تحقق من بريدك الإلكتروني";
"Scene.ConfirmEmail.OpenEmailApp.Description" = "لقد أرسلنا لك بريدًا إلكترونيًا للتو. تحقق من مجلد البريد غير الهام الخاص بك إذا لم تكن قد فعلت ذلك.";
"Scene.ConfirmEmail.OpenEmailApp.Mail" = "البريد";
"Scene.ConfirmEmail.OpenEmailApp.OpenEmailClient" = "فتح عميل البريد الإلكتروني";
"Scene.ConfirmEmail.OpenEmailApp.Title" = "تحقَّق من بريدك الوارِد.";
"Scene.ConfirmEmail.Subtitle" = "لقد أرسلنا للتو رسالة بريد إلكتروني إلى %@،
اضغط على الرابط لتأكيد حسابك.";
"Scene.ConfirmEmail.Title" = "شيء واحد أخير.";
"Scene.Favorite.Title" = "مفضلتك";
"Scene.ConfirmEmail.Subtitle" = "لقد أرسلنا للتو بريد إلكتروني إلى %@،
انقر على الرابط لتأكيد حسابك.";
"Scene.ConfirmEmail.Title" = "شيءٌ أخير.";
"Scene.Favorite.Title" = "مُفضَّلَتُك";
"Scene.Follower.Footer" = "لا يُمكِن عَرض المُتابِعين مِنَ الخوادم الأُخرى.";
"Scene.Following.Footer" = "لا يُمكِن عَرض المُتابَعات مِنَ الخوادم الأُخرى.";
"Scene.HomeTimeline.NavigationBarState.NewPosts" = "إظهار منشورات جديدة";
"Scene.HomeTimeline.NavigationBarState.Offline" = "غير متصل";
"Scene.HomeTimeline.NavigationBarState.Published" = "تم نشره!";
"Scene.HomeTimeline.NavigationBarState.Publishing" = "جارٍ نشر المشاركة…";
"Scene.HomeTimeline.Title" = "الخيط الرئيسي";
"Scene.HomeTimeline.NavigationBarState.Offline" = "غَير مُتَّصِل";
"Scene.HomeTimeline.NavigationBarState.Published" = "تمَّ النَّشر!";
"Scene.HomeTimeline.NavigationBarState.Publishing" = "يَجري نَشر المُشارَكَة...";
"Scene.HomeTimeline.Title" = "الرَّئِيسَة";
"Scene.Notification.Keyobard.ShowEverything" = "إظهار كل شيء";
"Scene.Notification.Keyobard.ShowMentions" = "إظهار الإشارات";
"Scene.Notification.Title.Everything" = "الكل";
"Scene.Notification.NotificationDescription.FavoritedYourPost" = "فَضَّلَ مَنشُورَك";
"Scene.Notification.NotificationDescription.FollowedYou" = "بَدَأ بِمُتابَعَتِك";
"Scene.Notification.NotificationDescription.MentionedYou" = "أشارَ إليك";
"Scene.Notification.NotificationDescription.PollHasEnded" = "انتهى استطلاعُ الرأي";
"Scene.Notification.NotificationDescription.RebloggedYourPost" = "أعادَ تَدوينَ مَنشُورَك";
"Scene.Notification.NotificationDescription.RequestToFollowYou" = "طَلَبَ مُتابَعتَك";
"Scene.Notification.Title.Everything" = "كُلُّ شيء";
"Scene.Notification.Title.Mentions" = "الإشارات";
"Scene.Notification.UserFavorited Your Post" = "أضاف %@ منشورك إلى مفضلته";
"Scene.Notification.UserFollowedYou" = "يتابعك %@";
"Scene.Notification.UserMentionedYou" = "أشار إليك %@";
"Scene.Notification.UserRebloggedYourPost" = "أعاد %@ تدوين مشاركتك";
"Scene.Notification.UserRequestedToFollowYou" = "طلب %@ متابعتك";
"Scene.Notification.UserYourPollHasEnded" = "%@ اِنتهى استطلاعُكَ للرأي";
"Scene.Preview.Keyboard.ClosePreview" = "إغلاق المُعايَنَة";
"Scene.Preview.Keyboard.ShowNext" = "إظهار التالي";
"Scene.Preview.Keyboard.ShowPrevious" = "إظهار السابق";
"Scene.Profile.Dashboard.Followers" = "متابِع";
"Scene.Profile.Dashboard.Following" = "مُتابَع";
"Scene.Profile.Dashboard.Posts" = "منشورات";
"Scene.Profile.Dashboard.Posts" = "مَنشورات";
"Scene.Profile.Fields.AddRow" = "إضافة صف";
"Scene.Profile.Fields.Placeholder.Content" = "المحتوى";
"Scene.Profile.Fields.Placeholder.Content" = "المُحتَوى";
"Scene.Profile.Fields.Placeholder.Label" = "التسمية";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUsre.Message" = "أكِّد لرفع حظر %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUsre.Title" = "إلغاء حظر الحساب";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "أكِّد لرفع كتمْ %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Title" = "إلغاء كتم الحساب";
"Scene.Profile.SegmentedControl.Media" = "وسائط";
"Scene.Profile.SegmentedControl.Posts" = "منشورات";
"Scene.Profile.SegmentedControl.Replies" = "ردود";
"Scene.Register.Error.Item.Agreement" = "الاتفاقية";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "تأكيدُ حَظر %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "حَظرُ الحِساب";
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Message" = "تأكيدُ كَتم %@";
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "كَتمُ الحِساب";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "تأكيدُ رَفع الحَظرِ عَن %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "رَفعُ الحَظرِ عَنِ الحِساب";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "أكِّد لرفع الكتمْ عن %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Title" = "رفع الكتم عن الحساب";
"Scene.Profile.SegmentedControl.About" = "حَول";
"Scene.Profile.SegmentedControl.Media" = "وَسائِط";
"Scene.Profile.SegmentedControl.Posts" = "مَنشورات";
"Scene.Profile.SegmentedControl.PostsAndReplies" = "المَنشوراتُ وَالرُدود";
"Scene.Profile.SegmentedControl.Replies" = "رُدُود";
"Scene.Register.Error.Item.Agreement" = "الاِتِّفاقيَّة";
"Scene.Register.Error.Item.Email" = "البريد الإلكتروني";
"Scene.Register.Error.Item.Locale" = "اللغة المحلية";
"Scene.Register.Error.Item.Password" = "الكلمة السرية";
"Scene.Register.Error.Item.Password" = "الرمز السري";
"Scene.Register.Error.Item.Reason" = "السبب";
"Scene.Register.Error.Item.Username" = "اسم المستخدم";
"Scene.Register.Error.Item.Username" = "اِسم المُستَخدِم";
"Scene.Register.Error.Reason.Accepted" = "يجب أن يُقبل %@";
"Scene.Register.Error.Reason.Blank" = "%@ مطلوب";
"Scene.Register.Error.Reason.Blank" = "%@ مَطلوب";
"Scene.Register.Error.Reason.Blocked" = "يحتوي %@ على موفِّر خدمة بريد إلكتروني غير مسموح به";
"Scene.Register.Error.Reason.Inclusion" = "إنَّ %@ قيمة غير مدعومة";
"Scene.Register.Error.Reason.Invalid" = "%@ غير صالح";
"Scene.Register.Error.Reason.Reserved" = "إنَّ %@ عبارة عن كلمة مفتاحيَّة محجوزة";
"Scene.Register.Error.Reason.Taken" = "إنَّ %@ مُستخدَمٌ بالفعل";
"Scene.Register.Error.Reason.TooLong" = "%@ طويل جداً";
"Scene.Register.Error.Reason.TooShort" = "%@ قصير جدا";
"Scene.Register.Error.Reason.TooShort" = "%@ قصير جدًا";
"Scene.Register.Error.Reason.Unreachable" = "يبدوا أنَّ %@ غير موجود";
"Scene.Register.Error.Special.EmailInvalid" = "هذا عنوان بريد إلكتروني غير صالح";
"Scene.Register.Error.Special.PasswordTooShort" = "كلمة المرور قصيرة جداً (يجب أن تكون 8 أحرف على الأقل)";
"Scene.Register.Error.Special.PasswordTooShort" = "رمز السر قصير جدًا (يجب أن يتكون من ثمان خانات على الأقل)";
"Scene.Register.Error.Special.UsernameInvalid" = "يُمكِن أن يحتوي اسم المستخدم على أحرف أبجدية، أرقام وشرطات سفلية فقط";
"Scene.Register.Error.Special.UsernameTooLong" = "اسم المستخدم طويل جداً (يجب ألّا يكون أطول من 30 رمز)";
"Scene.Register.Input.Avatar.Delete" = "احذف";
"Scene.Register.Input.DisplayName.Placeholder" = "الاسم المعروض";
"Scene.Register.Input.Email.Placeholder" = "البريد الإلكتروني";
"Scene.Register.Error.Special.UsernameTooLong" = "اِسم المُستَخدِم طويل جداً (يَجِبُ ألّا يكون أطول من ثلاثين خانة)";
"Scene.Register.Input.Avatar.Delete" = "حذف";
"Scene.Register.Input.DisplayName.Placeholder" = "اِسم العَرض";
"Scene.Register.Input.Email.Placeholder" = "بريد إلكتروني";
"Scene.Register.Input.Invite.RegistrationUserInviteRequest" = "لماذا ترغب في الانضمام؟";
"Scene.Register.Input.Password.Hint" = "يجب أن تكون كلمتك السرية متكونة من ثمانية أحرف على الأقل";
"Scene.Register.Input.Password.Placeholder" = "الكلمة السرية";
"Scene.Register.Input.Username.DuplicatePrompt" = "اسم المستخدم هذا غير متوفر.";
"Scene.Register.Input.Username.Placeholder" = "اسم المستخدم";
"Scene.Register.Title" = "أخبرنا عنك.";
"Scene.Report.Content1" = "هل ترغب في إضافة أي مشاركات أُخرى إلى الشكوى؟";
"Scene.Report.Content2" = "هل هناك أي شيء يجب أن يعرفه المُراقبين حول هذه الشكوى؟";
"Scene.Report.Send" = "إرسال الشكوى";
"Scene.Register.Input.Password.Accessibility.Checked" = "مُتَحَققٌ مِنه";
"Scene.Register.Input.Password.Accessibility.Unchecked" = "غيرُ مُتَحَققٍ مِنه";
"Scene.Register.Input.Password.CharacterLimit" = "ثمانيةُ خانات";
"Scene.Register.Input.Password.Hint" = "يجب أن يكون رمزك السري مكوَّن من ثمان خانات على الأقل";
"Scene.Register.Input.Password.Placeholder" = "رمز سري";
"Scene.Register.Input.Password.Require" = "رمز المرور الخاص بك يجب أن يحتوي على الأقل:";
"Scene.Register.Input.Username.DuplicatePrompt" = "اِسم المُستَخدِم هذا مأخوذٌ بالفعل.";
"Scene.Register.Input.Username.Placeholder" = "اِسم مُستَخدِم";
"Scene.Register.Title" = "أخبرنا عن نفسك.";
"Scene.Report.Content1" = "هل ترغب في إضافة أي منشورات أُخرى إلى البلاغ؟";
"Scene.Report.Content2" = "هل هناك أي شيء يجب أن يعرفه المُراقبين حول هذا البلاغ؟";
"Scene.Report.ReportSentTitle" = "شُكرًا لَكَ على الإبلاغ، سَوفَ نَنظُرُ فِي هَذَا الأمر.";
"Scene.Report.Reported" = "مُبْلَغٌ عَنه";
"Scene.Report.Send" = "إرسال البلاغ";
"Scene.Report.SkipToSend" = "إرسال بدون تعليق";
"Scene.Report.Step1" = "الخطوة 1 من 2";
"Scene.Report.Step2" = "الخطوة 2 من 2";
"Scene.Report.Step1" = "الخطوة الأولى مِن أصل اثنتين";
"Scene.Report.Step2" = "الخطوة الثانية والأخيرة";
"Scene.Report.TextPlaceholder" = "اكتب أو الصق تعليقات إضافيَّة";
"Scene.Report.Title" = "ابلغ عن %@";
"Scene.Search.Recommend.Accounts.Description" = "قد ترغب في متابعة هذه الحسابات";
"Scene.Search.Recommend.Accounts.Follow" = "تابع";
"Scene.Search.Recommend.Accounts.Title" = "حسابات قد تعجبك";
"Scene.Search.Recommend.ButtonText" = "طالع الكل";
"Scene.Search.Recommend.HashTag.Description" = "الوسوم التي تحظى بقدر كبير من الاهتمام";
"Scene.Report.Title" = "الإبلاغ عن %@";
"Scene.Report.TitleReport" = "إبلاغ";
"Scene.Search.Recommend.Accounts.Description" = "قَد تَرغَب في مُتابَعَةِ هَذِهِ الحِسابات";
"Scene.Search.Recommend.Accounts.Follow" = "مُتابَعَة";
"Scene.Search.Recommend.Accounts.Title" = "حِساباتٍ قَد تُعجِبُك";
"Scene.Search.Recommend.ButtonText" = "إظهار الكُل";
"Scene.Search.Recommend.HashTag.Description" = "الوُسُومُ الَّتي تَحظى بقدرٍ كبيرٍ مِنَ الاِهتمام";
"Scene.Search.Recommend.HashTag.PeopleTalking" = "%@ أشخاص يتحدَّثوا";
"Scene.Search.Recommend.HashTag.Title" = "ذات شعبية على ماستدون";
"Scene.Search.Recommend.HashTag.Title" = "ذُو شعبيَّة على ماستودون";
"Scene.Search.SearchBar.Cancel" = "إلغاء";
"Scene.Search.SearchBar.Placeholder" = "البحث عن وسوم أو مستخدمين·ات";
"Scene.Search.SearchBar.Placeholder" = "البحث عن وسوم أو مستخدمين";
"Scene.Search.Searching.Clear" = "مَحو";
"Scene.Search.Searching.EmptyState.NoResults" = "ليس هناك أية نتيجة";
"Scene.Search.Searching.RecentSearch" = "عمليات البحث الأخيرة";
"Scene.Search.Searching.Segment.All" = "الكل";
"Scene.Search.Searching.Segment.Hashtags" = "الوسوم";
"Scene.Search.Searching.EmptyState.NoResults" = "لا تُوجَدُ نتائِج";
"Scene.Search.Searching.RecentSearch" = "عَمَليَّاُت البَحثِ الأخيرَة";
"Scene.Search.Searching.Segment.All" = "الكُل";
"Scene.Search.Searching.Segment.Hashtags" = "الوُسُوم";
"Scene.Search.Searching.Segment.People" = "الأشخاص";
"Scene.Search.Searching.Segment.Posts" = "المنشورات";
"Scene.Search.Title" = "بحث";
"Scene.Search.Searching.Segment.Posts" = "المَنشورات";
"Scene.Search.Title" = "البحث";
"Scene.ServerPicker.Button.Category.Academia" = "أكاديمي";
"Scene.ServerPicker.Button.Category.Activism" = "للنشطاء";
"Scene.ServerPicker.Button.Category.Activism" = "النشطاء";
"Scene.ServerPicker.Button.Category.All" = "الكل";
"Scene.ServerPicker.Button.Category.AllAccessiblityDescription" = "الفئة: الكل";
"Scene.ServerPicker.Button.Category.Art" = "فن";
"Scene.ServerPicker.Button.Category.Art" = "فنون";
"Scene.ServerPicker.Button.Category.Food" = "الطعام";
"Scene.ServerPicker.Button.Category.Furry" = "فروي";
"Scene.ServerPicker.Button.Category.Furry" = "مكسو بالفرو";
"Scene.ServerPicker.Button.Category.Games" = "ألعاب";
"Scene.ServerPicker.Button.Category.General" = "عام";
"Scene.ServerPicker.Button.Category.Journalism" = "صحافة";
"Scene.ServerPicker.Button.Category.Lgbt" = "مجتمع الشواذ";
"Scene.ServerPicker.Button.Category.Music" = "موسيقى";
"Scene.ServerPicker.Button.Category.Regional" = "اقليمي";
"Scene.ServerPicker.Button.Category.Tech" = "تكنولوجيا";
"Scene.ServerPicker.Button.SeeLess" = "اعرض أقل";
"Scene.ServerPicker.Button.SeeMore" = "اعرض المزيد";
"Scene.ServerPicker.Button.Category.Regional" = "إقليمي";
"Scene.ServerPicker.Button.Category.Tech" = "تقنية";
"Scene.ServerPicker.Button.SeeLess" = "عرض عناصر أقل";
"Scene.ServerPicker.Button.SeeMore" = "عرض عناصر أكثر";
"Scene.ServerPicker.EmptyState.BadNetwork" = "حدث خطأٌ ما أثناء تحميل البيانات. تحقَّق من اتصالك بالإنترنت.";
"Scene.ServerPicker.EmptyState.FindingServers" = "البحث عن خوادم متوفرة...";
"Scene.ServerPicker.EmptyState.FindingServers" = "يجري إيجاد خوادم متوفِّرَة...";
"Scene.ServerPicker.EmptyState.NoResults" = "لا توجد نتائج";
"Scene.ServerPicker.Input.Placeholder" = "ابحث عن خادم أو انضم إلى سيرفر خاص بك...";
"Scene.ServerPicker.Input.Placeholder" = "اِبحَث عن خادِم أو انضم إلى آخر خاص بك...";
"Scene.ServerPicker.Label.Category" = "الفئة";
"Scene.ServerPicker.Label.Language" = "اللغة";
"Scene.ServerPicker.Label.Users" = "مستخدمون·ات";
"Scene.ServerPicker.Label.Language" = "اللُّغة";
"Scene.ServerPicker.Label.Users" = "مُستَخدِم";
"Scene.ServerPicker.Subtitle" = "اختر مجتمعًا بناءً على اهتماماتك، منطقتك أو يمكنك حتى اختيارُ مجتمعٍ ذي غرضٍ عام.";
"Scene.ServerPicker.SubtitleExtend" = "اختر مجتمعًا بناءً على اهتماماتك، منطقتك أو يمكنك حتى اختيارُ مجتمعٍ ذي غرضٍ عام. تُشغَّل جميعُ المجتمعِ مِن قِبَلِ مُنظمَةٍ أو فردٍ مُستقلٍ تمامًا.";
"Scene.ServerPicker.Title" = "اِختر خادِم،
أي خادِم.";
"Scene.ServerRules.Button.Confirm" = "انا أوافق";
"Scene.ServerRules.PrivacyPolicy" = "سياسة الخصوصية";
"Scene.ServerRules.Prompt" = "إن اخترت المواصلة، فإنك تخضع لشروط الخدمة وسياسة الخصوصية لـ %@.";
"Scene.ServerRules.Subtitle" = "تم سنّ هذه القواعد من قبل مشرفي %@.";
"Scene.ServerRules.TermsOfService" = "شروط الخدمة";
أيًّا مِنهُم.";
"Scene.ServerRules.Button.Confirm" = "أنا مُوافِق";
"Scene.ServerRules.PrivacyPolicy" = "سِياسَة الخُصُوصيَّة";
"Scene.ServerRules.Prompt" = "في حال إختيارك للمواصلة، أنت تخضع لشروط الخدمة وسياسة الخصوصية لِـ%@.";
"Scene.ServerRules.Subtitle" = "سُنَّت هذه القواعد من قِبل مشرفي %@.";
"Scene.ServerRules.TermsOfService" = "شُرُوط الخِدمَة";
"Scene.ServerRules.Title" = "بعض القواعد الأساسية.";
"Scene.Settings.Footer.MastodonDescription" = "ماستدون برنامج مفتوح المصدر. يمكنك المساهمة، أو الإبلاغ عن تقارير الأخطاء على GitHub في %@ (%@)";
"Scene.Settings.Footer.MastodonDescription" = "ماستودون بَرنامجٌ مَفتُوحُ المَصدَر. يُمكِنُكَ المُساهَمَةُ، أوِ الإبلاغُ عَنِ المُشكِلات عَن طريق مِنصَّة جيت هاب (GitHub) في %@ (%@)";
"Scene.Settings.Keyboard.CloseSettingsWindow" = "إغلاق نافذة الإعدادات";
"Scene.Settings.Section.Appearance.Automatic" = "تلقائي";
"Scene.Settings.Section.Appearance.Dark" = "مظلمٌ دائِمًا";
"Scene.Settings.Section.Appearance.Light" = "مضيءٌ دائمًا";
"Scene.Settings.Section.Appearance.Title" = "المظهر";
"Scene.Settings.Section.BoringZone.AccountSettings" = "إعدادات الحساب";
"Scene.Settings.Section.BoringZone.Privacy" = "سياسة الخصوصية";
"Scene.Settings.Section.BoringZone.Terms" = "شروط الخدمة";
"Scene.Settings.Section.BoringZone.Title" = "المنطقة المملة";
"Scene.Settings.Section.Notifications.Boosts" = "إعادة تدوين منشوراتي";
"Scene.Settings.Section.Notifications.Favorites" = "الإعجاب بِمنشوراتي";
"Scene.Settings.Section.Notifications.Follows" = "يتابعني";
"Scene.Settings.Section.Notifications.Mentions" = "الإشارة لي";
"Scene.Settings.Section.Appearance.Title" = "المَظهر";
"Scene.Settings.Section.BoringZone.AccountSettings" = "إعداداتُ الحِساب";
"Scene.Settings.Section.BoringZone.Privacy" = "سِياسَةُ الخُصوصيَّة";
"Scene.Settings.Section.BoringZone.Terms" = "شُرُوطُ الخِدمَة";
"Scene.Settings.Section.BoringZone.Title" = "المنطِقَةُ المُملَّة";
"Scene.Settings.Section.LookAndFeel.Light" = "مُضيء";
"Scene.Settings.Section.LookAndFeel.ReallyDark" = "مُظلمٌ حَقًّا";
"Scene.Settings.Section.LookAndFeel.SortaDark" = "مُظلمٌ نوعًا ما";
"Scene.Settings.Section.LookAndFeel.Title" = "المَظهَرُ وَالشُّعُور";
"Scene.Settings.Section.LookAndFeel.UseSystem" = "استخدم النِظام";
"Scene.Settings.Section.Notifications.Boosts" = "بِإعادَةِ تدوينِ مَنشوري";
"Scene.Settings.Section.Notifications.Favorites" = "بِالإعْجاب بِمَنشوري";
"Scene.Settings.Section.Notifications.Follows" = "بِمُتابَعَتي";
"Scene.Settings.Section.Notifications.Mentions" = "بِالإشارَةِ إليّ";
"Scene.Settings.Section.Notifications.Title" = "الإشعارات";
"Scene.Settings.Section.Notifications.Trigger.Anyone" = "أي شخص";
"Scene.Settings.Section.Notifications.Trigger.Anyone" = "أيُّ شخصٍ";
"Scene.Settings.Section.Notifications.Trigger.Follow" = "أي شخص أُتابِعُه";
"Scene.Settings.Section.Notifications.Trigger.Follower" = "مشترِك";
"Scene.Settings.Section.Notifications.Trigger.Noone" = "لا أحد";
"Scene.Settings.Section.Notifications.Trigger.Title" = "إشعاري عِندَ";
"Scene.Settings.Section.Preference.DisableAvatarAnimation" = "تعطيل الصور الرمزية المتحرِّكة";
"Scene.Settings.Section.Preference.DisableEmojiAnimation" = "تعطيل الرموز التعبيرية المتحرِّكَة";
"Scene.Settings.Section.Preference.Title" = "التفضيلات";
"Scene.Settings.Section.Preference.TrueBlackDarkMode" = "النمط الأسود الداكِن الحقيقي";
"Scene.Settings.Section.Preference.UsingDefaultBrowser" = "اِستخدام المتصفح الافتراضي لفتح الروابط";
"Scene.Settings.Section.SpicyZone.Clear" = "مسح ذاكرة التخزين المؤقت للوسائط";
"Scene.Settings.Section.SpicyZone.Signout" = "تسجيل الخروج";
"Scene.Settings.Section.SpicyZone.Title" = "المنطقة الحارة";
"Scene.Settings.Section.Notifications.Trigger.Follower" = "مُتابِعٌ";
"Scene.Settings.Section.Notifications.Trigger.Noone" = "لَا أحد";
"Scene.Settings.Section.Notifications.Trigger.Title" = "أشعِرني عِندما يَقومُ";
"Scene.Settings.Section.Preference.DisableAvatarAnimation" = "تَعطيلُ الصوَرِ الرمزيَّةِ المُتحرِّكَة";
"Scene.Settings.Section.Preference.DisableEmojiAnimation" = "تَعطيلُ الرُموزِ التَّعبيريَّةِ المُتحرِّكَة";
"Scene.Settings.Section.Preference.Title" = "التَّفضيلات";
"Scene.Settings.Section.Preference.TrueBlackDarkMode" = "النَّمَطُ الأسوَدُ الداكِنُ الحَقيقي";
"Scene.Settings.Section.Preference.UsingDefaultBrowser" = "اِستِخدامُ المُتصفِّحِ الاِفتراضي لِفتحِ الرَّوابِط";
"Scene.Settings.Section.SpicyZone.Clear" = "مَحوُ ذاكِرَةُ التَّخزينِ المُؤقت لِلوسائِط";
"Scene.Settings.Section.SpicyZone.Signout" = "تَسجيلُ الخُروج";
"Scene.Settings.Section.SpicyZone.Title" = "المنطِقَةُ اللَّاذِعَة";
"Scene.Settings.Title" = "الإعدادات";
"Scene.SuggestionAccount.FollowExplain" = "عِندَ مُتابَعَتِكَ لأحدِهِم، سَوف تَرى مَنشوراته في تغذيَتِكَ الرئيسة.";
"Scene.SuggestionAccount.Title" = "ابحث عن أشخاص لمتابعتهم";
"Scene.Thread.BackTitle" = "منشور";
"Scene.Thread.Title" = "مَنشور مِن %@";
"Scene.Welcome.GetStarted" = "ابدأ الآن";
"Scene.Welcome.LogIn" = "تسجيلُ الدخول";
"Scene.Welcome.Slogan" = "شبكات التواصل الاجتماعي
مرة أُخرى بين يديك.";
"Scene.Wizard.AccessibilityHint" = "انقر نقرًا مزدوجًا لتجاهل النافذة المنبثقة";
"Scene.Wizard.AccessibilityHint" = "انقر نقرًا مزدوجًا لتجاهُل النافذة المنبثقة";
"Scene.Wizard.MultipleAccountSwitchIntroDescription" = "بدِّل بين حسابات متعددة عبر الاستمرار بالضغط على زر الملف الشخصي.";
"Scene.Wizard.NewInMastodon" = "جديد في ماستودون";

View File

@ -4,7 +4,7 @@
"Common.Alerts.CleanCache.Title" = "Neteja la memòria cau";
"Common.Alerts.Common.PleaseTryAgain" = "Si us plau intenta-ho de nou.";
"Common.Alerts.Common.PleaseTryAgainLater" = "Si us plau, prova-ho més tard.";
"Common.Alerts.DeletePost.Delete" = "Esborra";
"Common.Alerts.DeletePost.Message" = "Estàs segur que vols suprimir aquesta publicació?";
"Common.Alerts.DeletePost.Title" = "Estàs segur que vols suprimir aquesta publicació?";
"Common.Alerts.DiscardPostContent.Message" = "Confirma per a descartar el contingut de la publicació composta.";
"Common.Alerts.DiscardPostContent.Title" = "Descarta l'esborrany";
@ -41,6 +41,7 @@ Comprova la teva connexió a Internet.";
"Common.Controls.Actions.Next" = "Següent";
"Common.Controls.Actions.Ok" = "D'acord";
"Common.Controls.Actions.Open" = "Obre";
"Common.Controls.Actions.OpenInBrowser" = "Obre al navegador";
"Common.Controls.Actions.OpenInSafari" = "Obrir a Safari";
"Common.Controls.Actions.Preview" = "Vista prèvia";
"Common.Controls.Actions.Previous" = "Anterior";
@ -93,6 +94,7 @@ Comprova la teva connexió a Internet.";
"Common.Controls.Keyboard.Timeline.ToggleFavorite" = "Commuta el Favorit de la publicació";
"Common.Controls.Keyboard.Timeline.ToggleReblog" = "Commuta l'impuls de la publicació";
"Common.Controls.Status.Actions.Favorite" = "Favorit";
"Common.Controls.Status.Actions.Hide" = "Amaga";
"Common.Controls.Status.Actions.Menu" = "Menú";
"Common.Controls.Status.Actions.Reblog" = "Impuls";
"Common.Controls.Status.Actions.Reply" = "Respon";
@ -112,6 +114,10 @@ Comprova la teva connexió a Internet.";
"Common.Controls.Status.Tag.Url" = "URL";
"Common.Controls.Status.UserReblogged" = "%@ ha impulsat";
"Common.Controls.Status.UserRepliedTo" = "Ha respòs a %@";
"Common.Controls.Status.Visibility.Direct" = "Només l'usuari mencionat pot veure aquesta publicació.";
"Common.Controls.Status.Visibility.Private" = "Només els seus seguidors poden veure aquesta publicació.";
"Common.Controls.Status.Visibility.PrivateFromMe" = "Només els meus seguidors poden veure aquesta publicació.";
"Common.Controls.Status.Visibility.Unlisted" = "Tothom pot veure aquesta publicació però no es mostra en la línia de temps pública.";
"Common.Controls.Tabs.Home" = "Inici";
"Common.Controls.Tabs.Notification" = "Notificació";
"Common.Controls.Tabs.Profile" = "Perfil";
@ -178,8 +184,8 @@ carregat a Mastodon.";
"Scene.Compose.Visibility.Private" = "Només seguidors";
"Scene.Compose.Visibility.Public" = "Públic";
"Scene.Compose.Visibility.Unlisted" = "No llistat";
"Scene.ConfirmEmail.Button.DontReceiveEmail" = "No he rebut cap correu electrònic";
"Scene.ConfirmEmail.Button.OpenEmailApp" = "Obre l'aplicació de correu";
"Scene.ConfirmEmail.Button.Resend" = "Reenvia";
"Scene.ConfirmEmail.DontReceiveEmail.Description" = "Comprova que la teva adreça de correu electrònic és correcte i revisa la carpeta de correu brossa si encara no ho has fet.";
"Scene.ConfirmEmail.DontReceiveEmail.ResendEmail" = "Torna a enviar el correu";
"Scene.ConfirmEmail.DontReceiveEmail.Title" = "Comprova el teu correu";
@ -200,14 +206,14 @@ toca l'enllaç per a confirmar el teu compte.";
"Scene.HomeTimeline.Title" = "Inici";
"Scene.Notification.Keyobard.ShowEverything" = "Mostrar-ho tot";
"Scene.Notification.Keyobard.ShowMentions" = "Mostrar Mencions";
"Scene.Notification.NotificationDescription.FavoritedYourPost" = "ha afavorit la teva publicació";
"Scene.Notification.NotificationDescription.FollowedYou" = "et segueix";
"Scene.Notification.NotificationDescription.MentionedYou" = "t'ha mencionat";
"Scene.Notification.NotificationDescription.PollHasEnded" = "la enquesta ha finalitzat";
"Scene.Notification.NotificationDescription.RebloggedYourPost" = "ha impulsat la teva publicació";
"Scene.Notification.NotificationDescription.RequestToFollowYou" = "ha sol·licitat seguir-te";
"Scene.Notification.Title.Everything" = "Tot";
"Scene.Notification.Title.Mentions" = "Mencions";
"Scene.Notification.UserFavorited Your Post" = "%@ ha afavorit el teu estat";
"Scene.Notification.UserFollowedYou" = "%@ et segueix";
"Scene.Notification.UserMentionedYou" = "%@ t'ha esmentat";
"Scene.Notification.UserRebloggedYourPost" = "%@ ha impulsat el teu estat";
"Scene.Notification.UserRequestedToFollowYou" = "%@ ha sol·licitat seguir-te";
"Scene.Notification.UserYourPollHasEnded" = "%@ L'enquesta ha finalitzat";
"Scene.Preview.Keyboard.ClosePreview" = "Tanca la Vista Prèvia";
"Scene.Preview.Keyboard.ShowNext" = "Mostrar Següent";
"Scene.Preview.Keyboard.ShowPrevious" = "Mostrar Anterior";
@ -217,12 +223,18 @@ toca l'enllaç per a confirmar el teu compte.";
"Scene.Profile.Fields.AddRow" = "Afegeix fila";
"Scene.Profile.Fields.Placeholder.Content" = "Contingut";
"Scene.Profile.Fields.Placeholder.Label" = "Etiqueta";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUsre.Message" = "Confirma desbloquejar a %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUsre.Title" = "Desbloquejar Compte";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Confirma per a bloquejar %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Bloqueja el Compte";
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Message" = "Confirma per a silenciar %@";
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Silencia el Compte";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Confirma per a desbloquejar %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Desbloqueja el Compte";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Confirma deixar de silenciar a %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Title" = "Desfer silenciar compte";
"Scene.Profile.SegmentedControl.About" = "Quant a";
"Scene.Profile.SegmentedControl.Media" = "Mèdia";
"Scene.Profile.SegmentedControl.Posts" = "Publicacions";
"Scene.Profile.SegmentedControl.PostsAndReplies" = "Publicacions i Respostes";
"Scene.Profile.SegmentedControl.Replies" = "Respostes";
"Scene.Register.Error.Item.Agreement" = "Acord";
"Scene.Register.Error.Item.Email" = "Correu electrònic";
@ -248,19 +260,26 @@ toca l'enllaç per a confirmar el teu compte.";
"Scene.Register.Input.DisplayName.Placeholder" = "nom visible";
"Scene.Register.Input.Email.Placeholder" = "correu electrònic";
"Scene.Register.Input.Invite.RegistrationUserInviteRequest" = "Perquè vols unir-te?";
"Scene.Register.Input.Password.Accessibility.Checked" = "verificat";
"Scene.Register.Input.Password.Accessibility.Unchecked" = "no verificat";
"Scene.Register.Input.Password.CharacterLimit" = "8 caràcters";
"Scene.Register.Input.Password.Hint" = "La teva contrasenya ha de tenir com a mínim buit caràcters";
"Scene.Register.Input.Password.Placeholder" = "contrasenya";
"Scene.Register.Input.Password.Require" = "La teva contrasenya com a mínim necessita:";
"Scene.Register.Input.Username.DuplicatePrompt" = "Aquest nom d'usuari ja està en ús.";
"Scene.Register.Input.Username.Placeholder" = "nom d'usuari";
"Scene.Register.Title" = "Parla'ns de tu.";
"Scene.Report.Content1" = "Hi ha alguna altre publicació que vulguis afegir a l'informe?";
"Scene.Report.Content2" = "Hi ha alguna cosa que els moderadors hagin de saber sobre aquest informe?";
"Scene.Report.ReportSentTitle" = "Gràcies per informar, ho investigarem.";
"Scene.Report.Reported" = "REPORTAT";
"Scene.Report.Send" = "Envia Informe";
"Scene.Report.SkipToSend" = "Envia sense comentaris";
"Scene.Report.Step1" = "Pas 1 de 2";
"Scene.Report.Step2" = "Pas 2 de 2";
"Scene.Report.TextPlaceholder" = "Escriu o enganxa comentaris addicionals";
"Scene.Report.Title" = "Informa sobre %@";
"Scene.Report.TitleReport" = "Informe";
"Scene.Search.Recommend.Accounts.Description" = "Potser t'agradaria seguir aquests comptes";
"Scene.Search.Recommend.Accounts.Follow" = "Segueix";
"Scene.Search.Recommend.Accounts.Title" = "Comptes que et podrien agradar";
@ -301,6 +320,8 @@ toca l'enllaç per a confirmar el teu compte.";
"Scene.ServerPicker.Label.Category" = "CATEGORIA";
"Scene.ServerPicker.Label.Language" = "LLENGUATGE";
"Scene.ServerPicker.Label.Users" = "USUARIS";
"Scene.ServerPicker.Subtitle" = "Tria una comunitat segons els teus interessos, regió o una de propòsit general.";
"Scene.ServerPicker.SubtitleExtend" = "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.";
"Scene.ServerPicker.Title" = "Tria un servidor,
qualsevol servidor.";
"Scene.ServerRules.Button.Confirm" = "Hi estic d'acord";
@ -319,6 +340,11 @@ qualsevol servidor.";
"Scene.Settings.Section.BoringZone.Privacy" = "Política de Privacitat";
"Scene.Settings.Section.BoringZone.Terms" = "Termes de Servei";
"Scene.Settings.Section.BoringZone.Title" = "La Zona Avorrida";
"Scene.Settings.Section.LookAndFeel.Light" = "Clar";
"Scene.Settings.Section.LookAndFeel.ReallyDark" = "Realment Negre";
"Scene.Settings.Section.LookAndFeel.SortaDark" = "Una Mena de Fosc";
"Scene.Settings.Section.LookAndFeel.Title" = "Aspecte i Comportament";
"Scene.Settings.Section.LookAndFeel.UseSystem" = "Usa el del Sistema";
"Scene.Settings.Section.Notifications.Boosts" = "Ha impulsat el meu estat";
"Scene.Settings.Section.Notifications.Favorites" = "Ha afavorit el meu estat";
"Scene.Settings.Section.Notifications.Follows" = "Em segueix";
@ -342,6 +368,8 @@ qualsevol servidor.";
"Scene.SuggestionAccount.Title" = "Cerca Persones per Seguir";
"Scene.Thread.BackTitle" = "Publicació";
"Scene.Thread.Title" = "Publicació de %@";
"Scene.Welcome.GetStarted" = "Comença";
"Scene.Welcome.LogIn" = "Inicia sessió";
"Scene.Welcome.Slogan" = "Xarxa social
de nou a les teves mans.";
"Scene.Wizard.AccessibilityHint" = "Toca dues vegades per descartar l'assistent";

View File

@ -4,7 +4,7 @@
"Common.Alerts.CleanCache.Title" = "Zwischenspeicher leeren";
"Common.Alerts.Common.PleaseTryAgain" = "Bitte versuche es erneut.";
"Common.Alerts.Common.PleaseTryAgainLater" = "Bitte versuche es später nochmal.";
"Common.Alerts.DeletePost.Delete" = "Löschen";
"Common.Alerts.DeletePost.Message" = "Are you sure you want to delete this post?";
"Common.Alerts.DeletePost.Title" = "Bist du dir sicher, dass du diesen Beitrag löschen möchtest?";
"Common.Alerts.DiscardPostContent.Message" = "Bestätige, um den Beitrag zu verwerfen.";
"Common.Alerts.DiscardPostContent.Title" = "Entwurf verwerfen";
@ -28,7 +28,7 @@ Bitte überprüfe deine Internetverbindung.";
"Common.Controls.Actions.Back" = "Zurück";
"Common.Controls.Actions.BlockDomain" = "%@ blockieren";
"Common.Controls.Actions.Cancel" = "Abbrechen";
"Common.Controls.Actions.Compose" = "Compose";
"Common.Controls.Actions.Compose" = "Neue Nachricht";
"Common.Controls.Actions.Confirm" = "Bestätigen";
"Common.Controls.Actions.Continue" = "Fortfahren";
"Common.Controls.Actions.CopyPhoto" = "Foto kopieren";
@ -41,6 +41,7 @@ Bitte überprüfe deine Internetverbindung.";
"Common.Controls.Actions.Next" = "Weiter";
"Common.Controls.Actions.Ok" = "OK";
"Common.Controls.Actions.Open" = "Öffnen";
"Common.Controls.Actions.OpenInBrowser" = "Im Browser anzeigen";
"Common.Controls.Actions.OpenInSafari" = "In Safari öffnen";
"Common.Controls.Actions.Preview" = "Vorschau";
"Common.Controls.Actions.Previous" = "Vorheriges";
@ -93,6 +94,7 @@ Bitte überprüfe deine Internetverbindung.";
"Common.Controls.Keyboard.Timeline.ToggleFavorite" = "Favorit vom Beitrag umschalten";
"Common.Controls.Keyboard.Timeline.ToggleReblog" = "Teilen vom Beitrag umschalten";
"Common.Controls.Status.Actions.Favorite" = "Favorit";
"Common.Controls.Status.Actions.Hide" = "Hide";
"Common.Controls.Status.Actions.Menu" = "Menü";
"Common.Controls.Status.Actions.Reblog" = "Teilen";
"Common.Controls.Status.Actions.Reply" = "Antworten";
@ -112,6 +114,10 @@ Bitte überprüfe deine Internetverbindung.";
"Common.Controls.Status.Tag.Url" = "URL";
"Common.Controls.Status.UserReblogged" = "%@ teilte";
"Common.Controls.Status.UserRepliedTo" = "Antwortet auf %@";
"Common.Controls.Status.Visibility.Direct" = "Only mentioned user can see this post.";
"Common.Controls.Status.Visibility.Private" = "Only their followers can see this post.";
"Common.Controls.Status.Visibility.PrivateFromMe" = "Only my followers can see this post.";
"Common.Controls.Status.Visibility.Unlisted" = "Everyone can see this post but not display in the public timeline.";
"Common.Controls.Tabs.Home" = "Startseite";
"Common.Controls.Tabs.Notification" = "Benachrichtigungen";
"Common.Controls.Tabs.Profile" = "Profil";
@ -135,7 +141,7 @@ Dein Profil sieht für diesen Benutzer auch so aus.";
"Common.Controls.Timeline.Loader.ShowMoreReplies" = "Weitere Antworten anzeigen";
"Common.Controls.Timeline.Timestamp.Now" = "Gerade";
"Scene.AccountList.AddAccount" = "Konto hinzufügen";
"Scene.AccountList.DismissAccountSwitcher" = "Dismiss Account Switcher";
"Scene.AccountList.DismissAccountSwitcher" = "Dialog zum Wechseln des Kontos schließen";
"Scene.AccountList.TabBarHint" = "Aktuell ausgewähltes Profil: %@. Doppeltippen dann gedrückt halten, um den Kontoschalter anzuzeigen";
"Scene.Compose.Accessibility.AppendAttachment" = "Anhang hinzufügen";
"Scene.Compose.Accessibility.AppendPoll" = "Umfrage hinzufügen";
@ -178,8 +184,8 @@ kann nicht auf Mastodon hochgeladen werden.";
"Scene.Compose.Visibility.Private" = "Nur für Folgende";
"Scene.Compose.Visibility.Public" = "Öffentlich";
"Scene.Compose.Visibility.Unlisted" = "Nicht gelistet";
"Scene.ConfirmEmail.Button.DontReceiveEmail" = "Ich habe keine E-Mail erhalten.";
"Scene.ConfirmEmail.Button.OpenEmailApp" = "E-Mail-App öffnen";
"Scene.ConfirmEmail.Button.Resend" = "Erneut senden";
"Scene.ConfirmEmail.DontReceiveEmail.Description" = "Überprüfe, ob deine E-Mail-Adresse korrekt ist und sieh im Spam-Ordner nach, falls du es noch nicht getan hast.";
"Scene.ConfirmEmail.DontReceiveEmail.ResendEmail" = "E-Mail erneut versenden";
"Scene.ConfirmEmail.DontReceiveEmail.Title" = "Bitte überprüfe deine E-Mails";
@ -191,8 +197,8 @@ kann nicht auf Mastodon hochgeladen werden.";
tippe darin auf den Link, um Dein Konto zu bestätigen.";
"Scene.ConfirmEmail.Title" = "Noch eine letzte Sache.";
"Scene.Favorite.Title" = "Deine Favoriten";
"Scene.Follower.Footer" = "Followers from other servers are not displayed.";
"Scene.Following.Footer" = "Follows from other servers are not displayed.";
"Scene.Follower.Footer" = "Follower von anderen Servern werden nicht angezeigt.";
"Scene.Following.Footer" = "Wem das Konto folgt wird von anderen Servern werden nicht angezeigt.";
"Scene.HomeTimeline.NavigationBarState.NewPosts" = "Neue Beiträge anzeigen";
"Scene.HomeTimeline.NavigationBarState.Offline" = "Offline";
"Scene.HomeTimeline.NavigationBarState.Published" = "Veröffentlicht!";
@ -200,14 +206,14 @@ tippe darin auf den Link, um Dein Konto zu bestätigen.";
"Scene.HomeTimeline.Title" = "Startseite";
"Scene.Notification.Keyobard.ShowEverything" = "Alles anzeigen";
"Scene.Notification.Keyobard.ShowMentions" = "Erwähnungen anzeigen";
"Scene.Notification.NotificationDescription.FavoritedYourPost" = "favorited your post";
"Scene.Notification.NotificationDescription.FollowedYou" = "followed you";
"Scene.Notification.NotificationDescription.MentionedYou" = "mentioned you";
"Scene.Notification.NotificationDescription.PollHasEnded" = "poll has ended";
"Scene.Notification.NotificationDescription.RebloggedYourPost" = "reblogged your post";
"Scene.Notification.NotificationDescription.RequestToFollowYou" = "request to follow you";
"Scene.Notification.Title.Everything" = "Alles";
"Scene.Notification.Title.Mentions" = "Erwähnungen";
"Scene.Notification.UserFavorited Your Post" = "%@ favorisierte deinen Beitrag";
"Scene.Notification.UserFollowedYou" = "%@ folgte dir";
"Scene.Notification.UserMentionedYou" = "%@ erwähnte dich";
"Scene.Notification.UserRebloggedYourPost" = "%@ teilte deinen Beitrag";
"Scene.Notification.UserRequestedToFollowYou" = "%@ beantragte dir zu folgen";
"Scene.Notification.UserYourPollHasEnded" = "%@ deine Umfrage ist beendet";
"Scene.Preview.Keyboard.ClosePreview" = "Vorschau schließen";
"Scene.Preview.Keyboard.ShowNext" = "Nächstes anzeigen";
"Scene.Preview.Keyboard.ShowPrevious" = "Vorheriges anzeigen";
@ -217,12 +223,18 @@ tippe darin auf den Link, um Dein Konto zu bestätigen.";
"Scene.Profile.Fields.AddRow" = "Zeile hinzufügen";
"Scene.Profile.Fields.Placeholder.Content" = "Inhalt";
"Scene.Profile.Fields.Placeholder.Label" = "Bezeichnung";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUsre.Message" = "Bestätigen zum Entsperren von %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUsre.Title" = "Konto entsperren";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Confirm to block %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Block Account";
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Message" = "Confirm to mute %@";
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Mute Account";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Confirm to unblock %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Unblock Account";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Bestätige um %@ nicht mehr stummzuschalten";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Title" = "Ton einschalten";
"Scene.Profile.SegmentedControl.About" = "About";
"Scene.Profile.SegmentedControl.Media" = "Medien";
"Scene.Profile.SegmentedControl.Posts" = "Beiträge";
"Scene.Profile.SegmentedControl.PostsAndReplies" = "Posts and Replies";
"Scene.Profile.SegmentedControl.Replies" = "Antworten";
"Scene.Register.Error.Item.Agreement" = "Vereinbarung";
"Scene.Register.Error.Item.Email" = "E-Mail";
@ -248,19 +260,26 @@ tippe darin auf den Link, um Dein Konto zu bestätigen.";
"Scene.Register.Input.DisplayName.Placeholder" = "Anzeigename";
"Scene.Register.Input.Email.Placeholder" = "E-Mail";
"Scene.Register.Input.Invite.RegistrationUserInviteRequest" = "Warum möchtest du beitreten?";
"Scene.Register.Input.Password.Accessibility.Checked" = "Häkchen gesetzt";
"Scene.Register.Input.Password.Accessibility.Unchecked" = "Häkchen entfernt";
"Scene.Register.Input.Password.CharacterLimit" = "8 Zeichen";
"Scene.Register.Input.Password.Hint" = "Ihr Passwort muss mindestens 8 Zeichen lang sein";
"Scene.Register.Input.Password.Placeholder" = "Passwort";
"Scene.Register.Input.Password.Require" = "Anforderungen an dein Passwort:";
"Scene.Register.Input.Username.DuplicatePrompt" = "Dieser Benutzername ist vergeben.";
"Scene.Register.Input.Username.Placeholder" = "Benutzername";
"Scene.Register.Title" = "Erzähle uns von dir.";
"Scene.Report.Content1" = "Gibt es noch weitere Beiträge, die du der Meldung hinzufügen möchtest?";
"Scene.Report.Content2" = "Gibt es etwas, was die Moderatoren über diese Meldung wissen sollten?";
"Scene.Report.ReportSentTitle" = "Thanks for reporting, well look into this.";
"Scene.Report.Reported" = "REPORTED";
"Scene.Report.Send" = "Meldung abschicken";
"Scene.Report.SkipToSend" = "Ohne Kommentar abschicken";
"Scene.Report.Step1" = "Schritt 1 von 2";
"Scene.Report.Step2" = "Schritt 2 von 2";
"Scene.Report.TextPlaceholder" = "Zusätzliche Kommentare eingeben oder einfügen";
"Scene.Report.Title" = "%@ melden";
"Scene.Report.TitleReport" = "Report";
"Scene.Search.Recommend.Accounts.Description" = "Vielleicht gefallen dir diese Benutzer";
"Scene.Search.Recommend.Accounts.Follow" = "Folgen";
"Scene.Search.Recommend.Accounts.Title" = "Konten, die dir gefallen könnten";
@ -301,6 +320,8 @@ tippe darin auf den Link, um Dein Konto zu bestätigen.";
"Scene.ServerPicker.Label.Category" = "KATEGORIE";
"Scene.ServerPicker.Label.Language" = "SPRACHE";
"Scene.ServerPicker.Label.Users" = "BENUTZER";
"Scene.ServerPicker.Subtitle" = "Wähle eine Gemeinschaft, die auf deinen Interessen, Region oder einem allgemeinen Zweck basiert.";
"Scene.ServerPicker.SubtitleExtend" = "Wähle eine Gemeinschaft basierend auf deinen Interessen, deiner Region oder einem allgemeinen Zweck. Jede Gemeinschaft wird von einer völlig unabhängigen Organisation oder Einzelperson betrieben.";
"Scene.ServerPicker.Title" = "Wähle einen Server,
beliebigen Server.";
"Scene.ServerRules.Button.Confirm" = "Ich stimme zu";
@ -319,6 +340,11 @@ beliebigen Server.";
"Scene.Settings.Section.BoringZone.Privacy" = "Datenschutzerklärung";
"Scene.Settings.Section.BoringZone.Terms" = "Allgemeine Geschäftsbedingungen";
"Scene.Settings.Section.BoringZone.Title" = "Der Langweiliger Bereich";
"Scene.Settings.Section.LookAndFeel.Light" = "Light";
"Scene.Settings.Section.LookAndFeel.ReallyDark" = "Really Dark";
"Scene.Settings.Section.LookAndFeel.SortaDark" = "Sorta Dark";
"Scene.Settings.Section.LookAndFeel.Title" = "Look and Feel";
"Scene.Settings.Section.LookAndFeel.UseSystem" = "Use System";
"Scene.Settings.Section.Notifications.Boosts" = "Meinen Beitrag teilt";
"Scene.Settings.Section.Notifications.Favorites" = "Meinen Beitrag favorisiert";
"Scene.Settings.Section.Notifications.Follows" = "Mir folgt";
@ -342,6 +368,8 @@ beliebigen Server.";
"Scene.SuggestionAccount.Title" = "Finde Personen zum Folgen";
"Scene.Thread.BackTitle" = "Beitrag";
"Scene.Thread.Title" = "Beitrag von %@";
"Scene.Welcome.GetStarted" = "Erste Schritte";
"Scene.Welcome.LogIn" = "Anmelden";
"Scene.Welcome.Slogan" = "Soziale Netzwerke wieder in deinen Händen.";
"Scene.Wizard.AccessibilityHint" = "Doppeltippen, um diesen Assistenten zu schließen";
"Scene.Wizard.MultipleAccountSwitchIntroDescription" = "Wechsel zwischen mehreren Konten durch drücken der Profil-Schaltfläche.";

View File

@ -4,8 +4,8 @@
"Common.Alerts.CleanCache.Title" = "Clean Cache";
"Common.Alerts.Common.PleaseTryAgain" = "Please try again.";
"Common.Alerts.Common.PleaseTryAgainLater" = "Please try again later.";
"Common.Alerts.DeletePost.Delete" = "Delete";
"Common.Alerts.DeletePost.Title" = "Are you sure you want to delete this post?";
"Common.Alerts.DeletePost.Message" = "Are you sure you want to delete this post?";
"Common.Alerts.DeletePost.Title" = "Delete Post";
"Common.Alerts.DiscardPostContent.Message" = "Confirm to discard composed post content.";
"Common.Alerts.DiscardPostContent.Title" = "Discard Draft";
"Common.Alerts.EditProfileFailure.Message" = "Cannot edit profile. Please try again.";
@ -41,6 +41,7 @@ Please check your internet connection.";
"Common.Controls.Actions.Next" = "Next";
"Common.Controls.Actions.Ok" = "OK";
"Common.Controls.Actions.Open" = "Open";
"Common.Controls.Actions.OpenInBrowser" = "Open in Browser";
"Common.Controls.Actions.OpenInSafari" = "Open in Safari";
"Common.Controls.Actions.Preview" = "Preview";
"Common.Controls.Actions.Previous" = "Previous";
@ -93,6 +94,7 @@ Please check your internet connection.";
"Common.Controls.Keyboard.Timeline.ToggleFavorite" = "Toggle Favorite on Post";
"Common.Controls.Keyboard.Timeline.ToggleReblog" = "Toggle Reblog on Post";
"Common.Controls.Status.Actions.Favorite" = "Favorite";
"Common.Controls.Status.Actions.Hide" = "Hide";
"Common.Controls.Status.Actions.Menu" = "Menu";
"Common.Controls.Status.Actions.Reblog" = "Reblog";
"Common.Controls.Status.Actions.Reply" = "Reply";
@ -112,6 +114,10 @@ Please check your internet connection.";
"Common.Controls.Status.Tag.Url" = "URL";
"Common.Controls.Status.UserReblogged" = "%@ reblogged";
"Common.Controls.Status.UserRepliedTo" = "Replied to %@";
"Common.Controls.Status.Visibility.Direct" = "Only mentioned user can see this post.";
"Common.Controls.Status.Visibility.Private" = "Only their followers can see this post.";
"Common.Controls.Status.Visibility.PrivateFromMe" = "Only my followers can see this post.";
"Common.Controls.Status.Visibility.Unlisted" = "Everyone can see this post but not display in the public timeline.";
"Common.Controls.Tabs.Home" = "Home";
"Common.Controls.Tabs.Notification" = "Notification";
"Common.Controls.Tabs.Profile" = "Profile";
@ -178,8 +184,8 @@ uploaded to Mastodon.";
"Scene.Compose.Visibility.Private" = "Followers only";
"Scene.Compose.Visibility.Public" = "Public";
"Scene.Compose.Visibility.Unlisted" = "Unlisted";
"Scene.ConfirmEmail.Button.DontReceiveEmail" = "I never got an email";
"Scene.ConfirmEmail.Button.OpenEmailApp" = "Open Email App";
"Scene.ConfirmEmail.Button.Resend" = "Resend";
"Scene.ConfirmEmail.DontReceiveEmail.Description" = "Check if your email address is correct as well as your junk folder if you havent.";
"Scene.ConfirmEmail.DontReceiveEmail.ResendEmail" = "Resend Email";
"Scene.ConfirmEmail.DontReceiveEmail.Title" = "Check your email";
@ -187,8 +193,7 @@ uploaded to Mastodon.";
"Scene.ConfirmEmail.OpenEmailApp.Mail" = "Mail";
"Scene.ConfirmEmail.OpenEmailApp.OpenEmailClient" = "Open Email Client";
"Scene.ConfirmEmail.OpenEmailApp.Title" = "Check your inbox.";
"Scene.ConfirmEmail.Subtitle" = "We just sent an email to %@,
tap the link to confirm your account.";
"Scene.ConfirmEmail.Subtitle" = "Tap the link we emailed to you to verify your account.";
"Scene.ConfirmEmail.Title" = "One last thing.";
"Scene.Favorite.Title" = "Your Favorites";
"Scene.Follower.Footer" = "Followers from other servers are not displayed.";
@ -200,14 +205,14 @@ tap the link to confirm your account.";
"Scene.HomeTimeline.Title" = "Home";
"Scene.Notification.Keyobard.ShowEverything" = "Show Everything";
"Scene.Notification.Keyobard.ShowMentions" = "Show Mentions";
"Scene.Notification.NotificationDescription.FavoritedYourPost" = "favorited your post";
"Scene.Notification.NotificationDescription.FollowedYou" = "followed you";
"Scene.Notification.NotificationDescription.MentionedYou" = "mentioned you";
"Scene.Notification.NotificationDescription.PollHasEnded" = "poll has ended";
"Scene.Notification.NotificationDescription.RebloggedYourPost" = "reblogged your post";
"Scene.Notification.NotificationDescription.RequestToFollowYou" = "request to follow you";
"Scene.Notification.Title.Everything" = "Everything";
"Scene.Notification.Title.Mentions" = "Mentions";
"Scene.Notification.UserFavorited Your Post" = "%@ favorited your post";
"Scene.Notification.UserFollowedYou" = "%@ followed you";
"Scene.Notification.UserMentionedYou" = "%@ mentioned you";
"Scene.Notification.UserRebloggedYourPost" = "%@ reblogged your post";
"Scene.Notification.UserRequestedToFollowYou" = "%@ requested to follow you";
"Scene.Notification.UserYourPollHasEnded" = "%@ Your poll has ended";
"Scene.Preview.Keyboard.ClosePreview" = "Close Preview";
"Scene.Preview.Keyboard.ShowNext" = "Show Next";
"Scene.Preview.Keyboard.ShowPrevious" = "Show Previous";
@ -217,12 +222,18 @@ tap the link to confirm your account.";
"Scene.Profile.Fields.AddRow" = "Add Row";
"Scene.Profile.Fields.Placeholder.Content" = "Content";
"Scene.Profile.Fields.Placeholder.Label" = "Label";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUsre.Message" = "Confirm to unblock %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUsre.Title" = "Unblock Account";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Confirm to block %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Block Account";
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Message" = "Confirm to mute %@";
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Mute Account";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Confirm to unblock %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Unblock Account";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Confirm to unmute %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Title" = "Unmute Account";
"Scene.Profile.SegmentedControl.About" = "About";
"Scene.Profile.SegmentedControl.Media" = "Media";
"Scene.Profile.SegmentedControl.Posts" = "Posts";
"Scene.Profile.SegmentedControl.PostsAndReplies" = "Posts and Replies";
"Scene.Profile.SegmentedControl.Replies" = "Replies";
"Scene.Register.Error.Item.Agreement" = "Agreement";
"Scene.Register.Error.Item.Email" = "Email";
@ -248,19 +259,26 @@ tap the link to confirm your account.";
"Scene.Register.Input.DisplayName.Placeholder" = "display name";
"Scene.Register.Input.Email.Placeholder" = "email";
"Scene.Register.Input.Invite.RegistrationUserInviteRequest" = "Why do you want to join?";
"Scene.Register.Input.Password.Accessibility.Checked" = "checked";
"Scene.Register.Input.Password.Accessibility.Unchecked" = "unchecked";
"Scene.Register.Input.Password.CharacterLimit" = "8 characters";
"Scene.Register.Input.Password.Hint" = "Your password needs at least eight characters";
"Scene.Register.Input.Password.Placeholder" = "password";
"Scene.Register.Input.Password.Require" = "Your password needs at least:";
"Scene.Register.Input.Username.DuplicatePrompt" = "This username is taken.";
"Scene.Register.Input.Username.Placeholder" = "username";
"Scene.Register.Title" = "Tell us about you.";
"Scene.Register.Title" = "Lets get you set up on %@";
"Scene.Report.Content1" = "Are there any other posts youd like to add to the report?";
"Scene.Report.Content2" = "Is there anything the moderators should know about this report?";
"Scene.Report.ReportSentTitle" = "Thanks for reporting, well look into this.";
"Scene.Report.Reported" = "REPORTED";
"Scene.Report.Send" = "Send Report";
"Scene.Report.SkipToSend" = "Send without comment";
"Scene.Report.Step1" = "Step 1 of 2";
"Scene.Report.Step2" = "Step 2 of 2";
"Scene.Report.TextPlaceholder" = "Type or paste additional comments";
"Scene.Report.Title" = "Report %@";
"Scene.Report.TitleReport" = "Report";
"Scene.Search.Recommend.Accounts.Description" = "You may like to follow these accounts";
"Scene.Search.Recommend.Accounts.Follow" = "Follow";
"Scene.Search.Recommend.Accounts.Title" = "Accounts you might like";
@ -297,16 +315,17 @@ tap the link to confirm your account.";
"Scene.ServerPicker.EmptyState.BadNetwork" = "Something went wrong while loading the data. Check your internet connection.";
"Scene.ServerPicker.EmptyState.FindingServers" = "Finding available servers...";
"Scene.ServerPicker.EmptyState.NoResults" = "No results";
"Scene.ServerPicker.Input.Placeholder" = "Find a server or join your own...";
"Scene.ServerPicker.Input.Placeholder" = "Search communities";
"Scene.ServerPicker.Label.Category" = "CATEGORY";
"Scene.ServerPicker.Label.Language" = "LANGUAGE";
"Scene.ServerPicker.Label.Users" = "USERS";
"Scene.ServerPicker.Title" = "Pick a server,
any server.";
"Scene.ServerPicker.Subtitle" = "Pick a community based on your interests, region, or a general purpose one.";
"Scene.ServerPicker.SubtitleExtend" = "Pick a community based on your interests, region, or a general purpose one. Each community is operated by an entirely independent organization or individual.";
"Scene.ServerPicker.Title" = "Mastodon is made of users in different communities.";
"Scene.ServerRules.Button.Confirm" = "I Agree";
"Scene.ServerRules.PrivacyPolicy" = "privacy policy";
"Scene.ServerRules.Prompt" = "By continuing, youre subject to the terms of service and privacy policy for %@.";
"Scene.ServerRules.Subtitle" = "These rules are set by the admins of %@.";
"Scene.ServerRules.Subtitle" = "These are set and enforced by the %@ moderators.";
"Scene.ServerRules.TermsOfService" = "terms of service";
"Scene.ServerRules.Title" = "Some ground rules.";
"Scene.Settings.Footer.MastodonDescription" = "Mastodon is open source software. You can report issues on GitHub at %@ (%@)";
@ -319,6 +338,11 @@ any server.";
"Scene.Settings.Section.BoringZone.Privacy" = "Privacy Policy";
"Scene.Settings.Section.BoringZone.Terms" = "Terms of Service";
"Scene.Settings.Section.BoringZone.Title" = "The Boring Zone";
"Scene.Settings.Section.LookAndFeel.Light" = "Light";
"Scene.Settings.Section.LookAndFeel.ReallyDark" = "Really Dark";
"Scene.Settings.Section.LookAndFeel.SortaDark" = "Sorta Dark";
"Scene.Settings.Section.LookAndFeel.Title" = "Look and Feel";
"Scene.Settings.Section.LookAndFeel.UseSystem" = "Use System";
"Scene.Settings.Section.Notifications.Boosts" = "Reblogs my post";
"Scene.Settings.Section.Notifications.Favorites" = "Favorites my post";
"Scene.Settings.Section.Notifications.Follows" = "Follows me";
@ -342,6 +366,8 @@ any server.";
"Scene.SuggestionAccount.Title" = "Find People to Follow";
"Scene.Thread.BackTitle" = "Post";
"Scene.Thread.Title" = "Post from %@";
"Scene.Welcome.GetStarted" = "Get Started";
"Scene.Welcome.LogIn" = "Log In";
"Scene.Welcome.Slogan" = "Social networking
back in your hands.";
"Scene.Wizard.AccessibilityHint" = "Double tap to dismiss this wizard";

View File

@ -4,7 +4,7 @@
"Common.Alerts.CleanCache.Title" = "Limpiar caché";
"Common.Alerts.Common.PleaseTryAgain" = "Por favor, intentá de nuevo.";
"Common.Alerts.Common.PleaseTryAgainLater" = "Por favor, intentá de nuevo más tarde.";
"Common.Alerts.DeletePost.Delete" = "Eliminar";
"Common.Alerts.DeletePost.Message" = "¿Estás seguro que querés eliminar este mensaje?";
"Common.Alerts.DeletePost.Title" = "¿Estás seguro que querés eliminar este mensaje?";
"Common.Alerts.DiscardPostContent.Message" = "Confirmá para descartar el contenido del mensaje redactado.";
"Common.Alerts.DiscardPostContent.Title" = "Descartar borrador";
@ -41,6 +41,7 @@ Por favor, revisá tu conexión a Internet.";
"Common.Controls.Actions.Next" = "Siguiente";
"Common.Controls.Actions.Ok" = "Aceptar";
"Common.Controls.Actions.Open" = "Abrir";
"Common.Controls.Actions.OpenInBrowser" = "Abrir en el navegador";
"Common.Controls.Actions.OpenInSafari" = "Abrir en Safari";
"Common.Controls.Actions.Preview" = "Previsualización";
"Common.Controls.Actions.Previous" = "Anterior";
@ -93,6 +94,7 @@ Por favor, revisá tu conexión a Internet.";
"Common.Controls.Keyboard.Timeline.ToggleFavorite" = "Cambiar la marca de favorito en el mensaje";
"Common.Controls.Keyboard.Timeline.ToggleReblog" = "Cambiar la adhesión en el mensaje";
"Common.Controls.Status.Actions.Favorite" = "Marcar como favorito";
"Common.Controls.Status.Actions.Hide" = "Ocultar";
"Common.Controls.Status.Actions.Menu" = "Menú";
"Common.Controls.Status.Actions.Reblog" = "Adherir";
"Common.Controls.Status.Actions.Reply" = "Responder";
@ -112,6 +114,10 @@ Por favor, revisá tu conexión a Internet.";
"Common.Controls.Status.Tag.Url" = "Dirección web";
"Common.Controls.Status.UserReblogged" = "%@ adhirió";
"Common.Controls.Status.UserRepliedTo" = "Respondió a %@";
"Common.Controls.Status.Visibility.Direct" = "Sólo el usuario mencionado puede ver este mensaje.";
"Common.Controls.Status.Visibility.Private" = "Sólo sus seguidores pueden ver este mensaje.";
"Common.Controls.Status.Visibility.PrivateFromMe" = "Sólo mis seguidores pueden ver este mensaje.";
"Common.Controls.Status.Visibility.Unlisted" = "Todo el mundo puede ver este mensaje pero no mostrarse en la línea temporal pública.";
"Common.Controls.Tabs.Home" = "Principal";
"Common.Controls.Tabs.Notification" = "Notificación";
"Common.Controls.Tabs.Profile" = "Perfil";
@ -178,8 +184,8 @@ y no se puede subir a Mastodon.";
"Scene.Compose.Visibility.Private" = "Sólo para seguidores";
"Scene.Compose.Visibility.Public" = "Público";
"Scene.Compose.Visibility.Unlisted" = "No listado";
"Scene.ConfirmEmail.Button.DontReceiveEmail" = "Nunca recibí un correo electrónico";
"Scene.ConfirmEmail.Button.OpenEmailApp" = "Abrir aplicación de correo electrónico";
"Scene.ConfirmEmail.Button.Resend" = "Reenviar";
"Scene.ConfirmEmail.DontReceiveEmail.Description" = "Revisá si tu dirección de correo electrónico es correcta así como tu carpeta de correo basura / correo no deseado / spam, si todavía no lo hiciste.";
"Scene.ConfirmEmail.DontReceiveEmail.ResendEmail" = "Reenviar correo electrónico";
"Scene.ConfirmEmail.DontReceiveEmail.Title" = "Revisá tu correo electrónico";
@ -200,14 +206,14 @@ pulsá en el enlace para confirmar tu cuenta.";
"Scene.HomeTimeline.Title" = "Principal";
"Scene.Notification.Keyobard.ShowEverything" = "Mostrar todo";
"Scene.Notification.Keyobard.ShowMentions" = "Mostrar menciones";
"Scene.Notification.NotificationDescription.FavoritedYourPost" = "marcó como favorito tu mensaje";
"Scene.Notification.NotificationDescription.FollowedYou" = "te sigue";
"Scene.Notification.NotificationDescription.MentionedYou" = "te mencionó";
"Scene.Notification.NotificationDescription.PollHasEnded" = "la encuesta terminó";
"Scene.Notification.NotificationDescription.RebloggedYourPost" = "adhirió a tu mensaje";
"Scene.Notification.NotificationDescription.RequestToFollowYou" = "solicitó seguirte";
"Scene.Notification.Title.Everything" = "Todo";
"Scene.Notification.Title.Mentions" = "Menciones";
"Scene.Notification.UserFavorited Your Post" = "%@ marcó tu msj. como favorito";
"Scene.Notification.UserFollowedYou" = "%@ te sigue";
"Scene.Notification.UserMentionedYou" = "%@ te mencionó";
"Scene.Notification.UserRebloggedYourPost" = "%@ adhirió a tu mensaje";
"Scene.Notification.UserRequestedToFollowYou" = "%@ solicitó seguirte";
"Scene.Notification.UserYourPollHasEnded" = "%@, tu encuesta finalizó";
"Scene.Preview.Keyboard.ClosePreview" = "Cerrar previsualización";
"Scene.Preview.Keyboard.ShowNext" = "Mostrar siguiente";
"Scene.Preview.Keyboard.ShowPrevious" = "Mostrar anterior";
@ -217,12 +223,18 @@ pulsá en el enlace para confirmar tu cuenta.";
"Scene.Profile.Fields.AddRow" = "Agregar fila";
"Scene.Profile.Fields.Placeholder.Content" = "Valor de campo";
"Scene.Profile.Fields.Placeholder.Label" = "Nombre de campo";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUsre.Message" = "Confirmá para desbloquear a %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUsre.Title" = "Desbloquear cuenta";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Confirmá para desbloquear a %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Bloquear cuenta";
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Message" = "Confirmá para silenciar a %@";
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Silenciar cuenta";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Confirmá para desbloquear a %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Desbloquear cuenta";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Confirmá para dejar de silenciar a %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Title" = "Dejar de silenciar cuenta";
"Scene.Profile.SegmentedControl.About" = "Información";
"Scene.Profile.SegmentedControl.Media" = "Medios";
"Scene.Profile.SegmentedControl.Posts" = "Mensajes";
"Scene.Profile.SegmentedControl.PostsAndReplies" = "Mensajes y respuestas";
"Scene.Profile.SegmentedControl.Replies" = "Respuestas";
"Scene.Register.Error.Item.Agreement" = "Acuerdo";
"Scene.Register.Error.Item.Email" = "Correo electrónico";
@ -248,19 +260,26 @@ pulsá en el enlace para confirmar tu cuenta.";
"Scene.Register.Input.DisplayName.Placeholder" = "nombre para mostrar";
"Scene.Register.Input.Email.Placeholder" = "correo electrónico";
"Scene.Register.Input.Invite.RegistrationUserInviteRequest" = "¿Por qué querés unirte?";
"Scene.Register.Input.Password.Accessibility.Checked" = "marcado";
"Scene.Register.Input.Password.Accessibility.Unchecked" = "sin marcar";
"Scene.Register.Input.Password.CharacterLimit" = "8 caracteres";
"Scene.Register.Input.Password.Hint" = "Tu contraseña necesita al menos ocho caracteres";
"Scene.Register.Input.Password.Placeholder" = "contraseña";
"Scene.Register.Input.Password.Require" = "Tu contraseña necesita al menos:";
"Scene.Register.Input.Username.DuplicatePrompt" = "Este nombre de usuario ya está en uso.";
"Scene.Register.Input.Username.Placeholder" = "nombre de usuario";
"Scene.Register.Title" = "Contanos sobre vos.";
"Scene.Report.Content1" = "¿Hay otros mensajes que te gustaría agregar a la denuncia?";
"Scene.Report.Content2" = "¿Hay algo que los moderadores deban saber sobre esta denuncia?";
"Scene.Report.ReportSentTitle" = "Gracias por tu denuncia, vamos a revisarla.";
"Scene.Report.Reported" = "DENUNCIADA";
"Scene.Report.Send" = "Enviar denuncia";
"Scene.Report.SkipToSend" = "Enviar sin comentarios";
"Scene.Report.Step1" = "Paso 1 de 2";
"Scene.Report.Step2" = "Paso 2 de 2";
"Scene.Report.TextPlaceholder" = "Escribí o pegá comentarios adicionales";
"Scene.Report.Title" = "Denunciar a %@";
"Scene.Report.TitleReport" = "Denunciar";
"Scene.Search.Recommend.Accounts.Description" = "Puede que te guste seguir estas cuentas";
"Scene.Search.Recommend.Accounts.Follow" = "Seguir";
"Scene.Search.Recommend.Accounts.Title" = "Cuentas que te pueden gustar";
@ -301,6 +320,8 @@ pulsá en el enlace para confirmar tu cuenta.";
"Scene.ServerPicker.Label.Category" = "CATEGORÍA";
"Scene.ServerPicker.Label.Language" = "IDIOMA";
"Scene.ServerPicker.Label.Users" = "CUENTAS";
"Scene.ServerPicker.Subtitle" = "Elegí una comunidad basada en tus intereses, región o una de propósitos generales.";
"Scene.ServerPicker.SubtitleExtend" = "Elegí una comunidad basada en tus intereses, región o una de propósitos generales. Cada comunidad es operada por una organización o individuo totalmente independiente.";
"Scene.ServerPicker.Title" = "Elegí un servidor,
el que quieras.";
"Scene.ServerRules.Button.Confirm" = "Estoy de acuerdo";
@ -319,6 +340,11 @@ el que quieras.";
"Scene.Settings.Section.BoringZone.Privacy" = "Política de privacidad";
"Scene.Settings.Section.BoringZone.Terms" = "Términos del servicio";
"Scene.Settings.Section.BoringZone.Title" = "La zona aburrida";
"Scene.Settings.Section.LookAndFeel.Light" = "Claro";
"Scene.Settings.Section.LookAndFeel.ReallyDark" = "Oscuro de verdad";
"Scene.Settings.Section.LookAndFeel.SortaDark" = "Algo oscuro";
"Scene.Settings.Section.LookAndFeel.Title" = "Apariencia";
"Scene.Settings.Section.LookAndFeel.UseSystem" = "Usar sistema";
"Scene.Settings.Section.Notifications.Boosts" = "Adhirió a mi mensaje";
"Scene.Settings.Section.Notifications.Favorites" = "Marcó como favorito mi mensaje";
"Scene.Settings.Section.Notifications.Follows" = "Me sigue";
@ -342,6 +368,8 @@ el que quieras.";
"Scene.SuggestionAccount.Title" = "Encontrá cuentas para seguir";
"Scene.Thread.BackTitle" = "Mensaje";
"Scene.Thread.Title" = "Mensaje de %@";
"Scene.Welcome.GetStarted" = "Comenzá";
"Scene.Welcome.LogIn" = "Iniciar sesión";
"Scene.Welcome.Slogan" = "La red social,
nuevamente en tu poder.";
"Scene.Wizard.AccessibilityHint" = "Tocá dos veces para descartar este asistente";

View File

@ -4,7 +4,7 @@
"Common.Alerts.CleanCache.Title" = "Limpiar Caché";
"Common.Alerts.Common.PleaseTryAgain" = "Por favor, vuelve a intentarlo.";
"Common.Alerts.Common.PleaseTryAgainLater" = "Por favor, vuelve a intentarlo más tarde.";
"Common.Alerts.DeletePost.Delete" = "Eliminar";
"Common.Alerts.DeletePost.Message" = "Are you sure you want to delete this post?";
"Common.Alerts.DeletePost.Title" = "¿Estás seguro de que deseas eliminar esta publicación?";
"Common.Alerts.DiscardPostContent.Message" = "Confirma para descartar el contenido de la publicación.";
"Common.Alerts.DiscardPostContent.Title" = "Descartar borrador";
@ -41,6 +41,7 @@ Por favor, revise su conexión a internet.";
"Common.Controls.Actions.Next" = "Siguiente";
"Common.Controls.Actions.Ok" = "Aceptar";
"Common.Controls.Actions.Open" = "Abrir";
"Common.Controls.Actions.OpenInBrowser" = "Abrir en el navegador";
"Common.Controls.Actions.OpenInSafari" = "Abrir en Safari";
"Common.Controls.Actions.Preview" = "Vista previa";
"Common.Controls.Actions.Previous" = "Anterior";
@ -93,6 +94,7 @@ Por favor, revise su conexión a internet.";
"Common.Controls.Keyboard.Timeline.ToggleFavorite" = "Conmutar la Marca de Favorito en la Publicación";
"Common.Controls.Keyboard.Timeline.ToggleReblog" = "Conmutar el Reblogueo en la Publicación";
"Common.Controls.Status.Actions.Favorite" = "Favorito";
"Common.Controls.Status.Actions.Hide" = "Hide";
"Common.Controls.Status.Actions.Menu" = "Menú";
"Common.Controls.Status.Actions.Reblog" = "Rebloguear";
"Common.Controls.Status.Actions.Reply" = "Responder";
@ -112,6 +114,10 @@ Por favor, revise su conexión a internet.";
"Common.Controls.Status.Tag.Url" = "URL";
"Common.Controls.Status.UserReblogged" = "%@ lo reblogueó";
"Common.Controls.Status.UserRepliedTo" = "En respuesta a %@";
"Common.Controls.Status.Visibility.Direct" = "Only mentioned user can see this post.";
"Common.Controls.Status.Visibility.Private" = "Only their followers can see this post.";
"Common.Controls.Status.Visibility.PrivateFromMe" = "Only my followers can see this post.";
"Common.Controls.Status.Visibility.Unlisted" = "Everyone can see this post but not display in the public timeline.";
"Common.Controls.Tabs.Home" = "Inicio";
"Common.Controls.Tabs.Notification" = "Notificación";
"Common.Controls.Tabs.Profile" = "Perfil";
@ -134,9 +140,9 @@ Tu perfil se ve así para él.";
"Common.Controls.Timeline.Loader.LoadingMissingPosts" = "Cargando publicaciones faltantes...";
"Common.Controls.Timeline.Loader.ShowMoreReplies" = "Mostrar más respuestas";
"Common.Controls.Timeline.Timestamp.Now" = "Ahora";
"Scene.AccountList.AddAccount" = "Add Account";
"Scene.AccountList.DismissAccountSwitcher" = "Dismiss Account Switcher";
"Scene.AccountList.TabBarHint" = "Current selected profile: %@. Double tap then hold to show account switcher";
"Scene.AccountList.AddAccount" = "Añadir cuenta";
"Scene.AccountList.DismissAccountSwitcher" = "Descartar el selector de cuentas";
"Scene.AccountList.TabBarHint" = "Perfil seleccionado actualmente: %@. Haz un doble toque y mantén pulsado para mostrar el selector de cuentas";
"Scene.Compose.Accessibility.AppendAttachment" = "Añadir Adjunto";
"Scene.Compose.Accessibility.AppendPoll" = "Añadir Encuesta";
"Scene.Compose.Accessibility.CustomEmojiPicker" = "Selector de Emojis Personalizados";
@ -178,8 +184,8 @@ subirse a Mastodon.";
"Scene.Compose.Visibility.Private" = "Solo seguidores";
"Scene.Compose.Visibility.Public" = "Pública";
"Scene.Compose.Visibility.Unlisted" = "Sin listar";
"Scene.ConfirmEmail.Button.DontReceiveEmail" = "No he recibido el correo electrónico";
"Scene.ConfirmEmail.Button.OpenEmailApp" = "Abrir Aplicación de Correo Electrónico";
"Scene.ConfirmEmail.Button.Resend" = "Reenviar";
"Scene.ConfirmEmail.DontReceiveEmail.Description" = "Comprueba que tu dirección de correo electrónico sea correcta y revisa la carpeta de correo no deseado si no lo has hecho ya.";
"Scene.ConfirmEmail.DontReceiveEmail.ResendEmail" = "Volver a Enviar Correo Electrónico";
"Scene.ConfirmEmail.DontReceiveEmail.Title" = "Revisa tu correo electrónico";
@ -200,14 +206,14 @@ pulsa en el enlace para confirmar tu cuenta.";
"Scene.HomeTimeline.Title" = "Inicio";
"Scene.Notification.Keyobard.ShowEverything" = "Mostrar Todo";
"Scene.Notification.Keyobard.ShowMentions" = "Mostrar Menciones";
"Scene.Notification.NotificationDescription.FavoritedYourPost" = "favorited your post";
"Scene.Notification.NotificationDescription.FollowedYou" = "followed you";
"Scene.Notification.NotificationDescription.MentionedYou" = "mentioned you";
"Scene.Notification.NotificationDescription.PollHasEnded" = "poll has ended";
"Scene.Notification.NotificationDescription.RebloggedYourPost" = "reblogged your post";
"Scene.Notification.NotificationDescription.RequestToFollowYou" = "request to follow you";
"Scene.Notification.Title.Everything" = "Todo";
"Scene.Notification.Title.Mentions" = "Menciones";
"Scene.Notification.UserFavorited Your Post" = "%@ marcó tu post como favorito";
"Scene.Notification.UserFollowedYou" = "%@ te ha empezado a seguir";
"Scene.Notification.UserMentionedYou" = "%@ te ha mencionado";
"Scene.Notification.UserRebloggedYourPost" = "%@ reblogueó tu publicación";
"Scene.Notification.UserRequestedToFollowYou" = "%@ ha solicitado seguirte";
"Scene.Notification.UserYourPollHasEnded" = "%@ Tu encuesta ha terminado";
"Scene.Preview.Keyboard.ClosePreview" = "Cerrar Previsualización";
"Scene.Preview.Keyboard.ShowNext" = "Mostrar Siguiente";
"Scene.Preview.Keyboard.ShowPrevious" = "Mostrar Anterior";
@ -217,12 +223,18 @@ pulsa en el enlace para confirmar tu cuenta.";
"Scene.Profile.Fields.AddRow" = "Añadir Fila";
"Scene.Profile.Fields.Placeholder.Content" = "Contenido";
"Scene.Profile.Fields.Placeholder.Label" = "Nombre para el campo";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUsre.Message" = "Confirmar para desbloquear a %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUsre.Title" = "Desbloquear Cuenta";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Confirm to block %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Block Account";
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Message" = "Confirm to mute %@";
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Mute Account";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Confirm to unblock %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Unblock Account";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Confirmar para dejar de silenciar a %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Title" = "Dejar de Silenciar Cuenta";
"Scene.Profile.SegmentedControl.About" = "About";
"Scene.Profile.SegmentedControl.Media" = "Multimedia";
"Scene.Profile.SegmentedControl.Posts" = "Publicaciones";
"Scene.Profile.SegmentedControl.PostsAndReplies" = "Posts and Replies";
"Scene.Profile.SegmentedControl.Replies" = "Respuestas";
"Scene.Register.Error.Item.Agreement" = "Aceptación";
"Scene.Register.Error.Item.Email" = "Correo electrónico";
@ -248,19 +260,26 @@ pulsa en el enlace para confirmar tu cuenta.";
"Scene.Register.Input.DisplayName.Placeholder" = "nombre a mostrar";
"Scene.Register.Input.Email.Placeholder" = "correo electrónico";
"Scene.Register.Input.Invite.RegistrationUserInviteRequest" = "¿Por qué quieres unirte?";
"Scene.Register.Input.Password.Accessibility.Checked" = "marcado";
"Scene.Register.Input.Password.Accessibility.Unchecked" = "sin marcar";
"Scene.Register.Input.Password.CharacterLimit" = "8 caracteres";
"Scene.Register.Input.Password.Hint" = "Tu contraseña necesita tener al menos ocho caracteres";
"Scene.Register.Input.Password.Placeholder" = "contraseña";
"Scene.Register.Input.Password.Require" = "Tu contraseña debe contener como mínimo:";
"Scene.Register.Input.Username.DuplicatePrompt" = "Este nombre de usuario ya está en uso.";
"Scene.Register.Input.Username.Placeholder" = "nombre de usuario";
"Scene.Register.Title" = "Háblanos de ti.";
"Scene.Report.Content1" = "¿Hay alguna otra publicación que te gustaría añadir al reporte?";
"Scene.Report.Content2" = "¿Hay algo que los moderadores deberían saber acerca de este reporte?";
"Scene.Report.ReportSentTitle" = "Thanks for reporting, well look into this.";
"Scene.Report.Reported" = "REPORTED";
"Scene.Report.Send" = "Enviar Reporte";
"Scene.Report.SkipToSend" = "Enviar sin comentarios";
"Scene.Report.Step1" = "Paso 1 de 2";
"Scene.Report.Step2" = "Paso 2 de 2";
"Scene.Report.TextPlaceholder" = "Escribe o pega comentarios adicionales";
"Scene.Report.Title" = "Reportar %@";
"Scene.Report.TitleReport" = "Report";
"Scene.Search.Recommend.Accounts.Description" = "Puede que guste seguir estas cuentas";
"Scene.Search.Recommend.Accounts.Follow" = "Seguir";
"Scene.Search.Recommend.Accounts.Title" = "Cuentas que quizá quieras seguir";
@ -301,6 +320,8 @@ pulsa en el enlace para confirmar tu cuenta.";
"Scene.ServerPicker.Label.Category" = "CATEGORÍA";
"Scene.ServerPicker.Label.Language" = "IDIOMA";
"Scene.ServerPicker.Label.Users" = "USUARIOS";
"Scene.ServerPicker.Subtitle" = "Elige una comunidad relacionada con tus intereses, con tu región o una más genérica.";
"Scene.ServerPicker.SubtitleExtend" = "Elige una comunidad relacionada con tus intereses, con tu región o una más genérica. Cada comunidad está operada por una organización o individuo completamente independiente.";
"Scene.ServerPicker.Title" = "Elige un servidor,
cualquier servidor.";
"Scene.ServerRules.Button.Confirm" = "Acepto";
@ -319,6 +340,11 @@ cualquier servidor.";
"Scene.Settings.Section.BoringZone.Privacy" = "Política de Privacidad";
"Scene.Settings.Section.BoringZone.Terms" = "Términos de Servicio";
"Scene.Settings.Section.BoringZone.Title" = "La Zona Aburrida";
"Scene.Settings.Section.LookAndFeel.Light" = "Light";
"Scene.Settings.Section.LookAndFeel.ReallyDark" = "Really Dark";
"Scene.Settings.Section.LookAndFeel.SortaDark" = "Sorta Dark";
"Scene.Settings.Section.LookAndFeel.Title" = "Look and Feel";
"Scene.Settings.Section.LookAndFeel.UseSystem" = "Use System";
"Scene.Settings.Section.Notifications.Boosts" = "Rebloguee mi publicación";
"Scene.Settings.Section.Notifications.Favorites" = "Marque como favorita mi publicación";
"Scene.Settings.Section.Notifications.Follows" = "Me siga";
@ -342,8 +368,10 @@ cualquier servidor.";
"Scene.SuggestionAccount.Title" = "Encuentra Gente a la que Seguir";
"Scene.Thread.BackTitle" = "Publicación";
"Scene.Thread.Title" = "Publicación de %@";
"Scene.Welcome.GetStarted" = "Empezar";
"Scene.Welcome.LogIn" = "Iniciar sesión";
"Scene.Welcome.Slogan" = "Las redes sociales
de nuevo en tus manos.";
"Scene.Wizard.AccessibilityHint" = "Double tap to dismiss this wizard";
"Scene.Wizard.MultipleAccountSwitchIntroDescription" = "Switch between multiple accounts by holding the profile button.";
"Scene.Wizard.NewInMastodon" = "New in Mastodon";
"Scene.Wizard.AccessibilityHint" = "Haz doble toque para descartar este asistente";
"Scene.Wizard.MultipleAccountSwitchIntroDescription" = "Cambie entre varias cuentas manteniendo presionado el botón de perfil.";
"Scene.Wizard.NewInMastodon" = "Nuevo en Mastodon";

View File

@ -13,9 +13,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 unread notification</string>
<string>1 notificación no leída</string>
<key>other</key>
<string>%ld unread notification</string>
<string>%ld notificaciones no leídas</string>
</dict>
</dict>
<key>a11y.plural.count.input_limit_exceeds</key>

View File

@ -0,0 +1,377 @@
"Common.Alerts.BlockDomain.BlockEntireDomain" = "Blokeatu domeinua";
"Common.Alerts.BlockDomain.Title" = "Ziur, erabat ziur, %@ domeinu osoa blokeatu nahi duzula? Gehienetan erabiltzaile gutxi batzuk blokeatu edo mututzearekin nahikoa da. Ez duzu domeinu horretako edukirik ikusiko eta domeinu horretako zure jarraitzaileak kenduko dira.";
"Common.Alerts.CleanCache.Message" = "Behar bezala garbitu da %@ cache-a.";
"Common.Alerts.CleanCache.Title" = "Garbitu cache-a";
"Common.Alerts.Common.PleaseTryAgain" = "Mesedez, saiatu berriro.";
"Common.Alerts.Common.PleaseTryAgainLater" = "Mesedez beranduago saiatu.";
"Common.Alerts.DeletePost.Message" = "Ziur bidalketa hau ezabatu nahi duzula?";
"Common.Alerts.DeletePost.Title" = "Ziur zaude bidalketa hau ezabatu nahi duzula?";
"Common.Alerts.DiscardPostContent.Message" = "Berretsi idatzitako bidalketaren edukia baztertzea.";
"Common.Alerts.DiscardPostContent.Title" = "Baztertu zirriborroa";
"Common.Alerts.EditProfileFailure.Message" = "Ezin da profila editatu. Mesedez saiatu berriro.";
"Common.Alerts.EditProfileFailure.Title" = "Errorea profila editatzean";
"Common.Alerts.PublishPostFailure.AttachmentsMessage.MoreThanOneVideo" = "Ezin da bideo bat baino gehiago erantsi.";
"Common.Alerts.PublishPostFailure.AttachmentsMessage.VideoAttachWithPhoto" = "Ezin da irudiak dituen bidalketa batean bideo bat erantsi.";
"Common.Alerts.PublishPostFailure.Message" = "Huts egin du bidalketa argitaratzean.
Egiaztatu Interneteko konexioa.";
"Common.Alerts.PublishPostFailure.Title" = "Hutsegitea argitaratzean";
"Common.Alerts.SavePhotoFailure.Message" = "Gaitu argazki galeriarako sarbidearen baimena argazkia gordetzeko.";
"Common.Alerts.SavePhotoFailure.Title" = "Hutsegitea argazkia gordetzean";
"Common.Alerts.ServerError.Title" = "Zerbitzari-errorea";
"Common.Alerts.SignOut.Confirm" = "Amaitu saioa";
"Common.Alerts.SignOut.Message" = "Ziur saioa amaitu nahi duzula?";
"Common.Alerts.SignOut.Title" = "Amaitu saioa";
"Common.Alerts.SignUpFailure.Title" = "Hutsegitea izen-ematean";
"Common.Alerts.VoteFailure.PollEnded" = "Inkesta amaitu da";
"Common.Alerts.VoteFailure.Title" = "Hutsegitea botoa ematean";
"Common.Controls.Actions.Add" = "Gehitu";
"Common.Controls.Actions.Back" = "Atzera";
"Common.Controls.Actions.BlockDomain" = "Blokeatu %@";
"Common.Controls.Actions.Cancel" = "Utzi";
"Common.Controls.Actions.Compose" = "Idatzi";
"Common.Controls.Actions.Confirm" = "Berretsi";
"Common.Controls.Actions.Continue" = "Jarraitu";
"Common.Controls.Actions.CopyPhoto" = "Kopiatu argazkia";
"Common.Controls.Actions.Delete" = "Ezabatu";
"Common.Controls.Actions.Discard" = "Baztertu";
"Common.Controls.Actions.Done" = "Egina";
"Common.Controls.Actions.Edit" = "Editatu";
"Common.Controls.Actions.FindPeople" = "Bilatu jarraitzeko jendea";
"Common.Controls.Actions.ManuallySearch" = "Eskuz bilatu";
"Common.Controls.Actions.Next" = "Hurrengoa";
"Common.Controls.Actions.Ok" = "Ados";
"Common.Controls.Actions.Open" = "Ireki";
"Common.Controls.Actions.OpenInBrowser" = "Ireki nabigatzailean";
"Common.Controls.Actions.OpenInSafari" = "Ireki Safarin";
"Common.Controls.Actions.Preview" = "Aurrebista";
"Common.Controls.Actions.Previous" = "Aurrekoa";
"Common.Controls.Actions.Remove" = "Kendu";
"Common.Controls.Actions.Reply" = "Erantzun";
"Common.Controls.Actions.ReportUser" = "Salatu %@";
"Common.Controls.Actions.Save" = "Gorde";
"Common.Controls.Actions.SavePhoto" = "Gorde argazkia";
"Common.Controls.Actions.SeeMore" = "Ikusi gehiago";
"Common.Controls.Actions.Settings" = "Ezarpenak";
"Common.Controls.Actions.Share" = "Partekatu";
"Common.Controls.Actions.SharePost" = "Partekatu bidalketa";
"Common.Controls.Actions.ShareUser" = "Partekatu %@";
"Common.Controls.Actions.SignIn" = "Hasi saioa";
"Common.Controls.Actions.SignUp" = "Eman Izena";
"Common.Controls.Actions.Skip" = "Saltatu";
"Common.Controls.Actions.TakePhoto" = "Atera argazkia";
"Common.Controls.Actions.TryAgain" = "Saiatu berriro";
"Common.Controls.Actions.UnblockDomain" = "Desblokeatu %@";
"Common.Controls.Friendship.Block" = "Blokeatu";
"Common.Controls.Friendship.BlockDomain" = "Blokeatu %@";
"Common.Controls.Friendship.BlockUser" = "Blokeatu %@";
"Common.Controls.Friendship.Blocked" = "Blokeatuta";
"Common.Controls.Friendship.EditInfo" = "Editatu informazioa";
"Common.Controls.Friendship.Follow" = "Jarraitu";
"Common.Controls.Friendship.Following" = "Jarraitzen";
"Common.Controls.Friendship.Mute" = "Mututu";
"Common.Controls.Friendship.MuteUser" = "Mututu %@";
"Common.Controls.Friendship.Muted" = "Mutututa";
"Common.Controls.Friendship.Pending" = "Zain";
"Common.Controls.Friendship.Request" = "Eskaera";
"Common.Controls.Friendship.Unblock" = "Desblokeatu";
"Common.Controls.Friendship.UnblockUser" = "Desblokeatu %@";
"Common.Controls.Friendship.Unmute" = "Desmututu";
"Common.Controls.Friendship.UnmuteUser" = "Desmututu %@";
"Common.Controls.Keyboard.Common.ComposeNewPost" = "Idatzi bidalketa berria";
"Common.Controls.Keyboard.Common.OpenSettings" = "Ireki ezarpenak";
"Common.Controls.Keyboard.Common.ShowFavorites" = "Erakutsi gogokoak";
"Common.Controls.Keyboard.Common.SwitchToTab" = "Aldatu %@(e)ra";
"Common.Controls.Keyboard.SegmentedControl.NextSection" = "Hurrengo sekzioa";
"Common.Controls.Keyboard.SegmentedControl.PreviousSection" = "Aurreko sekzioa";
"Common.Controls.Keyboard.Timeline.NextStatus" = "Hurrengo bidalketa";
"Common.Controls.Keyboard.Timeline.OpenAuthorProfile" = "Ireki egilearen profila";
"Common.Controls.Keyboard.Timeline.OpenRebloggerProfile" = "Ireki bultzada eman duenaren profila";
"Common.Controls.Keyboard.Timeline.OpenStatus" = "Ireki bidalketa";
"Common.Controls.Keyboard.Timeline.PreviewImage" = "Aurreikusi irudia";
"Common.Controls.Keyboard.Timeline.PreviousStatus" = "Aurreko bidalketa";
"Common.Controls.Keyboard.Timeline.ReplyStatus" = "Erantzun bidalketari";
"Common.Controls.Keyboard.Timeline.ToggleContentWarning" = "Txandakatu edukiaren abisua";
"Common.Controls.Keyboard.Timeline.ToggleFavorite" = "Txandakatu bidalketa gogoko egitea";
"Common.Controls.Keyboard.Timeline.ToggleReblog" = "Txandakatu bidalketaren bultzada";
"Common.Controls.Status.Actions.Favorite" = "Gogokoa";
"Common.Controls.Status.Actions.Hide" = "Ezkutatu";
"Common.Controls.Status.Actions.Menu" = "Menua";
"Common.Controls.Status.Actions.Reblog" = "Bultzada";
"Common.Controls.Status.Actions.Reply" = "Erantzun";
"Common.Controls.Status.Actions.Unfavorite" = "Kendu gogokoa";
"Common.Controls.Status.Actions.Unreblog" = "Desegin bultzada";
"Common.Controls.Status.ContentWarning" = "Edukiaren abisua";
"Common.Controls.Status.MediaContentWarning" = "Ukitu edonon bistaratzeko";
"Common.Controls.Status.Poll.Closed" = "Itxita";
"Common.Controls.Status.Poll.Vote" = "Bozkatu";
"Common.Controls.Status.ShowPost" = "Erakutsi bidalketa";
"Common.Controls.Status.ShowUserProfile" = "Erakutsi erabiltzailearen profila";
"Common.Controls.Status.Tag.Email" = "Eposta";
"Common.Controls.Status.Tag.Emoji" = "Emojia";
"Common.Controls.Status.Tag.Hashtag" = "Traola";
"Common.Controls.Status.Tag.Link" = "Esteka";
"Common.Controls.Status.Tag.Mention" = "Aipatu";
"Common.Controls.Status.Tag.Url" = "URLa";
"Common.Controls.Status.UserReblogged" = "%@ erabiltzaileak bultzada eman dio";
"Common.Controls.Status.UserRepliedTo" = "%@(r)i erantzuten";
"Common.Controls.Status.Visibility.Direct" = "Aipatutako erabiltzaileek soilik ikus dezakete bidalketa hau.";
"Common.Controls.Status.Visibility.Private" = "Beren jarraitzaileek soilik ikus dezakete bidalketa hau.";
"Common.Controls.Status.Visibility.PrivateFromMe" = "Nire jarraitzaileek soilik ikus dezakete bidalketa hau.";
"Common.Controls.Status.Visibility.Unlisted" = "Edozeinek ikusi dezake bidalketa hau baina ez da denbora-lerro publikoan bistaratuko.";
"Common.Controls.Tabs.Home" = "Hasiera";
"Common.Controls.Tabs.Notification" = "Jakinarazpena";
"Common.Controls.Tabs.Profile" = "Profila";
"Common.Controls.Tabs.Search" = "Bilatu";
"Common.Controls.Timeline.Filtered" = "Iragazita";
"Common.Controls.Timeline.Header.BlockedWarning" = "Ezin duzu erabiltzaile honen profila ikusi
desblokeatzen zaituen arte.";
"Common.Controls.Timeline.Header.BlockingWarning" = "Ezin duzu erabiltzaile honen profila ikusi
desblokeatzen duzun arte.
Zure profilak itxura hau du berarentzat.";
"Common.Controls.Timeline.Header.NoStatusFound" = "Ez da bidalketa aurkitu";
"Common.Controls.Timeline.Header.SuspendedWarning" = "Erabiltzaile hau kanporatua izan da.";
"Common.Controls.Timeline.Header.UserBlockedWarning" = "Ezin duzu %@ erabiltzailearen
profila ikusi desblokeatzen zaituen arte.";
"Common.Controls.Timeline.Header.UserBlockingWarning" = "Ezin duzu %@ erabiltzailearen
profila ikusi desblokeatzen duzun arte.
Zure profilak itxura hau du berarentzat.";
"Common.Controls.Timeline.Header.UserSuspendedWarning" = "%@ kontua kanporatua izan da.";
"Common.Controls.Timeline.Loader.LoadMissingPosts" = "Kargatu falta diren bidalketak";
"Common.Controls.Timeline.Loader.LoadingMissingPosts" = "Falta diren bidalketak kargatzen...";
"Common.Controls.Timeline.Loader.ShowMoreReplies" = "Erakutsi erantzun gehiago";
"Common.Controls.Timeline.Timestamp.Now" = "Orain";
"Scene.AccountList.AddAccount" = "Gehitu kontua";
"Scene.AccountList.DismissAccountSwitcher" = "Baztertu kontu-aldatzailea";
"Scene.AccountList.TabBarHint" = "Unean hautatutako profila: %@. Ukitu birritan, ondoren eduki sakatuta kontu-aldatzailea erakusteko";
"Scene.Compose.Accessibility.AppendAttachment" = "Gehitu eranskina";
"Scene.Compose.Accessibility.AppendPoll" = "Gehitu inkesta";
"Scene.Compose.Accessibility.CustomEmojiPicker" = "Emoji pertsonalizatuen hautatzailea";
"Scene.Compose.Accessibility.DisableContentWarning" = "Desgaitu edukiaren abisua";
"Scene.Compose.Accessibility.EnableContentWarning" = "Gaitu edukiaren abisua";
"Scene.Compose.Accessibility.PostVisibilityMenu" = "Bidalketaren ikusgaitasunaren menua";
"Scene.Compose.Accessibility.RemovePoll" = "Kendu inkesta";
"Scene.Compose.Attachment.AttachmentBroken" = "%@ hondatuta dago eta ezin da
Mastodonera igo.";
"Scene.Compose.Attachment.DescriptionPhoto" = "Deskribatu argazkia ikusmen arazoak dituztenentzat...";
"Scene.Compose.Attachment.DescriptionVideo" = "Deskribatu bideoa ikusmen arazoak dituztenentzat...";
"Scene.Compose.Attachment.Photo" = "argazkia";
"Scene.Compose.Attachment.Video" = "bideoa";
"Scene.Compose.AutoComplete.SpaceToAdd" = "Sakatu zuriunea gehitzeko";
"Scene.Compose.ComposeAction" = "Argitaratu";
"Scene.Compose.ContentInputPlaceholder" = "Idatzi edo itsatsi buruan duzuna";
"Scene.Compose.ContentWarning.Placeholder" = "Idatzi abisu zehatz bat hemen...";
"Scene.Compose.Keyboard.AppendAttachmentEntry" = "Gehitu eranskina - %@";
"Scene.Compose.Keyboard.DiscardPost" = "Baztertu bidalketa";
"Scene.Compose.Keyboard.PublishPost" = "Argitaratu bidalketa";
"Scene.Compose.Keyboard.SelectVisibilityEntry" = "Hautatu ikusgaitasuna - %@";
"Scene.Compose.Keyboard.ToggleContentWarning" = "Txandakatu edukiaren abisua";
"Scene.Compose.Keyboard.TogglePoll" = "Txandakatu inkesta";
"Scene.Compose.MediaSelection.Browse" = "Arakatu";
"Scene.Compose.MediaSelection.Camera" = "Atera argazkia";
"Scene.Compose.MediaSelection.PhotoLibrary" = "Argazki-liburutegia";
"Scene.Compose.Poll.DurationTime" = "Iraupena: %@";
"Scene.Compose.Poll.OneDay" = "Egun 1";
"Scene.Compose.Poll.OneHour" = "Ordu 1";
"Scene.Compose.Poll.OptionNumber" = "%ld aukera";
"Scene.Compose.Poll.SevenDays" = "7 egun";
"Scene.Compose.Poll.SixHours" = "6 ordu";
"Scene.Compose.Poll.ThirtyMinutes" = "30 minutu";
"Scene.Compose.Poll.ThreeDays" = "3 egun";
"Scene.Compose.ReplyingToUser" = "%@(r)i erantzuten";
"Scene.Compose.Title.NewPost" = "Bidalketa berria";
"Scene.Compose.Title.NewReply" = "Erantzun berria";
"Scene.Compose.Visibility.Direct" = "Aipatzen dudan jendea soilik";
"Scene.Compose.Visibility.Private" = "Jarraitzaileak soilik";
"Scene.Compose.Visibility.Public" = "Publikoa";
"Scene.Compose.Visibility.Unlisted" = "Zerrendatu gabea";
"Scene.ConfirmEmail.Button.OpenEmailApp" = "Ireki eposta aplikazioa";
"Scene.ConfirmEmail.Button.Resend" = "Berbidali";
"Scene.ConfirmEmail.DontReceiveEmail.Description" = "Egiaztatu zure eposta helbidea zuzena den eta begiratu zaborraren karpeta.";
"Scene.ConfirmEmail.DontReceiveEmail.ResendEmail" = "Birbidali eposta";
"Scene.ConfirmEmail.DontReceiveEmail.Title" = "Begiratu zure eposta";
"Scene.ConfirmEmail.OpenEmailApp.Description" = "Eposta bat bidali dizugu. Egiaztatu zure zaborraren karpeta.";
"Scene.ConfirmEmail.OpenEmailApp.Mail" = "Posta";
"Scene.ConfirmEmail.OpenEmailApp.OpenEmailClient" = "Ireki eposta bezeroa";
"Scene.ConfirmEmail.OpenEmailApp.Title" = "Egiaztatu zure sarrerako ontzia.";
"Scene.ConfirmEmail.Subtitle" = "Eposta bat bidali dizugu %@ helbidera,
sakatu kontua berresteko esteka.";
"Scene.ConfirmEmail.Title" = "Eta azkenik...";
"Scene.Favorite.Title" = "Zure gogokoak";
"Scene.Follower.Footer" = "Beste zerbitzarietako jarraitzaileak ez dira bistaratzen.";
"Scene.Following.Footer" = "Beste zerbitzarietan jarraitutakoak ez dira bistaratzen.";
"Scene.HomeTimeline.NavigationBarState.NewPosts" = "Ikusi bidal. berriak";
"Scene.HomeTimeline.NavigationBarState.Offline" = "Konexio gabe";
"Scene.HomeTimeline.NavigationBarState.Published" = "Argitaratua!";
"Scene.HomeTimeline.NavigationBarState.Publishing" = "Bidalketa argitaratzen...";
"Scene.HomeTimeline.Title" = "Hasiera";
"Scene.Notification.Keyobard.ShowEverything" = "Erakutsi guztia";
"Scene.Notification.Keyobard.ShowMentions" = "Erakutsi aipamenak";
"Scene.Notification.NotificationDescription.FavoritedYourPost" = "erabiltzaileak zure bidalketa gogoko du";
"Scene.Notification.NotificationDescription.FollowedYou" = "zu jarraitzen hasi da";
"Scene.Notification.NotificationDescription.MentionedYou" = "erabiltzaileak aipatu zaitu";
"Scene.Notification.NotificationDescription.PollHasEnded" = "inkesta amaitu da";
"Scene.Notification.NotificationDescription.RebloggedYourPost" = "erabiltzaileak bultzada eman dio zure bidalketari";
"Scene.Notification.NotificationDescription.RequestToFollowYou" = "erabiltzaileak zu jarraitzea eskatu du";
"Scene.Notification.Title.Everything" = "Dena";
"Scene.Notification.Title.Mentions" = "Aipamenak";
"Scene.Preview.Keyboard.ClosePreview" = "Itxi aurrebista";
"Scene.Preview.Keyboard.ShowNext" = "Erakutsi hurrengoa";
"Scene.Preview.Keyboard.ShowPrevious" = "Erakutsi aurrekoa";
"Scene.Profile.Dashboard.Followers" = "jarraitzaile";
"Scene.Profile.Dashboard.Following" = "jarraitzen";
"Scene.Profile.Dashboard.Posts" = "bidalketa";
"Scene.Profile.Fields.AddRow" = "Gehitu errenkada";
"Scene.Profile.Fields.Placeholder.Content" = "Edukia";
"Scene.Profile.Fields.Placeholder.Label" = "Etiketa";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Berretsi %@ blokeatzea";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Blokeatu kontua";
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Message" = "Berretsi %@ mututzea";
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Mututu kontua";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Berretsi %@ desblokeatzea";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Desblokeatu kontua";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Berretsi %@ desmututzea";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Title" = "Desmututu kontua";
"Scene.Profile.SegmentedControl.About" = "Honi buruz";
"Scene.Profile.SegmentedControl.Media" = "Multimedia";
"Scene.Profile.SegmentedControl.Posts" = "Bidalketak";
"Scene.Profile.SegmentedControl.PostsAndReplies" = "Bidalketak eta erantzunak";
"Scene.Profile.SegmentedControl.Replies" = "Erantzunak";
"Scene.Register.Error.Item.Agreement" = "Adostasuna";
"Scene.Register.Error.Item.Email" = "Eposta";
"Scene.Register.Error.Item.Locale" = "Eskualdeko ezarpenak";
"Scene.Register.Error.Item.Password" = "Pasahitza";
"Scene.Register.Error.Item.Reason" = "Arrazoia";
"Scene.Register.Error.Item.Username" = "Erabiltzaile-izena";
"Scene.Register.Error.Reason.Accepted" = "%@ onartu behar da";
"Scene.Register.Error.Reason.Blank" = "%@ beharrezkoa da";
"Scene.Register.Error.Reason.Blocked" = "%@(e)k onartu gabeko eposta hornitzaile bat erabiltzen du";
"Scene.Register.Error.Reason.Inclusion" = "%@ ez da onartutako balio bat";
"Scene.Register.Error.Reason.Invalid" = "%@ baliogabea da";
"Scene.Register.Error.Reason.Reserved" = "%@ gako-hitz erreserbatu bat da";
"Scene.Register.Error.Reason.Taken" = "%@ dagoeneko erabiltzen da";
"Scene.Register.Error.Reason.TooLong" = "%@ luzeegia da";
"Scene.Register.Error.Reason.TooShort" = "%@ laburregia da";
"Scene.Register.Error.Reason.Unreachable" = "dirudienez %@ ez da existitzen";
"Scene.Register.Error.Special.EmailInvalid" = "Hau ez da baliozko eposta helbidea";
"Scene.Register.Error.Special.PasswordTooShort" = "Pasahitza laburregia da (gutxienez 8 karaktere izan behar ditu)";
"Scene.Register.Error.Special.UsernameInvalid" = "Erabiltzaile-izenak karaktere alfanumerikoak eta azpimarrak soilik eduki ditzake";
"Scene.Register.Error.Special.UsernameTooLong" = "Erabiltzaile-izena luzeegia da (ezin ditu 30 karaktere baino gehiago izan)";
"Scene.Register.Input.Avatar.Delete" = "Ezabatu";
"Scene.Register.Input.DisplayName.Placeholder" = "pantaila-izena";
"Scene.Register.Input.Email.Placeholder" = "eposta";
"Scene.Register.Input.Invite.RegistrationUserInviteRequest" = "Zergatik elkartu nahi duzu?";
"Scene.Register.Input.Password.Accessibility.Checked" = "hautatuta";
"Scene.Register.Input.Password.Accessibility.Unchecked" = "hautatu gabe";
"Scene.Register.Input.Password.CharacterLimit" = "8 karaktere";
"Scene.Register.Input.Password.Hint" = "Pasahitzak zortzi karaktere izan behar ditu gutxienez";
"Scene.Register.Input.Password.Placeholder" = "pasahitza";
"Scene.Register.Input.Password.Require" = "Zure pasahitzak izan behar ditu gutxienez:";
"Scene.Register.Input.Username.DuplicatePrompt" = "Erabiltzaile-izen hau hartuta dago.";
"Scene.Register.Input.Username.Placeholder" = "erabiltzaile-izena";
"Scene.Register.Title" = "Hitz egin iezaguzu zuri buruz.";
"Scene.Report.Content1" = "Salaketan beste bidalketarik gehitu nahi duzu?";
"Scene.Report.Content2" = "Moderatzaileek besterik jakin behar dute salaketa honi buruz?";
"Scene.Report.ReportSentTitle" = "Mila esker salaketagatik, berrikusiko dugu.";
"Scene.Report.Reported" = "SALATUA";
"Scene.Report.Send" = "Bidali salaketa";
"Scene.Report.SkipToSend" = "Bidali iruzkinik gabe";
"Scene.Report.Step1" = "1. urratsa 2tik";
"Scene.Report.Step2" = "2. urratsa 2tik";
"Scene.Report.TextPlaceholder" = "Idatzi edo itsatsi iruzkin gehigarriak";
"Scene.Report.Title" = "Salatu %@";
"Scene.Report.TitleReport" = "Salatu";
"Scene.Search.Recommend.Accounts.Description" = "Kontu hauek jarraitu nahiko dituzu behar bada";
"Scene.Search.Recommend.Accounts.Follow" = "Jarraitu";
"Scene.Search.Recommend.Accounts.Title" = "Gustuko izan ditzakezun kontuak";
"Scene.Search.Recommend.ButtonText" = "Ikusi guztiak";
"Scene.Search.Recommend.HashTag.Description" = "Deigarri gertatzen ari diren traolak";
"Scene.Search.Recommend.HashTag.PeopleTalking" = "%@ pertsona hizketan";
"Scene.Search.Recommend.HashTag.Title" = "Mastodoneko joerak";
"Scene.Search.SearchBar.Cancel" = "Utzi";
"Scene.Search.SearchBar.Placeholder" = "Bilatu traolak eta erabiltzaileak";
"Scene.Search.Searching.Clear" = "Garbitu";
"Scene.Search.Searching.EmptyState.NoResults" = "Emaitzarik ez";
"Scene.Search.Searching.RecentSearch" = "Azken bilaketak";
"Scene.Search.Searching.Segment.All" = "Guztiak";
"Scene.Search.Searching.Segment.Hashtags" = "Traolak";
"Scene.Search.Searching.Segment.People" = "Jendea";
"Scene.Search.Searching.Segment.Posts" = "Bidalketak";
"Scene.Search.Title" = "Bilatu";
"Scene.ServerPicker.Button.Category.Academia" = "akademia";
"Scene.ServerPicker.Button.Category.Activism" = "aktibismoa";
"Scene.ServerPicker.Button.Category.All" = "Guztiak";
"Scene.ServerPicker.Button.Category.AllAccessiblityDescription" = "Kategoria: Guztiak";
"Scene.ServerPicker.Button.Category.Art" = "artea";
"Scene.ServerPicker.Button.Category.Food" = "janaria";
"Scene.ServerPicker.Button.Category.Furry" = "furry";
"Scene.ServerPicker.Button.Category.Games" = "jokoak";
"Scene.ServerPicker.Button.Category.General" = "orokorra";
"Scene.ServerPicker.Button.Category.Journalism" = "kazetaritza";
"Scene.ServerPicker.Button.Category.Lgbt" = "LGBTQ+";
"Scene.ServerPicker.Button.Category.Music" = "musika";
"Scene.ServerPicker.Button.Category.Regional" = "herrialdekoa";
"Scene.ServerPicker.Button.Category.Tech" = "teknologia";
"Scene.ServerPicker.Button.SeeLess" = "Ikusi gutxiago";
"Scene.ServerPicker.Button.SeeMore" = "Ikusi gehiago";
"Scene.ServerPicker.EmptyState.BadNetwork" = "Arazoren bat egon da datuak kargatzean. Egiaztatu zure Interneteko konexioa.";
"Scene.ServerPicker.EmptyState.FindingServers" = "Erabilgarri dauden zerbitzariak bilatzen...";
"Scene.ServerPicker.EmptyState.NoResults" = "Emaitzarik ez";
"Scene.ServerPicker.Input.Placeholder" = "Bilatu zerbitzari bat edo sortu zurea...";
"Scene.ServerPicker.Label.Category" = "KATEGORIA";
"Scene.ServerPicker.Label.Language" = "HIZKUNTZA";
"Scene.ServerPicker.Label.Users" = "ERABILTZAILEAK";
"Scene.ServerPicker.Subtitle" = "Aukeratu komunitate bat zure interes edo lurraldearen arabera, edo erabilera orokorreko bat.";
"Scene.ServerPicker.SubtitleExtend" = "Aukeratu komunitate bat zure interes edo lurraldearen arabera, edo erabilera orokorreko bat. Komunitate bakoitza erakunde edo norbanako independente batek kudeatzen du.";
"Scene.ServerPicker.Title" = "Aukeratu zerbitzari bat,
edozein zerbitzari.";
"Scene.ServerRules.Button.Confirm" = "Ados nago";
"Scene.ServerRules.PrivacyPolicy" = "pribatutasun-gidalerroak";
"Scene.ServerRules.Prompt" = "Jarraituz gero, %@ instantziaren zerbitzu-baldintzak eta pribatutasun-gidalerroak onartzen dituzu.";
"Scene.ServerRules.Subtitle" = "Arau hauek %@ instantziako administratzaileek ezarri dituzte.";
"Scene.ServerRules.TermsOfService" = "zerbitzu-baldintzak";
"Scene.ServerRules.Title" = "Oinarrizko arau batzuk.";
"Scene.Settings.Footer.MastodonDescription" = "Mastodon software librea da. Arazoen berri eman dezakezu GitHub bidez: %@ (%@)";
"Scene.Settings.Keyboard.CloseSettingsWindow" = "Itxi ezarpenen leihoa";
"Scene.Settings.Section.Appearance.Automatic" = "Automatikoa";
"Scene.Settings.Section.Appearance.Dark" = "Beti iluna";
"Scene.Settings.Section.Appearance.Light" = "Beti argia";
"Scene.Settings.Section.Appearance.Title" = "Itxura";
"Scene.Settings.Section.BoringZone.AccountSettings" = "Kontuaren ezarpenak";
"Scene.Settings.Section.BoringZone.Privacy" = "Pribatutasun-gidalerroak";
"Scene.Settings.Section.BoringZone.Terms" = "Zerbitzu-baldintzak";
"Scene.Settings.Section.BoringZone.Title" = "Eremu aspergarria";
"Scene.Settings.Section.LookAndFeel.Light" = "Argia";
"Scene.Settings.Section.LookAndFeel.ReallyDark" = "Oso iluna";
"Scene.Settings.Section.LookAndFeel.SortaDark" = "Ilun antzekoa";
"Scene.Settings.Section.LookAndFeel.Title" = "Itxura";
"Scene.Settings.Section.LookAndFeel.UseSystem" = "Erabili sistemakoa";
"Scene.Settings.Section.Notifications.Boosts" = "Nire bidalketa bultzatu du";
"Scene.Settings.Section.Notifications.Favorites" = "Nire bidalketa gogoko egitean";
"Scene.Settings.Section.Notifications.Follows" = "Jarraitzen nau";
"Scene.Settings.Section.Notifications.Mentions" = "Aipatu nau";
"Scene.Settings.Section.Notifications.Title" = "Jakinarazpenak";
"Scene.Settings.Section.Notifications.Trigger.Anyone" = "edozein";
"Scene.Settings.Section.Notifications.Trigger.Follow" = "jarraitzen dudan edonor";
"Scene.Settings.Section.Notifications.Trigger.Follower" = "jarraitzaile bat";
"Scene.Settings.Section.Notifications.Trigger.Noone" = "inor ez";
"Scene.Settings.Section.Notifications.Trigger.Title" = "Noiz jakinarazi:";
"Scene.Settings.Section.Preference.DisableAvatarAnimation" = "Desgaitu abatar animatuak";
"Scene.Settings.Section.Preference.DisableEmojiAnimation" = "Desgaitu emoji animatuak";
"Scene.Settings.Section.Preference.Title" = "Hobespenak";
"Scene.Settings.Section.Preference.TrueBlackDarkMode" = "Benetako modu beltz iluna";
"Scene.Settings.Section.Preference.UsingDefaultBrowser" = "Erabili nabigatzaile lehenetsia estekak irekitzeko";
"Scene.Settings.Section.SpicyZone.Clear" = "Garbitu multimediaren cachea";
"Scene.Settings.Section.SpicyZone.Signout" = "Amaitu saioa";
"Scene.Settings.Section.SpicyZone.Title" = "Eremu beroa";
"Scene.Settings.Title" = "Ezarpenak";
"Scene.SuggestionAccount.FollowExplain" = "Norbait jarraitzen duzunean, bere bidalketak zure hasierako denbora-lerroan agertuko zaizkizu.";
"Scene.SuggestionAccount.Title" = "Bilatu jarraitzeko jendea";
"Scene.Thread.BackTitle" = "Bidalketa";
"Scene.Thread.Title" = "%@(e)n bidalketa";
"Scene.Welcome.GetStarted" = "Nola hasi";
"Scene.Welcome.LogIn" = "Hasi saioa";
"Scene.Welcome.Slogan" = "Sare sozialak
berriz zure eskuetan.";
"Scene.Wizard.AccessibilityHint" = "Ukitu birritan morroi hau baztertzeko";
"Scene.Wizard.MultipleAccountSwitchIntroDescription" = "Aldatu hainbat konturen artean profilaren botoia sakatuta edukiz.";
"Scene.Wizard.NewInMastodon" = "Berria Mastodonen";

View File

@ -0,0 +1,390 @@
<?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>Irakurri gabeko jakinarazpen bat</string>
<key>other</key>
<string>Irakurri gabeko %ld jakinarazpen</string>
</dict>
</dict>
<key>a11y.plural.count.input_limit_exceeds</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>Sarrerak %#@character_count@ karaktereko muga gainditzen du</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>karaktere bat</string>
<key>other</key>
<string>%ld karaktere</string>
</dict>
</dict>
<key>a11y.plural.count.input_limit_remains</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>Sarreraren karaktere muga %#@character_count@ da oraindik</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>karaktere bat</string>
<key>other</key>
<string>%ld karaktere</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>bidalketa</string>
<key>other</key>
<string>bidalketa</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>Bidalketa bat</string>
<key>other</key>
<string>%ld bidalketa</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>Gogoko bat</string>
<key>other</key>
<string>%ld gogoko</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>Bultzada bat</string>
<key>other</key>
<string>%ld bultzada</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>Boto bat</string>
<key>other</key>
<string>%ld boto</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>Boto-emaile bat</string>
<key>other</key>
<string>%ld boto-emaile</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>Pertsona bat hizketan</string>
<key>other</key>
<string>%ld pertsona hizketan</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>Bat jarraitzen</string>
<key>other</key>
<string>%ld jarraitzen</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>Jarraitzaile bat</string>
<key>other</key>
<string>%ld jarraitzaile</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>Urte bat geratzen da</string>
<key>other</key>
<string>%ld urte geratzen dira</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>Hilabete bat geratzen da</string>
<key>other</key>
<string>%ld hilabete geratzen dira</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>Egun bat geratzen da</string>
<key>other</key>
<string>%ld egun geratzen dira</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>Ordu 1 geratzen da</string>
<key>other</key>
<string>%ld ordu geratzen dira</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>Minutu 1 geratzen da</string>
<key>other</key>
<string>%ld minutu geratzen dira</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>Segundo 1 geratzen da</string>
<key>other</key>
<string>%ld segundo geratzen dira</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>Duela urtebete</string>
<key>other</key>
<string>Duela %ld urte</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>Duela hilabete</string>
<key>other</key>
<string>Duela %ld hilabete</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>Duela egun bat</string>
<key>other</key>
<string>Duela %ld egun</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>Duela ordubete</string>
<key>other</key>
<string>Duela %ld ordu</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>Duela minutu bat</string>
<key>other</key>
<string>Duela %ld minutu</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>Duela segundo bat</string>
<key>other</key>
<string>Duela %ld segundo</string>
</dict>
</dict>
</dict>
</plist>

View File

@ -4,7 +4,7 @@
"Common.Alerts.CleanCache.Title" = "Vider le cache";
"Common.Alerts.Common.PleaseTryAgain" = "Merci de réessayer.";
"Common.Alerts.Common.PleaseTryAgainLater" = "Merci de réessayer plus tard.";
"Common.Alerts.DeletePost.Delete" = "Supprimer";
"Common.Alerts.DeletePost.Message" = "Voulez-vous vraiment supprimer ce message ?";
"Common.Alerts.DeletePost.Title" = "Voulez-vous vraiment supprimer ce message ?";
"Common.Alerts.DiscardPostContent.Message" = "Confirmez pour abandonner le contenu de votre message.";
"Common.Alerts.DiscardPostContent.Title" = "Abandonner le brouillon";
@ -28,7 +28,7 @@ Veuillez vérifier votre accès à Internet.";
"Common.Controls.Actions.Back" = "Retour";
"Common.Controls.Actions.BlockDomain" = "Bloquer %@";
"Common.Controls.Actions.Cancel" = "Annuler";
"Common.Controls.Actions.Compose" = "Compose";
"Common.Controls.Actions.Compose" = "Rédiger";
"Common.Controls.Actions.Confirm" = "Confirmer";
"Common.Controls.Actions.Continue" = "Continuer";
"Common.Controls.Actions.CopyPhoto" = "Copier la photo";
@ -41,6 +41,7 @@ Veuillez vérifier votre accès à Internet.";
"Common.Controls.Actions.Next" = "Suivant";
"Common.Controls.Actions.Ok" = "OK";
"Common.Controls.Actions.Open" = "Ouvrir";
"Common.Controls.Actions.OpenInBrowser" = "Ouvrir dans le navigateur";
"Common.Controls.Actions.OpenInSafari" = "Ouvrir dans Safari";
"Common.Controls.Actions.Preview" = "Aperçu";
"Common.Controls.Actions.Previous" = "Précédent";
@ -93,6 +94,7 @@ Veuillez vérifier votre accès à Internet.";
"Common.Controls.Keyboard.Timeline.ToggleFavorite" = "Basculer le favori lors de la publication";
"Common.Controls.Keyboard.Timeline.ToggleReblog" = "Basculer le reblogue lors de la publication";
"Common.Controls.Status.Actions.Favorite" = "Favori";
"Common.Controls.Status.Actions.Hide" = "Cacher";
"Common.Controls.Status.Actions.Menu" = "Menu";
"Common.Controls.Status.Actions.Reblog" = "Rebloguer";
"Common.Controls.Status.Actions.Reply" = "Répondre";
@ -112,6 +114,10 @@ Veuillez vérifier votre accès à Internet.";
"Common.Controls.Status.Tag.Url" = "URL";
"Common.Controls.Status.UserReblogged" = "%@ a reblogué";
"Common.Controls.Status.UserRepliedTo" = "À répondu à %@";
"Common.Controls.Status.Visibility.Direct" = "Seul·e lutilisateur·rice mentionnée peut voir ce message.";
"Common.Controls.Status.Visibility.Private" = "Seul·e·s leurs abonné·e·s peuvent voir ce message.";
"Common.Controls.Status.Visibility.PrivateFromMe" = "Seul·e·s mes abonné·e·s peuvent voir ce message.";
"Common.Controls.Status.Visibility.Unlisted" = "Tout le monde peut voir ce message mais ne sera pas affiché sur le fil public.";
"Common.Controls.Tabs.Home" = "Accueil";
"Common.Controls.Tabs.Notification" = "Notification";
"Common.Controls.Tabs.Profile" = "Profil";
@ -135,8 +141,8 @@ Votre profil ressemble à ça pour lui.";
"Common.Controls.Timeline.Loader.ShowMoreReplies" = "Charger plus de réponses";
"Common.Controls.Timeline.Timestamp.Now" = "À linstant";
"Scene.AccountList.AddAccount" = "Ajouter un compte";
"Scene.AccountList.DismissAccountSwitcher" = "Dismiss Account Switcher";
"Scene.AccountList.TabBarHint" = "Current selected profile: %@. Double tap then hold to show account switcher";
"Scene.AccountList.DismissAccountSwitcher" = "Rejeter le commutateur de compte";
"Scene.AccountList.TabBarHint" = "Profil sélectionné actuel: %@. Double appui puis maintenez enfoncé pour afficher le changement de compte";
"Scene.Compose.Accessibility.AppendAttachment" = "Joindre un document";
"Scene.Compose.Accessibility.AppendPoll" = "Ajouter un Sondage";
"Scene.Compose.Accessibility.CustomEmojiPicker" = "Sélecteur démojis personnalisés";
@ -178,8 +184,8 @@ téléversé sur Mastodon.";
"Scene.Compose.Visibility.Private" = "Abonnés seulement";
"Scene.Compose.Visibility.Public" = "Public";
"Scene.Compose.Visibility.Unlisted" = "Non listé";
"Scene.ConfirmEmail.Button.DontReceiveEmail" = "Je nai jamais reçu de courriel";
"Scene.ConfirmEmail.Button.OpenEmailApp" = "Ouvrir lapplication de courriel";
"Scene.ConfirmEmail.Button.Resend" = "Renvoyer";
"Scene.ConfirmEmail.DontReceiveEmail.Description" = "Vérifiez que votre adresse courriel est valide ainsi que votre fichier spam si ce nest pas déjà fait.";
"Scene.ConfirmEmail.DontReceiveEmail.ResendEmail" = "Renvoyer le courriel";
"Scene.ConfirmEmail.DontReceiveEmail.Title" = "Vérifier vos courriels";
@ -192,7 +198,7 @@ tapotez le lien pour confirmer votre compte.";
"Scene.ConfirmEmail.Title" = "Une dernière chose.";
"Scene.Favorite.Title" = "Vos favoris";
"Scene.Follower.Footer" = "Les abonné·e·s issus des autres serveurs ne sont pas affiché·e·s.";
"Scene.Following.Footer" = "Follows from other servers are not displayed.";
"Scene.Following.Footer" = "Les abonnés issus des autres serveurs ne sont pas affichés.";
"Scene.HomeTimeline.NavigationBarState.NewPosts" = "Voir les nouvelles publications";
"Scene.HomeTimeline.NavigationBarState.Offline" = "Hors ligne";
"Scene.HomeTimeline.NavigationBarState.Published" = "Publié!";
@ -200,14 +206,14 @@ tapotez le lien pour confirmer votre compte.";
"Scene.HomeTimeline.Title" = "Accueil";
"Scene.Notification.Keyobard.ShowEverything" = "Tout Afficher";
"Scene.Notification.Keyobard.ShowMentions" = "Afficher les mentions";
"Scene.Notification.NotificationDescription.FavoritedYourPost" = "a ajouté votre message à ses favoris";
"Scene.Notification.NotificationDescription.FollowedYou" = "sest abonné à vous";
"Scene.Notification.NotificationDescription.MentionedYou" = "vous a mentionné";
"Scene.Notification.NotificationDescription.PollHasEnded" = "le sondage est terminé";
"Scene.Notification.NotificationDescription.RebloggedYourPost" = "a partagé votre message";
"Scene.Notification.NotificationDescription.RequestToFollowYou" = "vous a envoyé une demande dabonnement";
"Scene.Notification.Title.Everything" = "Tout";
"Scene.Notification.Title.Mentions" = "Mentions";
"Scene.Notification.UserFavorited Your Post" = "%@ a mis votre pouet en favori";
"Scene.Notification.UserFollowedYou" = "%@ sest abonné à vous";
"Scene.Notification.UserMentionedYou" = "%@ vous a mentionné";
"Scene.Notification.UserRebloggedYourPost" = "%@ a partagé votre publication";
"Scene.Notification.UserRequestedToFollowYou" = "%@ a demandé à vous suivre";
"Scene.Notification.UserYourPollHasEnded" = "%@ votre sondage est terminé";
"Scene.Preview.Keyboard.ClosePreview" = "Fermer l'aperçu";
"Scene.Preview.Keyboard.ShowNext" = "Afficher le suivant";
"Scene.Preview.Keyboard.ShowPrevious" = "Afficher le précédent";
@ -217,12 +223,18 @@ tapotez le lien pour confirmer votre compte.";
"Scene.Profile.Fields.AddRow" = "Ajouter une rangée";
"Scene.Profile.Fields.Placeholder.Content" = "Contenu";
"Scene.Profile.Fields.Placeholder.Label" = "Étiquette";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUsre.Message" = "Confirmer le déblocage de %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUsre.Title" = "Débloquer le compte";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Confirmer le blocage de %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Bloquer le compte";
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Message" = "Êtes-vous sûr de vouloir mettre en sourdine %@";
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Masquer le compte";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Confirmer le déblocage de %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Débloquer le compte";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Êtes-vous sûr de vouloir désactiver la sourdine de %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Title" = "Ne plus mettre en sourdine ce compte";
"Scene.Profile.SegmentedControl.About" = "À propos";
"Scene.Profile.SegmentedControl.Media" = "Média";
"Scene.Profile.SegmentedControl.Posts" = "Publications";
"Scene.Profile.SegmentedControl.PostsAndReplies" = "Messages et réponses";
"Scene.Profile.SegmentedControl.Replies" = "Réponses";
"Scene.Register.Error.Item.Agreement" = "Accord";
"Scene.Register.Error.Item.Email" = "Courriel";
@ -248,19 +260,26 @@ tapotez le lien pour confirmer votre compte.";
"Scene.Register.Input.DisplayName.Placeholder" = "nom affiché";
"Scene.Register.Input.Email.Placeholder" = "courriel";
"Scene.Register.Input.Invite.RegistrationUserInviteRequest" = "Pourquoi voulez-vous vous inscrire ?";
"Scene.Register.Input.Password.Accessibility.Checked" = "vérifié";
"Scene.Register.Input.Password.Accessibility.Unchecked" = "non vérifié";
"Scene.Register.Input.Password.CharacterLimit" = "8 caractères";
"Scene.Register.Input.Password.Hint" = "Votre mot de passe doit contenir au moins 8 caractères";
"Scene.Register.Input.Password.Placeholder" = "mot de passe";
"Scene.Register.Input.Password.Require" = "Votre mot de passe doit être composé dau moins :";
"Scene.Register.Input.Username.DuplicatePrompt" = "Ce nom d'utilisateur est déjà pris.";
"Scene.Register.Input.Username.Placeholder" = "nom d'utilisateur";
"Scene.Register.Title" = "Parlez-nous de vous.";
"Scene.Report.Content1" = "Y a-t-il dautres messages que vous aimeriez ajouter au signalement?";
"Scene.Report.Content2" = "Y a-t-il quelque chose que les modérateurs devraient savoir sur ce rapport ?";
"Scene.Report.ReportSentTitle" = "Merci de nous lavoir signalé, nous allons examiner cela.";
"Scene.Report.Reported" = "SIGNALÉ";
"Scene.Report.Send" = "Envoyer le rapport";
"Scene.Report.SkipToSend" = "Envoyer sans commentaire";
"Scene.Report.Step1" = "Étape 1 de 2";
"Scene.Report.Step2" = "Étape 2 de 2";
"Scene.Report.TextPlaceholder" = "Tapez ou collez des informations supplémentaires";
"Scene.Report.Title" = "Signaler %@";
"Scene.Report.TitleReport" = "Signalement";
"Scene.Search.Recommend.Accounts.Description" = "Vous aimeriez peut-être suivre ces comptes";
"Scene.Search.Recommend.Accounts.Follow" = "Suivre";
"Scene.Search.Recommend.Accounts.Title" = "Comptes que vous pourriez aimer";
@ -301,6 +320,8 @@ tapotez le lien pour confirmer votre compte.";
"Scene.ServerPicker.Label.Category" = "CATÉGORIE";
"Scene.ServerPicker.Label.Language" = "LANGUE";
"Scene.ServerPicker.Label.Users" = "UTILISATEUR·RICE·S";
"Scene.ServerPicker.Subtitle" = "Choisissez une communauté en fonction de vos intérêts, de votre région ou de votre objectif général.";
"Scene.ServerPicker.SubtitleExtend" = "Choisissez une communauté basée sur vos intérêts, votre région ou un but général. Chaque communauté est gérée par une organisation ou un individu entièrement indépendant.";
"Scene.ServerPicker.Title" = "Choisissez un serveur,
n'importe quel serveur.";
"Scene.ServerRules.Button.Confirm" = "Jaccepte";
@ -319,6 +340,11 @@ n'importe quel serveur.";
"Scene.Settings.Section.BoringZone.Privacy" = "Politique de confidentialité";
"Scene.Settings.Section.BoringZone.Terms" = "Entente de service";
"Scene.Settings.Section.BoringZone.Title" = "La zone ennuyante";
"Scene.Settings.Section.LookAndFeel.Light" = "Clair";
"Scene.Settings.Section.LookAndFeel.ReallyDark" = "Très sombre";
"Scene.Settings.Section.LookAndFeel.SortaDark" = "Légèrement sombre";
"Scene.Settings.Section.LookAndFeel.Title" = "Apparence";
"Scene.Settings.Section.LookAndFeel.UseSystem" = "Utiliser le thème du système";
"Scene.Settings.Section.Notifications.Boosts" = "Reblogue mon message";
"Scene.Settings.Section.Notifications.Favorites" = "Ajoute lune de mes publications à ses favoris";
"Scene.Settings.Section.Notifications.Follows" = "Me suit";
@ -342,6 +368,8 @@ n'importe quel serveur.";
"Scene.SuggestionAccount.Title" = "Trouver des personnes à suivre";
"Scene.Thread.BackTitle" = "Publication";
"Scene.Thread.Title" = "Publication de %@";
"Scene.Welcome.GetStarted" = "Prise en main";
"Scene.Welcome.LogIn" = "Se connecter";
"Scene.Welcome.Slogan" = "Le réseau social qui vous rend le contrôle.";
"Scene.Wizard.AccessibilityHint" = "Tapotez deux fois pour fermer cet assistant";
"Scene.Wizard.MultipleAccountSwitchIntroDescription" = "Basculez entre plusieurs comptes en appuyant de maniere prolongée sur le bouton profil.";

View File

@ -37,7 +37,7 @@
<key>a11y.plural.count.input_limit_remains</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>Input limit remains %#@character_count@</string>
<string>La limite d'entrée reste %#@character_count@</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>

View File

@ -4,7 +4,7 @@
"Common.Alerts.CleanCache.Title" = "Falamhaich an tasgadan";
"Common.Alerts.Common.PleaseTryAgain" = "Feuch ris a-rithist.";
"Common.Alerts.Common.PleaseTryAgainLater" = "Feuch ris a-rithist an ceann greis.";
"Common.Alerts.DeletePost.Delete" = "Sguab às";
"Common.Alerts.DeletePost.Message" = "Are you sure you want to delete this post?";
"Common.Alerts.DeletePost.Title" = "A bheil thu cinnteach gu bheil thu airson am post seo a sguabadh às?";
"Common.Alerts.DiscardPostContent.Message" = "Dearbh tilgeil air falbh susbaint a phuist a sgrìobh thu.";
"Common.Alerts.DiscardPostContent.Title" = "Tilg air falbh an dreachd";
@ -41,6 +41,7 @@ Thoir sùil air a cheangal agad ris an eadar-lìon.";
"Common.Controls.Actions.Next" = "Air adhart";
"Common.Controls.Actions.Ok" = "Ceart ma-thà";
"Common.Controls.Actions.Open" = "Fosgail";
"Common.Controls.Actions.OpenInBrowser" = "Fosgail sa bhrabhsair";
"Common.Controls.Actions.OpenInSafari" = "Fosgail ann an Safari";
"Common.Controls.Actions.Preview" = "Ro-sheall";
"Common.Controls.Actions.Previous" = "Air ais";
@ -93,6 +94,7 @@ Thoir sùil air a cheangal agad ris an eadar-lìon.";
"Common.Controls.Keyboard.Timeline.ToggleFavorite" = "Toglaich annsachd a phuist";
"Common.Controls.Keyboard.Timeline.ToggleReblog" = "Toglaich brosnachadh a phuist";
"Common.Controls.Status.Actions.Favorite" = "Cuir ris na h-annsachdan";
"Common.Controls.Status.Actions.Hide" = "Hide";
"Common.Controls.Status.Actions.Menu" = "Clàr-taice";
"Common.Controls.Status.Actions.Reblog" = "Brosnaich";
"Common.Controls.Status.Actions.Reply" = "Freagair";
@ -112,6 +114,10 @@ Thoir sùil air a cheangal agad ris an eadar-lìon.";
"Common.Controls.Status.Tag.Url" = "URL";
"Common.Controls.Status.UserReblogged" = "Tha %@ ga bhrosnachadh";
"Common.Controls.Status.UserRepliedTo" = "Air %@ fhreagairt";
"Common.Controls.Status.Visibility.Direct" = "Only mentioned user can see this post.";
"Common.Controls.Status.Visibility.Private" = "Only their followers can see this post.";
"Common.Controls.Status.Visibility.PrivateFromMe" = "Only my followers can see this post.";
"Common.Controls.Status.Visibility.Unlisted" = "Everyone can see this post but not display in the public timeline.";
"Common.Controls.Tabs.Home" = "Dachaigh";
"Common.Controls.Tabs.Notification" = "Brath";
"Common.Controls.Tabs.Profile" = "Pròifil";
@ -178,8 +184,8 @@ a luchdadh suas gu Mastodon.";
"Scene.Compose.Visibility.Private" = "Luchd-leantainn a-mhàin";
"Scene.Compose.Visibility.Public" = "Poblach";
"Scene.Compose.Visibility.Unlisted" = "Falaichte o liostaichean";
"Scene.ConfirmEmail.Button.DontReceiveEmail" = "Cha d fhuair mi post-d a-riamh";
"Scene.ConfirmEmail.Button.OpenEmailApp" = "Fosgail aplacaid a phuist-d";
"Scene.ConfirmEmail.Button.Resend" = "Ath-chuir";
"Scene.ConfirmEmail.DontReceiveEmail.Description" = "Dearbh gu bheil an seòladh puist-d agad mar bu chòir agus nach eil dad ann am pasgan an truilleis.";
"Scene.ConfirmEmail.DontReceiveEmail.ResendEmail" = "Cuir am post-d a-rithist";
"Scene.ConfirmEmail.DontReceiveEmail.Title" = "Thoir sùil air a phost-d agad";
@ -200,14 +206,14 @@ thoir gnogag air a chunntas a dhearbhadh a chunntais agad.";
"Scene.HomeTimeline.Title" = "Dachaigh";
"Scene.Notification.Keyobard.ShowEverything" = "Seall a h-uile càil";
"Scene.Notification.Keyobard.ShowMentions" = "Seall na h-iomraidhean";
"Scene.Notification.NotificationDescription.FavoritedYourPost" = "favorited your post";
"Scene.Notification.NotificationDescription.FollowedYou" = "followed you";
"Scene.Notification.NotificationDescription.MentionedYou" = "mentioned you";
"Scene.Notification.NotificationDescription.PollHasEnded" = "poll has ended";
"Scene.Notification.NotificationDescription.RebloggedYourPost" = "reblogged your post";
"Scene.Notification.NotificationDescription.RequestToFollowYou" = "request to follow you";
"Scene.Notification.Title.Everything" = "A h-uile rud";
"Scene.Notification.Title.Mentions" = "Iomraidhean";
"Scene.Notification.UserFavorited Your Post" = "Is annsa le %@ am post agad";
"Scene.Notification.UserFollowedYou" = "Tha %@ a leantainn ort a-nis";
"Scene.Notification.UserMentionedYou" = "Thug %@ iomradh ort";
"Scene.Notification.UserRebloggedYourPost" = "Bhrosnaich %@ am post agad";
"Scene.Notification.UserRequestedToFollowYou" = "Dhiarr %@ leantainn ort";
"Scene.Notification.UserYourPollHasEnded" = "Crìoch cunntais-bheachd aig %@";
"Scene.Preview.Keyboard.ClosePreview" = "Dùin an ro-shealladh";
"Scene.Preview.Keyboard.ShowNext" = "Air adhart";
"Scene.Preview.Keyboard.ShowPrevious" = "Air ais";
@ -217,12 +223,18 @@ thoir gnogag air a chunntas a dhearbhadh a chunntais agad.";
"Scene.Profile.Fields.AddRow" = "Cuir ràgh ris";
"Scene.Profile.Fields.Placeholder.Content" = "Susbaint";
"Scene.Profile.Fields.Placeholder.Label" = "Leubail";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUsre.Message" = "Dearbh dì-bhacadh %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUsre.Title" = "Dì-bhac an cunntas";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Confirm to block %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Block Account";
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Message" = "Confirm to mute %@";
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Mute Account";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Confirm to unblock %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Unblock Account";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Dearbh dì-mhùchadh %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Title" = "Dì-mhùch an cunntas";
"Scene.Profile.SegmentedControl.About" = "About";
"Scene.Profile.SegmentedControl.Media" = "Meadhanan";
"Scene.Profile.SegmentedControl.Posts" = "Postaichean";
"Scene.Profile.SegmentedControl.PostsAndReplies" = "Posts and Replies";
"Scene.Profile.SegmentedControl.Replies" = "Freagairtean";
"Scene.Register.Error.Item.Agreement" = "Aonta";
"Scene.Register.Error.Item.Email" = "Post-d";
@ -248,19 +260,26 @@ thoir gnogag air a chunntas a dhearbhadh a chunntais agad.";
"Scene.Register.Input.DisplayName.Placeholder" = "ainm-taisbeanaidh";
"Scene.Register.Input.Email.Placeholder" = "post-d";
"Scene.Register.Input.Invite.RegistrationUserInviteRequest" = "Carson a bu mhiann leat ballrachd fhaighinn?";
"Scene.Register.Input.Password.Accessibility.Checked" = "le cromag";
"Scene.Register.Input.Password.Accessibility.Unchecked" = "gun chromag";
"Scene.Register.Input.Password.CharacterLimit" = "8 caractaran";
"Scene.Register.Input.Password.Hint" = "Feumaidh ochd caractaran a bhith san fhacal-fhaire agad air a char as giorra";
"Scene.Register.Input.Password.Placeholder" = "facal-faire";
"Scene.Register.Input.Password.Require" = "Feumaidh am facal-faire agad co-dhiù:";
"Scene.Register.Input.Username.DuplicatePrompt" = "Tha an t-ainm-cleachdaiche seo aig cuideigin eile.";
"Scene.Register.Input.Username.Placeholder" = "ainm-cleachdaiche";
"Scene.Register.Title" = "Innis dhuinn mu do dhèidhinn.";
"Scene.Report.Content1" = "A bheil post sam bith eile ann a bu mhiann leat cur ris a ghearan?";
"Scene.Report.Content2" = "A bheil rud sam bith ann a bu mhiann leat innse dha na maoir mun ghearan seo?";
"Scene.Report.ReportSentTitle" = "Thanks for reporting, well look into this.";
"Scene.Report.Reported" = "REPORTED";
"Scene.Report.Send" = "Cuir an gearan";
"Scene.Report.SkipToSend" = "Cuir gun bheachd ris";
"Scene.Report.Step1" = "Ceum 1 à 2";
"Scene.Report.Step2" = "Ceum 2 à 2";
"Scene.Report.TextPlaceholder" = "Sgrìobh no cuir ann beachdan a bharrachd";
"Scene.Report.Title" = "Dèan gearan mu %@";
"Scene.Report.TitleReport" = "Report";
"Scene.Search.Recommend.Accounts.Description" = "Saoil am bu toigh leat leantainn air na cunntasan seo?";
"Scene.Search.Recommend.Accounts.Follow" = "Lean air";
"Scene.Search.Recommend.Accounts.Title" = "Cunntasan a chòrdas riut ma dhfhaoidte";
@ -301,6 +320,8 @@ thoir gnogag air a chunntas a dhearbhadh a chunntais agad.";
"Scene.ServerPicker.Label.Category" = "ROINN-SEÒRSA";
"Scene.ServerPicker.Label.Language" = "CÀNAN";
"Scene.ServerPicker.Label.Users" = "CLEACHDAICHEAN";
"Scene.ServerPicker.Subtitle" = "Tagh coimhearsnachd stèidhichte air d ùidhean no an roinn-dùthcha agad no tè choitcheann.";
"Scene.ServerPicker.SubtitleExtend" = "Tagh coimhearsnachd stèidhichte air d ùidhean no an roinn-dùthcha agad no tè choitcheann. Tha gach coimhearsnachd ga stiùireadh le buidheann no neach gu neo-eisimeileach.";
"Scene.ServerPicker.Title" = "Tagh frithealaiche sam bith.";
"Scene.ServerRules.Button.Confirm" = "Gabhaidh mi ris";
"Scene.ServerRules.PrivacyPolicy" = "poileasaidh prìobhaideachd";
@ -318,6 +339,11 @@ thoir gnogag air a chunntas a dhearbhadh a chunntais agad.";
"Scene.Settings.Section.BoringZone.Privacy" = "Am poileasaidh prìobhaideachd";
"Scene.Settings.Section.BoringZone.Terms" = "Teirmichean na seirbheise";
"Scene.Settings.Section.BoringZone.Title" = "An earrann ràsanach";
"Scene.Settings.Section.LookAndFeel.Light" = "Light";
"Scene.Settings.Section.LookAndFeel.ReallyDark" = "Really Dark";
"Scene.Settings.Section.LookAndFeel.SortaDark" = "Sorta Dark";
"Scene.Settings.Section.LookAndFeel.Title" = "Look and Feel";
"Scene.Settings.Section.LookAndFeel.UseSystem" = "Use System";
"Scene.Settings.Section.Notifications.Boosts" = "Nuair a bhrosnaicheas iad post uam";
"Scene.Settings.Section.Notifications.Favorites" = "Nuair as annsa leotha am post agam";
"Scene.Settings.Section.Notifications.Follows" = "Nuair a leanas iad orm";
@ -341,6 +367,8 @@ thoir gnogag air a chunntas a dhearbhadh a chunntais agad.";
"Scene.SuggestionAccount.Title" = "Lorg daoine a leanas tu";
"Scene.Thread.BackTitle" = "Post";
"Scene.Thread.Title" = "Post le %@";
"Scene.Welcome.GetStarted" = "Dèan toiseach-tòiseachaidh";
"Scene.Welcome.LogIn" = "Clàraich a-steach";
"Scene.Welcome.Slogan" = "A cur nan lìonraidhean sòisealta
nad làmhan fhèin.";
"Scene.Wizard.AccessibilityHint" = "Thoir gnogag dhùbailte a leigeil seachad an draoidh seo";

View File

@ -4,7 +4,7 @@
"Common.Alerts.CleanCache.Title" = "キャッシュを消去";
"Common.Alerts.Common.PleaseTryAgain" = "もう一度お試しください。";
"Common.Alerts.Common.PleaseTryAgainLater" = "後でもう一度お試しください。";
"Common.Alerts.DeletePost.Delete" = "消去";
"Common.Alerts.DeletePost.Message" = "Are you sure you want to delete this post?";
"Common.Alerts.DeletePost.Title" = "この投稿を消去しますか?";
"Common.Alerts.DiscardPostContent.Message" = "この操作は取り消しできません。下書きは失われます。";
"Common.Alerts.DiscardPostContent.Title" = "投稿を破棄しますか?";
@ -28,7 +28,7 @@
"Common.Controls.Actions.Back" = "戻る";
"Common.Controls.Actions.BlockDomain" = "%@をブロック";
"Common.Controls.Actions.Cancel" = "キャンセル";
"Common.Controls.Actions.Compose" = "Compose";
"Common.Controls.Actions.Compose" = "新規作成";
"Common.Controls.Actions.Confirm" = "確認";
"Common.Controls.Actions.Continue" = "続ける";
"Common.Controls.Actions.CopyPhoto" = "写真をコピー";
@ -41,6 +41,7 @@
"Common.Controls.Actions.Next" = "次";
"Common.Controls.Actions.Ok" = "OK";
"Common.Controls.Actions.Open" = "開く";
"Common.Controls.Actions.OpenInBrowser" = "ブラウザで開く";
"Common.Controls.Actions.OpenInSafari" = "Safariで開く";
"Common.Controls.Actions.Preview" = "プレビュー";
"Common.Controls.Actions.Previous" = "前";
@ -93,6 +94,7 @@
"Common.Controls.Keyboard.Timeline.ToggleFavorite" = "お気に入り登録を切り替える";
"Common.Controls.Keyboard.Timeline.ToggleReblog" = "ブーストを切り替える";
"Common.Controls.Status.Actions.Favorite" = "お気に入り";
"Common.Controls.Status.Actions.Hide" = "Hide";
"Common.Controls.Status.Actions.Menu" = "メニュー";
"Common.Controls.Status.Actions.Reblog" = "ブースト";
"Common.Controls.Status.Actions.Reply" = "リプライ";
@ -112,6 +114,10 @@
"Common.Controls.Status.Tag.Url" = "URL";
"Common.Controls.Status.UserReblogged" = "%@がブースト";
"Common.Controls.Status.UserRepliedTo" = "%@がリプライ";
"Common.Controls.Status.Visibility.Direct" = "Only mentioned user can see this post.";
"Common.Controls.Status.Visibility.Private" = "Only their followers can see this post.";
"Common.Controls.Status.Visibility.PrivateFromMe" = "Only my followers can see this post.";
"Common.Controls.Status.Visibility.Unlisted" = "Everyone can see this post but not display in the public timeline.";
"Common.Controls.Tabs.Home" = "ホーム";
"Common.Controls.Tabs.Notification" = "通知";
"Common.Controls.Tabs.Profile" = "プロフィール";
@ -131,8 +137,8 @@
"Common.Controls.Timeline.Loader.ShowMoreReplies" = "リプライをもっとみる";
"Common.Controls.Timeline.Timestamp.Now" = "今";
"Scene.AccountList.AddAccount" = "アカウントを追加";
"Scene.AccountList.DismissAccountSwitcher" = "Dismiss Account Switcher";
"Scene.AccountList.TabBarHint" = "Current selected profile: %@. Double tap then hold to show account switcher";
"Scene.AccountList.DismissAccountSwitcher" = "アカウント切替画面を閉じます";
"Scene.AccountList.TabBarHint" = "現在のアカウント: %@. ダブルタップしてアカウント切替画面を表示します";
"Scene.Compose.Accessibility.AppendAttachment" = "アタッチメントの追加";
"Scene.Compose.Accessibility.AppendPoll" = "投票を追加";
"Scene.Compose.Accessibility.CustomEmojiPicker" = "カスタム絵文字ピッカー";
@ -173,8 +179,8 @@
"Scene.Compose.Visibility.Private" = "フォロワーのみ";
"Scene.Compose.Visibility.Public" = "パブリック";
"Scene.Compose.Visibility.Unlisted" = "非表示";
"Scene.ConfirmEmail.Button.DontReceiveEmail" = "メールがこない";
"Scene.ConfirmEmail.Button.OpenEmailApp" = "メールアプリを開く";
"Scene.ConfirmEmail.Button.Resend" = "Resend";
"Scene.ConfirmEmail.DontReceiveEmail.Description" = "メールアドレスが正しいかどうか、また、迷惑メールフォルダに入っていないかどうかも確認してください。";
"Scene.ConfirmEmail.DontReceiveEmail.ResendEmail" = "もう一度メールを送信";
"Scene.ConfirmEmail.DontReceiveEmail.Title" = "メールをチェックしてください";
@ -185,8 +191,8 @@
"Scene.ConfirmEmail.Subtitle" = "先程 %@ にメールを送信しました。リンクをタップしてアカウントを確認してください。";
"Scene.ConfirmEmail.Title" = "さいごにもうひとつ。";
"Scene.Favorite.Title" = "お気に入り";
"Scene.Follower.Footer" = "Followers from other servers are not displayed.";
"Scene.Following.Footer" = "Follows from other servers are not displayed.";
"Scene.Follower.Footer" = "他のサーバーからのフォロワーは表示されません。";
"Scene.Following.Footer" = "他のサーバーにいるフォローは表示されません。";
"Scene.HomeTimeline.NavigationBarState.NewPosts" = "新しい投稿を見る";
"Scene.HomeTimeline.NavigationBarState.Offline" = "オフライン";
"Scene.HomeTimeline.NavigationBarState.Published" = "投稿しました!";
@ -194,14 +200,14 @@
"Scene.HomeTimeline.Title" = "ホーム";
"Scene.Notification.Keyobard.ShowEverything" = "すべて見る";
"Scene.Notification.Keyobard.ShowMentions" = "メンションを見る";
"Scene.Notification.NotificationDescription.FavoritedYourPost" = "favorited your post";
"Scene.Notification.NotificationDescription.FollowedYou" = "followed you";
"Scene.Notification.NotificationDescription.MentionedYou" = "mentioned you";
"Scene.Notification.NotificationDescription.PollHasEnded" = "poll has ended";
"Scene.Notification.NotificationDescription.RebloggedYourPost" = "reblogged your post";
"Scene.Notification.NotificationDescription.RequestToFollowYou" = "request to follow you";
"Scene.Notification.Title.Everything" = "すべて";
"Scene.Notification.Title.Mentions" = "メンション";
"Scene.Notification.UserFavorited Your Post" = "%@ がお気に入り登録しました";
"Scene.Notification.UserFollowedYou" = "%@ にフォローされました";
"Scene.Notification.UserMentionedYou" = "%@ に返信されました";
"Scene.Notification.UserRebloggedYourPost" = "%@ がブーストしました";
"Scene.Notification.UserRequestedToFollowYou" = "%@ がフォローリクエストを送信しました";
"Scene.Notification.UserYourPollHasEnded" = "%@ 投票が終了しました";
"Scene.Preview.Keyboard.ClosePreview" = "プレビューを閉じる";
"Scene.Preview.Keyboard.ShowNext" = "次を見る";
"Scene.Preview.Keyboard.ShowPrevious" = "前を見る";
@ -211,12 +217,18 @@
"Scene.Profile.Fields.AddRow" = "行追加";
"Scene.Profile.Fields.Placeholder.Content" = "コンテンツ";
"Scene.Profile.Fields.Placeholder.Label" = "ラベル";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUsre.Message" = "%@のブロックを解除しますか?";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUsre.Title" = "ブロックを解除";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Confirm to block %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Block Account";
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Message" = "Confirm to mute %@";
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Mute Account";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Confirm to unblock %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Unblock Account";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "%@をミュートしますか?";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Title" = "ミュートを解除";
"Scene.Profile.SegmentedControl.About" = "About";
"Scene.Profile.SegmentedControl.Media" = "メディア";
"Scene.Profile.SegmentedControl.Posts" = "投稿";
"Scene.Profile.SegmentedControl.PostsAndReplies" = "Posts and Replies";
"Scene.Profile.SegmentedControl.Replies" = "リプライ";
"Scene.Register.Error.Item.Agreement" = "契約";
"Scene.Register.Error.Item.Email" = "メール";
@ -242,19 +254,26 @@
"Scene.Register.Input.DisplayName.Placeholder" = "表示名";
"Scene.Register.Input.Email.Placeholder" = "メール";
"Scene.Register.Input.Invite.RegistrationUserInviteRequest" = "なぜ参加したいと思ったのですか?";
"Scene.Register.Input.Password.Accessibility.Checked" = "checked";
"Scene.Register.Input.Password.Accessibility.Unchecked" = "unchecked";
"Scene.Register.Input.Password.CharacterLimit" = "8 characters";
"Scene.Register.Input.Password.Hint" = "パスワードは最低でも8文字必要です。";
"Scene.Register.Input.Password.Placeholder" = "パスワード";
"Scene.Register.Input.Password.Require" = "Your password needs at least:";
"Scene.Register.Input.Username.DuplicatePrompt" = "このユーザー名は使用されています";
"Scene.Register.Input.Username.Placeholder" = "ユーザー名";
"Scene.Register.Title" = "あなたのことを教えてください";
"Scene.Report.Content1" = "他に報告したい投稿はありますか?";
"Scene.Report.Content2" = "この報告についてモデレーターに言いたいことはありますか?";
"Scene.Report.ReportSentTitle" = "Thanks for reporting, well look into this.";
"Scene.Report.Reported" = "REPORTED";
"Scene.Report.Send" = "報告を送信";
"Scene.Report.SkipToSend" = "コメントなしで送信";
"Scene.Report.Step1" = "ステップ 1/2";
"Scene.Report.Step2" = "ステップ 2/2";
"Scene.Report.TextPlaceholder" = "追加コメントを入力";
"Scene.Report.Title" = "%@を報告";
"Scene.Report.TitleReport" = "Report";
"Scene.Search.Recommend.Accounts.Description" = "以下のアカウントをフォローしてみてはいかがでしょうか?";
"Scene.Search.Recommend.Accounts.Follow" = "フォロー";
"Scene.Search.Recommend.Accounts.Title" = "おすすめのアカウント";
@ -278,7 +297,7 @@
"Scene.ServerPicker.Button.Category.AllAccessiblityDescription" = "カテゴリ: すべて";
"Scene.ServerPicker.Button.Category.Art" = "アート";
"Scene.ServerPicker.Button.Category.Food" = "食べ物";
"Scene.ServerPicker.Button.Category.Furry" = "furry";
"Scene.ServerPicker.Button.Category.Furry" = "ケモノ";
"Scene.ServerPicker.Button.Category.Games" = "ゲーム";
"Scene.ServerPicker.Button.Category.General" = "全般";
"Scene.ServerPicker.Button.Category.Journalism" = "言論";
@ -295,6 +314,8 @@
"Scene.ServerPicker.Label.Category" = "カテゴリー";
"Scene.ServerPicker.Label.Language" = "言語";
"Scene.ServerPicker.Label.Users" = "ユーザー";
"Scene.ServerPicker.Subtitle" = "Pick a community based on your interests, region, or a general purpose one.";
"Scene.ServerPicker.SubtitleExtend" = "Pick a community based on your interests, region, or a general purpose one. Each community is operated by an entirely independent organization or individual.";
"Scene.ServerPicker.Title" = "サーバーを選択";
"Scene.ServerRules.Button.Confirm" = "同意する";
"Scene.ServerRules.PrivacyPolicy" = "プライバシーポリシー";
@ -312,6 +333,11 @@
"Scene.Settings.Section.BoringZone.Privacy" = "プライバシーポリシー";
"Scene.Settings.Section.BoringZone.Terms" = "利用規約";
"Scene.Settings.Section.BoringZone.Title" = "アプリについて";
"Scene.Settings.Section.LookAndFeel.Light" = "Light";
"Scene.Settings.Section.LookAndFeel.ReallyDark" = "Really Dark";
"Scene.Settings.Section.LookAndFeel.SortaDark" = "Sorta Dark";
"Scene.Settings.Section.LookAndFeel.Title" = "Look and Feel";
"Scene.Settings.Section.LookAndFeel.UseSystem" = "Use System";
"Scene.Settings.Section.Notifications.Boosts" = "ブースト";
"Scene.Settings.Section.Notifications.Favorites" = "お気に入り登録";
"Scene.Settings.Section.Notifications.Follows" = "フォロー";
@ -335,7 +361,9 @@
"Scene.SuggestionAccount.Title" = "フォローする人を探す";
"Scene.Thread.BackTitle" = "投稿";
"Scene.Thread.Title" = "%@の投稿";
"Scene.Welcome.GetStarted" = "Get Started";
"Scene.Welcome.LogIn" = "Log In";
"Scene.Welcome.Slogan" = "ソーシャルネットワーキングを、あなたの手の中に.";
"Scene.Wizard.AccessibilityHint" = "Double tap to dismiss this wizard";
"Scene.Wizard.AccessibilityHint" = "チュートリアルを閉じるには、ダブルタップしてください";
"Scene.Wizard.MultipleAccountSwitchIntroDescription" = "プロフィールボタンを押して複数のアカウントを切り替えます。";
"Scene.Wizard.NewInMastodon" = "Mastodon の新機能";

View File

@ -279,7 +279,7 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>other</key>
<string>%ld前</string>
<string>%ldか月前</string>
</dict>
</dict>
<key>date.day.ago.abbr</key>

View File

@ -4,8 +4,8 @@
"Common.Alerts.CleanCache.Title" = "Pêşbîrê pak bike";
"Common.Alerts.Common.PleaseTryAgain" = "Ji kerema xwe dîsa biceribîne.";
"Common.Alerts.Common.PleaseTryAgainLater" = "Ji kerema xwe paşê dîsa biceribîne.";
"Common.Alerts.DeletePost.Delete" = "Jê bibe";
"Common.Alerts.DeletePost.Title" = "Ma tu dixwazî vê şandiyê jê bibî?";
"Common.Alerts.DeletePost.Message" = "Ma tu dixwazî vê şandiyê jê bibî?";
"Common.Alerts.DeletePost.Title" = "Şandiyê jê bibe";
"Common.Alerts.DiscardPostContent.Message" = "Bipejrîne ku naveroka şandiyê ya hatiye nivîsandin paşguh bikî.";
"Common.Alerts.DiscardPostContent.Title" = "Reşnivîsê paşguh bike";
"Common.Alerts.EditProfileFailure.Message" = "Nikare profîlê serrast bike. Jkx dîsa biceribîne.";
@ -41,6 +41,7 @@ Jkx girêdana înternetê xwe kontrol bike.";
"Common.Controls.Actions.Next" = "Pêş";
"Common.Controls.Actions.Ok" = "BAŞ E";
"Common.Controls.Actions.Open" = "Veke";
"Common.Controls.Actions.OpenInBrowser" = "Di gerokê de veke";
"Common.Controls.Actions.OpenInSafari" = "Di Safariyê de veke";
"Common.Controls.Actions.Preview" = "Pêşdîtin";
"Common.Controls.Actions.Previous" = "Paş";
@ -91,8 +92,9 @@ Jkx girêdana înternetê xwe kontrol bike.";
"Common.Controls.Keyboard.Timeline.ReplyStatus" = "Bersivê bide şandiyê";
"Common.Controls.Keyboard.Timeline.ToggleContentWarning" = "Hişyariya naverokê biguherîne";
"Common.Controls.Keyboard.Timeline.ToggleFavorite" = "Li ser şandiyê bijarte biguherîne";
"Common.Controls.Keyboard.Timeline.ToggleReblog" = "Ji nivîsandin di şandiyê de biguherîne";
"Common.Controls.Keyboard.Timeline.ToggleReblog" = "Ji nû ve nivîsandin di şandiyê de biguherîne";
"Common.Controls.Status.Actions.Favorite" = "Bijarte";
"Common.Controls.Status.Actions.Hide" = "Veşêre";
"Common.Controls.Status.Actions.Menu" = "Kulîn";
"Common.Controls.Status.Actions.Reblog" = "Ji nû ve nivîsandin";
"Common.Controls.Status.Actions.Reply" = "Bersivê bide";
@ -110,8 +112,12 @@ Jkx girêdana înternetê xwe kontrol bike.";
"Common.Controls.Status.Tag.Link" = "Girêdan";
"Common.Controls.Status.Tag.Mention" = "Qalkirin";
"Common.Controls.Status.Tag.Url" = "URL";
"Common.Controls.Status.UserReblogged" = "%@ ji nû ve hate nivîsandin";
"Common.Controls.Status.UserReblogged" = "%@ ji nû ve nivîsand";
"Common.Controls.Status.UserRepliedTo" = "Bersiv da %@";
"Common.Controls.Status.Visibility.Direct" = "Tenê bikarhênerê qalkirî dikare vê şandiyê bibîne.";
"Common.Controls.Status.Visibility.Private" = "Tenê şopînerên wan dikarin vê şandiyê bibînin.";
"Common.Controls.Status.Visibility.PrivateFromMe" = "Tenê şopînerên min dikarin vê şandiyê bibînin.";
"Common.Controls.Status.Visibility.Unlisted" = "Her kes dikare vê şandiyê bibîne lê nayê nîşandan di demnameya gelemperî de.";
"Common.Controls.Tabs.Home" = "Serrûpel";
"Common.Controls.Tabs.Notification" = "Agahdarî";
"Common.Controls.Tabs.Profile" = "Profîl";
@ -178,8 +184,8 @@ Profîla te ji wan ra wiha xuya dike.";
"Scene.Compose.Visibility.Private" = "Tenê şopîneran";
"Scene.Compose.Visibility.Public" = "Gelemperî";
"Scene.Compose.Visibility.Unlisted" = "Nerêzokkirî";
"Scene.ConfirmEmail.Button.DontReceiveEmail" = "Min hîç e-nameyeke nesitand";
"Scene.ConfirmEmail.Button.OpenEmailApp" = "Sepana e-nameyê veke";
"Scene.ConfirmEmail.Button.Resend" = "Ji nû ve bişîne";
"Scene.ConfirmEmail.DontReceiveEmail.Description" = "Kontrol bike ka navnîşana e-nameya te rast e û her wiha peldanka xwe ya spam.";
"Scene.ConfirmEmail.DontReceiveEmail.ResendEmail" = "E-namyê yê dîsa bişîne";
"Scene.ConfirmEmail.DontReceiveEmail.Title" = "E-nameyê xwe kontrol bike";
@ -200,14 +206,14 @@ girêdanê bitikne da ku ajimêra xwe bidî piştrastkirin.";
"Scene.HomeTimeline.Title" = "Serrûpel";
"Scene.Notification.Keyobard.ShowEverything" = "Her tiştî nîşan bide";
"Scene.Notification.Keyobard.ShowMentions" = "Qalkirinan nîşan bike";
"Scene.Notification.NotificationDescription.FavoritedYourPost" = "şandiya te hez kir";
"Scene.Notification.NotificationDescription.FollowedYou" = "te şopand";
"Scene.Notification.NotificationDescription.MentionedYou" = "qale te kir";
"Scene.Notification.NotificationDescription.PollHasEnded" = "rapirsî qediya";
"Scene.Notification.NotificationDescription.RebloggedYourPost" = "şandiya te ji nû ve nivisand";
"Scene.Notification.NotificationDescription.RequestToFollowYou" = "dixwazê te bişopîne";
"Scene.Notification.Title.Everything" = "Her tişt";
"Scene.Notification.Title.Mentions" = "Qalkirin";
"Scene.Notification.UserFavorited Your Post" = "%@ şandiya te hez kir";
"Scene.Notification.UserFollowedYou" = "%@ te şopand";
"Scene.Notification.UserMentionedYou" = "%@ qale te kir";
"Scene.Notification.UserRebloggedYourPost" = "%@ posta we ji nû ve tomar kir";
"Scene.Notification.UserRequestedToFollowYou" = "%@ dixwazê te bişopîne";
"Scene.Notification.UserYourPollHasEnded" = "Rapirsîya te qediya";
"Scene.Preview.Keyboard.ClosePreview" = "Pêşdîtin bigire";
"Scene.Preview.Keyboard.ShowNext" = "A pêş nîşan bide";
"Scene.Preview.Keyboard.ShowPrevious" = "A paş nîşan bide";
@ -217,12 +223,18 @@ girêdanê bitikne da ku ajimêra xwe bidî piştrastkirin.";
"Scene.Profile.Fields.AddRow" = "Rêzê tevlî bike";
"Scene.Profile.Fields.Placeholder.Content" = "Naverok";
"Scene.Profile.Fields.Placeholder.Label" = "Nîşan";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUsre.Message" = "Ji bo rakirina astengkirinê bipejirîne %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUsre.Title" = "Astengiyê li ser ajimêr rake";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Ji bo vekirina bêdengkirinê bipejirîne %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Ji bo rakirina astengkirinê %@ bipejirîne";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Ajimêr asteng bike";
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Message" = "Ji bo bêdengkirina %@ bipejirîne";
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Ajimêrê bêdeng bike";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Ji bo rakirina astengkirinê %@ bipejirîne";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Astengiyê li ser ajimêr rake";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Ji bo vekirina bêdengkirinê %@ bipejirîne";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Title" = "Ajimêrê bêdeng neke";
"Scene.Profile.SegmentedControl.About" = "Derbar";
"Scene.Profile.SegmentedControl.Media" = "Medya";
"Scene.Profile.SegmentedControl.Posts" = "Şandî";
"Scene.Profile.SegmentedControl.PostsAndReplies" = "Şandî û bersiv";
"Scene.Profile.SegmentedControl.Replies" = "Bersiv";
"Scene.Register.Error.Item.Agreement" = "Peyman";
"Scene.Register.Error.Item.Email" = "E-name";
@ -248,19 +260,26 @@ girêdanê bitikne da ku ajimêra xwe bidî piştrastkirin.";
"Scene.Register.Input.DisplayName.Placeholder" = "navê nîşanê";
"Scene.Register.Input.Email.Placeholder" = "e-name";
"Scene.Register.Input.Invite.RegistrationUserInviteRequest" = "Tu çima dixwazî beşdar bibî?";
"Scene.Register.Input.Password.Accessibility.Checked" = "hate kontrolkirin";
"Scene.Register.Input.Password.Accessibility.Unchecked" = "nehate kontrolkirin";
"Scene.Register.Input.Password.CharacterLimit" = "8 tîp";
"Scene.Register.Input.Password.Hint" = "Pêborîna te herî kêm divê ji 8 tîpan pêk bê";
"Scene.Register.Input.Password.Placeholder" = "pêborîn";
"Scene.Register.Input.Password.Require" = "Pêdiviya pêborîna te ya herî kêm:";
"Scene.Register.Input.Username.DuplicatePrompt" = "Navê vê bikarhêner tê girtin.";
"Scene.Register.Input.Username.Placeholder" = "navê bikarhêner";
"Scene.Register.Title" = "Ji me re hinekî qala xwe bike.";
"Scene.Register.Title" = "Ji me re hinekî qala xwe bike %@";
"Scene.Report.Content1" = "Şandiyên din hene ku tu dixwazî tevlî ragihandinê bikî?";
"Scene.Report.Content2" = "Derbarê vê ragihandinê de tiştek heye ku divê çavdêr bizanin?";
"Scene.Report.ReportSentTitle" = "Spas ji bo ragihandina te, em ê binirxînin.";
"Scene.Report.Reported" = "HATE RAGIHANDIN";
"Scene.Report.Send" = "Ragihandinê bişîne";
"Scene.Report.SkipToSend" = "Bêyî şirove bişîne";
"Scene.Report.Step1" = "Gav 1 ji 2";
"Scene.Report.Step2" = "Gav 2 ji 2";
"Scene.Report.TextPlaceholder" = "Şiroveyên daxwazkirê binivîsine an jî pê ve bike";
"Scene.Report.Title" = "%@ ragihîne";
"Scene.Report.TitleReport" = "Ragihandin";
"Scene.Search.Recommend.Accounts.Description" = "Dibe ku tu bixwazî van ajimêran bişopînî";
"Scene.Search.Recommend.Accounts.Follow" = "Bişopîne";
"Scene.Search.Recommend.Accounts.Title" = "Ajimêrên ku belkî tu jê hez bikî";
@ -301,12 +320,14 @@ girêdanê bitikne da ku ajimêra xwe bidî piştrastkirin.";
"Scene.ServerPicker.Label.Category" = "BEŞ";
"Scene.ServerPicker.Label.Language" = "ZIMAN";
"Scene.ServerPicker.Label.Users" = "BIKARHÊNER";
"Scene.ServerPicker.Subtitle" = "Li gorî berjewendî, herêm, an jî armancek gelemperî civakekê hilbijêre.";
"Scene.ServerPicker.SubtitleExtend" = "Li gorî berjewendî, herêm, an jî armancek gelemperî civakekê hilbijêre. Her civakek ji hêla rêxistinek an kesek bi tevahî serbixwe ve tê xebitandin.";
"Scene.ServerPicker.Title" = "Rajekarekê hilbijêre,
Her kîjan rajekar be.";
"Scene.ServerRules.Button.Confirm" = "Ez dipejirînim";
"Scene.ServerRules.PrivacyPolicy" = "polîtikaya nihêniyê";
"Scene.ServerRules.Prompt" = "Bi domandinê, tu ji bo %@ di bin mercên bikaranînê û polîtîkaya nepenîtiyê dipejirînî.";
"Scene.ServerRules.Subtitle" = "Ev rêzik ji aliyê rêvebirên %@ ve tên sazkirin.";
"Scene.ServerRules.Subtitle" = "Ev rêzik ji aliyê çavdêrên %@ ve tên sazkirin.";
"Scene.ServerRules.TermsOfService" = "mercên bikaranînê";
"Scene.ServerRules.Title" = "Hinek rêzikên bingehîn.";
"Scene.Settings.Footer.MastodonDescription" = "Mastodon nermalava çavkaniya vekirî ye. Tu dikarî pirsgirêkan li ser GitHub-ê ragihînî di %@ (%@) de";
@ -319,6 +340,11 @@ Her kîjan rajekar be.";
"Scene.Settings.Section.BoringZone.Privacy" = "Polîtikaya nihêniyê";
"Scene.Settings.Section.BoringZone.Terms" = "Mercên bikaranînê";
"Scene.Settings.Section.BoringZone.Title" = "Devera acizker";
"Scene.Settings.Section.LookAndFeel.Light" = "Ron";
"Scene.Settings.Section.LookAndFeel.ReallyDark" = "Tarî";
"Scene.Settings.Section.LookAndFeel.SortaDark" = "Hinekî tarî";
"Scene.Settings.Section.LookAndFeel.Title" = "Xuyang";
"Scene.Settings.Section.LookAndFeel.UseSystem" = "Pergalê bi kar bîne";
"Scene.Settings.Section.Notifications.Boosts" = "Şandiya min ji nû ve nivîsand";
"Scene.Settings.Section.Notifications.Favorites" = "Şandiyên min hez kir";
"Scene.Settings.Section.Notifications.Follows" = "Min dişopîne";
@ -342,6 +368,8 @@ Her kîjan rajekar be.";
"Scene.SuggestionAccount.Title" = "Kesên bo ku bişopînî bibîne";
"Scene.Thread.BackTitle" = "Şandî";
"Scene.Thread.Title" = "Şandî ji %@";
"Scene.Welcome.GetStarted" = "Dest pê bike";
"Scene.Welcome.LogIn" = "Têkeve";
"Scene.Welcome.Slogan" = "Torên civakî
di destên te de.";
"Scene.Wizard.AccessibilityHint" = "Du caran bitikîne da ku çarçoveyahilpekok ji holê rakî";

View File

@ -4,7 +4,7 @@
"Common.Alerts.CleanCache.Title" = "Cache-geheugen Wissen";
"Common.Alerts.Common.PleaseTryAgain" = "Probeer het opnieuw.";
"Common.Alerts.Common.PleaseTryAgainLater" = "Probeer het later nog eens.";
"Common.Alerts.DeletePost.Delete" = "Verwijderen";
"Common.Alerts.DeletePost.Message" = "Are you sure you want to delete this post?";
"Common.Alerts.DeletePost.Title" = "Weet u zeker dat u dit bericht wilt verwijderen?";
"Common.Alerts.DiscardPostContent.Message" = "Bevestig het verwijderen van het concept bericht.";
"Common.Alerts.DiscardPostContent.Title" = "Concept Verwijderen";
@ -40,6 +40,7 @@
"Common.Controls.Actions.Next" = "Volgende";
"Common.Controls.Actions.Ok" = "Oké";
"Common.Controls.Actions.Open" = "Open";
"Common.Controls.Actions.OpenInBrowser" = "Open in Browser";
"Common.Controls.Actions.OpenInSafari" = "Open in Safari";
"Common.Controls.Actions.Preview" = "Voorvertoning";
"Common.Controls.Actions.Previous" = "Vorige";
@ -92,6 +93,7 @@
"Common.Controls.Keyboard.Timeline.ToggleFavorite" = "Favoriet Omschakelen bij Bericht";
"Common.Controls.Keyboard.Timeline.ToggleReblog" = "Delen bij berichten omschakelen";
"Common.Controls.Status.Actions.Favorite" = "Toevoegen aan Favorieten";
"Common.Controls.Status.Actions.Hide" = "Hide";
"Common.Controls.Status.Actions.Menu" = "Menu";
"Common.Controls.Status.Actions.Reblog" = "Delen";
"Common.Controls.Status.Actions.Reply" = "Reageren";
@ -111,6 +113,10 @@
"Common.Controls.Status.Tag.Url" = "URL";
"Common.Controls.Status.UserReblogged" = "%@ gedeeld";
"Common.Controls.Status.UserRepliedTo" = "Reactie op %@";
"Common.Controls.Status.Visibility.Direct" = "Only mentioned user can see this post.";
"Common.Controls.Status.Visibility.Private" = "Only their followers can see this post.";
"Common.Controls.Status.Visibility.PrivateFromMe" = "Only my followers can see this post.";
"Common.Controls.Status.Visibility.Unlisted" = "Everyone can see this post but not display in the public timeline.";
"Common.Controls.Tabs.Home" = "Start";
"Common.Controls.Tabs.Notification" = "Melding";
"Common.Controls.Tabs.Profile" = "Profiel";
@ -172,8 +178,8 @@ Uw profiel ziet er zo uit voor hen.";
"Scene.Compose.Visibility.Private" = "Alleen volgers";
"Scene.Compose.Visibility.Public" = "Openbaar";
"Scene.Compose.Visibility.Unlisted" = "Niet-vermeld";
"Scene.ConfirmEmail.Button.DontReceiveEmail" = "Ik heb geen email ontvangen";
"Scene.ConfirmEmail.Button.OpenEmailApp" = "Email Openen";
"Scene.ConfirmEmail.Button.Resend" = "Resend";
"Scene.ConfirmEmail.DontReceiveEmail.Description" = "Controleer of uw emailadres correct is en of the email in de ongewenste email filter terecht is gekomen.";
"Scene.ConfirmEmail.DontReceiveEmail.ResendEmail" = "Email Opnieuw Versturen";
"Scene.ConfirmEmail.DontReceiveEmail.Title" = "Controleer uw emailadres";
@ -194,14 +200,14 @@ klik op de link om uw account te bevestigen.";
"Scene.HomeTimeline.Title" = "Start";
"Scene.Notification.Keyobard.ShowEverything" = "Alles weergeven";
"Scene.Notification.Keyobard.ShowMentions" = "Vermeldingen weergeven";
"Scene.Notification.NotificationDescription.FavoritedYourPost" = "favorited your post";
"Scene.Notification.NotificationDescription.FollowedYou" = "followed you";
"Scene.Notification.NotificationDescription.MentionedYou" = "mentioned you";
"Scene.Notification.NotificationDescription.PollHasEnded" = "poll has ended";
"Scene.Notification.NotificationDescription.RebloggedYourPost" = "reblogged your post";
"Scene.Notification.NotificationDescription.RequestToFollowYou" = "request to follow you";
"Scene.Notification.Title.Everything" = "Alles";
"Scene.Notification.Title.Mentions" = "Vermeldingen";
"Scene.Notification.UserFavorited Your Post" = "%@ favorited your post";
"Scene.Notification.UserFollowedYou" = "%@ followed you";
"Scene.Notification.UserMentionedYou" = "%@ mentioned you";
"Scene.Notification.UserRebloggedYourPost" = "%@ reblogged your post";
"Scene.Notification.UserRequestedToFollowYou" = "%@ requested to follow you";
"Scene.Notification.UserYourPollHasEnded" = "%@ Your poll has ended";
"Scene.Preview.Keyboard.ClosePreview" = "Voorbeeldweergave Sluiten";
"Scene.Preview.Keyboard.ShowNext" = "Volgende";
"Scene.Preview.Keyboard.ShowPrevious" = "Vorige";
@ -211,12 +217,18 @@ klik op de link om uw account te bevestigen.";
"Scene.Profile.Fields.AddRow" = "Rij Toevoegen";
"Scene.Profile.Fields.Placeholder.Content" = "Inhoud";
"Scene.Profile.Fields.Placeholder.Label" = "Etiket";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUsre.Message" = "Bevestig om %@ te deblokkeren";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUsre.Title" = "Account niet langer negeren";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Confirm to block %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Block Account";
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Message" = "Confirm to mute %@";
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Mute Account";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Confirm to unblock %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Unblock Account";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Bevestig om %@ te negeren";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Title" = "Account Negeren";
"Scene.Profile.SegmentedControl.About" = "About";
"Scene.Profile.SegmentedControl.Media" = "Media";
"Scene.Profile.SegmentedControl.Posts" = "Berichten";
"Scene.Profile.SegmentedControl.PostsAndReplies" = "Posts and Replies";
"Scene.Profile.SegmentedControl.Replies" = "Reacties";
"Scene.Register.Error.Item.Agreement" = "Overeenkomst";
"Scene.Register.Error.Item.Email" = "Email";
@ -242,19 +254,26 @@ klik op de link om uw account te bevestigen.";
"Scene.Register.Input.DisplayName.Placeholder" = "weergavenaam";
"Scene.Register.Input.Email.Placeholder" = "email";
"Scene.Register.Input.Invite.RegistrationUserInviteRequest" = "Waarom wil u zich hier registreren?";
"Scene.Register.Input.Password.Accessibility.Checked" = "checked";
"Scene.Register.Input.Password.Accessibility.Unchecked" = "unchecked";
"Scene.Register.Input.Password.CharacterLimit" = "8 characters";
"Scene.Register.Input.Password.Hint" = "Uw wachtwoord moet ten minste acht tekens bevatten";
"Scene.Register.Input.Password.Placeholder" = "wachtwoord";
"Scene.Register.Input.Password.Require" = "Your password needs at least:";
"Scene.Register.Input.Username.DuplicatePrompt" = "Deze gebruikersnaam is al in gebruik.";
"Scene.Register.Input.Username.Placeholder" = "gebruikersnaam";
"Scene.Register.Title" = "Vertel ons over uzelf.";
"Scene.Report.Content1" = "Zijn er nog meer berichten die u aan het rapport wilt toevoegen?";
"Scene.Report.Content2" = "Is er iets anders over dit rapport dat de moderators zouden moeten weten?";
"Scene.Report.ReportSentTitle" = "Thanks for reporting, well look into this.";
"Scene.Report.Reported" = "REPORTED";
"Scene.Report.Send" = "Stuur rapport";
"Scene.Report.SkipToSend" = "Verstuur zonder opmerkingen";
"Scene.Report.Step1" = "Stap 1 van 2";
"Scene.Report.Step2" = "Stap 2 van 2";
"Scene.Report.TextPlaceholder" = "Schrijf of plak aanvullende opmerkingen";
"Scene.Report.Title" = "Rapporteer %@";
"Scene.Report.TitleReport" = "Report";
"Scene.Search.Recommend.Accounts.Description" = "Misschien dat u geïnteresseerd bent in deze accounts";
"Scene.Search.Recommend.Accounts.Follow" = "Volgen";
"Scene.Search.Recommend.Accounts.Title" = "Interessante accounts voor u";
@ -295,6 +314,8 @@ klik op de link om uw account te bevestigen.";
"Scene.ServerPicker.Label.Category" = "CATEGORIE";
"Scene.ServerPicker.Label.Language" = "TAAL";
"Scene.ServerPicker.Label.Users" = "GEBRUIKERS";
"Scene.ServerPicker.Subtitle" = "Pick a community based on your interests, region, or a general purpose one.";
"Scene.ServerPicker.SubtitleExtend" = "Pick a community based on your interests, region, or a general purpose one. Each community is operated by an entirely independent organization or individual.";
"Scene.ServerPicker.Title" = "Kies een server, welke dan ook.";
"Scene.ServerRules.Button.Confirm" = "Ik Ga Akkoord";
"Scene.ServerRules.PrivacyPolicy" = "privacybeleid";
@ -312,6 +333,11 @@ klik op de link om uw account te bevestigen.";
"Scene.Settings.Section.BoringZone.Privacy" = "Privacybeleid";
"Scene.Settings.Section.BoringZone.Terms" = "Servicevoorwaarden";
"Scene.Settings.Section.BoringZone.Title" = "De Saaie Instellingen";
"Scene.Settings.Section.LookAndFeel.Light" = "Light";
"Scene.Settings.Section.LookAndFeel.ReallyDark" = "Really Dark";
"Scene.Settings.Section.LookAndFeel.SortaDark" = "Sorta Dark";
"Scene.Settings.Section.LookAndFeel.Title" = "Look and Feel";
"Scene.Settings.Section.LookAndFeel.UseSystem" = "Use System";
"Scene.Settings.Section.Notifications.Boosts" = "Mijn bericht deelt";
"Scene.Settings.Section.Notifications.Favorites" = "Mijn bericht als favoriet toevoegt";
"Scene.Settings.Section.Notifications.Follows" = "Mij volgt";
@ -335,6 +361,8 @@ klik op de link om uw account te bevestigen.";
"Scene.SuggestionAccount.Title" = "Zoek Mensen om te Volgen";
"Scene.Thread.BackTitle" = "Bericht";
"Scene.Thread.Title" = "Bericht van %@";
"Scene.Welcome.GetStarted" = "Get Started";
"Scene.Welcome.LogIn" = "Log In";
"Scene.Welcome.Slogan" = "Sociale media terug in uw handen.";
"Scene.Wizard.AccessibilityHint" = "Double tap to dismiss this wizard";
"Scene.Wizard.MultipleAccountSwitchIntroDescription" = "Switch between multiple accounts by holding the profile button.";

View File

@ -4,7 +4,7 @@
"Common.Alerts.CleanCache.Title" = "Очистка кэша";
"Common.Alerts.Common.PleaseTryAgain" = "Пожалуйста, попробуйте ещё раз.";
"Common.Alerts.Common.PleaseTryAgainLater" = "Пожалуйста, попробуйте позже.";
"Common.Alerts.DeletePost.Delete" = "Удалить";
"Common.Alerts.DeletePost.Message" = "Are you sure you want to delete this post?";
"Common.Alerts.DeletePost.Title" = "Вы уверены, что хотите удалить этот пост?";
"Common.Alerts.DiscardPostContent.Message" = "Вы действительно хотите удалить набранное содержимое поста?";
"Common.Alerts.DiscardPostContent.Title" = "Удалить черновик";
@ -28,7 +28,7 @@
"Common.Controls.Actions.Back" = "Назад";
"Common.Controls.Actions.BlockDomain" = "Заблокировать %@";
"Common.Controls.Actions.Cancel" = "Отмена";
"Common.Controls.Actions.Compose" = "Compose";
"Common.Controls.Actions.Compose" = "Написать";
"Common.Controls.Actions.Confirm" = "Подтвердить";
"Common.Controls.Actions.Continue" = "Продолжить";
"Common.Controls.Actions.CopyPhoto" = "Скопировать изображение";
@ -41,6 +41,7 @@
"Common.Controls.Actions.Next" = "Далее";
"Common.Controls.Actions.Ok" = "ОК";
"Common.Controls.Actions.Open" = "Открыть";
"Common.Controls.Actions.OpenInBrowser" = "Открыть в браузере";
"Common.Controls.Actions.OpenInSafari" = "Открыть в Safari";
"Common.Controls.Actions.Preview" = "Предпросмотр";
"Common.Controls.Actions.Previous" = "Прошлые";
@ -93,6 +94,7 @@
"Common.Controls.Keyboard.Timeline.ToggleFavorite" = "Добавить или убрать из избранного";
"Common.Controls.Keyboard.Timeline.ToggleReblog" = "Продвинуть или убрать продвижение";
"Common.Controls.Status.Actions.Favorite" = "Добавить в избранное";
"Common.Controls.Status.Actions.Hide" = "Hide";
"Common.Controls.Status.Actions.Menu" = "Меню";
"Common.Controls.Status.Actions.Reblog" = "Продвинуть";
"Common.Controls.Status.Actions.Reply" = "Ответить";
@ -112,6 +114,10 @@
"Common.Controls.Status.Tag.Url" = "Ссылка";
"Common.Controls.Status.UserReblogged" = "%@ продвинул(а)";
"Common.Controls.Status.UserRepliedTo" = "Ответил(а) %@";
"Common.Controls.Status.Visibility.Direct" = "Only mentioned user can see this post.";
"Common.Controls.Status.Visibility.Private" = "Only their followers can see this post.";
"Common.Controls.Status.Visibility.PrivateFromMe" = "Only my followers can see this post.";
"Common.Controls.Status.Visibility.Unlisted" = "Everyone can see this post but not display in the public timeline.";
"Common.Controls.Tabs.Home" = "Главная";
"Common.Controls.Tabs.Notification" = "Уведомление";
"Common.Controls.Tabs.Profile" = "Профиль";
@ -186,8 +192,8 @@
"Scene.Compose.Visibility.Private" = "Для подписчиков";
"Scene.Compose.Visibility.Public" = "Публичный";
"Scene.Compose.Visibility.Unlisted" = "Скрытый";
"Scene.ConfirmEmail.Button.DontReceiveEmail" = "Я не получил письма";
"Scene.ConfirmEmail.Button.OpenEmailApp" = "Открыть приложение почты";
"Scene.ConfirmEmail.Button.Resend" = "Resend";
"Scene.ConfirmEmail.DontReceiveEmail.Description" = "Проверьте, правильно ли указан ваш e-mail адрес, а также папку «спам», если ещё не сделали этого.";
"Scene.ConfirmEmail.DontReceiveEmail.ResendEmail" = "Отправить ещё раз";
"Scene.ConfirmEmail.DontReceiveEmail.Title" = "Проверьте свой e-mail адрес";
@ -210,14 +216,14 @@
"Scene.HomeTimeline.Title" = "Главная";
"Scene.Notification.Keyobard.ShowEverything" = "Показать все";
"Scene.Notification.Keyobard.ShowMentions" = "Показать упоминания";
"Scene.Notification.NotificationDescription.FavoritedYourPost" = "favorited your post";
"Scene.Notification.NotificationDescription.FollowedYou" = "followed you";
"Scene.Notification.NotificationDescription.MentionedYou" = "mentioned you";
"Scene.Notification.NotificationDescription.PollHasEnded" = "poll has ended";
"Scene.Notification.NotificationDescription.RebloggedYourPost" = "reblogged your post";
"Scene.Notification.NotificationDescription.RequestToFollowYou" = "request to follow you";
"Scene.Notification.Title.Everything" = "Все";
"Scene.Notification.Title.Mentions" = "Упоминания";
"Scene.Notification.UserFavorited Your Post" = "%@ favorited your post";
"Scene.Notification.UserFollowedYou" = "%@ подписался (-ась)";
"Scene.Notification.UserMentionedYou" = "%@ упомянул вас";
"Scene.Notification.UserRebloggedYourPost" = "%@ reblogged your post";
"Scene.Notification.UserRequestedToFollowYou" = "%@ запрашивает подписку";
"Scene.Notification.UserYourPollHasEnded" = "%@ Your poll has ended";
"Scene.Preview.Keyboard.ClosePreview" = "Закрыть предпросмотр";
"Scene.Preview.Keyboard.ShowNext" = "Следующее изображение";
"Scene.Preview.Keyboard.ShowPrevious" = "Предыдущее изображение";
@ -227,12 +233,18 @@
"Scene.Profile.Fields.AddRow" = "Добавить строку";
"Scene.Profile.Fields.Placeholder.Content" = "Содержимое";
"Scene.Profile.Fields.Placeholder.Label" = "Ярлык";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUsre.Message" = "Убрать %@ из списка блокировки?";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUsre.Title" = "Разблокировать";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Confirm to block %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Block Account";
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Message" = "Confirm to mute %@";
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Mute Account";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Confirm to unblock %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Unblock Account";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Убрать %@ из игнорируемых?";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Title" = "Убрать из игнорируемых";
"Scene.Profile.SegmentedControl.About" = "About";
"Scene.Profile.SegmentedControl.Media" = "Медиа";
"Scene.Profile.SegmentedControl.Posts" = "Посты";
"Scene.Profile.SegmentedControl.PostsAndReplies" = "Posts and Replies";
"Scene.Profile.SegmentedControl.Replies" = "Ответы";
"Scene.Register.Error.Item.Agreement" = "Соглашение";
"Scene.Register.Error.Item.Email" = "E-mail";
@ -258,19 +270,26 @@
"Scene.Register.Input.DisplayName.Placeholder" = "отображаемое имя";
"Scene.Register.Input.Email.Placeholder" = "e-mail";
"Scene.Register.Input.Invite.RegistrationUserInviteRequest" = "Почему вы хотите присоединиться?";
"Scene.Register.Input.Password.Accessibility.Checked" = "checked";
"Scene.Register.Input.Password.Accessibility.Unchecked" = "unchecked";
"Scene.Register.Input.Password.CharacterLimit" = "8 characters";
"Scene.Register.Input.Password.Hint" = "Пароль должен содержать не менее восьми символов";
"Scene.Register.Input.Password.Placeholder" = "пароль";
"Scene.Register.Input.Password.Require" = "Your password needs at least:";
"Scene.Register.Input.Username.DuplicatePrompt" = "Это имя пользователя занято.";
"Scene.Register.Input.Username.Placeholder" = "имя пользователя";
"Scene.Register.Title" = "Расскажите нам о себе.";
"Scene.Report.Content1" = "Есть ли другие сообщения, которые вы хотите добавить в отчёт?";
"Scene.Report.Content2" = "Есть ли что-то, что модераторы должны знать об этом сообщении?";
"Scene.Report.ReportSentTitle" = "Thanks for reporting, well look into this.";
"Scene.Report.Reported" = "REPORTED";
"Scene.Report.Send" = "Пожаловаться";
"Scene.Report.SkipToSend" = "Отправить без комментария";
"Scene.Report.Step1" = "Шаг 1 из 2";
"Scene.Report.Step2" = "Шаг 2 из 2";
"Scene.Report.TextPlaceholder" = "Дополнительные комментарии";
"Scene.Report.Title" = "Пожаловаться на %@";
"Scene.Report.TitleReport" = "Report";
"Scene.Search.Recommend.Accounts.Description" = "Возможно, вы захотите подписаться на эти профили";
"Scene.Search.Recommend.Accounts.Follow" = "Подписаться";
"Scene.Search.Recommend.Accounts.Title" = "Вам может понравится";
@ -311,6 +330,8 @@
"Scene.ServerPicker.Label.Category" = "КАТЕГОРИЯ";
"Scene.ServerPicker.Label.Language" = "ЯЗЫК";
"Scene.ServerPicker.Label.Users" = "ПОЛЬЗОВАТЕЛИ";
"Scene.ServerPicker.Subtitle" = "Выберите сообщество на основе своих интересов, региона или общей тематики.";
"Scene.ServerPicker.SubtitleExtend" = "Pick a community based on your interests, region, or a general purpose one. Each community is operated by an entirely independent organization or individual.";
"Scene.ServerPicker.Title" = "Выберите сервер,
любой сервер.";
"Scene.ServerRules.Button.Confirm" = "Принимаю";
@ -329,6 +350,11 @@
"Scene.Settings.Section.BoringZone.Privacy" = "Политика конфиденциальности";
"Scene.Settings.Section.BoringZone.Terms" = "Условия использования";
"Scene.Settings.Section.BoringZone.Title" = "Зона скукотищи";
"Scene.Settings.Section.LookAndFeel.Light" = "Light";
"Scene.Settings.Section.LookAndFeel.ReallyDark" = "Really Dark";
"Scene.Settings.Section.LookAndFeel.SortaDark" = "Sorta Dark";
"Scene.Settings.Section.LookAndFeel.Title" = "Look and Feel";
"Scene.Settings.Section.LookAndFeel.UseSystem" = "Use System";
"Scene.Settings.Section.Notifications.Boosts" = "Продвигает мой пост";
"Scene.Settings.Section.Notifications.Favorites" = "Добавляет мой пост в избранное";
"Scene.Settings.Section.Notifications.Follows" = "Подписался на меня";
@ -352,6 +378,8 @@
"Scene.SuggestionAccount.Title" = "Подпишитесь на людей";
"Scene.Thread.BackTitle" = "Пост";
"Scene.Thread.Title" = "Пост %@";
"Scene.Welcome.GetStarted" = "Get Started";
"Scene.Welcome.LogIn" = "Вход";
"Scene.Welcome.Slogan" = "Социальная сеть
под вашим контролем.";
"Scene.Wizard.AccessibilityHint" = "Double tap to dismiss this wizard";

View File

@ -1,349 +1,376 @@
"Common.Alerts.BlockDomain.BlockEntireDomain" = "Block Domain";
"Common.Alerts.BlockDomain.BlockEntireDomain" = "Estä verkkotunnus";
"Common.Alerts.BlockDomain.Title" = "Are you really, really sure you want to block the entire %@? 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.";
"Common.Alerts.CleanCache.Message" = "Successfully cleaned %@ cache.";
"Common.Alerts.CleanCache.Title" = "Clean Cache";
"Common.Alerts.Common.PleaseTryAgain" = "Var god försök igen.";
"Common.Alerts.Common.PleaseTryAgainLater" = "Var god försök igen senare.";
"Common.Alerts.DeletePost.Delete" = "Radera";
"Common.Alerts.DeletePost.Title" = "Are you sure you want to delete this post?";
"Common.Alerts.CleanCache.Message" = "%@ välimuisti tyhjennetty onnistuneesti.";
"Common.Alerts.CleanCache.Title" = "Puhdista välimuisti";
"Common.Alerts.Common.PleaseTryAgain" = "Yritä uudelleen.";
"Common.Alerts.Common.PleaseTryAgainLater" = "Yritä uudelleen myöhemmin.";
"Common.Alerts.DeletePost.Message" = "Are you sure you want to delete this post?";
"Common.Alerts.DeletePost.Title" = "Haluatko varmasti poistaa tämän julkaisun?";
"Common.Alerts.DiscardPostContent.Message" = "Confirm to discard composed post content.";
"Common.Alerts.DiscardPostContent.Title" = "Discard Draft";
"Common.Alerts.EditProfileFailure.Message" = "Cannot edit profile. Please try again.";
"Common.Alerts.EditProfileFailure.Title" = "Edit Profile Error";
"Common.Alerts.PublishPostFailure.AttachmentsMessage.MoreThanOneVideo" = "Cannot attach more than one video.";
"Common.Alerts.DiscardPostContent.Title" = "Hylkää luonnos";
"Common.Alerts.EditProfileFailure.Message" = "Profiilia ei voida muoka. Yritä uudelleen.";
"Common.Alerts.EditProfileFailure.Title" = "Virhe profiilin muokkauksessa";
"Common.Alerts.PublishPostFailure.AttachmentsMessage.MoreThanOneVideo" = "Ei voi liittä yhtä videota enempää.";
"Common.Alerts.PublishPostFailure.AttachmentsMessage.VideoAttachWithPhoto" = "Cannot attach a video to a post that already contains images.";
"Common.Alerts.PublishPostFailure.Message" = "Failed to publish the post.
Please check your internet connection.";
"Common.Alerts.PublishPostFailure.Title" = "Publish Failure";
"Common.Alerts.PublishPostFailure.Message" = "Julkaisun julkaiseminen epäonnistui.
Tarkista internet-yhteytesi.";
"Common.Alerts.PublishPostFailure.Title" = "Julkaiseminen epäonnistui";
"Common.Alerts.SavePhotoFailure.Message" = "Please enable the photo library access permission to save the photo.";
"Common.Alerts.SavePhotoFailure.Title" = "Save Photo Failure";
"Common.Alerts.ServerError.Title" = "Serverfel";
"Common.Alerts.SignOut.Confirm" = "Sign Out";
"Common.Alerts.SignOut.Message" = "Är du säker på att du vill logga ut?";
"Common.Alerts.SignOut.Title" = "Sign Out";
"Common.Alerts.SignUpFailure.Title" = "Sign Up Failure";
"Common.Alerts.VoteFailure.PollEnded" = "Omröstningen har avslutats";
"Common.Alerts.SavePhotoFailure.Title" = "Kuvan tallentaminen epäonnistui";
"Common.Alerts.ServerError.Title" = "Palvelinvirhe";
"Common.Alerts.SignOut.Confirm" = "Kirjaudu ulos";
"Common.Alerts.SignOut.Message" = "Haluatko varmasti kirjautua ulos?";
"Common.Alerts.SignOut.Title" = "Kirjaudu ulos";
"Common.Alerts.SignUpFailure.Title" = "Rekisteröinti epäonnistui";
"Common.Alerts.VoteFailure.PollEnded" = "Kysely on päättynyt";
"Common.Alerts.VoteFailure.Title" = "Vote Failure";
"Common.Controls.Actions.Add" = "Add";
"Common.Controls.Actions.Back" = "Back";
"Common.Controls.Actions.BlockDomain" = "Block %@";
"Common.Controls.Actions.Cancel" = "Avbryt";
"Common.Controls.Actions.Compose" = "Compose";
"Common.Controls.Actions.Confirm" = "Confirm";
"Common.Controls.Actions.Continue" = "Fortsätt";
"Common.Controls.Actions.CopyPhoto" = "Copy Photo";
"Common.Controls.Actions.Delete" = "Radera";
"Common.Controls.Actions.Discard" = "Discard";
"Common.Controls.Actions.Done" = "Done";
"Common.Controls.Actions.Edit" = "Redigera";
"Common.Controls.Actions.FindPeople" = "Find people to follow";
"Common.Controls.Actions.Add" = "Lisää";
"Common.Controls.Actions.Back" = "Takaisin";
"Common.Controls.Actions.BlockDomain" = "Estä %@";
"Common.Controls.Actions.Cancel" = "Kumoa";
"Common.Controls.Actions.Compose" = "Koosta";
"Common.Controls.Actions.Confirm" = "Vahvista";
"Common.Controls.Actions.Continue" = "Jatka";
"Common.Controls.Actions.CopyPhoto" = "Kopioi kuva";
"Common.Controls.Actions.Delete" = "Poista";
"Common.Controls.Actions.Discard" = "Hylkää";
"Common.Controls.Actions.Done" = "Valmis";
"Common.Controls.Actions.Edit" = "Muokkaa";
"Common.Controls.Actions.FindPeople" = "Löydä tilejä seurattavaksi";
"Common.Controls.Actions.ManuallySearch" = "Manually search instead";
"Common.Controls.Actions.Next" = "Next";
"Common.Controls.Actions.Next" = "Seuraava";
"Common.Controls.Actions.Ok" = "OK";
"Common.Controls.Actions.Open" = "Open";
"Common.Controls.Actions.OpenInSafari" = "Öppna i Safari";
"Common.Controls.Actions.Preview" = "Preview";
"Common.Controls.Actions.Previous" = "Previous";
"Common.Controls.Actions.Remove" = "Remove";
"Common.Controls.Actions.Reply" = "Reply";
"Common.Controls.Actions.ReportUser" = "Rapportera %@";
"Common.Controls.Actions.Save" = "Spara";
"Common.Controls.Actions.SavePhoto" = "Save Photo";
"Common.Controls.Actions.SeeMore" = "See More";
"Common.Controls.Actions.Settings" = "Inställningar";
"Common.Controls.Actions.Share" = "Dela";
"Common.Controls.Actions.SharePost" = "Share Post";
"Common.Controls.Actions.ShareUser" = "Dela %@";
"Common.Controls.Actions.SignIn" = "Sign In";
"Common.Controls.Actions.SignUp" = "Sign Up";
"Common.Controls.Actions.Skip" = "Skip";
"Common.Controls.Actions.TakePhoto" = "Take Photo";
"Common.Controls.Actions.TryAgain" = "Försök igen";
"Common.Controls.Actions.UnblockDomain" = "Unblock %@";
"Common.Controls.Friendship.Block" = "Block";
"Common.Controls.Friendship.BlockDomain" = "Block %@";
"Common.Controls.Friendship.BlockUser" = "Block %@";
"Common.Controls.Friendship.Blocked" = "Blocked";
"Common.Controls.Friendship.EditInfo" = "Edit Info";
"Common.Controls.Friendship.Follow" = "Följ";
"Common.Controls.Friendship.Following" = "Följer";
"Common.Controls.Friendship.Mute" = "Mute";
"Common.Controls.Friendship.MuteUser" = "Mute %@";
"Common.Controls.Friendship.Muted" = "Muted";
"Common.Controls.Friendship.Pending" = "Pending";
"Common.Controls.Friendship.Request" = "Request";
"Common.Controls.Friendship.Unblock" = "Unblock";
"Common.Controls.Actions.Open" = "Avaa";
"Common.Controls.Actions.OpenInBrowser" = "Open in Browser";
"Common.Controls.Actions.OpenInSafari" = "Avaa Safarissa";
"Common.Controls.Actions.Preview" = "Esikatselu";
"Common.Controls.Actions.Previous" = "Edellinen";
"Common.Controls.Actions.Remove" = "Poista";
"Common.Controls.Actions.Reply" = "Vastaa";
"Common.Controls.Actions.ReportUser" = "Ilmianna %@";
"Common.Controls.Actions.Save" = "Tallenna";
"Common.Controls.Actions.SavePhoto" = "Tallenna kuva";
"Common.Controls.Actions.SeeMore" = "Näytä lisää";
"Common.Controls.Actions.Settings" = "Asetukset";
"Common.Controls.Actions.Share" = "Jaa";
"Common.Controls.Actions.SharePost" = "Jaa julkaisu";
"Common.Controls.Actions.ShareUser" = "Jaa %@";
"Common.Controls.Actions.SignIn" = "Kirjaudu sisään";
"Common.Controls.Actions.SignUp" = "Rekisteröidy";
"Common.Controls.Actions.Skip" = "Ohita";
"Common.Controls.Actions.TakePhoto" = "Ota kuva";
"Common.Controls.Actions.TryAgain" = "Yritä uudelleen";
"Common.Controls.Actions.UnblockDomain" = "Poista esto %@";
"Common.Controls.Friendship.Block" = "Estä";
"Common.Controls.Friendship.BlockDomain" = "Estä %@";
"Common.Controls.Friendship.BlockUser" = "Estä %@";
"Common.Controls.Friendship.Blocked" = "Estetty";
"Common.Controls.Friendship.EditInfo" = "Muokkaa profiilia";
"Common.Controls.Friendship.Follow" = "Seuraa";
"Common.Controls.Friendship.Following" = "Seurataan";
"Common.Controls.Friendship.Mute" = "Mykistä";
"Common.Controls.Friendship.MuteUser" = "Mykistä %@";
"Common.Controls.Friendship.Muted" = "Mykistetty";
"Common.Controls.Friendship.Pending" = "Pyydetty";
"Common.Controls.Friendship.Request" = "Pyydä";
"Common.Controls.Friendship.Unblock" = "Poista esto";
"Common.Controls.Friendship.UnblockUser" = "Unblock %@";
"Common.Controls.Friendship.Unmute" = "Unmute";
"Common.Controls.Friendship.UnmuteUser" = "Unmute %@";
"Common.Controls.Keyboard.Common.ComposeNewPost" = "Compose New Post";
"Common.Controls.Keyboard.Common.OpenSettings" = "Open Settings";
"Common.Controls.Keyboard.Common.ShowFavorites" = "Show Favorites";
"Common.Controls.Keyboard.Common.SwitchToTab" = "Switch to %@";
"Common.Controls.Keyboard.SegmentedControl.NextSection" = "Next Section";
"Common.Controls.Friendship.Unmute" = "Poista mykistys";
"Common.Controls.Friendship.UnmuteUser" = "Poista mykistys tililtä %@";
"Common.Controls.Keyboard.Common.ComposeNewPost" = "Koosta uusi julkaisu";
"Common.Controls.Keyboard.Common.OpenSettings" = "Avaa asetukset";
"Common.Controls.Keyboard.Common.ShowFavorites" = "Näytä suosikit";
"Common.Controls.Keyboard.Common.SwitchToTab" = "Vaihda %@";
"Common.Controls.Keyboard.SegmentedControl.NextSection" = "Seuraava lohko";
"Common.Controls.Keyboard.SegmentedControl.PreviousSection" = "Previous Section";
"Common.Controls.Keyboard.Timeline.NextStatus" = "Next Post";
"Common.Controls.Keyboard.Timeline.OpenAuthorProfile" = "Open Author's Profile";
"Common.Controls.Keyboard.Timeline.OpenRebloggerProfile" = "Open Reblogger's Profile";
"Common.Controls.Keyboard.Timeline.OpenStatus" = "Open Post";
"Common.Controls.Keyboard.Timeline.NextStatus" = "Seuraava julkaisu";
"Common.Controls.Keyboard.Timeline.OpenAuthorProfile" = "Avaa tekijän profiili";
"Common.Controls.Keyboard.Timeline.OpenRebloggerProfile" = "Avaa edelleen jakajan profiili";
"Common.Controls.Keyboard.Timeline.OpenStatus" = "Avaa julkaisu";
"Common.Controls.Keyboard.Timeline.PreviewImage" = "Preview Image";
"Common.Controls.Keyboard.Timeline.PreviousStatus" = "Previous Post";
"Common.Controls.Keyboard.Timeline.ReplyStatus" = "Reply to Post";
"Common.Controls.Keyboard.Timeline.ToggleContentWarning" = "Toggle Content Warning";
"Common.Controls.Keyboard.Timeline.PreviousStatus" = "Edellinen julkaisu";
"Common.Controls.Keyboard.Timeline.ReplyStatus" = "Vastaa julkaisuun";
"Common.Controls.Keyboard.Timeline.ToggleContentWarning" = "Vaihda sisältövaroitus";
"Common.Controls.Keyboard.Timeline.ToggleFavorite" = "Toggle Favorite on Post";
"Common.Controls.Keyboard.Timeline.ToggleReblog" = "Toggle Reblog on Post";
"Common.Controls.Status.Actions.Favorite" = "Favorite";
"Common.Controls.Status.Actions.Menu" = "Meny";
"Common.Controls.Status.Actions.Reblog" = "Reblog";
"Common.Controls.Status.Actions.Reply" = "Reply";
"Common.Controls.Status.Actions.Hide" = "Dölj";
"Common.Controls.Status.Actions.Menu" = "Valikko";
"Common.Controls.Status.Actions.Reblog" = "Jaa edelleen";
"Common.Controls.Status.Actions.Reply" = "Vastaa";
"Common.Controls.Status.Actions.Unfavorite" = "Unfavorite";
"Common.Controls.Status.Actions.Unreblog" = "Undo reblog";
"Common.Controls.Status.ContentWarning" = "Content Warning";
"Common.Controls.Status.MediaContentWarning" = "Tap anywhere to reveal";
"Common.Controls.Status.Poll.Closed" = "Closed";
"Common.Controls.Status.Actions.Unreblog" = "Peru edelleen jako";
"Common.Controls.Status.ContentWarning" = "Sisältövaroitus";
"Common.Controls.Status.MediaContentWarning" = "Napauta mistä tahansa paljastaaksesi";
"Common.Controls.Status.Poll.Closed" = "Suljettu";
"Common.Controls.Status.Poll.Vote" = "Vote";
"Common.Controls.Status.ShowPost" = "Show Post";
"Common.Controls.Status.ShowUserProfile" = "Show user profile";
"Common.Controls.Status.Tag.Email" = "Email";
"Common.Controls.Status.ShowPost" = "Näytä julkaisu";
"Common.Controls.Status.ShowUserProfile" = "Näytä tili";
"Common.Controls.Status.Tag.Email" = "Sähköposti";
"Common.Controls.Status.Tag.Emoji" = "Emoji";
"Common.Controls.Status.Tag.Hashtag" = "Hashtag";
"Common.Controls.Status.Tag.Link" = "Link";
"Common.Controls.Status.Tag.Hashtag" = "Hashtagi";
"Common.Controls.Status.Tag.Link" = "Linkki";
"Common.Controls.Status.Tag.Mention" = "Mention";
"Common.Controls.Status.Tag.Url" = "URL";
"Common.Controls.Status.UserReblogged" = "%@ reblogged";
"Common.Controls.Status.UserRepliedTo" = "Replied to %@";
"Common.Controls.Tabs.Home" = "Home";
"Common.Controls.Tabs.Notification" = "Notification";
"Common.Controls.Tabs.Profile" = "Profil";
"Common.Controls.Tabs.Search" = "Search";
"Common.Controls.Timeline.Filtered" = "Filtered";
"Common.Controls.Timeline.Header.BlockedWarning" = "You cant view this users profile
until they unblock you.";
"Common.Controls.Timeline.Header.BlockingWarning" = "You cant view this user's profile
until you unblock them.
Your profile looks like this to them.";
"Common.Controls.Timeline.Header.NoStatusFound" = "No Post Found";
"Common.Controls.Timeline.Header.SuspendedWarning" = "This user has been suspended.";
"Common.Controls.Timeline.Header.UserBlockedWarning" = "You cant view %@s profile
until they unblock you.";
"Common.Controls.Timeline.Header.UserBlockingWarning" = "You cant view %@s profile
until you unblock them.
Your profile looks like this to them.";
"Common.Controls.Timeline.Header.UserSuspendedWarning" = "%@s account has been suspended.";
"Common.Controls.Timeline.Loader.LoadMissingPosts" = "Load missing posts";
"Common.Controls.Timeline.Loader.LoadingMissingPosts" = "Loading missing posts...";
"Common.Controls.Timeline.Loader.ShowMoreReplies" = "Visa fler svar";
"Common.Controls.Timeline.Timestamp.Now" = "Now";
"Scene.AccountList.AddAccount" = "Lägg till konto";
"Scene.AccountList.DismissAccountSwitcher" = "Dismiss Account Switcher";
"Scene.AccountList.TabBarHint" = "Current selected profile: %@. Double tap then hold to show account switcher";
"Scene.Compose.Accessibility.AppendAttachment" = "Add Attachment";
"Scene.Compose.Accessibility.AppendPoll" = "Add Poll";
"Scene.Compose.Accessibility.CustomEmojiPicker" = "Custom Emoji Picker";
"Scene.Compose.Accessibility.DisableContentWarning" = "Disable Content Warning";
"Scene.Compose.Accessibility.EnableContentWarning" = "Enable Content Warning";
"Scene.Compose.Accessibility.PostVisibilityMenu" = "Post Visibility Menu";
"Scene.Compose.Accessibility.RemovePoll" = "Remove Poll";
"Common.Controls.Status.UserReblogged" = "%@ jakoi edelleen";
"Common.Controls.Status.UserRepliedTo" = "Vastasi %@:lle";
"Common.Controls.Status.Visibility.Direct" = "Only mentioned user can see this post.";
"Common.Controls.Status.Visibility.Private" = "Only their followers can see this post.";
"Common.Controls.Status.Visibility.PrivateFromMe" = "Only my followers can see this post.";
"Common.Controls.Status.Visibility.Unlisted" = "Everyone can see this post but not display in the public timeline.";
"Common.Controls.Tabs.Home" = "Koti";
"Common.Controls.Tabs.Notification" = "Ilmoitus";
"Common.Controls.Tabs.Profile" = "Profiili";
"Common.Controls.Tabs.Search" = "Haku";
"Common.Controls.Timeline.Filtered" = "Suodatettu";
"Common.Controls.Timeline.Header.BlockedWarning" = "Et voi tarkastella tämän tilin profiilia
ennen kuin hän poistaa eston.";
"Common.Controls.Timeline.Header.BlockingWarning" = "Et voi tarkastella tämän tilin profiilia
ennen kuin poistat sen esto.
Profiilisi näyttää tältä hänelle.";
"Common.Controls.Timeline.Header.NoStatusFound" = "Julkaisua ei löytynyt";
"Common.Controls.Timeline.Header.SuspendedWarning" = "Tämä tili on lakkautettu.";
"Common.Controls.Timeline.Header.UserBlockedWarning" = "Et voi tarkastella tilin %@ profiilia
ennen kuin hän poistaa eston.";
"Common.Controls.Timeline.Header.UserBlockingWarning" = "Et voi tarkastella tilin %@ profiilia
ennen kuin poistat sen esto.
Profiilisi näyttää tältä hänelle.";
"Common.Controls.Timeline.Header.UserSuspendedWarning" = "Tili %@ on lakkautettu.";
"Common.Controls.Timeline.Loader.LoadMissingPosts" = "Lataa puuttuvat julkaisut";
"Common.Controls.Timeline.Loader.LoadingMissingPosts" = "Ladataan puuttuvia julkaisuja...";
"Common.Controls.Timeline.Loader.ShowMoreReplies" = "Näytä lisää vastauksia";
"Common.Controls.Timeline.Timestamp.Now" = "Nyt";
"Scene.AccountList.AddAccount" = "Lisää tili";
"Scene.AccountList.DismissAccountSwitcher" = "Sulje tilin vaihtaja";
"Scene.AccountList.TabBarHint" = "Nykyinen valittu profiili: %@. Kaksoisnapauta ja pidä sitten painettuna näytääksesi tilin vaihtajan";
"Scene.Compose.Accessibility.AppendAttachment" = "Lisää liite";
"Scene.Compose.Accessibility.AppendPoll" = "Lisää kysely";
"Scene.Compose.Accessibility.CustomEmojiPicker" = "Mukautettu emojivalitsin";
"Scene.Compose.Accessibility.DisableContentWarning" = "Poista sisältövaroitus käytöstä";
"Scene.Compose.Accessibility.EnableContentWarning" = "Ota sisältövaroitus käyttöön";
"Scene.Compose.Accessibility.PostVisibilityMenu" = "Julkaisun näkyvyysvalikko";
"Scene.Compose.Accessibility.RemovePoll" = "Poista kysely";
"Scene.Compose.Attachment.AttachmentBroken" = "This %@ is broken and cant be
uploaded to Mastodon.";
"Scene.Compose.Attachment.DescriptionPhoto" = "Describe the photo for the visually-impaired...";
"Scene.Compose.Attachment.DescriptionVideo" = "Describe the video for the visually-impaired...";
"Scene.Compose.Attachment.Photo" = "photo";
"Scene.Compose.Attachment.DescriptionPhoto" = "Kuvaile kuva näkövammaisille...";
"Scene.Compose.Attachment.DescriptionVideo" = "Kuvaile video näkövammaisille...";
"Scene.Compose.Attachment.Photo" = "kuva";
"Scene.Compose.Attachment.Video" = "video";
"Scene.Compose.AutoComplete.SpaceToAdd" = "Space to add";
"Scene.Compose.ComposeAction" = "Publicera";
"Scene.Compose.ContentInputPlaceholder" = "Type or paste whats on your mind";
"Scene.Compose.ContentWarning.Placeholder" = "Write an accurate warning here...";
"Scene.Compose.Keyboard.AppendAttachmentEntry" = "Add Attachment - %@";
"Scene.Compose.Keyboard.DiscardPost" = "Discard Post";
"Scene.Compose.Keyboard.PublishPost" = "Publish Post";
"Scene.Compose.Keyboard.SelectVisibilityEntry" = "Select Visibility - %@";
"Scene.Compose.Keyboard.ToggleContentWarning" = "Toggle Content Warning";
"Scene.Compose.Keyboard.TogglePoll" = "Toggle Poll";
"Scene.Compose.MediaSelection.Browse" = "Bläddra";
"Scene.Compose.MediaSelection.Camera" = "Take Photo";
"Scene.Compose.MediaSelection.PhotoLibrary" = "Photo Library";
"Scene.Compose.Poll.DurationTime" = "Varaktighet: %@";
"Scene.Compose.Poll.OneDay" = "1 Day";
"Scene.Compose.Poll.OneHour" = "1 Hour";
"Scene.Compose.Poll.OptionNumber" = "Option %ld";
"Scene.Compose.Poll.SevenDays" = "7 Days";
"Scene.Compose.Poll.SixHours" = "6 Hours";
"Scene.Compose.Poll.ThirtyMinutes" = "30 minuter";
"Scene.Compose.Poll.ThreeDays" = "3 Days";
"Scene.Compose.ReplyingToUser" = "replying to %@";
"Scene.Compose.Title.NewPost" = "New Post";
"Scene.Compose.Title.NewReply" = "New Reply";
"Scene.Compose.Visibility.Direct" = "Only people I mention";
"Scene.Compose.Visibility.Private" = "Followers only";
"Scene.Compose.Visibility.Public" = "Public";
"Scene.Compose.Visibility.Unlisted" = "Unlisted";
"Scene.ConfirmEmail.Button.DontReceiveEmail" = "I never got an email";
"Scene.ConfirmEmail.Button.OpenEmailApp" = "Open Email App";
"Scene.ConfirmEmail.DontReceiveEmail.Description" = "Check if your email address is correct as well as your junk folder if you havent.";
"Scene.ConfirmEmail.DontReceiveEmail.ResendEmail" = "Resend Email";
"Scene.ConfirmEmail.DontReceiveEmail.Title" = "Check your email";
"Scene.ConfirmEmail.OpenEmailApp.Description" = "We just sent you an email. Check your junk folder if you havent.";
"Scene.ConfirmEmail.OpenEmailApp.Mail" = "Mail";
"Scene.ConfirmEmail.OpenEmailApp.OpenEmailClient" = "Open Email Client";
"Scene.ConfirmEmail.OpenEmailApp.Title" = "Check your inbox.";
"Scene.ConfirmEmail.Subtitle" = "We just sent an email to %@,
tap the link to confirm your account.";
"Scene.ConfirmEmail.Title" = "One last thing.";
"Scene.Favorite.Title" = "Your Favorites";
"Scene.Follower.Footer" = "Followers from other servers are not displayed.";
"Scene.Following.Footer" = "Follows from other servers are not displayed.";
"Scene.HomeTimeline.NavigationBarState.NewPosts" = "See new posts";
"Scene.HomeTimeline.NavigationBarState.Offline" = "Offline";
"Scene.HomeTimeline.NavigationBarState.Published" = "Published!";
"Scene.HomeTimeline.NavigationBarState.Publishing" = "Publishing post...";
"Scene.HomeTimeline.Title" = "Home";
"Scene.Notification.Keyobard.ShowEverything" = "Show Everything";
"Scene.Notification.Keyobard.ShowMentions" = "Show Mentions";
"Scene.Notification.Title.Everything" = "Everything";
"Scene.Notification.Title.Mentions" = "Mentions";
"Scene.Notification.UserFavorited Your Post" = "%@ favorited your post";
"Scene.Notification.UserFollowedYou" = "%@ följde dig";
"Scene.Notification.UserMentionedYou" = "%@ nämnde dig";
"Scene.Notification.UserRebloggedYourPost" = "%@ reblogged your post";
"Scene.Notification.UserRequestedToFollowYou" = "%@ har begärt att följa dig";
"Scene.Notification.UserYourPollHasEnded" = "%@ Omröstningen har avslutats";
"Scene.Preview.Keyboard.ClosePreview" = "Close Preview";
"Scene.Preview.Keyboard.ShowNext" = "Show Next";
"Scene.Preview.Keyboard.ShowPrevious" = "Show Previous";
"Scene.Profile.Dashboard.Followers" = "followers";
"Scene.Profile.Dashboard.Following" = "following";
"Scene.Profile.Dashboard.Posts" = "posts";
"Scene.Profile.Fields.AddRow" = "Add Row";
"Scene.Profile.Fields.Placeholder.Content" = "Content";
"Scene.Profile.Fields.Placeholder.Label" = "Label";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUsre.Message" = "Confirm to unblock %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUsre.Title" = "Unblock Account";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Confirm to unmute %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Title" = "Unmute Account";
"Scene.Compose.ComposeAction" = "Julkaise";
"Scene.Compose.ContentInputPlaceholder" = "Kirjoita tai liitä, siitä mitä ajattelet";
"Scene.Compose.ContentWarning.Placeholder" = "Kirjoita tarkka varoitus tähän...";
"Scene.Compose.Keyboard.AppendAttachmentEntry" = "Lisää liite - %@";
"Scene.Compose.Keyboard.DiscardPost" = "Hylkää julkaisu";
"Scene.Compose.Keyboard.PublishPost" = "Julkaise julkaisu";
"Scene.Compose.Keyboard.SelectVisibilityEntry" = "Valitse näkyvyys - %@";
"Scene.Compose.Keyboard.ToggleContentWarning" = "Vaihda sisältövaroitus";
"Scene.Compose.Keyboard.TogglePoll" = "Vaihda kysely";
"Scene.Compose.MediaSelection.Browse" = "Selaa";
"Scene.Compose.MediaSelection.Camera" = "Ota kuva";
"Scene.Compose.MediaSelection.PhotoLibrary" = "Kuvakirjasto";
"Scene.Compose.Poll.DurationTime" = "Kesto: %@";
"Scene.Compose.Poll.OneDay" = "1 päivä";
"Scene.Compose.Poll.OneHour" = "1 tunti";
"Scene.Compose.Poll.OptionNumber" = "Vaihtoehto %ld";
"Scene.Compose.Poll.SevenDays" = "7 päivää";
"Scene.Compose.Poll.SixHours" = "6 tuntia";
"Scene.Compose.Poll.ThirtyMinutes" = "30 minuuttia";
"Scene.Compose.Poll.ThreeDays" = "3 päivää";
"Scene.Compose.ReplyingToUser" = "vastaamassa tilille %@";
"Scene.Compose.Title.NewPost" = "Uusi julkaisu";
"Scene.Compose.Title.NewReply" = "Uusi vastaus";
"Scene.Compose.Visibility.Direct" = "Vain mainitsemani tilit";
"Scene.Compose.Visibility.Private" = "Vain seuraajat";
"Scene.Compose.Visibility.Public" = "Julkinen";
"Scene.Compose.Visibility.Unlisted" = "Listaamaton";
"Scene.ConfirmEmail.Button.OpenEmailApp" = "Avaa sähköpostisovellus";
"Scene.ConfirmEmail.Button.Resend" = "Resend";
"Scene.ConfirmEmail.DontReceiveEmail.Description" = "Tarkista, että sähköpostiosoitteesi on oikea, sekä roskapostikansiosi, jos et vielä ole.";
"Scene.ConfirmEmail.DontReceiveEmail.ResendEmail" = "Lähetä sähköposti uudelleen";
"Scene.ConfirmEmail.DontReceiveEmail.Title" = "Tarkista sähköpostisi";
"Scene.ConfirmEmail.OpenEmailApp.Description" = "Lähetimme sinulle juuri sähköpostin. Tarkista myös roskapostikansiosi, jos et vielä ole.";
"Scene.ConfirmEmail.OpenEmailApp.Mail" = "Sähköposti";
"Scene.ConfirmEmail.OpenEmailApp.OpenEmailClient" = "Avaa sähköpostisovellus";
"Scene.ConfirmEmail.OpenEmailApp.Title" = "Tarkasta postilaatikkosi.";
"Scene.ConfirmEmail.Subtitle" = "Lähetimme juuri sähköpostin osoitteeseen %@, napauta siinä olevaa linkkiä vahvistaaksesi tilisi.";
"Scene.ConfirmEmail.Title" = "Viimeinen asia.";
"Scene.Favorite.Title" = "Omat suosikit";
"Scene.Follower.Footer" = "Seuraajia muilta palvelimilta ei näytetä.";
"Scene.Following.Footer" = "Seurauksia muilta palvelimilta ei näytetä.";
"Scene.HomeTimeline.NavigationBarState.NewPosts" = "Uusia julkaisuja";
"Scene.HomeTimeline.NavigationBarState.Offline" = "Yhteydetön";
"Scene.HomeTimeline.NavigationBarState.Published" = "Julkaistu!";
"Scene.HomeTimeline.NavigationBarState.Publishing" = "Julkaistaan julkaisua...";
"Scene.HomeTimeline.Title" = "Koti";
"Scene.Notification.Keyobard.ShowEverything" = "Näytä kaikki";
"Scene.Notification.Keyobard.ShowMentions" = "Näytä maininnat";
"Scene.Notification.NotificationDescription.FavoritedYourPost" = "favorited your post";
"Scene.Notification.NotificationDescription.FollowedYou" = "followed you";
"Scene.Notification.NotificationDescription.MentionedYou" = "nämnde dig";
"Scene.Notification.NotificationDescription.PollHasEnded" = "poll has ended";
"Scene.Notification.NotificationDescription.RebloggedYourPost" = "reblogged your post";
"Scene.Notification.NotificationDescription.RequestToFollowYou" = "request to follow you";
"Scene.Notification.Title.Everything" = "Kaikki";
"Scene.Notification.Title.Mentions" = "Maininnat";
"Scene.Preview.Keyboard.ClosePreview" = "Sulje esikatselu";
"Scene.Preview.Keyboard.ShowNext" = "Näytä seuraava";
"Scene.Preview.Keyboard.ShowPrevious" = "Näytä edellinen";
"Scene.Profile.Dashboard.Followers" = "seuraajat";
"Scene.Profile.Dashboard.Following" = "seurataan";
"Scene.Profile.Dashboard.Posts" = "julkaisut";
"Scene.Profile.Fields.AddRow" = "Lisää rivi";
"Scene.Profile.Fields.Placeholder.Content" = "Sisältö";
"Scene.Profile.Fields.Placeholder.Label" = "Nimi";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Confirm to block %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Block Account";
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Message" = "Confirm to mute %@";
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Mute Account";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Confirm to unblock %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Unblock Account";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Vahvista, että haluat poistaa mykistyksen tililtä %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Title" = "Poista tilin mykistys";
"Scene.Profile.SegmentedControl.About" = "Om";
"Scene.Profile.SegmentedControl.Media" = "Media";
"Scene.Profile.SegmentedControl.Posts" = "Posts";
"Scene.Profile.SegmentedControl.Replies" = "Replies";
"Scene.Register.Error.Item.Agreement" = "Agreement";
"Scene.Register.Error.Item.Email" = "Email";
"Scene.Profile.SegmentedControl.Posts" = "Julkaisut";
"Scene.Profile.SegmentedControl.PostsAndReplies" = "Posts and Replies";
"Scene.Profile.SegmentedControl.Replies" = "Vastaukset";
"Scene.Register.Error.Item.Agreement" = "Hyväksy";
"Scene.Register.Error.Item.Email" = "Sähköposti";
"Scene.Register.Error.Item.Locale" = "Locale";
"Scene.Register.Error.Item.Password" = "Password";
"Scene.Register.Error.Item.Reason" = "Reason";
"Scene.Register.Error.Item.Username" = "Användarnamn";
"Scene.Register.Error.Reason.Accepted" = "%@ must be accepted";
"Scene.Register.Error.Reason.Blank" = "%@ is required";
"Scene.Register.Error.Reason.Blocked" = "%@ contains a disallowed email provider";
"Scene.Register.Error.Reason.Inclusion" = "%@ is not a supported value";
"Scene.Register.Error.Reason.Invalid" = "%@ is invalid";
"Scene.Register.Error.Item.Password" = "Salasana";
"Scene.Register.Error.Item.Reason" = "Syy";
"Scene.Register.Error.Item.Username" = "Käyttäjänimi";
"Scene.Register.Error.Reason.Accepted" = "%@ täytyy hyväksyä";
"Scene.Register.Error.Reason.Blank" = "%@ vaaditaan";
"Scene.Register.Error.Reason.Blocked" = "%@ sisältää estetyn sähköpostipalveluntarjoajan";
"Scene.Register.Error.Reason.Inclusion" = "%@ ei ole tuettu arvo";
"Scene.Register.Error.Reason.Invalid" = "%@ on virheellinen";
"Scene.Register.Error.Reason.Reserved" = "%@ is a reserved keyword";
"Scene.Register.Error.Reason.Taken" = "%@ is already in use";
"Scene.Register.Error.Reason.TooLong" = "%@ is too long";
"Scene.Register.Error.Reason.TooShort" = "%@ is too short";
"Scene.Register.Error.Reason.Unreachable" = "%@ does not seem to exist";
"Scene.Register.Error.Special.EmailInvalid" = "This is not a valid email address";
"Scene.Register.Error.Special.PasswordTooShort" = "Password is too short (must be at least 8 characters)";
"Scene.Register.Error.Special.UsernameInvalid" = "Username must only contain alphanumeric characters and underscores";
"Scene.Register.Error.Special.UsernameTooLong" = "Username is too long (cant be longer than 30 characters)";
"Scene.Register.Input.Avatar.Delete" = "Radera";
"Scene.Register.Input.DisplayName.Placeholder" = "display name";
"Scene.Register.Input.Email.Placeholder" = "email";
"Scene.Register.Input.Invite.RegistrationUserInviteRequest" = "Why do you want to join?";
"Scene.Register.Input.Password.Hint" = "Your password needs at least eight characters";
"Scene.Register.Input.Password.Placeholder" = "password";
"Scene.Register.Input.Username.DuplicatePrompt" = "This username is taken.";
"Scene.Register.Input.Username.Placeholder" = "username";
"Scene.Register.Title" = "Tell us about you.";
"Scene.Report.Content1" = "Are there any other posts youd like to add to the report?";
"Scene.Report.Content2" = "Is there anything the moderators should know about this report?";
"Scene.Report.Send" = "Send Report";
"Scene.Report.SkipToSend" = "Send without comment";
"Scene.Report.Step1" = "Steg 1 av 2";
"Scene.Report.Step2" = "Steg 2 av 2";
"Scene.Report.TextPlaceholder" = "Type or paste additional comments";
"Scene.Report.Title" = "Rapportera %@";
"Scene.Search.Recommend.Accounts.Description" = "You may like to follow these accounts";
"Scene.Search.Recommend.Accounts.Follow" = "Följ";
"Scene.Search.Recommend.Accounts.Title" = "Accounts you might like";
"Scene.Search.Recommend.ButtonText" = "See All";
"Scene.Search.Recommend.HashTag.Description" = "Hashtags that are getting quite a bit of attention";
"Scene.Search.Recommend.HashTag.PeopleTalking" = "%@ people are talking";
"Scene.Search.Recommend.HashTag.Title" = "Trending on Mastodon";
"Scene.Search.SearchBar.Cancel" = "Avbryt";
"Scene.Search.SearchBar.Placeholder" = "Search hashtags and users";
"Scene.Search.Searching.Clear" = "Clear";
"Scene.Search.Searching.EmptyState.NoResults" = "Inga resultat";
"Scene.Search.Searching.RecentSearch" = "Recent searches";
"Scene.Search.Searching.Segment.All" = "All";
"Scene.Search.Searching.Segment.Hashtags" = "Hashtags";
"Scene.Search.Searching.Segment.People" = "People";
"Scene.Search.Searching.Segment.Posts" = "Posts";
"Scene.Search.Title" = "Search";
"Scene.ServerPicker.Button.Category.Academia" = "academia";
"Scene.ServerPicker.Button.Category.Activism" = "activism";
"Scene.ServerPicker.Button.Category.All" = "All";
"Scene.ServerPicker.Button.Category.AllAccessiblityDescription" = "Kategori: Alla";
"Scene.ServerPicker.Button.Category.Art" = "art";
"Scene.ServerPicker.Button.Category.Food" = "food";
"Scene.ServerPicker.Button.Category.Furry" = "furry";
"Scene.ServerPicker.Button.Category.Games" = "games";
"Scene.ServerPicker.Button.Category.General" = "general";
"Scene.ServerPicker.Button.Category.Journalism" = "journalism";
"Scene.ServerPicker.Button.Category.Lgbt" = "lgbt";
"Scene.ServerPicker.Button.Category.Music" = "music";
"Scene.ServerPicker.Button.Category.Regional" = "regional";
"Scene.ServerPicker.Button.Category.Tech" = "tech";
"Scene.ServerPicker.Button.SeeLess" = "See Less";
"Scene.ServerPicker.Button.SeeMore" = "See More";
"Scene.ServerPicker.EmptyState.BadNetwork" = "Something went wrong while loading the data. Check your internet connection.";
"Scene.ServerPicker.EmptyState.FindingServers" = "Finding available servers...";
"Scene.ServerPicker.EmptyState.NoResults" = "Inga resultat";
"Scene.ServerPicker.Input.Placeholder" = "Find a server or join your own...";
"Scene.ServerPicker.Label.Category" = "KATEGORI";
"Scene.ServerPicker.Label.Language" = "SPRÅK";
"Scene.ServerPicker.Label.Users" = "ANVÄNDARE";
"Scene.ServerPicker.Title" = "Pick a server,
any server.";
"Scene.ServerRules.Button.Confirm" = "I Agree";
"Scene.ServerRules.PrivacyPolicy" = "integritetspolicy";
"Scene.ServerRules.Prompt" = "By continuing, youre subject to the terms of service and privacy policy for %@.";
"Scene.ServerRules.Subtitle" = "These rules are set by the admins of %@.";
"Scene.ServerRules.TermsOfService" = "terms of service";
"Scene.ServerRules.Title" = "Some ground rules.";
"Scene.Settings.Footer.MastodonDescription" = "Mastodon is open source software. You can report issues on GitHub at %@ (%@)";
"Scene.Settings.Keyboard.CloseSettingsWindow" = "Close Settings Window";
"Scene.Settings.Section.Appearance.Automatic" = "Automatic";
"Scene.Settings.Section.Appearance.Dark" = "Always Dark";
"Scene.Settings.Section.Appearance.Light" = "Always Light";
"Scene.Settings.Section.Appearance.Title" = "Appearance";
"Scene.Settings.Section.BoringZone.AccountSettings" = "Account Settings";
"Scene.Settings.Section.BoringZone.Privacy" = "Integritetspolicy";
"Scene.Settings.Section.BoringZone.Terms" = "Terms of Service";
"Scene.Settings.Section.BoringZone.Title" = "The Boring Zone";
"Scene.Settings.Section.Notifications.Boosts" = "Reblogs my post";
"Scene.Register.Error.Reason.Taken" = "%@ on jo käytössä";
"Scene.Register.Error.Reason.TooLong" = "%@ on liian pitkä";
"Scene.Register.Error.Reason.TooShort" = "%@ on liian lyhyt";
"Scene.Register.Error.Reason.Unreachable" = "%@ ei näytä olevan olemassa";
"Scene.Register.Error.Special.EmailInvalid" = "Tämä ei ole kelvollinen sähköpostiosoite";
"Scene.Register.Error.Special.PasswordTooShort" = "Salasana on liian lyhyt (täytyy olla vähintään 8 merkkiä)";
"Scene.Register.Error.Special.UsernameInvalid" = "Käyttäjänimi voi sisältää ainoastaan aakkosnumerrisia merkkejä ja alaviivoja";
"Scene.Register.Error.Special.UsernameTooLong" = "Käyttäjänimi on liian pitkä (ei voi olla pidempi kuin 30 merkkiä)";
"Scene.Register.Input.Avatar.Delete" = "Poista";
"Scene.Register.Input.DisplayName.Placeholder" = "näyttönimi";
"Scene.Register.Input.Email.Placeholder" = "sähköposti";
"Scene.Register.Input.Invite.RegistrationUserInviteRequest" = "Miksi haluat liittyä?";
"Scene.Register.Input.Password.Accessibility.Checked" = "checked";
"Scene.Register.Input.Password.Accessibility.Unchecked" = "unchecked";
"Scene.Register.Input.Password.CharacterLimit" = "8 characters";
"Scene.Register.Input.Password.Hint" = "Salasanassasi on oltava vähintään kahdeksan merkkiä";
"Scene.Register.Input.Password.Placeholder" = "salasana";
"Scene.Register.Input.Password.Require" = "Your password needs at least:";
"Scene.Register.Input.Username.DuplicatePrompt" = "Tämä käyttäjänimi on varattu.";
"Scene.Register.Input.Username.Placeholder" = "käyttäjänimi";
"Scene.Register.Title" = "Kerro meille sinusta.";
"Scene.Report.Content1" = "Onko julkaisuja, joita haluaisit lisätä ilmiantoon?";
"Scene.Report.Content2" = "Onko valvojien syytä tietää tästä ilmiannosta?";
"Scene.Report.ReportSentTitle" = "Thanks for reporting, well look into this.";
"Scene.Report.Reported" = "REPORTED";
"Scene.Report.Send" = "Lähetä ilmianto";
"Scene.Report.SkipToSend" = "Lähetä ilman kommentteja";
"Scene.Report.Step1" = "Vaihe 1/2";
"Scene.Report.Step2" = "Vaihe 2/2";
"Scene.Report.TextPlaceholder" = "Kirjoita tai liitä lisäkommentteja";
"Scene.Report.Title" = "Ilmianna %@";
"Scene.Report.TitleReport" = "Report";
"Scene.Search.Recommend.Accounts.Description" = "Haluta ehkä seurata näitä tilejä";
"Scene.Search.Recommend.Accounts.Follow" = "Seuraa";
"Scene.Search.Recommend.Accounts.Title" = "Saatat pitää näistä tileistä";
"Scene.Search.Recommend.ButtonText" = "Katso kaikki";
"Scene.Search.Recommend.HashTag.Description" = "Hashtagit, jotka saavat melkoisesti huomiota";
"Scene.Search.Recommend.HashTag.PeopleTalking" = "%@ ihmistä puhuu";
"Scene.Search.Recommend.HashTag.Title" = "Trendaavat Mastodonissa";
"Scene.Search.SearchBar.Cancel" = "Kumoa";
"Scene.Search.SearchBar.Placeholder" = "Haku";
"Scene.Search.Searching.Clear" = "Tyhjennä";
"Scene.Search.Searching.EmptyState.NoResults" = "Ei hakutuloksia";
"Scene.Search.Searching.RecentSearch" = "Viimeaikaiset";
"Scene.Search.Searching.Segment.All" = "Kaikki";
"Scene.Search.Searching.Segment.Hashtags" = "Hashtagit";
"Scene.Search.Searching.Segment.People" = "Tilit";
"Scene.Search.Searching.Segment.Posts" = "Julkaisut";
"Scene.Search.Title" = "Haku";
"Scene.ServerPicker.Button.Category.Academia" = "akateeminen";
"Scene.ServerPicker.Button.Category.Activism" = "aktivismi";
"Scene.ServerPicker.Button.Category.All" = "Kaikki";
"Scene.ServerPicker.Button.Category.AllAccessiblityDescription" = "Kategoria: Kaikki";
"Scene.ServerPicker.Button.Category.Art" = "taide";
"Scene.ServerPicker.Button.Category.Food" = "ruoka";
"Scene.ServerPicker.Button.Category.Furry" = "turri";
"Scene.ServerPicker.Button.Category.Games" = "pelit";
"Scene.ServerPicker.Button.Category.General" = "yleinen";
"Scene.ServerPicker.Button.Category.Journalism" = "journalismi";
"Scene.ServerPicker.Button.Category.Lgbt" = "hlbt";
"Scene.ServerPicker.Button.Category.Music" = "musiikki";
"Scene.ServerPicker.Button.Category.Regional" = "alueellinen";
"Scene.ServerPicker.Button.Category.Tech" = "tekniikka";
"Scene.ServerPicker.Button.SeeLess" = "Näytä vähemmän";
"Scene.ServerPicker.Button.SeeMore" = "Näytä lisää";
"Scene.ServerPicker.EmptyState.BadNetwork" = "Jokin meni pieleen dataa ladatessa. Tarkista internet-yhteytesi.";
"Scene.ServerPicker.EmptyState.FindingServers" = "Etsistään saatavilla olevia palvelimia...";
"Scene.ServerPicker.EmptyState.NoResults" = "Ei hakutuloksia";
"Scene.ServerPicker.Input.Placeholder" = "Etsi palvelin tai liity omaan...";
"Scene.ServerPicker.Label.Category" = "KATEGORIA";
"Scene.ServerPicker.Label.Language" = "KIELI";
"Scene.ServerPicker.Label.Users" = "TILIÄ";
"Scene.ServerPicker.Subtitle" = "Pick a community based on your interests, region, or a general purpose one.";
"Scene.ServerPicker.SubtitleExtend" = "Pick a community based on your interests, region, or a general purpose one. Each community is operated by an entirely independent organization or individual.";
"Scene.ServerPicker.Title" = "Valitse palvelin,
mikä tahansa palvelin.";
"Scene.ServerRules.Button.Confirm" = "Hyväksyn";
"Scene.ServerRules.PrivacyPolicy" = "tietosuojakäytäntö";
"Scene.ServerRules.Prompt" = "Jatkamalla, hyväksyt palvelun %@ palveluehdot ja tietosuojakäytönnön.";
"Scene.ServerRules.Subtitle" = "Nämä säännöt ovat %@ -palvelun asettamia.";
"Scene.ServerRules.TermsOfService" = "käyttöehdot";
"Scene.ServerRules.Title" = "Joitakin perussääntöjä.";
"Scene.Settings.Footer.MastodonDescription" = "Mastodon on avoimen lähdekoodin ohjelmisto. Voit raportoida ongelmasta GitHubissa osoitteessa %@ (%@)";
"Scene.Settings.Keyboard.CloseSettingsWindow" = "Sulje asetukset";
"Scene.Settings.Section.Appearance.Automatic" = "Seuraa järjestelmää";
"Scene.Settings.Section.Appearance.Dark" = "Tumma";
"Scene.Settings.Section.Appearance.Light" = "Vaalea";
"Scene.Settings.Section.Appearance.Title" = "Ulkoasu";
"Scene.Settings.Section.BoringZone.AccountSettings" = "Tiliasetukset";
"Scene.Settings.Section.BoringZone.Privacy" = "Tietosuojakäytäntö";
"Scene.Settings.Section.BoringZone.Terms" = "Palveluehdot";
"Scene.Settings.Section.BoringZone.Title" = "Tylsä alue";
"Scene.Settings.Section.LookAndFeel.Light" = "Ljust";
"Scene.Settings.Section.LookAndFeel.ReallyDark" = "Really Dark";
"Scene.Settings.Section.LookAndFeel.SortaDark" = "Sorta Dark";
"Scene.Settings.Section.LookAndFeel.Title" = "Look and Feel";
"Scene.Settings.Section.LookAndFeel.UseSystem" = "Use System";
"Scene.Settings.Section.Notifications.Boosts" = "Omien julkaisujen edelleen jaot";
"Scene.Settings.Section.Notifications.Favorites" = "Favorites my post";
"Scene.Settings.Section.Notifications.Follows" = "Follows me";
"Scene.Settings.Section.Notifications.Mentions" = "Mentions me";
"Scene.Settings.Section.Notifications.Title" = "Notifications";
"Scene.Settings.Section.Notifications.Trigger.Anyone" = "anyone";
"Scene.Settings.Section.Notifications.Trigger.Follow" = "anyone I follow";
"Scene.Settings.Section.Notifications.Trigger.Follower" = "a follower";
"Scene.Settings.Section.Notifications.Trigger.Noone" = "no one";
"Scene.Settings.Section.Notifications.Trigger.Title" = "Notify me when";
"Scene.Settings.Section.Preference.DisableAvatarAnimation" = "Disable animated avatars";
"Scene.Settings.Section.Preference.DisableEmojiAnimation" = "Disable animated emojis";
"Scene.Settings.Section.Preference.Title" = "Preferences";
"Scene.Settings.Section.Preference.TrueBlackDarkMode" = "True black dark mode";
"Scene.Settings.Section.Preference.UsingDefaultBrowser" = "Use default browser to open links";
"Scene.Settings.Section.SpicyZone.Clear" = "Clear Media Cache";
"Scene.Settings.Section.SpicyZone.Signout" = "Logga ut";
"Scene.Settings.Section.SpicyZone.Title" = "The Spicy Zone";
"Scene.Settings.Title" = "Inställningar";
"Scene.SuggestionAccount.FollowExplain" = "When you follow someone, youll see their posts in your home feed.";
"Scene.SuggestionAccount.Title" = "Find People to Follow";
"Scene.Thread.BackTitle" = "Post";
"Scene.Thread.Title" = "Post from %@";
"Scene.Welcome.Slogan" = "Social networking
back in your hands.";
"Scene.Wizard.AccessibilityHint" = "Double tap to dismiss this wizard";
"Scene.Wizard.MultipleAccountSwitchIntroDescription" = "Switch between multiple accounts by holding the profile button.";
"Scene.Wizard.NewInMastodon" = "New in Mastodon";
"Scene.Settings.Section.Notifications.Follows" = "Seuraa minua";
"Scene.Settings.Section.Notifications.Mentions" = "Mainitsee minut";
"Scene.Settings.Section.Notifications.Title" = "Ilmoitukset";
"Scene.Settings.Section.Notifications.Trigger.Anyone" = "kuka tahansa";
"Scene.Settings.Section.Notifications.Trigger.Follow" = "kuka tahansa, jota seuraan";
"Scene.Settings.Section.Notifications.Trigger.Follower" = "seuraaja";
"Scene.Settings.Section.Notifications.Trigger.Noone" = "ei kukaan";
"Scene.Settings.Section.Notifications.Trigger.Title" = "Ilmoita minulle, kun";
"Scene.Settings.Section.Preference.DisableAvatarAnimation" = "Poista käytöstä animoidut avatarit";
"Scene.Settings.Section.Preference.DisableEmojiAnimation" = "Poista käytöstä animoidut emojit";
"Scene.Settings.Section.Preference.Title" = "Lisäasetukset";
"Scene.Settings.Section.Preference.TrueBlackDarkMode" = "Todellinen mustan tumma tila";
"Scene.Settings.Section.Preference.UsingDefaultBrowser" = "Käytä oletusselainta linkkien avaamiseen";
"Scene.Settings.Section.SpicyZone.Clear" = "Tyhjennä median välimuisti";
"Scene.Settings.Section.SpicyZone.Signout" = "Kirjaudu ulos";
"Scene.Settings.Section.SpicyZone.Title" = "Varovainen alue";
"Scene.Settings.Title" = "Asetukset";
"Scene.SuggestionAccount.FollowExplain" = "Kun seuraat jotakuta, näet hänen julkaisunsa kotisyötteessäsi.";
"Scene.SuggestionAccount.Title" = "Löydä tilejä seurattavaksi";
"Scene.Thread.BackTitle" = "Julkaisu";
"Scene.Thread.Title" = "Julkaisu tililtä %@";
"Scene.Welcome.GetStarted" = "Kom igång";
"Scene.Welcome.LogIn" = "Logga in";
"Scene.Welcome.Slogan" = "Sosiaalinen verkostoituminen
takaisin käsissäsi.";
"Scene.Wizard.AccessibilityHint" = "Hylkää tämä ohjattu toiminto kaksoisnapauttamalla";
"Scene.Wizard.MultipleAccountSwitchIntroDescription" = "Vaihda useiden tilien välillä pitämällä profiilipainiketta painettuna.";
"Scene.Wizard.NewInMastodon" = "Uutta Mastodonissa";

View File

@ -13,15 +13,15 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 unread notification</string>
<string>1 lukematon ilmoitus</string>
<key>other</key>
<string>%ld unread notification</string>
<string>%ld lukematonta ilmoitusta</string>
</dict>
</dict>
<key>a11y.plural.count.input_limit_exceeds</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>Input limit exceeds %#@character_count@</string>
<string>Syöterajoitus ylittyy %#@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 character</string>
<string>1 merkki</string>
<key>other</key>
<string>%ld characters</string>
<string>%ld merkkiä</string>
</dict>
</dict>
<key>a11y.plural.count.input_limit_remains</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>Input limit remains %#@character_count@</string>
<string>Syöterajoitus ylittyy %#@character_count@ päästä</string>
<key>character_count</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
@ -45,9 +45,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 character</string>
<string>1 merkki</string>
<key>other</key>
<string>%ld characters</string>
<string>%ld merkkiä</string>
</dict>
</dict>
<key>plural.count.metric_formatted.post</key>
@ -61,9 +61,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>post</string>
<string>julkaisu</string>
<key>other</key>
<string>posts</string>
<string>julkaisut</string>
</dict>
</dict>
<key>plural.count.post</key>
@ -77,9 +77,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 post</string>
<string>1 julkaisu</string>
<key>other</key>
<string>%ld posts</string>
<string>%ld julkaisua</string>
</dict>
</dict>
<key>plural.count.favorite</key>
@ -93,9 +93,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 favorite</string>
<string>1 suosikki</string>
<key>other</key>
<string>%ld favorites</string>
<string>%ld suosikkia</string>
</dict>
</dict>
<key>plural.count.reblog</key>
@ -109,9 +109,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 reblog</string>
<string>1 edelleen jako</string>
<key>other</key>
<string>%ld reblogs</string>
<string>%ld edelleen jakoa</string>
</dict>
</dict>
<key>plural.count.vote</key>
@ -125,9 +125,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 vote</string>
<string>1 ääni</string>
<key>other</key>
<string>%ld votes</string>
<string>%ld ääntä</string>
</dict>
</dict>
<key>plural.count.voter</key>
@ -141,9 +141,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 voter</string>
<string>1 vastaaja</string>
<key>other</key>
<string>%ld voters</string>
<string>%ld vastaajaa</string>
</dict>
</dict>
<key>plural.people_talking</key>
@ -157,9 +157,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 people talking</string>
<string>1 ihminen puhuu</string>
<key>other</key>
<string>%ld people talking</string>
<string>%ld ihmistä puhuu</string>
</dict>
</dict>
<key>plural.count.following</key>
@ -173,9 +173,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 following</string>
<string>1 seurataan</string>
<key>other</key>
<string>%ld following</string>
<string>%ld seurataan</string>
</dict>
</dict>
<key>plural.count.follower</key>
@ -189,9 +189,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 följare</string>
<string>1 seuraaja</string>
<key>other</key>
<string>%ld följare</string>
<string>%ld seuraajaa</string>
</dict>
</dict>
<key>date.year.left</key>
@ -205,9 +205,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 year left</string>
<string>1 vuosi jäljellä</string>
<key>other</key>
<string>%ld years left</string>
<string>%ld vuotta jäljellä</string>
</dict>
</dict>
<key>date.month.left</key>
@ -221,9 +221,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 months left</string>
<string>1 kuukausi jäljellä</string>
<key>other</key>
<string>%ld months left</string>
<string>%ld kuukautta jäljellä</string>
</dict>
</dict>
<key>date.day.left</key>
@ -237,9 +237,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 day left</string>
<string>1 päivä jäljellä</string>
<key>other</key>
<string>%ld days left</string>
<string>%ld päivää jäljellä</string>
</dict>
</dict>
<key>date.hour.left</key>
@ -253,9 +253,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 hour left</string>
<string>1 tunti jäljellä</string>
<key>other</key>
<string>%ld hours left</string>
<string>%ld tuntia jäljellä</string>
</dict>
</dict>
<key>date.minute.left</key>
@ -269,9 +269,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 minute left</string>
<string>1 minuutti jäljellä</string>
<key>other</key>
<string>%ld minutes left</string>
<string>%ld minuuttia jäljellä</string>
</dict>
</dict>
<key>date.second.left</key>
@ -285,9 +285,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1 second left</string>
<string>1 sekuntti</string>
<key>other</key>
<string>%ld seconds left</string>
<string>%ld sekunttia jäljellä</string>
</dict>
</dict>
<key>date.year.ago.abbr</key>
@ -301,9 +301,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1y ago</string>
<string>1v sitten</string>
<key>other</key>
<string>%ldy ago</string>
<string>%ldv sitten</string>
</dict>
</dict>
<key>date.month.ago.abbr</key>
@ -317,9 +317,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1M ago</string>
<string>1kk sitten</string>
<key>other</key>
<string>%ldM ago</string>
<string>%ldkk sitten</string>
</dict>
</dict>
<key>date.day.ago.abbr</key>
@ -333,9 +333,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1d ago</string>
<string>1pv sitten</string>
<key>other</key>
<string>%ldd ago</string>
<string>%ldpv sitten</string>
</dict>
</dict>
<key>date.hour.ago.abbr</key>
@ -349,9 +349,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1h ago</string>
<string>1t sitten</string>
<key>other</key>
<string>%ldh ago</string>
<string>%ldt sitten</string>
</dict>
</dict>
<key>date.minute.ago.abbr</key>
@ -365,9 +365,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1m ago</string>
<string>1min sitten</string>
<key>other</key>
<string>%ldm ago</string>
<string>%ldmin sitten</string>
</dict>
</dict>
<key>date.second.ago.abbr</key>
@ -381,9 +381,9 @@
<key>NSStringFormatValueTypeKey</key>
<string>ld</string>
<key>one</key>
<string>1s ago</string>
<string>1s sitten</string>
<key>other</key>
<string>%lds ago</string>
<string>%lds sitten</string>
</dict>
</dict>
</dict>

View File

@ -4,7 +4,7 @@
"Common.Alerts.CleanCache.Title" = "ล้างแคช";
"Common.Alerts.Common.PleaseTryAgain" = "โปรดลองอีกครั้ง";
"Common.Alerts.Common.PleaseTryAgainLater" = "โปรดลองอีกครั้งในภายหลัง";
"Common.Alerts.DeletePost.Delete" = "ลบ";
"Common.Alerts.DeletePost.Message" = "คุณแน่ใจหรือไม่ว่าต้องการลบโพสต์นี้?";
"Common.Alerts.DeletePost.Title" = "คุณแน่ใจหรือไม่ว่าต้องการลบโพสต์นี้?";
"Common.Alerts.DiscardPostContent.Message" = "ยืนยันที่จะละทิ้งเนื้อหาโพสต์ที่เขียน";
"Common.Alerts.DiscardPostContent.Title" = "ละทิ้งแบบร่าง";
@ -41,6 +41,7 @@
"Common.Controls.Actions.Next" = "ถัดไป";
"Common.Controls.Actions.Ok" = "ตกลง";
"Common.Controls.Actions.Open" = "เปิด";
"Common.Controls.Actions.OpenInBrowser" = "เปิดในเบราว์เซอร์";
"Common.Controls.Actions.OpenInSafari" = "เปิดใน Safari";
"Common.Controls.Actions.Preview" = "แสดงตัวอย่าง";
"Common.Controls.Actions.Previous" = "ก่อนหน้า";
@ -93,6 +94,7 @@
"Common.Controls.Keyboard.Timeline.ToggleFavorite" = "เปิด/ปิดรายการโปรดในโพสต์";
"Common.Controls.Keyboard.Timeline.ToggleReblog" = "เปิด/ปิดการดันในโพสต์";
"Common.Controls.Status.Actions.Favorite" = "ชื่นชอบ";
"Common.Controls.Status.Actions.Hide" = "ซ่อน";
"Common.Controls.Status.Actions.Menu" = "เมนู";
"Common.Controls.Status.Actions.Reblog" = "ดัน";
"Common.Controls.Status.Actions.Reply" = "ตอบกลับ";
@ -112,6 +114,10 @@
"Common.Controls.Status.Tag.Url" = "URL";
"Common.Controls.Status.UserReblogged" = "%@ ได้ดัน";
"Common.Controls.Status.UserRepliedTo" = "ตอบกลับ %@";
"Common.Controls.Status.Visibility.Direct" = "เฉพาะผู้ใช้ที่กล่าวถึงเท่านั้นที่สามารถเห็นโพสต์นี้";
"Common.Controls.Status.Visibility.Private" = "เฉพาะผู้ติดตามของเขาเท่านั้นที่สามารถเห็นโพสต์นี้";
"Common.Controls.Status.Visibility.PrivateFromMe" = "เฉพาะผู้ติดตามของฉันเท่านั้นที่สามารถเห็นโพสต์นี้";
"Common.Controls.Status.Visibility.Unlisted" = "ทุกคนสามารถเห็นโพสต์นี้แต่ไม่แสดงในเส้นเวลาสาธารณะ";
"Common.Controls.Tabs.Home" = "หน้าแรก";
"Common.Controls.Tabs.Notification" = "การแจ้งเตือน";
"Common.Controls.Tabs.Profile" = "โปรไฟล์";
@ -178,8 +184,8 @@
"Scene.Compose.Visibility.Private" = "ผู้ติดตามเท่านั้น";
"Scene.Compose.Visibility.Public" = "สาธารณะ";
"Scene.Compose.Visibility.Unlisted" = "ไม่อยู่ในรายการ";
"Scene.ConfirmEmail.Button.DontReceiveEmail" = "ฉันไม่เคยได้รับอีเมล";
"Scene.ConfirmEmail.Button.OpenEmailApp" = "เปิดแอปอีเมล";
"Scene.ConfirmEmail.Button.Resend" = "ส่งใหม่";
"Scene.ConfirmEmail.DontReceiveEmail.Description" = "หากคุณยังไม่ได้รับอีเมล ตรวจสอบว่าที่อยู่อีเมลของคุณถูกต้อง รวมถึงโฟลเดอร์อีเมลขยะของคุณ";
"Scene.ConfirmEmail.DontReceiveEmail.ResendEmail" = "ส่งอีเมลใหม่";
"Scene.ConfirmEmail.DontReceiveEmail.Title" = "ตรวจสอบอีเมลของคุณ";
@ -200,14 +206,14 @@
"Scene.HomeTimeline.Title" = "หน้าแรก";
"Scene.Notification.Keyobard.ShowEverything" = "แสดงทุกอย่าง";
"Scene.Notification.Keyobard.ShowMentions" = "แสดงการกล่าวถึง";
"Scene.Notification.NotificationDescription.FavoritedYourPost" = "ได้ชื่นชอบโพสต์ของคุณ";
"Scene.Notification.NotificationDescription.FollowedYou" = "ได้ติดตามคุณ";
"Scene.Notification.NotificationDescription.MentionedYou" = "ได้กล่าวถึงคุณ";
"Scene.Notification.NotificationDescription.PollHasEnded" = "การสำรวจความคิดเห็นได้สิ้นสุดแล้ว";
"Scene.Notification.NotificationDescription.RebloggedYourPost" = "ได้ดันโพสต์ของคุณ";
"Scene.Notification.NotificationDescription.RequestToFollowYou" = "ขอติดตามคุณ";
"Scene.Notification.Title.Everything" = "ทุกอย่าง";
"Scene.Notification.Title.Mentions" = "การกล่าวถึง";
"Scene.Notification.UserFavorited Your Post" = "%@ ได้ชื่นชอบโพสต์ของคุณ";
"Scene.Notification.UserFollowedYou" = "%@ ได้ติดตามคุณ";
"Scene.Notification.UserMentionedYou" = "%@ ได้กล่าวถึงคุณ";
"Scene.Notification.UserRebloggedYourPost" = "%@ ได้ดันโพสต์ของคุณ";
"Scene.Notification.UserRequestedToFollowYou" = "%@ ได้ขอติดตามคุณ";
"Scene.Notification.UserYourPollHasEnded" = "%@ โพลของคุณได้สิ้นสุดแล้ว";
"Scene.Preview.Keyboard.ClosePreview" = "ปิดตัวอย่าง";
"Scene.Preview.Keyboard.ShowNext" = "แสดงถัดไป";
"Scene.Preview.Keyboard.ShowPrevious" = "แสดงก่อนหน้า";
@ -217,12 +223,18 @@
"Scene.Profile.Fields.AddRow" = "เพิ่มแถว";
"Scene.Profile.Fields.Placeholder.Content" = "เนื้อหา";
"Scene.Profile.Fields.Placeholder.Label" = "ป้ายชื่อ";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUsre.Message" = "ยืนยันเพื่อเลิกปิดกั้น %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUsre.Title" = "เลิกปิดกั้นบัญชี";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "ยืนยันเพื่อปิดกั้น %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "ปิดกั้นบัญชี";
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Message" = "ยืนยันเพื่อซ่อน %@";
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "ซ่อนบัญชี";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "ยืนยันเพื่อเลิกปิดกั้น %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "เลิกปิดกั้นบัญชี";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "ยืนยันเพื่อเลิกซ่อน %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Title" = "เลิกซ่อนบัญชี";
"Scene.Profile.SegmentedControl.About" = "เกี่ยวกับ";
"Scene.Profile.SegmentedControl.Media" = "สื่อ";
"Scene.Profile.SegmentedControl.Posts" = "โพสต์";
"Scene.Profile.SegmentedControl.PostsAndReplies" = "โพสต์และการตอบกลับ";
"Scene.Profile.SegmentedControl.Replies" = "การตอบกลับ";
"Scene.Register.Error.Item.Agreement" = "ข้อตกลง";
"Scene.Register.Error.Item.Email" = "อีเมล";
@ -248,19 +260,26 @@
"Scene.Register.Input.DisplayName.Placeholder" = "ชื่อที่แสดง";
"Scene.Register.Input.Email.Placeholder" = "อีเมล";
"Scene.Register.Input.Invite.RegistrationUserInviteRequest" = "ทำไมคุณจึงต้องการเข้าร่วม?";
"Scene.Register.Input.Password.Accessibility.Checked" = "กาเครื่องหมายแล้ว";
"Scene.Register.Input.Password.Accessibility.Unchecked" = "ไม่ได้กาเครื่องหมาย";
"Scene.Register.Input.Password.CharacterLimit" = "8 ตัวอักษร";
"Scene.Register.Input.Password.Hint" = "รหัสผ่านของคุณต้องมีอย่างน้อยแปดตัวอักษร";
"Scene.Register.Input.Password.Placeholder" = "รหัสผ่าน";
"Scene.Register.Input.Password.Require" = "รหัสผ่านของคุณต้องมีอย่างน้อย:";
"Scene.Register.Input.Username.DuplicatePrompt" = "ชื่อผู้ใช้นี้ถูกใช้ไปแล้ว";
"Scene.Register.Input.Username.Placeholder" = "ชื่อผู้ใช้";
"Scene.Register.Title" = "บอกเราเกี่ยวกับคุณ";
"Scene.Report.Content1" = "มีโพสต์อื่นใดที่คุณต้องการเพิ่มไปยังรายงานหรือไม่?";
"Scene.Report.Content2" = "มีสิ่งใดที่ผู้ควบคุมควรทราบเกี่ยวกับรายงานนี้หรือไม่?";
"Scene.Report.ReportSentTitle" = "ขอบคุณสำหรับการรายงาน เราจะตรวจสอบสิ่งนี้";
"Scene.Report.Reported" = "รายงานแล้ว";
"Scene.Report.Send" = "ส่งรายงาน";
"Scene.Report.SkipToSend" = "ส่งโดยไม่มีความคิดเห็น";
"Scene.Report.Step1" = "ขั้นตอนที่ 1 จาก 2";
"Scene.Report.Step2" = "ขั้นตอนที่ 2 จาก 2";
"Scene.Report.TextPlaceholder" = "พิมพ์หรือวางความคิดเห็นเพิ่มเติม";
"Scene.Report.Title" = "รายงาน %@";
"Scene.Report.TitleReport" = "รายงาน";
"Scene.Search.Recommend.Accounts.Description" = "คุณอาจต้องการติดตามบัญชีเหล่านี้";
"Scene.Search.Recommend.Accounts.Follow" = "ติดตาม";
"Scene.Search.Recommend.Accounts.Title" = "บัญชีที่คุณอาจชอบ";
@ -301,6 +320,8 @@
"Scene.ServerPicker.Label.Category" = "หมวดหมู่";
"Scene.ServerPicker.Label.Language" = "ภาษา";
"Scene.ServerPicker.Label.Users" = "ผู้ใช้";
"Scene.ServerPicker.Subtitle" = "เลือกชุมชนตามความสนใจ, ภูมิภาค หรือวัตถุประสงค์ทั่วไปของคุณ";
"Scene.ServerPicker.SubtitleExtend" = "เลือกชุมชนตามความสนใจ, ภูมิภาค หรือวัตถุประสงค์ทั่วไปของคุณ แต่ละชุมชนดำเนินการโดยองค์กรหรือบุคคลที่เป็นอิสระโดยสิ้นเชิง";
"Scene.ServerPicker.Title" = "เลือกเซิร์ฟเวอร์
อันไหนก็ได้";
"Scene.ServerRules.Button.Confirm" = "ฉันเห็นด้วย";
@ -319,6 +340,11 @@
"Scene.Settings.Section.BoringZone.Privacy" = "นโยบายความเป็นส่วนตัว";
"Scene.Settings.Section.BoringZone.Terms" = "เงื่อนไขการให้บริการ";
"Scene.Settings.Section.BoringZone.Title" = "โซนน่าเบื่อ";
"Scene.Settings.Section.LookAndFeel.Light" = "สว่าง";
"Scene.Settings.Section.LookAndFeel.ReallyDark" = "มืดมาก";
"Scene.Settings.Section.LookAndFeel.SortaDark" = "ค่อนข้างมืด";
"Scene.Settings.Section.LookAndFeel.Title" = "ลักษณะที่แสดง";
"Scene.Settings.Section.LookAndFeel.UseSystem" = "ใช้ของระบบ";
"Scene.Settings.Section.Notifications.Boosts" = "ดันโพสต์ของฉัน";
"Scene.Settings.Section.Notifications.Favorites" = "ชื่นชอบโพสต์ของฉัน";
"Scene.Settings.Section.Notifications.Follows" = "ติดตามฉัน";
@ -342,6 +368,8 @@
"Scene.SuggestionAccount.Title" = "ค้นหาผู้คนที่จะติดตาม";
"Scene.Thread.BackTitle" = "โพสต์";
"Scene.Thread.Title" = "โพสต์จาก %@";
"Scene.Welcome.GetStarted" = "เริ่มต้นใช้งาน";
"Scene.Welcome.LogIn" = "เข้าสู่ระบบ";
"Scene.Welcome.Slogan" = "ให้เครือข่ายสังคม
กลับมาอยู่ในมือของคุณ";
"Scene.Wizard.AccessibilityHint" = "แตะสองครั้งเพื่อปิดตัวช่วยสร้างนี้";

View File

@ -4,7 +4,7 @@
"Common.Alerts.CleanCache.Title" = "清除缓存";
"Common.Alerts.Common.PleaseTryAgain" = "请重试。";
"Common.Alerts.Common.PleaseTryAgainLater" = "请稍后重试。";
"Common.Alerts.DeletePost.Delete" = "删除";
"Common.Alerts.DeletePost.Message" = "确定要删除这个帖子吗?";
"Common.Alerts.DeletePost.Title" = "确定要删除这条消息吗?";
"Common.Alerts.DiscardPostContent.Message" = "确认要丢弃正在编辑的内容";
"Common.Alerts.DiscardPostContent.Title" = "丢弃草案";
@ -41,6 +41,7 @@
"Common.Controls.Actions.Next" = "下一个";
"Common.Controls.Actions.Ok" = "好的";
"Common.Controls.Actions.Open" = "打开";
"Common.Controls.Actions.OpenInBrowser" = "在浏览器中打开";
"Common.Controls.Actions.OpenInSafari" = "在 Safari 中打开";
"Common.Controls.Actions.Preview" = "预览";
"Common.Controls.Actions.Previous" = "上一个";
@ -93,6 +94,7 @@
"Common.Controls.Keyboard.Timeline.ToggleFavorite" = "喜欢此帖子";
"Common.Controls.Keyboard.Timeline.ToggleReblog" = "转发此帖子";
"Common.Controls.Status.Actions.Favorite" = "喜欢";
"Common.Controls.Status.Actions.Hide" = "隐藏";
"Common.Controls.Status.Actions.Menu" = "菜单";
"Common.Controls.Status.Actions.Reblog" = "转发";
"Common.Controls.Status.Actions.Reply" = "回复";
@ -112,6 +114,10 @@
"Common.Controls.Status.Tag.Url" = "URL";
"Common.Controls.Status.UserReblogged" = "%@ 转发";
"Common.Controls.Status.UserRepliedTo" = "回复给 %@";
"Common.Controls.Status.Visibility.Direct" = "只有提到的用户才能看到此帖子。";
"Common.Controls.Status.Visibility.Private" = "只有作者的关注者才能看到此帖子。";
"Common.Controls.Status.Visibility.PrivateFromMe" = "只有我的关注者才能看到此帖子。";
"Common.Controls.Status.Visibility.Unlisted" = "任何人都可以看到这个帖子,但不会在公开的时间线中显示。";
"Common.Controls.Tabs.Home" = "主页";
"Common.Controls.Tabs.Notification" = "通知";
"Common.Controls.Tabs.Profile" = "个人资料";
@ -178,8 +184,8 @@
"Scene.Compose.Visibility.Private" = "仅关注者";
"Scene.Compose.Visibility.Public" = "公开";
"Scene.Compose.Visibility.Unlisted" = "不公开";
"Scene.ConfirmEmail.Button.DontReceiveEmail" = "我还没有收到电子邮件";
"Scene.ConfirmEmail.Button.OpenEmailApp" = "打开电子邮件应用";
"Scene.ConfirmEmail.Button.Resend" = "重新发送";
"Scene.ConfirmEmail.DontReceiveEmail.Description" = "检查您的电子邮件地址是否正确,同时请检查你的垃圾箱。";
"Scene.ConfirmEmail.DontReceiveEmail.ResendEmail" = "重新发送邮件";
"Scene.ConfirmEmail.DontReceiveEmail.Title" = "请检查你的邮箱。";
@ -200,14 +206,14 @@
"Scene.HomeTimeline.Title" = "主页";
"Scene.Notification.Keyobard.ShowEverything" = "显示全部";
"Scene.Notification.Keyobard.ShowMentions" = "显示提及";
"Scene.Notification.NotificationDescription.FavoritedYourPost" = "喜欢了你的帖子";
"Scene.Notification.NotificationDescription.FollowedYou" = "关注了你";
"Scene.Notification.NotificationDescription.MentionedYou" = "提及了你";
"Scene.Notification.NotificationDescription.PollHasEnded" = "投票已结束";
"Scene.Notification.NotificationDescription.RebloggedYourPost" = "转发了你的帖子";
"Scene.Notification.NotificationDescription.RequestToFollowYou" = "关注请求";
"Scene.Notification.Title.Everything" = "全部";
"Scene.Notification.Title.Mentions" = "提及";
"Scene.Notification.UserFavorited Your Post" = "%@ 喜欢了你的帖子";
"Scene.Notification.UserFollowedYou" = "%@ 关注了你";
"Scene.Notification.UserMentionedYou" = "%@ 提及了你";
"Scene.Notification.UserRebloggedYourPost" = "%@ 转发了你的帖子";
"Scene.Notification.UserRequestedToFollowYou" = "%@ 向你发送了关注请求";
"Scene.Notification.UserYourPollHasEnded" = "%@ 你的投票已经结束";
"Scene.Preview.Keyboard.ClosePreview" = "关闭预览";
"Scene.Preview.Keyboard.ShowNext" = "显示下一个";
"Scene.Preview.Keyboard.ShowPrevious" = "显示前一个";
@ -217,12 +223,18 @@
"Scene.Profile.Fields.AddRow" = "添加";
"Scene.Profile.Fields.Placeholder.Content" = "内容";
"Scene.Profile.Fields.Placeholder.Label" = "标签";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUsre.Message" = "确认取消屏蔽 %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUsre.Title" = "解除屏蔽帐户";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "确认屏蔽 %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "屏蔽帐户";
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Message" = "确认静音 %@";
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "静音账户";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "确认取消屏蔽 %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "解除屏蔽帐户";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "确认取消静音 %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Title" = "取消静音账户";
"Scene.Profile.SegmentedControl.About" = "关于";
"Scene.Profile.SegmentedControl.Media" = "媒体";
"Scene.Profile.SegmentedControl.Posts" = "帖子";
"Scene.Profile.SegmentedControl.PostsAndReplies" = "帖子与回复";
"Scene.Profile.SegmentedControl.Replies" = "回复";
"Scene.Register.Error.Item.Agreement" = "协议";
"Scene.Register.Error.Item.Email" = "电子邮箱";
@ -248,19 +260,26 @@
"Scene.Register.Input.DisplayName.Placeholder" = "昵称";
"Scene.Register.Input.Email.Placeholder" = "电子邮箱";
"Scene.Register.Input.Invite.RegistrationUserInviteRequest" = "加入的理由是?";
"Scene.Register.Input.Password.Accessibility.Checked" = "已选中";
"Scene.Register.Input.Password.Accessibility.Unchecked" = "未选中";
"Scene.Register.Input.Password.CharacterLimit" = "8 个字符";
"Scene.Register.Input.Password.Hint" = "密码长度至少为 8 个字符";
"Scene.Register.Input.Password.Placeholder" = "密码";
"Scene.Register.Input.Password.Require" = "您的密码至少需要:";
"Scene.Register.Input.Username.DuplicatePrompt" = "此用户名已被使用";
"Scene.Register.Input.Username.Placeholder" = "用户名";
"Scene.Register.Title" = "介绍一下你自己吧";
"Scene.Report.Content1" = "是否有帖子需要举报?";
"Scene.Report.Content2" = "是否有关于此举报的详细描述信息?";
"Scene.Report.ReportSentTitle" = "感谢提交举报,我们将会进行处理。";
"Scene.Report.Reported" = "已报告";
"Scene.Report.Send" = "发送举报";
"Scene.Report.SkipToSend" = "直接发送";
"Scene.Report.Step1" = "步骤 1 / 2";
"Scene.Report.Step2" = "步骤 2 / 2";
"Scene.Report.TextPlaceholder" = "输入或粘贴额外的注释";
"Scene.Report.Title" = "举报 %@";
"Scene.Report.TitleReport" = "举报";
"Scene.Search.Recommend.Accounts.Description" = "你可能会喜欢关注这些用户";
"Scene.Search.Recommend.Accounts.Follow" = "关注";
"Scene.Search.Recommend.Accounts.Title" = "你可能感兴趣的用户";
@ -301,6 +320,8 @@
"Scene.ServerPicker.Label.Category" = "类别";
"Scene.ServerPicker.Label.Language" = "语言";
"Scene.ServerPicker.Label.Users" = "用户";
"Scene.ServerPicker.Subtitle" = "根据你的兴趣、区域或一般目的选择一个社区。";
"Scene.ServerPicker.SubtitleExtend" = "根据你的兴趣、区域或一般目的选择一个社区。每个社区都由完全独立的组织或个人管理。";
"Scene.ServerPicker.Title" = "挑选一个服务器,
任意服务器。";
"Scene.ServerRules.Button.Confirm" = "我同意";
@ -319,6 +340,11 @@
"Scene.Settings.Section.BoringZone.Privacy" = "隐私政策";
"Scene.Settings.Section.BoringZone.Terms" = "服务条款";
"Scene.Settings.Section.BoringZone.Title" = "The Boring Zone";
"Scene.Settings.Section.LookAndFeel.Light" = "浅色";
"Scene.Settings.Section.LookAndFeel.ReallyDark" = "暗色";
"Scene.Settings.Section.LookAndFeel.SortaDark" = "深色";
"Scene.Settings.Section.LookAndFeel.Title" = "外观和风格";
"Scene.Settings.Section.LookAndFeel.UseSystem" = "跟随系统";
"Scene.Settings.Section.Notifications.Boosts" = "转发我的帖子";
"Scene.Settings.Section.Notifications.Favorites" = "喜欢我的帖子";
"Scene.Settings.Section.Notifications.Follows" = "关注我";
@ -342,6 +368,8 @@
"Scene.SuggestionAccount.Title" = "查看推荐关注的用户";
"Scene.Thread.BackTitle" = "帖子";
"Scene.Thread.Title" = "来自 %@ 的帖子";
"Scene.Welcome.GetStarted" = "开始使用";
"Scene.Welcome.LogIn" = "登录";
"Scene.Welcome.Slogan" = "社交网络
回到你的手中。";
"Scene.Wizard.AccessibilityHint" = "双击关闭此向导";

View File

@ -6,8 +6,9 @@
//
import UIKit
import MastodonAsset
import MetaTextKit
import MastodonAsset
import MastodonLocalization
public final class SpoilerBannerView: UIView {
@ -22,7 +23,7 @@ public final class SpoilerBannerView: UIView {
let label = UILabel()
label.textColor = Asset.Colors.Label.primary.color
label.font = UIFontMetrics(forTextStyle: .headline).scaledFont(for: .systemFont(ofSize: 17, weight: .regular))
label.text = "Hide" // TODO: i18n
label.text = L10n.Common.Controls.Status.Actions.hide
return label
}()