update strings (#1219)

This commit is contained in:
Nathan Mattes 2024-01-31 10:04:22 +01:00 committed by GitHub
parent 5ed5c2247c
commit 35bc04be51
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
34 changed files with 561 additions and 412 deletions

View File

@ -222,10 +222,11 @@
"pending": "Pending", "pending": "Pending",
"block": "Block", "block": "Block",
"block_user": "Block %s", "block_user": "Block %s",
"block_domain": "Block %s", "block_domain": "Block domain %s",
"unblock": "Unblock", "unblock": "Unblock",
"unblock_user": "Unblock %s", "unblock_user": "Unblock %s",
"blocked": "Blocked", "blocked": "Blocked",
"domain_blocked": "Domain Blocked",
"mute": "Mute", "mute": "Mute",
"mute_user": "Mute %s", "mute_user": "Mute %s",
"unmute": "Unmute", "unmute": "Unmute",
@ -603,6 +604,14 @@
"confirm_hide_reblogs": { "confirm_hide_reblogs": {
"title": "Hide Reblogs", "title": "Hide Reblogs",
"message": "Confirm to hide reblogs" "message": "Confirm to hide reblogs"
},
"confirm_block_domain": {
"title": "Block domain",
"message": "Confirm to block domain %s"
},
"confirm_unblock_domain": {
"title": "Unblock domain",
"message": "Confirm to unblock domain %s"
} }
}, },
"accessibility": { "accessibility": {

View File

@ -1,4 +1,4 @@
"NSCameraUsageDescription" = "Used to take photo for post status"; "NSCameraUsageDescription" = "Used to take photo for post status";
"NSPhotoLibraryAddUsageDescription" = "Used to save photo into the Photo Library"; "NSPhotoLibraryAddUsageDescription" = "Used to save photo into the Photo Library";
"NewPostShortcutItemTitle" = "New Post"; "NewPostShortcutItemTitle" = "Նոր գրառում";
"SearchShortcutItemTitle" = "Search"; "SearchShortcutItemTitle" = "Որոնել";

View File

@ -12,15 +12,15 @@
"RHxKOw" = "Send Post with text content"; "RHxKOw" = "Send Post with text content";
"RxSqsb" = "Post"; "RxSqsb" = "Գրառում";
"WCIR3D" = "Post ${content} on Mastodon"; "WCIR3D" = "Post ${content} on Mastodon";
"ZKJSNu" = "Post"; "ZKJSNu" = "Գրառում";
"ZS1XaK" = "${content}"; "ZS1XaK" = "${content}";
"ZbSjzC" = "Visibility"; "ZbSjzC" = "Տեսանելիութիւն";
"Zo4jgJ" = "Post Visibility"; "Zo4jgJ" = "Post Visibility";
@ -34,7 +34,7 @@
"dUyuGg" = "Post on Mastodon"; "dUyuGg" = "Post on Mastodon";
"dYQ5NN" = "Public"; "dYQ5NN" = "Հրապարակային";
"ehFLjY" = "Followers Only"; "ehFLjY" = "Followers Only";

View File

@ -206,9 +206,9 @@ public enum L10n {
public enum Friendship { public enum Friendship {
/// Block /// Block
public static let block = L10n.tr("Localizable", "Common.Controls.Friendship.Block", fallback: "Block") public static let block = L10n.tr("Localizable", "Common.Controls.Friendship.Block", fallback: "Block")
/// Block %@ /// Block domain %@
public static func blockDomain(_ p1: Any) -> String { public static func blockDomain(_ p1: Any) -> String {
return L10n.tr("Localizable", "Common.Controls.Friendship.BlockDomain", String(describing: p1), fallback: "Block %@") return L10n.tr("Localizable", "Common.Controls.Friendship.BlockDomain", String(describing: p1), fallback: "Block domain %@")
} }
/// Blocked /// Blocked
public static let blocked = L10n.tr("Localizable", "Common.Controls.Friendship.Blocked", fallback: "Blocked") public static let blocked = L10n.tr("Localizable", "Common.Controls.Friendship.Blocked", fallback: "Blocked")
@ -243,10 +243,6 @@ public enum L10n {
/// Unblock /// Unblock
public static let unblock = L10n.tr("Localizable", "Common.Controls.Friendship.Unblock", fallback: "Unblock") public static let unblock = L10n.tr("Localizable", "Common.Controls.Friendship.Unblock", fallback: "Unblock")
/// Unblock %@ /// Unblock %@
public static func unblockDomain(_ p1: Any) -> String {
return L10n.tr("Localizable", "Common.Controls.Friendship.UnblockDomain", String(describing: p1), fallback: "Unblock %@")
}
/// Unblock %@
public static func unblockUser(_ p1: Any) -> String { public static func unblockUser(_ p1: Any) -> String {
return L10n.tr("Localizable", "Common.Controls.Friendship.UnblockUser", String(describing: p1), fallback: "Unblock %@") return L10n.tr("Localizable", "Common.Controls.Friendship.UnblockUser", String(describing: p1), fallback: "Unblock %@")
} }
@ -960,8 +956,12 @@ public enum L10n {
} }
public enum RelationshipActionAlert { public enum RelationshipActionAlert {
public enum ConfirmBlockDomain { public enum ConfirmBlockDomain {
/// Block Domain /// Confirm to block domain %@
public static let title = L10n.tr("Localizable", "Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Title", fallback: "Block Domain") public static func message(_ p1: Any) -> String {
return L10n.tr("Localizable", "Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Message", String(describing: p1), fallback: "Confirm to block domain %@")
}
/// Block domain
public static let title = L10n.tr("Localizable", "Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Title", fallback: "Block domain")
} }
public enum ConfirmBlockUser { public enum ConfirmBlockUser {
/// Confirm to block %@ /// Confirm to block %@
@ -996,8 +996,8 @@ public enum L10n {
public static func message(_ p1: Any) -> String { public static func message(_ p1: Any) -> String {
return L10n.tr("Localizable", "Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Message", String(describing: p1), fallback: "Confirm to unblock domain %@") return L10n.tr("Localizable", "Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Message", String(describing: p1), fallback: "Confirm to unblock domain %@")
} }
/// Unblock Domain /// Unblock domain
public static let title = L10n.tr("Localizable", "Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Title", fallback: "Unblock Domain") public static let title = L10n.tr("Localizable", "Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Title", fallback: "Unblock domain")
} }
public enum ConfirmUnblockUser { public enum ConfirmUnblockUser {
/// Confirm to unblock %@ /// Confirm to unblock %@

View File

@ -70,7 +70,7 @@ Please check your internet connection.";
"Common.Controls.Actions.UnblockDomain" = "Unblock %@"; "Common.Controls.Actions.UnblockDomain" = "Unblock %@";
"Common.Controls.Actions.Unfollow" = "Unfollow %@"; "Common.Controls.Actions.Unfollow" = "Unfollow %@";
"Common.Controls.Friendship.Block" = "Block"; "Common.Controls.Friendship.Block" = "Block";
"Common.Controls.Friendship.BlockDomain" = "Block %@"; "Common.Controls.Friendship.BlockDomain" = "Block domain %@";
"Common.Controls.Friendship.BlockUser" = "Block %@"; "Common.Controls.Friendship.BlockUser" = "Block %@";
"Common.Controls.Friendship.Blocked" = "Blocked"; "Common.Controls.Friendship.Blocked" = "Blocked";
"Common.Controls.Friendship.DomainBlocked" = "Domain Blocked"; "Common.Controls.Friendship.DomainBlocked" = "Domain Blocked";
@ -86,7 +86,6 @@ Please check your internet connection.";
"Common.Controls.Friendship.ShowReblogs" = "Show Reblogs"; "Common.Controls.Friendship.ShowReblogs" = "Show Reblogs";
"Common.Controls.Friendship.Unblock" = "Unblock"; "Common.Controls.Friendship.Unblock" = "Unblock";
"Common.Controls.Friendship.UnblockUser" = "Unblock %@"; "Common.Controls.Friendship.UnblockUser" = "Unblock %@";
"Common.Controls.Friendship.UnblockDomain" = "Unblock %@";
"Common.Controls.Friendship.Unmute" = "Unmute"; "Common.Controls.Friendship.Unmute" = "Unmute";
"Common.Controls.Friendship.UnmuteUser" = "Unmute %@"; "Common.Controls.Friendship.UnmuteUser" = "Unmute %@";
"Common.Controls.Keyboard.Common.ComposeNewPost" = "Compose New Post"; "Common.Controls.Keyboard.Common.ComposeNewPost" = "Compose New Post";
@ -336,17 +335,18 @@ uploaded to Mastodon.";
"Scene.Profile.Fields.Verified.Long" = "Ownership of this link was checked on %@"; "Scene.Profile.Fields.Verified.Long" = "Ownership of this link was checked on %@";
"Scene.Profile.Fields.Verified.Short" = "Verified on %@"; "Scene.Profile.Fields.Verified.Short" = "Verified on %@";
"Scene.Profile.Header.FollowsYou" = "Follows You"; "Scene.Profile.Header.FollowsYou" = "Follows You";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Message" = "Confirm to block domain %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Title" = "Block domain";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Confirm to block %@"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Confirm to block %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Block Account"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Block Account";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Title" = "Block Domain";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Message" = "Confirm to unblock domain %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Title" = "Unblock Domain";
"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Confirm to hide reblogs"; "Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Confirm to hide reblogs";
"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Title" = "Hide Reblogs"; "Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Title" = "Hide Reblogs";
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Message" = "Confirm to mute %@"; "Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Message" = "Confirm to mute %@";
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Mute Account"; "Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Mute Account";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Confirm to show reblogs"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Confirm to show reblogs";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Show Reblogs"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Show Reblogs";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Message" = "Confirm to unblock domain %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Title" = "Unblock domain";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Confirm to unblock %@"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Confirm to unblock %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Unblock Account"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Unblock Account";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Confirm to unmute %@"; "Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Confirm to unmute %@";
@ -568,4 +568,4 @@ uploaded to Mastodon.";
"Widget.MultipleFollowers.ConfigurationDescription" = "Show number of followers for multiple accounts."; "Widget.MultipleFollowers.ConfigurationDescription" = "Show number of followers for multiple accounts.";
"Widget.MultipleFollowers.ConfigurationDisplayName" = "Multiple followers"; "Widget.MultipleFollowers.ConfigurationDisplayName" = "Multiple followers";
"Widget.MultipleFollowers.MockUser.AccountName" = "another@follower.social"; "Widget.MultipleFollowers.MockUser.AccountName" = "another@follower.social";
"Widget.MultipleFollowers.MockUser.DisplayName" = "Another follower"; "Widget.MultipleFollowers.MockUser.DisplayName" = "Another follower";

View File

@ -70,9 +70,10 @@
"Common.Controls.Actions.UnblockDomain" = "رفع الحظر عن %@"; "Common.Controls.Actions.UnblockDomain" = "رفع الحظر عن %@";
"Common.Controls.Actions.Unfollow" = "ألغِ متابعة %@"; "Common.Controls.Actions.Unfollow" = "ألغِ متابعة %@";
"Common.Controls.Friendship.Block" = "حظر"; "Common.Controls.Friendship.Block" = "حظر";
"Common.Controls.Friendship.BlockDomain" = "حظر %@"; "Common.Controls.Friendship.BlockDomain" = "Block domain %@";
"Common.Controls.Friendship.BlockUser" = "حَظرُ %@"; "Common.Controls.Friendship.BlockUser" = "حَظرُ %@";
"Common.Controls.Friendship.Blocked" = "محظور"; "Common.Controls.Friendship.Blocked" = "محظور";
"Common.Controls.Friendship.DomainBlocked" = "Domain Blocked";
"Common.Controls.Friendship.EditInfo" = "تَحريرُ المَعلُومات"; "Common.Controls.Friendship.EditInfo" = "تَحريرُ المَعلُومات";
"Common.Controls.Friendship.Follow" = "مُتابَعَة"; "Common.Controls.Friendship.Follow" = "مُتابَعَة";
"Common.Controls.Friendship.Following" = "مُتابَع"; "Common.Controls.Friendship.Following" = "مُتابَع";
@ -334,6 +335,8 @@
"Scene.Profile.Fields.Verified.Long" = "تمَّ التَّحقق مِن مِلكية هذا الرابِطِ بِتاريخ %@"; "Scene.Profile.Fields.Verified.Long" = "تمَّ التَّحقق مِن مِلكية هذا الرابِطِ بِتاريخ %@";
"Scene.Profile.Fields.Verified.Short" = "تمَّ التَّحقق بِتاريخ %@"; "Scene.Profile.Fields.Verified.Short" = "تمَّ التَّحقق بِتاريخ %@";
"Scene.Profile.Header.FollowsYou" = "يُتابِعُك"; "Scene.Profile.Header.FollowsYou" = "يُتابِعُك";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Message" = "Confirm to block domain %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Title" = "Block domain";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "تأكيدُ حَظر %@"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "تأكيدُ حَظر %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "حَظرُ الحِساب"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "حَظرُ الحِساب";
"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "التأكيد لِإخفاء إعادات التدوين"; "Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "التأكيد لِإخفاء إعادات التدوين";
@ -342,6 +345,8 @@
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "كَتمُ الحِساب"; "Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "كَتمُ الحِساب";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "التأكيد لِإظهار إعادات التدوين"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "التأكيد لِإظهار إعادات التدوين";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "إظهار إعادات التدوين"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "إظهار إعادات التدوين";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Message" = "Confirm to unblock domain %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Title" = "Unblock domain";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "تأكيدُ رَفع الحَظرِ عَن %@"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "تأكيدُ رَفع الحَظرِ عَن %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "رَفعُ الحَظرِ عَنِ الحِساب"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "رَفعُ الحَظرِ عَنِ الحِساب";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "أكِّد لرفع الكتمْ عن %@"; "Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "أكِّد لرفع الكتمْ عن %@";

View File

@ -70,9 +70,10 @@
"Common.Controls.Actions.UnblockDomain" = "Разблакіраваць %@"; "Common.Controls.Actions.UnblockDomain" = "Разблакіраваць %@";
"Common.Controls.Actions.Unfollow" = "Адпісацца ад %@"; "Common.Controls.Actions.Unfollow" = "Адпісацца ад %@";
"Common.Controls.Friendship.Block" = "Заблакіраваць"; "Common.Controls.Friendship.Block" = "Заблакіраваць";
"Common.Controls.Friendship.BlockDomain" = "Заблакіраваць %@"; "Common.Controls.Friendship.BlockDomain" = "Заблакіраваць дамен %@";
"Common.Controls.Friendship.BlockUser" = "Заблакіраваць %@"; "Common.Controls.Friendship.BlockUser" = "Заблакіраваць %@";
"Common.Controls.Friendship.Blocked" = "Заблакіраваны"; "Common.Controls.Friendship.Blocked" = "Заблакіраваны";
"Common.Controls.Friendship.DomainBlocked" = "Дамен заблакіраваны";
"Common.Controls.Friendship.EditInfo" = "Рэдагаваць інфармацыю"; "Common.Controls.Friendship.EditInfo" = "Рэдагаваць інфармацыю";
"Common.Controls.Friendship.Follow" = "Падпісацца"; "Common.Controls.Friendship.Follow" = "Падпісацца";
"Common.Controls.Friendship.Following" = "Падпісаны"; "Common.Controls.Friendship.Following" = "Падпісаны";
@ -334,6 +335,8 @@
"Scene.Profile.Fields.Verified.Long" = "Права ўласнасці на гэтую спасылку праверана %@"; "Scene.Profile.Fields.Verified.Long" = "Права ўласнасці на гэтую спасылку праверана %@";
"Scene.Profile.Fields.Verified.Short" = "Спраўджана %@"; "Scene.Profile.Fields.Verified.Short" = "Спраўджана %@";
"Scene.Profile.Header.FollowsYou" = "Падпісаны(-а) на вас"; "Scene.Profile.Header.FollowsYou" = "Падпісаны(-а) на вас";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Message" = "Заблакіраваць дамен %@?";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Title" = "Заблакіраваць дамен";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Заблакіраваць %@?"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Заблакіраваць %@?";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Заблакіраваць уліковы запіс"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Заблакіраваць уліковы запіс";
"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Пацвердзіце, каб схаваць пашырэнні"; "Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Пацвердзіце, каб схаваць пашырэнні";
@ -342,6 +345,8 @@
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Ігнараваць уліковы запіс"; "Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Ігнараваць уліковы запіс";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Пацвердзіце, каб паказаць пашырэнні"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Пацвердзіце, каб паказаць пашырэнні";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Паказаць пашырэнні"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Паказаць пашырэнні";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Message" = "Разблакіраваць дамен %@?";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Title" = "Разблакіраваць дамен";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Разблакіраваць %@?"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Разблакіраваць %@?";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Разблакіраваць уліковы запіс"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Разблакіраваць уліковы запіс";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Не ігнараваць %@?"; "Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Не ігнараваць %@?";

View File

@ -70,9 +70,10 @@ Comprova la connexió a Internet.";
"Common.Controls.Actions.UnblockDomain" = "Desbloca %@"; "Common.Controls.Actions.UnblockDomain" = "Desbloca %@";
"Common.Controls.Actions.Unfollow" = "Deixa de seguir %@"; "Common.Controls.Actions.Unfollow" = "Deixa de seguir %@";
"Common.Controls.Friendship.Block" = "Bloca"; "Common.Controls.Friendship.Block" = "Bloca";
"Common.Controls.Friendship.BlockDomain" = "Bloca %@"; "Common.Controls.Friendship.BlockDomain" = "Block domain %@";
"Common.Controls.Friendship.BlockUser" = "Bloca %@"; "Common.Controls.Friendship.BlockUser" = "Bloca %@";
"Common.Controls.Friendship.Blocked" = "Blocat"; "Common.Controls.Friendship.Blocked" = "Blocat";
"Common.Controls.Friendship.DomainBlocked" = "Domain Blocked";
"Common.Controls.Friendship.EditInfo" = "Edita"; "Common.Controls.Friendship.EditInfo" = "Edita";
"Common.Controls.Friendship.Follow" = "Segueix"; "Common.Controls.Friendship.Follow" = "Segueix";
"Common.Controls.Friendship.Following" = "Seguint"; "Common.Controls.Friendship.Following" = "Seguint";
@ -334,6 +335,8 @@ carregat a Mastodon.";
"Scene.Profile.Fields.Verified.Long" = "La propietat d'aquest enllaç es va verificar el dia %@"; "Scene.Profile.Fields.Verified.Long" = "La propietat d'aquest enllaç es va verificar el dia %@";
"Scene.Profile.Fields.Verified.Short" = "Verificat a %@"; "Scene.Profile.Fields.Verified.Short" = "Verificat a %@";
"Scene.Profile.Header.FollowsYou" = "Et segueix"; "Scene.Profile.Header.FollowsYou" = "Et segueix";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Message" = "Confirm to block domain %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Title" = "Block domain";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Confirma per a blocar %@"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Confirma per a blocar %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Bloca el Compte"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Bloca el Compte";
"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Confirma per a amagar els impulsos"; "Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Confirma per a amagar els impulsos";
@ -342,6 +345,8 @@ carregat a Mastodon.";
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Silencia el Compte"; "Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Silencia el Compte";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Confirma per a mostrar els impulsos"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Confirma per a mostrar els impulsos";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Mostra els Impulsos"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Mostra els Impulsos";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Message" = "Confirm to unblock domain %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Title" = "Unblock domain";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Confirma per a desblocar %@"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Confirma per a desblocar %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Desbloca el Compte"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Desbloca el Compte";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Confirma deixar de silenciar a %@"; "Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Confirma deixar de silenciar a %@";

View File

@ -70,9 +70,10 @@
"Common.Controls.Actions.UnblockDomain" = "%@ ئاستەنگ مەکە"; "Common.Controls.Actions.UnblockDomain" = "%@ ئاستەنگ مەکە";
"Common.Controls.Actions.Unfollow" = "Unfollow %@"; "Common.Controls.Actions.Unfollow" = "Unfollow %@";
"Common.Controls.Friendship.Block" = "ئاستەنگی بکە"; "Common.Controls.Friendship.Block" = "ئاستەنگی بکە";
"Common.Controls.Friendship.BlockDomain" = "%@ ئاستەنگ بکە"; "Common.Controls.Friendship.BlockDomain" = "Block domain %@";
"Common.Controls.Friendship.BlockUser" = "%@ ئاستەنگ بکە"; "Common.Controls.Friendship.BlockUser" = "%@ ئاستەنگ بکە";
"Common.Controls.Friendship.Blocked" = "ئاستەنگ کراوە"; "Common.Controls.Friendship.Blocked" = "ئاستەنگ کراوە";
"Common.Controls.Friendship.DomainBlocked" = "Domain Blocked";
"Common.Controls.Friendship.EditInfo" = "دەستکاری"; "Common.Controls.Friendship.EditInfo" = "دەستکاری";
"Common.Controls.Friendship.Follow" = "شوێنی بکەوە"; "Common.Controls.Friendship.Follow" = "شوێنی بکەوە";
"Common.Controls.Friendship.Following" = "شوێنی دەکەویت"; "Common.Controls.Friendship.Following" = "شوێنی دەکەویت";
@ -333,6 +334,8 @@
"Scene.Profile.Fields.Verified.Long" = "Ownership of this link was checked on %@"; "Scene.Profile.Fields.Verified.Long" = "Ownership of this link was checked on %@";
"Scene.Profile.Fields.Verified.Short" = "Verified on %@"; "Scene.Profile.Fields.Verified.Short" = "Verified on %@";
"Scene.Profile.Header.FollowsYou" = "Follows You"; "Scene.Profile.Header.FollowsYou" = "Follows You";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Message" = "Confirm to block domain %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Title" = "Block domain";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "دڵنیا ببەوە بۆ ئاستەنگکردنی %@"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "دڵنیا ببەوە بۆ ئاستەنگکردنی %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "ئاستەنگی بکە"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "ئاستەنگی بکە";
"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Confirm to hide reblogs"; "Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Confirm to hide reblogs";
@ -341,6 +344,8 @@
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "بێدەنگی بکە"; "Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "بێدەنگی بکە";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Confirm to show reblogs"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Confirm to show reblogs";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Show Reblogs"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Show Reblogs";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Message" = "Confirm to unblock domain %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Title" = "Unblock domain";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "دڵنیا ببەوە بۆ لابردنی ئاستەنگی %@"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "دڵنیا ببەوە بۆ لابردنی ئاستەنگی %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "ئاستەنگی مەکە"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "ئاستەنگی مەکە";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "دڵنیا ببەوە بۆ بێدەنگنەکردنی %@"; "Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "دڵنیا ببەوە بۆ بێدەنگنەکردنی %@";

View File

@ -70,9 +70,10 @@ Zkontrolujte prosím připojení k internetu.";
"Common.Controls.Actions.UnblockDomain" = "Odblokovat %@"; "Common.Controls.Actions.UnblockDomain" = "Odblokovat %@";
"Common.Controls.Actions.Unfollow" = "Přestat sledovat %@"; "Common.Controls.Actions.Unfollow" = "Přestat sledovat %@";
"Common.Controls.Friendship.Block" = "Blokovat"; "Common.Controls.Friendship.Block" = "Blokovat";
"Common.Controls.Friendship.BlockDomain" = "Blokovat %@"; "Common.Controls.Friendship.BlockDomain" = "Block domain %@";
"Common.Controls.Friendship.BlockUser" = "Blokovat %@"; "Common.Controls.Friendship.BlockUser" = "Blokovat %@";
"Common.Controls.Friendship.Blocked" = "Blokovaný"; "Common.Controls.Friendship.Blocked" = "Blokovaný";
"Common.Controls.Friendship.DomainBlocked" = "Domain Blocked";
"Common.Controls.Friendship.EditInfo" = "Upravit informace"; "Common.Controls.Friendship.EditInfo" = "Upravit informace";
"Common.Controls.Friendship.Follow" = "Sledovat"; "Common.Controls.Friendship.Follow" = "Sledovat";
"Common.Controls.Friendship.Following" = "Sleduji"; "Common.Controls.Friendship.Following" = "Sleduji";
@ -330,6 +331,8 @@ nahrán do Mastodonu.";
"Scene.Profile.Fields.Verified.Long" = "Vlastnictví tohoto odkazu bylo zkontrolováno na %@"; "Scene.Profile.Fields.Verified.Long" = "Vlastnictví tohoto odkazu bylo zkontrolováno na %@";
"Scene.Profile.Fields.Verified.Short" = "Ověřeno na %@"; "Scene.Profile.Fields.Verified.Short" = "Ověřeno na %@";
"Scene.Profile.Header.FollowsYou" = "Sleduje vás"; "Scene.Profile.Header.FollowsYou" = "Sleduje vás";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Message" = "Confirm to block domain %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Title" = "Block domain";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Potvrdit blokování %@"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Potvrdit blokování %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Blokovat účet"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Blokovat účet";
"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Potvrďte skrytí reblogů"; "Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Potvrďte skrytí reblogů";
@ -338,6 +341,8 @@ nahrán do Mastodonu.";
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Skrýt účet"; "Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Skrýt účet";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Potvrdit zobrazení reblogů"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Potvrdit zobrazení reblogů";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Zobrazit Reblogy"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Zobrazit Reblogy";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Message" = "Confirm to unblock domain %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Title" = "Unblock domain";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Potvrďte odblokování %@"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Potvrďte odblokování %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Odblokovat účet"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Odblokovat účet";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Potvrďte zrušení ztlumení %@"; "Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Potvrďte zrušení ztlumení %@";

View File

@ -70,9 +70,10 @@ Bitte überprüfe deine Internetverbindung.";
"Common.Controls.Actions.UnblockDomain" = "Blockierung von %@ aufheben"; "Common.Controls.Actions.UnblockDomain" = "Blockierung von %@ aufheben";
"Common.Controls.Actions.Unfollow" = "%@ entfolgen"; "Common.Controls.Actions.Unfollow" = "%@ entfolgen";
"Common.Controls.Friendship.Block" = "Blockieren"; "Common.Controls.Friendship.Block" = "Blockieren";
"Common.Controls.Friendship.BlockDomain" = "%@ blockieren"; "Common.Controls.Friendship.BlockDomain" = "Domain %@ sperren";
"Common.Controls.Friendship.BlockUser" = "%@ blockieren"; "Common.Controls.Friendship.BlockUser" = "%@ blockieren";
"Common.Controls.Friendship.Blocked" = "Blockiert"; "Common.Controls.Friendship.Blocked" = "Blockiert";
"Common.Controls.Friendship.DomainBlocked" = "Domain gesperrt";
"Common.Controls.Friendship.EditInfo" = "Information bearbeiten"; "Common.Controls.Friendship.EditInfo" = "Information bearbeiten";
"Common.Controls.Friendship.Follow" = "Folgen"; "Common.Controls.Friendship.Follow" = "Folgen";
"Common.Controls.Friendship.Following" = "Gefolgt"; "Common.Controls.Friendship.Following" = "Gefolgt";
@ -223,19 +224,19 @@ kann nicht auf Mastodon hochgeladen werden.";
"Scene.Compose.Keyboard.TogglePoll" = "Umfrage umschalten"; "Scene.Compose.Keyboard.TogglePoll" = "Umfrage umschalten";
"Scene.Compose.Language.Other" = "Andere Sprache…"; "Scene.Compose.Language.Other" = "Andere Sprache…";
"Scene.Compose.Language.Recent" = "Kürzlich"; "Scene.Compose.Language.Recent" = "Kürzlich";
"Scene.Compose.Language.Suggested" = "Suggested"; "Scene.Compose.Language.Suggested" = "Empfohlen";
"Scene.Compose.Language.Title" = "Beitragssprache"; "Scene.Compose.Language.Title" = "Beitragssprache";
"Scene.Compose.MediaSelection.Browse" = "Durchsuchen"; "Scene.Compose.MediaSelection.Browse" = "Durchsuchen";
"Scene.Compose.MediaSelection.Camera" = "Foto aufnehmen"; "Scene.Compose.MediaSelection.Camera" = "Foto aufnehmen";
"Scene.Compose.MediaSelection.PhotoLibrary" = "Fotobibliothek"; "Scene.Compose.MediaSelection.PhotoLibrary" = "Fotobibliothek";
"Scene.Compose.Poll.AddOption" = "Add Option"; "Scene.Compose.Poll.AddOption" = "Option hinzufügen";
"Scene.Compose.Poll.DurationTime" = "Dauer: %@"; "Scene.Compose.Poll.DurationTime" = "Dauer: %@";
"Scene.Compose.Poll.MoveDown" = "Nach unten"; "Scene.Compose.Poll.MoveDown" = "Nach unten";
"Scene.Compose.Poll.MoveUp" = "Nach oben"; "Scene.Compose.Poll.MoveUp" = "Nach oben";
"Scene.Compose.Poll.OneDay" = "1 Tag"; "Scene.Compose.Poll.OneDay" = "1 Tag";
"Scene.Compose.Poll.OneHour" = "1 Stunde"; "Scene.Compose.Poll.OneHour" = "1 Stunde";
"Scene.Compose.Poll.OptionNumber" = "Auswahlmöglichkeit %ld"; "Scene.Compose.Poll.OptionNumber" = "Auswahlmöglichkeit %ld";
"Scene.Compose.Poll.RemoveOption" = "Remove Option"; "Scene.Compose.Poll.RemoveOption" = "Option entfernen";
"Scene.Compose.Poll.SevenDays" = "7 Tage"; "Scene.Compose.Poll.SevenDays" = "7 Tage";
"Scene.Compose.Poll.SixHours" = "6 Stunden"; "Scene.Compose.Poll.SixHours" = "6 Stunden";
"Scene.Compose.Poll.ThePollHasEmptyOption" = "Die Umfrage hat eine leere Option"; "Scene.Compose.Poll.ThePollHasEmptyOption" = "Die Umfrage hat eine leere Option";
@ -334,6 +335,8 @@ kann nicht auf Mastodon hochgeladen werden.";
"Scene.Profile.Fields.Verified.Long" = "Besitz des Links wurde überprüft am %@"; "Scene.Profile.Fields.Verified.Long" = "Besitz des Links wurde überprüft am %@";
"Scene.Profile.Fields.Verified.Short" = "Überprüft am %@"; "Scene.Profile.Fields.Verified.Short" = "Überprüft am %@";
"Scene.Profile.Header.FollowsYou" = "Folgt dir"; "Scene.Profile.Header.FollowsYou" = "Folgt dir";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Message" = "Bestätigen, um die Domain %@ zu sperren";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Title" = "Domain sperren";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Bestätige %@ zu blockieren"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Bestätige %@ zu blockieren";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Konto blockieren"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Konto blockieren";
"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Bestätigen, um Teilen auszublenden"; "Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Bestätigen, um Teilen auszublenden";
@ -342,6 +345,8 @@ kann nicht auf Mastodon hochgeladen werden.";
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Konto stummschalten"; "Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Konto stummschalten";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Bestätigen, um Teilen anzuzeigen"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Bestätigen, um Teilen anzuzeigen";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Teilen anzeigen"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Teilen anzeigen";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Message" = "Bestätigen, um die Sperre der Domäne %@ aufzuheben";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Title" = "Domain entsperren";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Bestätige %@ zu entsperren"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Bestätige %@ zu entsperren";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Konto entsperren"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Konto entsperren";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Bestätige um %@ nicht mehr stummzuschalten"; "Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Bestätige um %@ nicht mehr stummzuschalten";
@ -443,8 +448,8 @@ kann nicht auf Mastodon hochgeladen werden.";
"Scene.Search.Searching.ClearAll" = "Alles löschen"; "Scene.Search.Searching.ClearAll" = "Alles löschen";
"Scene.Search.Searching.EmptyState.NoResults" = "Keine Ergebnisse"; "Scene.Search.Searching.EmptyState.NoResults" = "Keine Ergebnisse";
"Scene.Search.Searching.Hashtag" = "Wechseln zu #%@"; "Scene.Search.Searching.Hashtag" = "Wechseln zu #%@";
"Scene.Search.Searching.NoUser.Message" = "There's no Useraccount \"%@\" on %@"; "Scene.Search.Searching.NoUser.Message" = "Es gibt kein Benutzerkonto „%@” auf %@";
"Scene.Search.Searching.NoUser.Title" = "No User Account Found"; "Scene.Search.Searching.NoUser.Title" = "Kein Benutzerkonto gefunden";
"Scene.Search.Searching.People" = "People matching \"%@\""; "Scene.Search.Searching.People" = "People matching \"%@\"";
"Scene.Search.Searching.Posts" = "Posts matching \"%@\""; "Scene.Search.Searching.Posts" = "Posts matching \"%@\"";
"Scene.Search.Searching.Profile" = "Go to @%@@%@"; "Scene.Search.Searching.Profile" = "Go to @%@@%@";
@ -490,37 +495,37 @@ kann nicht auf Mastodon hochgeladen werden.";
"Scene.ServerRules.TermsOfService" = "Nutzungsbedingungen"; "Scene.ServerRules.TermsOfService" = "Nutzungsbedingungen";
"Scene.ServerRules.Title" = "Einige Grundregeln."; "Scene.ServerRules.Title" = "Einige Grundregeln.";
"Scene.Settings.AboutMastodon.ClearMediaStorage" = "Clear Media Storage"; "Scene.Settings.AboutMastodon.ClearMediaStorage" = "Clear Media Storage";
"Scene.Settings.AboutMastodon.ContributeToMastodon" = "Contribute to Mastodon"; "Scene.Settings.AboutMastodon.ContributeToMastodon" = "Zu Mastodon beitragen";
"Scene.Settings.AboutMastodon.MoreSettings" = "Noch mehr Einstellungen"; "Scene.Settings.AboutMastodon.MoreSettings" = "Noch mehr Einstellungen";
"Scene.Settings.AboutMastodon.PrivacyPolicy" = "Datenschutzerklärung"; "Scene.Settings.AboutMastodon.PrivacyPolicy" = "Datenschutzerklärung";
"Scene.Settings.AboutMastodon.Title" = "Über"; "Scene.Settings.AboutMastodon.Title" = "Über";
"Scene.Settings.General.Appearance.Dark" = "Dark"; "Scene.Settings.General.Appearance.Dark" = "Dunkel";
"Scene.Settings.General.Appearance.Light" = "Light"; "Scene.Settings.General.Appearance.Light" = "Hell";
"Scene.Settings.General.Appearance.SectionTitle" = "Appearance"; "Scene.Settings.General.Appearance.SectionTitle" = "Farbschema";
"Scene.Settings.General.Appearance.System" = "Use Device Appearance"; "Scene.Settings.General.Appearance.System" = "Einstellungen des Geräts übernehmen";
"Scene.Settings.General.Design.SectionTitle" = "Design"; "Scene.Settings.General.Design.SectionTitle" = "Design";
"Scene.Settings.General.Design.ShowAnimations" = "Play Animated Avatars and Emoji"; "Scene.Settings.General.Design.ShowAnimations" = "Play Animated Avatars and Emoji";
"Scene.Settings.General.Links.OpenInBrowser" = "Open in Browser"; "Scene.Settings.General.Links.OpenInBrowser" = "Im Browser öffnen";
"Scene.Settings.General.Links.OpenInMastodon" = "Open in Mastodon"; "Scene.Settings.General.Links.OpenInMastodon" = "In Mastodon öffnen";
"Scene.Settings.General.Links.SectionTitle" = "Links"; "Scene.Settings.General.Links.SectionTitle" = "Links";
"Scene.Settings.General.Title" = "General"; "Scene.Settings.General.Title" = "Allgemein";
"Scene.Settings.Notifications.Alert.Boosts" = "Boosts"; "Scene.Settings.Notifications.Alert.Boosts" = "Boosts";
"Scene.Settings.Notifications.Alert.Favorites" = "Favorites"; "Scene.Settings.Notifications.Alert.Favorites" = "Favorites";
"Scene.Settings.Notifications.Alert.MentionsAndReplies" = "Mentions & Replies"; "Scene.Settings.Notifications.Alert.MentionsAndReplies" = "Mentions & Replies";
"Scene.Settings.Notifications.Alert.NewFollowers" = "New Followers"; "Scene.Settings.Notifications.Alert.NewFollowers" = "New Followers";
"Scene.Settings.Notifications.Disabled.GoToSettings" = "Go to Notification Settings"; "Scene.Settings.Notifications.Disabled.GoToSettings" = "Go to Notification Settings";
"Scene.Settings.Notifications.Disabled.NotificationHint" = "Turn on notifications from your device settings to see updates on your lock screen."; "Scene.Settings.Notifications.Disabled.NotificationHint" = "Turn on notifications from your device settings to see updates on your lock screen.";
"Scene.Settings.Notifications.Policy.Anyone" = "Anyone"; "Scene.Settings.Notifications.Policy.Anyone" = "Jeder";
"Scene.Settings.Notifications.Policy.Follow" = "People you follow"; "Scene.Settings.Notifications.Policy.Follow" = "People you follow";
"Scene.Settings.Notifications.Policy.Followers" = "People who follow you"; "Scene.Settings.Notifications.Policy.Followers" = "People who follow you";
"Scene.Settings.Notifications.Policy.Noone" = "No one"; "Scene.Settings.Notifications.Policy.Noone" = "Niemand";
"Scene.Settings.Notifications.Policy.Title" = "Get Notifications from"; "Scene.Settings.Notifications.Policy.Title" = "Mitteilungen erhalten von";
"Scene.Settings.Notifications.Title" = "Notifications"; "Scene.Settings.Notifications.Title" = "Mitteilungen";
"Scene.Settings.Overview.AboutMastodon" = "About Mastodon"; "Scene.Settings.Overview.AboutMastodon" = "Über Mastodon";
"Scene.Settings.Overview.General" = "General"; "Scene.Settings.Overview.General" = "Allgemein";
"Scene.Settings.Overview.Logout" = "Logout %@"; "Scene.Settings.Overview.Logout" = "%@ abmelden";
"Scene.Settings.Overview.Notifications" = "Notifications"; "Scene.Settings.Overview.Notifications" = "Benachrichtigungen";
"Scene.Settings.Overview.ServerDetails" = "Server Details"; "Scene.Settings.Overview.ServerDetails" = "Serverdetails";
"Scene.Settings.Overview.SupportMastodon" = "Mastodon unterstützen"; "Scene.Settings.Overview.SupportMastodon" = "Mastodon unterstützen";
"Scene.Settings.Overview.Title" = "Einstellungen"; "Scene.Settings.Overview.Title" = "Einstellungen";
"Scene.Settings.ServerDetails.About" = "Über"; "Scene.Settings.ServerDetails.About" = "Über";

View File

@ -70,9 +70,10 @@
"Common.Controls.Actions.UnblockDomain" = "Άρση αποκλεισμού %@"; "Common.Controls.Actions.UnblockDomain" = "Άρση αποκλεισμού %@";
"Common.Controls.Actions.Unfollow" = "Κατάργηση ακολούθησης του %@"; "Common.Controls.Actions.Unfollow" = "Κατάργηση ακολούθησης του %@";
"Common.Controls.Friendship.Block" = "Αποκλεισμός"; "Common.Controls.Friendship.Block" = "Αποκλεισμός";
"Common.Controls.Friendship.BlockDomain" = "Αποκλεισμός %@"; "Common.Controls.Friendship.BlockDomain" = "Αποκλεισμός τομέα %@";
"Common.Controls.Friendship.BlockUser" = "Αποκλεισμός %@"; "Common.Controls.Friendship.BlockUser" = "Αποκλεισμός %@";
"Common.Controls.Friendship.Blocked" = "Αποκλείστηκε"; "Common.Controls.Friendship.Blocked" = "Αποκλείστηκε";
"Common.Controls.Friendship.DomainBlocked" = "Ο Τομέας αποκλείστηκε";
"Common.Controls.Friendship.EditInfo" = "Επεξεργασία Πληροφοριών"; "Common.Controls.Friendship.EditInfo" = "Επεξεργασία Πληροφοριών";
"Common.Controls.Friendship.Follow" = "Ακολούθησε"; "Common.Controls.Friendship.Follow" = "Ακολούθησε";
"Common.Controls.Friendship.Following" = "Ακολουθείς"; "Common.Controls.Friendship.Following" = "Ακολουθείς";
@ -334,6 +335,8 @@
"Scene.Profile.Fields.Verified.Long" = "Η ιδιοκτησία αυτού του συνδέσμου ελέχθηκε στις %@"; "Scene.Profile.Fields.Verified.Long" = "Η ιδιοκτησία αυτού του συνδέσμου ελέχθηκε στις %@";
"Scene.Profile.Fields.Verified.Short" = "Επαληθεύτηκε στις %@"; "Scene.Profile.Fields.Verified.Short" = "Επαληθεύτηκε στις %@";
"Scene.Profile.Header.FollowsYou" = "Σε Ακολουθεί"; "Scene.Profile.Header.FollowsYou" = "Σε Ακολουθεί";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Message" = "Επιβεβαίωση αποκλεισμού τομέα %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Title" = "Αποκλεισμός τομέα";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Επιβεβαίωση αποκλεισμού %@"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Επιβεβαίωση αποκλεισμού %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Αποκλεισμός Λογαριασμού"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Αποκλεισμός Λογαριασμού";
"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Επιβεβαίωση απόκρυψης αναδημοσιεύσεων"; "Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Επιβεβαίωση απόκρυψης αναδημοσιεύσεων";
@ -342,6 +345,8 @@
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Σίγαση Λογαριασμού"; "Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Σίγαση Λογαριασμού";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Επιβεβαίωση εμφάνισης αναδημοσιεύσεων"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Επιβεβαίωση εμφάνισης αναδημοσιεύσεων";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Εμφάνιση Αναδημοσιεύσεων"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Εμφάνιση Αναδημοσιεύσεων";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Message" = "Επιβεβαίωση άρσης αποκλεισμού τομέα %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Title" = "Άρση αποκλεισμού τομέα";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Επιβεβαίωση άρσης αποκλεισμού %@"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Επιβεβαίωση άρσης αποκλεισμού %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Άρση Αποκλεισμού Λογαριασμού"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Άρση Αποκλεισμού Λογαριασμού";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Επιβεβαίωσε για άρση σίγασης %@"; "Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Επιβεβαίωσε για άρση σίγασης %@";
@ -443,8 +448,8 @@
"Scene.Search.Searching.ClearAll" = "Εκκαθάριση όλων"; "Scene.Search.Searching.ClearAll" = "Εκκαθάριση όλων";
"Scene.Search.Searching.EmptyState.NoResults" = "Κανένα αποτέλεσμα"; "Scene.Search.Searching.EmptyState.NoResults" = "Κανένα αποτέλεσμα";
"Scene.Search.Searching.Hashtag" = "Μετάβαση στο #%@"; "Scene.Search.Searching.Hashtag" = "Μετάβαση στο #%@";
"Scene.Search.Searching.NoUser.Message" = "There's no Useraccount \"%@\" on %@"; "Scene.Search.Searching.NoUser.Message" = "Δεν υπάρχει λογαριασμός χρήστη \"%@\" στο %@";
"Scene.Search.Searching.NoUser.Title" = "No User Account Found"; "Scene.Search.Searching.NoUser.Title" = "Δεν Βρέθηκε Λογαριασμός Χρήστη";
"Scene.Search.Searching.People" = "Άτομα που ταιριάζουν με «%@»"; "Scene.Search.Searching.People" = "Άτομα που ταιριάζουν με «%@»";
"Scene.Search.Searching.Posts" = "Αναρτήσεις που ταιριάζουν με «%@»"; "Scene.Search.Searching.Posts" = "Αναρτήσεις που ταιριάζουν με «%@»";
"Scene.Search.Searching.Profile" = "Μετάβαση στο @%@@%@"; "Scene.Search.Searching.Profile" = "Μετάβαση στο @%@@%@";
@ -489,45 +494,45 @@
"Scene.ServerRules.Subtitle" = "Αυτά ορίζονται και επιβάλλονται από τους συντονιστές %@."; "Scene.ServerRules.Subtitle" = "Αυτά ορίζονται και επιβάλλονται από τους συντονιστές %@.";
"Scene.ServerRules.TermsOfService" = "όροι υπηρεσίας"; "Scene.ServerRules.TermsOfService" = "όροι υπηρεσίας";
"Scene.ServerRules.Title" = "Ορισμένοι βασικοί κανόνες."; "Scene.ServerRules.Title" = "Ορισμένοι βασικοί κανόνες.";
"Scene.Settings.AboutMastodon.ClearMediaStorage" = "Clear Media Storage"; "Scene.Settings.AboutMastodon.ClearMediaStorage" = "Εκκαθάριση Χώρου Αποθήκευσης Πολυμέσων";
"Scene.Settings.AboutMastodon.ContributeToMastodon" = "Contribute to Mastodon"; "Scene.Settings.AboutMastodon.ContributeToMastodon" = "Συνείσφερε στο Mastodon";
"Scene.Settings.AboutMastodon.MoreSettings" = "Even More Settings"; "Scene.Settings.AboutMastodon.MoreSettings" = "Ακόμα Περισσότερες Ρυθμίσεις";
"Scene.Settings.AboutMastodon.PrivacyPolicy" = "Privacy Policy"; "Scene.Settings.AboutMastodon.PrivacyPolicy" = "Πολιτική Απορρήτου";
"Scene.Settings.AboutMastodon.Title" = "About"; "Scene.Settings.AboutMastodon.Title" = "Σχετικά";
"Scene.Settings.General.Appearance.Dark" = "Dark"; "Scene.Settings.General.Appearance.Dark" = "Σκοτεινό";
"Scene.Settings.General.Appearance.Light" = "Light"; "Scene.Settings.General.Appearance.Light" = "Φωτεινό";
"Scene.Settings.General.Appearance.SectionTitle" = "Appearance"; "Scene.Settings.General.Appearance.SectionTitle" = "Εμφάνιση";
"Scene.Settings.General.Appearance.System" = "Use Device Appearance"; "Scene.Settings.General.Appearance.System" = "Χρήση Εμφάνισης Συσκευής";
"Scene.Settings.General.Design.SectionTitle" = "Design"; "Scene.Settings.General.Design.SectionTitle" = "Σχεδίαση";
"Scene.Settings.General.Design.ShowAnimations" = "Play Animated Avatars and Emoji"; "Scene.Settings.General.Design.ShowAnimations" = "Αναπαραγωγή κινούμενων Avatars και Emoji";
"Scene.Settings.General.Links.OpenInBrowser" = "Open in Browser"; "Scene.Settings.General.Links.OpenInBrowser" = "Άνοιγμα στον Περιηγητή";
"Scene.Settings.General.Links.OpenInMastodon" = "Open in Mastodon"; "Scene.Settings.General.Links.OpenInMastodon" = "Άνοιγμα στο Mastodon";
"Scene.Settings.General.Links.SectionTitle" = "Links"; "Scene.Settings.General.Links.SectionTitle" = "Σύνδεσμοι";
"Scene.Settings.General.Title" = "General"; "Scene.Settings.General.Title" = "Γενικά";
"Scene.Settings.Notifications.Alert.Boosts" = "Boosts"; "Scene.Settings.Notifications.Alert.Boosts" = "Ενισχύσεις";
"Scene.Settings.Notifications.Alert.Favorites" = "Favorites"; "Scene.Settings.Notifications.Alert.Favorites" = "Αγαπημένα";
"Scene.Settings.Notifications.Alert.MentionsAndReplies" = "Mentions & Replies"; "Scene.Settings.Notifications.Alert.MentionsAndReplies" = "Αναφορές & Απαντήσεις";
"Scene.Settings.Notifications.Alert.NewFollowers" = "New Followers"; "Scene.Settings.Notifications.Alert.NewFollowers" = "Νέοι Ακόλουθοι";
"Scene.Settings.Notifications.Disabled.GoToSettings" = "Go to Notification Settings"; "Scene.Settings.Notifications.Disabled.GoToSettings" = "Μετάβαση στις Ρυθμίσεις Ειδοποιήσεων";
"Scene.Settings.Notifications.Disabled.NotificationHint" = "Turn on notifications from your device settings to see updates on your lock screen."; "Scene.Settings.Notifications.Disabled.NotificationHint" = "Ενεργοποίησε τις ειδοποιήσεις από τις ρυθμίσεις της συσκευής σου για να βλέπεις ενημερώσεις στην οθόνη κλειδώματος.";
"Scene.Settings.Notifications.Policy.Anyone" = "Anyone"; "Scene.Settings.Notifications.Policy.Anyone" = "Οποιοσδήποτε";
"Scene.Settings.Notifications.Policy.Follow" = "People you follow"; "Scene.Settings.Notifications.Policy.Follow" = "Άτομα που ακολουθείς";
"Scene.Settings.Notifications.Policy.Followers" = "People who follow you"; "Scene.Settings.Notifications.Policy.Followers" = "Άτομα που σε ακολουθούν";
"Scene.Settings.Notifications.Policy.Noone" = "No one"; "Scene.Settings.Notifications.Policy.Noone" = "Κανένας";
"Scene.Settings.Notifications.Policy.Title" = "Get Notifications from"; "Scene.Settings.Notifications.Policy.Title" = "Λήψη Ειδοποιήσεων από";
"Scene.Settings.Notifications.Title" = "Notifications"; "Scene.Settings.Notifications.Title" = "Ειδοποιήσεις";
"Scene.Settings.Overview.AboutMastodon" = "About Mastodon"; "Scene.Settings.Overview.AboutMastodon" = "Σχετικά με το Mastodon";
"Scene.Settings.Overview.General" = "General"; "Scene.Settings.Overview.General" = "Γενικά";
"Scene.Settings.Overview.Logout" = "Logout %@"; "Scene.Settings.Overview.Logout" = "Αποσύνδεση %@";
"Scene.Settings.Overview.Notifications" = "Notifications"; "Scene.Settings.Overview.Notifications" = "Ειδοποιήσεις";
"Scene.Settings.Overview.ServerDetails" = "Server Details"; "Scene.Settings.Overview.ServerDetails" = "Λεπτομέρειες Διακομιστή";
"Scene.Settings.Overview.SupportMastodon" = "Support Mastodon"; "Scene.Settings.Overview.SupportMastodon" = "Υποστήριξε το Mastodon";
"Scene.Settings.Overview.Title" = "Settings"; "Scene.Settings.Overview.Title" = "Ρυθμίσεις";
"Scene.Settings.ServerDetails.About" = "About"; "Scene.Settings.ServerDetails.About" = "Σχετικά";
"Scene.Settings.ServerDetails.AboutInstance.LegalNotice" = "A legal notice"; "Scene.Settings.ServerDetails.AboutInstance.LegalNotice" = "Μια νομική ειδοποίηση";
"Scene.Settings.ServerDetails.AboutInstance.MessageAdmin" = "Message Admin"; "Scene.Settings.ServerDetails.AboutInstance.MessageAdmin" = "Στείλε μήνυμα σε διαχειριστή";
"Scene.Settings.ServerDetails.AboutInstance.Title" = "Administrator"; "Scene.Settings.ServerDetails.AboutInstance.Title" = "Διαχειριστής";
"Scene.Settings.ServerDetails.Rules" = "Rules"; "Scene.Settings.ServerDetails.Rules" = "Κανόνες";
"Scene.SuggestionAccount.FollowAll" = "Ακολούθησε τους όλους"; "Scene.SuggestionAccount.FollowAll" = "Ακολούθησε τους όλους";
"Scene.SuggestionAccount.Title" = "Δημοφιλή στο Mastodon"; "Scene.SuggestionAccount.Title" = "Δημοφιλή στο Mastodon";
"Scene.Thread.BackTitle" = "Ανάρτηση"; "Scene.Thread.BackTitle" = "Ανάρτηση";

View File

@ -70,9 +70,10 @@ Please check your internet connection.";
"Common.Controls.Actions.UnblockDomain" = "Unblock %@"; "Common.Controls.Actions.UnblockDomain" = "Unblock %@";
"Common.Controls.Actions.Unfollow" = "Unfollow %@"; "Common.Controls.Actions.Unfollow" = "Unfollow %@";
"Common.Controls.Friendship.Block" = "Block"; "Common.Controls.Friendship.Block" = "Block";
"Common.Controls.Friendship.BlockDomain" = "Block %@"; "Common.Controls.Friendship.BlockDomain" = "Domain blokkolása: %@";
"Common.Controls.Friendship.BlockUser" = "Block %@"; "Common.Controls.Friendship.BlockUser" = "Block %@";
"Common.Controls.Friendship.Blocked" = "Blocked"; "Common.Controls.Friendship.Blocked" = "Blocked";
"Common.Controls.Friendship.DomainBlocked" = "Domain blokkolva";
"Common.Controls.Friendship.EditInfo" = "Edit Info"; "Common.Controls.Friendship.EditInfo" = "Edit Info";
"Common.Controls.Friendship.Follow" = "Follow"; "Common.Controls.Friendship.Follow" = "Follow";
"Common.Controls.Friendship.Following" = "Following"; "Common.Controls.Friendship.Following" = "Following";
@ -334,6 +335,8 @@ uploaded to Mastodon.";
"Scene.Profile.Fields.Verified.Long" = "Ownership of this link was checked on %@"; "Scene.Profile.Fields.Verified.Long" = "Ownership of this link was checked on %@";
"Scene.Profile.Fields.Verified.Short" = "Verified on %@"; "Scene.Profile.Fields.Verified.Short" = "Verified on %@";
"Scene.Profile.Header.FollowsYou" = "Follows You"; "Scene.Profile.Header.FollowsYou" = "Follows You";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Message" = "Megerősíti a domain blokkolását? %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Title" = "Domain blokkolása";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Confirm to block %@"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Confirm to block %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Block Account"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Block Account";
"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Confirm to hide reblogs"; "Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Confirm to hide reblogs";
@ -342,6 +345,8 @@ uploaded to Mastodon.";
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Mute Account"; "Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Mute Account";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Confirm to show reblogs"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Confirm to show reblogs";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Show Reblogs"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Show Reblogs";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Message" = "Megerősíti a domain blokk feloldását? %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Title" = "Domain blokkolás feloldása";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Confirm to unblock %@"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Confirm to unblock %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Unblock Account"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Unblock Account";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Confirm to unmute %@"; "Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Confirm to unmute %@";

View File

@ -70,9 +70,10 @@ Por favor, revise su conexión a internet.";
"Common.Controls.Actions.UnblockDomain" = "Desbloquear %@"; "Common.Controls.Actions.UnblockDomain" = "Desbloquear %@";
"Common.Controls.Actions.Unfollow" = "Unfollow %@"; "Common.Controls.Actions.Unfollow" = "Unfollow %@";
"Common.Controls.Friendship.Block" = "Bloquear"; "Common.Controls.Friendship.Block" = "Bloquear";
"Common.Controls.Friendship.BlockDomain" = "Bloquear a %@"; "Common.Controls.Friendship.BlockDomain" = "Block domain %@";
"Common.Controls.Friendship.BlockUser" = "Bloquear a %@"; "Common.Controls.Friendship.BlockUser" = "Bloquear a %@";
"Common.Controls.Friendship.Blocked" = "Bloqueado"; "Common.Controls.Friendship.Blocked" = "Bloqueado";
"Common.Controls.Friendship.DomainBlocked" = "Domain Blocked";
"Common.Controls.Friendship.EditInfo" = "Editar Info"; "Common.Controls.Friendship.EditInfo" = "Editar Info";
"Common.Controls.Friendship.Follow" = "Seguir"; "Common.Controls.Friendship.Follow" = "Seguir";
"Common.Controls.Friendship.Following" = "Siguiendo"; "Common.Controls.Friendship.Following" = "Siguiendo";
@ -334,6 +335,8 @@ subirse a Mastodon.";
"Scene.Profile.Fields.Verified.Long" = "La propiedad de este enlace fue verificada el %@"; "Scene.Profile.Fields.Verified.Long" = "La propiedad de este enlace fue verificada el %@";
"Scene.Profile.Fields.Verified.Short" = "Verificado en %@"; "Scene.Profile.Fields.Verified.Short" = "Verificado en %@";
"Scene.Profile.Header.FollowsYou" = "Te sigue"; "Scene.Profile.Header.FollowsYou" = "Te sigue";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Message" = "Confirm to block domain %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Title" = "Block domain";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Confirmar para bloquear a %@"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Confirmar para bloquear a %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Bloquear cuenta"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Bloquear cuenta";
"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Confirmar para ocultar reblogs"; "Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Confirmar para ocultar reblogs";
@ -342,6 +345,8 @@ subirse a Mastodon.";
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Silenciar cuenta"; "Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Silenciar cuenta";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Confirmar para mostrar reblogs"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Confirmar para mostrar reblogs";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Mostrar reblogs"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Mostrar reblogs";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Message" = "Confirm to unblock domain %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Title" = "Unblock domain";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Confirmar para desbloquear a %@"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Confirmar para desbloquear a %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Desbloquear cuenta"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Desbloquear cuenta";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Confirmar para dejar de silenciar a %@"; "Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Confirmar para dejar de silenciar a %@";

View File

@ -70,9 +70,10 @@ Egiaztatu Interneteko konexioa.";
"Common.Controls.Actions.UnblockDomain" = "Desblokeatu %@"; "Common.Controls.Actions.UnblockDomain" = "Desblokeatu %@";
"Common.Controls.Actions.Unfollow" = "Unfollow %@"; "Common.Controls.Actions.Unfollow" = "Unfollow %@";
"Common.Controls.Friendship.Block" = "Blokeatu"; "Common.Controls.Friendship.Block" = "Blokeatu";
"Common.Controls.Friendship.BlockDomain" = "Blokeatu %@"; "Common.Controls.Friendship.BlockDomain" = "Block domain %@";
"Common.Controls.Friendship.BlockUser" = "Blokeatu %@"; "Common.Controls.Friendship.BlockUser" = "Blokeatu %@";
"Common.Controls.Friendship.Blocked" = "Blokeatuta"; "Common.Controls.Friendship.Blocked" = "Blokeatuta";
"Common.Controls.Friendship.DomainBlocked" = "Domain Blocked";
"Common.Controls.Friendship.EditInfo" = "Editatu informazioa"; "Common.Controls.Friendship.EditInfo" = "Editatu informazioa";
"Common.Controls.Friendship.Follow" = "Jarraitu"; "Common.Controls.Friendship.Follow" = "Jarraitu";
"Common.Controls.Friendship.Following" = "Jarraitzen"; "Common.Controls.Friendship.Following" = "Jarraitzen";
@ -334,6 +335,8 @@ Mastodonera igo.";
"Scene.Profile.Fields.Verified.Long" = "Esteka honen jabetzaren egiaztaketa data: %@"; "Scene.Profile.Fields.Verified.Long" = "Esteka honen jabetzaren egiaztaketa data: %@";
"Scene.Profile.Fields.Verified.Short" = "Verified on %@"; "Scene.Profile.Fields.Verified.Short" = "Verified on %@";
"Scene.Profile.Header.FollowsYou" = "Jarraitzen zaitu"; "Scene.Profile.Header.FollowsYou" = "Jarraitzen zaitu";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Message" = "Confirm to block domain %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Title" = "Block domain";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Berretsi %@ blokeatzea"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Berretsi %@ blokeatzea";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Blokeatu kontua"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Blokeatu kontua";
"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Berretsi birbidalketak ezkutatzea"; "Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Berretsi birbidalketak ezkutatzea";
@ -342,6 +345,8 @@ Mastodonera igo.";
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Mututu kontua"; "Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Mututu kontua";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Berretsi birbidalketak ikustea"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Berretsi birbidalketak ikustea";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Ikusi bultzadak"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Ikusi bultzadak";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Message" = "Confirm to unblock domain %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Title" = "Unblock domain";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Berretsi %@ desblokeatzea"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Berretsi %@ desblokeatzea";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Desblokeatu kontua"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Desblokeatu kontua";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Berretsi %@ desmututzea"; "Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Berretsi %@ desmututzea";

View File

@ -70,9 +70,10 @@ Tarkista internet-yhteytesi.";
"Common.Controls.Actions.UnblockDomain" = "Poista esto %@"; "Common.Controls.Actions.UnblockDomain" = "Poista esto %@";
"Common.Controls.Actions.Unfollow" = "Lopeta käyttäjän %@ seuraaminen"; "Common.Controls.Actions.Unfollow" = "Lopeta käyttäjän %@ seuraaminen";
"Common.Controls.Friendship.Block" = "Estä"; "Common.Controls.Friendship.Block" = "Estä";
"Common.Controls.Friendship.BlockDomain" = "Estä %@"; "Common.Controls.Friendship.BlockDomain" = "Block domain %@";
"Common.Controls.Friendship.BlockUser" = "Estä %@"; "Common.Controls.Friendship.BlockUser" = "Estä %@";
"Common.Controls.Friendship.Blocked" = "Estetty"; "Common.Controls.Friendship.Blocked" = "Estetty";
"Common.Controls.Friendship.DomainBlocked" = "Domain Blocked";
"Common.Controls.Friendship.EditInfo" = "Muokkaa profiilia"; "Common.Controls.Friendship.EditInfo" = "Muokkaa profiilia";
"Common.Controls.Friendship.Follow" = "Seuraa"; "Common.Controls.Friendship.Follow" = "Seuraa";
"Common.Controls.Friendship.Following" = "Seurataan"; "Common.Controls.Friendship.Following" = "Seurataan";
@ -334,6 +335,8 @@ kopioida Mastodoniin.";
"Scene.Profile.Fields.Verified.Long" = "Linkin omistajuus on tarkastettu %@"; "Scene.Profile.Fields.Verified.Long" = "Linkin omistajuus on tarkastettu %@";
"Scene.Profile.Fields.Verified.Short" = "Vahvistettu %@"; "Scene.Profile.Fields.Verified.Short" = "Vahvistettu %@";
"Scene.Profile.Header.FollowsYou" = "Seuraa sinua"; "Scene.Profile.Header.FollowsYou" = "Seuraa sinua";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Message" = "Confirm to block domain %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Title" = "Block domain";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Vahvista käyttäjän %@ esto"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Vahvista käyttäjän %@ esto";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Estä tili"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Estä tili";
"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Vahvista edelleenjulkaisujen piilotus"; "Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Vahvista edelleenjulkaisujen piilotus";
@ -342,6 +345,8 @@ kopioida Mastodoniin.";
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Mykistä tili"; "Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Mykistä tili";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Vahvista edelleenjulkaisujen näyttö"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Vahvista edelleenjulkaisujen näyttö";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Näytä uudelleenjulkaisut"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Näytä uudelleenjulkaisut";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Message" = "Confirm to unblock domain %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Title" = "Unblock domain";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Vahvista tilin %@ eston poisto"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Vahvista tilin %@ eston poisto";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Poista tilin esto"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Poista tilin esto";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Vahvista, että haluat poistaa mykistyksen tililtä %@"; "Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Vahvista, että haluat poistaa mykistyksen tililtä %@";

View File

@ -70,9 +70,10 @@ Veuillez vérifier votre accès à Internet.";
"Common.Controls.Actions.UnblockDomain" = "Débloquer %@"; "Common.Controls.Actions.UnblockDomain" = "Débloquer %@";
"Common.Controls.Actions.Unfollow" = "Se désabonner de %@"; "Common.Controls.Actions.Unfollow" = "Se désabonner de %@";
"Common.Controls.Friendship.Block" = "Bloquer"; "Common.Controls.Friendship.Block" = "Bloquer";
"Common.Controls.Friendship.BlockDomain" = "Bloquer %@"; "Common.Controls.Friendship.BlockDomain" = "Block domain %@";
"Common.Controls.Friendship.BlockUser" = "Bloquer %@"; "Common.Controls.Friendship.BlockUser" = "Bloquer %@";
"Common.Controls.Friendship.Blocked" = "Bloqué"; "Common.Controls.Friendship.Blocked" = "Bloqué";
"Common.Controls.Friendship.DomainBlocked" = "Domain Blocked";
"Common.Controls.Friendship.EditInfo" = "Éditer les infos"; "Common.Controls.Friendship.EditInfo" = "Éditer les infos";
"Common.Controls.Friendship.Follow" = "Suivre"; "Common.Controls.Friendship.Follow" = "Suivre";
"Common.Controls.Friendship.Following" = "Suivi"; "Common.Controls.Friendship.Following" = "Suivi";
@ -334,6 +335,8 @@ téléversé sur Mastodon.";
"Scene.Profile.Fields.Verified.Long" = "La propriété de ce lien a été vérifiée le %@"; "Scene.Profile.Fields.Verified.Long" = "La propriété de ce lien a été vérifiée le %@";
"Scene.Profile.Fields.Verified.Short" = "Vérifié le %@"; "Scene.Profile.Fields.Verified.Short" = "Vérifié le %@";
"Scene.Profile.Header.FollowsYou" = "Vous suit"; "Scene.Profile.Header.FollowsYou" = "Vous suit";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Message" = "Confirm to block domain %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Title" = "Block domain";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Confirmer le blocage de %@"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Confirmer le blocage de %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Bloquer le compte"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Bloquer le compte";
"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Confirmer pour masquer les reblogs"; "Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Confirmer pour masquer les reblogs";
@ -342,6 +345,8 @@ téléversé sur Mastodon.";
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Masquer le compte"; "Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Masquer le compte";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Confirmer pour afficher les reblogs"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Confirmer pour afficher les reblogs";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Afficher les Reblogs"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Afficher les Reblogs";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Message" = "Confirm to unblock domain %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Title" = "Unblock domain";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Confirmer le déblocage de %@"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Confirmer le déblocage de %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Débloquer le compte"; "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.Message" = "Êtes-vous sûr de vouloir désactiver la sourdine de %@";

View File

@ -70,9 +70,10 @@ Thoir sùil air a cheangal agad ris an eadar-lìon.";
"Common.Controls.Actions.UnblockDomain" = "Dì-bhac %@"; "Common.Controls.Actions.UnblockDomain" = "Dì-bhac %@";
"Common.Controls.Actions.Unfollow" = "Na lean %@ tuilleadh"; "Common.Controls.Actions.Unfollow" = "Na lean %@ tuilleadh";
"Common.Controls.Friendship.Block" = "Bac"; "Common.Controls.Friendship.Block" = "Bac";
"Common.Controls.Friendship.BlockDomain" = "Bac %@"; "Common.Controls.Friendship.BlockDomain" = "Block domain %@";
"Common.Controls.Friendship.BlockUser" = "Bac %@"; "Common.Controls.Friendship.BlockUser" = "Bac %@";
"Common.Controls.Friendship.Blocked" = "Ga bhacadh"; "Common.Controls.Friendship.Blocked" = "Ga bhacadh";
"Common.Controls.Friendship.DomainBlocked" = "Domain Blocked";
"Common.Controls.Friendship.EditInfo" = "Deasaich"; "Common.Controls.Friendship.EditInfo" = "Deasaich";
"Common.Controls.Friendship.Follow" = "Lean"; "Common.Controls.Friendship.Follow" = "Lean";
"Common.Controls.Friendship.Following" = "Ga leantainn"; "Common.Controls.Friendship.Following" = "Ga leantainn";
@ -334,6 +335,8 @@ a luchdadh suas gu Mastodon.";
"Scene.Profile.Fields.Verified.Long" = "Chaidh dearbhadh cò leis a tha an ceangal seo %@"; "Scene.Profile.Fields.Verified.Long" = "Chaidh dearbhadh cò leis a tha an ceangal seo %@";
"Scene.Profile.Fields.Verified.Short" = "Air a dhearbhadh %@"; "Scene.Profile.Fields.Verified.Short" = "Air a dhearbhadh %@";
"Scene.Profile.Header.FollowsYou" = "Gad leantainn"; "Scene.Profile.Header.FollowsYou" = "Gad leantainn";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Message" = "Confirm to block domain %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Title" = "Block domain";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Dearbh bacadh %@"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Dearbh bacadh %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Bac an cunntas"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Bac an cunntas";
"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Dearbh falach nam brosnachaidhean"; "Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Dearbh falach nam brosnachaidhean";
@ -342,6 +345,8 @@ a luchdadh suas gu Mastodon.";
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Mùch an cunntas"; "Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Mùch an cunntas";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Dearbh sealladh nam brosnachaidhean"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Dearbh sealladh nam brosnachaidhean";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Seall na brosnachaidhean"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Seall na brosnachaidhean";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Message" = "Confirm to unblock domain %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Title" = "Unblock domain";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Dearbh dì-bhacadh %@"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Dearbh dì-bhacadh %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Dì-bhac an cunntas"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Dì-bhac an cunntas";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Dearbh dì-mhùchadh %@"; "Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Dearbh dì-mhùchadh %@";

View File

@ -2,7 +2,7 @@
"Common.Alerts.BlockDomain.Title" = "Tes a certeza de querer bloquear todo de %@? Na meirande parte dos casos uns bloqueos ou silenciados específicos son suficientes e preferibles. Non verás máis o contido deste dominio en ningunha cronoloxía pública e as túas seguidoras deste dominio serán eliminadas."; "Common.Alerts.BlockDomain.Title" = "Tes a certeza de querer bloquear todo de %@? Na meirande parte dos casos uns bloqueos ou silenciados específicos son suficientes e preferibles. Non verás máis o contido deste dominio en ningunha cronoloxía pública e as túas seguidoras deste dominio serán eliminadas.";
"Common.Alerts.CleanCache.Message" = "Baleirouse %@ da caché correctamente."; "Common.Alerts.CleanCache.Message" = "Baleirouse %@ da caché correctamente.";
"Common.Alerts.CleanCache.Title" = "Limpar caché"; "Common.Alerts.CleanCache.Title" = "Limpar caché";
"Common.Alerts.Common.PleaseTryAgain" = "Inténtao de novo."; "Common.Alerts.Common.PleaseTryAgain" = "Téntao de novo.";
"Common.Alerts.Common.PleaseTryAgainLater" = "Inténtao de novo máis tarde."; "Common.Alerts.Common.PleaseTryAgainLater" = "Inténtao de novo máis tarde.";
"Common.Alerts.DeletePost.Message" = "Tes a certeza de querer eliminar esta publicación?"; "Common.Alerts.DeletePost.Message" = "Tes a certeza de querer eliminar esta publicación?";
"Common.Alerts.DeletePost.Title" = "Eliminar publicación"; "Common.Alerts.DeletePost.Title" = "Eliminar publicación";
@ -70,9 +70,10 @@ Comproba a conexión a internet.";
"Common.Controls.Actions.UnblockDomain" = "Desbloquear a %@"; "Common.Controls.Actions.UnblockDomain" = "Desbloquear a %@";
"Common.Controls.Actions.Unfollow" = "Deixa de seguir a %@"; "Common.Controls.Actions.Unfollow" = "Deixa de seguir a %@";
"Common.Controls.Friendship.Block" = "Bloquear"; "Common.Controls.Friendship.Block" = "Bloquear";
"Common.Controls.Friendship.BlockDomain" = "Bloquear a %@"; "Common.Controls.Friendship.BlockDomain" = "Bloquear dominio %@";
"Common.Controls.Friendship.BlockUser" = "Bloquear a %@"; "Common.Controls.Friendship.BlockUser" = "Bloquear a %@";
"Common.Controls.Friendship.Blocked" = "Bloqueada"; "Common.Controls.Friendship.Blocked" = "Bloqueada";
"Common.Controls.Friendship.DomainBlocked" = "Dominio bloqueado";
"Common.Controls.Friendship.EditInfo" = "Editar info"; "Common.Controls.Friendship.EditInfo" = "Editar info";
"Common.Controls.Friendship.Follow" = "Seguir"; "Common.Controls.Friendship.Follow" = "Seguir";
"Common.Controls.Friendship.Following" = "Seguindo"; "Common.Controls.Friendship.Following" = "Seguindo";
@ -334,6 +335,8 @@ ser subido a Mastodon.";
"Scene.Profile.Fields.Verified.Long" = "A propiedade desta ligazón foi verificada o %@"; "Scene.Profile.Fields.Verified.Long" = "A propiedade desta ligazón foi verificada o %@";
"Scene.Profile.Fields.Verified.Short" = "Verificada en %@"; "Scene.Profile.Fields.Verified.Short" = "Verificada en %@";
"Scene.Profile.Header.FollowsYou" = "Séguete"; "Scene.Profile.Header.FollowsYou" = "Séguete";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Message" = "Confirmar o bloqueo do dominio %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Title" = "Bloquear dominio";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Confirma o bloqueo de %@"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Confirma o bloqueo de %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Bloquear Conta"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Bloquear Conta";
"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Confirma para agochar promocións"; "Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Confirma para agochar promocións";
@ -342,6 +345,8 @@ ser subido a Mastodon.";
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Acalar conta"; "Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Acalar conta";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Confirma para ver promocións"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Confirma para ver promocións";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Mostrar Promocións"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Mostrar Promocións";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Message" = "Confirmar o desbloqueo de %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Title" = "Desbloquear dominio";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Confirma o desbloqueo de %@"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Confirma o desbloqueo de %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Desbloquear Conta"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Desbloquear Conta";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Confirma restablecer a %@"; "Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Confirma restablecer a %@";
@ -443,8 +448,8 @@ ser subido a Mastodon.";
"Scene.Search.Searching.ClearAll" = "Limpar todo"; "Scene.Search.Searching.ClearAll" = "Limpar todo";
"Scene.Search.Searching.EmptyState.NoResults" = "Sen resultados"; "Scene.Search.Searching.EmptyState.NoResults" = "Sen resultados";
"Scene.Search.Searching.Hashtag" = "Ir a #%@"; "Scene.Search.Searching.Hashtag" = "Ir a #%@";
"Scene.Search.Searching.NoUser.Message" = "There's no Useraccount \"%@\" on %@"; "Scene.Search.Searching.NoUser.Message" = "Non hai contas con \"%@\" en %@";
"Scene.Search.Searching.NoUser.Title" = "No User Account Found"; "Scene.Search.Searching.NoUser.Title" = "Non se atopou ningunha conta";
"Scene.Search.Searching.People" = "Perfís coincidentes con \"%@\""; "Scene.Search.Searching.People" = "Perfís coincidentes con \"%@\"";
"Scene.Search.Searching.Posts" = "Publicacións coincidentes con \"%@\""; "Scene.Search.Searching.Posts" = "Publicacións coincidentes con \"%@\"";
"Scene.Search.Searching.Profile" = "Ir a @%@@%@"; "Scene.Search.Searching.Profile" = "Ir a @%@@%@";
@ -489,45 +494,45 @@ ser subido a Mastodon.";
"Scene.ServerRules.Subtitle" = "Son establecidas e aplicadas pola moderación de %@."; "Scene.ServerRules.Subtitle" = "Son establecidas e aplicadas pola moderación de %@.";
"Scene.ServerRules.TermsOfService" = "termos do servizo"; "Scene.ServerRules.TermsOfService" = "termos do servizo";
"Scene.ServerRules.Title" = "Algunhas regras básicas."; "Scene.ServerRules.Title" = "Algunhas regras básicas.";
"Scene.Settings.AboutMastodon.ClearMediaStorage" = "Clear Media Storage"; "Scene.Settings.AboutMastodon.ClearMediaStorage" = "Limpar Almacenaxe Multimedia";
"Scene.Settings.AboutMastodon.ContributeToMastodon" = "Contribute to Mastodon"; "Scene.Settings.AboutMastodon.ContributeToMastodon" = "Colaborar con Mastodon";
"Scene.Settings.AboutMastodon.MoreSettings" = "Even More Settings"; "Scene.Settings.AboutMastodon.MoreSettings" = "Máis axustes";
"Scene.Settings.AboutMastodon.PrivacyPolicy" = "Privacy Policy"; "Scene.Settings.AboutMastodon.PrivacyPolicy" = "Política de Privacidade";
"Scene.Settings.AboutMastodon.Title" = "About"; "Scene.Settings.AboutMastodon.Title" = "Acerca de";
"Scene.Settings.General.Appearance.Dark" = "Dark"; "Scene.Settings.General.Appearance.Dark" = "Escuro";
"Scene.Settings.General.Appearance.Light" = "Light"; "Scene.Settings.General.Appearance.Light" = "Claro";
"Scene.Settings.General.Appearance.SectionTitle" = "Appearance"; "Scene.Settings.General.Appearance.SectionTitle" = "Aparencia";
"Scene.Settings.General.Appearance.System" = "Use Device Appearance"; "Scene.Settings.General.Appearance.System" = "Seguir ao dispositivo";
"Scene.Settings.General.Design.SectionTitle" = "Design"; "Scene.Settings.General.Design.SectionTitle" = "Deseño";
"Scene.Settings.General.Design.ShowAnimations" = "Play Animated Avatars and Emoji"; "Scene.Settings.General.Design.ShowAnimations" = "Reproducir avatares e emoji animados";
"Scene.Settings.General.Links.OpenInBrowser" = "Open in Browser"; "Scene.Settings.General.Links.OpenInBrowser" = "Abrir no navegador";
"Scene.Settings.General.Links.OpenInMastodon" = "Open in Mastodon"; "Scene.Settings.General.Links.OpenInMastodon" = "Abrir en Mastodon";
"Scene.Settings.General.Links.SectionTitle" = "Links"; "Scene.Settings.General.Links.SectionTitle" = "Ligazóns";
"Scene.Settings.General.Title" = "General"; "Scene.Settings.General.Title" = "Xeral";
"Scene.Settings.Notifications.Alert.Boosts" = "Boosts"; "Scene.Settings.Notifications.Alert.Boosts" = "Promocións";
"Scene.Settings.Notifications.Alert.Favorites" = "Favorites"; "Scene.Settings.Notifications.Alert.Favorites" = "Favoritos";
"Scene.Settings.Notifications.Alert.MentionsAndReplies" = "Mentions & Replies"; "Scene.Settings.Notifications.Alert.MentionsAndReplies" = "Mencións e respostas";
"Scene.Settings.Notifications.Alert.NewFollowers" = "New Followers"; "Scene.Settings.Notifications.Alert.NewFollowers" = "Novas seguidoras";
"Scene.Settings.Notifications.Disabled.GoToSettings" = "Go to Notification Settings"; "Scene.Settings.Notifications.Disabled.GoToSettings" = "Ir aos axustes das notificacións";
"Scene.Settings.Notifications.Disabled.NotificationHint" = "Turn on notifications from your device settings to see updates on your lock screen."; "Scene.Settings.Notifications.Disabled.NotificationHint" = "Activar notificacións nos axustes do dispositivo para ver novidades na pantalla de bloqueo.";
"Scene.Settings.Notifications.Policy.Anyone" = "Anyone"; "Scene.Settings.Notifications.Policy.Anyone" = "Calquera";
"Scene.Settings.Notifications.Policy.Follow" = "People you follow"; "Scene.Settings.Notifications.Policy.Follow" = "Persoas que segues";
"Scene.Settings.Notifications.Policy.Followers" = "People who follow you"; "Scene.Settings.Notifications.Policy.Followers" = "Persoas que te seguen";
"Scene.Settings.Notifications.Policy.Noone" = "No one"; "Scene.Settings.Notifications.Policy.Noone" = "Ninguén";
"Scene.Settings.Notifications.Policy.Title" = "Get Notifications from"; "Scene.Settings.Notifications.Policy.Title" = "Recibir notificacións de";
"Scene.Settings.Notifications.Title" = "Notifications"; "Scene.Settings.Notifications.Title" = "Notificacións";
"Scene.Settings.Overview.AboutMastodon" = "About Mastodon"; "Scene.Settings.Overview.AboutMastodon" = "Acerca de Mastodon";
"Scene.Settings.Overview.General" = "General"; "Scene.Settings.Overview.General" = "Xeral";
"Scene.Settings.Overview.Logout" = "Logout %@"; "Scene.Settings.Overview.Logout" = "Pechar sesión %@";
"Scene.Settings.Overview.Notifications" = "Notifications"; "Scene.Settings.Overview.Notifications" = "Notificacións";
"Scene.Settings.Overview.ServerDetails" = "Server Details"; "Scene.Settings.Overview.ServerDetails" = "Detalles do servidor";
"Scene.Settings.Overview.SupportMastodon" = "Support Mastodon"; "Scene.Settings.Overview.SupportMastodon" = "Apoia a Mastodon";
"Scene.Settings.Overview.Title" = "Settings"; "Scene.Settings.Overview.Title" = "Axustes";
"Scene.Settings.ServerDetails.About" = "About"; "Scene.Settings.ServerDetails.About" = "Acerca de";
"Scene.Settings.ServerDetails.AboutInstance.LegalNotice" = "A legal notice"; "Scene.Settings.ServerDetails.AboutInstance.LegalNotice" = "Aviso Legal";
"Scene.Settings.ServerDetails.AboutInstance.MessageAdmin" = "Message Admin"; "Scene.Settings.ServerDetails.AboutInstance.MessageAdmin" = "Mensaxe a Admin";
"Scene.Settings.ServerDetails.AboutInstance.Title" = "Administrator"; "Scene.Settings.ServerDetails.AboutInstance.Title" = "Administración";
"Scene.Settings.ServerDetails.Rules" = "Rules"; "Scene.Settings.ServerDetails.Rules" = "Regras";
"Scene.SuggestionAccount.FollowAll" = "Seguir a todas"; "Scene.SuggestionAccount.FollowAll" = "Seguir a todas";
"Scene.SuggestionAccount.Title" = "Popular en Mastodon"; "Scene.SuggestionAccount.Title" = "Popular en Mastodon";
"Scene.Thread.BackTitle" = "Publicación"; "Scene.Thread.BackTitle" = "Publicación";

View File

@ -28,7 +28,7 @@ Please check your internet connection.";
"Common.Controls.Actions.Add" = "Աւելացնել"; "Common.Controls.Actions.Add" = "Աւելացնել";
"Common.Controls.Actions.Back" = "Ետ"; "Common.Controls.Actions.Back" = "Ետ";
"Common.Controls.Actions.BlockDomain" = "Block %@"; "Common.Controls.Actions.BlockDomain" = "Block %@";
"Common.Controls.Actions.Bookmark" = "Bookmark"; "Common.Controls.Actions.Bookmark" = "Էջանիշ";
"Common.Controls.Actions.Cancel" = "Չեղարկել"; "Common.Controls.Actions.Cancel" = "Չեղարկել";
"Common.Controls.Actions.Compose" = "Compose"; "Common.Controls.Actions.Compose" = "Compose";
"Common.Controls.Actions.Confirm" = "Հաստատել"; "Common.Controls.Actions.Confirm" = "Հաստատել";
@ -39,9 +39,9 @@ Please check your internet connection.";
"Common.Controls.Actions.Discard" = "Չեղարկել"; "Common.Controls.Actions.Discard" = "Չեղարկել";
"Common.Controls.Actions.Done" = "Աւարտել"; "Common.Controls.Actions.Done" = "Աւարտել";
"Common.Controls.Actions.Edit" = "Խմբագրել"; "Common.Controls.Actions.Edit" = "Խմբագրել";
"Common.Controls.Actions.EditPost" = "Edit"; "Common.Controls.Actions.EditPost" = "Խմբագրել";
"Common.Controls.Actions.FindPeople" = "Find people to follow"; "Common.Controls.Actions.FindPeople" = "Find people to follow";
"Common.Controls.Actions.Follow" = "Follow %@"; "Common.Controls.Actions.Follow" = "Հետեւել %@-ին";
"Common.Controls.Actions.ManuallySearch" = "Manually search instead"; "Common.Controls.Actions.ManuallySearch" = "Manually search instead";
"Common.Controls.Actions.Next" = "Յաջորդ"; "Common.Controls.Actions.Next" = "Յաջորդ";
"Common.Controls.Actions.Ok" = "Լաւ"; "Common.Controls.Actions.Ok" = "Լաւ";
@ -51,7 +51,7 @@ Please check your internet connection.";
"Common.Controls.Actions.Preview" = "Նախադիտում"; "Common.Controls.Actions.Preview" = "Նախադիտում";
"Common.Controls.Actions.Previous" = "Նախորդ"; "Common.Controls.Actions.Previous" = "Նախորդ";
"Common.Controls.Actions.Remove" = "Ջնջել"; "Common.Controls.Actions.Remove" = "Ջնջել";
"Common.Controls.Actions.RemoveBookmark" = "Remove Bookmark"; "Common.Controls.Actions.RemoveBookmark" = "Հեռացնել էջանիշը";
"Common.Controls.Actions.Reply" = "Reply"; "Common.Controls.Actions.Reply" = "Reply";
"Common.Controls.Actions.ReportUser" = "Report %@"; "Common.Controls.Actions.ReportUser" = "Report %@";
"Common.Controls.Actions.Save" = "Պահպանել"; "Common.Controls.Actions.Save" = "Պահպանել";
@ -68,35 +68,36 @@ Please check your internet connection.";
"Common.Controls.Actions.TranslatePost.UnknownLanguage" = "Unknown"; "Common.Controls.Actions.TranslatePost.UnknownLanguage" = "Unknown";
"Common.Controls.Actions.TryAgain" = "Կրկին փորձիր"; "Common.Controls.Actions.TryAgain" = "Կրկին փորձիր";
"Common.Controls.Actions.UnblockDomain" = "Unblock %@"; "Common.Controls.Actions.UnblockDomain" = "Unblock %@";
"Common.Controls.Actions.Unfollow" = "Unfollow %@"; "Common.Controls.Actions.Unfollow" = "Չհետեւել %@-ին";
"Common.Controls.Friendship.Block" = "Block"; "Common.Controls.Friendship.Block" = "Արգելափակել";
"Common.Controls.Friendship.BlockDomain" = "Block %@"; "Common.Controls.Friendship.BlockDomain" = "Block domain %@";
"Common.Controls.Friendship.BlockUser" = "Block %@"; "Common.Controls.Friendship.BlockUser" = "Block %@";
"Common.Controls.Friendship.Blocked" = "Blocked"; "Common.Controls.Friendship.Blocked" = "Արգելափակուած";
"Common.Controls.Friendship.EditInfo" = "Edit Info"; "Common.Controls.Friendship.DomainBlocked" = "Domain Blocked";
"Common.Controls.Friendship.EditInfo" = "Խմբագրել";
"Common.Controls.Friendship.Follow" = "Հետեւել"; "Common.Controls.Friendship.Follow" = "Հետեւել";
"Common.Controls.Friendship.Following" = "Following"; "Common.Controls.Friendship.Following" = "Հետեւած";
"Common.Controls.Friendship.HideReblogs" = "Hide Reblogs"; "Common.Controls.Friendship.HideReblogs" = "Hide Reblogs";
"Common.Controls.Friendship.Mute" = "Լռեցնել"; "Common.Controls.Friendship.Mute" = "Լռեցնել";
"Common.Controls.Friendship.MuteUser" = "Լռեցնել %@֊ին"; "Common.Controls.Friendship.MuteUser" = "Լռեցնել %@֊ին";
"Common.Controls.Friendship.Muted" = "Լռեցուած"; "Common.Controls.Friendship.Muted" = "Լռեցուած";
"Common.Controls.Friendship.Pending" = "Pending"; "Common.Controls.Friendship.Pending" = "Սպասուող";
"Common.Controls.Friendship.Request" = "Request"; "Common.Controls.Friendship.Request" = "Հարցում";
"Common.Controls.Friendship.ShowReblogs" = "Show Reblogs"; "Common.Controls.Friendship.ShowReblogs" = "Show Reblogs";
"Common.Controls.Friendship.Unblock" = "Unblock"; "Common.Controls.Friendship.Unblock" = "Արգելաբացել";
"Common.Controls.Friendship.UnblockUser" = "Unblock %@"; "Common.Controls.Friendship.UnblockUser" = "Արգելաբացել %@-ին";
"Common.Controls.Friendship.Unmute" = "Unmute"; "Common.Controls.Friendship.Unmute" = "Unmute";
"Common.Controls.Friendship.UnmuteUser" = "Unmute %@"; "Common.Controls.Friendship.UnmuteUser" = "Unmute %@";
"Common.Controls.Keyboard.Common.ComposeNewPost" = "Compose New Post"; "Common.Controls.Keyboard.Common.ComposeNewPost" = "Compose New Post";
"Common.Controls.Keyboard.Common.OpenSettings" = "Open Settings"; "Common.Controls.Keyboard.Common.OpenSettings" = "Բացել կարգաւորումները";
"Common.Controls.Keyboard.Common.ShowFavorites" = "Show Favorites"; "Common.Controls.Keyboard.Common.ShowFavorites" = "Show Favorites";
"Common.Controls.Keyboard.Common.SwitchToTab" = "Switch to %@"; "Common.Controls.Keyboard.Common.SwitchToTab" = "Switch to %@";
"Common.Controls.Keyboard.SegmentedControl.NextSection" = "Next Section"; "Common.Controls.Keyboard.SegmentedControl.NextSection" = "Next Section";
"Common.Controls.Keyboard.SegmentedControl.PreviousSection" = "Previous Section"; "Common.Controls.Keyboard.SegmentedControl.PreviousSection" = "Previous Section";
"Common.Controls.Keyboard.Timeline.NextStatus" = "Next Post"; "Common.Controls.Keyboard.Timeline.NextStatus" = "Յաջորդ գրառումը";
"Common.Controls.Keyboard.Timeline.OpenAuthorProfile" = "Open Author's Profile"; "Common.Controls.Keyboard.Timeline.OpenAuthorProfile" = "Open Author's Profile";
"Common.Controls.Keyboard.Timeline.OpenRebloggerProfile" = "Open Reblogger's Profile"; "Common.Controls.Keyboard.Timeline.OpenRebloggerProfile" = "Open Reblogger's Profile";
"Common.Controls.Keyboard.Timeline.OpenStatus" = "Open Post"; "Common.Controls.Keyboard.Timeline.OpenStatus" = "Բացել գրառումը";
"Common.Controls.Keyboard.Timeline.PreviewImage" = "Preview Image"; "Common.Controls.Keyboard.Timeline.PreviewImage" = "Preview Image";
"Common.Controls.Keyboard.Timeline.PreviousStatus" = "Previous Post"; "Common.Controls.Keyboard.Timeline.PreviousStatus" = "Previous Post";
"Common.Controls.Keyboard.Timeline.ReplyStatus" = "Reply to Post"; "Common.Controls.Keyboard.Timeline.ReplyStatus" = "Reply to Post";
@ -105,22 +106,22 @@ Please check your internet connection.";
"Common.Controls.Keyboard.Timeline.ToggleReblog" = "Toggle Reblog on Post"; "Common.Controls.Keyboard.Timeline.ToggleReblog" = "Toggle Reblog on Post";
"Common.Controls.Status.Actions.A11YLabels.Reblog" = "Re-blog"; "Common.Controls.Status.Actions.A11YLabels.Reblog" = "Re-blog";
"Common.Controls.Status.Actions.A11YLabels.Unreblog" = "Undo re-blog"; "Common.Controls.Status.Actions.A11YLabels.Unreblog" = "Undo re-blog";
"Common.Controls.Status.Actions.Favorite" = "Favorite"; "Common.Controls.Status.Actions.Favorite" = "Հավանել";
"Common.Controls.Status.Actions.Hide" = "Թաքցնել"; "Common.Controls.Status.Actions.Hide" = "Թաքցնել";
"Common.Controls.Status.Actions.Menu" = "Ցանկ"; "Common.Controls.Status.Actions.Menu" = "Ցանկ";
"Common.Controls.Status.Actions.Reblog" = "Reblog"; "Common.Controls.Status.Actions.Reblog" = "Տարածել";
"Common.Controls.Status.Actions.Reply" = "Պատասխանել"; "Common.Controls.Status.Actions.Reply" = "Պատասխանել";
"Common.Controls.Status.Actions.ShareLinkInPost" = "Share Link in Post"; "Common.Controls.Status.Actions.ShareLinkInPost" = "Share Link in Post";
"Common.Controls.Status.Actions.ShowGif" = "Show GIF"; "Common.Controls.Status.Actions.ShowGif" = "Ցոյց տալ գիֆը";
"Common.Controls.Status.Actions.ShowImage" = "Show image"; "Common.Controls.Status.Actions.ShowImage" = "Ցոյց տալ նկարը";
"Common.Controls.Status.Actions.ShowVideoPlayer" = "Show video player"; "Common.Controls.Status.Actions.ShowVideoPlayer" = "Show video player";
"Common.Controls.Status.Actions.TapThenHoldToShowMenu" = "Tap then hold to show menu"; "Common.Controls.Status.Actions.TapThenHoldToShowMenu" = "Tap then hold to show menu";
"Common.Controls.Status.Actions.Unfavorite" = "Unfavorite"; "Common.Controls.Status.Actions.Unfavorite" = "Չհաւանել";
"Common.Controls.Status.Actions.Unreblog" = "Undo reblog"; "Common.Controls.Status.Actions.Unreblog" = "Չտարածել";
"Common.Controls.Status.Buttons.EditHistoryDetail" = "Last edit %@"; "Common.Controls.Status.Buttons.EditHistoryDetail" = "Last edit %@";
"Common.Controls.Status.Buttons.EditHistoryTitle" = "Խմբագրման պատմութիւնը"; "Common.Controls.Status.Buttons.EditHistoryTitle" = "Խմբագրման պատմութիւնը";
"Common.Controls.Status.Buttons.FavoritesTitle" = "Favorites"; "Common.Controls.Status.Buttons.FavoritesTitle" = "Հաւանածներ";
"Common.Controls.Status.Buttons.ReblogsTitle" = "Reblogs"; "Common.Controls.Status.Buttons.ReblogsTitle" = "Տարածել";
"Common.Controls.Status.ContentWarning" = "Content Warning"; "Common.Controls.Status.ContentWarning" = "Content Warning";
"Common.Controls.Status.EditHistory.OriginalPost" = "Original Post · %@"; "Common.Controls.Status.EditHistory.OriginalPost" = "Original Post · %@";
"Common.Controls.Status.EditHistory.Title" = "Խմբագրման պատմութիւնը"; "Common.Controls.Status.EditHistory.Title" = "Խմբագրման պատմութիւնը";
@ -136,12 +137,12 @@ Please check your internet connection.";
"Common.Controls.Status.MetaEntity.Hashtag" = "Hashtag: %@"; "Common.Controls.Status.MetaEntity.Hashtag" = "Hashtag: %@";
"Common.Controls.Status.MetaEntity.Mention" = "Show Profile: %@"; "Common.Controls.Status.MetaEntity.Mention" = "Show Profile: %@";
"Common.Controls.Status.MetaEntity.Url" = "Link: %@"; "Common.Controls.Status.MetaEntity.Url" = "Link: %@";
"Common.Controls.Status.Poll.Closed" = "Closed"; "Common.Controls.Status.Poll.Closed" = "Փակ";
"Common.Controls.Status.Poll.Vote" = "Քուէարկել"; "Common.Controls.Status.Poll.Vote" = "Քուէարկել";
"Common.Controls.Status.PostedViaApplication" = "%@ via %@"; "Common.Controls.Status.PostedViaApplication" = "%@ via %@";
"Common.Controls.Status.SensitiveContent" = "Sensitive Content"; "Common.Controls.Status.SensitiveContent" = "Զգայուն բովանդակություն";
"Common.Controls.Status.ShowPost" = "Show Post"; "Common.Controls.Status.ShowPost" = "Ցուցադրել գրառումը";
"Common.Controls.Status.ShowUserProfile" = "Show user profile"; "Common.Controls.Status.ShowUserProfile" = "Ցուցադրել օգտատիրոջ էջը";
"Common.Controls.Status.Tag.Email" = "Էլ. փոստ"; "Common.Controls.Status.Tag.Email" = "Էլ. փոստ";
"Common.Controls.Status.Tag.Emoji" = "Զմայլիկ"; "Common.Controls.Status.Tag.Emoji" = "Զմայլիկ";
"Common.Controls.Status.Tag.Hashtag" = "Պիտակ"; "Common.Controls.Status.Tag.Hashtag" = "Պիտակ";
@ -149,21 +150,21 @@ Please check your internet connection.";
"Common.Controls.Status.Tag.Mention" = "Նշել"; "Common.Controls.Status.Tag.Mention" = "Նշել";
"Common.Controls.Status.Tag.Url" = "URL"; "Common.Controls.Status.Tag.Url" = "URL";
"Common.Controls.Status.TapToReveal" = "Tap to reveal"; "Common.Controls.Status.TapToReveal" = "Tap to reveal";
"Common.Controls.Status.Translation.ShowOriginal" = "Show Original"; "Common.Controls.Status.Translation.ShowOriginal" = "Ցոյց տալ բնօրինակը";
"Common.Controls.Status.Translation.TranslatedFrom" = "Translated from %@ using %@"; "Common.Controls.Status.Translation.TranslatedFrom" = "Translated from %@ using %@";
"Common.Controls.Status.Translation.UnknownLanguage" = "Unknown"; "Common.Controls.Status.Translation.UnknownLanguage" = "Անյայտ";
"Common.Controls.Status.Translation.UnknownProvider" = "Unknown"; "Common.Controls.Status.Translation.UnknownProvider" = "Անյայտ";
"Common.Controls.Status.UserReblogged" = "%@ reblogged"; "Common.Controls.Status.UserReblogged" = "%@ reblogged";
"Common.Controls.Status.UserRepliedTo" = "Replied to %@"; "Common.Controls.Status.UserRepliedTo" = "Replied to %@";
"Common.Controls.Status.Visibility.Direct" = "Only mentioned user can see this post."; "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.Private" = "Only their followers can see this post.";
"Common.Controls.Status.Visibility.PrivateFromMe" = "Only my 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.Status.Visibility.Unlisted" = "Everyone can see this post but not display in the public timeline.";
"Common.Controls.Tabs.A11Y.Explore" = "Explore"; "Common.Controls.Tabs.A11Y.Explore" = "Բացայայտել";
"Common.Controls.Tabs.A11Y.Search" = "Search"; "Common.Controls.Tabs.A11Y.Search" = "Որոնել";
"Common.Controls.Tabs.Home" = "Home"; "Common.Controls.Tabs.Home" = "Հիմնական";
"Common.Controls.Tabs.Notifications" = "Notifications"; "Common.Controls.Tabs.Notifications" = "Ծանուցումներ";
"Common.Controls.Tabs.Profile" = "Profile"; "Common.Controls.Tabs.Profile" = "Հաշիւ";
"Common.Controls.Tabs.SearchAndExplore" = "Search and Explore"; "Common.Controls.Tabs.SearchAndExplore" = "Search and Explore";
"Common.Controls.Timeline.Filtered" = "Զտուած"; "Common.Controls.Timeline.Filtered" = "Զտուած";
"Common.Controls.Timeline.Header.BlockedWarning" = "You cant view this users profile "Common.Controls.Timeline.Header.BlockedWarning" = "You cant view this users profile
@ -184,21 +185,21 @@ Your profile looks like this to them.";
"Common.Controls.Timeline.Loader.ShowMoreReplies" = "Ցուցադրել պատասխանները"; "Common.Controls.Timeline.Loader.ShowMoreReplies" = "Ցուցադրել պատասխանները";
"Common.Controls.Timeline.Timestamp.Now" = "Հիմա"; "Common.Controls.Timeline.Timestamp.Now" = "Հիմա";
"Common.UserList.FollowersCount" = "%@ followers"; "Common.UserList.FollowersCount" = "%@ followers";
"Common.UserList.NoVerifiedLink" = "No verified link"; "Common.UserList.NoVerifiedLink" = "Չկայ հաստատուած յղում";
"Extension.OpenIn.InvalidLinkError" = "This doesn't seem to be a valid Mastodon link."; "Extension.OpenIn.InvalidLinkError" = "This doesn't seem to be a valid Mastodon link.";
"Scene.AccountList.AddAccount" = "Add Account"; "Scene.AccountList.AddAccount" = "Աւելացնել հաշիւ";
"Scene.AccountList.DismissAccountSwitcher" = "Dismiss Account Switcher"; "Scene.AccountList.DismissAccountSwitcher" = "Dismiss Account Switcher";
"Scene.AccountList.TabBarHint" = "Current selected profile: %@. Double tap then hold to show account switcher"; "Scene.AccountList.TabBarHint" = "Current selected profile: %@. Double tap then hold to show account switcher";
"Scene.Bookmark.Title" = "Bookmarks"; "Scene.Bookmark.Title" = "Էջանիշեր";
"Scene.Compose.Accessibility.AppendAttachment" = "Add Attachment"; "Scene.Compose.Accessibility.AppendAttachment" = "Add Attachment";
"Scene.Compose.Accessibility.AppendPoll" = "Add Poll"; "Scene.Compose.Accessibility.AppendPoll" = "Աւելացնել հարցում";
"Scene.Compose.Accessibility.CustomEmojiPicker" = "Custom Emoji Picker"; "Scene.Compose.Accessibility.CustomEmojiPicker" = "Custom Emoji Picker";
"Scene.Compose.Accessibility.DisableContentWarning" = "Disable Content Warning"; "Scene.Compose.Accessibility.DisableContentWarning" = "Disable Content Warning";
"Scene.Compose.Accessibility.EnableContentWarning" = "Enable Content Warning"; "Scene.Compose.Accessibility.EnableContentWarning" = "Enable Content Warning";
"Scene.Compose.Accessibility.PostOptions" = "Post Options"; "Scene.Compose.Accessibility.PostOptions" = "Post Options";
"Scene.Compose.Accessibility.PostVisibilityMenu" = "Post Visibility Menu"; "Scene.Compose.Accessibility.PostVisibilityMenu" = "Post Visibility Menu";
"Scene.Compose.Accessibility.PostingAs" = "Posting as %@"; "Scene.Compose.Accessibility.PostingAs" = "Posting as %@";
"Scene.Compose.Accessibility.RemovePoll" = "Remove Poll"; "Scene.Compose.Accessibility.RemovePoll" = "Հեռացնել հարցումը";
"Scene.Compose.Attachment.AttachmentBroken" = "This %@ is broken and cant be "Scene.Compose.Attachment.AttachmentBroken" = "This %@ is broken and cant be
uploaded to Mastodon."; uploaded to Mastodon.";
"Scene.Compose.Attachment.AttachmentTooLarge" = "Attachment too large"; "Scene.Compose.Attachment.AttachmentTooLarge" = "Attachment too large";
@ -207,10 +208,10 @@ uploaded to Mastodon.";
"Scene.Compose.Attachment.DescriptionPhoto" = "Describe the photo for the visually-impaired..."; "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.DescriptionVideo" = "Describe the video for the visually-impaired...";
"Scene.Compose.Attachment.LoadFailed" = "Load Failed"; "Scene.Compose.Attachment.LoadFailed" = "Load Failed";
"Scene.Compose.Attachment.Photo" = "photo"; "Scene.Compose.Attachment.Photo" = "նկար";
"Scene.Compose.Attachment.ServerProcessingState" = "Server Processing..."; "Scene.Compose.Attachment.ServerProcessingState" = "Server Processing...";
"Scene.Compose.Attachment.UploadFailed" = "Upload Failed"; "Scene.Compose.Attachment.UploadFailed" = "Upload Failed";
"Scene.Compose.Attachment.Video" = "video"; "Scene.Compose.Attachment.Video" = "տեսանիւթ";
"Scene.Compose.AutoComplete.SpaceToAdd" = "Space to add"; "Scene.Compose.AutoComplete.SpaceToAdd" = "Space to add";
"Scene.Compose.ComposeAction" = "Հրապարակել"; "Scene.Compose.ComposeAction" = "Հրապարակել";
"Scene.Compose.ContentInputPlaceholder" = "Type or paste whats on your mind"; "Scene.Compose.ContentInputPlaceholder" = "Type or paste whats on your mind";
@ -222,82 +223,82 @@ uploaded to Mastodon.";
"Scene.Compose.Keyboard.ToggleContentWarning" = "Toggle Content Warning"; "Scene.Compose.Keyboard.ToggleContentWarning" = "Toggle Content Warning";
"Scene.Compose.Keyboard.TogglePoll" = "Toggle Poll"; "Scene.Compose.Keyboard.TogglePoll" = "Toggle Poll";
"Scene.Compose.Language.Other" = "Other Language…"; "Scene.Compose.Language.Other" = "Other Language…";
"Scene.Compose.Language.Recent" = "Recent"; "Scene.Compose.Language.Recent" = "Վերջին";
"Scene.Compose.Language.Suggested" = "Suggested"; "Scene.Compose.Language.Suggested" = "Suggested";
"Scene.Compose.Language.Title" = "Post Language"; "Scene.Compose.Language.Title" = "Հրապարակման լեզու";
"Scene.Compose.MediaSelection.Browse" = "Browse"; "Scene.Compose.MediaSelection.Browse" = "Դիտել";
"Scene.Compose.MediaSelection.Camera" = "Take Photo"; "Scene.Compose.MediaSelection.Camera" = "Լուսանկարել";
"Scene.Compose.MediaSelection.PhotoLibrary" = "Photo Library"; "Scene.Compose.MediaSelection.PhotoLibrary" = "Ֆոտոդարան";
"Scene.Compose.Poll.AddOption" = "Add Option"; "Scene.Compose.Poll.AddOption" = "Add Option";
"Scene.Compose.Poll.DurationTime" = "Duration: %@"; "Scene.Compose.Poll.DurationTime" = "Տեւողությունը՝ %@";
"Scene.Compose.Poll.MoveDown" = "Move Down"; "Scene.Compose.Poll.MoveDown" = "Իջեցնել";
"Scene.Compose.Poll.MoveUp" = "Move Up"; "Scene.Compose.Poll.MoveUp" = "Բարձրացնել";
"Scene.Compose.Poll.OneDay" = "1 Day"; "Scene.Compose.Poll.OneDay" = "1 օր";
"Scene.Compose.Poll.OneHour" = "1 Hour"; "Scene.Compose.Poll.OneHour" = "1 ժամ";
"Scene.Compose.Poll.OptionNumber" = "Option %ld"; "Scene.Compose.Poll.OptionNumber" = "Տարբերակ %ld";
"Scene.Compose.Poll.RemoveOption" = "Remove Option"; "Scene.Compose.Poll.RemoveOption" = "Remove Option";
"Scene.Compose.Poll.SevenDays" = "7 Days"; "Scene.Compose.Poll.SevenDays" = "7 օր";
"Scene.Compose.Poll.SixHours" = "6 Hours"; "Scene.Compose.Poll.SixHours" = "6 ժամ";
"Scene.Compose.Poll.ThePollHasEmptyOption" = "The poll has empty option"; "Scene.Compose.Poll.ThePollHasEmptyOption" = "The poll has empty option";
"Scene.Compose.Poll.ThePollIsInvalid" = "The poll is invalid"; "Scene.Compose.Poll.ThePollIsInvalid" = "The poll is invalid";
"Scene.Compose.Poll.ThirtyMinutes" = "30 minutes"; "Scene.Compose.Poll.ThirtyMinutes" = "30 րոպէ";
"Scene.Compose.Poll.ThreeDays" = "3 Days"; "Scene.Compose.Poll.ThreeDays" = "3 օր";
"Scene.Compose.Poll.Title" = "Poll"; "Scene.Compose.Poll.Title" = "Հարցում";
"Scene.Compose.ReplyingToUser" = "replying to %@"; "Scene.Compose.ReplyingToUser" = "replying to %@";
"Scene.Compose.Title.EditPost" = "Edit Post"; "Scene.Compose.Title.EditPost" = "Խմբագրել գրառումը";
"Scene.Compose.Title.NewPost" = "New Post"; "Scene.Compose.Title.NewPost" = "Նոր գրառում";
"Scene.Compose.Title.NewReply" = "New Reply"; "Scene.Compose.Title.NewReply" = "Նոր պատասխան";
"Scene.Compose.Visibility.Direct" = "Only people I mention"; "Scene.Compose.Visibility.Direct" = "Միայն նշած մարդկանց";
"Scene.Compose.Visibility.Private" = "Followers only"; "Scene.Compose.Visibility.Private" = "Միայն հետեւողներին";
"Scene.Compose.Visibility.Public" = "Public"; "Scene.Compose.Visibility.Public" = "Հրապարակային";
"Scene.Compose.Visibility.Unlisted" = "Unlisted"; "Scene.Compose.Visibility.Unlisted" = "Ծածուկ";
"Scene.ConfirmEmail.Button.Resend" = "Resend"; "Scene.ConfirmEmail.Button.Resend" = "Ուղարկել նորից";
"Scene.ConfirmEmail.DidntGetLink.Prefix" = "Didnt get a link?"; "Scene.ConfirmEmail.DidntGetLink.Prefix" = "Didnt get a link?";
"Scene.ConfirmEmail.DidntGetLink.ResendIn" = "Resend (%@)"; "Scene.ConfirmEmail.DidntGetLink.ResendIn" = "Resend (%@)";
"Scene.ConfirmEmail.DidntGetLink.ResendNow" = "Resend now."; "Scene.ConfirmEmail.DidntGetLink.ResendNow" = "Resend now.";
"Scene.ConfirmEmail.DontReceiveEmail.Description" = "Check if your email address is correct as well as your junk folder if you havent."; "Scene.ConfirmEmail.DontReceiveEmail.Description" = "Check if your email address is correct as well as your junk folder if you havent.";
"Scene.ConfirmEmail.DontReceiveEmail.ResendEmail" = "Նորից ուղարկել էլ. նամակ"; "Scene.ConfirmEmail.DontReceiveEmail.ResendEmail" = "Նորից ուղարկել էլ. նամակ";
"Scene.ConfirmEmail.DontReceiveEmail.Title" = "Check your Email"; "Scene.ConfirmEmail.DontReceiveEmail.Title" = "Ստուգիր էլ. հասցէդ!";
"Scene.ConfirmEmail.OpenEmailApp.Description" = "We just sent you an email. Check your junk folder if you havent."; "Scene.ConfirmEmail.OpenEmailApp.Description" = "We just sent you an email. Check your junk folder if you havent.";
"Scene.ConfirmEmail.OpenEmailApp.Mail" = "Փոստ"; "Scene.ConfirmEmail.OpenEmailApp.Mail" = "Փոստ";
"Scene.ConfirmEmail.OpenEmailApp.OpenEmailClient" = "Open Email Client"; "Scene.ConfirmEmail.OpenEmailApp.OpenEmailClient" = "Open Email Client";
"Scene.ConfirmEmail.OpenEmailApp.Title" = "Check your Inbox."; "Scene.ConfirmEmail.OpenEmailApp.Title" = "Ստուգիր էլ. փոստդ.";
"Scene.ConfirmEmail.TapTheLinkWeEmailedToYouToVerifyYourAccount" = "Tap the link we sent you to verify %@. Well wait right here."; "Scene.ConfirmEmail.TapTheLinkWeEmailedToYouToVerifyYourAccount" = "Tap the link we sent you to verify %@. Well wait right here.";
"Scene.ConfirmEmail.Title" = "Check Your Inbox"; "Scene.ConfirmEmail.Title" = "Ստուգիր էլ. փոստդ";
"Scene.Discovery.Intro" = "These are the posts gaining traction in your corner of Mastodon."; "Scene.Discovery.Intro" = "These are the posts gaining traction in your corner of Mastodon.";
"Scene.Discovery.Tabs.Community" = "Community"; "Scene.Discovery.Tabs.Community" = "Համայնք";
"Scene.Discovery.Tabs.ForYou" = "For You"; "Scene.Discovery.Tabs.ForYou" = "Քեզ համար";
"Scene.Discovery.Tabs.Hashtags" = "Hashtags"; "Scene.Discovery.Tabs.Hashtags" = "Պիտակներ";
"Scene.Discovery.Tabs.News" = "News"; "Scene.Discovery.Tabs.News" = "Նորութիւններ";
"Scene.Discovery.Tabs.Posts" = "Posts"; "Scene.Discovery.Tabs.Posts" = "Գրառումներ";
"Scene.Familiarfollowers.FollowedByNames" = "Followed by %@"; "Scene.Familiarfollowers.FollowedByNames" = "Followed by %@";
"Scene.Familiarfollowers.Title" = "Followers you familiar"; "Scene.Familiarfollowers.Title" = "Followers you familiar";
"Scene.Favorite.Title" = "Favorites"; "Scene.Favorite.Title" = "Հաւանածներ";
"Scene.FavoritedBy.Title" = "Favorited By"; "Scene.FavoritedBy.Title" = "Favorited By";
"Scene.FollowedTags.Actions.Follow" = "Follow"; "Scene.FollowedTags.Actions.Follow" = "Հետեւել";
"Scene.FollowedTags.Actions.Unfollow" = "Unfollow"; "Scene.FollowedTags.Actions.Unfollow" = "Ապահետեւել";
"Scene.FollowedTags.Header.Participants" = "participants"; "Scene.FollowedTags.Header.Participants" = "participants";
"Scene.FollowedTags.Header.Posts" = "posts"; "Scene.FollowedTags.Header.Posts" = "գրառումներ";
"Scene.FollowedTags.Header.PostsToday" = "posts today"; "Scene.FollowedTags.Header.PostsToday" = "posts today";
"Scene.FollowedTags.Title" = "Followed Tags"; "Scene.FollowedTags.Title" = "Followed Tags";
"Scene.Follower.Footer" = "Followers from other servers are not displayed."; "Scene.Follower.Footer" = "Followers from other servers are not displayed.";
"Scene.Follower.Title" = "follower"; "Scene.Follower.Title" = "հետեւորդ";
"Scene.Following.Footer" = "Follows from other servers are not displayed."; "Scene.Following.Footer" = "Follows from other servers are not displayed.";
"Scene.Following.Title" = "following"; "Scene.Following.Title" = "հետեւած";
"Scene.HomeTimeline.NavigationBarState.Accessibility.LogoHint" = "Tap to scroll to top and tap again to previous location"; "Scene.HomeTimeline.NavigationBarState.Accessibility.LogoHint" = "Tap to scroll to top and tap again to previous location";
"Scene.HomeTimeline.NavigationBarState.Accessibility.LogoLabel" = "Mastodon"; "Scene.HomeTimeline.NavigationBarState.Accessibility.LogoLabel" = "Մաստոդոն";
"Scene.HomeTimeline.NavigationBarState.NewPosts" = "See new posts"; "Scene.HomeTimeline.NavigationBarState.NewPosts" = "Տեսնել նորերը";
"Scene.HomeTimeline.NavigationBarState.Offline" = "Անցանց"; "Scene.HomeTimeline.NavigationBarState.Offline" = "Անցանց";
"Scene.HomeTimeline.NavigationBarState.Published" = "Published!"; "Scene.HomeTimeline.NavigationBarState.Published" = "Հրատարակուած է";
"Scene.HomeTimeline.NavigationBarState.Publishing" = "Publishing post..."; "Scene.HomeTimeline.NavigationBarState.Publishing" = "Publishing post...";
"Scene.HomeTimeline.Title" = "Հիմնական"; "Scene.HomeTimeline.Title" = "Հիմնական";
"Scene.Login.ServerSearchField.Placeholder" = "Enter URL or search for your server"; "Scene.Login.ServerSearchField.Placeholder" = "Enter URL or search for your server";
"Scene.Login.Subtitle" = "Log you in on the server you created your account on."; "Scene.Login.Subtitle" = "Log you in on the server you created your account on.";
"Scene.Login.Title" = "Բարի վերադարձ"; "Scene.Login.Title" = "Բարի վերադարձ";
"Scene.Notification.FollowRequest.Accept" = "Accept"; "Scene.Notification.FollowRequest.Accept" = "Ընդունել";
"Scene.Notification.FollowRequest.Accepted" = "Accepted"; "Scene.Notification.FollowRequest.Accepted" = "Ընդունուած";
"Scene.Notification.FollowRequest.Reject" = "reject"; "Scene.Notification.FollowRequest.Reject" = "մերժել";
"Scene.Notification.FollowRequest.Rejected" = "Rejected"; "Scene.Notification.FollowRequest.Rejected" = "Մերժուած";
"Scene.Notification.Keyobard.ShowEverything" = "Show Everything"; "Scene.Notification.Keyobard.ShowEverything" = "Show Everything";
"Scene.Notification.Keyobard.ShowMentions" = "Show Mentions"; "Scene.Notification.Keyobard.ShowMentions" = "Show Mentions";
"Scene.Notification.NotificationDescription.FavoritedYourPost" = "favorited your post"; "Scene.Notification.NotificationDescription.FavoritedYourPost" = "favorited your post";
@ -306,55 +307,59 @@ uploaded to Mastodon.";
"Scene.Notification.NotificationDescription.PollHasEnded" = "poll has ended"; "Scene.Notification.NotificationDescription.PollHasEnded" = "poll has ended";
"Scene.Notification.NotificationDescription.RebloggedYourPost" = "reblogged your post"; "Scene.Notification.NotificationDescription.RebloggedYourPost" = "reblogged your post";
"Scene.Notification.NotificationDescription.RequestToFollowYou" = "request to follow you"; "Scene.Notification.NotificationDescription.RequestToFollowYou" = "request to follow you";
"Scene.Notification.Title.Everything" = "Everything"; "Scene.Notification.Title.Everything" = "Ամեն ինչ";
"Scene.Notification.Title.Mentions" = "Mentions"; "Scene.Notification.Title.Mentions" = "Յիշատակումներ";
"Scene.Preview.Keyboard.ClosePreview" = "Close Preview"; "Scene.Preview.Keyboard.ClosePreview" = "Close Preview";
"Scene.Preview.Keyboard.ShowNext" = "Show Next"; "Scene.Preview.Keyboard.ShowNext" = "Show Next";
"Scene.Preview.Keyboard.ShowPrevious" = "Show Previous"; "Scene.Preview.Keyboard.ShowPrevious" = "Show Previous";
"Scene.Privacy.Button.Confirm" = "Համաձայն եմ"; "Scene.Privacy.Button.Confirm" = "Համաձայն եմ";
"Scene.Privacy.Description" = "Although the Mastodon app does not collect any data, the server you sign up through may have a different policy. Take a minute to review and agree to the Mastodon app privacy policy and your servers privacy policy."; "Scene.Privacy.Description" = "Although the Mastodon app does not collect any data, the server you sign up through may have a different policy. Take a minute to review and agree to the Mastodon app privacy policy and your servers privacy policy.";
"Scene.Privacy.Policy.Ios" = "Privacy Policy - Mastodon for iOS"; "Scene.Privacy.Policy.Ios" = "Privacy Policy - Mastodon for iOS";
"Scene.Privacy.Policy.Server" = "Privacy Policy - %@"; "Scene.Privacy.Policy.Server" = "Գաղտնիութեան քաղաքականութիւն - %@";
"Scene.Privacy.Title" = "Privacy"; "Scene.Privacy.Title" = "Գաղտնիութիւն";
"Scene.Profile.Accessibility.DoubleTapToOpenTheList" = "Double tap to open the list"; "Scene.Profile.Accessibility.DoubleTapToOpenTheList" = "Double tap to open the list";
"Scene.Profile.Accessibility.EditAvatarImage" = "Edit avatar image"; "Scene.Profile.Accessibility.EditAvatarImage" = "Edit avatar image";
"Scene.Profile.Accessibility.ShowAvatarImage" = "Show avatar image"; "Scene.Profile.Accessibility.ShowAvatarImage" = "Show avatar image";
"Scene.Profile.Accessibility.ShowBannerImage" = "Show banner image"; "Scene.Profile.Accessibility.ShowBannerImage" = "Show banner image";
"Scene.Profile.Dashboard.FamiliarFollowers" = "mutuals"; "Scene.Profile.Dashboard.FamiliarFollowers" = "mutuals";
"Scene.Profile.Dashboard.MyFollowers" = "followers"; "Scene.Profile.Dashboard.MyFollowers" = "հետեւորդ";
"Scene.Profile.Dashboard.MyFollowing" = "following"; "Scene.Profile.Dashboard.MyFollowing" = "հետեւած";
"Scene.Profile.Dashboard.MyPosts" = "posts"; "Scene.Profile.Dashboard.MyPosts" = "գրառումներ";
"Scene.Profile.Dashboard.OtherFollowers" = "followers"; "Scene.Profile.Dashboard.OtherFollowers" = "հետեւորդ";
"Scene.Profile.Dashboard.OtherFollowing" = "following"; "Scene.Profile.Dashboard.OtherFollowing" = "հետեւած";
"Scene.Profile.Dashboard.OtherPosts" = "posts"; "Scene.Profile.Dashboard.OtherPosts" = "գրառումներ";
"Scene.Profile.Fields.AddRow" = "Add Row"; "Scene.Profile.Fields.AddRow" = "Add Row";
"Scene.Profile.Fields.Joined" = "Joined"; "Scene.Profile.Fields.Joined" = "Միացել է";
"Scene.Profile.Fields.Placeholder.Content" = "Content"; "Scene.Profile.Fields.Placeholder.Content" = "Բովանդակութիւն";
"Scene.Profile.Fields.Placeholder.Label" = "Label"; "Scene.Profile.Fields.Placeholder.Label" = "Պիտակ";
"Scene.Profile.Fields.Verified.Long" = "Ownership of this link was checked on %@"; "Scene.Profile.Fields.Verified.Long" = "Ownership of this link was checked on %@";
"Scene.Profile.Fields.Verified.Short" = "Verified on %@"; "Scene.Profile.Fields.Verified.Short" = "Verified on %@";
"Scene.Profile.Header.FollowsYou" = "Follows You"; "Scene.Profile.Header.FollowsYou" = "Հետեւում է քեզ";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Message" = "Confirm to block domain %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Title" = "Block domain";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Confirm to block %@"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Confirm to block %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Block Account"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Արգելափակել հաշիւը";
"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Confirm to hide reblogs"; "Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Confirm to hide reblogs";
"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Title" = "Hide Reblogs"; "Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Title" = "Hide Reblogs";
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Message" = "Confirm to mute %@"; "Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Message" = "Confirm to mute %@";
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Mute Account"; "Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Mute Account";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Confirm to show reblogs"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Confirm to show reblogs";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Show Reblogs"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Show Reblogs";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Message" = "Confirm to unblock domain %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Title" = "Unblock domain";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Confirm to unblock %@"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Confirm to unblock %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Unblock Account"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Unblock Account";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Confirm to unmute %@"; "Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Confirm to unmute %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Title" = "Unmute Account"; "Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Title" = "Unmute Account";
"Scene.Profile.SegmentedControl.About" = "Մասին"; "Scene.Profile.SegmentedControl.About" = "Մասին";
"Scene.Profile.SegmentedControl.Media" = "Media"; "Scene.Profile.SegmentedControl.Media" = "Մեդիա";
"Scene.Profile.SegmentedControl.Posts" = "Գրառումներ"; "Scene.Profile.SegmentedControl.Posts" = "Գրառումներ";
"Scene.Profile.SegmentedControl.PostsAndReplies" = "Posts and Replies"; "Scene.Profile.SegmentedControl.PostsAndReplies" = "Posts and Replies";
"Scene.Profile.SegmentedControl.Replies" = "Replies"; "Scene.Profile.SegmentedControl.Replies" = "Արձագանքներ";
"Scene.RebloggedBy.Title" = "Reblogged By"; "Scene.RebloggedBy.Title" = "Reblogged By";
"Scene.Register.Error.Item.Agreement" = "Agreement"; "Scene.Register.Error.Item.Agreement" = "Agreement";
"Scene.Register.Error.Item.Email" = "Էլ. փոստ"; "Scene.Register.Error.Item.Email" = "Էլ. փոստ";
"Scene.Register.Error.Item.Locale" = "Locale"; "Scene.Register.Error.Item.Locale" = "Տեղանք";
"Scene.Register.Error.Item.Password" = "Գաղտնաբառ"; "Scene.Register.Error.Item.Password" = "Գաղտնաբառ";
"Scene.Register.Error.Item.Reason" = "Պատճառ"; "Scene.Register.Error.Item.Reason" = "Պատճառ";
"Scene.Register.Error.Item.Username" = "Մուտքանուն"; "Scene.Register.Error.Item.Username" = "Մուտքանուն";
@ -372,13 +377,13 @@ uploaded to Mastodon.";
"Scene.Register.Error.Special.PasswordTooShort" = "Password is too short (must be at least 8 characters)"; "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.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.Error.Special.UsernameTooLong" = "Username is too long (cant be longer than 30 characters)";
"Scene.Register.Input.Avatar.Delete" = "Delete"; "Scene.Register.Input.Avatar.Delete" = "Ջնջել";
"Scene.Register.Input.DisplayName.Placeholder" = "ցուցադրուող անուն"; "Scene.Register.Input.DisplayName.Placeholder" = "ցուցադրուող անուն";
"Scene.Register.Input.Email.Placeholder" = "էլ. փոստ"; "Scene.Register.Input.Email.Placeholder" = "էլ. փոստ";
"Scene.Register.Input.Invite.RegistrationUserInviteRequest" = "Why do you want to join?"; "Scene.Register.Input.Invite.RegistrationUserInviteRequest" = "Why do you want to join?";
"Scene.Register.Input.Password.Accessibility.Checked" = "checked"; "Scene.Register.Input.Password.Accessibility.Checked" = "checked";
"Scene.Register.Input.Password.Accessibility.Unchecked" = "unchecked"; "Scene.Register.Input.Password.Accessibility.Unchecked" = "unchecked";
"Scene.Register.Input.Password.CharacterLimit" = "8 characters"; "Scene.Register.Input.Password.CharacterLimit" = "8 նիշ";
"Scene.Register.Input.Password.ConfirmationPlaceholder" = "Հաստատել գաղտնաբառը"; "Scene.Register.Input.Password.ConfirmationPlaceholder" = "Հաստատել գաղտնաբառը";
"Scene.Register.Input.Password.Hint" = "Your password needs at least eight characters"; "Scene.Register.Input.Password.Hint" = "Your password needs at least eight characters";
"Scene.Register.Input.Password.Placeholder" = "գաղտնաբառ"; "Scene.Register.Input.Password.Placeholder" = "գաղտնաբառ";
@ -399,7 +404,7 @@ uploaded to Mastodon.";
"Scene.Report.StepFinal.DontWantToSeeThis" = "Dont want to see this?"; "Scene.Report.StepFinal.DontWantToSeeThis" = "Dont want to see this?";
"Scene.Report.StepFinal.MuteUser" = "Mute %@"; "Scene.Report.StepFinal.MuteUser" = "Mute %@";
"Scene.Report.StepFinal.TheyWillNoLongerBeAbleToFollowOrSeeYourPostsButTheyCanSeeIfTheyveBeenBlocked" = "They will no longer be able to follow or see your posts, but they can see if theyve been blocked."; "Scene.Report.StepFinal.TheyWillNoLongerBeAbleToFollowOrSeeYourPostsButTheyCanSeeIfTheyveBeenBlocked" = "They will no longer be able to follow or see your posts, but they can see if theyve been blocked.";
"Scene.Report.StepFinal.Unfollow" = "Unfollow"; "Scene.Report.StepFinal.Unfollow" = "Ապահետեւել";
"Scene.Report.StepFinal.UnfollowUser" = "Unfollow %@"; "Scene.Report.StepFinal.UnfollowUser" = "Unfollow %@";
"Scene.Report.StepFinal.Unfollowed" = "Unfollowed"; "Scene.Report.StepFinal.Unfollowed" = "Unfollowed";
"Scene.Report.StepFinal.WhenYouSeeSomethingYouDontLikeOnMastodonYouCanRemoveThePersonFromYourExperience." = "When you see something you dont like on Mastodon, you can remove the person from your experience."; "Scene.Report.StepFinal.WhenYouSeeSomethingYouDontLikeOnMastodonYouCanRemoveThePersonFromYourExperience." = "When you see something you dont like on Mastodon, you can remove the person from your experience.";
@ -431,16 +436,16 @@ uploaded to Mastodon.";
"Scene.Report.Title" = "Report %@"; "Scene.Report.Title" = "Report %@";
"Scene.Report.TitleReport" = "Report"; "Scene.Report.TitleReport" = "Report";
"Scene.Search.Recommend.Accounts.Description" = "You may like to follow these accounts"; "Scene.Search.Recommend.Accounts.Description" = "You may like to follow these accounts";
"Scene.Search.Recommend.Accounts.Follow" = "Follow"; "Scene.Search.Recommend.Accounts.Follow" = "Հետեւել";
"Scene.Search.Recommend.Accounts.Title" = "Accounts you might like"; "Scene.Search.Recommend.Accounts.Title" = "Accounts you might like";
"Scene.Search.Recommend.ButtonText" = "See All"; "Scene.Search.Recommend.ButtonText" = "Տեսնել բոլորը";
"Scene.Search.Recommend.HashTag.Description" = "Hashtags that are getting quite a bit of attention"; "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.PeopleTalking" = "%@ people are talking";
"Scene.Search.Recommend.HashTag.Title" = "Trending on Mastodon"; "Scene.Search.Recommend.HashTag.Title" = "Trending on Mastodon";
"Scene.Search.SearchBar.Cancel" = "Cancel"; "Scene.Search.SearchBar.Cancel" = "Չեղարկել";
"Scene.Search.SearchBar.Placeholder" = "Search hashtags and users"; "Scene.Search.SearchBar.Placeholder" = "Search hashtags and users";
"Scene.Search.Searching.Clear" = "Clear"; "Scene.Search.Searching.Clear" = "Մաքրել";
"Scene.Search.Searching.ClearAll" = "Clear all"; "Scene.Search.Searching.ClearAll" = "Մաքրել բոլորը";
"Scene.Search.Searching.EmptyState.NoResults" = "No results"; "Scene.Search.Searching.EmptyState.NoResults" = "No results";
"Scene.Search.Searching.Hashtag" = "Go to #%@"; "Scene.Search.Searching.Hashtag" = "Go to #%@";
"Scene.Search.Searching.NoUser.Message" = "There's no Useraccount \"%@\" on %@"; "Scene.Search.Searching.NoUser.Message" = "There's no Useraccount \"%@\" on %@";
@ -450,23 +455,23 @@ uploaded to Mastodon.";
"Scene.Search.Searching.Profile" = "Go to @%@@%@"; "Scene.Search.Searching.Profile" = "Go to @%@@%@";
"Scene.Search.Searching.RecentSearch" = "Recent searches"; "Scene.Search.Searching.RecentSearch" = "Recent searches";
"Scene.Search.Searching.Url" = "Open URL in Mastodon"; "Scene.Search.Searching.Url" = "Open URL in Mastodon";
"Scene.Search.Title" = "Search"; "Scene.Search.Title" = "Որոնել";
"Scene.ServerPicker.Button.Category.Academia" = "academia"; "Scene.ServerPicker.Button.Category.Academia" = "academia";
"Scene.ServerPicker.Button.Category.Activism" = "activism"; "Scene.ServerPicker.Button.Category.Activism" = "activism";
"Scene.ServerPicker.Button.Category.All" = "All"; "Scene.ServerPicker.Button.Category.All" = "Բոլորը";
"Scene.ServerPicker.Button.Category.AllAccessiblityDescription" = "Category: All"; "Scene.ServerPicker.Button.Category.AllAccessiblityDescription" = "Category: All";
"Scene.ServerPicker.Button.Category.Art" = "art"; "Scene.ServerPicker.Button.Category.Art" = "արուեստ";
"Scene.ServerPicker.Button.Category.Food" = "food"; "Scene.ServerPicker.Button.Category.Food" = "ուտելիք";
"Scene.ServerPicker.Button.Category.Furry" = "furry"; "Scene.ServerPicker.Button.Category.Furry" = "furry";
"Scene.ServerPicker.Button.Category.Games" = "games"; "Scene.ServerPicker.Button.Category.Games" = "խաղեր";
"Scene.ServerPicker.Button.Category.General" = "general"; "Scene.ServerPicker.Button.Category.General" = "ընդհանուր";
"Scene.ServerPicker.Button.Category.Journalism" = "journalism"; "Scene.ServerPicker.Button.Category.Journalism" = "լրագրութիւն";
"Scene.ServerPicker.Button.Category.Lgbt" = "lgbt"; "Scene.ServerPicker.Button.Category.Lgbt" = "լգբտ";
"Scene.ServerPicker.Button.Category.Music" = "music"; "Scene.ServerPicker.Button.Category.Music" = "երաժշտութիւն";
"Scene.ServerPicker.Button.Category.Regional" = "regional"; "Scene.ServerPicker.Button.Category.Regional" = "կրօնական";
"Scene.ServerPicker.Button.Category.Tech" = "tech"; "Scene.ServerPicker.Button.Category.Tech" = "տեխնոլոգիա";
"Scene.ServerPicker.Button.Language" = "Language"; "Scene.ServerPicker.Button.Language" = "Լեզու";
"Scene.ServerPicker.Button.SeeLess" = "See Less"; "Scene.ServerPicker.Button.SeeLess" = "Տեսնել քիչ";
"Scene.ServerPicker.Button.SeeMore" = "Տեսնել աւելին"; "Scene.ServerPicker.Button.SeeMore" = "Տեսնել աւելին";
"Scene.ServerPicker.Button.SignupSpeed" = "Sign-up Speed"; "Scene.ServerPicker.Button.SignupSpeed" = "Sign-up Speed";
"Scene.ServerPicker.EmptyState.BadNetwork" = "Something went wrong while loading the data. Check your internet connection."; "Scene.ServerPicker.EmptyState.BadNetwork" = "Something went wrong while loading the data. Check your internet connection.";
@ -483,8 +488,8 @@ uploaded to Mastodon.";
"Scene.ServerPicker.SignupSpeed.Instant" = "Instant Sign-up"; "Scene.ServerPicker.SignupSpeed.Instant" = "Instant Sign-up";
"Scene.ServerPicker.SignupSpeed.ManuallyReviewed" = "Manual Review"; "Scene.ServerPicker.SignupSpeed.ManuallyReviewed" = "Manual Review";
"Scene.ServerPicker.Title" = "Pick Server"; "Scene.ServerPicker.Title" = "Pick Server";
"Scene.ServerRules.Button.Confirm" = "I Agree"; "Scene.ServerRules.Button.Confirm" = "Համաձայն եմ";
"Scene.ServerRules.PrivacyPolicy" = "privacy policy"; "Scene.ServerRules.PrivacyPolicy" = "գաղտնիութեան քաղաքականութիւն";
"Scene.ServerRules.Prompt" = "By continuing, youre subject to the terms of service and privacy policy for %@."; "Scene.ServerRules.Prompt" = "By continuing, youre subject to the terms of service and privacy policy for %@.";
"Scene.ServerRules.Subtitle" = "These are set and enforced by the %@ moderators."; "Scene.ServerRules.Subtitle" = "These are set and enforced by the %@ moderators.";
"Scene.ServerRules.TermsOfService" = "terms of service"; "Scene.ServerRules.TermsOfService" = "terms of service";
@ -493,45 +498,45 @@ uploaded to Mastodon.";
"Scene.Settings.AboutMastodon.ContributeToMastodon" = "Contribute to Mastodon"; "Scene.Settings.AboutMastodon.ContributeToMastodon" = "Contribute to Mastodon";
"Scene.Settings.AboutMastodon.MoreSettings" = "Even More Settings"; "Scene.Settings.AboutMastodon.MoreSettings" = "Even More Settings";
"Scene.Settings.AboutMastodon.PrivacyPolicy" = "Privacy Policy"; "Scene.Settings.AboutMastodon.PrivacyPolicy" = "Privacy Policy";
"Scene.Settings.AboutMastodon.Title" = "About"; "Scene.Settings.AboutMastodon.Title" = "Մասին";
"Scene.Settings.General.Appearance.Dark" = "Dark"; "Scene.Settings.General.Appearance.Dark" = "Մուգ";
"Scene.Settings.General.Appearance.Light" = "Light"; "Scene.Settings.General.Appearance.Light" = "Բաց";
"Scene.Settings.General.Appearance.SectionTitle" = "Appearance"; "Scene.Settings.General.Appearance.SectionTitle" = "Տեսք";
"Scene.Settings.General.Appearance.System" = "Use Device Appearance"; "Scene.Settings.General.Appearance.System" = "Use Device Appearance";
"Scene.Settings.General.Design.SectionTitle" = "Design"; "Scene.Settings.General.Design.SectionTitle" = "Ոճ";
"Scene.Settings.General.Design.ShowAnimations" = "Play Animated Avatars and Emoji"; "Scene.Settings.General.Design.ShowAnimations" = "Play Animated Avatars and Emoji";
"Scene.Settings.General.Links.OpenInBrowser" = "Open in Browser"; "Scene.Settings.General.Links.OpenInBrowser" = "Open in Browser";
"Scene.Settings.General.Links.OpenInMastodon" = "Open in Mastodon"; "Scene.Settings.General.Links.OpenInMastodon" = "Open in Mastodon";
"Scene.Settings.General.Links.SectionTitle" = "Links"; "Scene.Settings.General.Links.SectionTitle" = "Յղումներ";
"Scene.Settings.General.Title" = "General"; "Scene.Settings.General.Title" = "Ընդհանուր";
"Scene.Settings.Notifications.Alert.Boosts" = "Boosts"; "Scene.Settings.Notifications.Alert.Boosts" = "Տարածումներ";
"Scene.Settings.Notifications.Alert.Favorites" = "Favorites"; "Scene.Settings.Notifications.Alert.Favorites" = "Հաւանածներ";
"Scene.Settings.Notifications.Alert.MentionsAndReplies" = "Mentions & Replies"; "Scene.Settings.Notifications.Alert.MentionsAndReplies" = "Mentions & Replies";
"Scene.Settings.Notifications.Alert.NewFollowers" = "New Followers"; "Scene.Settings.Notifications.Alert.NewFollowers" = "Նոր հետեւողներ";
"Scene.Settings.Notifications.Disabled.GoToSettings" = "Go to Notification Settings"; "Scene.Settings.Notifications.Disabled.GoToSettings" = "Go to Notification Settings";
"Scene.Settings.Notifications.Disabled.NotificationHint" = "Turn on notifications from your device settings to see updates on your lock screen."; "Scene.Settings.Notifications.Disabled.NotificationHint" = "Turn on notifications from your device settings to see updates on your lock screen.";
"Scene.Settings.Notifications.Policy.Anyone" = "Anyone"; "Scene.Settings.Notifications.Policy.Anyone" = "Բոլորը";
"Scene.Settings.Notifications.Policy.Follow" = "People you follow"; "Scene.Settings.Notifications.Policy.Follow" = "Մարդիկ, որոնց դու հետեւում ես";
"Scene.Settings.Notifications.Policy.Followers" = "People who follow you"; "Scene.Settings.Notifications.Policy.Followers" = "Մարդիկ, որոնք ձեզ հետեւում են";
"Scene.Settings.Notifications.Policy.Noone" = "No one"; "Scene.Settings.Notifications.Policy.Noone" = "Ոչ ոք";
"Scene.Settings.Notifications.Policy.Title" = "Get Notifications from"; "Scene.Settings.Notifications.Policy.Title" = "Get Notifications from";
"Scene.Settings.Notifications.Title" = "Notifications"; "Scene.Settings.Notifications.Title" = "Ծանուցումներ";
"Scene.Settings.Overview.AboutMastodon" = "About Mastodon"; "Scene.Settings.Overview.AboutMastodon" = "Մաստոդոնի մասին";
"Scene.Settings.Overview.General" = "General"; "Scene.Settings.Overview.General" = "Ընդհանուր";
"Scene.Settings.Overview.Logout" = "Logout %@"; "Scene.Settings.Overview.Logout" = "Logout %@";
"Scene.Settings.Overview.Notifications" = "Notifications"; "Scene.Settings.Overview.Notifications" = "Ծանուցումներ";
"Scene.Settings.Overview.ServerDetails" = "Server Details"; "Scene.Settings.Overview.ServerDetails" = "Server Details";
"Scene.Settings.Overview.SupportMastodon" = "Support Mastodon"; "Scene.Settings.Overview.SupportMastodon" = "Support Mastodon";
"Scene.Settings.Overview.Title" = "Settings"; "Scene.Settings.Overview.Title" = "Կարգաւորումներ";
"Scene.Settings.ServerDetails.About" = "About"; "Scene.Settings.ServerDetails.About" = "Մասին";
"Scene.Settings.ServerDetails.AboutInstance.LegalNotice" = "A legal notice"; "Scene.Settings.ServerDetails.AboutInstance.LegalNotice" = "A legal notice";
"Scene.Settings.ServerDetails.AboutInstance.MessageAdmin" = "Message Admin"; "Scene.Settings.ServerDetails.AboutInstance.MessageAdmin" = "Message Admin";
"Scene.Settings.ServerDetails.AboutInstance.Title" = "Administrator"; "Scene.Settings.ServerDetails.AboutInstance.Title" = "Ադմինիստրատոր";
"Scene.Settings.ServerDetails.Rules" = "Rules"; "Scene.Settings.ServerDetails.Rules" = "Կանոններ";
"Scene.SuggestionAccount.FollowAll" = "Follow all"; "Scene.SuggestionAccount.FollowAll" = "Հետեւել բոլորին";
"Scene.SuggestionAccount.Title" = "Popular on Mastodon"; "Scene.SuggestionAccount.Title" = "Popular on Mastodon";
"Scene.Thread.BackTitle" = "Post"; "Scene.Thread.BackTitle" = "Գրառում";
"Scene.Thread.Title" = "Post from %@"; "Scene.Thread.Title" = "%@-ի գրառումը";
"Scene.Welcome.Education.A11Y.WhatIsMastodon.Title" = "What is Mastodon?"; "Scene.Welcome.Education.A11Y.WhatIsMastodon.Title" = "What is Mastodon?";
"Scene.Welcome.Education.Mastodon.Description" = "Mastodon is a decentralized social network, meaning no single company controls it. Its made up of many independently-run servers, all connected together."; "Scene.Welcome.Education.Mastodon.Description" = "Mastodon is a decentralized social network, meaning no single company controls it. Its made up of many independently-run servers, all connected together.";
"Scene.Welcome.Education.Mastodon.Title" = "Բարի գալուստ Մաստոդոն"; "Scene.Welcome.Education.Mastodon.Title" = "Բարի գալուստ Մաստոդոն";
@ -545,11 +550,11 @@ uploaded to Mastodon.";
"Widget.Common.UnsupportedWidgetFamily" = "Sorry but this Widget family is unsupported."; "Widget.Common.UnsupportedWidgetFamily" = "Sorry but this Widget family is unsupported.";
"Widget.Common.UserNotLoggedIn" = "Please open Mastodon to log in to an Account."; "Widget.Common.UserNotLoggedIn" = "Please open Mastodon to log in to an Account.";
"Widget.FollowersCount.ConfigurationDescription" = "Show number of followers."; "Widget.FollowersCount.ConfigurationDescription" = "Show number of followers.";
"Widget.FollowersCount.ConfigurationDisplayName" = "Followers"; "Widget.FollowersCount.ConfigurationDisplayName" = "Հետեւորդ";
"Widget.FollowersCount.FollowersToday" = "%@ followers today"; "Widget.FollowersCount.FollowersToday" = "%@ followers today";
"Widget.FollowersCount.Title" = "FOLLOWERS"; "Widget.FollowersCount.Title" = "FOLLOWERS";
"Widget.Hashtag.Configuration.Description" = "Shows a recent post with the selected hashtag."; "Widget.Hashtag.Configuration.Description" = "Shows a recent post with the selected hashtag.";
"Widget.Hashtag.Configuration.DisplayName" = "Hashtag"; "Widget.Hashtag.Configuration.DisplayName" = "Պիտակ";
"Widget.Hashtag.NotFound.Account" = "@johnMastodon@no-such.account"; "Widget.Hashtag.NotFound.Account" = "@johnMastodon@no-such.account";
"Widget.Hashtag.NotFound.AccountName" = "John Mastodon"; "Widget.Hashtag.NotFound.AccountName" = "John Mastodon";
"Widget.Hashtag.NotFound.Content" = "Sorry, we couldnt find any posts with the hashtag <a>#%@</a>. Please try a <a>#DifferentHashtag</a> or check the widget settings."; "Widget.Hashtag.NotFound.Content" = "Sorry, we couldnt find any posts with the hashtag <a>#%@</a>. Please try a <a>#DifferentHashtag</a> or check the widget settings.";

View File

@ -104,9 +104,9 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>post</string> <string>գրառում</string>
<key>other</key> <key>other</key>
<string>posts</string> <string>գրառումներ</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.media</key> <key>plural.count.media</key>
@ -136,9 +136,9 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>ld</string> <string>ld</string>
<key>one</key> <key>one</key>
<string>1 post</string> <string>1 գրառում</string>
<key>other</key> <key>other</key>
<string>%ld posts</string> <string>%ld գրառում</string>
</dict> </dict>
</dict> </dict>
<key>plural.count.favorite</key> <key>plural.count.favorite</key>

View File

@ -70,9 +70,10 @@ Per favore verifica la tua connessione internet.";
"Common.Controls.Actions.UnblockDomain" = "Sblocca %@"; "Common.Controls.Actions.UnblockDomain" = "Sblocca %@";
"Common.Controls.Actions.Unfollow" = "Smetti di seguire %@"; "Common.Controls.Actions.Unfollow" = "Smetti di seguire %@";
"Common.Controls.Friendship.Block" = "Blocca"; "Common.Controls.Friendship.Block" = "Blocca";
"Common.Controls.Friendship.BlockDomain" = "Blocca %@"; "Common.Controls.Friendship.BlockDomain" = "Blocca il dominio %@";
"Common.Controls.Friendship.BlockUser" = "Blocca %@"; "Common.Controls.Friendship.BlockUser" = "Blocca %@";
"Common.Controls.Friendship.Blocked" = "Bloccato"; "Common.Controls.Friendship.Blocked" = "Bloccato";
"Common.Controls.Friendship.DomainBlocked" = "Dominio bloccato";
"Common.Controls.Friendship.EditInfo" = "Modifica info"; "Common.Controls.Friendship.EditInfo" = "Modifica info";
"Common.Controls.Friendship.Follow" = "Segui"; "Common.Controls.Friendship.Follow" = "Segui";
"Common.Controls.Friendship.Following" = "Stai seguendo"; "Common.Controls.Friendship.Following" = "Stai seguendo";
@ -334,6 +335,8 @@ caricato su Mastodon.";
"Scene.Profile.Fields.Verified.Long" = "La proprietà di questo collegamento è stata verificata il %@"; "Scene.Profile.Fields.Verified.Long" = "La proprietà di questo collegamento è stata verificata il %@";
"Scene.Profile.Fields.Verified.Short" = "Verificato il %@"; "Scene.Profile.Fields.Verified.Short" = "Verificato il %@";
"Scene.Profile.Header.FollowsYou" = "Ti segue"; "Scene.Profile.Header.FollowsYou" = "Ti segue";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Message" = "Conferma per bloccare il dominio %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Title" = "Blocca il dominio";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Confermi di bloccare %@"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Confermi di bloccare %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Blocca account"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Blocca account";
"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Conferma di nascondere le condivisioni"; "Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Conferma di nascondere le condivisioni";
@ -342,6 +345,8 @@ caricato su Mastodon.";
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Silenzia account"; "Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Silenzia account";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Conferma di mostrare le condivisioni"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Conferma di mostrare le condivisioni";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Mostra le condivisioni"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Mostra le condivisioni";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Message" = "Conferma per sbloccare il dominio %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Title" = "Sblocca il dominio";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Conferma per sbloccare %@"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Conferma per sbloccare %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Sblocca account"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Sblocca account";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Confermi di riattivare %@"; "Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Confermi di riattivare %@";

View File

@ -70,9 +70,10 @@
"Common.Controls.Actions.UnblockDomain" = "%@のブロックを解除"; "Common.Controls.Actions.UnblockDomain" = "%@のブロックを解除";
"Common.Controls.Actions.Unfollow" = "%@をフォロー解除"; "Common.Controls.Actions.Unfollow" = "%@をフォロー解除";
"Common.Controls.Friendship.Block" = "ブロック"; "Common.Controls.Friendship.Block" = "ブロック";
"Common.Controls.Friendship.BlockDomain" = "%@をブロック"; "Common.Controls.Friendship.BlockDomain" = "%@全体をブロック";
"Common.Controls.Friendship.BlockUser" = "%@をブロック"; "Common.Controls.Friendship.BlockUser" = "%@をブロック";
"Common.Controls.Friendship.Blocked" = "ブロック済み"; "Common.Controls.Friendship.Blocked" = "ブロック済み";
"Common.Controls.Friendship.DomainBlocked" = "ドメインブロック中";
"Common.Controls.Friendship.EditInfo" = "編集"; "Common.Controls.Friendship.EditInfo" = "編集";
"Common.Controls.Friendship.Follow" = "フォロー"; "Common.Controls.Friendship.Follow" = "フォロー";
"Common.Controls.Friendship.Following" = "フォロー中"; "Common.Controls.Friendship.Following" = "フォロー中";
@ -329,6 +330,8 @@
"Scene.Profile.Fields.Verified.Long" = "このリンクの所有権は %@ に確認されました"; "Scene.Profile.Fields.Verified.Long" = "このリンクの所有権は %@ に確認されました";
"Scene.Profile.Fields.Verified.Short" = "%@ で確認しました"; "Scene.Profile.Fields.Verified.Short" = "%@ で確認しました";
"Scene.Profile.Header.FollowsYou" = "フォローされています"; "Scene.Profile.Header.FollowsYou" = "フォローされています";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Message" = "%@のドメイン全体をブロックしてよいですか?";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Title" = "ドメインのブロック";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "%@をブロックしますか?"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "%@をブロックしますか?";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "アカウントをブロック"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "アカウントをブロック";
"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "ブーストを非表示にしますか?"; "Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "ブーストを非表示にしますか?";
@ -337,6 +340,8 @@
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "アカウントをミュート"; "Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "アカウントをミュート";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "ブーストを表示しますか?"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "ブーストを表示しますか?";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "ブーストを表示"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "ブーストを表示";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Message" = "%@のブロックを解除してよいですか?";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Title" = "ドメインのブロックを解除";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "%@のブロックを解除しますか?"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "%@のブロックを解除しますか?";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "アカウントのブロックを解除"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "アカウントのブロックを解除";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "%@をミュートしますか?"; "Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "%@をミュートしますか?";
@ -438,8 +443,8 @@
"Scene.Search.Searching.ClearAll" = "すべて消去"; "Scene.Search.Searching.ClearAll" = "すべて消去";
"Scene.Search.Searching.EmptyState.NoResults" = "なし"; "Scene.Search.Searching.EmptyState.NoResults" = "なし";
"Scene.Search.Searching.Hashtag" = "#%@ へ移動"; "Scene.Search.Searching.Hashtag" = "#%@ へ移動";
"Scene.Search.Searching.NoUser.Message" = "There's no Useraccount \"%@\" on %@"; "Scene.Search.Searching.NoUser.Message" = "\"%@\"というユーザーは%@には見つかりませんでした";
"Scene.Search.Searching.NoUser.Title" = "No User Account Found"; "Scene.Search.Searching.NoUser.Title" = "ユーザーアカウントが見つかりませんでした";
"Scene.Search.Searching.People" = "「%@」に一致するアカウント"; "Scene.Search.Searching.People" = "「%@」に一致するアカウント";
"Scene.Search.Searching.Posts" = "「%@」に一致する投稿"; "Scene.Search.Searching.Posts" = "「%@」に一致する投稿";
"Scene.Search.Searching.Profile" = "@%@@%@ へ移動"; "Scene.Search.Searching.Profile" = "@%@@%@ へ移動";
@ -484,45 +489,45 @@
"Scene.ServerRules.Subtitle" = "これらのルールは、%@の管理者によって設定されています。"; "Scene.ServerRules.Subtitle" = "これらのルールは、%@の管理者によって設定されています。";
"Scene.ServerRules.TermsOfService" = "利用規約"; "Scene.ServerRules.TermsOfService" = "利用規約";
"Scene.ServerRules.Title" = "いくつかのルールがあります。"; "Scene.ServerRules.Title" = "いくつかのルールがあります。";
"Scene.Settings.AboutMastodon.ClearMediaStorage" = "Clear Media Storage"; "Scene.Settings.AboutMastodon.ClearMediaStorage" = "メディアキャッシュの削除";
"Scene.Settings.AboutMastodon.ContributeToMastodon" = "Contribute to Mastodon"; "Scene.Settings.AboutMastodon.ContributeToMastodon" = "Mastodonに貢献する";
"Scene.Settings.AboutMastodon.MoreSettings" = "Even More Settings"; "Scene.Settings.AboutMastodon.MoreSettings" = "さらに詳しい設定";
"Scene.Settings.AboutMastodon.PrivacyPolicy" = "Privacy Policy"; "Scene.Settings.AboutMastodon.PrivacyPolicy" = "プライバシーポリシー";
"Scene.Settings.AboutMastodon.Title" = "About"; "Scene.Settings.AboutMastodon.Title" = "Mastodonについて";
"Scene.Settings.General.Appearance.Dark" = "Dark"; "Scene.Settings.General.Appearance.Dark" = "ダーク";
"Scene.Settings.General.Appearance.Light" = "Light"; "Scene.Settings.General.Appearance.Light" = "ライト";
"Scene.Settings.General.Appearance.SectionTitle" = "Appearance"; "Scene.Settings.General.Appearance.SectionTitle" = "テーマ";
"Scene.Settings.General.Appearance.System" = "Use Device Appearance"; "Scene.Settings.General.Appearance.System" = "端末の設定に合わせる";
"Scene.Settings.General.Design.SectionTitle" = "Design"; "Scene.Settings.General.Design.SectionTitle" = "アニメーション";
"Scene.Settings.General.Design.ShowAnimations" = "Play Animated Avatars and Emoji"; "Scene.Settings.General.Design.ShowAnimations" = "アニメーションアイコンと絵文字を再生";
"Scene.Settings.General.Links.OpenInBrowser" = "Open in Browser"; "Scene.Settings.General.Links.OpenInBrowser" = "ブラウザアプリで開く";
"Scene.Settings.General.Links.OpenInMastodon" = "Open in Mastodon"; "Scene.Settings.General.Links.OpenInMastodon" = "アプリ内ブラウザアプリで開く";
"Scene.Settings.General.Links.SectionTitle" = "Links"; "Scene.Settings.General.Links.SectionTitle" = "Webブラウザ";
"Scene.Settings.General.Title" = "General"; "Scene.Settings.General.Title" = "一般";
"Scene.Settings.Notifications.Alert.Boosts" = "Boosts"; "Scene.Settings.Notifications.Alert.Boosts" = "ブースト";
"Scene.Settings.Notifications.Alert.Favorites" = "Favorites"; "Scene.Settings.Notifications.Alert.Favorites" = "お気に入り";
"Scene.Settings.Notifications.Alert.MentionsAndReplies" = "Mentions & Replies"; "Scene.Settings.Notifications.Alert.MentionsAndReplies" = "メンションと返信";
"Scene.Settings.Notifications.Alert.NewFollowers" = "New Followers"; "Scene.Settings.Notifications.Alert.NewFollowers" = "新しいフォロワー";
"Scene.Settings.Notifications.Disabled.GoToSettings" = "Go to Notification Settings"; "Scene.Settings.Notifications.Disabled.GoToSettings" = "端末の通知設定を開く";
"Scene.Settings.Notifications.Disabled.NotificationHint" = "Turn on notifications from your device settings to see updates on your lock screen."; "Scene.Settings.Notifications.Disabled.NotificationHint" = "プッシュ通知を受け取るには、端末の設定から通知を許可しましょう。";
"Scene.Settings.Notifications.Policy.Anyone" = "Anyone"; "Scene.Settings.Notifications.Policy.Anyone" = "誰でも";
"Scene.Settings.Notifications.Policy.Follow" = "People you follow"; "Scene.Settings.Notifications.Policy.Follow" = "あなたがフォローしている人のみ";
"Scene.Settings.Notifications.Policy.Followers" = "People who follow you"; "Scene.Settings.Notifications.Policy.Followers" = "あなたのフォロワーのみ";
"Scene.Settings.Notifications.Policy.Noone" = "No one"; "Scene.Settings.Notifications.Policy.Noone" = "誰にも許可しない";
"Scene.Settings.Notifications.Policy.Title" = "Get Notifications from"; "Scene.Settings.Notifications.Policy.Title" = "通知を送信する人";
"Scene.Settings.Notifications.Title" = "Notifications"; "Scene.Settings.Notifications.Title" = "通知";
"Scene.Settings.Overview.AboutMastodon" = "About Mastodon"; "Scene.Settings.Overview.AboutMastodon" = "Mastodonについて";
"Scene.Settings.Overview.General" = "General"; "Scene.Settings.Overview.General" = "一般";
"Scene.Settings.Overview.Logout" = "Logout %@"; "Scene.Settings.Overview.Logout" = "%@ をログアウト";
"Scene.Settings.Overview.Notifications" = "Notifications"; "Scene.Settings.Overview.Notifications" = "通知";
"Scene.Settings.Overview.ServerDetails" = "Server Details"; "Scene.Settings.Overview.ServerDetails" = "サーバーの詳細";
"Scene.Settings.Overview.SupportMastodon" = "Support Mastodon"; "Scene.Settings.Overview.SupportMastodon" = "Mastodonを支援する";
"Scene.Settings.Overview.Title" = "Settings"; "Scene.Settings.Overview.Title" = "設定";
"Scene.Settings.ServerDetails.About" = "About"; "Scene.Settings.ServerDetails.About" = "このサーバーについて";
"Scene.Settings.ServerDetails.AboutInstance.LegalNotice" = "A legal notice"; "Scene.Settings.ServerDetails.AboutInstance.LegalNotice" = "法的通知";
"Scene.Settings.ServerDetails.AboutInstance.MessageAdmin" = "Message Admin"; "Scene.Settings.ServerDetails.AboutInstance.MessageAdmin" = "管理者にメッセージを送信";
"Scene.Settings.ServerDetails.AboutInstance.Title" = "Administrator"; "Scene.Settings.ServerDetails.AboutInstance.Title" = "管理者";
"Scene.Settings.ServerDetails.Rules" = "Rules"; "Scene.Settings.ServerDetails.Rules" = "ルール";
"Scene.SuggestionAccount.FollowAll" = "すべてフォロー"; "Scene.SuggestionAccount.FollowAll" = "すべてフォロー";
"Scene.SuggestionAccount.Title" = "人気のアカウント"; "Scene.SuggestionAccount.Title" = "人気のアカウント";
"Scene.Thread.BackTitle" = "投稿"; "Scene.Thread.BackTitle" = "投稿";

View File

@ -70,9 +70,10 @@ Ma ulac aɣilif, senqed tuqqna-inek internet.";
"Common.Controls.Actions.UnblockDomain" = "Serreḥ i %@"; "Common.Controls.Actions.UnblockDomain" = "Serreḥ i %@";
"Common.Controls.Actions.Unfollow" = "Unfollow %@"; "Common.Controls.Actions.Unfollow" = "Unfollow %@";
"Common.Controls.Friendship.Block" = "Sewḥel"; "Common.Controls.Friendship.Block" = "Sewḥel";
"Common.Controls.Friendship.BlockDomain" = "Sewḥel %@"; "Common.Controls.Friendship.BlockDomain" = "Block domain %@";
"Common.Controls.Friendship.BlockUser" = "Sewḥel %@"; "Common.Controls.Friendship.BlockUser" = "Sewḥel %@";
"Common.Controls.Friendship.Blocked" = "Yettusewḥel"; "Common.Controls.Friendship.Blocked" = "Yettusewḥel";
"Common.Controls.Friendship.DomainBlocked" = "Domain Blocked";
"Common.Controls.Friendship.EditInfo" = "Ẓreg talɣut"; "Common.Controls.Friendship.EditInfo" = "Ẓreg talɣut";
"Common.Controls.Friendship.Follow" = "Ḍfeṛ"; "Common.Controls.Friendship.Follow" = "Ḍfeṛ";
"Common.Controls.Friendship.Following" = "Yettwaḍfar"; "Common.Controls.Friendship.Following" = "Yettwaḍfar";
@ -334,6 +335,8 @@ Ad d-yettwasali ɣef Mastodon.";
"Scene.Profile.Fields.Verified.Long" = "Ownership of this link was checked on %@"; "Scene.Profile.Fields.Verified.Long" = "Ownership of this link was checked on %@";
"Scene.Profile.Fields.Verified.Short" = "Verified on %@"; "Scene.Profile.Fields.Verified.Short" = "Verified on %@";
"Scene.Profile.Header.FollowsYou" = "Yeṭṭafaṛ-ik•im"; "Scene.Profile.Header.FollowsYou" = "Yeṭṭafaṛ-ik•im";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Message" = "Confirm to block domain %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Title" = "Block domain";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Sentem asewḥel n %@"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Sentem asewḥel n %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Sewḥel amiḍan"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Sewḥel amiḍan";
"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Confirm to hide reblogs"; "Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Confirm to hide reblogs";
@ -342,6 +345,8 @@ Ad d-yettwasali ɣef Mastodon.";
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Sgugem amiḍan"; "Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Sgugem amiḍan";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Confirm to show reblogs"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Confirm to show reblogs";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Show Reblogs"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Show Reblogs";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Message" = "Confirm to unblock domain %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Title" = "Unblock domain";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Sentem tukksa n usgugem i %@"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Sentem tukksa n usgugem i %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Kkes asewḥel i umiḍan"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Kkes asewḥel i umiḍan";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Sentem tukksa n usgugem i %@"; "Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Sentem tukksa n usgugem i %@";

View File

@ -70,9 +70,10 @@ Jkx girêdana înternetê xwe kontrol bike.";
"Common.Controls.Actions.UnblockDomain" = "%@ asteng neke"; "Common.Controls.Actions.UnblockDomain" = "%@ asteng neke";
"Common.Controls.Actions.Unfollow" = "Unfollow %@"; "Common.Controls.Actions.Unfollow" = "Unfollow %@";
"Common.Controls.Friendship.Block" = "Asteng bike"; "Common.Controls.Friendship.Block" = "Asteng bike";
"Common.Controls.Friendship.BlockDomain" = "%@ asteng bike"; "Common.Controls.Friendship.BlockDomain" = "Block domain %@";
"Common.Controls.Friendship.BlockUser" = "%@ asteng bike"; "Common.Controls.Friendship.BlockUser" = "%@ asteng bike";
"Common.Controls.Friendship.Blocked" = "Astengkirî"; "Common.Controls.Friendship.Blocked" = "Astengkirî";
"Common.Controls.Friendship.DomainBlocked" = "Domain Blocked";
"Common.Controls.Friendship.EditInfo" = "Zanyariyan serrast bike"; "Common.Controls.Friendship.EditInfo" = "Zanyariyan serrast bike";
"Common.Controls.Friendship.Follow" = "Bişopîne"; "Common.Controls.Friendship.Follow" = "Bişopîne";
"Common.Controls.Friendship.Following" = "Dişopîne"; "Common.Controls.Friendship.Following" = "Dişopîne";
@ -334,6 +335,8 @@ Profîla te ji wan ra wiha xuya dike.";
"Scene.Profile.Fields.Verified.Long" = "Xwedaniya li vê girêdanê di %@ de hatiye kontrolkirin"; "Scene.Profile.Fields.Verified.Long" = "Xwedaniya li vê girêdanê di %@ de hatiye kontrolkirin";
"Scene.Profile.Fields.Verified.Short" = "Hate piştrastkirin li ser %@"; "Scene.Profile.Fields.Verified.Short" = "Hate piştrastkirin li ser %@";
"Scene.Profile.Header.FollowsYou" = "Te dişopîne"; "Scene.Profile.Header.FollowsYou" = "Te dişopîne";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Message" = "Confirm to block domain %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Title" = "Block domain";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Ji bo rakirina astengkirinê %@ 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.ConfirmBlockUser.Title" = "Ajimêr asteng bike";
"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Bo veşartina bilindkirinan bipejirîne"; "Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Bo veşartina bilindkirinan bipejirîne";
@ -342,6 +345,8 @@ Profîla te ji wan ra wiha xuya dike.";
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Ajimêrê bêdeng bike"; "Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Ajimêrê bêdeng bike";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Bo nîşandana bilindkirinan bipejirîne"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Bo nîşandana bilindkirinan bipejirîne";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Bilindkirinan nîşan bide"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Bilindkirinan nîşan bide";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Message" = "Confirm to unblock domain %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Title" = "Unblock domain";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Ji bo rakirina astengkirinê %@ bipejirîne"; "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.ConfirmUnblockUser.Title" = "Astengiyê li ser ajimêr rake";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Ji bo vekirina bêdengkirinê %@ bipejirîne"; "Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Ji bo vekirina bêdengkirinê %@ bipejirîne";

View File

@ -69,9 +69,10 @@
"Common.Controls.Actions.UnblockDomain" = "%@ deblokkeren"; "Common.Controls.Actions.UnblockDomain" = "%@ deblokkeren";
"Common.Controls.Actions.Unfollow" = "Ontvolg %@"; "Common.Controls.Actions.Unfollow" = "Ontvolg %@";
"Common.Controls.Friendship.Block" = "Blokkeren"; "Common.Controls.Friendship.Block" = "Blokkeren";
"Common.Controls.Friendship.BlockDomain" = "%@ blokkeren"; "Common.Controls.Friendship.BlockDomain" = "Block domain %@";
"Common.Controls.Friendship.BlockUser" = "%@ blokkeren"; "Common.Controls.Friendship.BlockUser" = "%@ blokkeren";
"Common.Controls.Friendship.Blocked" = "Geblokkeerd"; "Common.Controls.Friendship.Blocked" = "Geblokkeerd";
"Common.Controls.Friendship.DomainBlocked" = "Domain Blocked";
"Common.Controls.Friendship.EditInfo" = "Bewerken"; "Common.Controls.Friendship.EditInfo" = "Bewerken";
"Common.Controls.Friendship.Follow" = "Volgen"; "Common.Controls.Friendship.Follow" = "Volgen";
"Common.Controls.Friendship.Following" = "Volgend"; "Common.Controls.Friendship.Following" = "Volgend";
@ -328,6 +329,8 @@ Jouw profiel ziet er zo uit voor hen.";
"Scene.Profile.Fields.Verified.Long" = "Eigendom van deze link is gecontroleerd op %@"; "Scene.Profile.Fields.Verified.Long" = "Eigendom van deze link is gecontroleerd op %@";
"Scene.Profile.Fields.Verified.Short" = "Geverifieerd op %@"; "Scene.Profile.Fields.Verified.Short" = "Geverifieerd op %@";
"Scene.Profile.Header.FollowsYou" = "Volgt jou"; "Scene.Profile.Header.FollowsYou" = "Volgt jou";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Message" = "Confirm to block domain %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Title" = "Block domain";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Het blokkeren van %@ bevestigen"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Het blokkeren van %@ bevestigen";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Het negeren van %@ bevestigen"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Het negeren van %@ bevestigen";
"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Verbergen van boosts bevestigen"; "Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Verbergen van boosts bevestigen";
@ -336,6 +339,8 @@ Jouw profiel ziet er zo uit voor hen.";
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Account negeren"; "Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Account negeren";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Tonen van boosts bevestigen"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Tonen van boosts bevestigen";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Boosts tonen"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Boosts tonen";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Message" = "Confirm to unblock domain %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Title" = "Unblock domain";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Het deblokkeren van %@ bevestigen"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Het deblokkeren van %@ bevestigen";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Account deblokkeren"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Account deblokkeren";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Het niet langer negeren van %@ bevestigen"; "Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Het niet langer negeren van %@ bevestigen";

View File

@ -70,9 +70,10 @@
"Common.Controls.Actions.UnblockDomain" = "Разблокировать %@"; "Common.Controls.Actions.UnblockDomain" = "Разблокировать %@";
"Common.Controls.Actions.Unfollow" = "Unfollow %@"; "Common.Controls.Actions.Unfollow" = "Unfollow %@";
"Common.Controls.Friendship.Block" = "Заблокировать"; "Common.Controls.Friendship.Block" = "Заблокировать";
"Common.Controls.Friendship.BlockDomain" = "Заблокировать %@"; "Common.Controls.Friendship.BlockDomain" = "Block domain %@";
"Common.Controls.Friendship.BlockUser" = "Заблокировать %@"; "Common.Controls.Friendship.BlockUser" = "Заблокировать %@";
"Common.Controls.Friendship.Blocked" = "В заблокированных"; "Common.Controls.Friendship.Blocked" = "В заблокированных";
"Common.Controls.Friendship.DomainBlocked" = "Domain Blocked";
"Common.Controls.Friendship.EditInfo" = "Изменить"; "Common.Controls.Friendship.EditInfo" = "Изменить";
"Common.Controls.Friendship.Follow" = "Подписаться"; "Common.Controls.Friendship.Follow" = "Подписаться";
"Common.Controls.Friendship.Following" = "В подписках"; "Common.Controls.Friendship.Following" = "В подписках";
@ -342,6 +343,8 @@
"Scene.Profile.Fields.Verified.Long" = "Ownership of this link was checked on %@"; "Scene.Profile.Fields.Verified.Long" = "Ownership of this link was checked on %@";
"Scene.Profile.Fields.Verified.Short" = "Verified on %@"; "Scene.Profile.Fields.Verified.Short" = "Verified on %@";
"Scene.Profile.Header.FollowsYou" = "Подписан(а) на вас"; "Scene.Profile.Header.FollowsYou" = "Подписан(а) на вас";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Message" = "Confirm to block domain %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Title" = "Block domain";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Confirm to block %@"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Confirm to block %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Block Account"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Block Account";
"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Confirm to hide reblogs"; "Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Confirm to hide reblogs";
@ -350,6 +353,8 @@
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Mute Account"; "Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Mute Account";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Confirm to show reblogs"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Confirm to show reblogs";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Show Reblogs"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Show Reblogs";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Message" = "Confirm to unblock domain %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Title" = "Unblock domain";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Confirm to unblock %@"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Confirm to unblock %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Unblock Account"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Unblock Account";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Убрать %@ из игнорируемых?"; "Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Убрать %@ из игнорируемых?";

View File

@ -70,9 +70,10 @@ Preverite svojo internetno povezavo.";
"Common.Controls.Actions.UnblockDomain" = "Odblokiraj %@"; "Common.Controls.Actions.UnblockDomain" = "Odblokiraj %@";
"Common.Controls.Actions.Unfollow" = "Prenehaj slediti %@"; "Common.Controls.Actions.Unfollow" = "Prenehaj slediti %@";
"Common.Controls.Friendship.Block" = "Blokiraj"; "Common.Controls.Friendship.Block" = "Blokiraj";
"Common.Controls.Friendship.BlockDomain" = "Blokiraj %@"; "Common.Controls.Friendship.BlockDomain" = "Blokiraj domeno %@";
"Common.Controls.Friendship.BlockUser" = "Blokiraj %@"; "Common.Controls.Friendship.BlockUser" = "Blokiraj %@";
"Common.Controls.Friendship.Blocked" = "Blokirano"; "Common.Controls.Friendship.Blocked" = "Blokirano";
"Common.Controls.Friendship.DomainBlocked" = "Domena blokirana";
"Common.Controls.Friendship.EditInfo" = "Uredi podatke"; "Common.Controls.Friendship.EditInfo" = "Uredi podatke";
"Common.Controls.Friendship.Follow" = "Sledi"; "Common.Controls.Friendship.Follow" = "Sledi";
"Common.Controls.Friendship.Following" = "Sledi"; "Common.Controls.Friendship.Following" = "Sledi";
@ -334,6 +335,8 @@ možno naložiti v Mastodon.";
"Scene.Profile.Fields.Verified.Long" = "Lastništvo te povezave je bilo preverjeno %@"; "Scene.Profile.Fields.Verified.Long" = "Lastništvo te povezave je bilo preverjeno %@";
"Scene.Profile.Fields.Verified.Short" = "Preverjeno %@"; "Scene.Profile.Fields.Verified.Short" = "Preverjeno %@";
"Scene.Profile.Header.FollowsYou" = "Vam sledi"; "Scene.Profile.Header.FollowsYou" = "Vam sledi";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Message" = "Potrdite blokado domene %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Title" = "Blokiraj domeno";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Potrdite za blokado %@"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Potrdite za blokado %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Blokiraj račun"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Blokiraj račun";
"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Potrdite, da poobjave ne bodo prikazane"; "Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Potrdite, da poobjave ne bodo prikazane";
@ -342,6 +345,8 @@ možno naložiti v Mastodon.";
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Utišaj račun"; "Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Utišaj račun";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Potrdite, da bodo poobjave prikazane"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Potrdite, da bodo poobjave prikazane";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Pokaži poobjave"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Pokaži poobjave";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Message" = "Potrdite umik blokade domene %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Title" = "Odblokiraj domeno";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Potrdite za umik blokade %@"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Potrdite za umik blokade %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Odblokiraj račun"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Odblokiraj račun";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Potrdite umik utišanja %@"; "Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Potrdite umik utišanja %@";

View File

@ -70,9 +70,10 @@ Kontrollera din internetanslutning.";
"Common.Controls.Actions.UnblockDomain" = "Avblockera %@"; "Common.Controls.Actions.UnblockDomain" = "Avblockera %@";
"Common.Controls.Actions.Unfollow" = "Avfölj %@"; "Common.Controls.Actions.Unfollow" = "Avfölj %@";
"Common.Controls.Friendship.Block" = "Blockera"; "Common.Controls.Friendship.Block" = "Blockera";
"Common.Controls.Friendship.BlockDomain" = "Blockera %@"; "Common.Controls.Friendship.BlockDomain" = "Block domain %@";
"Common.Controls.Friendship.BlockUser" = "Blockera %@"; "Common.Controls.Friendship.BlockUser" = "Blockera %@";
"Common.Controls.Friendship.Blocked" = "Blockerad"; "Common.Controls.Friendship.Blocked" = "Blockerad";
"Common.Controls.Friendship.DomainBlocked" = "Domain Blocked";
"Common.Controls.Friendship.EditInfo" = "Redigera info"; "Common.Controls.Friendship.EditInfo" = "Redigera info";
"Common.Controls.Friendship.Follow" = "Följ"; "Common.Controls.Friendship.Follow" = "Följ";
"Common.Controls.Friendship.Following" = "Följer"; "Common.Controls.Friendship.Following" = "Följer";
@ -334,6 +335,8 @@ laddas upp till Mastodon.";
"Scene.Profile.Fields.Verified.Long" = "Ägarskap för denna länk kontrollerades den %@"; "Scene.Profile.Fields.Verified.Long" = "Ägarskap för denna länk kontrollerades den %@";
"Scene.Profile.Fields.Verified.Short" = "Verifierad på %@"; "Scene.Profile.Fields.Verified.Short" = "Verifierad på %@";
"Scene.Profile.Header.FollowsYou" = "Följer dig"; "Scene.Profile.Header.FollowsYou" = "Följer dig";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Message" = "Confirm to block domain %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Title" = "Blockera domän";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Bekräfta för att blockera %@"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Bekräfta för att blockera %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Blockera konto"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Blockera konto";
"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Bekräfta för att dölja boostar"; "Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Bekräfta för att dölja boostar";
@ -342,6 +345,8 @@ laddas upp till Mastodon.";
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Tysta konto"; "Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Tysta konto";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Bekräfta för att visa boostar"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Bekräfta för att visa boostar";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Visa boostar"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Visa boostar";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Message" = "Confirm to unblock domain %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Title" = "Unblock domain";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Bekräfta för att avblockera %@"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Bekräfta för att avblockera %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Avblockera konto"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Avblockera konto";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Bekräfta för att avtysta %@"; "Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Bekräfta för att avtysta %@";

View File

@ -58,9 +58,9 @@
"Common.Controls.Actions.SavePhoto" = "บันทึกรูปภาพ"; "Common.Controls.Actions.SavePhoto" = "บันทึกรูปภาพ";
"Common.Controls.Actions.SeeMore" = "ดูเพิ่มเติม"; "Common.Controls.Actions.SeeMore" = "ดูเพิ่มเติม";
"Common.Controls.Actions.Settings" = "การตั้งค่า"; "Common.Controls.Actions.Settings" = "การตั้งค่า";
"Common.Controls.Actions.Share" = "แบ่งปัน"; "Common.Controls.Actions.Share" = "แชร์";
"Common.Controls.Actions.SharePost" = "แบ่งปันโพสต์"; "Common.Controls.Actions.SharePost" = "แชร์โพสต์";
"Common.Controls.Actions.ShareUser" = "แบ่งปัน %@"; "Common.Controls.Actions.ShareUser" = "แชร์ %@";
"Common.Controls.Actions.SignIn" = "เข้าสู่ระบบ"; "Common.Controls.Actions.SignIn" = "เข้าสู่ระบบ";
"Common.Controls.Actions.Skip" = "ข้าม"; "Common.Controls.Actions.Skip" = "ข้าม";
"Common.Controls.Actions.TakePhoto" = "ถ่ายรูป"; "Common.Controls.Actions.TakePhoto" = "ถ่ายรูป";
@ -70,9 +70,10 @@
"Common.Controls.Actions.UnblockDomain" = "เลิกปิดกั้น %@"; "Common.Controls.Actions.UnblockDomain" = "เลิกปิดกั้น %@";
"Common.Controls.Actions.Unfollow" = "เลิกติดตาม %@"; "Common.Controls.Actions.Unfollow" = "เลิกติดตาม %@";
"Common.Controls.Friendship.Block" = "ปิดกั้น"; "Common.Controls.Friendship.Block" = "ปิดกั้น";
"Common.Controls.Friendship.BlockDomain" = "ปิดกั้น %@"; "Common.Controls.Friendship.BlockDomain" = "ปิดกั้นโดเมน %@";
"Common.Controls.Friendship.BlockUser" = "ปิดกั้น %@"; "Common.Controls.Friendship.BlockUser" = "ปิดกั้น %@";
"Common.Controls.Friendship.Blocked" = "ปิดกั้นอยู่"; "Common.Controls.Friendship.Blocked" = "ปิดกั้นอยู่";
"Common.Controls.Friendship.DomainBlocked" = "ปิดกั้นโดเมนอยู่";
"Common.Controls.Friendship.EditInfo" = "แก้ไขข้อมูล"; "Common.Controls.Friendship.EditInfo" = "แก้ไขข้อมูล";
"Common.Controls.Friendship.Follow" = "ติดตาม"; "Common.Controls.Friendship.Follow" = "ติดตาม";
"Common.Controls.Friendship.Following" = "กำลังติดตาม"; "Common.Controls.Friendship.Following" = "กำลังติดตาม";
@ -110,7 +111,7 @@
"Common.Controls.Status.Actions.Menu" = "เมนู"; "Common.Controls.Status.Actions.Menu" = "เมนู";
"Common.Controls.Status.Actions.Reblog" = "ดัน"; "Common.Controls.Status.Actions.Reblog" = "ดัน";
"Common.Controls.Status.Actions.Reply" = "ตอบกลับ"; "Common.Controls.Status.Actions.Reply" = "ตอบกลับ";
"Common.Controls.Status.Actions.ShareLinkInPost" = "แบ่งปันลิงก์ในโพสต์"; "Common.Controls.Status.Actions.ShareLinkInPost" = "แชร์ลิงก์ในโพสต์";
"Common.Controls.Status.Actions.ShowGif" = "แสดง GIF"; "Common.Controls.Status.Actions.ShowGif" = "แสดง GIF";
"Common.Controls.Status.Actions.ShowImage" = "แสดงภาพ"; "Common.Controls.Status.Actions.ShowImage" = "แสดงภาพ";
"Common.Controls.Status.Actions.ShowVideoPlayer" = "แสดงตัวเล่นวิดีโอ"; "Common.Controls.Status.Actions.ShowVideoPlayer" = "แสดงตัวเล่นวิดีโอ";
@ -292,7 +293,7 @@
"Scene.HomeTimeline.NavigationBarState.Publishing" = "กำลังเผยแพร่โพสต์..."; "Scene.HomeTimeline.NavigationBarState.Publishing" = "กำลังเผยแพร่โพสต์...";
"Scene.HomeTimeline.Title" = "หน้าแรก"; "Scene.HomeTimeline.Title" = "หน้าแรก";
"Scene.Login.ServerSearchField.Placeholder" = "ป้อน URL หรือค้นหาสำหรับเซิร์ฟเวอร์ของคุณ"; "Scene.Login.ServerSearchField.Placeholder" = "ป้อน URL หรือค้นหาสำหรับเซิร์ฟเวอร์ของคุณ";
"Scene.Login.Subtitle" = "นำคุณเข้าสู่ระบบในเซิร์ฟเวอร์ที่คุณได้สร้างบัญชีของคุณไว้ใน"; "Scene.Login.Subtitle" = "นำคุณเข้าสู่ระบบในเซิร์ฟเวอร์ที่คุณได้สร้างบัญชีของคุณไว้";
"Scene.Login.Title" = "ยินดีต้อนรับกลับมา"; "Scene.Login.Title" = "ยินดีต้อนรับกลับมา";
"Scene.Notification.FollowRequest.Accept" = "ยอมรับ"; "Scene.Notification.FollowRequest.Accept" = "ยอมรับ";
"Scene.Notification.FollowRequest.Accepted" = "ยอมรับแล้ว"; "Scene.Notification.FollowRequest.Accepted" = "ยอมรับแล้ว";
@ -334,6 +335,8 @@
"Scene.Profile.Fields.Verified.Long" = "ตรวจสอบความเป็นเจ้าของของลิงก์นี้เมื่อ %@"; "Scene.Profile.Fields.Verified.Long" = "ตรวจสอบความเป็นเจ้าของของลิงก์นี้เมื่อ %@";
"Scene.Profile.Fields.Verified.Short" = "ยืนยันเมื่อ %@"; "Scene.Profile.Fields.Verified.Short" = "ยืนยันเมื่อ %@";
"Scene.Profile.Header.FollowsYou" = "ติดตามคุณ"; "Scene.Profile.Header.FollowsYou" = "ติดตามคุณ";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Message" = "ยืนยันเพื่อปิดกั้นโดเมน %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Title" = "ปิดกั้นโดเมน";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "ยืนยันเพื่อปิดกั้น %@"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "ยืนยันเพื่อปิดกั้น %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "ปิดกั้นบัญชี"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "ปิดกั้นบัญชี";
"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "ยืนยันเพื่อซ่อนการดัน"; "Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "ยืนยันเพื่อซ่อนการดัน";
@ -342,6 +345,8 @@
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "ซ่อนบัญชี"; "Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "ซ่อนบัญชี";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "ยืนยันเพื่อแสดงการดัน"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "ยืนยันเพื่อแสดงการดัน";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "แสดงการดัน"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "แสดงการดัน";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Message" = "ยืนยันเพื่อเลิกปิดกั้นโดเมน %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Title" = "เลิกปิดกั้นโดเมน";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "ยืนยันเพื่อเลิกปิดกั้น %@"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "ยืนยันเพื่อเลิกปิดกั้น %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "เลิกปิดกั้นบัญชี"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "เลิกปิดกั้นบัญชี";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "ยืนยันเพื่อเลิกซ่อน %@"; "Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "ยืนยันเพื่อเลิกซ่อน %@";
@ -403,7 +408,7 @@
"Scene.Report.StepFinal.UnfollowUser" = "เลิกติดตาม %@"; "Scene.Report.StepFinal.UnfollowUser" = "เลิกติดตาม %@";
"Scene.Report.StepFinal.Unfollowed" = "เลิกติดตามแล้ว"; "Scene.Report.StepFinal.Unfollowed" = "เลิกติดตามแล้ว";
"Scene.Report.StepFinal.WhenYouSeeSomethingYouDontLikeOnMastodonYouCanRemoveThePersonFromYourExperience." = "เมื่อคุณเห็นบางอย่างที่คุณไม่ชอบใน Mastodon คุณสามารถเอาบุคคลออกจากประสบการณ์ของคุณ"; "Scene.Report.StepFinal.WhenYouSeeSomethingYouDontLikeOnMastodonYouCanRemoveThePersonFromYourExperience." = "เมื่อคุณเห็นบางอย่างที่คุณไม่ชอบใน Mastodon คุณสามารถเอาบุคคลออกจากประสบการณ์ของคุณ";
"Scene.Report.StepFinal.WhileWeReviewThisYouCanTakeActionAgainstUser" = "ขณะที่เราตรวจทานสิ่งนี้ คุณสามารถดำเนินการกับ %@"; "Scene.Report.StepFinal.WhileWeReviewThisYouCanTakeActionAgainstUser" = "ขณะที่เราตรวจทานสิ่งนี้ คุณสามารถใช้การกระทำต่อ %@";
"Scene.Report.StepFinal.YouWontSeeTheirPostsOrReblogsInYourHomeFeedTheyWontKnowTheyVeBeenMuted" = "คุณจะไม่เห็นโพสต์หรือการดันของเขาในฟีดหน้าแรกของคุณ เขาจะไม่ทราบว่ามีการซ่อนเขา"; "Scene.Report.StepFinal.YouWontSeeTheirPostsOrReblogsInYourHomeFeedTheyWontKnowTheyVeBeenMuted" = "คุณจะไม่เห็นโพสต์หรือการดันของเขาในฟีดหน้าแรกของคุณ เขาจะไม่ทราบว่ามีการซ่อนเขา";
"Scene.Report.StepFour.IsThereAnythingElseWeShouldKnow" = "มีสิ่งอื่นใดที่เราควรทราบหรือไม่?"; "Scene.Report.StepFour.IsThereAnythingElseWeShouldKnow" = "มีสิ่งอื่นใดที่เราควรทราบหรือไม่?";
"Scene.Report.StepFour.Step4Of4" = "ขั้นตอนที่ 4 จาก 4"; "Scene.Report.StepFour.Step4Of4" = "ขั้นตอนที่ 4 จาก 4";
@ -535,7 +540,7 @@
"Scene.Welcome.Education.A11Y.WhatIsMastodon.Title" = "Mastodon คืออะไร?"; "Scene.Welcome.Education.A11Y.WhatIsMastodon.Title" = "Mastodon คืออะไร?";
"Scene.Welcome.Education.Mastodon.Description" = "Mastodon เป็นเครือข่ายสังคมแบบกระจายศูนย์ หมายความว่าไม่มีบริษัทใดควบคุมเครือข่ายสังคม เครือข่ายสังคมประกอบด้วยเซิร์ฟเวอร์ที่ทำงานอย่างอิสระจำนวนมาก ทั้งหมดเชื่อมต่อเข้าด้วยกัน"; "Scene.Welcome.Education.Mastodon.Description" = "Mastodon เป็นเครือข่ายสังคมแบบกระจายศูนย์ หมายความว่าไม่มีบริษัทใดควบคุมเครือข่ายสังคม เครือข่ายสังคมประกอบด้วยเซิร์ฟเวอร์ที่ทำงานอย่างอิสระจำนวนมาก ทั้งหมดเชื่อมต่อเข้าด้วยกัน";
"Scene.Welcome.Education.Mastodon.Title" = "ยินดีต้อนรับสู่ Mastodon"; "Scene.Welcome.Education.Mastodon.Title" = "ยินดีต้อนรับสู่ Mastodon";
"Scene.Welcome.Education.Servers.Description" = "ทุกบัญชี Mastodon ได้รับการโฮสต์ในเซิร์ฟเวอร์ — แต่ละแห่งมีค่า, กฎ และผู้ดูแลของเซิร์ฟเวอร์เอง ไม่ว่าคุณจะเลือกเซิร์ฟเวอร์ใด คุณสามารถติดตามและโต้ตอบกับผู้คนในเซิร์ฟเวอร์ใด"; "Scene.Welcome.Education.Servers.Description" = "ทุกบัญชี Mastodon จะถูกโฮสต์ในเซิร์ฟเวอร์ ซึ่งแต่ละแห่งมีค่านิยม, กฎ และผู้ดูแลของเซิร์ฟเวอร์เอง ไม่ว่าคุณจะเลือกเซิร์ฟเวอร์ใด คุณสามารถติดตามและโต้ตอบกับผู้คนในเซิร์ฟเวอร์ใดก็ได้";
"Scene.Welcome.Education.Servers.Title" = "เซิร์ฟเวอร์คืออะไร?"; "Scene.Welcome.Education.Servers.Title" = "เซิร์ฟเวอร์คืออะไร?";
"Scene.Welcome.JoinDefaultServer" = "เข้าร่วม %@"; "Scene.Welcome.JoinDefaultServer" = "เข้าร่วม %@";
"Scene.Welcome.LearnMore" = "เรียนรู้เพิ่มเติม"; "Scene.Welcome.LearnMore" = "เรียนรู้เพิ่มเติม";

View File

@ -69,9 +69,10 @@
"Common.Controls.Actions.UnblockDomain" = "%@ kişisinin engelini kaldır"; "Common.Controls.Actions.UnblockDomain" = "%@ kişisinin engelini kaldır";
"Common.Controls.Actions.Unfollow" = "Unfollow %@"; "Common.Controls.Actions.Unfollow" = "Unfollow %@";
"Common.Controls.Friendship.Block" = "Engelle"; "Common.Controls.Friendship.Block" = "Engelle";
"Common.Controls.Friendship.BlockDomain" = "%@ kişisini engelle"; "Common.Controls.Friendship.BlockDomain" = "Block domain %@";
"Common.Controls.Friendship.BlockUser" = "%@ kişisini engelle"; "Common.Controls.Friendship.BlockUser" = "%@ kişisini engelle";
"Common.Controls.Friendship.Blocked" = "Engellendi"; "Common.Controls.Friendship.Blocked" = "Engellendi";
"Common.Controls.Friendship.DomainBlocked" = "Domain Blocked";
"Common.Controls.Friendship.EditInfo" = "Bilgiyi Düzenle"; "Common.Controls.Friendship.EditInfo" = "Bilgiyi Düzenle";
"Common.Controls.Friendship.Follow" = "Takip et"; "Common.Controls.Friendship.Follow" = "Takip et";
"Common.Controls.Friendship.Following" = "Takip ediliyor"; "Common.Controls.Friendship.Following" = "Takip ediliyor";
@ -333,6 +334,8 @@ yüklenemiyor.";
"Scene.Profile.Fields.Verified.Long" = "%@ adresinin sahipliği kontrol edilmiş"; "Scene.Profile.Fields.Verified.Long" = "%@ adresinin sahipliği kontrol edilmiş";
"Scene.Profile.Fields.Verified.Short" = "%@ tarafında onaylı"; "Scene.Profile.Fields.Verified.Short" = "%@ tarafında onaylı";
"Scene.Profile.Header.FollowsYou" = "Seni takip ediyor"; "Scene.Profile.Header.FollowsYou" = "Seni takip ediyor";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Message" = "Confirm to block domain %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Title" = "Block domain";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "%@ engellemeyi onayla"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "%@ engellemeyi onayla";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Hesabı Engelle"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Hesabı Engelle";
"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Yeniden paylaşımları gizlemeyi onayla"; "Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Yeniden paylaşımları gizlemeyi onayla";
@ -341,6 +344,8 @@ yüklenemiyor.";
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Hesabı sustur"; "Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Hesabı sustur";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Yeniden paylaşımları göstermeyi onayla"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Yeniden paylaşımları göstermeyi onayla";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Yeniden Paylaşımları Göster"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Yeniden Paylaşımları Göster";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Message" = "Confirm to unblock domain %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Title" = "Unblock domain";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "%@ engellemeyi kaldırmayı onaylayın"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "%@ engellemeyi kaldırmayı onaylayın";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Hesabın Engelini Kaldır"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Hesabın Engelini Kaldır";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "%@ susturmasını kaldırmak için onaylayın"; "Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "%@ susturmasını kaldırmak için onaylayın";

View File

@ -73,6 +73,7 @@ Vui lòng kiểm tra kết nối mạng.";
"Common.Controls.Friendship.BlockDomain" = "Chặn %@"; "Common.Controls.Friendship.BlockDomain" = "Chặn %@";
"Common.Controls.Friendship.BlockUser" = "Chặn %@"; "Common.Controls.Friendship.BlockUser" = "Chặn %@";
"Common.Controls.Friendship.Blocked" = "Đã chặn"; "Common.Controls.Friendship.Blocked" = "Đã chặn";
"Common.Controls.Friendship.DomainBlocked" = "Máy chủ chặn";
"Common.Controls.Friendship.EditInfo" = "Chỉnh sửa"; "Common.Controls.Friendship.EditInfo" = "Chỉnh sửa";
"Common.Controls.Friendship.Follow" = "Theo dõi"; "Common.Controls.Friendship.Follow" = "Theo dõi";
"Common.Controls.Friendship.Following" = "Đang theo dõi"; "Common.Controls.Friendship.Following" = "Đang theo dõi";
@ -161,7 +162,7 @@ Vui lòng kiểm tra kết nối mạng.";
"Common.Controls.Status.Visibility.Unlisted" = "Ai cũng thấy tút này nhưng không hiện trên bảng tin máy chủ."; "Common.Controls.Status.Visibility.Unlisted" = "Ai cũng thấy tút này nhưng không hiện trên bảng tin máy chủ.";
"Common.Controls.Tabs.A11Y.Explore" = "Khám phá"; "Common.Controls.Tabs.A11Y.Explore" = "Khám phá";
"Common.Controls.Tabs.A11Y.Search" = "Tìm kiếm"; "Common.Controls.Tabs.A11Y.Search" = "Tìm kiếm";
"Common.Controls.Tabs.Home" = "Trang chính"; "Common.Controls.Tabs.Home" = "Trang ch";
"Common.Controls.Tabs.Notifications" = "Thông báo"; "Common.Controls.Tabs.Notifications" = "Thông báo";
"Common.Controls.Tabs.Profile" = "Trang hồ sơ"; "Common.Controls.Tabs.Profile" = "Trang hồ sơ";
"Common.Controls.Tabs.SearchAndExplore" = "Tìm và Khám Phá"; "Common.Controls.Tabs.SearchAndExplore" = "Tìm và Khám Phá";
@ -290,7 +291,7 @@ tải lên Mastodon.";
"Scene.HomeTimeline.NavigationBarState.Offline" = "Ngoại tuyến"; "Scene.HomeTimeline.NavigationBarState.Offline" = "Ngoại tuyến";
"Scene.HomeTimeline.NavigationBarState.Published" = "Đã đăng!"; "Scene.HomeTimeline.NavigationBarState.Published" = "Đã đăng!";
"Scene.HomeTimeline.NavigationBarState.Publishing" = "Đang đăng tút..."; "Scene.HomeTimeline.NavigationBarState.Publishing" = "Đang đăng tút...";
"Scene.HomeTimeline.Title" = "Trang chính"; "Scene.HomeTimeline.Title" = "Trang ch";
"Scene.Login.ServerSearchField.Placeholder" = "Nhập URL hoặc tìm máy chủ"; "Scene.Login.ServerSearchField.Placeholder" = "Nhập URL hoặc tìm máy chủ";
"Scene.Login.Subtitle" = "Đăng nhập vào máy chủ mà bạn đã tạo tài khoản."; "Scene.Login.Subtitle" = "Đăng nhập vào máy chủ mà bạn đã tạo tài khoản.";
"Scene.Login.Title" = "Chào mừng trở lại!"; "Scene.Login.Title" = "Chào mừng trở lại!";
@ -334,6 +335,8 @@ tải lên Mastodon.";
"Scene.Profile.Fields.Verified.Long" = "Liên kết này đã được xác minh trên %@"; "Scene.Profile.Fields.Verified.Long" = "Liên kết này đã được xác minh trên %@";
"Scene.Profile.Fields.Verified.Short" = "Đã xác minh %@"; "Scene.Profile.Fields.Verified.Short" = "Đã xác minh %@";
"Scene.Profile.Header.FollowsYou" = "Đang theo dõi bạn"; "Scene.Profile.Header.FollowsYou" = "Đang theo dõi bạn";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Message" = "Bạn muốn chặn %@?";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Title" = "Chặn máy chủ";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Xác nhận chặn %@"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Xác nhận chặn %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Chặn người này"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Chặn người này";
"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Xác nhận ẩn đăng lại"; "Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "Xác nhận ẩn đăng lại";
@ -342,6 +345,8 @@ tải lên Mastodon.";
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Ẩn người này"; "Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Ẩn người này";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Xác nhận hiện đăng lại"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "Xác nhận hiện đăng lại";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Hiện đăng lại"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "Hiện đăng lại";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Message" = "Bạn muốn bỏ chặn %@?";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Title" = "Bỏ chặn máy chủ";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Xác nhận bỏ chặn %@"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Xác nhận bỏ chặn %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Bỏ chặn người này"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Bỏ chặn người này";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Xác nhận bỏ ẩn %@"; "Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Xác nhận bỏ ẩn %@";

View File

@ -70,9 +70,10 @@
"Common.Controls.Actions.UnblockDomain" = "解除屏蔽 %@"; "Common.Controls.Actions.UnblockDomain" = "解除屏蔽 %@";
"Common.Controls.Actions.Unfollow" = "不再关注 %@"; "Common.Controls.Actions.Unfollow" = "不再关注 %@";
"Common.Controls.Friendship.Block" = "屏蔽"; "Common.Controls.Friendship.Block" = "屏蔽";
"Common.Controls.Friendship.BlockDomain" = "屏蔽 %@"; "Common.Controls.Friendship.BlockDomain" = "Block domain %@";
"Common.Controls.Friendship.BlockUser" = "屏蔽 %@"; "Common.Controls.Friendship.BlockUser" = "屏蔽 %@";
"Common.Controls.Friendship.Blocked" = "已屏蔽"; "Common.Controls.Friendship.Blocked" = "已屏蔽";
"Common.Controls.Friendship.DomainBlocked" = "Domain Blocked";
"Common.Controls.Friendship.EditInfo" = "编辑"; "Common.Controls.Friendship.EditInfo" = "编辑";
"Common.Controls.Friendship.Follow" = "关注"; "Common.Controls.Friendship.Follow" = "关注";
"Common.Controls.Friendship.Following" = "正在关注"; "Common.Controls.Friendship.Following" = "正在关注";
@ -334,6 +335,8 @@
"Scene.Profile.Fields.Verified.Long" = "此链接的所有权已在 %@ 上检查通过"; "Scene.Profile.Fields.Verified.Long" = "此链接的所有权已在 %@ 上检查通过";
"Scene.Profile.Fields.Verified.Short" = "验证于 %@"; "Scene.Profile.Fields.Verified.Short" = "验证于 %@";
"Scene.Profile.Header.FollowsYou" = "关注了你"; "Scene.Profile.Header.FollowsYou" = "关注了你";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Message" = "Confirm to block domain %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Title" = "Block domain";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "确认屏蔽 %@"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "确认屏蔽 %@";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "屏蔽帐户"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "屏蔽帐户";
"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "确认隐藏转发"; "Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "确认隐藏转发";
@ -342,6 +345,8 @@
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "静音账户"; "Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "静音账户";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "确认显示转发"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "确认显示转发";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "显示转发"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "显示转发";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Message" = "Confirm to unblock domain %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Title" = "Unblock domain";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "确认取消屏蔽 %@"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "确认取消屏蔽 %@";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "解除屏蔽帐户"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "解除屏蔽帐户";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "确认取消静音 %@"; "Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "确认取消静音 %@";
@ -440,16 +445,16 @@
"Scene.Search.SearchBar.Cancel" = "取消"; "Scene.Search.SearchBar.Cancel" = "取消";
"Scene.Search.SearchBar.Placeholder" = "搜索标签和用户"; "Scene.Search.SearchBar.Placeholder" = "搜索标签和用户";
"Scene.Search.Searching.Clear" = "清除"; "Scene.Search.Searching.Clear" = "清除";
"Scene.Search.Searching.ClearAll" = "Clear all"; "Scene.Search.Searching.ClearAll" = "清除";
"Scene.Search.Searching.EmptyState.NoResults" = "无结果"; "Scene.Search.Searching.EmptyState.NoResults" = "无结果";
"Scene.Search.Searching.Hashtag" = "Go to #%@"; "Scene.Search.Searching.Hashtag" = "转到 #%@";
"Scene.Search.Searching.NoUser.Message" = "There's no Useraccount \"%@\" on %@"; "Scene.Search.Searching.NoUser.Message" = "找不到用户 %@(在服务器 %@ 上)";
"Scene.Search.Searching.NoUser.Title" = "No User Account Found"; "Scene.Search.Searching.NoUser.Title" = "找不到账户";
"Scene.Search.Searching.People" = "People matching \"%@\""; "Scene.Search.Searching.People" = "匹配 %@ 的用户";
"Scene.Search.Searching.Posts" = "Posts matching \"%@\""; "Scene.Search.Searching.Posts" = "匹配 %@ 的嘟文";
"Scene.Search.Searching.Profile" = "Go to @%@@%@"; "Scene.Search.Searching.Profile" = "转到 @%@@%@";
"Scene.Search.Searching.RecentSearch" = "最近搜索"; "Scene.Search.Searching.RecentSearch" = "最近搜索";
"Scene.Search.Searching.Url" = "Open URL in Mastodon"; "Scene.Search.Searching.Url" = "在 Mastodon 中打开 URL";
"Scene.Search.Title" = "搜索"; "Scene.Search.Title" = "搜索";
"Scene.ServerPicker.Button.Category.Academia" = "学术"; "Scene.ServerPicker.Button.Category.Academia" = "学术";
"Scene.ServerPicker.Button.Category.Activism" = "行动主义"; "Scene.ServerPicker.Button.Category.Activism" = "行动主义";
@ -489,45 +494,45 @@
"Scene.ServerRules.Subtitle" = "这些规则由 %@ 的管理员设置。"; "Scene.ServerRules.Subtitle" = "这些规则由 %@ 的管理员设置。";
"Scene.ServerRules.TermsOfService" = "服务条款"; "Scene.ServerRules.TermsOfService" = "服务条款";
"Scene.ServerRules.Title" = "一些基本规则。"; "Scene.ServerRules.Title" = "一些基本规则。";
"Scene.Settings.AboutMastodon.ClearMediaStorage" = "Clear Media Storage"; "Scene.Settings.AboutMastodon.ClearMediaStorage" = "清楚媒体缓存";
"Scene.Settings.AboutMastodon.ContributeToMastodon" = "Contribute to Mastodon"; "Scene.Settings.AboutMastodon.ContributeToMastodon" = "贡献给Mastodon";
"Scene.Settings.AboutMastodon.MoreSettings" = "Even More Settings"; "Scene.Settings.AboutMastodon.MoreSettings" = "更多设置";
"Scene.Settings.AboutMastodon.PrivacyPolicy" = "Privacy Policy"; "Scene.Settings.AboutMastodon.PrivacyPolicy" = "隐私政策";
"Scene.Settings.AboutMastodon.Title" = "About"; "Scene.Settings.AboutMastodon.Title" = "关于";
"Scene.Settings.General.Appearance.Dark" = "Dark"; "Scene.Settings.General.Appearance.Dark" = "深色";
"Scene.Settings.General.Appearance.Light" = "Light"; "Scene.Settings.General.Appearance.Light" = "浅色";
"Scene.Settings.General.Appearance.SectionTitle" = "Appearance"; "Scene.Settings.General.Appearance.SectionTitle" = "外观";
"Scene.Settings.General.Appearance.System" = "Use Device Appearance"; "Scene.Settings.General.Appearance.System" = "跟随系统";
"Scene.Settings.General.Design.SectionTitle" = "Design"; "Scene.Settings.General.Design.SectionTitle" = "设计";
"Scene.Settings.General.Design.ShowAnimations" = "Play Animated Avatars and Emoji"; "Scene.Settings.General.Design.ShowAnimations" = "播放动态头像和表情";
"Scene.Settings.General.Links.OpenInBrowser" = "Open in Browser"; "Scene.Settings.General.Links.OpenInBrowser" = "在浏览器中打开";
"Scene.Settings.General.Links.OpenInMastodon" = "Open in Mastodon"; "Scene.Settings.General.Links.OpenInMastodon" = "在 Mastodon 中打开";
"Scene.Settings.General.Links.SectionTitle" = "Links"; "Scene.Settings.General.Links.SectionTitle" = "链接";
"Scene.Settings.General.Title" = "General"; "Scene.Settings.General.Title" = "通用";
"Scene.Settings.Notifications.Alert.Boosts" = "Boosts"; "Scene.Settings.Notifications.Alert.Boosts" = "转嘟";
"Scene.Settings.Notifications.Alert.Favorites" = "Favorites"; "Scene.Settings.Notifications.Alert.Favorites" = "喜欢";
"Scene.Settings.Notifications.Alert.MentionsAndReplies" = "Mentions & Replies"; "Scene.Settings.Notifications.Alert.MentionsAndReplies" = "提及与回复";
"Scene.Settings.Notifications.Alert.NewFollowers" = "New Followers"; "Scene.Settings.Notifications.Alert.NewFollowers" = "新关注者";
"Scene.Settings.Notifications.Disabled.GoToSettings" = "Go to Notification Settings"; "Scene.Settings.Notifications.Disabled.GoToSettings" = "转到通知设置";
"Scene.Settings.Notifications.Disabled.NotificationHint" = "Turn on notifications from your device settings to see updates on your lock screen."; "Scene.Settings.Notifications.Disabled.NotificationHint" = "在系统设置中打开通知来随时获取新动态。";
"Scene.Settings.Notifications.Policy.Anyone" = "Anyone"; "Scene.Settings.Notifications.Policy.Anyone" = "任何人";
"Scene.Settings.Notifications.Policy.Follow" = "People you follow"; "Scene.Settings.Notifications.Policy.Follow" = "你关注的人";
"Scene.Settings.Notifications.Policy.Followers" = "People who follow you"; "Scene.Settings.Notifications.Policy.Followers" = "关注你的人";
"Scene.Settings.Notifications.Policy.Noone" = "No one"; "Scene.Settings.Notifications.Policy.Noone" = "关闭通知";
"Scene.Settings.Notifications.Policy.Title" = "Get Notifications from"; "Scene.Settings.Notifications.Policy.Title" = "通知接收范围";
"Scene.Settings.Notifications.Title" = "Notifications"; "Scene.Settings.Notifications.Title" = "通知";
"Scene.Settings.Overview.AboutMastodon" = "About Mastodon"; "Scene.Settings.Overview.AboutMastodon" = "关于 Mastodon";
"Scene.Settings.Overview.General" = "General"; "Scene.Settings.Overview.General" = "通用";
"Scene.Settings.Overview.Logout" = "Logout %@"; "Scene.Settings.Overview.Logout" = "登出 %@";
"Scene.Settings.Overview.Notifications" = "Notifications"; "Scene.Settings.Overview.Notifications" = "通知";
"Scene.Settings.Overview.ServerDetails" = "Server Details"; "Scene.Settings.Overview.ServerDetails" = "服务器详情";
"Scene.Settings.Overview.SupportMastodon" = "Support Mastodon"; "Scene.Settings.Overview.SupportMastodon" = "支持 Mastodon";
"Scene.Settings.Overview.Title" = "Settings"; "Scene.Settings.Overview.Title" = "设置";
"Scene.Settings.ServerDetails.About" = "About"; "Scene.Settings.ServerDetails.About" = "关于";
"Scene.Settings.ServerDetails.AboutInstance.LegalNotice" = "A legal notice"; "Scene.Settings.ServerDetails.AboutInstance.LegalNotice" = "法律声明";
"Scene.Settings.ServerDetails.AboutInstance.MessageAdmin" = "Message Admin"; "Scene.Settings.ServerDetails.AboutInstance.MessageAdmin" = "联系管理员";
"Scene.Settings.ServerDetails.AboutInstance.Title" = "Administrator"; "Scene.Settings.ServerDetails.AboutInstance.Title" = "管理员";
"Scene.Settings.ServerDetails.Rules" = "Rules"; "Scene.Settings.ServerDetails.Rules" = "规则";
"Scene.SuggestionAccount.FollowAll" = "一键关注"; "Scene.SuggestionAccount.FollowAll" = "一键关注";
"Scene.SuggestionAccount.Title" = "Mastodon上流行的"; "Scene.SuggestionAccount.Title" = "Mastodon上流行的";
"Scene.Thread.BackTitle" = "帖子"; "Scene.Thread.BackTitle" = "帖子";

View File

@ -70,9 +70,10 @@
"Common.Controls.Actions.UnblockDomain" = "解除封鎖 %@"; "Common.Controls.Actions.UnblockDomain" = "解除封鎖 %@";
"Common.Controls.Actions.Unfollow" = "取消跟隨 %@"; "Common.Controls.Actions.Unfollow" = "取消跟隨 %@";
"Common.Controls.Friendship.Block" = "封鎖"; "Common.Controls.Friendship.Block" = "封鎖";
"Common.Controls.Friendship.BlockDomain" = "封鎖 %@"; "Common.Controls.Friendship.BlockDomain" = "封鎖網域 %@";
"Common.Controls.Friendship.BlockUser" = "封鎖 %@"; "Common.Controls.Friendship.BlockUser" = "封鎖 %@";
"Common.Controls.Friendship.Blocked" = "已封鎖"; "Common.Controls.Friendship.Blocked" = "已封鎖";
"Common.Controls.Friendship.DomainBlocked" = "已封鎖網域";
"Common.Controls.Friendship.EditInfo" = "編輯"; "Common.Controls.Friendship.EditInfo" = "編輯";
"Common.Controls.Friendship.Follow" = "跟隨"; "Common.Controls.Friendship.Follow" = "跟隨";
"Common.Controls.Friendship.Following" = "跟隨中"; "Common.Controls.Friendship.Following" = "跟隨中";
@ -329,6 +330,8 @@
"Scene.Profile.Fields.Verified.Long" = "已於 %@ 檢查此連結的擁有者權限"; "Scene.Profile.Fields.Verified.Long" = "已於 %@ 檢查此連結的擁有者權限";
"Scene.Profile.Fields.Verified.Short" = "於 %@ 上已驗證"; "Scene.Profile.Fields.Verified.Short" = "於 %@ 上已驗證";
"Scene.Profile.Header.FollowsYou" = "已跟隨您"; "Scene.Profile.Header.FollowsYou" = "已跟隨您";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Message" = "確認將網域 %@ 封鎖";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockDomain.Title" = "封鎖網域";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "確認將 %@ 封鎖"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "確認將 %@ 封鎖";
"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "封鎖"; "Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "封鎖";
"Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "確認隱藏轉嘟"; "Scene.Profile.RelationshipActionAlert.ConfirmHideReblogs.Message" = "確認隱藏轉嘟";
@ -337,6 +340,8 @@
"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "靜音"; "Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "靜音";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "確認顯示轉嘟"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Message" = "確認顯示轉嘟";
"Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "顯示轉嘟"; "Scene.Profile.RelationshipActionAlert.ConfirmShowReblogs.Title" = "顯示轉嘟";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Message" = "確認將網域 %@ 解除封鎖";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockDomain.Title" = "解除封鎖網域";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "確認將 %@ 取消封鎖"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "確認將 %@ 取消封鎖";
"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "取消封鎖"; "Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "取消封鎖";
"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "確認將 %@ 取消靜音"; "Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "確認將 %@ 取消靜音";