From a519dc4bc42c7cdc2d0dd0eb0a3534fa69d12aaa Mon Sep 17 00:00:00 2001 From: CMK Date: Mon, 16 Aug 2021 15:56:15 +0800 Subject: [PATCH] chore: add i18n supports for Russian, Scottish Gaelic, and Thai --- .../Sources/StringsConvertor/main.swift | 3 + Mastodon.xcodeproj/project.pbxproj | 51 ++ .../xcschemes/xcschememanagement.plist | 37 +- .../Resources/gd-GB.lproj/InfoPlist.strings | 4 + .../Resources/gd-GB.lproj/Localizable.strings | 339 +++++++++++++ .../gd-GB.lproj/Localizable.stringsdict | 466 ++++++++++++++++++ Mastodon/Resources/ru.lproj/InfoPlist.strings | 4 + .../Resources/ru.lproj/Localizable.strings | 350 +++++++++++++ .../ru.lproj/Localizable.stringsdict | 466 ++++++++++++++++++ Mastodon/Resources/th.lproj/InfoPlist.strings | 4 + .../Resources/th.lproj/Localizable.strings | 340 +++++++++++++ .../th.lproj/Localizable.stringsdict | 328 ++++++++++++ MastodonIntent/ar.lproj/Intents.stringsdict | 54 ++ MastodonIntent/ca.lproj/Intents.stringsdict | 54 ++ MastodonIntent/de.lproj/Intents.stringsdict | 54 ++ .../es-419.lproj/Intents.stringsdict | 54 ++ MastodonIntent/es.lproj/Intents.stringsdict | 54 ++ MastodonIntent/fr.lproj/Intents.stringsdict | 54 ++ MastodonIntent/gd-GB.lproj/Intents.strings | 51 ++ .../gd-GB.lproj/Intents.stringsdict | 54 ++ MastodonIntent/ja.lproj/Intents.stringsdict | 54 ++ MastodonIntent/nl.lproj/Intents.stringsdict | 54 ++ MastodonIntent/ru.lproj/Intents.strings | 51 ++ MastodonIntent/ru.lproj/Intents.stringsdict | 54 ++ MastodonIntent/th.lproj/Intents.strings | 51 ++ MastodonIntent/th.lproj/Intents.stringsdict | 54 ++ .../zh-Hans.lproj/Intents.stringsdict | 54 ++ 27 files changed, 3177 insertions(+), 16 deletions(-) create mode 100644 Mastodon/Resources/gd-GB.lproj/InfoPlist.strings create mode 100644 Mastodon/Resources/gd-GB.lproj/Localizable.strings create mode 100644 Mastodon/Resources/gd-GB.lproj/Localizable.stringsdict create mode 100644 Mastodon/Resources/ru.lproj/InfoPlist.strings create mode 100644 Mastodon/Resources/ru.lproj/Localizable.strings create mode 100644 Mastodon/Resources/ru.lproj/Localizable.stringsdict create mode 100644 Mastodon/Resources/th.lproj/InfoPlist.strings create mode 100644 Mastodon/Resources/th.lproj/Localizable.strings create mode 100644 Mastodon/Resources/th.lproj/Localizable.stringsdict create mode 100644 MastodonIntent/ar.lproj/Intents.stringsdict create mode 100644 MastodonIntent/ca.lproj/Intents.stringsdict create mode 100644 MastodonIntent/de.lproj/Intents.stringsdict create mode 100644 MastodonIntent/es-419.lproj/Intents.stringsdict create mode 100644 MastodonIntent/es.lproj/Intents.stringsdict create mode 100644 MastodonIntent/fr.lproj/Intents.stringsdict create mode 100644 MastodonIntent/gd-GB.lproj/Intents.strings create mode 100644 MastodonIntent/gd-GB.lproj/Intents.stringsdict create mode 100644 MastodonIntent/ja.lproj/Intents.stringsdict create mode 100644 MastodonIntent/nl.lproj/Intents.stringsdict create mode 100644 MastodonIntent/ru.lproj/Intents.strings create mode 100644 MastodonIntent/ru.lproj/Intents.stringsdict create mode 100644 MastodonIntent/th.lproj/Intents.strings create mode 100644 MastodonIntent/th.lproj/Intents.stringsdict create mode 100644 MastodonIntent/zh-Hans.lproj/Intents.stringsdict diff --git a/Localization/StringsConvertor/Sources/StringsConvertor/main.swift b/Localization/StringsConvertor/Sources/StringsConvertor/main.swift index 63ffa1433..124612e5c 100644 --- a/Localization/StringsConvertor/Sources/StringsConvertor/main.swift +++ b/Localization/StringsConvertor/Sources/StringsConvertor/main.swift @@ -51,8 +51,11 @@ private func map(language: String) -> String? { case "fr_FR": return "fr" // French case "de_DE": return "de" // German case "ja_JP": return "ja" // Japanese + case "ru_RU": return "ru" // Russian + case "gd_GB": return "gd-GB" // Scottish Gaelic case "es_ES": return "es" // Spanish case "es_AR": return "es-419" // Spanish, Argentina + case "th_TH": return "th" // Thai default: return nil } } diff --git a/Mastodon.xcodeproj/project.pbxproj b/Mastodon.xcodeproj/project.pbxproj index d196cd1ad..d6d5a6622 100644 --- a/Mastodon.xcodeproj/project.pbxproj +++ b/Mastodon.xcodeproj/project.pbxproj @@ -1015,6 +1015,30 @@ DB49A62425FF334C00B98345 /* EmojiService+CustomEmojiViewModel+LoadState.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "EmojiService+CustomEmojiViewModel+LoadState.swift"; sourceTree = ""; }; DB49A62A25FF36C700B98345 /* APIService+CustomEmoji.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "APIService+CustomEmoji.swift"; sourceTree = ""; }; DB49A63C25FF609300B98345 /* PlayerContainerView+MediaTypeIndicotorView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "PlayerContainerView+MediaTypeIndicotorView.swift"; sourceTree = ""; }; + DB4B777F26CA4EFA00B087B3 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Intents.strings; sourceTree = ""; }; + DB4B778026CA4EFA00B087B3 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = ru; path = ru.lproj/Localizable.stringsdict; sourceTree = ""; }; + DB4B778126CA4EFA00B087B3 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/Localizable.strings; sourceTree = ""; }; + DB4B778226CA4EFA00B087B3 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/InfoPlist.strings; sourceTree = ""; }; + DB4B778326CA4EFA00B087B3 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = ru; path = ru.lproj/Intents.stringsdict; sourceTree = ""; }; + DB4B778426CA500E00B087B3 /* gd-GB */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "gd-GB"; path = "gd-GB.lproj/Intents.strings"; sourceTree = ""; }; + DB4B778526CA500E00B087B3 /* gd-GB */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = "gd-GB"; path = "gd-GB.lproj/Localizable.stringsdict"; sourceTree = ""; }; + DB4B778626CA500E00B087B3 /* gd-GB */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "gd-GB"; path = "gd-GB.lproj/Localizable.strings"; sourceTree = ""; }; + DB4B778726CA500E00B087B3 /* gd-GB */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "gd-GB"; path = "gd-GB.lproj/InfoPlist.strings"; sourceTree = ""; }; + DB4B778826CA500E00B087B3 /* gd-GB */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = "gd-GB"; path = "gd-GB.lproj/Intents.stringsdict"; sourceTree = ""; }; + DB4B778926CA504100B087B3 /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = es; path = es.lproj/Intents.stringsdict; sourceTree = ""; }; + DB4B778A26CA504200B087B3 /* es-419 */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = "es-419"; path = "es-419.lproj/Intents.stringsdict"; sourceTree = ""; }; + DB4B778B26CA504300B087B3 /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = ar; path = ar.lproj/Intents.stringsdict; sourceTree = ""; }; + DB4B778C26CA504400B087B3 /* ca */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = ca; path = ca.lproj/Intents.stringsdict; sourceTree = ""; }; + DB4B778D26CA504500B087B3 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = "zh-Hans"; path = "zh-Hans.lproj/Intents.stringsdict"; sourceTree = ""; }; + DB4B778E26CA504800B087B3 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = nl; path = nl.lproj/Intents.stringsdict; sourceTree = ""; }; + DB4B778F26CA504900B087B3 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = de; path = de.lproj/Intents.stringsdict; sourceTree = ""; }; + DB4B779026CA504900B087B3 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = fr; path = fr.lproj/Intents.stringsdict; sourceTree = ""; }; + DB4B779126CA504A00B087B3 /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = ja; path = ja.lproj/Intents.stringsdict; sourceTree = ""; }; + DB4B779226CA50BA00B087B3 /* th */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = th; path = th.lproj/Intents.strings; sourceTree = ""; }; + DB4B779326CA50BA00B087B3 /* th */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = th; path = th.lproj/Localizable.stringsdict; sourceTree = ""; }; + DB4B779426CA50BA00B087B3 /* th */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = th; path = th.lproj/Localizable.strings; sourceTree = ""; }; + DB4B779526CA50BA00B087B3 /* th */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = th; path = th.lproj/InfoPlist.strings; sourceTree = ""; }; + DB4B779626CA50BA00B087B3 /* th */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = th; path = th.lproj/Intents.stringsdict; sourceTree = ""; }; DB4F0962269ED06300D62E92 /* SearchResultViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SearchResultViewController.swift; sourceTree = ""; }; DB4F0965269ED52200D62E92 /* SearchResultViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SearchResultViewModel.swift; sourceTree = ""; }; DB4F0967269ED8AD00D62E92 /* SearchHistoryTableHeaderView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SearchHistoryTableHeaderView.swift; sourceTree = ""; }; @@ -3358,6 +3382,9 @@ "es-419", de, nl, + ru, + "gd-GB", + th, ); mainGroup = DB427DC925BAA00100D1B89D; packageReferences = ( @@ -4353,6 +4380,9 @@ DBA4B0E826C153820077136E /* de */, DBA4B0EC26C153B10077136E /* nl */, DBA4B0F526C2621D0077136E /* en */, + DB4B777F26CA4EFA00B087B3 /* ru */, + DB4B778426CA500E00B087B3 /* gd-GB */, + DB4B779226CA50BA00B087B3 /* th */, ); name = Intents.intentdefinition; sourceTree = ""; @@ -4370,6 +4400,9 @@ DBA4B0E626BD11D10077136E /* es-419 */, DBA4B0EB26C153820077136E /* de */, DBA4B0EF26C153B20077136E /* nl */, + DB4B778226CA4EFA00B087B3 /* ru */, + DB4B778726CA500E00B087B3 /* gd-GB */, + DB4B779526CA50BA00B087B3 /* th */, ); name = InfoPlist.strings; sourceTree = ""; @@ -4387,6 +4420,9 @@ DBA4B0E526BD11D10077136E /* es-419 */, DBA4B0EA26C153820077136E /* de */, DBA4B0EE26C153B20077136E /* nl */, + DB4B778126CA4EFA00B087B3 /* ru */, + DB4B778626CA500E00B087B3 /* gd-GB */, + DB4B779426CA50BA00B087B3 /* th */, ); name = Localizable.strings; sourceTree = ""; @@ -4420,6 +4456,9 @@ DBA4B0E426BD11D10077136E /* es-419 */, DBA4B0E926C153820077136E /* de */, DBA4B0ED26C153B10077136E /* nl */, + DB4B778026CA4EFA00B087B3 /* ru */, + DB4B778526CA500E00B087B3 /* gd-GB */, + DB4B779326CA50BA00B087B3 /* th */, ); name = Localizable.stringsdict; sourceTree = ""; @@ -4428,6 +4467,18 @@ isa = PBXVariantGroup; children = ( DBA4B0F826C269880077136E /* en */, + DB4B778326CA4EFA00B087B3 /* ru */, + DB4B778826CA500E00B087B3 /* gd-GB */, + DB4B778926CA504100B087B3 /* es */, + DB4B778A26CA504200B087B3 /* es-419 */, + DB4B778B26CA504300B087B3 /* ar */, + DB4B778C26CA504400B087B3 /* ca */, + DB4B778D26CA504500B087B3 /* zh-Hans */, + DB4B778E26CA504800B087B3 /* nl */, + DB4B778F26CA504900B087B3 /* de */, + DB4B779026CA504900B087B3 /* fr */, + DB4B779126CA504A00B087B3 /* ja */, + DB4B779626CA50BA00B087B3 /* th */, ); name = Intents.stringsdict; sourceTree = ""; diff --git a/Mastodon.xcodeproj/xcuserdata/mainasuk.xcuserdatad/xcschemes/xcschememanagement.plist b/Mastodon.xcodeproj/xcuserdata/mainasuk.xcuserdatad/xcschemes/xcschememanagement.plist index e1714a0c7..d6a935bc0 100644 --- a/Mastodon.xcodeproj/xcuserdata/mainasuk.xcuserdatad/xcschemes/xcschememanagement.plist +++ b/Mastodon.xcodeproj/xcuserdata/mainasuk.xcuserdatad/xcschemes/xcschememanagement.plist @@ -7,32 +7,32 @@ AppShared.xcscheme_^#shared#^_ orderHint - 34 + 36 CoreDataStack.xcscheme_^#shared#^_ orderHint - 33 + 35 Mastodon - ASDK.xcscheme_^#shared#^_ orderHint - 9 + 10 Mastodon - RTL.xcscheme_^#shared#^_ orderHint - 10 + 11 Mastodon - Release.xcscheme_^#shared#^_ orderHint - 8 + 9 Mastodon - ar.xcscheme_^#shared#^_ orderHint - 5 + 6 Mastodon - ca.xcscheme_^#shared#^_ @@ -42,7 +42,7 @@ Mastodon - de.xcscheme_^#shared#^_ orderHint - 6 + 7 Mastodon - en.xcscheme_^#shared#^_ @@ -52,32 +52,37 @@ Mastodon - es-419.xcscheme_^#shared#^_ orderHint - 3 + 4 Mastodon - es.xcscheme_^#shared#^_ orderHint - 2 + 3 Mastodon - fr.xcscheme_^#shared#^_ orderHint - 4 + 5 Mastodon - jp.xcscheme_^#shared#^_ orderHint - 28 + 26 Mastodon - nl.xcscheme_^#shared#^_ orderHint - 7 + 8 + + Mastodon - ru.xcscheme_^#shared#^_ + + orderHint + 2 Mastodon - zh_Hans.xcscheme_^#shared#^_ orderHint - 30 + 29 Mastodon.xcscheme_^#shared#^_ @@ -87,7 +92,7 @@ MastodonIntent.xcscheme_^#shared#^_ orderHint - 35 + 37 MastodonIntents.xcscheme_^#shared#^_ @@ -102,12 +107,12 @@ NotificationService.xcscheme_^#shared#^_ orderHint - 11 + 12 ShareActionExtension.xcscheme_^#shared#^_ orderHint - 32 + 34 SuppressBuildableAutocreation diff --git a/Mastodon/Resources/gd-GB.lproj/InfoPlist.strings b/Mastodon/Resources/gd-GB.lproj/InfoPlist.strings new file mode 100644 index 000000000..ccb39b44e --- /dev/null +++ b/Mastodon/Resources/gd-GB.lproj/InfoPlist.strings @@ -0,0 +1,4 @@ +"NSCameraUsageDescription" = "’Ga chleachdadh airson dealbh a thogail do staid puist"; +"NSPhotoLibraryAddUsageDescription" = "’Ga chleachdadh airson dealbh a shàbhaladh ann an tasg-lann nan dealbhan"; +"NewPostShortcutItemTitle" = "Post ùr"; +"SearchShortcutItemTitle" = "Lorg"; \ No newline at end of file diff --git a/Mastodon/Resources/gd-GB.lproj/Localizable.strings b/Mastodon/Resources/gd-GB.lproj/Localizable.strings new file mode 100644 index 000000000..985819610 --- /dev/null +++ b/Mastodon/Resources/gd-GB.lproj/Localizable.strings @@ -0,0 +1,339 @@ +"Common.Alerts.BlockDomain.BlockEntireDomain" = "Bac an àrainn"; +"Common.Alerts.BlockDomain.Title" = "A bheil thu cinnteach dha-rìribh gu bheil thu airson an àrainn %@ a bhacadh uile gu lèir? Mar as trice, foghnaidh gun dèan thu bacadh no mùchadh no dhà gu sònraichte agus bhiod sin na b’ fheàrr. Chan fhaic thu susbaint on àrainn ud agus thèid an luchd-leantainn agad on àrainn ud a thoirt air falbh."; +"Common.Alerts.CleanCache.Message" = "Chaidh %@ a thasgadan fhalamhachadh."; +"Common.Alerts.CleanCache.Title" = "Falamhaich an tasgadan"; +"Common.Alerts.Common.PleaseTryAgain" = "Feuch ris a-rithist."; +"Common.Alerts.Common.PleaseTryAgainLater" = "Feuch ris a-rithist an ceann greis."; +"Common.Alerts.DeletePost.Delete" = "Sguab às"; +"Common.Alerts.DeletePost.Title" = "A bheil thu cinnteach gu bheil thu airson am post seo a sguabadh às?"; +"Common.Alerts.DiscardPostContent.Message" = "Dearbh tilgeil air falbh susbaint a’ phuist a sgrìobh thu."; +"Common.Alerts.DiscardPostContent.Title" = "Tilg air falbh an dreachd"; +"Common.Alerts.EditProfileFailure.Message" = "Cha b’ urrainn dhuinn a’ pròifil a dheasachadh. Feuch ris a-rithist."; +"Common.Alerts.EditProfileFailure.Title" = "Mearachd le deasachadh na pròifil"; +"Common.Alerts.PublishPostFailure.AttachmentsMessage.MoreThanOneVideo" = "Chan urrainn dhut barrachd air aon video a cheangal ris."; +"Common.Alerts.PublishPostFailure.AttachmentsMessage.VideoAttachWithPhoto" = "Chan urrainn dhut video a cheangal ri post sa bheil dealbh mu thràth."; +"Common.Alerts.PublishPostFailure.Message" = "Cha deach leinn am post fhoillseachadh. +Thoir sùil air a’ cheangal agad ris an eadar-lìon."; +"Common.Alerts.PublishPostFailure.Title" = "Dh’fhàillig leis an fhoillseachadh"; +"Common.Alerts.SavePhotoFailure.Message" = "Cuir cead inntrigidh do thasg-lann nan dealbhan an comas gus an dealbh a shàbhaladh."; +"Common.Alerts.SavePhotoFailure.Title" = "Dh’fhàillig le sàbhaladh an deilbh"; +"Common.Alerts.ServerError.Title" = "Mearachd an fhrithealaiche"; +"Common.Alerts.SignOut.Confirm" = "Clàraich a-mach"; +"Common.Alerts.SignOut.Message" = "A bheil thu cinnteach gu bheil thu airson clàradh a-mach?"; +"Common.Alerts.SignOut.Title" = "Clàraich a-mach"; +"Common.Alerts.SignUpFailure.Title" = "Dh’fhàillig leis a’ chlàradh"; +"Common.Alerts.VoteFailure.PollEnded" = "Thàinig an cunntas-bheachd gu crìoch"; +"Common.Alerts.VoteFailure.Title" = "Dh’fhàillig leis a’ bhòt"; +"Common.Controls.Actions.Add" = "Cuir ris"; +"Common.Controls.Actions.Back" = "Air ais"; +"Common.Controls.Actions.BlockDomain" = "Bac %@"; +"Common.Controls.Actions.Cancel" = "Sguir dheth"; +"Common.Controls.Actions.Confirm" = "Dearbh"; +"Common.Controls.Actions.Continue" = "Lean air adhart"; +"Common.Controls.Actions.CopyPhoto" = "Dèan lethbhreac dhen dealbh"; +"Common.Controls.Actions.Delete" = "Sguab às"; +"Common.Controls.Actions.Discard" = "Tilg air falbh"; +"Common.Controls.Actions.Done" = "Deiseil"; +"Common.Controls.Actions.Edit" = "Deasaich"; +"Common.Controls.Actions.FindPeople" = "Lorg daoine a leanas tu"; +"Common.Controls.Actions.ManuallySearch" = "Lorg a làimh ’na àite"; +"Common.Controls.Actions.Next" = "Air adhart"; +"Common.Controls.Actions.Ok" = "Ceart ma-thà"; +"Common.Controls.Actions.Open" = "Fosgail"; +"Common.Controls.Actions.OpenInSafari" = "Fosgail ann an Safari"; +"Common.Controls.Actions.Preview" = "Ro-sheall"; +"Common.Controls.Actions.Previous" = "Air ais"; +"Common.Controls.Actions.Remove" = "Thoir air falbh"; +"Common.Controls.Actions.Reply" = "Freagair"; +"Common.Controls.Actions.ReportUser" = "Dèan gearan mu %@"; +"Common.Controls.Actions.Save" = "Sàbhail"; +"Common.Controls.Actions.SavePhoto" = "Sàbhail an dealbh"; +"Common.Controls.Actions.SeeMore" = "Seall a bharrachd"; +"Common.Controls.Actions.Settings" = "Roghainnean"; +"Common.Controls.Actions.Share" = "Co-roinn"; +"Common.Controls.Actions.SharePost" = "Co-roinn am post"; +"Common.Controls.Actions.ShareUser" = "Co-roinn %@"; +"Common.Controls.Actions.SignIn" = "Clàraich a-steach"; +"Common.Controls.Actions.SignUp" = "Clàraich leinn"; +"Common.Controls.Actions.Skip" = "Leum thairis air"; +"Common.Controls.Actions.TakePhoto" = "Tog dealbh"; +"Common.Controls.Actions.TryAgain" = "Feuch ris a-rithist"; +"Common.Controls.Actions.UnblockDomain" = "Dì-bhac %@"; +"Common.Controls.Friendship.Block" = "Bac"; +"Common.Controls.Friendship.BlockDomain" = "Bac %@"; +"Common.Controls.Friendship.BlockUser" = "Bac %@"; +"Common.Controls.Friendship.Blocked" = "’Ga bhacadh"; +"Common.Controls.Friendship.EditInfo" = "Deasaich"; +"Common.Controls.Friendship.Follow" = "Lean air"; +"Common.Controls.Friendship.Following" = "’Ga leantainn"; +"Common.Controls.Friendship.Mute" = "Mùch"; +"Common.Controls.Friendship.MuteUser" = "Mùch %@"; +"Common.Controls.Friendship.Muted" = "’Ga mhùchadh"; +"Common.Controls.Friendship.Pending" = "Ri dhèiligeadh"; +"Common.Controls.Friendship.Request" = "Iarrtas"; +"Common.Controls.Friendship.Unblock" = "Dì-bhac"; +"Common.Controls.Friendship.UnblockUser" = "Dì-bhac %@"; +"Common.Controls.Friendship.Unmute" = "Dì-mhùch"; +"Common.Controls.Friendship.UnmuteUser" = "Dì-mhùch %@"; +"Common.Controls.Keyboard.Common.ComposeNewPost" = "Sgrìobh post ùr"; +"Common.Controls.Keyboard.Common.OpenSettings" = "Fosgail na roghainnean"; +"Common.Controls.Keyboard.Common.ShowFavorites" = "Seall na h-annsachdan"; +"Common.Controls.Keyboard.Common.SwitchToTab" = "Geàrr leum gu %@"; +"Common.Controls.Keyboard.SegmentedControl.NextSection" = "An ath earrann"; +"Common.Controls.Keyboard.SegmentedControl.PreviousSection" = "An earrann roimhpe"; +"Common.Controls.Keyboard.Timeline.NextStatus" = "An ath-phost"; +"Common.Controls.Keyboard.Timeline.OpenAuthorProfile" = "Fosgail pròifil an ùghdair"; +"Common.Controls.Keyboard.Timeline.OpenRebloggerProfile" = "Fosgail pròifil an neach-brosnachaidh"; +"Common.Controls.Keyboard.Timeline.OpenStatus" = "Fosgail am post"; +"Common.Controls.Keyboard.Timeline.PreviewImage" = "Ro-sheall an dealbh"; +"Common.Controls.Keyboard.Timeline.PreviousStatus" = "Am post roimhe"; +"Common.Controls.Keyboard.Timeline.ReplyStatus" = "Freagair do phost"; +"Common.Controls.Keyboard.Timeline.ToggleContentWarning" = "Toglaich rabhadh susbainte a’ phuist"; +"Common.Controls.Keyboard.Timeline.ToggleFavorite" = "Toglaich annsachd a’ phuist"; +"Common.Controls.Keyboard.Timeline.ToggleReblog" = "Toglaich brosnachadh a’ phuist"; +"Common.Controls.Status.Actions.Favorite" = "Cuir ris na h-annsachdan"; +"Common.Controls.Status.Actions.Menu" = "Clàr-taice"; +"Common.Controls.Status.Actions.Reblog" = "Brosnaich"; +"Common.Controls.Status.Actions.Reply" = "Freagair"; +"Common.Controls.Status.Actions.Unfavorite" = "Thoir air falbh o na h-annsachdan"; +"Common.Controls.Status.Actions.Unreblog" = "Na brosnaich tuilleadh"; +"Common.Controls.Status.ContentWarning" = "Rabhadh susbainte"; +"Common.Controls.Status.MediaContentWarning" = "Thoir gnogag àite sam bith gus a nochdadh"; +"Common.Controls.Status.Poll.Closed" = "Dùinte"; +"Common.Controls.Status.Poll.Vote" = "Cuir bhòt"; +"Common.Controls.Status.ShowPost" = "Seall am post"; +"Common.Controls.Status.ShowUserProfile" = "Seall pròifil a’ chleachdaiche"; +"Common.Controls.Status.Tag.Email" = "Post-d"; +"Common.Controls.Status.Tag.Emoji" = "Emoji"; +"Common.Controls.Status.Tag.Hashtag" = "Taga hais"; +"Common.Controls.Status.Tag.Link" = "Ceangal"; +"Common.Controls.Status.Tag.Mention" = "Iomradh"; +"Common.Controls.Status.Tag.Url" = "URL"; +"Common.Controls.Status.UserReblogged" = "Tha %@ ’ga bhrosnachadh"; +"Common.Controls.Status.UserRepliedTo" = "Air %@ fhreagairt"; +"Common.Controls.Tabs.Home" = "Dachaigh"; +"Common.Controls.Tabs.Notification" = "Brath"; +"Common.Controls.Tabs.Profile" = "Pròifil"; +"Common.Controls.Tabs.Search" = "Lorg"; +"Common.Controls.Timeline.Filtered" = "Criathraichte"; +"Common.Controls.Timeline.Header.BlockedWarning" = "Chan fhaic thu pròifil a’ chleachdaiche seo + mus dì-bhac iad thu."; +"Common.Controls.Timeline.Header.BlockingWarning" = "Chan fhaic thu pròifil a’ chleachdaiche seo + gus an dì-bhac thu iad. +Seo an coltas a th’ air a’ phròifil agad dhaibh-san."; +"Common.Controls.Timeline.Header.NoStatusFound" = "Cha deach post a lorg"; +"Common.Controls.Timeline.Header.SuspendedWarning" = "Chaidh an cleachdaiche seo a chur à rèim."; +"Common.Controls.Timeline.Header.UserBlockedWarning" = "Chan fhaic thu a’ phròifil aig %@ + mus dì-bhac iad thu."; +"Common.Controls.Timeline.Header.UserBlockingWarning" = "Chan fhaic thu a’ phròifil aig %@ + gus an dì-bhac thu iad. +Seo an coltas a th’ air a’ phròifil agad dhaibh-san."; +"Common.Controls.Timeline.Header.UserSuspendedWarning" = "Chaidh an cunntas aig %@ a chur à rèim."; +"Common.Controls.Timeline.Loader.LoadMissingPosts" = "Luchdaich postaichean a dhìth"; +"Common.Controls.Timeline.Loader.LoadingMissingPosts" = "A’ luchdadh nam post a tha a dhìth…"; +"Common.Controls.Timeline.Loader.ShowMoreReplies" = "Seall barrachd freagairtean"; +"Common.Controls.Timeline.Timestamp.Now" = "An-dràsta"; +"Scene.Compose.Accessibility.AppendAttachment" = "Cuir ceanglachan ris"; +"Scene.Compose.Accessibility.AppendPoll" = "Cuir cunntas-bheachd ris"; +"Scene.Compose.Accessibility.CustomEmojiPicker" = "Roghnaichear nan Emoji gnàthaichte"; +"Scene.Compose.Accessibility.DisableContentWarning" = "Cuir rabhadh susbainte à comas"; +"Scene.Compose.Accessibility.EnableContentWarning" = "Cuir rabhadh susbainte an comas"; +"Scene.Compose.Accessibility.PostVisibilityMenu" = "Clàr-taice faicsinneachd a’ phuist"; +"Scene.Compose.Accessibility.RemovePoll" = "Thoir air falbh an cunntas-bheachd"; +"Scene.Compose.Attachment.AttachmentBroken" = "Seo %@ a tha briste is cha ghabh +a luchdadh suas gu Mastodon."; +"Scene.Compose.Attachment.DescriptionPhoto" = "Mìnich an dealbh dhan fheadhainn air a bheil cion-lèirsinne…"; +"Scene.Compose.Attachment.DescriptionVideo" = "Mìnich a’ video dhan fheadhainn air a bheil cion-lèirsinne…"; +"Scene.Compose.Attachment.Photo" = "dealbh"; +"Scene.Compose.Attachment.Video" = "video"; +"Scene.Compose.AutoComplete.SpaceToAdd" = "Brùth air Space gus a chur ris"; +"Scene.Compose.ComposeAction" = "Foillsich"; +"Scene.Compose.ContentInputPlaceholder" = "Sgrìobh no cuir ann na tha air d’ aire"; +"Scene.Compose.ContentWarning.Placeholder" = "Sgrìobh rabhadh pongail an-seo…"; +"Scene.Compose.Keyboard.AppendAttachmentEntry" = "Cuir ceanglachan ris – %@"; +"Scene.Compose.Keyboard.DiscardPost" = "Tilg air falbh am post"; +"Scene.Compose.Keyboard.PublishPost" = "Foillsich am post"; +"Scene.Compose.Keyboard.SelectVisibilityEntry" = "Tagh an fhaicsinneachd – %@"; +"Scene.Compose.Keyboard.ToggleContentWarning" = "Toglaich rabhadh susbainte"; +"Scene.Compose.Keyboard.TogglePoll" = "Toglaich an cunntas-bheachd"; +"Scene.Compose.MediaSelection.Browse" = "Rùraich"; +"Scene.Compose.MediaSelection.Camera" = "Tog dealbh"; +"Scene.Compose.MediaSelection.PhotoLibrary" = "Leabhar-lann nan dealbhan"; +"Scene.Compose.Poll.DurationTime" = "Faide: %@"; +"Scene.Compose.Poll.OneDay" = "Latha"; +"Scene.Compose.Poll.OneHour" = "Uair a thìde"; +"Scene.Compose.Poll.OptionNumber" = "Roghainn %ld"; +"Scene.Compose.Poll.SevenDays" = "Seachdain"; +"Scene.Compose.Poll.SixHours" = "6 uairean a thìde"; +"Scene.Compose.Poll.ThirtyMinutes" = "Leth-uair a thìde"; +"Scene.Compose.Poll.ThreeDays" = "3 làithean"; +"Scene.Compose.ReplyingToUser" = "a’ freagairt gu %@"; +"Scene.Compose.Title.NewPost" = "Post ùr"; +"Scene.Compose.Title.NewReply" = "Freagairt ùr"; +"Scene.Compose.Visibility.Direct" = "Daoine air an dug mi iomradh a-mhàin"; +"Scene.Compose.Visibility.Private" = "Luchd-leantainn a-mhàin"; +"Scene.Compose.Visibility.Public" = "Poblach"; +"Scene.Compose.Visibility.Unlisted" = "Falaichte o liostaichean"; +"Scene.ConfirmEmail.Button.DontReceiveEmail" = "Cha d’ fhuair mi post-d a-riamh"; +"Scene.ConfirmEmail.Button.OpenEmailApp" = "Fosgail aplacaid a’ phuist-d"; +"Scene.ConfirmEmail.DontReceiveEmail.Description" = "Dearbh gu bheil an seòladh puist-d agad mar bu chòir agus nach eil dad ann am pasgan an truilleis."; +"Scene.ConfirmEmail.DontReceiveEmail.ResendEmail" = "Cuir am post-d a-rithist"; +"Scene.ConfirmEmail.DontReceiveEmail.Title" = "Thoir sùil air a’ phost-d agad"; +"Scene.ConfirmEmail.OpenEmailApp.Description" = "Tha sinn air post-d a chur thugad. Thoir sùil air pasgan an truilleis agad mura d’ fhuair thu e."; +"Scene.ConfirmEmail.OpenEmailApp.Mail" = "Post"; +"Scene.ConfirmEmail.OpenEmailApp.OpenEmailClient" = "Fosgail cliant puist-d"; +"Scene.ConfirmEmail.OpenEmailApp.Title" = "Thoir sùil air a’ bhogsa a-steach agad."; +"Scene.ConfirmEmail.Subtitle" = "Tha sinn air post-d a chur gu %@, +thoir gnogag air a’ chunntas a dhearbhadh a’ chunntais agad."; +"Scene.ConfirmEmail.Title" = "Aon rud eile."; +"Scene.Favorite.Title" = "Na h-annsachdan agad"; +"Scene.HomeTimeline.NavigationBarState.NewPosts" = "Seall na postaichean ùra"; +"Scene.HomeTimeline.NavigationBarState.Offline" = "Far loidhne"; +"Scene.HomeTimeline.NavigationBarState.Published" = "Chaidh fhoillseachadh!"; +"Scene.HomeTimeline.NavigationBarState.Publishing" = "A’ foillseachadh a’ phuist…"; +"Scene.HomeTimeline.Title" = "Dachaigh"; +"Scene.Notification.Keyobard.ShowEverything" = "Seall a h-uile càil"; +"Scene.Notification.Keyobard.ShowMentions" = "Seall na h-iomraidhean"; +"Scene.Notification.Title.Everything" = "A h-uile rud"; +"Scene.Notification.Title.Mentions" = "Iomraidhean"; +"Scene.Notification.UserFavorited Your Post" = "Is annsa le %@ am post agad"; +"Scene.Notification.UserFollowedYou" = "Tha %@ a’ leantainn ort a-nis"; +"Scene.Notification.UserMentionedYou" = "Thug %@ iomradh ort"; +"Scene.Notification.UserRebloggedYourPost" = "Bhrosnaich %@ am post agad"; +"Scene.Notification.UserRequestedToFollowYou" = "Dh’iarr %@ leantainn ort"; +"Scene.Notification.UserYourPollHasEnded" = "Crìoch cunntais-bheachd aig %@"; +"Scene.Preview.Keyboard.ClosePreview" = "Dùin an ro-shealladh"; +"Scene.Preview.Keyboard.ShowNext" = "Air adhart"; +"Scene.Preview.Keyboard.ShowPrevious" = "Air ais"; +"Scene.Profile.Dashboard.Followers" = "luchd-leantainn"; +"Scene.Profile.Dashboard.Following" = "a’ leantainn"; +"Scene.Profile.Dashboard.Posts" = "postaichean"; +"Scene.Profile.Fields.AddRow" = "Cuir ràgh ris"; +"Scene.Profile.Fields.Placeholder.Content" = "Susbaint"; +"Scene.Profile.Fields.Placeholder.Label" = "Leubail"; +"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUsre.Message" = "Dearbh dì-bhacadh %@"; +"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUsre.Title" = "Dì-bhac an cunntas"; +"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Dearbh dì-mhùchadh %@"; +"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Title" = "Dì-mhùch an cunntas"; +"Scene.Profile.SegmentedControl.Media" = "Meadhanan"; +"Scene.Profile.SegmentedControl.Posts" = "Postaichean"; +"Scene.Profile.SegmentedControl.Replies" = "Freagairtean"; +"Scene.Register.Error.Item.Agreement" = "Aonta"; +"Scene.Register.Error.Item.Email" = "Post-d"; +"Scene.Register.Error.Item.Locale" = "Sgeama ionadail"; +"Scene.Register.Error.Item.Password" = "Facal-faire"; +"Scene.Register.Error.Item.Reason" = "Adhbhar"; +"Scene.Register.Error.Item.Username" = "Ainm-cleachdaiche"; +"Scene.Register.Error.Reason.Accepted" = "Feumaidh tu aontachadh ri %@"; +"Scene.Register.Error.Reason.Blank" = "Tha %@ riatanach"; +"Scene.Register.Error.Reason.Blocked" = "Tha solaraiche puist-d nach eil ceadaichte am broinn %@"; +"Scene.Register.Error.Reason.Inclusion" = "Cha chuir sinn taic ri luach %@"; +"Scene.Register.Error.Reason.Invalid" = "Chan eil %@ dligheach"; +"Scene.Register.Error.Reason.Reserved" = "’S e facal glèidhte a th’ ann an %@"; +"Scene.Register.Error.Reason.Taken" = "Tha %@ ’ga chleachdadh mu thràth"; +"Scene.Register.Error.Reason.TooLong" = "Tha %@ ro fhada"; +"Scene.Register.Error.Reason.TooShort" = "Tha %@ ro ghoirid"; +"Scene.Register.Error.Reason.Unreachable" = "Tha coltas nach eil %@ ann"; +"Scene.Register.Error.Special.EmailInvalid" = "Chan e seòladh puist-d dligheach a tha seo"; +"Scene.Register.Error.Special.PasswordTooShort" = "Tha am facal-faire ro ghoirid (feumaidh 8 caractaran a bhith ann air a char as giorra)"; +"Scene.Register.Error.Special.UsernameInvalid" = "Chan fhaod ach litrichean gun stràcan is fo-loidhnichean a bhith am broinn ainm-cleachdaiche"; +"Scene.Register.Error.Special.UsernameTooLong" = "Tha an t-ainm-cleachdaiche ro fhada (chan fhaod e a bhith nas fhaide na 30 caractar)"; +"Scene.Register.Input.Avatar.Delete" = "Sguab às"; +"Scene.Register.Input.DisplayName.Placeholder" = "ainm-taisbeanaidh"; +"Scene.Register.Input.Email.Placeholder" = "post-d"; +"Scene.Register.Input.Invite.RegistrationUserInviteRequest" = "Carson a bu mhiann leat ballrachd fhaighinn?"; +"Scene.Register.Input.Password.Hint" = "Feumaidh ochd caractaran a bhith san fhacal-fhaire agad air a char as giorra"; +"Scene.Register.Input.Password.Placeholder" = "facal-faire"; +"Scene.Register.Input.Username.DuplicatePrompt" = "Tha an t-ainm-cleachdaiche seo aig cuideigin eile."; +"Scene.Register.Input.Username.Placeholder" = "ainm-cleachdaiche"; +"Scene.Register.Title" = "Innis dhuinn mu do dhèidhinn."; +"Scene.Report.Content1" = "A bheil post sam bith eile ann a bu mhiann leat cur ris a’ ghearan?"; +"Scene.Report.Content2" = "A bheil rud sam bith ann a bu mhiann leat innse dha na maoir mun ghearan seo?"; +"Scene.Report.Send" = "Cuir an gearan"; +"Scene.Report.SkipToSend" = "Cuir gun bheachd ris"; +"Scene.Report.Step1" = "Ceum 1 à 2"; +"Scene.Report.Step2" = "Ceum 2 à 2"; +"Scene.Report.TextPlaceholder" = "Sgrìobh no cuir ann beachdan a bharrachd"; +"Scene.Report.Title" = "Dèan gearan mu %@"; +"Scene.Search.Recommend.Accounts.Description" = "Saoil am bu toigh leat leantainn air na cunntasan seo?"; +"Scene.Search.Recommend.Accounts.Follow" = "Lean air"; +"Scene.Search.Recommend.Accounts.Title" = "Cunntasan a chòrdas riut ma dh’fhaoidte"; +"Scene.Search.Recommend.ButtonText" = "Seall na h-uile"; +"Scene.Search.Recommend.HashTag.Description" = "Tagaichean hais le aire orra an-dràsta"; +"Scene.Search.Recommend.HashTag.PeopleTalking" = "Tha %@ a’ bruidhinn"; +"Scene.Search.Recommend.HashTag.Title" = "A’ treandadh air Mastodon"; +"Scene.Search.SearchBar.Cancel" = "Sguir dheth"; +"Scene.Search.SearchBar.Placeholder" = "Lorg sna tagaichean hais is cleachdaichean"; +"Scene.Search.Searching.Clear" = "Falamhaich"; +"Scene.Search.Searching.EmptyState.NoResults" = "Gun toradh"; +"Scene.Search.Searching.RecentSearch" = "Na lorg thu o chionn goirid"; +"Scene.Search.Searching.Segment.All" = "Na h-uile"; +"Scene.Search.Searching.Segment.Hashtags" = "Tagaichean hais"; +"Scene.Search.Searching.Segment.People" = "Daoine"; +"Scene.Search.Searching.Segment.Posts" = "Postaichean"; +"Scene.Search.Title" = "Lorg"; +"Scene.ServerPicker.Button.Category.Academia" = "saoghal nan sgoilear"; +"Scene.ServerPicker.Button.Category.Activism" = "iomairteachd"; +"Scene.ServerPicker.Button.Category.All" = "Na h-uile"; +"Scene.ServerPicker.Button.Category.AllAccessiblityDescription" = "Roinn-seòrsa: Na h-uile"; +"Scene.ServerPicker.Button.Category.Art" = "ealain"; +"Scene.ServerPicker.Button.Category.Food" = "biadh"; +"Scene.ServerPicker.Button.Category.Furry" = "furry"; +"Scene.ServerPicker.Button.Category.Games" = "geamannan"; +"Scene.ServerPicker.Button.Category.General" = "coitcheann"; +"Scene.ServerPicker.Button.Category.Journalism" = "naidheachdas"; +"Scene.ServerPicker.Button.Category.Lgbt" = "LGBT"; +"Scene.ServerPicker.Button.Category.Music" = "ceòl"; +"Scene.ServerPicker.Button.Category.Regional" = "ionadail"; +"Scene.ServerPicker.Button.Category.Tech" = "teicneolas"; +"Scene.ServerPicker.Button.SeeLess" = "Seall nas lugha"; +"Scene.ServerPicker.Button.SeeMore" = "Seall a bharrachd"; +"Scene.ServerPicker.EmptyState.BadNetwork" = "Chaidh rudeigin ceàrr le luchdadh an dàta. Thoir sùil air a’ cheangal agad ris an eadar-lìon."; +"Scene.ServerPicker.EmptyState.FindingServers" = "A’ lorg nam frithealaichean ri am faighinn…"; +"Scene.ServerPicker.EmptyState.NoResults" = "Gun toradh"; +"Scene.ServerPicker.Input.Placeholder" = "Lorg frithealaiche no gabh pàirt san fhear agad fhèin…"; +"Scene.ServerPicker.Label.Category" = "ROINN-SEÒRSA"; +"Scene.ServerPicker.Label.Language" = "CÀNAN"; +"Scene.ServerPicker.Label.Users" = "CLEACHDAICHEAN"; +"Scene.ServerPicker.Title" = "Tagh frithealaiche sam bith."; +"Scene.ServerRules.Button.Confirm" = "Gabhaidh mi ris"; +"Scene.ServerRules.PrivacyPolicy" = "poileasaidh prìobhaideachd"; +"Scene.ServerRules.Prompt" = "Ma leanas tu air adhart, bidh thu fo bhuaidh teirmichean seirbheise is poileasaidh prìobhaideachd %@."; +"Scene.ServerRules.Subtitle" = "Shuidhich rianairean %@ na riaghailtean seo."; +"Scene.ServerRules.TermsOfService" = "teirmichean na seirbheise"; +"Scene.ServerRules.Title" = "Riaghailt bhunasach no dhà."; +"Scene.Settings.Footer.MastodonDescription" = "’S e bathar-bog le bun-tùs fosgailte a th’ ann am Mastodon. ’S urrainn dhut aithris a dhèanamh air duilgheadasan air GitHub fo %@ (%@)"; +"Scene.Settings.Keyboard.CloseSettingsWindow" = "Dùin uinneag nan roghainnean"; +"Scene.Settings.Section.Appearance.Automatic" = "Fèin-obrachail"; +"Scene.Settings.Section.Appearance.Dark" = "Dorcha an-còmhnaidh"; +"Scene.Settings.Section.Appearance.Light" = "Soilleir an-còmhnaidh"; +"Scene.Settings.Section.Appearance.Title" = "Coltas"; +"Scene.Settings.Section.BoringZone.AccountSettings" = "Roghainnean a’ chunntais"; +"Scene.Settings.Section.BoringZone.Privacy" = "Am poileasaidh prìobhaideachd"; +"Scene.Settings.Section.BoringZone.Terms" = "Teirmichean na seirbheise"; +"Scene.Settings.Section.BoringZone.Title" = "An earrann ràsanach"; +"Scene.Settings.Section.Notifications.Boosts" = "Nuair a bhrosnaicheas iad post uam"; +"Scene.Settings.Section.Notifications.Favorites" = "Nuair as annsa leotha am post agam"; +"Scene.Settings.Section.Notifications.Follows" = "Nuair a leanas iad orm"; +"Scene.Settings.Section.Notifications.Mentions" = "Nuair a bheir iad iomradh orm"; +"Scene.Settings.Section.Notifications.Title" = "Brathan"; +"Scene.Settings.Section.Notifications.Trigger.Anyone" = "Airson duine sam bith, cuir brath thugam"; +"Scene.Settings.Section.Notifications.Trigger.Follow" = "Airson daoine air a leanas mi, cuir brath thugam"; +"Scene.Settings.Section.Notifications.Trigger.Follower" = "Airson luchd-leantainn, cuir brath thugam"; +"Scene.Settings.Section.Notifications.Trigger.Noone" = "Na cuir brath thugam idir"; +"Scene.Settings.Section.Notifications.Trigger.Title" = " "; +"Scene.Settings.Section.Preference.DisableAvatarAnimation" = "Cuir beothachadh nan avataran à comas"; +"Scene.Settings.Section.Preference.DisableEmojiAnimation" = "Cuir beothachadh nan Emojis à comas"; +"Scene.Settings.Section.Preference.Title" = "Roghainnean"; +"Scene.Settings.Section.Preference.TrueBlackDarkMode" = "Modh dubh dorcha"; +"Scene.Settings.Section.Preference.UsingDefaultBrowser" = "Cleachd am brabhsair bunaiteach airson ceanglaichean fhosgladh"; +"Scene.Settings.Section.SpicyZone.Clear" = "Falamhaich tasgadan nam meadhanan"; +"Scene.Settings.Section.SpicyZone.Signout" = "Clàraich a-mach"; +"Scene.Settings.Section.SpicyZone.Title" = "Gnìomhan"; +"Scene.Settings.Title" = "Roghainnean"; +"Scene.SuggestionAccount.FollowExplain" = "Nuair a leanas tu air cuideigin, chì thu na puist aca air inbhir na dachaigh agad."; +"Scene.SuggestionAccount.Title" = "Lorg daoine a leanas tu"; +"Scene.Thread.BackTitle" = "Post"; +"Scene.Thread.Title" = "Post le %@"; +"Scene.Welcome.Slogan" = "A’ cur nan lìonraidhean sòisealta +’nad làmhan fhèin."; \ No newline at end of file diff --git a/Mastodon/Resources/gd-GB.lproj/Localizable.stringsdict b/Mastodon/Resources/gd-GB.lproj/Localizable.stringsdict new file mode 100644 index 000000000..63a998c6e --- /dev/null +++ b/Mastodon/Resources/gd-GB.lproj/Localizable.stringsdict @@ -0,0 +1,466 @@ + + + + + a11y.plural.count.input_limit_exceeds + + NSStringLocalizedFormatKey + Tha d’ ion-chur %#@character_count@ ro fhada + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + %ld charactar + two + %ld charactar + few + %ld caractaran + other + %ld caractar + + + a11y.plural.count.input_limit_remains + + NSStringLocalizedFormatKey + Tha %#@character_count@ air fhàgail dhut + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + %ld charactar + two + %ld charactar + few + %ld caractaran + other + %ld caractar + + + plural.count.metric_formatted.post + + NSStringLocalizedFormatKey + %@ %#@post_count@ + post_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + phost + two + phost + few + postaichean + other + post + + + plural.count.post + + NSStringLocalizedFormatKey + %#@post_count@ + post_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + %ld phost + two + %ld phost + few + %ld postaichean + other + %ld post + + + plural.count.favorite + + NSStringLocalizedFormatKey + %#@favorite_count@ + favorite_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + %ld annsachd + two + %ld annsachd + few + %ld annsachdan + other + %ld annsachd + + + plural.count.reblog + + NSStringLocalizedFormatKey + %#@reblog_count@ + reblog_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + %ld bhrosnachadh + two + %ld bhrosnachadh + few + %ld brosnachaidhean + other + %ld brosnachadh + + + plural.count.vote + + NSStringLocalizedFormatKey + %#@vote_count@ + vote_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + %ld bhòt + two + %ld bhòt + few + %ld bhòtaichean + other + %ld bhòt + + + plural.count.voter + + NSStringLocalizedFormatKey + %#@voter_count@ + voter_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + %ld neach-bhòtaidh + two + %ld luchd-bhòtaidh + few + %ld luchd-bhòtaidh + other + %ld luchd-bhòtaidh + + + plural.people_talking + + NSStringLocalizedFormatKey + %#@count_people_talking@ + count_people_talking + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + %ld a’ bruidhinn + two + %ld a’ bruidhinn + few + %ld a’ bruidhinn + other + %ld a’ bruidhinn + + + plural.count.following + + NSStringLocalizedFormatKey + %#@count_following@ + count_following + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + A’ leantainn %ld + two + A’ leantainn %ld + few + A’ leantainn %ld + other + A’ leantainn %ld + + + plural.count.follower + + NSStringLocalizedFormatKey + %#@count_follower@ + count_follower + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + Tha %ld a’ leantainn air + two + Tha %ld a’ leantainn air + few + Tha %ld a’ leantainn air + other + Tha %ld a’ leantainn air + + + date.year.left + + NSStringLocalizedFormatKey + %#@count_year_left@ + count_year_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + %ld bhliadhna air fhàgail + two + %ld bhliadhna air fhàgail + few + %ld bliadhnaichean air fhàgail + other + %ld bliadhna air fhàgail + + + date.month.left + + NSStringLocalizedFormatKey + %#@count_month_left@ + count_month_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + %ld mhìos air fhàgail + two + %ld mhìos air fhàgail + few + %ld mìosan air fhàgail + other + %ld mìos air fhàgail + + + date.day.left + + NSStringLocalizedFormatKey + %#@count_day_left@ + count_day_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + %ld latha air fhàgail + two + %ld latha air fhàgail + few + %ld làithean air fhàgail + other + %ld latha air fhàgail + + + date.hour.left + + NSStringLocalizedFormatKey + %#@count_hour_left@ + count_hour_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + %ld uair a thìde air fhàgail + two + %ld uair a thìde air fhàgail + few + %ld uairean a thìde air fhàgail + other + %ld uair a thìde air fhàgail + + + date.minute.left + + NSStringLocalizedFormatKey + %#@count_minute_left@ + count_minute_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + %ld mhionaid air fhàgail + two + %ld mhionaid air fhàgail + few + %ld mionaidean air fhàgail + other + %ld mionaid air fhàgail + + + date.second.left + + NSStringLocalizedFormatKey + %#@count_second_left@ + count_second_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + %ld diog air fhàgail + two + %ld dhiog air fhàgail + few + %ld diogan air fhàgail + other + %ld diog air fhàgail + + + date.year.ago.abbr + + NSStringLocalizedFormatKey + %#@count_year_ago_abbr@ + count_year_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + %ld bhl. air ais + two + %ld bhl. air ais + few + %ld bl. air ais + other + %ld bl. air ais + + + date.month.ago.abbr + + NSStringLocalizedFormatKey + %#@count_month_ago_abbr@ + count_month_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + %ld mhì. air ais + two + %ld mhì. air ais + few + %ld mì. air ais + other + %ld mì. air ais + + + date.day.ago.abbr + + NSStringLocalizedFormatKey + %#@count_day_ago_abbr@ + count_day_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + %ld là air ais + two + %ld là air ais + few + %ld là. air ais + other + %ld là air ais + + + date.hour.ago.abbr + + NSStringLocalizedFormatKey + %#@count_hour_ago_abbr@ + count_hour_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + %ldu air ais + two + %ldu air ais + few + %ldu air ais + other + %ldu air ais + + + date.minute.ago.abbr + + NSStringLocalizedFormatKey + %#@count_minute_ago_abbr@ + count_minute_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + %ldm air ais + two + %ldm air ais + few + %ldm air ais + other + %ldm air ais + + + date.second.ago.abbr + + NSStringLocalizedFormatKey + %#@count_second_ago_abbr@ + count_second_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + %ldd air ais + two + %ldd air ais + few + %ldd air ais + other + %ldd air ais + + + + diff --git a/Mastodon/Resources/ru.lproj/InfoPlist.strings b/Mastodon/Resources/ru.lproj/InfoPlist.strings new file mode 100644 index 000000000..710865573 --- /dev/null +++ b/Mastodon/Resources/ru.lproj/InfoPlist.strings @@ -0,0 +1,4 @@ +"NSCameraUsageDescription" = "Used to take photo for post status"; +"NSPhotoLibraryAddUsageDescription" = "Used to save photo into the Photo Library"; +"NewPostShortcutItemTitle" = "New Post"; +"SearchShortcutItemTitle" = "Search"; \ No newline at end of file diff --git a/Mastodon/Resources/ru.lproj/Localizable.strings b/Mastodon/Resources/ru.lproj/Localizable.strings new file mode 100644 index 000000000..4c0e5eafa --- /dev/null +++ b/Mastodon/Resources/ru.lproj/Localizable.strings @@ -0,0 +1,350 @@ +"Common.Alerts.BlockDomain.BlockEntireDomain" = "Заблокировать узел"; +"Common.Alerts.BlockDomain.Title" = "Вы очень точно уверены, что хотите полностью заблокировать %@? В большинстве случаев пары блокировок и добавлений в игнорируемые вполне достаточно. Вы перестанете видеть содержимое с этого узла и все ваши подписчики оттуда будут убраны."; +"Common.Alerts.CleanCache.Message" = "Успешно очищено %@ кэша."; +"Common.Alerts.CleanCache.Title" = "Очистка кэша"; +"Common.Alerts.Common.PleaseTryAgain" = "Пожалуйста, попробуйте ещё раз."; +"Common.Alerts.Common.PleaseTryAgainLater" = "Пожалуйста, попробуйте позже."; +"Common.Alerts.DeletePost.Delete" = "Удалить"; +"Common.Alerts.DeletePost.Title" = "Вы уверены, что хотите удалить этот пост?"; +"Common.Alerts.DiscardPostContent.Message" = "Вы действительно хотите удалить набранное содержимое поста?"; +"Common.Alerts.DiscardPostContent.Title" = "Удалить черновик"; +"Common.Alerts.EditProfileFailure.Message" = "Не удаётся изменить профиль. Пожалуйста, попробуйте ещё раз."; +"Common.Alerts.EditProfileFailure.Title" = "Ошибка изменения профиля"; +"Common.Alerts.PublishPostFailure.AttachmentsMessage.MoreThanOneVideo" = "Невозможно прикрепить более одного видео."; +"Common.Alerts.PublishPostFailure.AttachmentsMessage.VideoAttachWithPhoto" = "Невозможно прикрепить видео к посту, содержащему изображения."; +"Common.Alerts.PublishPostFailure.Message" = "Не удалось опубликовать пост. +Пожалуйста, проверьте подключение к интернету."; +"Common.Alerts.PublishPostFailure.Title" = "Ошибка публикации"; +"Common.Alerts.SavePhotoFailure.Message" = "Пожалуйста, предоставьте доступ к библиотеке фотографий, чтобы сохранить это изображение."; +"Common.Alerts.SavePhotoFailure.Title" = "Ошибка сохранения изображения"; +"Common.Alerts.ServerError.Title" = "Ошибка сервера"; +"Common.Alerts.SignOut.Confirm" = "Выйти"; +"Common.Alerts.SignOut.Message" = "Вы действительно хотите выйти из учётной записи?"; +"Common.Alerts.SignOut.Title" = "Выход"; +"Common.Alerts.SignUpFailure.Title" = "Ошибка регистрации"; +"Common.Alerts.VoteFailure.PollEnded" = "Опрос уже завершился"; +"Common.Alerts.VoteFailure.Title" = "Не удалось проголосовать"; +"Common.Controls.Actions.Add" = "Добавить"; +"Common.Controls.Actions.Back" = "Назад"; +"Common.Controls.Actions.BlockDomain" = "Заблокировать %@"; +"Common.Controls.Actions.Cancel" = "Отмена"; +"Common.Controls.Actions.Confirm" = "Подтвердить"; +"Common.Controls.Actions.Continue" = "Продолжить"; +"Common.Controls.Actions.CopyPhoto" = "Скопировать изображение"; +"Common.Controls.Actions.Delete" = "Удалить"; +"Common.Controls.Actions.Discard" = "Отмена"; +"Common.Controls.Actions.Done" = "Готово"; +"Common.Controls.Actions.Edit" = "Изменить"; +"Common.Controls.Actions.FindPeople" = "Подпишитесь на людей"; +"Common.Controls.Actions.ManuallySearch" = "Найти вручную"; +"Common.Controls.Actions.Next" = "Далее"; +"Common.Controls.Actions.Ok" = "ОК"; +"Common.Controls.Actions.Open" = "Открыть"; +"Common.Controls.Actions.OpenInSafari" = "Открыть в Safari"; +"Common.Controls.Actions.Preview" = "Предпросмотр"; +"Common.Controls.Actions.Previous" = "Прошлые"; +"Common.Controls.Actions.Remove" = "Убрать"; +"Common.Controls.Actions.Reply" = "Ответить"; +"Common.Controls.Actions.ReportUser" = "Пожаловаться на %@"; +"Common.Controls.Actions.Save" = "Сохранить"; +"Common.Controls.Actions.SavePhoto" = "Сохранить изображение"; +"Common.Controls.Actions.SeeMore" = "Ещё"; +"Common.Controls.Actions.Settings" = "Настройки"; +"Common.Controls.Actions.Share" = "Поделиться"; +"Common.Controls.Actions.SharePost" = "Поделиться постом"; +"Common.Controls.Actions.ShareUser" = "Поделиться %@"; +"Common.Controls.Actions.SignIn" = "Войти"; +"Common.Controls.Actions.SignUp" = "Зарегистрироваться"; +"Common.Controls.Actions.Skip" = "Пропустить"; +"Common.Controls.Actions.TakePhoto" = "Сделать фото"; +"Common.Controls.Actions.TryAgain" = "Попробовать снова"; +"Common.Controls.Actions.UnblockDomain" = "Разблокировать %@"; +"Common.Controls.Friendship.Block" = "Заблокировать"; +"Common.Controls.Friendship.BlockDomain" = "Заблокировать %@"; +"Common.Controls.Friendship.BlockUser" = "Заблокировать %@"; +"Common.Controls.Friendship.Blocked" = "В заблокированных"; +"Common.Controls.Friendship.EditInfo" = "Изменить"; +"Common.Controls.Friendship.Follow" = "Подписаться"; +"Common.Controls.Friendship.Following" = "В подписках"; +"Common.Controls.Friendship.Mute" = "Игнорировать"; +"Common.Controls.Friendship.MuteUser" = "Добавить %@ в игнорируемые"; +"Common.Controls.Friendship.Muted" = "В игнорируемых"; +"Common.Controls.Friendship.Pending" = "Отправлен"; +"Common.Controls.Friendship.Request" = "Отправить запрос"; +"Common.Controls.Friendship.Unblock" = "Разблокировать"; +"Common.Controls.Friendship.UnblockUser" = "Разблокировать %@"; +"Common.Controls.Friendship.Unmute" = "Убрать из игнорируемых"; +"Common.Controls.Friendship.UnmuteUser" = "Убрать %@ из игнорируемых"; +"Common.Controls.Keyboard.Common.ComposeNewPost" = "Создать новый пост"; +"Common.Controls.Keyboard.Common.OpenSettings" = "Открыть настройки"; +"Common.Controls.Keyboard.Common.ShowFavorites" = "Показать избранные"; +"Common.Controls.Keyboard.Common.SwitchToTab" = "Переключиться на %@"; +"Common.Controls.Keyboard.SegmentedControl.NextSection" = "Следующий раздел"; +"Common.Controls.Keyboard.SegmentedControl.PreviousSection" = "Предыдущий раздел"; +"Common.Controls.Keyboard.Timeline.NextStatus" = "Следующий пост"; +"Common.Controls.Keyboard.Timeline.OpenAuthorProfile" = "Открыть профиль автора"; +"Common.Controls.Keyboard.Timeline.OpenRebloggerProfile" = "Открыть профиль продвинувшего"; +"Common.Controls.Keyboard.Timeline.OpenStatus" = "Открыть пост"; +"Common.Controls.Keyboard.Timeline.PreviewImage" = "Предпросмотр изображения"; +"Common.Controls.Keyboard.Timeline.PreviousStatus" = "Прошлый пост"; +"Common.Controls.Keyboard.Timeline.ReplyStatus" = "Ответить на пост"; +"Common.Controls.Keyboard.Timeline.ToggleContentWarning" = "Раскрыть или спрятать содержимое"; +"Common.Controls.Keyboard.Timeline.ToggleFavorite" = "Добавить или убрать из избранного"; +"Common.Controls.Keyboard.Timeline.ToggleReblog" = "Продвинуть или убрать продвижение"; +"Common.Controls.Status.Actions.Favorite" = "Добавить в избранное"; +"Common.Controls.Status.Actions.Menu" = "Меню"; +"Common.Controls.Status.Actions.Reblog" = "Продвинуть"; +"Common.Controls.Status.Actions.Reply" = "Ответить"; +"Common.Controls.Status.Actions.Unfavorite" = "Убрать из избранного"; +"Common.Controls.Status.Actions.Unreblog" = "Убрать продвижение"; +"Common.Controls.Status.ContentWarning" = "Предупреждение о содержании"; +"Common.Controls.Status.MediaContentWarning" = "Нажмите в любом месте, чтобы показать"; +"Common.Controls.Status.Poll.Closed" = "Завершён"; +"Common.Controls.Status.Poll.Vote" = "Проголосовать"; +"Common.Controls.Status.ShowPost" = "Показать пост"; +"Common.Controls.Status.ShowUserProfile" = "Показать профиль пользователя"; +"Common.Controls.Status.Tag.Email" = "E-mail"; +"Common.Controls.Status.Tag.Emoji" = "Эмодзи"; +"Common.Controls.Status.Tag.Hashtag" = "Хэштег"; +"Common.Controls.Status.Tag.Link" = "Ссылка"; +"Common.Controls.Status.Tag.Mention" = "Упоминание"; +"Common.Controls.Status.Tag.Url" = "Ссылка"; +"Common.Controls.Status.UserReblogged" = "%@ продвинул(а)"; +"Common.Controls.Status.UserRepliedTo" = "Ответил(а) %@"; +"Common.Controls.Tabs.Home" = "Главная"; +"Common.Controls.Tabs.Notification" = "Уведомление"; +"Common.Controls.Tabs.Profile" = "Профиль"; +"Common.Controls.Tabs.Search" = "Поиск"; +"Common.Controls.Timeline.Filtered" = "Отфильтровано"; +"Common.Controls.Timeline.Header.BlockedWarning" = "Вы не можете просматривать +профиль этого пользователя +пока он не разблокирует вас."; +"Common.Controls.Timeline.Header.BlockingWarning" = "Вы не можете просматривать +профиль этого пользователя +пока не разблокируете его. + +Примерно так выглядит +ваш профиль для него."; +"Common.Controls.Timeline.Header.NoStatusFound" = "Пост не найден"; +"Common.Controls.Timeline.Header.SuspendedWarning" = "Этот пользователь был заморожен."; +"Common.Controls.Timeline.Header.UserBlockedWarning" = "Вы не можете просматривать +профиль %@ +пока он(а) не разблокирует вас."; +"Common.Controls.Timeline.Header.UserBlockingWarning" = "Вы не можете просматривать +профиль %@ +пока не разблокируете его/её. + +Примерно так выглядит +ваш профиль для него/неё."; +"Common.Controls.Timeline.Header.UserSuspendedWarning" = "Учётная запись %@ заморожена."; +"Common.Controls.Timeline.Loader.LoadMissingPosts" = "Загрузить недостающие посты"; +"Common.Controls.Timeline.Loader.LoadingMissingPosts" = "Загрузка недостающих постов..."; +"Common.Controls.Timeline.Loader.ShowMoreReplies" = "Показать больше ответов"; +"Common.Controls.Timeline.Timestamp.Now" = "Только что"; +"Scene.Compose.Accessibility.AppendAttachment" = "Прикрепить файл"; +"Scene.Compose.Accessibility.AppendPoll" = "Добавить опрос"; +"Scene.Compose.Accessibility.CustomEmojiPicker" = "Меню пользовательских эмодзи"; +"Scene.Compose.Accessibility.DisableContentWarning" = "Убрать предупреждение о содержании"; +"Scene.Compose.Accessibility.EnableContentWarning" = "Добавить предупреждение о содержании"; +"Scene.Compose.Accessibility.PostVisibilityMenu" = "Меню видимости поста"; +"Scene.Compose.Accessibility.RemovePoll" = "Убрать опрос"; +"Scene.Compose.Attachment.AttachmentBroken" = "Это %@ повреждено и не может +быть отправлено в Mastodon."; +"Scene.Compose.Attachment.DescriptionPhoto" = "Опишите фото для людей с нарушениями зрения..."; +"Scene.Compose.Attachment.DescriptionVideo" = "Опишите видео для людей с нарушениями зрения..."; +"Scene.Compose.Attachment.Photo" = "изображение"; +"Scene.Compose.Attachment.Video" = "видео"; +"Scene.Compose.AutoComplete.SpaceToAdd" = "Пробел, чтобы добавить"; +"Scene.Compose.ComposeAction" = "Опубликовать"; +"Scene.Compose.ContentInputPlaceholder" = "Напишите то, о чём думаете"; +"Scene.Compose.ContentWarning.Placeholder" = "Напишите предупреждение здесь..."; +"Scene.Compose.Keyboard.AppendAttachmentEntry" = "Прикрепить файл — %@"; +"Scene.Compose.Keyboard.DiscardPost" = "Удалить пост"; +"Scene.Compose.Keyboard.PublishPost" = "Опубликовать пост"; +"Scene.Compose.Keyboard.SelectVisibilityEntry" = "Выбрать видимость — %@"; +"Scene.Compose.Keyboard.ToggleContentWarning" = "Добавить/убрать предупреждение о содержании"; +"Scene.Compose.Keyboard.TogglePoll" = "Добавить/убрать опрос"; +"Scene.Compose.MediaSelection.Browse" = "Выбрать"; +"Scene.Compose.MediaSelection.Camera" = "Сделать фото"; +"Scene.Compose.MediaSelection.PhotoLibrary" = "Медиатека"; +"Scene.Compose.Poll.DurationTime" = "Продолжительность: %@"; +"Scene.Compose.Poll.OneDay" = "1 день"; +"Scene.Compose.Poll.OneHour" = "1 час"; +"Scene.Compose.Poll.OptionNumber" = "Вариант %ld"; +"Scene.Compose.Poll.SevenDays" = "7 дней"; +"Scene.Compose.Poll.SixHours" = "6 часов"; +"Scene.Compose.Poll.ThirtyMinutes" = "30 минут"; +"Scene.Compose.Poll.ThreeDays" = "3 дня"; +"Scene.Compose.ReplyingToUser" = "ответ %@"; +"Scene.Compose.Title.NewPost" = "Новый пост"; +"Scene.Compose.Title.NewReply" = "Новый ответ"; +"Scene.Compose.Visibility.Direct" = "Только для упомянутых людей"; +"Scene.Compose.Visibility.Private" = "Для подписчиков"; +"Scene.Compose.Visibility.Public" = "Публичный"; +"Scene.Compose.Visibility.Unlisted" = "Скрытый"; +"Scene.ConfirmEmail.Button.DontReceiveEmail" = "Я не получил письма"; +"Scene.ConfirmEmail.Button.OpenEmailApp" = "Открыть приложение почты"; +"Scene.ConfirmEmail.DontReceiveEmail.Description" = "Проверьте, правильно ли указан ваш e-mail адрес, а также папку «спам», если ещё не сделали этого."; +"Scene.ConfirmEmail.DontReceiveEmail.ResendEmail" = "Отправить ещё раз"; +"Scene.ConfirmEmail.DontReceiveEmail.Title" = "Проверьте свой e-mail адрес"; +"Scene.ConfirmEmail.OpenEmailApp.Description" = "Мы только что отправили вам e-mail. Проверьте спам, если не нашли его."; +"Scene.ConfirmEmail.OpenEmailApp.Mail" = "Почта"; +"Scene.ConfirmEmail.OpenEmailApp.OpenEmailClient" = "Открыть почтовый клиент"; +"Scene.ConfirmEmail.OpenEmailApp.Title" = "Проверьте вашу почту."; +"Scene.ConfirmEmail.Subtitle" = "Мы только что отправили письмо на +%@. +Нажмите на ссылку в нём, чтобы +подтвердить свою учётную запись."; +"Scene.ConfirmEmail.Title" = "И ещё кое-что."; +"Scene.Favorite.Title" = "Ваше избранное"; +"Scene.HomeTimeline.NavigationBarState.NewPosts" = "Показать новые"; +"Scene.HomeTimeline.NavigationBarState.Offline" = "Не в сети"; +"Scene.HomeTimeline.NavigationBarState.Published" = "Опубликовано!"; +"Scene.HomeTimeline.NavigationBarState.Publishing" = "Публикуем пост..."; +"Scene.HomeTimeline.Title" = "Главная"; +"Scene.Notification.Keyobard.ShowEverything" = "Показать все"; +"Scene.Notification.Keyobard.ShowMentions" = "Показать упоминания"; +"Scene.Notification.Title.Everything" = "Все"; +"Scene.Notification.Title.Mentions" = "Упоминания"; +"Scene.Notification.UserFavorited Your Post" = "%@ favorited your post"; +"Scene.Notification.UserFollowedYou" = "%@ подписался (-ась)"; +"Scene.Notification.UserMentionedYou" = "%@ упомянул вас"; +"Scene.Notification.UserRebloggedYourPost" = "%@ reblogged your post"; +"Scene.Notification.UserRequestedToFollowYou" = "%@ запрашивает подписку"; +"Scene.Notification.UserYourPollHasEnded" = "%@ Your poll has ended"; +"Scene.Preview.Keyboard.ClosePreview" = "Закрыть предпросмотр"; +"Scene.Preview.Keyboard.ShowNext" = "Следующее изображение"; +"Scene.Preview.Keyboard.ShowPrevious" = "Предыдущее изображение"; +"Scene.Profile.Dashboard.Followers" = "подписчики"; +"Scene.Profile.Dashboard.Following" = "подписки"; +"Scene.Profile.Dashboard.Posts" = "посты"; +"Scene.Profile.Fields.AddRow" = "Добавить строку"; +"Scene.Profile.Fields.Placeholder.Content" = "Содержимое"; +"Scene.Profile.Fields.Placeholder.Label" = "Ярлык"; +"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUsre.Message" = "Убрать %@ из списка блокировки?"; +"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUsre.Title" = "Разблокировать"; +"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Убрать %@ из игнорируемых?"; +"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Title" = "Убрать из игнорируемых"; +"Scene.Profile.SegmentedControl.Media" = "Медиа"; +"Scene.Profile.SegmentedControl.Posts" = "Посты"; +"Scene.Profile.SegmentedControl.Replies" = "Ответы"; +"Scene.Register.Error.Item.Agreement" = "Соглашение"; +"Scene.Register.Error.Item.Email" = "E-mail"; +"Scene.Register.Error.Item.Locale" = "Язык"; +"Scene.Register.Error.Item.Password" = "Пароль"; +"Scene.Register.Error.Item.Reason" = "Причина"; +"Scene.Register.Error.Item.Username" = "Имя пользователя"; +"Scene.Register.Error.Reason.Accepted" = "%@ должно быть принято"; +"Scene.Register.Error.Reason.Blank" = "Поле «%@» обязательно"; +"Scene.Register.Error.Reason.Blocked" = "%@ содержит запрещённый e-mail сервис"; +"Scene.Register.Error.Reason.Inclusion" = "Неподдерживаемое значение «%@»"; +"Scene.Register.Error.Reason.Invalid" = "Недопустимое значение поля «%@»"; +"Scene.Register.Error.Reason.Reserved" = "%@ является зарезервированным ключевым словом"; +"Scene.Register.Error.Reason.Taken" = "%@ уже используется"; +"Scene.Register.Error.Reason.TooLong" = "%@ слишком длинный"; +"Scene.Register.Error.Reason.TooShort" = "%@ слишком короткий"; +"Scene.Register.Error.Reason.Unreachable" = "%@ не существует"; +"Scene.Register.Error.Special.EmailInvalid" = "Недопустимый e-mail адрес"; +"Scene.Register.Error.Special.PasswordTooShort" = "Пароль слишком короткий (должен содержать не менее 8 символов)"; +"Scene.Register.Error.Special.UsernameInvalid" = "Имя пользователя может содержать только латинские буквы, цифры и подчёркивания"; +"Scene.Register.Error.Special.UsernameTooLong" = "Слишком длинное имя пользователя (не может быть длиннее 30 символов)"; +"Scene.Register.Input.Avatar.Delete" = "Удалить"; +"Scene.Register.Input.DisplayName.Placeholder" = "отображаемое имя"; +"Scene.Register.Input.Email.Placeholder" = "e-mail"; +"Scene.Register.Input.Invite.RegistrationUserInviteRequest" = "Почему вы хотите присоединиться?"; +"Scene.Register.Input.Password.Hint" = "Пароль должен содержать не менее восьми символов"; +"Scene.Register.Input.Password.Placeholder" = "пароль"; +"Scene.Register.Input.Username.DuplicatePrompt" = "Это имя пользователя занято."; +"Scene.Register.Input.Username.Placeholder" = "имя пользователя"; +"Scene.Register.Title" = "Расскажите нам о себе."; +"Scene.Report.Content1" = "Есть ли другие сообщения, которые вы хотите добавить в отчёт?"; +"Scene.Report.Content2" = "Есть ли что-то, что модераторы должны знать об этом сообщении?"; +"Scene.Report.Send" = "Пожаловаться"; +"Scene.Report.SkipToSend" = "Отправить без комментария"; +"Scene.Report.Step1" = "Шаг 1 из 2"; +"Scene.Report.Step2" = "Шаг 2 из 2"; +"Scene.Report.TextPlaceholder" = "Дополнительные комментарии"; +"Scene.Report.Title" = "Пожаловаться на %@"; +"Scene.Search.Recommend.Accounts.Description" = "Возможно, вы захотите подписаться на эти профили"; +"Scene.Search.Recommend.Accounts.Follow" = "Подписаться"; +"Scene.Search.Recommend.Accounts.Title" = "Вам может понравится"; +"Scene.Search.Recommend.ButtonText" = "Посмотреть все"; +"Scene.Search.Recommend.HashTag.Description" = "Хэштеги, которым сейчас уделяется немного внимания"; +"Scene.Search.Recommend.HashTag.PeopleTalking" = "%@ людей разговаривают"; +"Scene.Search.Recommend.HashTag.Title" = "Популярно в Mastodon"; +"Scene.Search.SearchBar.Cancel" = "Отмена"; +"Scene.Search.SearchBar.Placeholder" = "Поиск хэштегов и пользователей"; +"Scene.Search.Searching.Clear" = "Очистить"; +"Scene.Search.Searching.EmptyState.NoResults" = "Нет результатов"; +"Scene.Search.Searching.RecentSearch" = "Последние запросы"; +"Scene.Search.Searching.Segment.All" = "Всё"; +"Scene.Search.Searching.Segment.Hashtags" = "Хэштеги"; +"Scene.Search.Searching.Segment.People" = "Люди"; +"Scene.Search.Searching.Segment.Posts" = "Посты"; +"Scene.Search.Title" = "Поиск"; +"Scene.ServerPicker.Button.Category.Academia" = "академия"; +"Scene.ServerPicker.Button.Category.Activism" = "активизм"; +"Scene.ServerPicker.Button.Category.All" = "Все"; +"Scene.ServerPicker.Button.Category.AllAccessiblityDescription" = "Категория: все"; +"Scene.ServerPicker.Button.Category.Art" = "арт"; +"Scene.ServerPicker.Button.Category.Food" = "еда"; +"Scene.ServerPicker.Button.Category.Furry" = "фурри"; +"Scene.ServerPicker.Button.Category.Games" = "игры"; +"Scene.ServerPicker.Button.Category.General" = "общей тематики"; +"Scene.ServerPicker.Button.Category.Journalism" = "журнализм"; +"Scene.ServerPicker.Button.Category.Lgbt" = "ЛГБТКИА+"; +"Scene.ServerPicker.Button.Category.Music" = "музыка"; +"Scene.ServerPicker.Button.Category.Regional" = "региональные"; +"Scene.ServerPicker.Button.Category.Tech" = "технологии"; +"Scene.ServerPicker.Button.SeeLess" = "Показать меньше"; +"Scene.ServerPicker.Button.SeeMore" = "Ещё"; +"Scene.ServerPicker.EmptyState.BadNetwork" = "Что-то пошло не так при загрузке данных. Проверьте подключение к интернету."; +"Scene.ServerPicker.EmptyState.FindingServers" = "Ищем доступные сервера..."; +"Scene.ServerPicker.EmptyState.NoResults" = "Нет результатов"; +"Scene.ServerPicker.Input.Placeholder" = "Найдите сервер или присоединитесь к своему..."; +"Scene.ServerPicker.Label.Category" = "КАТЕГОРИЯ"; +"Scene.ServerPicker.Label.Language" = "ЯЗЫК"; +"Scene.ServerPicker.Label.Users" = "ПОЛЬЗОВАТЕЛИ"; +"Scene.ServerPicker.Title" = "Выберите сервер, +любой сервер."; +"Scene.ServerRules.Button.Confirm" = "Принимаю"; +"Scene.ServerRules.PrivacyPolicy" = "политика конфиденциальности"; +"Scene.ServerRules.Prompt" = "Продолжая, вы соглашаетесь с условиям использования и политикой конфиденциальности %@."; +"Scene.ServerRules.Subtitle" = "Эти правила установлены администраторами %@."; +"Scene.ServerRules.TermsOfService" = "условия использования"; +"Scene.ServerRules.Title" = "Несколько основных правил."; +"Scene.Settings.Footer.MastodonDescription" = "Mastodon — проект с открытым исходным кодом. Сообщить о проблемах можно на GitHub по адресу %@ (%@)"; +"Scene.Settings.Keyboard.CloseSettingsWindow" = "Закрыть окно настроек"; +"Scene.Settings.Section.Appearance.Automatic" = "Автоматически"; +"Scene.Settings.Section.Appearance.Dark" = "Тёмная тема"; +"Scene.Settings.Section.Appearance.Light" = "Светлая тема"; +"Scene.Settings.Section.Appearance.Title" = "Внешний вид"; +"Scene.Settings.Section.BoringZone.AccountSettings" = "Настройки аккаунта"; +"Scene.Settings.Section.BoringZone.Privacy" = "Политика конфиденциальности"; +"Scene.Settings.Section.BoringZone.Terms" = "Условия использования"; +"Scene.Settings.Section.BoringZone.Title" = "Зона скукотищи"; +"Scene.Settings.Section.Notifications.Boosts" = "Продвигает мой пост"; +"Scene.Settings.Section.Notifications.Favorites" = "Добавляет мой пост в избранное"; +"Scene.Settings.Section.Notifications.Follows" = "Подписался на меня"; +"Scene.Settings.Section.Notifications.Mentions" = "Упоминает меня"; +"Scene.Settings.Section.Notifications.Title" = "Уведомления"; +"Scene.Settings.Section.Notifications.Trigger.Anyone" = "кто угодно"; +"Scene.Settings.Section.Notifications.Trigger.Follow" = "любой, на кого я подписан(а)"; +"Scene.Settings.Section.Notifications.Trigger.Follower" = "мой подписчик"; +"Scene.Settings.Section.Notifications.Trigger.Noone" = "никто"; +"Scene.Settings.Section.Notifications.Trigger.Title" = "Уведомлять меня, когда"; +"Scene.Settings.Section.Preference.DisableAvatarAnimation" = "Отключить анимацию аватарок"; +"Scene.Settings.Section.Preference.DisableEmojiAnimation" = "Отключить анимацию эмодзи"; +"Scene.Settings.Section.Preference.Title" = "Предпочтения"; +"Scene.Settings.Section.Preference.TrueBlackDarkMode" = "Полноценно чёрный режим"; +"Scene.Settings.Section.Preference.UsingDefaultBrowser" = "Использовать браузер по умолчанию для открытия ссылок"; +"Scene.Settings.Section.SpicyZone.Clear" = "Очистить кэш медиа"; +"Scene.Settings.Section.SpicyZone.Signout" = "Выйти из учётной записи"; +"Scene.Settings.Section.SpicyZone.Title" = "Пикантная зона"; +"Scene.Settings.Title" = "Настройки"; +"Scene.SuggestionAccount.FollowExplain" = "Посты людей, на которых вы подписались, будут видны на главной странице."; +"Scene.SuggestionAccount.Title" = "Подпишитесь на людей"; +"Scene.Thread.BackTitle" = "Пост"; +"Scene.Thread.Title" = "Пост %@"; +"Scene.Welcome.Slogan" = "Социальная сеть +под вашим контролем."; \ No newline at end of file diff --git a/Mastodon/Resources/ru.lproj/Localizable.stringsdict b/Mastodon/Resources/ru.lproj/Localizable.stringsdict new file mode 100644 index 000000000..1a9a44a0f --- /dev/null +++ b/Mastodon/Resources/ru.lproj/Localizable.stringsdict @@ -0,0 +1,466 @@ + + + + + a11y.plural.count.input_limit_exceeds + + NSStringLocalizedFormatKey + Input limit exceeds %#@character_count@ + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 character + few + %ld characters + many + %ld characters + other + %ld characters + + + a11y.plural.count.input_limit_remains + + NSStringLocalizedFormatKey + Input limit remains %#@character_count@ + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 character + few + %ld characters + many + %ld characters + other + %ld characters + + + plural.count.metric_formatted.post + + NSStringLocalizedFormatKey + %@ %#@post_count@ + post_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + post + few + posts + many + posts + other + posts + + + plural.count.post + + NSStringLocalizedFormatKey + %#@post_count@ + post_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + %ld пост + few + %ld поста + many + %ld постов + other + %ld поста + + + plural.count.favorite + + NSStringLocalizedFormatKey + %#@favorite_count@ + favorite_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + %ld добавил(а) в избранное + few + %ld добавили в избранное + many + %ld добавили в избранное + other + %ld добавили в избранное + + + plural.count.reblog + + NSStringLocalizedFormatKey + %#@reblog_count@ + reblog_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + %ld продвинул(а) + few + %ld продвинули + many + %ld продвинули + other + %ld продвинули + + + plural.count.vote + + NSStringLocalizedFormatKey + %#@vote_count@ + vote_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 vote + few + %ld votes + many + %ld votes + other + %ld votes + + + plural.count.voter + + NSStringLocalizedFormatKey + %#@voter_count@ + voter_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 voter + few + %ld voters + many + %ld voters + other + %ld voters + + + plural.people_talking + + NSStringLocalizedFormatKey + %#@count_people_talking@ + count_people_talking + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 people talking + few + %ld people talking + many + %ld people talking + other + %ld people talking + + + plural.count.following + + NSStringLocalizedFormatKey + %#@count_following@ + count_following + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 following + few + %ld following + many + %ld following + other + %ld following + + + plural.count.follower + + NSStringLocalizedFormatKey + %#@count_follower@ + count_follower + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 follower + few + %ld followers + many + %ld followers + other + %ld followers + + + date.year.left + + NSStringLocalizedFormatKey + %#@count_year_left@ + count_year_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 year left + few + %ld years left + many + %ld years left + other + %ld years left + + + date.month.left + + NSStringLocalizedFormatKey + %#@count_month_left@ + count_month_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 months left + few + %ld months left + many + %ld months left + other + %ld months left + + + date.day.left + + NSStringLocalizedFormatKey + %#@count_day_left@ + count_day_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 day left + few + %ld days left + many + %ld days left + other + %ld days left + + + date.hour.left + + NSStringLocalizedFormatKey + %#@count_hour_left@ + count_hour_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 hour left + few + %ld hours left + many + %ld hours left + other + %ld hours left + + + date.minute.left + + NSStringLocalizedFormatKey + %#@count_minute_left@ + count_minute_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 minute left + few + %ld minutes left + many + %ld minutes left + other + %ld minutes left + + + date.second.left + + NSStringLocalizedFormatKey + %#@count_second_left@ + count_second_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 second left + few + %ld seconds left + many + %ld seconds left + other + %ld seconds left + + + date.year.ago.abbr + + NSStringLocalizedFormatKey + %#@count_year_ago_abbr@ + count_year_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1y ago + few + %ldy ago + many + %ldy ago + other + %ldy ago + + + date.month.ago.abbr + + NSStringLocalizedFormatKey + %#@count_month_ago_abbr@ + count_month_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1M ago + few + %ldM ago + many + %ldM ago + other + %ldM ago + + + date.day.ago.abbr + + NSStringLocalizedFormatKey + %#@count_day_ago_abbr@ + count_day_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1d ago + few + %ldd ago + many + %ldd ago + other + %ldd ago + + + date.hour.ago.abbr + + NSStringLocalizedFormatKey + %#@count_hour_ago_abbr@ + count_hour_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1h ago + few + %ldh ago + many + %ldh ago + other + %ldh ago + + + date.minute.ago.abbr + + NSStringLocalizedFormatKey + %#@count_minute_ago_abbr@ + count_minute_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1m ago + few + %ldm ago + many + %ldm ago + other + %ldm ago + + + date.second.ago.abbr + + NSStringLocalizedFormatKey + %#@count_second_ago_abbr@ + count_second_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1s ago + few + %lds ago + many + %lds ago + other + %lds ago + + + + diff --git a/Mastodon/Resources/th.lproj/InfoPlist.strings b/Mastodon/Resources/th.lproj/InfoPlist.strings new file mode 100644 index 000000000..610b2bf53 --- /dev/null +++ b/Mastodon/Resources/th.lproj/InfoPlist.strings @@ -0,0 +1,4 @@ +"NSCameraUsageDescription" = "ใช้เพื่อถ่ายรูปสำหรับโพสต์สถานะ"; +"NSPhotoLibraryAddUsageDescription" = "ใช้เพื่อบันทึกรูปภาพลงในคลังรูปภาพ"; +"NewPostShortcutItemTitle" = "โพสต์ใหม่"; +"SearchShortcutItemTitle" = "ค้นหา"; \ No newline at end of file diff --git a/Mastodon/Resources/th.lproj/Localizable.strings b/Mastodon/Resources/th.lproj/Localizable.strings new file mode 100644 index 000000000..e3afe433f --- /dev/null +++ b/Mastodon/Resources/th.lproj/Localizable.strings @@ -0,0 +1,340 @@ +"Common.Alerts.BlockDomain.BlockEntireDomain" = "ปิดกั้นโดเมน"; +"Common.Alerts.BlockDomain.Title" = "คุณแน่ใจจริง ๆ หรือไม่ว่าต้องการปิดกั้นทั้ง %@? ในกรณีส่วนใหญ่ การปิดกั้นหรือการซ่อนแบบกำหนดเป้าหมายไม่กี่รายการนั้นเพียงพอและเป็นที่นิยม คุณจะไม่เห็นเนื้อหาจากโดเมนนั้นและจะเอาผู้ติดตามใดก็ตามของคุณจากโดเมนนั้นออก"; +"Common.Alerts.CleanCache.Message" = "ล้างแคช %@ สำเร็จ"; +"Common.Alerts.CleanCache.Title" = "ล้างแคช"; +"Common.Alerts.Common.PleaseTryAgain" = "โปรดลองอีกครั้ง"; +"Common.Alerts.Common.PleaseTryAgainLater" = "โปรดลองอีกครั้งในภายหลัง"; +"Common.Alerts.DeletePost.Delete" = "ลบ"; +"Common.Alerts.DeletePost.Title" = "คุณแน่ใจหรือไม่ว่าต้องการลบโพสต์นี้?"; +"Common.Alerts.DiscardPostContent.Message" = "ยืนยันที่จะละทิ้งเนื้อหาโพสต์ที่เขียน"; +"Common.Alerts.DiscardPostContent.Title" = "ละทิ้งแบบร่าง"; +"Common.Alerts.EditProfileFailure.Message" = "ไม่สามารถแก้ไขโปรไฟล์ โปรดลองอีกครั้ง"; +"Common.Alerts.EditProfileFailure.Title" = "ข้อผิดพลาดการแก้ไขโปรไฟล์"; +"Common.Alerts.PublishPostFailure.AttachmentsMessage.MoreThanOneVideo" = "ไม่สามารถแนบมากกว่าหนึ่งวิดีโอ"; +"Common.Alerts.PublishPostFailure.AttachmentsMessage.VideoAttachWithPhoto" = "ไม่สามารถแนบวิดีโอกับโพสต์ที่มีภาพอยู่แล้ว"; +"Common.Alerts.PublishPostFailure.Message" = "ไม่สามารถเผยแพร่โพสต์ +โปรดตรวจสอบการเชื่อมต่ออินเทอร์เน็ตของคุณ"; +"Common.Alerts.PublishPostFailure.Title" = "การเผยแพร่ล้มเหลว"; +"Common.Alerts.SavePhotoFailure.Message" = "โปรดเปิดใช้งานสิทธิอนุญาตการเข้าถึงคลังรูปภาพเพื่อบันทึกรูปภาพ"; +"Common.Alerts.SavePhotoFailure.Title" = "การบันทึกรูปภาพล้มเหลว"; +"Common.Alerts.ServerError.Title" = "ข้อผิดพลาดเซิร์ฟเวอร์"; +"Common.Alerts.SignOut.Confirm" = "ลงชื่อออก"; +"Common.Alerts.SignOut.Message" = "คุณแน่ใจหรือไม่ว่าต้องการลงชื่อออก?"; +"Common.Alerts.SignOut.Title" = "ลงชื่อออก"; +"Common.Alerts.SignUpFailure.Title" = "การลงทะเบียนล้มเหลว"; +"Common.Alerts.VoteFailure.PollEnded" = "การสำรวจความคิดเห็นได้สิ้นสุดแล้ว"; +"Common.Alerts.VoteFailure.Title" = "การลงคะแนนล้มเหลว"; +"Common.Controls.Actions.Add" = "เพิ่ม"; +"Common.Controls.Actions.Back" = "ย้อนกลับ"; +"Common.Controls.Actions.BlockDomain" = "ปิดกั้น %@"; +"Common.Controls.Actions.Cancel" = "ยกเลิก"; +"Common.Controls.Actions.Confirm" = "ยืนยัน"; +"Common.Controls.Actions.Continue" = "ดำเนินการต่อ"; +"Common.Controls.Actions.CopyPhoto" = "คัดลอกรูปภาพ"; +"Common.Controls.Actions.Delete" = "ลบ"; +"Common.Controls.Actions.Discard" = "ละทิ้ง"; +"Common.Controls.Actions.Done" = "เสร็จสิ้น"; +"Common.Controls.Actions.Edit" = "แก้ไข"; +"Common.Controls.Actions.FindPeople" = "ค้นหาผู้คนที่จะติดตาม"; +"Common.Controls.Actions.ManuallySearch" = "ค้นหาด้วยตนเองแทน"; +"Common.Controls.Actions.Next" = "ถัดไป"; +"Common.Controls.Actions.Ok" = "ตกลง"; +"Common.Controls.Actions.Open" = "เปิด"; +"Common.Controls.Actions.OpenInSafari" = "เปิดใน Safari"; +"Common.Controls.Actions.Preview" = "แสดงตัวอย่าง"; +"Common.Controls.Actions.Previous" = "ก่อนหน้า"; +"Common.Controls.Actions.Remove" = "เอาออก"; +"Common.Controls.Actions.Reply" = "ตอบกลับ"; +"Common.Controls.Actions.ReportUser" = "รายงาน %@"; +"Common.Controls.Actions.Save" = "บันทึก"; +"Common.Controls.Actions.SavePhoto" = "บันทึกรูปภาพ"; +"Common.Controls.Actions.SeeMore" = "ดูเพิ่มเติม"; +"Common.Controls.Actions.Settings" = "การตั้งค่า"; +"Common.Controls.Actions.Share" = "แบ่งปัน"; +"Common.Controls.Actions.SharePost" = "แบ่งปันโพสต์"; +"Common.Controls.Actions.ShareUser" = "แบ่งปัน %@"; +"Common.Controls.Actions.SignIn" = "ลงชื่อเข้า"; +"Common.Controls.Actions.SignUp" = "ลงทะเบียน"; +"Common.Controls.Actions.Skip" = "ข้าม"; +"Common.Controls.Actions.TakePhoto" = "ถ่ายรูป"; +"Common.Controls.Actions.TryAgain" = "ลองอีกครั้ง"; +"Common.Controls.Actions.UnblockDomain" = "เลิกปิดกั้น %@"; +"Common.Controls.Friendship.Block" = "ปิดกั้น"; +"Common.Controls.Friendship.BlockDomain" = "ปิดกั้น %@"; +"Common.Controls.Friendship.BlockUser" = "ปิดกั้น %@"; +"Common.Controls.Friendship.Blocked" = "ปิดกั้นอยู่"; +"Common.Controls.Friendship.EditInfo" = "แก้ไขข้อมูล"; +"Common.Controls.Friendship.Follow" = "ติดตาม"; +"Common.Controls.Friendship.Following" = "กำลังติดตาม"; +"Common.Controls.Friendship.Mute" = "ซ่อน"; +"Common.Controls.Friendship.MuteUser" = "ซ่อน %@"; +"Common.Controls.Friendship.Muted" = "ซ่อนอยู่"; +"Common.Controls.Friendship.Pending" = "รอดำเนินการ"; +"Common.Controls.Friendship.Request" = "ขอ"; +"Common.Controls.Friendship.Unblock" = "เลิกปิดกั้น"; +"Common.Controls.Friendship.UnblockUser" = "เลิกปิดกั้น %@"; +"Common.Controls.Friendship.Unmute" = "เลิกซ่อน"; +"Common.Controls.Friendship.UnmuteUser" = "เลิกซ่อน %@"; +"Common.Controls.Keyboard.Common.ComposeNewPost" = "เขียนโพสต์ใหม่"; +"Common.Controls.Keyboard.Common.OpenSettings" = "เปิดการตั้งค่า"; +"Common.Controls.Keyboard.Common.ShowFavorites" = "แสดงรายการโปรด"; +"Common.Controls.Keyboard.Common.SwitchToTab" = "สลับไปยัง %@"; +"Common.Controls.Keyboard.SegmentedControl.NextSection" = "ส่วนถัดไป"; +"Common.Controls.Keyboard.SegmentedControl.PreviousSection" = "ส่วนก่อนหน้า"; +"Common.Controls.Keyboard.Timeline.NextStatus" = "โพสต์ถัดไป"; +"Common.Controls.Keyboard.Timeline.OpenAuthorProfile" = "เปิดโปรไฟล์ของผู้สร้าง"; +"Common.Controls.Keyboard.Timeline.OpenRebloggerProfile" = "เปิดโปรไฟล์ของผู้ดัน"; +"Common.Controls.Keyboard.Timeline.OpenStatus" = "เปิดโพสต์"; +"Common.Controls.Keyboard.Timeline.PreviewImage" = "แสดงตัวอย่างภาพ"; +"Common.Controls.Keyboard.Timeline.PreviousStatus" = "โพสต์ก่อนหน้า"; +"Common.Controls.Keyboard.Timeline.ReplyStatus" = "ตอบกลับโพสต์"; +"Common.Controls.Keyboard.Timeline.ToggleContentWarning" = "เปิด/ปิดคำเตือนเนื้อหา"; +"Common.Controls.Keyboard.Timeline.ToggleFavorite" = "เปิด/ปิดรายการโปรดในโพสต์"; +"Common.Controls.Keyboard.Timeline.ToggleReblog" = "เปิด/ปิดการดันในโพสต์"; +"Common.Controls.Status.Actions.Favorite" = "ชื่นชอบ"; +"Common.Controls.Status.Actions.Menu" = "เมนู"; +"Common.Controls.Status.Actions.Reblog" = "ดัน"; +"Common.Controls.Status.Actions.Reply" = "ตอบกลับ"; +"Common.Controls.Status.Actions.Unfavorite" = "เลิกชื่นชอบ"; +"Common.Controls.Status.Actions.Unreblog" = "เลิกทำการดัน"; +"Common.Controls.Status.ContentWarning" = "คำเตือนเนื้อหา"; +"Common.Controls.Status.MediaContentWarning" = "แตะที่ใดก็ตามเพื่อเปิดเผย"; +"Common.Controls.Status.Poll.Closed" = "ปิดแล้ว"; +"Common.Controls.Status.Poll.Vote" = "ลงคะแนน"; +"Common.Controls.Status.ShowPost" = "แสดงโพสต์"; +"Common.Controls.Status.ShowUserProfile" = "แสดงโปรไฟล์ผู้ใช้"; +"Common.Controls.Status.Tag.Email" = "อีเมล"; +"Common.Controls.Status.Tag.Emoji" = "อีโมจิ"; +"Common.Controls.Status.Tag.Hashtag" = "แฮชแท็ก"; +"Common.Controls.Status.Tag.Link" = "ลิงก์"; +"Common.Controls.Status.Tag.Mention" = "กล่าวถึง"; +"Common.Controls.Status.Tag.Url" = "URL"; +"Common.Controls.Status.UserReblogged" = "%@ ได้ดัน"; +"Common.Controls.Status.UserRepliedTo" = "ตอบกลับ %@"; +"Common.Controls.Tabs.Home" = "หน้าแรก"; +"Common.Controls.Tabs.Notification" = "การแจ้งเตือน"; +"Common.Controls.Tabs.Profile" = "โปรไฟล์"; +"Common.Controls.Tabs.Search" = "ค้นหา"; +"Common.Controls.Timeline.Filtered" = "กรองอยู่"; +"Common.Controls.Timeline.Header.BlockedWarning" = "You can’t view this user’s profile +until they unblock you."; +"Common.Controls.Timeline.Header.BlockingWarning" = "You can’t view this user's profile +until you unblock them. +Your profile looks like this to them."; +"Common.Controls.Timeline.Header.NoStatusFound" = "ไม่พบโพสต์"; +"Common.Controls.Timeline.Header.SuspendedWarning" = "ผู้ใช้นี้ถูกระงับการใช้งาน"; +"Common.Controls.Timeline.Header.UserBlockedWarning" = "You can’t view %@’s profile +until they unblock you."; +"Common.Controls.Timeline.Header.UserBlockingWarning" = "You can’t view %@’s profile +until you unblock them. +Your profile looks like this to them."; +"Common.Controls.Timeline.Header.UserSuspendedWarning" = "บัญชีของ %@ ถูกระงับการใช้งาน"; +"Common.Controls.Timeline.Loader.LoadMissingPosts" = "โหลดโพสต์ที่ขาดหายไป"; +"Common.Controls.Timeline.Loader.LoadingMissingPosts" = "กำลังโหลดโพสต์ที่ขาดหายไป..."; +"Common.Controls.Timeline.Loader.ShowMoreReplies" = "แสดงการตอบกลับเพิ่มเติม"; +"Common.Controls.Timeline.Timestamp.Now" = "ตอนนี้"; +"Scene.Compose.Accessibility.AppendAttachment" = "เพิ่มไฟล์แนบ"; +"Scene.Compose.Accessibility.AppendPoll" = "เพิ่มการสำรวจความคิดเห็น"; +"Scene.Compose.Accessibility.CustomEmojiPicker" = "ตัวเลือกอีโมจิที่กำหนดเอง"; +"Scene.Compose.Accessibility.DisableContentWarning" = "ปิดใช้งานคำเตือนเนื้อหา"; +"Scene.Compose.Accessibility.EnableContentWarning" = "เปิดใช้งานคำเตือนเนื้อหา"; +"Scene.Compose.Accessibility.PostVisibilityMenu" = "เมนูการมองเห็นโพสต์"; +"Scene.Compose.Accessibility.RemovePoll" = "เอาการสำรวจความคิดเห็นออก"; +"Scene.Compose.Attachment.AttachmentBroken" = "%@ นี้เสียหายและไม่สามารถ +อัปโหลดไปยัง Mastodon"; +"Scene.Compose.Attachment.DescriptionPhoto" = "อธิบายรูปภาพสำหรับผู้บกพร่องทางการมองเห็น..."; +"Scene.Compose.Attachment.DescriptionVideo" = "อธิบายวิดีโอสำหรับผู้บกพร่องทางการมองเห็น..."; +"Scene.Compose.Attachment.Photo" = "รูปภาพ"; +"Scene.Compose.Attachment.Video" = "วิดีโอ"; +"Scene.Compose.AutoComplete.SpaceToAdd" = "เว้นวรรคเพื่อเพิ่ม"; +"Scene.Compose.ComposeAction" = "เผยแพร่"; +"Scene.Compose.ContentInputPlaceholder" = "พิมพ์หรือวางสิ่งที่คุณกำลังคิด"; +"Scene.Compose.ContentWarning.Placeholder" = "เขียนคำเตือนที่ถูกต้องที่นี่..."; +"Scene.Compose.Keyboard.AppendAttachmentEntry" = "เพิ่มไฟล์แนบ - %@"; +"Scene.Compose.Keyboard.DiscardPost" = "ละทิ้งโพสต์"; +"Scene.Compose.Keyboard.PublishPost" = "เผยแพร่โพสต์"; +"Scene.Compose.Keyboard.SelectVisibilityEntry" = "เลือกการมองเห็น - %@"; +"Scene.Compose.Keyboard.ToggleContentWarning" = "เปิด/ปิดคำเตือนเนื้อหา"; +"Scene.Compose.Keyboard.TogglePoll" = "เปิด/ปิดการสำรวจความคิดเห็น"; +"Scene.Compose.MediaSelection.Browse" = "เรียกดู"; +"Scene.Compose.MediaSelection.Camera" = "ถ่ายรูป"; +"Scene.Compose.MediaSelection.PhotoLibrary" = "คลังรูปภาพ"; +"Scene.Compose.Poll.DurationTime" = "ระยะเวลา: %@"; +"Scene.Compose.Poll.OneDay" = "1 วัน"; +"Scene.Compose.Poll.OneHour" = "1 ชั่วโมง"; +"Scene.Compose.Poll.OptionNumber" = "ตัวเลือก %ld"; +"Scene.Compose.Poll.SevenDays" = "7 วัน"; +"Scene.Compose.Poll.SixHours" = "6 ชั่วโมง"; +"Scene.Compose.Poll.ThirtyMinutes" = "30 นาที"; +"Scene.Compose.Poll.ThreeDays" = "3 วัน"; +"Scene.Compose.ReplyingToUser" = "กำลังตอบกลับ %@"; +"Scene.Compose.Title.NewPost" = "โพสต์ใหม่"; +"Scene.Compose.Title.NewReply" = "การตอบกลับใหม่"; +"Scene.Compose.Visibility.Direct" = "เฉพาะผู้คนที่ฉันกล่าวถึงเท่านั้น"; +"Scene.Compose.Visibility.Private" = "ผู้ติดตามเท่านั้น"; +"Scene.Compose.Visibility.Public" = "สาธารณะ"; +"Scene.Compose.Visibility.Unlisted" = "ไม่อยู่ในรายการ"; +"Scene.ConfirmEmail.Button.DontReceiveEmail" = "ฉันไม่เคยได้รับอีเมล"; +"Scene.ConfirmEmail.Button.OpenEmailApp" = "เปิดแอปอีเมล"; +"Scene.ConfirmEmail.DontReceiveEmail.Description" = "หากคุณยังไม่ได้รับอีเมล ตรวจสอบว่าที่อยู่อีเมลของคุณถูกต้อง รวมถึงโฟลเดอร์อีเมลขยะของคุณ"; +"Scene.ConfirmEmail.DontReceiveEmail.ResendEmail" = "ส่งอีเมลใหม่"; +"Scene.ConfirmEmail.DontReceiveEmail.Title" = "ตรวจสอบอีเมลของคุณ"; +"Scene.ConfirmEmail.OpenEmailApp.Description" = "เราเพิ่งส่งอีเมลหาคุณ หากคุณยังไม่ได้รับอีเมล โปรดตรวจสอบโฟลเดอร์อีเมลขยะ"; +"Scene.ConfirmEmail.OpenEmailApp.Mail" = "จดหมาย"; +"Scene.ConfirmEmail.OpenEmailApp.OpenEmailClient" = "เปิดไคลเอ็นต์อีเมล"; +"Scene.ConfirmEmail.OpenEmailApp.Title" = "ตรวจสอบกล่องขาเข้าของคุณ"; +"Scene.ConfirmEmail.Subtitle" = "เราเพิ่งส่งอีเมลไปยัง %@ +แตะที่ลิงก์เพื่อยืนยันบัญชีของคุณ"; +"Scene.ConfirmEmail.Title" = "หนึ่งสิ่งสุดท้าย"; +"Scene.Favorite.Title" = "รายการโปรดของคุณ"; +"Scene.HomeTimeline.NavigationBarState.NewPosts" = "ดูโพสต์ใหม่"; +"Scene.HomeTimeline.NavigationBarState.Offline" = "ออฟไลน์"; +"Scene.HomeTimeline.NavigationBarState.Published" = "เผยแพร่แล้ว!"; +"Scene.HomeTimeline.NavigationBarState.Publishing" = "กำลังเผยแพร่โพสต์..."; +"Scene.HomeTimeline.Title" = "หน้าแรก"; +"Scene.Notification.Keyobard.ShowEverything" = "แสดงทุกอย่าง"; +"Scene.Notification.Keyobard.ShowMentions" = "แสดงการกล่าวถึง"; +"Scene.Notification.Title.Everything" = "ทุกอย่าง"; +"Scene.Notification.Title.Mentions" = "การกล่าวถึง"; +"Scene.Notification.UserFavorited Your Post" = "%@ ได้ชื่นชอบโพสต์ของคุณ"; +"Scene.Notification.UserFollowedYou" = "%@ ได้ติดตามคุณ"; +"Scene.Notification.UserMentionedYou" = "%@ ได้กล่าวถึงคุณ"; +"Scene.Notification.UserRebloggedYourPost" = "%@ ได้ดันโพสต์ของคุณ"; +"Scene.Notification.UserRequestedToFollowYou" = "%@ ได้ขอติดตามคุณ"; +"Scene.Notification.UserYourPollHasEnded" = "%@ โพลของคุณได้สิ้นสุดแล้ว"; +"Scene.Preview.Keyboard.ClosePreview" = "ปิดตัวอย่าง"; +"Scene.Preview.Keyboard.ShowNext" = "แสดงถัดไป"; +"Scene.Preview.Keyboard.ShowPrevious" = "แสดงก่อนหน้า"; +"Scene.Profile.Dashboard.Followers" = "ผู้ติดตาม"; +"Scene.Profile.Dashboard.Following" = "กำลังติดตาม"; +"Scene.Profile.Dashboard.Posts" = "โพสต์"; +"Scene.Profile.Fields.AddRow" = "เพิ่มแถว"; +"Scene.Profile.Fields.Placeholder.Content" = "เนื้อหา"; +"Scene.Profile.Fields.Placeholder.Label" = "ป้ายชื่อ"; +"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUsre.Message" = "ยืนยันเพื่อเลิกปิดกั้น %@"; +"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUsre.Title" = "เลิกปิดกั้นบัญชี"; +"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "ยืนยันเพื่อเลิกซ่อน %@"; +"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Title" = "เลิกซ่อนบัญชี"; +"Scene.Profile.SegmentedControl.Media" = "สื่อ"; +"Scene.Profile.SegmentedControl.Posts" = "โพสต์"; +"Scene.Profile.SegmentedControl.Replies" = "การตอบกลับ"; +"Scene.Register.Error.Item.Agreement" = "ข้อตกลง"; +"Scene.Register.Error.Item.Email" = "อีเมล"; +"Scene.Register.Error.Item.Locale" = "ตำแหน่งที่ตั้ง"; +"Scene.Register.Error.Item.Password" = "รหัสผ่าน"; +"Scene.Register.Error.Item.Reason" = "เหตุผล"; +"Scene.Register.Error.Item.Username" = "ชื่อผู้ใช้"; +"Scene.Register.Error.Reason.Accepted" = "ต้องยอมรับ %@"; +"Scene.Register.Error.Reason.Blank" = "ต้องมี %@"; +"Scene.Register.Error.Reason.Blocked" = "%@ มีผู้ให้บริการอีเมลที่ไม่ได้รับอนุญาต"; +"Scene.Register.Error.Reason.Inclusion" = "%@ ไม่ใช่ค่าที่รองรับ"; +"Scene.Register.Error.Reason.Invalid" = "%@ ไม่ถูกต้อง"; +"Scene.Register.Error.Reason.Reserved" = "%@ เป็นคำสงวน"; +"Scene.Register.Error.Reason.Taken" = "%@ ถูกใช้งานแล้ว"; +"Scene.Register.Error.Reason.TooLong" = "%@ ยาวเกินไป"; +"Scene.Register.Error.Reason.TooShort" = "%@ สั้นเกินไป"; +"Scene.Register.Error.Reason.Unreachable" = "ดูเหมือนว่า %@ จะไม่มีอยู่"; +"Scene.Register.Error.Special.EmailInvalid" = "นี่ไม่ใช่ที่อยู่อีเมลที่ถูกต้อง"; +"Scene.Register.Error.Special.PasswordTooShort" = "รหัสผ่านสั้นเกินไป (ต้องมีอย่างน้อย 8 ตัวอักษร)"; +"Scene.Register.Error.Special.UsernameInvalid" = "ชื่อผู้ใช้ต้องมีเฉพาะตัวอักษรและตัวเลขและขีดล่างเท่านั้น"; +"Scene.Register.Error.Special.UsernameTooLong" = "ชื่อผู้ใช้ยาวเกินไป (ไม่สามารถยาวเกิน 30 ตัวอักษร)"; +"Scene.Register.Input.Avatar.Delete" = "ลบ"; +"Scene.Register.Input.DisplayName.Placeholder" = "ชื่อที่แสดง"; +"Scene.Register.Input.Email.Placeholder" = "อีเมล"; +"Scene.Register.Input.Invite.RegistrationUserInviteRequest" = "ทำไมคุณจึงต้องการเข้าร่วม?"; +"Scene.Register.Input.Password.Hint" = "รหัสผ่านของคุณต้องมีอย่างน้อยแปดตัวอักษร"; +"Scene.Register.Input.Password.Placeholder" = "รหัสผ่าน"; +"Scene.Register.Input.Username.DuplicatePrompt" = "ชื่อผู้ใช้นี้ถูกใช้ไปแล้ว"; +"Scene.Register.Input.Username.Placeholder" = "ชื่อผู้ใช้"; +"Scene.Register.Title" = "บอกเราเกี่ยวกับคุณ"; +"Scene.Report.Content1" = "มีโพสต์อื่นใดที่คุณต้องการเพิ่มไปยังรายงานหรือไม่?"; +"Scene.Report.Content2" = "มีสิ่งใดที่ผู้ควบคุมควรทราบเกี่ยวกับรายงานนี้หรือไม่?"; +"Scene.Report.Send" = "ส่งรายงาน"; +"Scene.Report.SkipToSend" = "ส่งโดยไม่มีความคิดเห็น"; +"Scene.Report.Step1" = "ขั้นตอนที่ 1 จาก 2"; +"Scene.Report.Step2" = "ขั้นตอนที่ 2 จาก 2"; +"Scene.Report.TextPlaceholder" = "พิมพ์หรือวางความคิดเห็นเพิ่มเติม"; +"Scene.Report.Title" = "รายงาน %@"; +"Scene.Search.Recommend.Accounts.Description" = "คุณอาจต้องการติดตามบัญชีเหล่านี้"; +"Scene.Search.Recommend.Accounts.Follow" = "ติดตาม"; +"Scene.Search.Recommend.Accounts.Title" = "บัญชีที่คุณอาจชอบ"; +"Scene.Search.Recommend.ButtonText" = "ดูทั้งหมด"; +"Scene.Search.Recommend.HashTag.Description" = "แฮชแท็กที่กำลังได้รับความสนใจมาก"; +"Scene.Search.Recommend.HashTag.PeopleTalking" = "%@ คนกำลังพูดคุย"; +"Scene.Search.Recommend.HashTag.Title" = "กำลังนิยมใน Mastodon"; +"Scene.Search.SearchBar.Cancel" = "ยกเลิก"; +"Scene.Search.SearchBar.Placeholder" = "ค้นหาแฮชแท็กและผู้ใช้"; +"Scene.Search.Searching.Clear" = "ล้าง"; +"Scene.Search.Searching.EmptyState.NoResults" = "ไม่มีผลลัพธ์"; +"Scene.Search.Searching.RecentSearch" = "การค้นหาล่าสุด"; +"Scene.Search.Searching.Segment.All" = "ทั้งหมด"; +"Scene.Search.Searching.Segment.Hashtags" = "แฮชแท็ก"; +"Scene.Search.Searching.Segment.People" = "ผู้คน"; +"Scene.Search.Searching.Segment.Posts" = "โพสต์"; +"Scene.Search.Title" = "ค้นหา"; +"Scene.ServerPicker.Button.Category.Academia" = "วิชาการ"; +"Scene.ServerPicker.Button.Category.Activism" = "กิจกรรมเพื่อการเปลี่ยนแปลง"; +"Scene.ServerPicker.Button.Category.All" = "ทั้งหมด"; +"Scene.ServerPicker.Button.Category.AllAccessiblityDescription" = "หมวดหมู่: ทั้งหมด"; +"Scene.ServerPicker.Button.Category.Art" = "ศิลปะ"; +"Scene.ServerPicker.Button.Category.Food" = "อาหาร"; +"Scene.ServerPicker.Button.Category.Furry" = "furry"; +"Scene.ServerPicker.Button.Category.Games" = "เกม"; +"Scene.ServerPicker.Button.Category.General" = "ทั่วไป"; +"Scene.ServerPicker.Button.Category.Journalism" = "การเขียนข่าว"; +"Scene.ServerPicker.Button.Category.Lgbt" = "lgbt"; +"Scene.ServerPicker.Button.Category.Music" = "ดนตรี"; +"Scene.ServerPicker.Button.Category.Regional" = "ภูมิภาค"; +"Scene.ServerPicker.Button.Category.Tech" = "tech"; +"Scene.ServerPicker.Button.SeeLess" = "ดูน้อยลง"; +"Scene.ServerPicker.Button.SeeMore" = "ดูเพิ่มเติม"; +"Scene.ServerPicker.EmptyState.BadNetwork" = "มีบางอย่างผิดพลาดขณะโหลดข้อมูล ตรวจสอบการเชื่อมต่ออินเทอร์เน็ตของคุณ"; +"Scene.ServerPicker.EmptyState.FindingServers" = "กำลังค้นหาเซิร์ฟเวอร์ที่พร้อมใช้งาน..."; +"Scene.ServerPicker.EmptyState.NoResults" = "ไม่มีผลลัพธ์"; +"Scene.ServerPicker.Input.Placeholder" = "ค้นหาเซิร์ฟเวอร์หรือเข้าร่วมของคุณเอง..."; +"Scene.ServerPicker.Label.Category" = "หมวดหมู่"; +"Scene.ServerPicker.Label.Language" = "ภาษา"; +"Scene.ServerPicker.Label.Users" = "ผู้ใช้"; +"Scene.ServerPicker.Title" = "เลือกเซิร์ฟเวอร์ +อันไหนก็ได้"; +"Scene.ServerRules.Button.Confirm" = "ฉันเห็นด้วย"; +"Scene.ServerRules.PrivacyPolicy" = "นโยบายความเป็นส่วนตัว"; +"Scene.ServerRules.Prompt" = "By continuing, you’re subject to the terms of service and privacy policy for %@."; +"Scene.ServerRules.Subtitle" = "กฎเหล่านี้ถูกตั้งโดยผู้ดูแลของ %@"; +"Scene.ServerRules.TermsOfService" = "เงื่อนไขการให้บริการ"; +"Scene.ServerRules.Title" = "กฎพื้นฐานบางประการ"; +"Scene.Settings.Footer.MastodonDescription" = "Mastodon เป็นซอฟต์แวร์โอเพนซอร์ส คุณสามารถรายงานปัญหาได้ใน GitHub ที่ %@ (%@)"; +"Scene.Settings.Keyboard.CloseSettingsWindow" = "ปิดหน้าต่างการตั้งค่า"; +"Scene.Settings.Section.Appearance.Automatic" = "อัตโนมัติ"; +"Scene.Settings.Section.Appearance.Dark" = "มืดเสมอ"; +"Scene.Settings.Section.Appearance.Light" = "สว่างเสมอ"; +"Scene.Settings.Section.Appearance.Title" = "ลักษณะที่ปรากฏ"; +"Scene.Settings.Section.BoringZone.AccountSettings" = "การตั้งค่าบัญชี"; +"Scene.Settings.Section.BoringZone.Privacy" = "นโยบายความเป็นส่วนตัว"; +"Scene.Settings.Section.BoringZone.Terms" = "เงื่อนไขการให้บริการ"; +"Scene.Settings.Section.BoringZone.Title" = "โซนน่าเบื่อ"; +"Scene.Settings.Section.Notifications.Boosts" = "ดันโพสต์ของฉัน"; +"Scene.Settings.Section.Notifications.Favorites" = "ชื่นชอบโพสต์ของฉัน"; +"Scene.Settings.Section.Notifications.Follows" = "ติดตามฉัน"; +"Scene.Settings.Section.Notifications.Mentions" = "กล่าวถึงฉัน"; +"Scene.Settings.Section.Notifications.Title" = "การแจ้งเตือน"; +"Scene.Settings.Section.Notifications.Trigger.Anyone" = "ใครก็ตาม"; +"Scene.Settings.Section.Notifications.Trigger.Follow" = "ใครก็ตามที่ฉันติดตาม"; +"Scene.Settings.Section.Notifications.Trigger.Follower" = "ผู้ติดตาม"; +"Scene.Settings.Section.Notifications.Trigger.Noone" = "ไม่มีใคร"; +"Scene.Settings.Section.Notifications.Trigger.Title" = "แจ้งเตือนฉันเมื่อ"; +"Scene.Settings.Section.Preference.DisableAvatarAnimation" = "ปิดใช้งานภาพประจำตัวแบบเคลื่อนไหว"; +"Scene.Settings.Section.Preference.DisableEmojiAnimation" = "ปิดใช้งานอีโมจิแบบเคลื่อนไหว"; +"Scene.Settings.Section.Preference.Title" = "การกำหนดลักษณะ"; +"Scene.Settings.Section.Preference.TrueBlackDarkMode" = "โหมดมืดดำสนิท"; +"Scene.Settings.Section.Preference.UsingDefaultBrowser" = "ใช้เบราว์เซอร์เริ่มต้นเพื่อเปิดลิงก์"; +"Scene.Settings.Section.SpicyZone.Clear" = "ล้างแคชสื่อ"; +"Scene.Settings.Section.SpicyZone.Signout" = "ลงชื่อออก"; +"Scene.Settings.Section.SpicyZone.Title" = "โซนเผ็ดร้อน"; +"Scene.Settings.Title" = "การตั้งค่า"; +"Scene.SuggestionAccount.FollowExplain" = "เมื่อคุณติดตามใครสักคน คุณจะเห็นโพสต์ของเขาในฟีดหน้าแรกของคุณ"; +"Scene.SuggestionAccount.Title" = "ค้นหาผู้คนที่จะติดตาม"; +"Scene.Thread.BackTitle" = "โพสต์"; +"Scene.Thread.Title" = "โพสต์จาก %@"; +"Scene.Welcome.Slogan" = "ให้เครือข่ายสังคม +กลับมาอยู่ในมือของคุณ"; \ No newline at end of file diff --git a/Mastodon/Resources/th.lproj/Localizable.stringsdict b/Mastodon/Resources/th.lproj/Localizable.stringsdict new file mode 100644 index 000000000..dc114db41 --- /dev/null +++ b/Mastodon/Resources/th.lproj/Localizable.stringsdict @@ -0,0 +1,328 @@ + + + + + a11y.plural.count.input_limit_exceeds + + NSStringLocalizedFormatKey + ขีดจำกัดการป้อนข้อมูลเกิน %#@character_count@ + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + other + %ld ตัวอักษร + + + a11y.plural.count.input_limit_remains + + NSStringLocalizedFormatKey + ขีดจำกัดการป้อนข้อมูลคงเหลือ %#@character_count@ + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + other + %ld ตัวอักษร + + + plural.count.metric_formatted.post + + NSStringLocalizedFormatKey + %@ %#@post_count@ + post_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + other + โพสต์ + + + plural.count.post + + NSStringLocalizedFormatKey + %#@post_count@ + post_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + other + %ld โพสต์ + + + plural.count.favorite + + NSStringLocalizedFormatKey + %#@favorite_count@ + favorite_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + other + %ld รายการโปรด + + + plural.count.reblog + + NSStringLocalizedFormatKey + %#@reblog_count@ + reblog_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + other + %ld การดัน + + + plural.count.vote + + NSStringLocalizedFormatKey + %#@vote_count@ + vote_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + other + %ld การลงคะแนน + + + plural.count.voter + + NSStringLocalizedFormatKey + %#@voter_count@ + voter_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + other + %ld ผู้ลงคะแนน + + + plural.people_talking + + NSStringLocalizedFormatKey + %#@count_people_talking@ + count_people_talking + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + other + %ld คนกำลังพูดคุย + + + plural.count.following + + NSStringLocalizedFormatKey + %#@count_following@ + count_following + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + other + %ld กำลังติดตาม + + + plural.count.follower + + NSStringLocalizedFormatKey + %#@count_follower@ + count_follower + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + other + %ld ผู้ติดตาม + + + date.year.left + + NSStringLocalizedFormatKey + %#@count_year_left@ + count_year_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + other + เหลืออีก %ld ปี + + + date.month.left + + NSStringLocalizedFormatKey + %#@count_month_left@ + count_month_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + other + เหลืออีก %ld เดือน + + + date.day.left + + NSStringLocalizedFormatKey + %#@count_day_left@ + count_day_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + other + เหลืออีก %ld วัน + + + date.hour.left + + NSStringLocalizedFormatKey + %#@count_hour_left@ + count_hour_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + other + เหลืออีก %ld ชั่วโมง + + + date.minute.left + + NSStringLocalizedFormatKey + %#@count_minute_left@ + count_minute_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + other + เหลืออีก %ld นาที + + + date.second.left + + NSStringLocalizedFormatKey + %#@count_second_left@ + count_second_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + other + เหลืออีก %ld วินาที + + + date.year.ago.abbr + + NSStringLocalizedFormatKey + %#@count_year_ago_abbr@ + count_year_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + other + %ld ปีที่แล้ว + + + date.month.ago.abbr + + NSStringLocalizedFormatKey + %#@count_month_ago_abbr@ + count_month_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + other + %ld เดือนที่แล้ว + + + date.day.ago.abbr + + NSStringLocalizedFormatKey + %#@count_day_ago_abbr@ + count_day_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + other + %ld วันที่แล้ว + + + date.hour.ago.abbr + + NSStringLocalizedFormatKey + %#@count_hour_ago_abbr@ + count_hour_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + other + %ld ชั่วโมงที่แล้ว + + + date.minute.ago.abbr + + NSStringLocalizedFormatKey + %#@count_minute_ago_abbr@ + count_minute_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + other + %ld นาทีที่แล้ว + + + date.second.ago.abbr + + NSStringLocalizedFormatKey + %#@count_second_ago_abbr@ + count_second_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + other + %ld วินาทีที่แล้ว + + + + diff --git a/MastodonIntent/ar.lproj/Intents.stringsdict b/MastodonIntent/ar.lproj/Intents.stringsdict new file mode 100644 index 000000000..5a39d5e64 --- /dev/null +++ b/MastodonIntent/ar.lproj/Intents.stringsdict @@ -0,0 +1,54 @@ + + + + + There are ${count} options matching ‘${content}’. - 2 + + NSStringLocalizedFormatKey + There are %#@count_option@ matching ‘${content}’. + count_option + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + %ld + zero + 0 options + one + 1 option + two + 2 options + few + %ld options + many + %ld options + other + %ld options + + + There are ${count} options matching ‘${visibility}’. + + NSStringLocalizedFormatKey + There are %#@count_option@ matching ‘${visibility}’. + count_option + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + %ld + zero + 0 options + one + 1 option + two + 2 options + few + %ld options + many + %ld options + other + %ld options + + + + diff --git a/MastodonIntent/ca.lproj/Intents.stringsdict b/MastodonIntent/ca.lproj/Intents.stringsdict new file mode 100644 index 000000000..5a39d5e64 --- /dev/null +++ b/MastodonIntent/ca.lproj/Intents.stringsdict @@ -0,0 +1,54 @@ + + + + + There are ${count} options matching ‘${content}’. - 2 + + NSStringLocalizedFormatKey + There are %#@count_option@ matching ‘${content}’. + count_option + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + %ld + zero + 0 options + one + 1 option + two + 2 options + few + %ld options + many + %ld options + other + %ld options + + + There are ${count} options matching ‘${visibility}’. + + NSStringLocalizedFormatKey + There are %#@count_option@ matching ‘${visibility}’. + count_option + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + %ld + zero + 0 options + one + 1 option + two + 2 options + few + %ld options + many + %ld options + other + %ld options + + + + diff --git a/MastodonIntent/de.lproj/Intents.stringsdict b/MastodonIntent/de.lproj/Intents.stringsdict new file mode 100644 index 000000000..5a39d5e64 --- /dev/null +++ b/MastodonIntent/de.lproj/Intents.stringsdict @@ -0,0 +1,54 @@ + + + + + There are ${count} options matching ‘${content}’. - 2 + + NSStringLocalizedFormatKey + There are %#@count_option@ matching ‘${content}’. + count_option + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + %ld + zero + 0 options + one + 1 option + two + 2 options + few + %ld options + many + %ld options + other + %ld options + + + There are ${count} options matching ‘${visibility}’. + + NSStringLocalizedFormatKey + There are %#@count_option@ matching ‘${visibility}’. + count_option + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + %ld + zero + 0 options + one + 1 option + two + 2 options + few + %ld options + many + %ld options + other + %ld options + + + + diff --git a/MastodonIntent/es-419.lproj/Intents.stringsdict b/MastodonIntent/es-419.lproj/Intents.stringsdict new file mode 100644 index 000000000..5a39d5e64 --- /dev/null +++ b/MastodonIntent/es-419.lproj/Intents.stringsdict @@ -0,0 +1,54 @@ + + + + + There are ${count} options matching ‘${content}’. - 2 + + NSStringLocalizedFormatKey + There are %#@count_option@ matching ‘${content}’. + count_option + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + %ld + zero + 0 options + one + 1 option + two + 2 options + few + %ld options + many + %ld options + other + %ld options + + + There are ${count} options matching ‘${visibility}’. + + NSStringLocalizedFormatKey + There are %#@count_option@ matching ‘${visibility}’. + count_option + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + %ld + zero + 0 options + one + 1 option + two + 2 options + few + %ld options + many + %ld options + other + %ld options + + + + diff --git a/MastodonIntent/es.lproj/Intents.stringsdict b/MastodonIntent/es.lproj/Intents.stringsdict new file mode 100644 index 000000000..5a39d5e64 --- /dev/null +++ b/MastodonIntent/es.lproj/Intents.stringsdict @@ -0,0 +1,54 @@ + + + + + There are ${count} options matching ‘${content}’. - 2 + + NSStringLocalizedFormatKey + There are %#@count_option@ matching ‘${content}’. + count_option + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + %ld + zero + 0 options + one + 1 option + two + 2 options + few + %ld options + many + %ld options + other + %ld options + + + There are ${count} options matching ‘${visibility}’. + + NSStringLocalizedFormatKey + There are %#@count_option@ matching ‘${visibility}’. + count_option + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + %ld + zero + 0 options + one + 1 option + two + 2 options + few + %ld options + many + %ld options + other + %ld options + + + + diff --git a/MastodonIntent/fr.lproj/Intents.stringsdict b/MastodonIntent/fr.lproj/Intents.stringsdict new file mode 100644 index 000000000..5a39d5e64 --- /dev/null +++ b/MastodonIntent/fr.lproj/Intents.stringsdict @@ -0,0 +1,54 @@ + + + + + There are ${count} options matching ‘${content}’. - 2 + + NSStringLocalizedFormatKey + There are %#@count_option@ matching ‘${content}’. + count_option + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + %ld + zero + 0 options + one + 1 option + two + 2 options + few + %ld options + many + %ld options + other + %ld options + + + There are ${count} options matching ‘${visibility}’. + + NSStringLocalizedFormatKey + There are %#@count_option@ matching ‘${visibility}’. + count_option + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + %ld + zero + 0 options + one + 1 option + two + 2 options + few + %ld options + many + %ld options + other + %ld options + + + + diff --git a/MastodonIntent/gd-GB.lproj/Intents.strings b/MastodonIntent/gd-GB.lproj/Intents.strings new file mode 100644 index 000000000..0f8ef5edc --- /dev/null +++ b/MastodonIntent/gd-GB.lproj/Intents.strings @@ -0,0 +1,51 @@ +"16wxgf" = "Postaich air Mastodon"; + +"751xkl" = "Susbaint teacsa"; + +"CsR7G2" = "Postaich air Mastodon"; + +"HZSGTr" = "Dè an t-susbaint ri postadh?"; + +"HdGikU" = "Dh’fhàillig leis a’ phostadh"; + +"KDNTJ4" = "Adhbhar an fhàilligidh"; + +"RHxKOw" = "Cuir post le susbaint teacsa"; + +"RxSqsb" = "Post"; + +"WCIR3D" = "Postaich ${content} air Mastodon"; + +"ZKJSNu" = "Post"; + +"ZS1XaK" = "${content}"; + +"ZbSjzC" = "Faicsinneachd"; + +"Zo4jgJ" = "Faicsinneachd a’ phuist"; + +"apSxMG-dYQ5NN" = "There are ${count} options matching ‘Public’."; + +"apSxMG-ehFLjY" = "There are ${count} options matching ‘Followers Only’."; + +"ayoYEb-dYQ5NN" = "${content}, poblach"; + +"ayoYEb-ehFLjY" = "${content}, luchd-leantainn a-mhàin"; + +"dUyuGg" = "Postaich air Mastodon"; + +"dYQ5NN" = "Poblach"; + +"ehFLjY" = "Luchd-leantainn a-mhàin"; + +"gfePDu" = "Fhàillig leis a’ phostadh. ${failureReason}"; + +"k7dbKQ" = "Chaidh am post a chur."; + +"oGiqmY-dYQ5NN" = "A bheil “Poblach” fainear dhut le cinnt?"; + +"oGiqmY-ehFLjY" = "A bheil “Luchd-leantainn a-mhàin” fainear dhut le cinnt?"; + +"rM6dvp" = "URL"; + +"ryJLwG" = "Chaidh am post a chur. "; diff --git a/MastodonIntent/gd-GB.lproj/Intents.stringsdict b/MastodonIntent/gd-GB.lproj/Intents.stringsdict new file mode 100644 index 000000000..5a39d5e64 --- /dev/null +++ b/MastodonIntent/gd-GB.lproj/Intents.stringsdict @@ -0,0 +1,54 @@ + + + + + There are ${count} options matching ‘${content}’. - 2 + + NSStringLocalizedFormatKey + There are %#@count_option@ matching ‘${content}’. + count_option + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + %ld + zero + 0 options + one + 1 option + two + 2 options + few + %ld options + many + %ld options + other + %ld options + + + There are ${count} options matching ‘${visibility}’. + + NSStringLocalizedFormatKey + There are %#@count_option@ matching ‘${visibility}’. + count_option + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + %ld + zero + 0 options + one + 1 option + two + 2 options + few + %ld options + many + %ld options + other + %ld options + + + + diff --git a/MastodonIntent/ja.lproj/Intents.stringsdict b/MastodonIntent/ja.lproj/Intents.stringsdict new file mode 100644 index 000000000..5a39d5e64 --- /dev/null +++ b/MastodonIntent/ja.lproj/Intents.stringsdict @@ -0,0 +1,54 @@ + + + + + There are ${count} options matching ‘${content}’. - 2 + + NSStringLocalizedFormatKey + There are %#@count_option@ matching ‘${content}’. + count_option + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + %ld + zero + 0 options + one + 1 option + two + 2 options + few + %ld options + many + %ld options + other + %ld options + + + There are ${count} options matching ‘${visibility}’. + + NSStringLocalizedFormatKey + There are %#@count_option@ matching ‘${visibility}’. + count_option + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + %ld + zero + 0 options + one + 1 option + two + 2 options + few + %ld options + many + %ld options + other + %ld options + + + + diff --git a/MastodonIntent/nl.lproj/Intents.stringsdict b/MastodonIntent/nl.lproj/Intents.stringsdict new file mode 100644 index 000000000..5a39d5e64 --- /dev/null +++ b/MastodonIntent/nl.lproj/Intents.stringsdict @@ -0,0 +1,54 @@ + + + + + There are ${count} options matching ‘${content}’. - 2 + + NSStringLocalizedFormatKey + There are %#@count_option@ matching ‘${content}’. + count_option + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + %ld + zero + 0 options + one + 1 option + two + 2 options + few + %ld options + many + %ld options + other + %ld options + + + There are ${count} options matching ‘${visibility}’. + + NSStringLocalizedFormatKey + There are %#@count_option@ matching ‘${visibility}’. + count_option + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + %ld + zero + 0 options + one + 1 option + two + 2 options + few + %ld options + many + %ld options + other + %ld options + + + + diff --git a/MastodonIntent/ru.lproj/Intents.strings b/MastodonIntent/ru.lproj/Intents.strings new file mode 100644 index 000000000..6877490ba --- /dev/null +++ b/MastodonIntent/ru.lproj/Intents.strings @@ -0,0 +1,51 @@ +"16wxgf" = "Post on Mastodon"; + +"751xkl" = "Text Content"; + +"CsR7G2" = "Post on Mastodon"; + +"HZSGTr" = "What content to post?"; + +"HdGikU" = "Posting failed"; + +"KDNTJ4" = "Failure Reason"; + +"RHxKOw" = "Send Post with text content"; + +"RxSqsb" = "Post"; + +"WCIR3D" = "Post ${content} on Mastodon"; + +"ZKJSNu" = "Post"; + +"ZS1XaK" = "${content}"; + +"ZbSjzC" = "Visibility"; + +"Zo4jgJ" = "Post Visibility"; + +"apSxMG-dYQ5NN" = "There are ${count} options matching ‘Public’."; + +"apSxMG-ehFLjY" = "There are ${count} options matching ‘Followers Only’."; + +"ayoYEb-dYQ5NN" = "${content}, Public"; + +"ayoYEb-ehFLjY" = "${content}, Followers Only"; + +"dUyuGg" = "Post on Mastodon"; + +"dYQ5NN" = "Public"; + +"ehFLjY" = "Followers Only"; + +"gfePDu" = "Posting failed. ${failureReason}"; + +"k7dbKQ" = "Post was sent successfully."; + +"oGiqmY-dYQ5NN" = "Just to confirm, you wanted ‘Public’?"; + +"oGiqmY-ehFLjY" = "Just to confirm, you wanted ‘Followers Only’?"; + +"rM6dvp" = "URL"; + +"ryJLwG" = "Post was sent successfully. "; diff --git a/MastodonIntent/ru.lproj/Intents.stringsdict b/MastodonIntent/ru.lproj/Intents.stringsdict new file mode 100644 index 000000000..5a39d5e64 --- /dev/null +++ b/MastodonIntent/ru.lproj/Intents.stringsdict @@ -0,0 +1,54 @@ + + + + + There are ${count} options matching ‘${content}’. - 2 + + NSStringLocalizedFormatKey + There are %#@count_option@ matching ‘${content}’. + count_option + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + %ld + zero + 0 options + one + 1 option + two + 2 options + few + %ld options + many + %ld options + other + %ld options + + + There are ${count} options matching ‘${visibility}’. + + NSStringLocalizedFormatKey + There are %#@count_option@ matching ‘${visibility}’. + count_option + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + %ld + zero + 0 options + one + 1 option + two + 2 options + few + %ld options + many + %ld options + other + %ld options + + + + diff --git a/MastodonIntent/th.lproj/Intents.strings b/MastodonIntent/th.lproj/Intents.strings new file mode 100644 index 000000000..d655b7952 --- /dev/null +++ b/MastodonIntent/th.lproj/Intents.strings @@ -0,0 +1,51 @@ +"16wxgf" = "โพสต์ใน Mastodon"; + +"751xkl" = "เนื้อหาข้อความ"; + +"CsR7G2" = "โพสต์ใน Mastodon"; + +"HZSGTr" = "เนื้อหาอะไรที่จะโพสต์?"; + +"HdGikU" = "การโพสต์ล้มเหลว"; + +"KDNTJ4" = "เหตุผลของความล้มเหลว"; + +"RHxKOw" = "ส่งโพสต์พร้อมเนื้อหาข้อความ"; + +"RxSqsb" = "โพสต์"; + +"WCIR3D" = "โพสต์ ${content} ใน Mastodon"; + +"ZKJSNu" = "โพสต์"; + +"ZS1XaK" = "${content}"; + +"ZbSjzC" = "การมองเห็น"; + +"Zo4jgJ" = "การมองเห็นโพสต์"; + +"apSxMG-dYQ5NN" = "มี ${count} ตัวเลือกที่ตรงกันกับ ‘สาธารณะ’"; + +"apSxMG-ehFLjY" = "มี ${count} ตัวเลือกที่ตรงกันกับ ‘ผู้ติดตามเท่านั้น’"; + +"ayoYEb-dYQ5NN" = "${content}, สาธารณะ"; + +"ayoYEb-ehFLjY" = "${content}, ผู้ติดตามเท่านั้น"; + +"dUyuGg" = "โพสต์ใน Mastodon"; + +"dYQ5NN" = "สาธารณะ"; + +"ehFLjY" = "ผู้ติดตามเท่านั้น"; + +"gfePDu" = "การโพสต์ล้มเหลว ${failureReason}"; + +"k7dbKQ" = "ส่งโพสต์สำเร็จ"; + +"oGiqmY-dYQ5NN" = "เพียงเพื่อยืนยัน คุณต้องการ ‘สาธารณะ’?"; + +"oGiqmY-ehFLjY" = "เพียงเพื่อยืนยัน คุณต้องการ ‘ผู้ติดตามเท่านั้น’?"; + +"rM6dvp" = "URL"; + +"ryJLwG" = "ส่งโพสต์สำเร็จ "; diff --git a/MastodonIntent/th.lproj/Intents.stringsdict b/MastodonIntent/th.lproj/Intents.stringsdict new file mode 100644 index 000000000..5a39d5e64 --- /dev/null +++ b/MastodonIntent/th.lproj/Intents.stringsdict @@ -0,0 +1,54 @@ + + + + + There are ${count} options matching ‘${content}’. - 2 + + NSStringLocalizedFormatKey + There are %#@count_option@ matching ‘${content}’. + count_option + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + %ld + zero + 0 options + one + 1 option + two + 2 options + few + %ld options + many + %ld options + other + %ld options + + + There are ${count} options matching ‘${visibility}’. + + NSStringLocalizedFormatKey + There are %#@count_option@ matching ‘${visibility}’. + count_option + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + %ld + zero + 0 options + one + 1 option + two + 2 options + few + %ld options + many + %ld options + other + %ld options + + + + diff --git a/MastodonIntent/zh-Hans.lproj/Intents.stringsdict b/MastodonIntent/zh-Hans.lproj/Intents.stringsdict new file mode 100644 index 000000000..5a39d5e64 --- /dev/null +++ b/MastodonIntent/zh-Hans.lproj/Intents.stringsdict @@ -0,0 +1,54 @@ + + + + + There are ${count} options matching ‘${content}’. - 2 + + NSStringLocalizedFormatKey + There are %#@count_option@ matching ‘${content}’. + count_option + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + %ld + zero + 0 options + one + 1 option + two + 2 options + few + %ld options + many + %ld options + other + %ld options + + + There are ${count} options matching ‘${visibility}’. + + NSStringLocalizedFormatKey + There are %#@count_option@ matching ‘${visibility}’. + count_option + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + %ld + zero + 0 options + one + 1 option + two + 2 options + few + %ld options + many + %ld options + other + %ld options + + + +