From b2b81e27e8296482cf7d0c81b2270c69b4432aa9 Mon Sep 17 00:00:00 2001 From: CMK Date: Fri, 29 Apr 2022 15:34:23 +0800 Subject: [PATCH] feat: add Chinese Traditional, Galician, Italian, and Turkish languages --- .../Sources/StringsConvertor/main.swift | 4 + Mastodon.xcodeproj/project.pbxproj | 28 ++ Mastodon/Resources/gl.lproj/InfoPlist.strings | 4 + Mastodon/Resources/it.lproj/InfoPlist.strings | 4 + Mastodon/Resources/tr.lproj/InfoPlist.strings | 4 + .../Resources/zh-Hant.lproj/InfoPlist.strings | 4 + MastodonIntent/gl.lproj/Intents.strings | 51 +++ MastodonIntent/gl.lproj/Intents.stringsdict | 54 +++ MastodonIntent/it.lproj/Intents.strings | 51 +++ MastodonIntent/it.lproj/Intents.stringsdict | 54 +++ MastodonIntent/tr.lproj/Intents.strings | 51 +++ MastodonIntent/tr.lproj/Intents.stringsdict | 54 +++ MastodonIntent/zh-Hant.lproj/Intents.strings | 51 +++ .../zh-Hant.lproj/Intents.stringsdict | 54 +++ .../Resources/gl.lproj/Localizable.strings | 392 +++++++++++++++++ .../gl.lproj/Localizable.stringsdict | 406 ++++++++++++++++++ .../Resources/it.lproj/Localizable.strings | 391 +++++++++++++++++ .../it.lproj/Localizable.stringsdict | 406 ++++++++++++++++++ .../Resources/tr.lproj/Localizable.strings | 391 +++++++++++++++++ .../tr.lproj/Localizable.stringsdict | 406 ++++++++++++++++++ .../zh-Hant.lproj/Localizable.strings | 387 +++++++++++++++++ .../zh-Hant.lproj/Localizable.stringsdict | 356 +++++++++++++++ 22 files changed, 3603 insertions(+) create mode 100644 Mastodon/Resources/gl.lproj/InfoPlist.strings create mode 100644 Mastodon/Resources/it.lproj/InfoPlist.strings create mode 100644 Mastodon/Resources/tr.lproj/InfoPlist.strings create mode 100644 Mastodon/Resources/zh-Hant.lproj/InfoPlist.strings create mode 100644 MastodonIntent/gl.lproj/Intents.strings create mode 100644 MastodonIntent/gl.lproj/Intents.stringsdict create mode 100644 MastodonIntent/it.lproj/Intents.strings create mode 100644 MastodonIntent/it.lproj/Intents.stringsdict create mode 100644 MastodonIntent/tr.lproj/Intents.strings create mode 100644 MastodonIntent/tr.lproj/Intents.stringsdict create mode 100644 MastodonIntent/zh-Hant.lproj/Intents.strings create mode 100644 MastodonIntent/zh-Hant.lproj/Intents.stringsdict create mode 100644 MastodonSDK/Sources/MastodonLocalization/Resources/gl.lproj/Localizable.strings create mode 100644 MastodonSDK/Sources/MastodonLocalization/Resources/gl.lproj/Localizable.stringsdict create mode 100644 MastodonSDK/Sources/MastodonLocalization/Resources/it.lproj/Localizable.strings create mode 100644 MastodonSDK/Sources/MastodonLocalization/Resources/it.lproj/Localizable.stringsdict create mode 100644 MastodonSDK/Sources/MastodonLocalization/Resources/tr.lproj/Localizable.strings create mode 100644 MastodonSDK/Sources/MastodonLocalization/Resources/tr.lproj/Localizable.stringsdict create mode 100644 MastodonSDK/Sources/MastodonLocalization/Resources/zh-Hant.lproj/Localizable.strings create mode 100644 MastodonSDK/Sources/MastodonLocalization/Resources/zh-Hant.lproj/Localizable.stringsdict diff --git a/Localization/StringsConvertor/Sources/StringsConvertor/main.swift b/Localization/StringsConvertor/Sources/StringsConvertor/main.swift index 6604884a4..e30cf56a5 100644 --- a/Localization/StringsConvertor/Sources/StringsConvertor/main.swift +++ b/Localization/StringsConvertor/Sources/StringsConvertor/main.swift @@ -51,10 +51,13 @@ private func map(language: String) -> String? { case "eu_ES": return "eu-ES" // Basque case "ca_ES": return "ca" // Catalan case "zh_CN": return "zh-Hans" // Chinese Simplified + case "zh_TW": return "zh-Hant" // Chinese Traditional case "nl_NL": return "nl" // Dutch case "en_US": return "en" case "fr_FR": return "fr" // French + case "gl_ES": return "gl" // Galician case "de_DE": return "de" // German + case "it_IT": return "it" // Italian case "ja_JP": return "ja" // Japanese case "kab_KAB": return "kab" // Kabyle case "kmr_TR": return "ku" // Kurmanji (Kurdish) @@ -66,6 +69,7 @@ private func map(language: String) -> String? { case "sv-SE": return "sv" // Swedish case "sv_FI": return "sv_FI" // Swedish, Finland case "th_TH": return "th" // Thai + case "tr_TR": return "tr" // Turkish case "vi_VN": return "vi" // Vietnamese default: return nil } diff --git a/Mastodon.xcodeproj/project.pbxproj b/Mastodon.xcodeproj/project.pbxproj index f2eeb9e37..2255c3d46 100644 --- a/Mastodon.xcodeproj/project.pbxproj +++ b/Mastodon.xcodeproj/project.pbxproj @@ -1030,6 +1030,18 @@ DB519B09281BCA2E00F0C99D /* ckb */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ckb; path = ckb.lproj/Intents.strings; sourceTree = ""; }; DB519B0A281BCA2E00F0C99D /* ckb */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ckb; path = ckb.lproj/InfoPlist.strings; sourceTree = ""; }; DB519B0B281BCA4300F0C99D /* ckb */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = ckb; path = ckb.lproj/Intents.stringsdict; sourceTree = ""; }; + DB519B0C281BCAC300F0C99D /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/Intents.strings"; sourceTree = ""; }; + DB519B0D281BCAC300F0C99D /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/InfoPlist.strings"; sourceTree = ""; }; + DB519B0E281BCAC300F0C99D /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = "zh-Hant"; path = "zh-Hant.lproj/Intents.stringsdict"; sourceTree = ""; }; + DB519B0F281BCB3300F0C99D /* gl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = gl; path = gl.lproj/Intents.strings; sourceTree = ""; }; + DB519B10281BCB3300F0C99D /* gl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = gl; path = gl.lproj/InfoPlist.strings; sourceTree = ""; }; + DB519B11281BCB3400F0C99D /* gl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = gl; path = gl.lproj/Intents.stringsdict; sourceTree = ""; }; + DB519B12281BCBC400F0C99D /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/Intents.strings; sourceTree = ""; }; + DB519B13281BCBC400F0C99D /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/InfoPlist.strings; sourceTree = ""; }; + DB519B14281BCBC400F0C99D /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = it; path = it.lproj/Intents.stringsdict; sourceTree = ""; }; + DB519B15281BCC2F00F0C99D /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/Intents.strings; sourceTree = ""; }; + DB519B16281BCC2F00F0C99D /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/InfoPlist.strings; sourceTree = ""; }; + DB519B17281BCC2F00F0C99D /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.stringsdict; name = tr; path = tr.lproj/Intents.stringsdict; sourceTree = ""; }; DB51D170262832380062B7A1 /* BlurHashDecode.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BlurHashDecode.swift; sourceTree = ""; }; DB51D171262832380062B7A1 /* BlurHashEncode.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BlurHashEncode.swift; sourceTree = ""; }; DB564BD2269F3B35001E39A7 /* StatusFilterService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StatusFilterService.swift; sourceTree = ""; }; @@ -3522,6 +3534,10 @@ vi, sv, ckb, + "zh-Hant", + gl, + it, + tr, ); mainGroup = DB427DC925BAA00100D1B89D; packageReferences = ( @@ -4468,6 +4484,10 @@ DBF81C7727F6913300004A56 /* vi */, DB8D8E3128196FA0009FD90F /* sv */, DB519B09281BCA2E00F0C99D /* ckb */, + DB519B0C281BCAC300F0C99D /* zh-Hant */, + DB519B0F281BCB3300F0C99D /* gl */, + DB519B12281BCBC400F0C99D /* it */, + DB519B15281BCC2F00F0C99D /* tr */, ); name = Intents.intentdefinition; sourceTree = ""; @@ -4495,6 +4515,10 @@ DBF81C7827F6913300004A56 /* vi */, DB8D8E3228196FA0009FD90F /* sv */, DB519B0A281BCA2E00F0C99D /* ckb */, + DB519B0D281BCAC300F0C99D /* zh-Hant */, + DB519B10281BCB3300F0C99D /* gl */, + DB519B13281BCBC400F0C99D /* it */, + DB519B16281BCC2F00F0C99D /* tr */, ); name = InfoPlist.strings; sourceTree = ""; @@ -4538,6 +4562,10 @@ DBF81C7927F6913300004A56 /* vi */, DB8D8E3328196FA0009FD90F /* sv */, DB519B0B281BCA4300F0C99D /* ckb */, + DB519B0E281BCAC300F0C99D /* zh-Hant */, + DB519B11281BCB3400F0C99D /* gl */, + DB519B14281BCBC400F0C99D /* it */, + DB519B17281BCC2F00F0C99D /* tr */, ); name = Intents.stringsdict; sourceTree = ""; diff --git a/Mastodon/Resources/gl.lproj/InfoPlist.strings b/Mastodon/Resources/gl.lproj/InfoPlist.strings new file mode 100644 index 000000000..710865573 --- /dev/null +++ b/Mastodon/Resources/gl.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/it.lproj/InfoPlist.strings b/Mastodon/Resources/it.lproj/InfoPlist.strings new file mode 100644 index 000000000..710865573 --- /dev/null +++ b/Mastodon/Resources/it.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/tr.lproj/InfoPlist.strings b/Mastodon/Resources/tr.lproj/InfoPlist.strings new file mode 100644 index 000000000..710865573 --- /dev/null +++ b/Mastodon/Resources/tr.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/zh-Hant.lproj/InfoPlist.strings b/Mastodon/Resources/zh-Hant.lproj/InfoPlist.strings new file mode 100644 index 000000000..710865573 --- /dev/null +++ b/Mastodon/Resources/zh-Hant.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/MastodonIntent/gl.lproj/Intents.strings b/MastodonIntent/gl.lproj/Intents.strings new file mode 100644 index 000000000..6877490ba --- /dev/null +++ b/MastodonIntent/gl.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/gl.lproj/Intents.stringsdict b/MastodonIntent/gl.lproj/Intents.stringsdict new file mode 100644 index 000000000..5a39d5e64 --- /dev/null +++ b/MastodonIntent/gl.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/it.lproj/Intents.strings b/MastodonIntent/it.lproj/Intents.strings new file mode 100644 index 000000000..d26aef14b --- /dev/null +++ b/MastodonIntent/it.lproj/Intents.strings @@ -0,0 +1,51 @@ +"16wxgf" = "Pubblica su Mastodon"; + +"751xkl" = "Contenuto testuale"; + +"CsR7G2" = "Pubblica su Mastodon"; + +"HZSGTr" = "Quale contenuto postare?"; + +"HdGikU" = "Pubblicazione non riuscita"; + +"KDNTJ4" = "Motivo del fallimento"; + +"RHxKOw" = "Invia post con contenuto testuale"; + +"RxSqsb" = "Pubblica"; + +"WCIR3D" = "Pubblica ${content} su Mastodon"; + +"ZKJSNu" = "Pubblica"; + +"ZS1XaK" = "${content}"; + +"ZbSjzC" = "Visibilità"; + +"Zo4jgJ" = "Visibilità del post"; + +"apSxMG-dYQ5NN" = "Ci sono ${count} opzioni corrispondenti a 'Pubblico'."; + +"apSxMG-ehFLjY" = "Ci sono ${count} opzioni corrispondenti a ‘Solo Seguaci’."; + +"ayoYEb-dYQ5NN" = "${content}, Pubblico"; + +"ayoYEb-ehFLjY" = "${content}, Solo seguaci"; + +"dUyuGg" = "Pubblica su Mastodon"; + +"dYQ5NN" = "Pubblico"; + +"ehFLjY" = "Solo i seguaci"; + +"gfePDu" = "Pubblicazione fallita. ${failureReason}"; + +"k7dbKQ" = "Post inviato con successo."; + +"oGiqmY-dYQ5NN" = "Solo per confermare, volevi ‘Pubblico’?"; + +"oGiqmY-ehFLjY" = "Solo per confermare, volevi 'Solo seguaci'?"; + +"rM6dvp" = "URL"; + +"ryJLwG" = "Post inviato con successo. "; diff --git a/MastodonIntent/it.lproj/Intents.stringsdict b/MastodonIntent/it.lproj/Intents.stringsdict new file mode 100644 index 000000000..5a39d5e64 --- /dev/null +++ b/MastodonIntent/it.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/tr.lproj/Intents.strings b/MastodonIntent/tr.lproj/Intents.strings new file mode 100644 index 000000000..dc60dee73 --- /dev/null +++ b/MastodonIntent/tr.lproj/Intents.strings @@ -0,0 +1,51 @@ +"16wxgf" = "Mastodon'da paylaş"; + +"751xkl" = "Metin içeriği"; + +"CsR7G2" = "Mastodon'da paylaş"; + +"HZSGTr" = "Ne içeriği paylaşılacak?"; + +"HdGikU" = "Gönderi paylaşılamadı"; + +"KDNTJ4" = "Hata Sebebi"; + +"RHxKOw" = "Metin içeriği ile gönderiyi paylaş"; + +"RxSqsb" = "Gönderi"; + +"WCIR3D" = "${content} içeriğini Mastodon'da paylaş"; + +"ZKJSNu" = "Gönderi"; + +"ZS1XaK" = "${content}"; + +"ZbSjzC" = "Gizlilik"; + +"Zo4jgJ" = "Gönderi Gizliliği"; + +"apSxMG-dYQ5NN" = "\"Herkese açık\" ile eşleşen ${count} seçenek var."; + +"apSxMG-ehFLjY" = "\"Sadece takipçiler\" ile eşleşen ${count} seçenek var."; + +"ayoYEb-dYQ5NN" = "${content}, Herkese açık"; + +"ayoYEb-ehFLjY" = "${content}, Sadece takipçiler"; + +"dUyuGg" = "Mastodon'da paylaş"; + +"dYQ5NN" = "Herkese açık"; + +"ehFLjY" = "Sadece takipçiler"; + +"gfePDu" = "Gönderi paylaşılamadı. ${failureReason}"; + +"k7dbKQ" = "Gönderi başarıyla paylaşıldı."; + +"oGiqmY-dYQ5NN" = "\"Herkese açık\" paylaşmak istediğinize emin misiniz?"; + +"oGiqmY-ehFLjY" = "\"Sadece takipçiler\" için paylaşmak istediğinize emin misiniz?"; + +"rM6dvp" = "Bağlantı"; + +"ryJLwG" = "Gönderi başarıyla paylaşıldı. "; diff --git a/MastodonIntent/tr.lproj/Intents.stringsdict b/MastodonIntent/tr.lproj/Intents.stringsdict new file mode 100644 index 000000000..5a39d5e64 --- /dev/null +++ b/MastodonIntent/tr.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-Hant.lproj/Intents.strings b/MastodonIntent/zh-Hant.lproj/Intents.strings new file mode 100644 index 000000000..a45a5f511 --- /dev/null +++ b/MastodonIntent/zh-Hant.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" = "網址"; + +"ryJLwG" = "成功發出嘟文。 "; diff --git a/MastodonIntent/zh-Hant.lproj/Intents.stringsdict b/MastodonIntent/zh-Hant.lproj/Intents.stringsdict new file mode 100644 index 000000000..5a39d5e64 --- /dev/null +++ b/MastodonIntent/zh-Hant.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/MastodonSDK/Sources/MastodonLocalization/Resources/gl.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/gl.lproj/Localizable.strings new file mode 100644 index 000000000..a0a33a58f --- /dev/null +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/gl.lproj/Localizable.strings @@ -0,0 +1,392 @@ +"Common.Alerts.BlockDomain.BlockEntireDomain" = "Bloquear Dominio"; +"Common.Alerts.BlockDomain.Title" = "Tes a certeza de querer bloquear todo de %@? Na meirande parte dos casos uns bloqueos ou silenciados específicos son suficientes e preferibles. Non verás máis o contido deste dominio en ningunha cronoloxía pública e as túas seguidoras deste dominio serán eliminadas."; +"Common.Alerts.CleanCache.Message" = "Baleirouse %@ da caché correctamente."; +"Common.Alerts.CleanCache.Title" = "Limpar caché"; +"Common.Alerts.Common.PleaseTryAgain" = "Inténtao de novo."; +"Common.Alerts.Common.PleaseTryAgainLater" = "Inténtao de novo máis tarde."; +"Common.Alerts.DeletePost.Message" = "Tes a certeza de querer eliminar esta publicación?"; +"Common.Alerts.DeletePost.Title" = "Eliminar publicación"; +"Common.Alerts.DiscardPostContent.Message" = "Confirma que queres descartar o contido do borrador."; +"Common.Alerts.DiscardPostContent.Title" = "Descartar Borrador"; +"Common.Alerts.EditProfileFailure.Message" = "Non se editou o perfil. Inténtao máis tarde."; +"Common.Alerts.EditProfileFailure.Title" = "Erro ao editar o perfil"; +"Common.Alerts.PublishPostFailure.AttachmentsMessage.MoreThanOneVideo" = "Non podes anexar máis de un vídeo."; +"Common.Alerts.PublishPostFailure.AttachmentsMessage.VideoAttachWithPhoto" = "Non podes anexar un vídeo a unha publicación que xa contén imaxes."; +"Common.Alerts.PublishPostFailure.Message" = "Fallou a publicación. +Comproba a conexión a internet."; +"Common.Alerts.PublishPostFailure.Title" = "Fallou a publicación"; +"Common.Alerts.SavePhotoFailure.Message" = "Activa o permiso de acceso á galería de fotos para gardar a foto."; +"Common.Alerts.SavePhotoFailure.Title" = "Erro ao gardar a fotografía"; +"Common.Alerts.ServerError.Title" = "Erro do servidor"; +"Common.Alerts.SignOut.Confirm" = "Pechar sesión"; +"Common.Alerts.SignOut.Message" = "Tes a certeza de queres pechar a sesión?"; +"Common.Alerts.SignOut.Title" = "Pechar sesión"; +"Common.Alerts.SignUpFailure.Title" = "Fallou o rexistro"; +"Common.Alerts.VoteFailure.PollEnded" = "A enquisa rematou"; +"Common.Alerts.VoteFailure.Title" = "Fallou a votación"; +"Common.Controls.Actions.Add" = "Engadir"; +"Common.Controls.Actions.Back" = "Volver"; +"Common.Controls.Actions.BlockDomain" = "Bloquear a %@"; +"Common.Controls.Actions.Cancel" = "Cancelar"; +"Common.Controls.Actions.Compose" = "Escribir"; +"Common.Controls.Actions.Confirm" = "Confirmar"; +"Common.Controls.Actions.Continue" = "Continuar"; +"Common.Controls.Actions.CopyPhoto" = "Copiar foto"; +"Common.Controls.Actions.Delete" = "Eliminar"; +"Common.Controls.Actions.Discard" = "Descartar"; +"Common.Controls.Actions.Done" = "Feito"; +"Common.Controls.Actions.Edit" = "Editar"; +"Common.Controls.Actions.FindPeople" = "Atopar persoas para seguir"; +"Common.Controls.Actions.ManuallySearch" = "Buscar de xeito manual"; +"Common.Controls.Actions.Next" = "Seguinte"; +"Common.Controls.Actions.Ok" = "OK"; +"Common.Controls.Actions.Open" = "Abrir"; +"Common.Controls.Actions.OpenInBrowser" = "Abrir no navegador"; +"Common.Controls.Actions.OpenInSafari" = "Abrir en Safari"; +"Common.Controls.Actions.Preview" = "Vista previa"; +"Common.Controls.Actions.Previous" = "Anterior"; +"Common.Controls.Actions.Remove" = "Eliminar"; +"Common.Controls.Actions.Reply" = "Responder"; +"Common.Controls.Actions.ReportUser" = "Denunciar a %@"; +"Common.Controls.Actions.Save" = "Gardar"; +"Common.Controls.Actions.SavePhoto" = "Gardar foto"; +"Common.Controls.Actions.SeeMore" = "Ver máis"; +"Common.Controls.Actions.Settings" = "Axustes"; +"Common.Controls.Actions.Share" = "Compartir"; +"Common.Controls.Actions.SharePost" = "Compartir publicación"; +"Common.Controls.Actions.ShareUser" = "Compartir %@"; +"Common.Controls.Actions.SignIn" = "Acceder"; +"Common.Controls.Actions.SignUp" = "Inscribirse"; +"Common.Controls.Actions.Skip" = "Omitir"; +"Common.Controls.Actions.TakePhoto" = "Facer foto"; +"Common.Controls.Actions.TryAgain" = "Intentar de novo"; +"Common.Controls.Actions.UnblockDomain" = "Desbloquear a %@"; +"Common.Controls.Friendship.Block" = "Bloquear"; +"Common.Controls.Friendship.BlockDomain" = "Bloquear a %@"; +"Common.Controls.Friendship.BlockUser" = "Bloquear a %@"; +"Common.Controls.Friendship.Blocked" = "Bloqueada"; +"Common.Controls.Friendship.EditInfo" = "Editar info"; +"Common.Controls.Friendship.Follow" = "Seguir"; +"Common.Controls.Friendship.Following" = "Seguindo"; +"Common.Controls.Friendship.Mute" = "Acalar"; +"Common.Controls.Friendship.MuteUser" = "Acalar a %@"; +"Common.Controls.Friendship.Muted" = "Acalada"; +"Common.Controls.Friendship.Pending" = "Pendente"; +"Common.Controls.Friendship.Request" = "Solicitar"; +"Common.Controls.Friendship.Unblock" = "Desbloquear"; +"Common.Controls.Friendship.UnblockUser" = "Desbloquear a %@"; +"Common.Controls.Friendship.Unmute" = "Non Acalar"; +"Common.Controls.Friendship.UnmuteUser" = "Deixar de acalar a @%@"; +"Common.Controls.Keyboard.Common.ComposeNewPost" = "Escribir Nova publicación"; +"Common.Controls.Keyboard.Common.OpenSettings" = "Abrir axustes"; +"Common.Controls.Keyboard.Common.ShowFavorites" = "Mostrar Favoritos"; +"Common.Controls.Keyboard.Common.SwitchToTab" = "Cambiar a %@"; +"Common.Controls.Keyboard.SegmentedControl.NextSection" = "Sección seguinte"; +"Common.Controls.Keyboard.SegmentedControl.PreviousSection" = "Sección anterior"; +"Common.Controls.Keyboard.Timeline.NextStatus" = "Publicación seguinte"; +"Common.Controls.Keyboard.Timeline.OpenAuthorProfile" = "Ver Perfil da autora"; +"Common.Controls.Keyboard.Timeline.OpenRebloggerProfile" = "Ver perfil de quen promoveu"; +"Common.Controls.Keyboard.Timeline.OpenStatus" = "Abrir publicación"; +"Common.Controls.Keyboard.Timeline.PreviewImage" = "Previsualización da imaxe"; +"Common.Controls.Keyboard.Timeline.PreviousStatus" = "Publicación anterior"; +"Common.Controls.Keyboard.Timeline.ReplyStatus" = "Responder á publicación"; +"Common.Controls.Keyboard.Timeline.ToggleContentWarning" = "Marcar con Aviso sobre o contido"; +"Common.Controls.Keyboard.Timeline.ToggleFavorite" = "Engadir publicación a Favoritas"; +"Common.Controls.Keyboard.Timeline.ToggleReblog" = "Promover a publicación"; +"Common.Controls.Status.Actions.Favorite" = "Favorecer"; +"Common.Controls.Status.Actions.Hide" = "Agochar"; +"Common.Controls.Status.Actions.Menu" = "Menú"; +"Common.Controls.Status.Actions.Reblog" = "Promover"; +"Common.Controls.Status.Actions.Reply" = "Responder"; +"Common.Controls.Status.Actions.ShowGif" = "Mostrar GIF"; +"Common.Controls.Status.Actions.ShowImage" = "Mostrar a imaxe"; +"Common.Controls.Status.Actions.ShowVideoPlayer" = "Mostrar reprodutor de vídeo"; +"Common.Controls.Status.Actions.TapThenHoldToShowMenu" = "Toca e mantén preso para menú"; +"Common.Controls.Status.Actions.Unfavorite" = "Eliminar dos favoritos"; +"Common.Controls.Status.Actions.Unreblog" = "Retirar promoción"; +"Common.Controls.Status.ContentWarning" = "Aviso sobre o contido"; +"Common.Controls.Status.MediaContentWarning" = "Toca nalgures para mostrar"; +"Common.Controls.Status.Poll.Closed" = "Pechada"; +"Common.Controls.Status.Poll.Vote" = "Votar"; +"Common.Controls.Status.SensitiveContent" = "Contido sensible"; +"Common.Controls.Status.ShowPost" = "Mostrar publicación"; +"Common.Controls.Status.ShowUserProfile" = "Mostrar perfil da usuaria"; +"Common.Controls.Status.Tag.Email" = "Email"; +"Common.Controls.Status.Tag.Emoji" = "Emoticona"; +"Common.Controls.Status.Tag.Hashtag" = "Cancelo"; +"Common.Controls.Status.Tag.Link" = "Ligazón"; +"Common.Controls.Status.Tag.Mention" = "Mención"; +"Common.Controls.Status.Tag.Url" = "URL"; +"Common.Controls.Status.TapToReveal" = "Toca para mostrar"; +"Common.Controls.Status.UserReblogged" = "%@ promoveu"; +"Common.Controls.Status.UserRepliedTo" = "Respondeu a %@"; +"Common.Controls.Status.Visibility.Direct" = "Só a usuaria mencionada pode ver a publicación."; +"Common.Controls.Status.Visibility.Private" = "Só as seguidoras poden ver a publicación."; +"Common.Controls.Status.Visibility.PrivateFromMe" = "Só as miñas seguidoras poden ver esta publicación."; +"Common.Controls.Status.Visibility.Unlisted" = "A publicación é visible para calquera pero non aparece na cronoloxía pública."; +"Common.Controls.Tabs.Home" = "Inicio"; +"Common.Controls.Tabs.Notification" = "Notificación"; +"Common.Controls.Tabs.Profile" = "Perfil"; +"Common.Controls.Tabs.Search" = "Busca"; +"Common.Controls.Timeline.Filtered" = "Filtrado"; +"Common.Controls.Timeline.Header.BlockedWarning" = "You can’t view this user’s profile +until they unblock you."; +"Common.Controls.Timeline.Header.BlockingWarning" = "Non podes ver o perfil da usuaria +ata que a desbloquees. +Así ven outras o teu perfil."; +"Common.Controls.Timeline.Header.NoStatusFound" = "Non se atopa a publicación"; +"Common.Controls.Timeline.Header.SuspendedWarning" = "This user has been suspended."; +"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" = "%@’s account has been suspended."; +"Common.Controls.Timeline.Loader.LoadMissingPosts" = "Cargar publicacións que faltan"; +"Common.Controls.Timeline.Loader.LoadingMissingPosts" = "Cargando as publicacións que faltan..."; +"Common.Controls.Timeline.Loader.ShowMoreReplies" = "Mostrar máis respostas"; +"Common.Controls.Timeline.Timestamp.Now" = "Agora"; +"Scene.AccountList.AddAccount" = "Add Account"; +"Scene.AccountList.DismissAccountSwitcher" = "Dismiss Account Switcher"; +"Scene.AccountList.TabBarHint" = "Current selected profile: %@. Double tap then hold to show account switcher"; +"Scene.Compose.Accessibility.AppendAttachment" = "Engadir anexo"; +"Scene.Compose.Accessibility.AppendPoll" = "Engadir enquisa"; +"Scene.Compose.Accessibility.CustomEmojiPicker" = "Selector emoji personalizado"; +"Scene.Compose.Accessibility.DisableContentWarning" = "Retirar Aviso sobre o contido"; +"Scene.Compose.Accessibility.EnableContentWarning" = "Marcar con Aviso sobre o contido"; +"Scene.Compose.Accessibility.PostVisibilityMenu" = "Visibilidade da publicación"; +"Scene.Compose.Accessibility.RemovePoll" = "Eliminar enquisa"; +"Scene.Compose.Attachment.AttachmentBroken" = "This %@ is broken and can’t be +uploaded to Mastodon."; +"Scene.Compose.Attachment.DescriptionPhoto" = "Describe the photo for the visually-impaired..."; +"Scene.Compose.Attachment.DescriptionVideo" = "Describe the video for the visually-impaired..."; +"Scene.Compose.Attachment.Photo" = "photo"; +"Scene.Compose.Attachment.Video" = "video"; +"Scene.Compose.AutoComplete.SpaceToAdd" = "Barra de espazo engade"; +"Scene.Compose.ComposeAction" = "Publish"; +"Scene.Compose.ContentInputPlaceholder" = "Type or paste what’s on your mind"; +"Scene.Compose.ContentWarning.Placeholder" = "Escribe o teu aviso aquí..."; +"Scene.Compose.Keyboard.AppendAttachmentEntry" = "Engadir anexo - %@"; +"Scene.Compose.Keyboard.DiscardPost" = "Descartar publicación"; +"Scene.Compose.Keyboard.PublishPost" = "Publicar"; +"Scene.Compose.Keyboard.SelectVisibilityEntry" = "Elexir visibilidade - %@"; +"Scene.Compose.Keyboard.ToggleContentWarning" = "Marcar con Aviso sobre o contido"; +"Scene.Compose.Keyboard.TogglePoll" = "Activar enquisa"; +"Scene.Compose.MediaSelection.Browse" = "Browse"; +"Scene.Compose.MediaSelection.Camera" = "Take Photo"; +"Scene.Compose.MediaSelection.PhotoLibrary" = "Photo Library"; +"Scene.Compose.Poll.DurationTime" = "Duration: %@"; +"Scene.Compose.Poll.OneDay" = "1 Día"; +"Scene.Compose.Poll.OneHour" = "1 Hour"; +"Scene.Compose.Poll.OptionNumber" = "Opción %ld"; +"Scene.Compose.Poll.SevenDays" = "7 Días"; +"Scene.Compose.Poll.SixHours" = "6 Hours"; +"Scene.Compose.Poll.ThirtyMinutes" = "30 minutes"; +"Scene.Compose.Poll.ThreeDays" = "3 Días"; +"Scene.Compose.ReplyingToUser" = "replying to %@"; +"Scene.Compose.Title.NewPost" = "New Post"; +"Scene.Compose.Title.NewReply" = "New Reply"; +"Scene.Compose.Visibility.Direct" = "Só para persoas mencionadas"; +"Scene.Compose.Visibility.Private" = "Só para seguidoras"; +"Scene.Compose.Visibility.Public" = "Público"; +"Scene.Compose.Visibility.Unlisted" = "Non listado"; +"Scene.ConfirmEmail.Button.OpenEmailApp" = "Open Email App"; +"Scene.ConfirmEmail.Button.Resend" = "Resend"; +"Scene.ConfirmEmail.DontReceiveEmail.Description" = "Check if your email address is correct as well as your junk folder if you haven’t."; +"Scene.ConfirmEmail.DontReceiveEmail.ResendEmail" = "Resend Email"; +"Scene.ConfirmEmail.DontReceiveEmail.Title" = "Check your email"; +"Scene.ConfirmEmail.OpenEmailApp.Description" = "We just sent you an email. Check your junk folder if you haven’t."; +"Scene.ConfirmEmail.OpenEmailApp.Mail" = "Mail"; +"Scene.ConfirmEmail.OpenEmailApp.OpenEmailClient" = "Open Email Client"; +"Scene.ConfirmEmail.OpenEmailApp.Title" = "Check your inbox."; +"Scene.ConfirmEmail.Subtitle" = "Tap the link we emailed to you to verify your account."; +"Scene.ConfirmEmail.Title" = "One last thing."; +"Scene.Discovery.Intro" = "These are the posts gaining traction in your corner of Mastodon."; +"Scene.Discovery.Tabs.Community" = "Comunidade"; +"Scene.Discovery.Tabs.ForYou" = "For You"; +"Scene.Discovery.Tabs.Hashtags" = "Cancelos"; +"Scene.Discovery.Tabs.News" = "Novas"; +"Scene.Discovery.Tabs.Posts" = "Publicacións"; +"Scene.Favorite.Title" = "Your Favorites"; +"Scene.Follower.Footer" = "Non se mostran seguidoras desde outros servidores."; +"Scene.Following.Footer" = "Non se mostran os seguimentos desde outros servidores."; +"Scene.HomeTimeline.NavigationBarState.NewPosts" = "See new posts"; +"Scene.HomeTimeline.NavigationBarState.Offline" = "Offline"; +"Scene.HomeTimeline.NavigationBarState.Published" = "Published!"; +"Scene.HomeTimeline.NavigationBarState.Publishing" = "Publishing post..."; +"Scene.HomeTimeline.Title" = "Home"; +"Scene.Notification.Keyobard.ShowEverything" = "Show Everything"; +"Scene.Notification.Keyobard.ShowMentions" = "Show Mentions"; +"Scene.Notification.NotificationDescription.FavoritedYourPost" = "favorited your post"; +"Scene.Notification.NotificationDescription.FollowedYou" = "followed you"; +"Scene.Notification.NotificationDescription.MentionedYou" = "mentioned you"; +"Scene.Notification.NotificationDescription.PollHasEnded" = "poll has ended"; +"Scene.Notification.NotificationDescription.RebloggedYourPost" = "reblogged your post"; +"Scene.Notification.NotificationDescription.RequestToFollowYou" = "request to follow you"; +"Scene.Notification.Title.Everything" = "Everything"; +"Scene.Notification.Title.Mentions" = "Mentions"; +"Scene.Preview.Keyboard.ClosePreview" = "Pechar vista previa"; +"Scene.Preview.Keyboard.ShowNext" = "Mostrar Seguinte"; +"Scene.Preview.Keyboard.ShowPrevious" = "Mostar Anterior"; +"Scene.Profile.Accessibility.DoubleTapToOpenTheList" = "Dous toques para abrir a lista"; +"Scene.Profile.Accessibility.EditAvatarImage" = "Editar imaxe de avatar"; +"Scene.Profile.Accessibility.ShowAvatarImage" = "Mostrar imaxe de avatar"; +"Scene.Profile.Accessibility.ShowBannerImage" = "Mostrar imaxe de cabeceira"; +"Scene.Profile.Dashboard.Followers" = "seguidoras"; +"Scene.Profile.Dashboard.Following" = "seguindo"; +"Scene.Profile.Dashboard.Posts" = "publicacións"; +"Scene.Profile.Fields.AddRow" = "Engadir fila"; +"Scene.Profile.Fields.Placeholder.Content" = "Contido"; +"Scene.Profile.Fields.Placeholder.Label" = "Etiqueta"; +"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Confirma o bloqueo de %@"; +"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Bloquear Conta"; +"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Message" = "Confirma Acalar a %@"; +"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Acalar conta"; +"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Confirma o desbloqueo de %@"; +"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Desbloquear Conta"; +"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Confirma restablecer a %@"; +"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Title" = "Retirar acalado da Conta"; +"Scene.Profile.SegmentedControl.About" = "Acerca de"; +"Scene.Profile.SegmentedControl.Media" = "Multimedia"; +"Scene.Profile.SegmentedControl.Posts" = "Publicacións"; +"Scene.Profile.SegmentedControl.PostsAndReplies" = "Publicacións e respostas"; +"Scene.Profile.SegmentedControl.Replies" = "Respostas"; +"Scene.Register.Error.Item.Agreement" = "Acordo"; +"Scene.Register.Error.Item.Email" = "Email"; +"Scene.Register.Error.Item.Locale" = "Locale"; +"Scene.Register.Error.Item.Password" = "Contrasinal"; +"Scene.Register.Error.Item.Reason" = "Razón"; +"Scene.Register.Error.Item.Username" = "Identificador"; +"Scene.Register.Error.Reason.Accepted" = "%@ debe ser aceptado"; +"Scene.Register.Error.Reason.Blank" = "%@ é requerido"; +"Scene.Register.Error.Reason.Blocked" = "%@ é un provedor de email non autorizado"; +"Scene.Register.Error.Reason.Inclusion" = "%@ non é un valor soportado"; +"Scene.Register.Error.Reason.Invalid" = "%@ non é válido"; +"Scene.Register.Error.Reason.Reserved" = "%@ é unha palabra reservada"; +"Scene.Register.Error.Reason.Taken" = "%@ xa está en uso"; +"Scene.Register.Error.Reason.TooLong" = "%@ é demasiado longo"; +"Scene.Register.Error.Reason.TooShort" = "%@ é demasiado curto"; +"Scene.Register.Error.Reason.Unreachable" = "%@ semella que non existe"; +"Scene.Register.Error.Special.EmailInvalid" = "This is not a valid email address"; +"Scene.Register.Error.Special.PasswordTooShort" = "Password is too short (must be at least 8 characters)"; +"Scene.Register.Error.Special.UsernameInvalid" = "O nome de usuaria só pode ter caracteres alfanuméricos e trazos baixos"; +"Scene.Register.Error.Special.UsernameTooLong" = "Username is too long (can’t be longer than 30 characters)"; +"Scene.Register.Input.Avatar.Delete" = "Eliminar"; +"Scene.Register.Input.DisplayName.Placeholder" = "nome público"; +"Scene.Register.Input.Email.Placeholder" = "email"; +"Scene.Register.Input.Invite.RegistrationUserInviteRequest" = "Por que queres unirte?"; +"Scene.Register.Input.Password.Accessibility.Checked" = "validado"; +"Scene.Register.Input.Password.Accessibility.Unchecked" = "non validado"; +"Scene.Register.Input.Password.CharacterLimit" = "8 caracteres"; +"Scene.Register.Input.Password.Hint" = "O teu contrasinal debe ter cando menos oito caracteres"; +"Scene.Register.Input.Password.Placeholder" = "contrasinal"; +"Scene.Register.Input.Password.Require" = "O contrasinal debe ter polo menos:"; +"Scene.Register.Input.Username.DuplicatePrompt" = "Este nome de usuaria xa está en uso."; +"Scene.Register.Input.Username.Placeholder" = "identificador"; +"Scene.Register.Title" = "Imos crear a túa conta en %@"; +"Scene.Report.Content1" = "Hai outras publicacións que desexes engadir á denuncia?"; +"Scene.Report.Content2" = "Hai algo que a moderación deba saber acerca desta denuncia?"; +"Scene.Report.ReportSentTitle" = "Grazas pola denuncia, investigarémola."; +"Scene.Report.Reported" = "DENUNCIADO"; +"Scene.Report.Send" = "Enviar Denuncia"; +"Scene.Report.SkipToSend" = "Enviar sen comentarios"; +"Scene.Report.Step1" = "Paso 1 de 2"; +"Scene.Report.Step2" = "Paso 2 de 2"; +"Scene.Report.TextPlaceholder" = "Escribe ou pega comentarios adicionais"; +"Scene.Report.Title" = "Denunciar a %@"; +"Scene.Report.TitleReport" = "Denunciar"; +"Scene.Search.Recommend.Accounts.Description" = "Mira se che interesan estas contas"; +"Scene.Search.Recommend.Accounts.Follow" = "Seguir"; +"Scene.Search.Recommend.Accounts.Title" = "Contas que poderían gustarche"; +"Scene.Search.Recommend.ButtonText" = "Ver todo"; +"Scene.Search.Recommend.HashTag.Description" = "Cancelos que están recibindo moita atención"; +"Scene.Search.Recommend.HashTag.PeopleTalking" = "%@ persoas están comentando"; +"Scene.Search.Recommend.HashTag.Title" = "En voga en Mastodon"; +"Scene.Search.SearchBar.Cancel" = "Cancelar"; +"Scene.Search.SearchBar.Placeholder" = "Buscar cancelos e usuarias"; +"Scene.Search.Searching.Clear" = "Limpar"; +"Scene.Search.Searching.EmptyState.NoResults" = "Sen resultados"; +"Scene.Search.Searching.RecentSearch" = "Buscas recentes"; +"Scene.Search.Searching.Segment.All" = "Todo"; +"Scene.Search.Searching.Segment.Hashtags" = "Cancelos"; +"Scene.Search.Searching.Segment.People" = "Persoas"; +"Scene.Search.Searching.Segment.Posts" = "Publicacións"; +"Scene.Search.Title" = "Procurar"; +"Scene.ServerPicker.Button.Category.Academia" = "academia"; +"Scene.ServerPicker.Button.Category.Activism" = "activismo"; +"Scene.ServerPicker.Button.Category.All" = "Todo"; +"Scene.ServerPicker.Button.Category.AllAccessiblityDescription" = "Categoría: Todo"; +"Scene.ServerPicker.Button.Category.Art" = "arte"; +"Scene.ServerPicker.Button.Category.Food" = "comida"; +"Scene.ServerPicker.Button.Category.Furry" = "peluxos"; +"Scene.ServerPicker.Button.Category.Games" = "xogos"; +"Scene.ServerPicker.Button.Category.General" = "xeral"; +"Scene.ServerPicker.Button.Category.Journalism" = "xornalismo"; +"Scene.ServerPicker.Button.Category.Lgbt" = "lgbt"; +"Scene.ServerPicker.Button.Category.Music" = "música"; +"Scene.ServerPicker.Button.Category.Regional" = "rexional"; +"Scene.ServerPicker.Button.Category.Tech" = "tecnoloxía"; +"Scene.ServerPicker.Button.SeeLess" = "Ver menos"; +"Scene.ServerPicker.Button.SeeMore" = "Ver máis"; +"Scene.ServerPicker.EmptyState.BadNetwork" = "Algo fallou ao cargar os datos. Comproba a conexión a internet."; +"Scene.ServerPicker.EmptyState.FindingServers" = "Buscando servidores dispoñibles..."; +"Scene.ServerPicker.EmptyState.NoResults" = "Sen resultados"; +"Scene.ServerPicker.Input.Placeholder" = "Buscar comunidades"; +"Scene.ServerPicker.Label.Category" = "CATEGORÍA"; +"Scene.ServerPicker.Label.Language" = "IDIOMA"; +"Scene.ServerPicker.Label.Users" = "USUARIAS"; +"Scene.ServerPicker.Subtitle" = "Elixe unha comunidade en función dos teus intereses, rexión ou unha de propósito xeral."; +"Scene.ServerPicker.SubtitleExtend" = "Elixe unha comunidade en función dos teus intereses, rexión ou unha de propósito xeral. Cada comunidade está xestionada por unha organización totalmente independente ou unha única persoa."; +"Scene.ServerPicker.Title" = "Mastodon fórmano as persoas das diferentes comunidades."; +"Scene.ServerRules.Button.Confirm" = "I Agree"; +"Scene.ServerRules.PrivacyPolicy" = "privacy policy"; +"Scene.ServerRules.Prompt" = "By continuing, you’re subject to the terms of service and privacy policy for %@."; +"Scene.ServerRules.Subtitle" = "These are set and enforced by the %@ moderators."; +"Scene.ServerRules.TermsOfService" = "terms of service"; +"Scene.ServerRules.Title" = "Some ground rules."; +"Scene.Settings.Footer.MastodonDescription" = "Mastodon is open source software. You can report issues on GitHub at %@ (%@)"; +"Scene.Settings.Keyboard.CloseSettingsWindow" = "Close Settings Window"; +"Scene.Settings.Section.Appearance.Automatic" = "Automatic"; +"Scene.Settings.Section.Appearance.Dark" = "Always Dark"; +"Scene.Settings.Section.Appearance.Light" = "Always Light"; +"Scene.Settings.Section.Appearance.Title" = "Appearance"; +"Scene.Settings.Section.BoringZone.AccountSettings" = "Account Settings"; +"Scene.Settings.Section.BoringZone.Privacy" = "Privacy Policy"; +"Scene.Settings.Section.BoringZone.Terms" = "Terms of Service"; +"Scene.Settings.Section.BoringZone.Title" = "The Boring Zone"; +"Scene.Settings.Section.LookAndFeel.Light" = "Light"; +"Scene.Settings.Section.LookAndFeel.ReallyDark" = "Really Dark"; +"Scene.Settings.Section.LookAndFeel.SortaDark" = "Sorta Dark"; +"Scene.Settings.Section.LookAndFeel.Title" = "Look and Feel"; +"Scene.Settings.Section.LookAndFeel.UseSystem" = "Use System"; +"Scene.Settings.Section.Notifications.Boosts" = "Reblogs my post"; +"Scene.Settings.Section.Notifications.Favorites" = "Favorites my post"; +"Scene.Settings.Section.Notifications.Follows" = "Follows me"; +"Scene.Settings.Section.Notifications.Mentions" = "Mentions me"; +"Scene.Settings.Section.Notifications.Title" = "Notifications"; +"Scene.Settings.Section.Notifications.Trigger.Anyone" = "anyone"; +"Scene.Settings.Section.Notifications.Trigger.Follow" = "anyone I follow"; +"Scene.Settings.Section.Notifications.Trigger.Follower" = "a follower"; +"Scene.Settings.Section.Notifications.Trigger.Noone" = "no one"; +"Scene.Settings.Section.Notifications.Trigger.Title" = "Notify me when"; +"Scene.Settings.Section.Preference.DisableAvatarAnimation" = "Disable animated avatars"; +"Scene.Settings.Section.Preference.DisableEmojiAnimation" = "Disable animated emojis"; +"Scene.Settings.Section.Preference.OpenLinksInMastodon" = "Open links in Mastodon"; +"Scene.Settings.Section.Preference.Title" = "Preferences"; +"Scene.Settings.Section.Preference.TrueBlackDarkMode" = "True black dark mode"; +"Scene.Settings.Section.Preference.UsingDefaultBrowser" = "Use default browser to open links"; +"Scene.Settings.Section.SpicyZone.Clear" = "Clear Media Cache"; +"Scene.Settings.Section.SpicyZone.Signout" = "Sign Out"; +"Scene.Settings.Section.SpicyZone.Title" = "The Spicy Zone"; +"Scene.Settings.Title" = "Settings"; +"Scene.SuggestionAccount.FollowExplain" = "When you follow someone, you’ll see their posts in your home feed."; +"Scene.SuggestionAccount.Title" = "Find People to Follow"; +"Scene.Thread.BackTitle" = "Post"; +"Scene.Thread.Title" = "Post from %@"; +"Scene.Welcome.GetStarted" = "Comezar"; +"Scene.Welcome.LogIn" = "Acceder"; +"Scene.Welcome.Slogan" = "Social networking +back in your hands."; +"Scene.Wizard.AccessibilityHint" = "Double tap to dismiss this wizard"; +"Scene.Wizard.MultipleAccountSwitchIntroDescription" = "Switch between multiple accounts by holding the profile button."; +"Scene.Wizard.NewInMastodon" = "New in Mastodon"; \ No newline at end of file diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/gl.lproj/Localizable.stringsdict b/MastodonSDK/Sources/MastodonLocalization/Resources/gl.lproj/Localizable.stringsdict new file mode 100644 index 000000000..503ff9dbd --- /dev/null +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/gl.lproj/Localizable.stringsdict @@ -0,0 +1,406 @@ + + + + + a11y.plural.count.unread.notification + + NSStringLocalizedFormatKey + %#@notification_count_unread_notification@ + notification_count_unread_notification + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 unread notification + other + %ld unread notification + + + a11y.plural.count.input_limit_exceeds + + NSStringLocalizedFormatKey + Input limit exceeds %#@character_count@ + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 character + other + %ld characters + + + a11y.plural.count.input_limit_remains + + NSStringLocalizedFormatKey + Input limit remains %#@character_count@ + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 character + other + %ld characters + + + plural.count.metric_formatted.post + + NSStringLocalizedFormatKey + %@ %#@post_count@ + post_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + post + other + posts + + + plural.count.post + + NSStringLocalizedFormatKey + %#@post_count@ + post_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 post + other + %ld posts + + + plural.count.favorite + + NSStringLocalizedFormatKey + %#@favorite_count@ + favorite_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 favorite + other + %ld favorites + + + plural.count.reblog + + NSStringLocalizedFormatKey + %#@reblog_count@ + reblog_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 reblog + other + %ld reblogs + + + plural.count.reply + + NSStringLocalizedFormatKey + %#@reply_count@ + reply_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 reply + other + %ld replies + + + plural.count.vote + + NSStringLocalizedFormatKey + %#@vote_count@ + vote_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 vote + other + %ld votes + + + plural.count.voter + + NSStringLocalizedFormatKey + %#@voter_count@ + voter_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 voter + other + %ld voters + + + plural.people_talking + + NSStringLocalizedFormatKey + %#@count_people_talking@ + count_people_talking + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 people talking + other + %ld people talking + + + plural.count.following + + NSStringLocalizedFormatKey + %#@count_following@ + count_following + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 following + other + %ld following + + + plural.count.follower + + NSStringLocalizedFormatKey + %#@count_follower@ + count_follower + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 follower + other + %ld followers + + + date.year.left + + NSStringLocalizedFormatKey + %#@count_year_left@ + count_year_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 year left + other + %ld years left + + + date.month.left + + NSStringLocalizedFormatKey + %#@count_month_left@ + count_month_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 months left + other + %ld months left + + + date.day.left + + NSStringLocalizedFormatKey + %#@count_day_left@ + count_day_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 day left + other + %ld days left + + + date.hour.left + + NSStringLocalizedFormatKey + %#@count_hour_left@ + count_hour_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 hour left + other + %ld hours left + + + date.minute.left + + NSStringLocalizedFormatKey + %#@count_minute_left@ + count_minute_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 minute left + other + %ld minutes left + + + date.second.left + + NSStringLocalizedFormatKey + %#@count_second_left@ + count_second_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 second 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 + other + %ldy ago + + + date.month.ago.abbr + + NSStringLocalizedFormatKey + %#@count_month_ago_abbr@ + count_month_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1M ago + other + %ldM ago + + + date.day.ago.abbr + + NSStringLocalizedFormatKey + %#@count_day_ago_abbr@ + count_day_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1d ago + other + %ldd ago + + + date.hour.ago.abbr + + NSStringLocalizedFormatKey + %#@count_hour_ago_abbr@ + count_hour_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1h ago + other + %ldh ago + + + date.minute.ago.abbr + + NSStringLocalizedFormatKey + %#@count_minute_ago_abbr@ + count_minute_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1m ago + other + %ldm ago + + + date.second.ago.abbr + + NSStringLocalizedFormatKey + %#@count_second_ago_abbr@ + count_second_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1s ago + other + %lds ago + + + + diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/it.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/it.lproj/Localizable.strings new file mode 100644 index 000000000..0c10d8d60 --- /dev/null +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/it.lproj/Localizable.strings @@ -0,0 +1,391 @@ +"Common.Alerts.BlockDomain.BlockEntireDomain" = "Blocca il dominio"; +"Common.Alerts.BlockDomain.Title" = "Vuoi davvero bloccare %@ completamente? Nella maggioranza dei casi, è preferibile e sufficiente bloccare o silenziare pochi account in modo mirato. Non vedrai i contenuti di quel dominio e tutti i tuoi follower da quel dominio verranno rimossi."; +"Common.Alerts.CleanCache.Message" = "Cache %@ pulita con successo."; +"Common.Alerts.CleanCache.Title" = "Pulisci la cache"; +"Common.Alerts.Common.PleaseTryAgain" = "Per favore riprova."; +"Common.Alerts.Common.PleaseTryAgainLater" = "Per favore, riprova più tardi."; +"Common.Alerts.DeletePost.Message" = "Vuoi veramente eliminare questo post?"; +"Common.Alerts.DeletePost.Title" = "Cancella il post"; +"Common.Alerts.DiscardPostContent.Message" = "Confermare di scartare il contenuto del post composto."; +"Common.Alerts.DiscardPostContent.Title" = "Elimina bozza"; +"Common.Alerts.EditProfileFailure.Message" = "Impossibile modificare il profilo. Per favore, riprova."; +"Common.Alerts.EditProfileFailure.Title" = "Errore nella modifica del profilo"; +"Common.Alerts.PublishPostFailure.AttachmentsMessage.MoreThanOneVideo" = "Impossibile allegare più di un filmato."; +"Common.Alerts.PublishPostFailure.AttachmentsMessage.VideoAttachWithPhoto" = "Impossibile allegare un filmato a un post che contiene già immagini."; +"Common.Alerts.PublishPostFailure.Message" = "Pubblicazione del post fallita. +Per favore verifica la tua connessione internet."; +"Common.Alerts.PublishPostFailure.Title" = "Pubblicazione fallita"; +"Common.Alerts.SavePhotoFailure.Message" = "Si prega di abilitare l'autorizzazione di accesso alla galleria immagini per salvare la foto."; +"Common.Alerts.SavePhotoFailure.Title" = "Salvataggio foto fallito"; +"Common.Alerts.ServerError.Title" = "Errore del server"; +"Common.Alerts.SignOut.Confirm" = "Esci"; +"Common.Alerts.SignOut.Message" = "Vuoi davvero scollegarti?"; +"Common.Alerts.SignOut.Title" = "Esci"; +"Common.Alerts.SignUpFailure.Title" = "Iscrizione fallita"; +"Common.Alerts.VoteFailure.PollEnded" = "Il sondaggio è terminato"; +"Common.Alerts.VoteFailure.Title" = "Voto fallito"; +"Common.Controls.Actions.Add" = "Aggiungi"; +"Common.Controls.Actions.Back" = "Indietro"; +"Common.Controls.Actions.BlockDomain" = "Blocca %@"; +"Common.Controls.Actions.Cancel" = "Annulla"; +"Common.Controls.Actions.Compose" = "Scrivi"; +"Common.Controls.Actions.Confirm" = "Conferma"; +"Common.Controls.Actions.Continue" = "Continua"; +"Common.Controls.Actions.CopyPhoto" = "Copia foto"; +"Common.Controls.Actions.Delete" = "Elimina"; +"Common.Controls.Actions.Discard" = "Abbandona"; +"Common.Controls.Actions.Done" = "Fatto"; +"Common.Controls.Actions.Edit" = "Modifica"; +"Common.Controls.Actions.FindPeople" = "Trova persone da seguire"; +"Common.Controls.Actions.ManuallySearch" = "Cerca manualmente invece"; +"Common.Controls.Actions.Next" = "Avanti"; +"Common.Controls.Actions.Ok" = "OK"; +"Common.Controls.Actions.Open" = "Apri"; +"Common.Controls.Actions.OpenInBrowser" = "Apri nel browser"; +"Common.Controls.Actions.OpenInSafari" = "Apri su Safari"; +"Common.Controls.Actions.Preview" = "Anteprima"; +"Common.Controls.Actions.Previous" = "Precedente"; +"Common.Controls.Actions.Remove" = "Rimuovi"; +"Common.Controls.Actions.Reply" = "Rispondi"; +"Common.Controls.Actions.ReportUser" = "Segnala %@"; +"Common.Controls.Actions.Save" = "Salva"; +"Common.Controls.Actions.SavePhoto" = "Salva foto"; +"Common.Controls.Actions.SeeMore" = "Visualizza altro"; +"Common.Controls.Actions.Settings" = "Impostazioni"; +"Common.Controls.Actions.Share" = "Condividi"; +"Common.Controls.Actions.SharePost" = "Condividi il post"; +"Common.Controls.Actions.ShareUser" = "Condividi %@"; +"Common.Controls.Actions.SignIn" = "Accedi"; +"Common.Controls.Actions.SignUp" = "Registrati"; +"Common.Controls.Actions.Skip" = "Salta"; +"Common.Controls.Actions.TakePhoto" = "Scatta foto"; +"Common.Controls.Actions.TryAgain" = "Riprova"; +"Common.Controls.Actions.UnblockDomain" = "Sblocca %@"; +"Common.Controls.Friendship.Block" = "Blocca"; +"Common.Controls.Friendship.BlockDomain" = "Blocca %@"; +"Common.Controls.Friendship.BlockUser" = "Blocca %@"; +"Common.Controls.Friendship.Blocked" = "Bloccato"; +"Common.Controls.Friendship.EditInfo" = "Modifica info"; +"Common.Controls.Friendship.Follow" = "Segui"; +"Common.Controls.Friendship.Following" = "Stai seguendo"; +"Common.Controls.Friendship.Mute" = "Silenzia"; +"Common.Controls.Friendship.MuteUser" = "Silenzia %@"; +"Common.Controls.Friendship.Muted" = "Silenziato"; +"Common.Controls.Friendship.Pending" = "In attesa"; +"Common.Controls.Friendship.Request" = "Richiesta"; +"Common.Controls.Friendship.Unblock" = "Sblocca"; +"Common.Controls.Friendship.UnblockUser" = "Sblocca %@"; +"Common.Controls.Friendship.Unmute" = "Riattiva"; +"Common.Controls.Friendship.UnmuteUser" = "Riattiva %@"; +"Common.Controls.Keyboard.Common.ComposeNewPost" = "Componi un nuovo post"; +"Common.Controls.Keyboard.Common.OpenSettings" = "Apri Impostazioni"; +"Common.Controls.Keyboard.Common.ShowFavorites" = "Mostra preferiti"; +"Common.Controls.Keyboard.Common.SwitchToTab" = "Passa a %@"; +"Common.Controls.Keyboard.SegmentedControl.NextSection" = "Sezione successiva"; +"Common.Controls.Keyboard.SegmentedControl.PreviousSection" = "Sezione precedente"; +"Common.Controls.Keyboard.Timeline.NextStatus" = "Post successivo"; +"Common.Controls.Keyboard.Timeline.OpenAuthorProfile" = "Apri il profilo dell'autore"; +"Common.Controls.Keyboard.Timeline.OpenRebloggerProfile" = "Apri il profilo di chi ha condiviso"; +"Common.Controls.Keyboard.Timeline.OpenStatus" = "Apri il post"; +"Common.Controls.Keyboard.Timeline.PreviewImage" = "Anteprima immagine"; +"Common.Controls.Keyboard.Timeline.PreviousStatus" = "Post precedente"; +"Common.Controls.Keyboard.Timeline.ReplyStatus" = "Rispondi al post"; +"Common.Controls.Keyboard.Timeline.ToggleContentWarning" = "Attiva/Disattiva avvertimento contenuti"; +"Common.Controls.Keyboard.Timeline.ToggleFavorite" = "Attiva/Disattiva preferito nel post"; +"Common.Controls.Keyboard.Timeline.ToggleReblog" = "Attiva/Disattiva condivisione sul post"; +"Common.Controls.Status.Actions.Favorite" = "Preferito"; +"Common.Controls.Status.Actions.Hide" = "Nascondi"; +"Common.Controls.Status.Actions.Menu" = "Menù"; +"Common.Controls.Status.Actions.Reblog" = "Condivisione"; +"Common.Controls.Status.Actions.Reply" = "Rispondi"; +"Common.Controls.Status.Actions.ShowGif" = "Mostra GIF"; +"Common.Controls.Status.Actions.ShowImage" = "Mostra immagine"; +"Common.Controls.Status.Actions.ShowVideoPlayer" = "Mostra lettore video"; +"Common.Controls.Status.Actions.TapThenHoldToShowMenu" = "Tocca quindi tieni premuto per mostrare il menu"; +"Common.Controls.Status.Actions.Unfavorite" = "Non preferito"; +"Common.Controls.Status.Actions.Unreblog" = "Annulla condivisione"; +"Common.Controls.Status.ContentWarning" = "Avviso sul contenuto"; +"Common.Controls.Status.MediaContentWarning" = "Tocca ovunque per rivelare"; +"Common.Controls.Status.Poll.Closed" = "Chiuso"; +"Common.Controls.Status.Poll.Vote" = "Vota"; +"Common.Controls.Status.SensitiveContent" = "Contenuto sensibile"; +"Common.Controls.Status.ShowPost" = "Mostra il post"; +"Common.Controls.Status.ShowUserProfile" = "Mostra il profilo dell'utente"; +"Common.Controls.Status.Tag.Email" = "Email"; +"Common.Controls.Status.Tag.Emoji" = "Emoji"; +"Common.Controls.Status.Tag.Hashtag" = "Etichetta"; +"Common.Controls.Status.Tag.Link" = "Collegamento"; +"Common.Controls.Status.Tag.Mention" = "Menzione"; +"Common.Controls.Status.Tag.Url" = "URL"; +"Common.Controls.Status.TapToReveal" = "Tocca per rivelare"; +"Common.Controls.Status.UserReblogged" = "%@ hanno condiviso"; +"Common.Controls.Status.UserRepliedTo" = "Rispondi a %@"; +"Common.Controls.Status.Visibility.Direct" = "Solo l'utente menzionato può vedere questo post."; +"Common.Controls.Status.Visibility.Private" = "Solo i loro seguaci possono vedere questo post."; +"Common.Controls.Status.Visibility.PrivateFromMe" = "Solo i miei seguaci possono vedere questo post."; +"Common.Controls.Status.Visibility.Unlisted" = "Tutti possono vedere questo post ma non mostrare nella cronologia pubblica."; +"Common.Controls.Tabs.Home" = "Inizio"; +"Common.Controls.Tabs.Notification" = "Notifiche"; +"Common.Controls.Tabs.Profile" = "Profilo"; +"Common.Controls.Tabs.Search" = "Cerca"; +"Common.Controls.Timeline.Filtered" = "Filtrato"; +"Common.Controls.Timeline.Header.BlockedWarning" = "Non puoi visualizzare il profilo di questo utente +fino a quando non ti sbloccano."; +"Common.Controls.Timeline.Header.BlockingWarning" = "Non puoi visualizzare il profilo di questo utente +finché non li sblocchi. +Il tuo profilo sembra questo per loro."; +"Common.Controls.Timeline.Header.NoStatusFound" = "Nessun post trovato"; +"Common.Controls.Timeline.Header.SuspendedWarning" = "Questo utente è stato sospeso."; +"Common.Controls.Timeline.Header.UserBlockedWarning" = "Non puoi visualizzare il profilo di %@ +fino a quando non ti sbloccano."; +"Common.Controls.Timeline.Header.UserBlockingWarning" = "Non puoi visualizzare il profilo di %@ +finché non li sblocchi. +Il tuo profilo sembra questo per loro."; +"Common.Controls.Timeline.Header.UserSuspendedWarning" = "L'account di %@ è stato sospeso."; +"Common.Controls.Timeline.Loader.LoadMissingPosts" = "Carica i post mancanti"; +"Common.Controls.Timeline.Loader.LoadingMissingPosts" = "Caricamento post mancanti..."; +"Common.Controls.Timeline.Loader.ShowMoreReplies" = "Mostra più risposte"; +"Common.Controls.Timeline.Timestamp.Now" = "Ora"; +"Scene.AccountList.AddAccount" = "Aggiungi account"; +"Scene.AccountList.DismissAccountSwitcher" = "Ignora il cambio account"; +"Scene.AccountList.TabBarHint" = "Profilo corrente selezionato: %@. Doppio tocco e tieni premuto per mostrare il cambio account"; +"Scene.Compose.Accessibility.AppendAttachment" = "Aggiungi allegato"; +"Scene.Compose.Accessibility.AppendPoll" = "Aggiungi sondaggio"; +"Scene.Compose.Accessibility.CustomEmojiPicker" = "Selettore Emoji personalizzato"; +"Scene.Compose.Accessibility.DisableContentWarning" = "Disabilita avviso di contenuti"; +"Scene.Compose.Accessibility.EnableContentWarning" = "Abilita avvertimento contenuti"; +"Scene.Compose.Accessibility.PostVisibilityMenu" = "Menu di visibilità del post"; +"Scene.Compose.Accessibility.RemovePoll" = "Elimina sondaggio"; +"Scene.Compose.Attachment.AttachmentBroken" = "Questo %@ è rotto e non può essere +caricato su Mastodon."; +"Scene.Compose.Attachment.DescriptionPhoto" = "Descrivi la foto per gli utenti ipovedenti..."; +"Scene.Compose.Attachment.DescriptionVideo" = "Descrivi il filmato per gli utenti ipovedenti..."; +"Scene.Compose.Attachment.Photo" = "foto"; +"Scene.Compose.Attachment.Video" = "filmato"; +"Scene.Compose.AutoComplete.SpaceToAdd" = "Spazio da aggiungere"; +"Scene.Compose.ComposeAction" = "Pubblica"; +"Scene.Compose.ContentInputPlaceholder" = "Digita o incolla quello che hai in mente"; +"Scene.Compose.ContentWarning.Placeholder" = "Scrivi un avviso accurato qui..."; +"Scene.Compose.Keyboard.AppendAttachmentEntry" = "Aggiungi allegato - %@"; +"Scene.Compose.Keyboard.DiscardPost" = "Scarta post"; +"Scene.Compose.Keyboard.PublishPost" = "Pubblica il post"; +"Scene.Compose.Keyboard.SelectVisibilityEntry" = "Seleziona visibilità - %@"; +"Scene.Compose.Keyboard.ToggleContentWarning" = "Attiva/Disattiva avviso contenuti"; +"Scene.Compose.Keyboard.TogglePoll" = "Attiva/Disattiva Sondaggio"; +"Scene.Compose.MediaSelection.Browse" = "Sfoglia"; +"Scene.Compose.MediaSelection.Camera" = "Scatta foto"; +"Scene.Compose.MediaSelection.PhotoLibrary" = "Libreria foto"; +"Scene.Compose.Poll.DurationTime" = "Durata: %@"; +"Scene.Compose.Poll.OneDay" = "1 giorno"; +"Scene.Compose.Poll.OneHour" = "1 ora"; +"Scene.Compose.Poll.OptionNumber" = "Opzione %ld"; +"Scene.Compose.Poll.SevenDays" = "7 giorni"; +"Scene.Compose.Poll.SixHours" = "6 ore"; +"Scene.Compose.Poll.ThirtyMinutes" = "30 minuti"; +"Scene.Compose.Poll.ThreeDays" = "3 giorni"; +"Scene.Compose.ReplyingToUser" = "rispondendo a %@"; +"Scene.Compose.Title.NewPost" = "Nuovo post"; +"Scene.Compose.Title.NewReply" = "Nuova risposta"; +"Scene.Compose.Visibility.Direct" = "Solo le persone che menziono"; +"Scene.Compose.Visibility.Private" = "Solo i seguaci"; +"Scene.Compose.Visibility.Public" = "Pubblico"; +"Scene.Compose.Visibility.Unlisted" = "Non elencato"; +"Scene.ConfirmEmail.Button.OpenEmailApp" = "Apri l'app Email"; +"Scene.ConfirmEmail.Button.Resend" = "Invia di nuovo"; +"Scene.ConfirmEmail.DontReceiveEmail.Description" = "Controlla se il tuo indirizzo email sia corretto, così come la tua cartella spazzatura se non ce l'hai."; +"Scene.ConfirmEmail.DontReceiveEmail.ResendEmail" = "Invia e-mail di nuovo"; +"Scene.ConfirmEmail.DontReceiveEmail.Title" = "Controlla la tua e-mail"; +"Scene.ConfirmEmail.OpenEmailApp.Description" = "Ti abbiamo appena inviato un'email. Controlla la tua cartella spazzatura se non ce l'hai."; +"Scene.ConfirmEmail.OpenEmailApp.Mail" = "Posta"; +"Scene.ConfirmEmail.OpenEmailApp.OpenEmailClient" = "Apri client Email"; +"Scene.ConfirmEmail.OpenEmailApp.Title" = "Controlla la tua posta in arrivo."; +"Scene.ConfirmEmail.Subtitle" = "Tocca il link che ti abbiamo inviato per verificare il tuo account."; +"Scene.ConfirmEmail.Title" = "Un'ultima cosa."; +"Scene.Discovery.Intro" = "Questi sono i post che stanno guadagnando popolarità nel tuo angolo di Mastodon."; +"Scene.Discovery.Tabs.Community" = "Community"; +"Scene.Discovery.Tabs.ForYou" = "Per Te"; +"Scene.Discovery.Tabs.Hashtags" = "Hashtag"; +"Scene.Discovery.Tabs.News" = "Notizie"; +"Scene.Discovery.Tabs.Posts" = "Post"; +"Scene.Favorite.Title" = "I tuoi preferiti"; +"Scene.Follower.Footer" = "I seguaci da altri server non vengono visualizzati."; +"Scene.Following.Footer" = "I follow da altri server non vengono visualizzati."; +"Scene.HomeTimeline.NavigationBarState.NewPosts" = "Vedi nuovi post"; +"Scene.HomeTimeline.NavigationBarState.Offline" = "Non in linea"; +"Scene.HomeTimeline.NavigationBarState.Published" = "Pubblicato!"; +"Scene.HomeTimeline.NavigationBarState.Publishing" = "Pubblicazione post..."; +"Scene.HomeTimeline.Title" = "Inizio"; +"Scene.Notification.Keyobard.ShowEverything" = "Mostra Tutto"; +"Scene.Notification.Keyobard.ShowMentions" = "Mostra Menzioni"; +"Scene.Notification.NotificationDescription.FavoritedYourPost" = "ha apprezzato il tuo post"; +"Scene.Notification.NotificationDescription.FollowedYou" = "ti ha seguito"; +"Scene.Notification.NotificationDescription.MentionedYou" = "ti ha menzionato"; +"Scene.Notification.NotificationDescription.PollHasEnded" = "sondaggio terminato"; +"Scene.Notification.NotificationDescription.RebloggedYourPost" = "ha ripostato il tuo post"; +"Scene.Notification.NotificationDescription.RequestToFollowYou" = "richiesta di seguirti"; +"Scene.Notification.Title.Everything" = "Tutto"; +"Scene.Notification.Title.Mentions" = "Menzioni"; +"Scene.Preview.Keyboard.ClosePreview" = "Chiudi anteprima"; +"Scene.Preview.Keyboard.ShowNext" = "Mostra successivo"; +"Scene.Preview.Keyboard.ShowPrevious" = "Mostra precedente"; +"Scene.Profile.Accessibility.DoubleTapToOpenTheList" = "Doppio tocco per aprire la lista"; +"Scene.Profile.Accessibility.EditAvatarImage" = "Modifica immagine avatar"; +"Scene.Profile.Accessibility.ShowAvatarImage" = "Mostra immagine avatar"; +"Scene.Profile.Accessibility.ShowBannerImage" = "Mostra immagine banner"; +"Scene.Profile.Dashboard.Followers" = "seguaci"; +"Scene.Profile.Dashboard.Following" = "seguendo"; +"Scene.Profile.Dashboard.Posts" = "post"; +"Scene.Profile.Fields.AddRow" = "Aggiungi riga"; +"Scene.Profile.Fields.Placeholder.Content" = "Contenuto"; +"Scene.Profile.Fields.Placeholder.Label" = "Etichetta"; +"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "Confermi di bloccare %@"; +"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Blocca account"; +"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Message" = "Confermi di silenziare %@"; +"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Silenzia account"; +"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "Conferma per sbloccare %@"; +"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Sblocca account"; +"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "Confermi di riattivare %@"; +"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Title" = "Riattiva account"; +"Scene.Profile.SegmentedControl.About" = "Info su"; +"Scene.Profile.SegmentedControl.Media" = "Media"; +"Scene.Profile.SegmentedControl.Posts" = "Post"; +"Scene.Profile.SegmentedControl.PostsAndReplies" = "Post e risposte"; +"Scene.Profile.SegmentedControl.Replies" = "Risposte"; +"Scene.Register.Error.Item.Agreement" = "Accordo"; +"Scene.Register.Error.Item.Email" = "Email"; +"Scene.Register.Error.Item.Locale" = "Locale"; +"Scene.Register.Error.Item.Password" = "Password"; +"Scene.Register.Error.Item.Reason" = "Motivo"; +"Scene.Register.Error.Item.Username" = "Nome utente"; +"Scene.Register.Error.Reason.Accepted" = "%@ deve essere accettato"; +"Scene.Register.Error.Reason.Blank" = "%@ è richiesto"; +"Scene.Register.Error.Reason.Blocked" = "%@ contiene un provider email non consentito"; +"Scene.Register.Error.Reason.Inclusion" = "%@ non è un valore supportato"; +"Scene.Register.Error.Reason.Invalid" = "%@ non è valido"; +"Scene.Register.Error.Reason.Reserved" = "%@ è una parola chiave riservata"; +"Scene.Register.Error.Reason.Taken" = "%@ è già in uso"; +"Scene.Register.Error.Reason.TooLong" = "%@ è troppo lungo"; +"Scene.Register.Error.Reason.TooShort" = "%@ è troppo corto"; +"Scene.Register.Error.Reason.Unreachable" = "%@ non sembra esistere"; +"Scene.Register.Error.Special.EmailInvalid" = "Questo non è un indirizzo email valido"; +"Scene.Register.Error.Special.PasswordTooShort" = "La password è troppo corta (deve contenere almeno 8 caratteri)"; +"Scene.Register.Error.Special.UsernameInvalid" = "Il nome utente deve contenere solo caratteri alfanumerici e trattini bassi"; +"Scene.Register.Error.Special.UsernameTooLong" = "Il nome utente è troppo lungo (non può essere più lungo di 30 caratteri)"; +"Scene.Register.Input.Avatar.Delete" = "Elimina"; +"Scene.Register.Input.DisplayName.Placeholder" = "visualizza nome"; +"Scene.Register.Input.Email.Placeholder" = "email"; +"Scene.Register.Input.Invite.RegistrationUserInviteRequest" = "Perché vuoi unirti?"; +"Scene.Register.Input.Password.Accessibility.Checked" = "verificato"; +"Scene.Register.Input.Password.Accessibility.Unchecked" = "non verificato"; +"Scene.Register.Input.Password.CharacterLimit" = "8 caratteri"; +"Scene.Register.Input.Password.Hint" = "La tua password deve essere di almeno 8 caratteri"; +"Scene.Register.Input.Password.Placeholder" = "password"; +"Scene.Register.Input.Password.Require" = "La tua password ha bisogno di almeno:"; +"Scene.Register.Input.Username.DuplicatePrompt" = "Questo nome utente è già stato preso."; +"Scene.Register.Input.Username.Placeholder" = "nome utente"; +"Scene.Register.Title" = "Facciamo in modo che sia configurato il %@"; +"Scene.Report.Content1" = "Ci sono altri post che vorresti aggiungere alla segnalazione?"; +"Scene.Report.Content2" = "C'è qualcosa che i moderatori dovrebbero sapere su questa segnalazione?"; +"Scene.Report.ReportSentTitle" = "Grazie per la segnalazione, esamineremo questo aspetto."; +"Scene.Report.Reported" = "SEGNALATO"; +"Scene.Report.Send" = "Invia segnalazione"; +"Scene.Report.SkipToSend" = "Invia senza commento"; +"Scene.Report.Step1" = "Fase 1 di 2"; +"Scene.Report.Step2" = "Fase 2 di 2"; +"Scene.Report.TextPlaceholder" = "Digita o incolla commenti aggiuntivi"; +"Scene.Report.Title" = "Segnala %@"; +"Scene.Report.TitleReport" = "Segnala"; +"Scene.Search.Recommend.Accounts.Description" = "Potresti voler seguire questi account"; +"Scene.Search.Recommend.Accounts.Follow" = "Segui"; +"Scene.Search.Recommend.Accounts.Title" = "Account che potrebbero piacerti"; +"Scene.Search.Recommend.ButtonText" = "Vedi tutto"; +"Scene.Search.Recommend.HashTag.Description" = "Hashtag che stanno ottenendo un bel po' di attenzione"; +"Scene.Search.Recommend.HashTag.PeopleTalking" = "%@ persone ne parlano"; +"Scene.Search.Recommend.HashTag.Title" = "Di tendenza su Mastodon"; +"Scene.Search.SearchBar.Cancel" = "Annulla"; +"Scene.Search.SearchBar.Placeholder" = "Cerca hashtag e utenti"; +"Scene.Search.Searching.Clear" = "Cancella"; +"Scene.Search.Searching.EmptyState.NoResults" = "Nessun risultato"; +"Scene.Search.Searching.RecentSearch" = "Ricerche recenti"; +"Scene.Search.Searching.Segment.All" = "Tutto"; +"Scene.Search.Searching.Segment.Hashtags" = "Hashtags"; +"Scene.Search.Searching.Segment.People" = "Persone"; +"Scene.Search.Searching.Segment.Posts" = "Post"; +"Scene.Search.Title" = "Cerca"; +"Scene.ServerPicker.Button.Category.Academia" = "accademia"; +"Scene.ServerPicker.Button.Category.Activism" = "attivismo"; +"Scene.ServerPicker.Button.Category.All" = "Tutti"; +"Scene.ServerPicker.Button.Category.AllAccessiblityDescription" = "Categoria: Tutti"; +"Scene.ServerPicker.Button.Category.Art" = "arte"; +"Scene.ServerPicker.Button.Category.Food" = "cibo"; +"Scene.ServerPicker.Button.Category.Furry" = "peloso"; +"Scene.ServerPicker.Button.Category.Games" = "giochi"; +"Scene.ServerPicker.Button.Category.General" = "generale"; +"Scene.ServerPicker.Button.Category.Journalism" = "giornalismo"; +"Scene.ServerPicker.Button.Category.Lgbt" = "lgbt"; +"Scene.ServerPicker.Button.Category.Music" = "musica"; +"Scene.ServerPicker.Button.Category.Regional" = "locale"; +"Scene.ServerPicker.Button.Category.Tech" = "tecnologia"; +"Scene.ServerPicker.Button.SeeLess" = "Vedi meno"; +"Scene.ServerPicker.Button.SeeMore" = "Vedi di più"; +"Scene.ServerPicker.EmptyState.BadNetwork" = "Qualcosa è andato storto durante il caricamento dei dati. Controlla la tua connessione internet."; +"Scene.ServerPicker.EmptyState.FindingServers" = "Ricerca server disponibili..."; +"Scene.ServerPicker.EmptyState.NoResults" = "Nessun risultato"; +"Scene.ServerPicker.Input.Placeholder" = "Cerca comunità"; +"Scene.ServerPicker.Label.Category" = "CATEGORIA"; +"Scene.ServerPicker.Label.Language" = "LINGUA"; +"Scene.ServerPicker.Label.Users" = "UTENTI"; +"Scene.ServerPicker.Subtitle" = "Scegli una comunità basata sui tuoi interessi, regione o uno scopo generale."; +"Scene.ServerPicker.SubtitleExtend" = "Scegli una comunità basata sui tuoi interessi, regione o uno scopo generale. Ogni comunità è gestita da un'organizzazione completamente indipendente o individuale."; +"Scene.ServerPicker.Title" = "Mastodon è fatto di utenti in diverse comunità."; +"Scene.ServerRules.Button.Confirm" = "Accetto"; +"Scene.ServerRules.PrivacyPolicy" = "privacy policy"; +"Scene.ServerRules.Prompt" = "Continuando, sei soggetto alle condizioni di servizio e all'informativa sulla privacy per %@."; +"Scene.ServerRules.Subtitle" = "Questi sono impostati e applicati dai moderatori %@."; +"Scene.ServerRules.TermsOfService" = "condizioni del servizio"; +"Scene.ServerRules.Title" = "Alcune regole di base."; +"Scene.Settings.Footer.MastodonDescription" = "Mastodon è un software open source. Puoi segnalare problemi su GitHub a %@ (%@)"; +"Scene.Settings.Keyboard.CloseSettingsWindow" = "Chiudi la finestra Impostazioni"; +"Scene.Settings.Section.Appearance.Automatic" = "Automatico"; +"Scene.Settings.Section.Appearance.Dark" = "Sempre scuro"; +"Scene.Settings.Section.Appearance.Light" = "Sempre chiaro"; +"Scene.Settings.Section.Appearance.Title" = "Aspetto"; +"Scene.Settings.Section.BoringZone.AccountSettings" = "Impostazioni account"; +"Scene.Settings.Section.BoringZone.Privacy" = "Politica sulla Privacy"; +"Scene.Settings.Section.BoringZone.Terms" = "Termini di servizio"; +"Scene.Settings.Section.BoringZone.Title" = "La zona boring"; +"Scene.Settings.Section.LookAndFeel.Light" = "Chiaro"; +"Scene.Settings.Section.LookAndFeel.ReallyDark" = "Davvero scuro"; +"Scene.Settings.Section.LookAndFeel.SortaDark" = "Un po' scuro"; +"Scene.Settings.Section.LookAndFeel.Title" = "Look and Feel"; +"Scene.Settings.Section.LookAndFeel.UseSystem" = "Predefinito di sistema"; +"Scene.Settings.Section.Notifications.Boosts" = "Condivide i miei post"; +"Scene.Settings.Section.Notifications.Favorites" = "Apprezza i miei post"; +"Scene.Settings.Section.Notifications.Follows" = "Mi segue"; +"Scene.Settings.Section.Notifications.Mentions" = "Mi menziona"; +"Scene.Settings.Section.Notifications.Title" = "Notifiche"; +"Scene.Settings.Section.Notifications.Trigger.Anyone" = "chiunque"; +"Scene.Settings.Section.Notifications.Trigger.Follow" = "chiunque io segua"; +"Scene.Settings.Section.Notifications.Trigger.Follower" = "un seguace"; +"Scene.Settings.Section.Notifications.Trigger.Noone" = "nessuno"; +"Scene.Settings.Section.Notifications.Trigger.Title" = "Avvisami quando"; +"Scene.Settings.Section.Preference.DisableAvatarAnimation" = "Disabilita avatar animati"; +"Scene.Settings.Section.Preference.DisableEmojiAnimation" = "Disabilita emoji animate"; +"Scene.Settings.Section.Preference.OpenLinksInMastodon" = "Apri i link in Mastodon"; +"Scene.Settings.Section.Preference.Title" = "Preferenze"; +"Scene.Settings.Section.Preference.TrueBlackDarkMode" = "Modalità molto scura"; +"Scene.Settings.Section.Preference.UsingDefaultBrowser" = "Usa browser predefinito per aprire i collegamenti"; +"Scene.Settings.Section.SpicyZone.Clear" = "Cancella la cache multimediale"; +"Scene.Settings.Section.SpicyZone.Signout" = "Esci"; +"Scene.Settings.Section.SpicyZone.Title" = "La zona piccante"; +"Scene.Settings.Title" = "Impostazioni"; +"Scene.SuggestionAccount.FollowExplain" = "Quando segui qualcuno, vedrai i loro post nella tua home feed."; +"Scene.SuggestionAccount.Title" = "Trova alcune persone da seguire"; +"Scene.Thread.BackTitle" = "Post"; +"Scene.Thread.Title" = "Post da %@"; +"Scene.Welcome.GetStarted" = "Inizia"; +"Scene.Welcome.LogIn" = "Accedi"; +"Scene.Welcome.Slogan" = "Il social network, di nuovo nelle tue mani."; +"Scene.Wizard.AccessibilityHint" = "Doppio tocco per eliminare questa procedura guidata"; +"Scene.Wizard.MultipleAccountSwitchIntroDescription" = "Passa tra più account tenendo premuto il pulsante del profilo."; +"Scene.Wizard.NewInMastodon" = "Nuovo su Mastodon"; \ No newline at end of file diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/it.lproj/Localizable.stringsdict b/MastodonSDK/Sources/MastodonLocalization/Resources/it.lproj/Localizable.stringsdict new file mode 100644 index 000000000..710980608 --- /dev/null +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/it.lproj/Localizable.stringsdict @@ -0,0 +1,406 @@ + + + + + a11y.plural.count.unread.notification + + NSStringLocalizedFormatKey + %#@notification_count_unread_notification@ + notification_count_unread_notification + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 notifica non letta + other + %ld notifiche non lette + + + a11y.plural.count.input_limit_exceeds + + NSStringLocalizedFormatKey + Il limite di input supera %#@character_count@ + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 carattere + other + %ld caratteri + + + a11y.plural.count.input_limit_remains + + NSStringLocalizedFormatKey + Il limite di input rimane %#@character_count@ + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 carattere + other + %ld caratteri + + + plural.count.metric_formatted.post + + NSStringLocalizedFormatKey + %@ %#@post_count@ + post_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + post + other + post + + + plural.count.post + + NSStringLocalizedFormatKey + %#@post_count@ + post_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 post + other + %ld post + + + plural.count.favorite + + NSStringLocalizedFormatKey + %#@favorite_count@ + favorite_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 preferito + other + %ld preferiti + + + plural.count.reblog + + NSStringLocalizedFormatKey + %#@reblog_count@ + reblog_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 condivisione + other + %ld condivisioni + + + plural.count.reply + + NSStringLocalizedFormatKey + %#@reply_count@ + reply_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 risposta + other + %ld risposte + + + plural.count.vote + + NSStringLocalizedFormatKey + %#@vote_count@ + vote_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 voto + other + %ld voti + + + plural.count.voter + + NSStringLocalizedFormatKey + %#@voter_count@ + voter_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 votante + other + %ld votanti + + + plural.people_talking + + NSStringLocalizedFormatKey + %#@count_people_talking@ + count_people_talking + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 persona ne parla + other + %ld persone ne parlano + + + plural.count.following + + NSStringLocalizedFormatKey + %#@count_following@ + count_following + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 following + other + %ld stanno seguendo + + + plural.count.follower + + NSStringLocalizedFormatKey + %#@count_follower@ + count_follower + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 seguace + other + %ld seguaci + + + date.year.left + + NSStringLocalizedFormatKey + %#@count_year_left@ + count_year_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 anno rimasto + other + %ld anni rimasti + + + date.month.left + + NSStringLocalizedFormatKey + %#@count_month_left@ + count_month_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 mese rimasto + other + %ld mesi rimasti + + + date.day.left + + NSStringLocalizedFormatKey + %#@count_day_left@ + count_day_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 giorno rimasto + other + %ld giorni rimasti + + + date.hour.left + + NSStringLocalizedFormatKey + %#@count_hour_left@ + count_hour_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 ora rimasta + other + %ld ore rimaste + + + date.minute.left + + NSStringLocalizedFormatKey + %#@count_minute_left@ + count_minute_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 minuto rimasto + other + %ld minuti rimasti + + + date.second.left + + NSStringLocalizedFormatKey + %#@count_second_left@ + count_second_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 secondo rimasto + other + %ld secondi rimasti + + + date.year.ago.abbr + + NSStringLocalizedFormatKey + %#@count_year_ago_abbr@ + count_year_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 anno fa + other + %ld anni fa + + + date.month.ago.abbr + + NSStringLocalizedFormatKey + %#@count_month_ago_abbr@ + count_month_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 mese fa + other + %ld mesi fa + + + date.day.ago.abbr + + NSStringLocalizedFormatKey + %#@count_day_ago_abbr@ + count_day_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 giorno fa + other + %ld giorni fa + + + date.hour.ago.abbr + + NSStringLocalizedFormatKey + %#@count_hour_ago_abbr@ + count_hour_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 ora fa + other + %ld ore fa + + + date.minute.ago.abbr + + NSStringLocalizedFormatKey + %#@count_minute_ago_abbr@ + count_minute_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 minuto fa + other + %ld minuti fa + + + date.second.ago.abbr + + NSStringLocalizedFormatKey + %#@count_second_ago_abbr@ + count_second_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 secondo fa + other + %ld secondi fa + + + + diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/tr.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/tr.lproj/Localizable.strings new file mode 100644 index 000000000..9bee4db1a --- /dev/null +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/tr.lproj/Localizable.strings @@ -0,0 +1,391 @@ +"Common.Alerts.BlockDomain.BlockEntireDomain" = "Alan Adını Engelle"; +"Common.Alerts.BlockDomain.Title" = "%@ alan adını tamamen engellemek istediğine gerçekten emin misiniz? Pek çok durumda o alan adından birkaç kişiyi engellemek ve sessize almak yeterlidir ve tercih edilir. Engellediğinizde bu alan adından herhangi bir içerik görmeyeceksiniz ve o alan adından olan takipçileriniz silinecek."; +"Common.Alerts.CleanCache.Message" = "%@ boyutunda önbellek temizlendi."; +"Common.Alerts.CleanCache.Title" = "Önbelleği Temizle"; +"Common.Alerts.Common.PleaseTryAgain" = "Lütfen tekrar deneyin."; +"Common.Alerts.Common.PleaseTryAgainLater" = "Lütfen daha sonra tekrar deneyin."; +"Common.Alerts.DeletePost.Message" = "Bu gönderiyi silmek istediğinize emin misiniz?"; +"Common.Alerts.DeletePost.Title" = "Gönderiyi Sil"; +"Common.Alerts.DiscardPostContent.Message" = "Yazdığın gönderiyi paylaşmadan silmek istiyor musun?"; +"Common.Alerts.DiscardPostContent.Title" = "Taslağı Sil"; +"Common.Alerts.EditProfileFailure.Message" = "Profil düzenlenemedi. Lütfen tekrar deneyin."; +"Common.Alerts.EditProfileFailure.Title" = "Profil Düzenleme Hatası"; +"Common.Alerts.PublishPostFailure.AttachmentsMessage.MoreThanOneVideo" = "Gönderiye birden fazla video eklenemez."; +"Common.Alerts.PublishPostFailure.AttachmentsMessage.VideoAttachWithPhoto" = "İçeriğinde görseller olan bir gönderiye video eklenemez."; +"Common.Alerts.PublishPostFailure.Message" = "Gönderi paylaşılamadı. Lütfen internet bağlantını kontrol et."; +"Common.Alerts.PublishPostFailure.Title" = "Paylaşılamadı"; +"Common.Alerts.SavePhotoFailure.Message" = "Görseli kaydetmek için lütfen galeri erişim iznini aktifleştirin."; +"Common.Alerts.SavePhotoFailure.Title" = "Görsel Kaydetme Hatası"; +"Common.Alerts.ServerError.Title" = "Sunucu Hatası"; +"Common.Alerts.SignOut.Confirm" = "Oturumu Kapat"; +"Common.Alerts.SignOut.Message" = "Oturumu kapatmak istediğinize emin misiniz?"; +"Common.Alerts.SignOut.Title" = "Oturumu Kapat"; +"Common.Alerts.SignUpFailure.Title" = "Kaydolma Başarısız"; +"Common.Alerts.VoteFailure.PollEnded" = "Anket bitti"; +"Common.Alerts.VoteFailure.Title" = "Oy Verme Başarısız"; +"Common.Controls.Actions.Add" = "Ekle"; +"Common.Controls.Actions.Back" = "Geri"; +"Common.Controls.Actions.BlockDomain" = "%@ kişisini engelle"; +"Common.Controls.Actions.Cancel" = "İptal et"; +"Common.Controls.Actions.Compose" = "Yaz"; +"Common.Controls.Actions.Confirm" = "Onayla"; +"Common.Controls.Actions.Continue" = "Devam et"; +"Common.Controls.Actions.CopyPhoto" = "Fotoğrafı Kopyala"; +"Common.Controls.Actions.Delete" = "Sil"; +"Common.Controls.Actions.Discard" = "Vazgeç"; +"Common.Controls.Actions.Done" = "Kapat"; +"Common.Controls.Actions.Edit" = "Düzenle"; +"Common.Controls.Actions.FindPeople" = "Takip etmek için birkaç kişi bul"; +"Common.Controls.Actions.ManuallySearch" = "Onun yerine manuel olarak ara"; +"Common.Controls.Actions.Next" = "İleri"; +"Common.Controls.Actions.Ok" = "Tamam"; +"Common.Controls.Actions.Open" = "Aç"; +"Common.Controls.Actions.OpenInBrowser" = "Tarayıcıda Aç"; +"Common.Controls.Actions.OpenInSafari" = "Safari'de Aç"; +"Common.Controls.Actions.Preview" = "Önizleme"; +"Common.Controls.Actions.Previous" = "Önceki"; +"Common.Controls.Actions.Remove" = "Kaldır"; +"Common.Controls.Actions.Reply" = "Yanıtla"; +"Common.Controls.Actions.ReportUser" = "%@ kişisini bildir"; +"Common.Controls.Actions.Save" = "Kaydet"; +"Common.Controls.Actions.SavePhoto" = "Fotoğrafı Kaydet"; +"Common.Controls.Actions.SeeMore" = "Daha Fazla Gör"; +"Common.Controls.Actions.Settings" = "Ayarlar"; +"Common.Controls.Actions.Share" = "Paylaş"; +"Common.Controls.Actions.SharePost" = "Gönderiyi Paylaş"; +"Common.Controls.Actions.ShareUser" = "%@ ile paylaş"; +"Common.Controls.Actions.SignIn" = "Giriş Yap"; +"Common.Controls.Actions.SignUp" = "Kaydol"; +"Common.Controls.Actions.Skip" = "Atla"; +"Common.Controls.Actions.TakePhoto" = "Fotoğraf Çek"; +"Common.Controls.Actions.TryAgain" = "Tekrar Deneyin"; +"Common.Controls.Actions.UnblockDomain" = "%@ kişisinin engelini kaldır"; +"Common.Controls.Friendship.Block" = "Engelle"; +"Common.Controls.Friendship.BlockDomain" = "%@ kişisini engelle"; +"Common.Controls.Friendship.BlockUser" = "%@ kişisini engelle"; +"Common.Controls.Friendship.Blocked" = "Engellendi"; +"Common.Controls.Friendship.EditInfo" = "Bilgiyi Düzenle"; +"Common.Controls.Friendship.Follow" = "Takip et"; +"Common.Controls.Friendship.Following" = "Takip ediliyor"; +"Common.Controls.Friendship.Mute" = "Sessize al"; +"Common.Controls.Friendship.MuteUser" = "Sustur %@"; +"Common.Controls.Friendship.Muted" = "Susturuldu"; +"Common.Controls.Friendship.Pending" = "Bekliyor"; +"Common.Controls.Friendship.Request" = "İstek"; +"Common.Controls.Friendship.Unblock" = "Engeli kaldır"; +"Common.Controls.Friendship.UnblockUser" = "%@ kişisinin engelini kaldır"; +"Common.Controls.Friendship.Unmute" = "Susturmayı kaldır"; +"Common.Controls.Friendship.UnmuteUser" = "Sesini aç %@"; +"Common.Controls.Keyboard.Common.ComposeNewPost" = "Yeni Gönderi Yaz"; +"Common.Controls.Keyboard.Common.OpenSettings" = "Ayarları Aç"; +"Common.Controls.Keyboard.Common.ShowFavorites" = "Favorilerimi Göster"; +"Common.Controls.Keyboard.Common.SwitchToTab" = "Geç: %@"; +"Common.Controls.Keyboard.SegmentedControl.NextSection" = "Sonraki Bölüm"; +"Common.Controls.Keyboard.SegmentedControl.PreviousSection" = "Önceki Seçim"; +"Common.Controls.Keyboard.Timeline.NextStatus" = "Sonraki Gönderi"; +"Common.Controls.Keyboard.Timeline.OpenAuthorProfile" = "Yazarın Profilini Aç"; +"Common.Controls.Keyboard.Timeline.OpenRebloggerProfile" = "Yeniden Paylaşanın Profilini Aç"; +"Common.Controls.Keyboard.Timeline.OpenStatus" = "Gönderiyi Aç"; +"Common.Controls.Keyboard.Timeline.PreviewImage" = "Görseli Önizle"; +"Common.Controls.Keyboard.Timeline.PreviousStatus" = "Önceki Gönderi"; +"Common.Controls.Keyboard.Timeline.ReplyStatus" = "Gönderiyi Yanıtla"; +"Common.Controls.Keyboard.Timeline.ToggleContentWarning" = "İçerik Uyarısı durumunu değiştir"; +"Common.Controls.Keyboard.Timeline.ToggleFavorite" = "Gönderiyi favorileme durumunu değiştir"; +"Common.Controls.Keyboard.Timeline.ToggleReblog" = "Gönderiyi yeniden paylaşma durumunu değiştir"; +"Common.Controls.Status.Actions.Favorite" = "Favorile"; +"Common.Controls.Status.Actions.Hide" = "Gizle"; +"Common.Controls.Status.Actions.Menu" = "Menü"; +"Common.Controls.Status.Actions.Reblog" = "Yeniden paylaş"; +"Common.Controls.Status.Actions.Reply" = "Yanıtla"; +"Common.Controls.Status.Actions.ShowGif" = "GIF'i göster"; +"Common.Controls.Status.Actions.ShowImage" = "Görüntüyü göster"; +"Common.Controls.Status.Actions.ShowVideoPlayer" = "Video oynatıcıyı göster"; +"Common.Controls.Status.Actions.TapThenHoldToShowMenu" = "Menüyü göstermek için dokunun ve basılı tutun"; +"Common.Controls.Status.Actions.Unfavorite" = "Favorilerden Çıkar"; +"Common.Controls.Status.Actions.Unreblog" = "Yeniden paylaşımı geri al"; +"Common.Controls.Status.ContentWarning" = "İçerik Uyarısı"; +"Common.Controls.Status.MediaContentWarning" = "Göstermek için herhangi bir yere basın"; +"Common.Controls.Status.Poll.Closed" = "Kapandı"; +"Common.Controls.Status.Poll.Vote" = "Oy ver"; +"Common.Controls.Status.SensitiveContent" = "Hassas İçerik"; +"Common.Controls.Status.ShowPost" = "Gönderiyi Göster"; +"Common.Controls.Status.ShowUserProfile" = "Kullanıcı profilini göster"; +"Common.Controls.Status.Tag.Email" = "E-posta"; +"Common.Controls.Status.Tag.Emoji" = "Emoji"; +"Common.Controls.Status.Tag.Hashtag" = "Etiket"; +"Common.Controls.Status.Tag.Link" = "Bağlantı"; +"Common.Controls.Status.Tag.Mention" = "Bahset"; +"Common.Controls.Status.Tag.Url" = "Bağlantı"; +"Common.Controls.Status.TapToReveal" = "Göstermek için basın"; +"Common.Controls.Status.UserReblogged" = "%@ yeniden paylaştı"; +"Common.Controls.Status.UserRepliedTo" = "%@ kullanıcısına yanıt verdi"; +"Common.Controls.Status.Visibility.Direct" = "Sadece bahsedilen kullanıcı bu gönderiyi görebilir."; +"Common.Controls.Status.Visibility.Private" = "Sadece gönderi sahibinin takipçileri bu gönderiyi görebilir."; +"Common.Controls.Status.Visibility.PrivateFromMe" = "Sadece benim takipçilerim bu gönderiyi görebilir."; +"Common.Controls.Status.Visibility.Unlisted" = "Bu gönderiyi herkes görebilir, fakat herkese açık zaman tünelinde gösterilmez."; +"Common.Controls.Tabs.Home" = "Ana Sayfa"; +"Common.Controls.Tabs.Notification" = "Bildirimler"; +"Common.Controls.Tabs.Profile" = "Profil"; +"Common.Controls.Tabs.Search" = "Arama"; +"Common.Controls.Timeline.Filtered" = "Filtrelenmiş"; +"Common.Controls.Timeline.Header.BlockedWarning" = "Bu kişi sizin engelinizi kaldırana +kadar onun profilini göremezsiniz."; +"Common.Controls.Timeline.Header.BlockingWarning" = "Bu kişinin engelini kaldırana kadar +onun profilini göremezsiniz. +Bu kişiye göre profiliniz böyle gözüküyor."; +"Common.Controls.Timeline.Header.NoStatusFound" = "Hiçbir Gönderi Bulunamadı"; +"Common.Controls.Timeline.Header.SuspendedWarning" = "Bu kullanıcı askıya alındı."; +"Common.Controls.Timeline.Header.UserBlockedWarning" = "%@ kişisi sizin engelinizi kaldırana +kadar onun profilini göremezsiniz."; +"Common.Controls.Timeline.Header.UserBlockingWarning" = "%@ kişisinin engelini kaldırana kadar +onun profilini göremezsiniz. +Bu kişiye göre profiliniz böyle gözüküyor."; +"Common.Controls.Timeline.Header.UserSuspendedWarning" = "%@ kişisinin hesabı askıya alındı."; +"Common.Controls.Timeline.Loader.LoadMissingPosts" = "Daha fazla gönderi yükle"; +"Common.Controls.Timeline.Loader.LoadingMissingPosts" = "Daha fazla gönderi yükleniyor..."; +"Common.Controls.Timeline.Loader.ShowMoreReplies" = "Daha fazla yanıt görüntüe"; +"Common.Controls.Timeline.Timestamp.Now" = "Şimdi"; +"Scene.AccountList.AddAccount" = "Hesap Ekle"; +"Scene.AccountList.DismissAccountSwitcher" = "Hesap Değiştiriciyi Kapat"; +"Scene.AccountList.TabBarHint" = "Şu anki seçili profil: %@. Hesap değiştiriciyi göstermek için iki kez dokunun ve basılı tutun"; +"Scene.Compose.Accessibility.AppendAttachment" = "Dosya Ekle"; +"Scene.Compose.Accessibility.AppendPoll" = "Anket Ekle"; +"Scene.Compose.Accessibility.CustomEmojiPicker" = "Özel Emoji Seçici"; +"Scene.Compose.Accessibility.DisableContentWarning" = "İçerik Uyarısını Kapat"; +"Scene.Compose.Accessibility.EnableContentWarning" = "İçerik Uyarısını Etkinleştir"; +"Scene.Compose.Accessibility.PostVisibilityMenu" = "Gönderi Görünürlüğü Menüsü"; +"Scene.Compose.Accessibility.RemovePoll" = "Anketi Kaldır"; +"Scene.Compose.Attachment.AttachmentBroken" = "Bu %@ bozuk ve Mastodon'a +yüklenemiyor."; +"Scene.Compose.Attachment.DescriptionPhoto" = "Görme engelliler için fotoğrafı tarif edin..."; +"Scene.Compose.Attachment.DescriptionVideo" = "Görme engelliler için videoyu tarif edin..."; +"Scene.Compose.Attachment.Photo" = "fotoğraf"; +"Scene.Compose.Attachment.Video" = "video"; +"Scene.Compose.AutoComplete.SpaceToAdd" = "Eklemek için boşluk tuşuna basın"; +"Scene.Compose.ComposeAction" = "Yayınla"; +"Scene.Compose.ContentInputPlaceholder" = "Aklınızdan geçenleri yazın veya yapıştırın"; +"Scene.Compose.ContentWarning.Placeholder" = "Buraya kesin bir uyarı yazın..."; +"Scene.Compose.Keyboard.AppendAttachmentEntry" = "Dosya Ekle - %@"; +"Scene.Compose.Keyboard.DiscardPost" = "Gönderiyi İptal Et"; +"Scene.Compose.Keyboard.PublishPost" = "Gönderiyi Yayınla"; +"Scene.Compose.Keyboard.SelectVisibilityEntry" = "Görünürlüğü Seç - %@"; +"Scene.Compose.Keyboard.ToggleContentWarning" = "İçerik Uyarısı durumunu değiştir"; +"Scene.Compose.Keyboard.TogglePoll" = "Anketi Aç/Kapat"; +"Scene.Compose.MediaSelection.Browse" = "Göz at"; +"Scene.Compose.MediaSelection.Camera" = "Fotoğraf Çek"; +"Scene.Compose.MediaSelection.PhotoLibrary" = "Fotoğraf Albümü"; +"Scene.Compose.Poll.DurationTime" = "Süre: %@"; +"Scene.Compose.Poll.OneDay" = "1 Gün"; +"Scene.Compose.Poll.OneHour" = "1 Saat"; +"Scene.Compose.Poll.OptionNumber" = "Seçenek %ld"; +"Scene.Compose.Poll.SevenDays" = "7 Gün"; +"Scene.Compose.Poll.SixHours" = "6 Saat"; +"Scene.Compose.Poll.ThirtyMinutes" = "30 dakika"; +"Scene.Compose.Poll.ThreeDays" = "3 Gün"; +"Scene.Compose.ReplyingToUser" = "yanıtlanıyor: %@"; +"Scene.Compose.Title.NewPost" = "Yeni Gönderi"; +"Scene.Compose.Title.NewReply" = "Yeni Yanıt"; +"Scene.Compose.Visibility.Direct" = "Sadece bahsettiğim insanlar"; +"Scene.Compose.Visibility.Private" = "Yalnızca takipçiler"; +"Scene.Compose.Visibility.Public" = "Herkese açık"; +"Scene.Compose.Visibility.Unlisted" = "Listelenmemiş"; +"Scene.ConfirmEmail.Button.OpenEmailApp" = "E-posta Uygulamasını Aç"; +"Scene.ConfirmEmail.Button.Resend" = "Yeniden gönder"; +"Scene.ConfirmEmail.DontReceiveEmail.Description" = "E-posta adresinizin doğru olup olmadığını ve doğru ise gereksiz klasörünüzü kontrol edin."; +"Scene.ConfirmEmail.DontReceiveEmail.ResendEmail" = "E-postayı Yeniden Gönder"; +"Scene.ConfirmEmail.DontReceiveEmail.Title" = "Posta kutunuzu kontrol edin"; +"Scene.ConfirmEmail.OpenEmailApp.Description" = "Size bir e-posta gönderdik. Eğer e-postayı almadıysanız, gereksiz klasörünü kontrol edin."; +"Scene.ConfirmEmail.OpenEmailApp.Mail" = "Posta"; +"Scene.ConfirmEmail.OpenEmailApp.OpenEmailClient" = "E-posta İstemcisini Aç"; +"Scene.ConfirmEmail.OpenEmailApp.Title" = "Gelen kutunuzu kontrol edin."; +"Scene.ConfirmEmail.Subtitle" = "Hesabınızı doğrulamak için size e-postayla gönderdiğimiz bağlantıya dokunun."; +"Scene.ConfirmEmail.Title" = "Son bir şey."; +"Scene.Discovery.Intro" = "Bunlar, Mastodon'un köşesinde ilgi çeken gönderilerdir."; +"Scene.Discovery.Tabs.Community" = "Community"; +"Scene.Discovery.Tabs.ForYou" = "Senin İçin"; +"Scene.Discovery.Tabs.Hashtags" = "Etiketler"; +"Scene.Discovery.Tabs.News" = "Haberler"; +"Scene.Discovery.Tabs.Posts" = "Gönderiler"; +"Scene.Favorite.Title" = "Favorilerin"; +"Scene.Follower.Footer" = "Diğer sunucudaki takipçiler gösterilemiyor."; +"Scene.Following.Footer" = "Diğer sunucudaki takip edilenler gösterilemiyor."; +"Scene.HomeTimeline.NavigationBarState.NewPosts" = "Yeni gönderiler gör"; +"Scene.HomeTimeline.NavigationBarState.Offline" = "Çevrimdışı"; +"Scene.HomeTimeline.NavigationBarState.Published" = "Yayınlandı!"; +"Scene.HomeTimeline.NavigationBarState.Publishing" = "Gönderi yayınlanıyor..."; +"Scene.HomeTimeline.Title" = "Ana Sayfa"; +"Scene.Notification.Keyobard.ShowEverything" = "Her Şeyi Göster"; +"Scene.Notification.Keyobard.ShowMentions" = "Bahsetmeleri Göster"; +"Scene.Notification.NotificationDescription.FavoritedYourPost" = "gönderini favoriledi"; +"Scene.Notification.NotificationDescription.FollowedYou" = "seni takip etti"; +"Scene.Notification.NotificationDescription.MentionedYou" = "senden bahsetti"; +"Scene.Notification.NotificationDescription.PollHasEnded" = "anket sona erdi"; +"Scene.Notification.NotificationDescription.RebloggedYourPost" = "gönderini yeniden paylaştı"; +"Scene.Notification.NotificationDescription.RequestToFollowYou" = "size takip isteği gönderdi"; +"Scene.Notification.Title.Everything" = "Her şey"; +"Scene.Notification.Title.Mentions" = "Bahsetmeler"; +"Scene.Preview.Keyboard.ClosePreview" = "Önizlemeyi Kapat"; +"Scene.Preview.Keyboard.ShowNext" = "Sonrakini Göster"; +"Scene.Preview.Keyboard.ShowPrevious" = "Öncekini Göster"; +"Scene.Profile.Accessibility.DoubleTapToOpenTheList" = "Listeyi açmak için çift tıklayın"; +"Scene.Profile.Accessibility.EditAvatarImage" = "Profil fotoğrafını düzenle"; +"Scene.Profile.Accessibility.ShowAvatarImage" = "Profil resmini göster"; +"Scene.Profile.Accessibility.ShowBannerImage" = "Kapak fotoğrafını göster"; +"Scene.Profile.Dashboard.Followers" = "takipçi"; +"Scene.Profile.Dashboard.Following" = "takip ediliyor"; +"Scene.Profile.Dashboard.Posts" = "gönderiler"; +"Scene.Profile.Fields.AddRow" = "Satır Ekle"; +"Scene.Profile.Fields.Placeholder.Content" = "İçerik"; +"Scene.Profile.Fields.Placeholder.Label" = "Etiket"; +"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Message" = "%@ engellemeyi onayla"; +"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "Hesabı Engelle"; +"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Message" = "%@ susturmak için onaylayın"; +"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "Hesabı sustur"; +"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "%@ engellemeyi kaldırmayı onaylayın"; +"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "Hesabın Engelini Kaldır"; +"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "%@ susturmasını kaldırmak için onaylayın"; +"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Title" = "Susturmayı kaldır"; +"Scene.Profile.SegmentedControl.About" = "Hakkında"; +"Scene.Profile.SegmentedControl.Media" = "Medya"; +"Scene.Profile.SegmentedControl.Posts" = "Gönderiler"; +"Scene.Profile.SegmentedControl.PostsAndReplies" = "Gönderiler ve Yanıtlar"; +"Scene.Profile.SegmentedControl.Replies" = "Yanıtlar"; +"Scene.Register.Error.Item.Agreement" = "Anlaşma"; +"Scene.Register.Error.Item.Email" = "E-posta"; +"Scene.Register.Error.Item.Locale" = "Locale"; +"Scene.Register.Error.Item.Password" = "Parola"; +"Scene.Register.Error.Item.Reason" = "Sebep"; +"Scene.Register.Error.Item.Username" = "Kullanıcı adı"; +"Scene.Register.Error.Reason.Accepted" = "%@ kabul edilmelidir"; +"Scene.Register.Error.Reason.Blank" = "%@ gerekli"; +"Scene.Register.Error.Reason.Blocked" = "%@ izin verilmeyen bir e-posta sağlayıcı içeriyor"; +"Scene.Register.Error.Reason.Inclusion" = "%@ desteklenen bir değer değil"; +"Scene.Register.Error.Reason.Invalid" = "%@ geçersiz"; +"Scene.Register.Error.Reason.Reserved" = "%@ rezerve edilen bir kelime"; +"Scene.Register.Error.Reason.Taken" = "%@ zaten kullanımda"; +"Scene.Register.Error.Reason.TooLong" = "%@ çok uzun"; +"Scene.Register.Error.Reason.TooShort" = "%@ çok kısa"; +"Scene.Register.Error.Reason.Unreachable" = "%@ mevcut değil"; +"Scene.Register.Error.Special.EmailInvalid" = "Bu geçerli bir e-posta adresi değil"; +"Scene.Register.Error.Special.PasswordTooShort" = "Şifre çok kısa (en az 8 karakter olmalı)"; +"Scene.Register.Error.Special.UsernameInvalid" = "Kullanıcı adı yalnızca alfasayısal karakterler ve alt çizgiler içerebilir"; +"Scene.Register.Error.Special.UsernameTooLong" = "Kullanıcı adı çok uzun (30 karakterden uzun olamaz)"; +"Scene.Register.Input.Avatar.Delete" = "Sil"; +"Scene.Register.Input.DisplayName.Placeholder" = "görünen ad"; +"Scene.Register.Input.Email.Placeholder" = "e-posta"; +"Scene.Register.Input.Invite.RegistrationUserInviteRequest" = "Neden katılmak istiyorsun?"; +"Scene.Register.Input.Password.Accessibility.Checked" = "işaretli"; +"Scene.Register.Input.Password.Accessibility.Unchecked" = "işaretsiz"; +"Scene.Register.Input.Password.CharacterLimit" = "8 karakter"; +"Scene.Register.Input.Password.Hint" = "Parolanız en az sekiz karakter içermelidir"; +"Scene.Register.Input.Password.Placeholder" = "parola"; +"Scene.Register.Input.Password.Require" = "Parolanızda en azından şunlar olmalı:"; +"Scene.Register.Input.Username.DuplicatePrompt" = "Bu kullanıcı adı alınmış."; +"Scene.Register.Input.Username.Placeholder" = "kullanıcı adı"; +"Scene.Register.Title" = "%@ için kurulumunuzu yapalım"; +"Scene.Report.Content1" = "Bu rapora eklemek istediğiniz başka gönderiler var mı?"; +"Scene.Report.Content2" = "Bu rapor hakkında moderatörlerin bilmesi gerektiği bir şey var mı?"; +"Scene.Report.ReportSentTitle" = "Rapor için teşekkürler, bununla ilgileneceğiz."; +"Scene.Report.Reported" = "RAPORLANDI"; +"Scene.Report.Send" = "Raporu Gönder"; +"Scene.Report.SkipToSend" = "Yorum yapmadan gönder"; +"Scene.Report.Step1" = "Adım 1/2"; +"Scene.Report.Step2" = "Adım 2/2"; +"Scene.Report.TextPlaceholder" = "Ek yorum yazın veya yapıştırın"; +"Scene.Report.Title" = "%@ kişisini bildir"; +"Scene.Report.TitleReport" = "Raporla"; +"Scene.Search.Recommend.Accounts.Description" = "Bu hesapları takip etmek isteyebilirsiniz"; +"Scene.Search.Recommend.Accounts.Follow" = "Takip et"; +"Scene.Search.Recommend.Accounts.Title" = "Hoşunuza gidebilecek hesaplar"; +"Scene.Search.Recommend.ButtonText" = "Tümünü Gör"; +"Scene.Search.Recommend.HashTag.Description" = "Oldukça ilgi gören etiketler"; +"Scene.Search.Recommend.HashTag.PeopleTalking" = "%@ kişi konuşuyor"; +"Scene.Search.Recommend.HashTag.Title" = "Mastodon'da Popüler"; +"Scene.Search.SearchBar.Cancel" = "İptal"; +"Scene.Search.SearchBar.Placeholder" = "Etiketleri ve kullanıcıları ara"; +"Scene.Search.Searching.Clear" = "Temizle"; +"Scene.Search.Searching.EmptyState.NoResults" = "Sonuç yok"; +"Scene.Search.Searching.RecentSearch" = "Son aramalar"; +"Scene.Search.Searching.Segment.All" = "Tümü"; +"Scene.Search.Searching.Segment.Hashtags" = "Etiketler"; +"Scene.Search.Searching.Segment.People" = "İnsanlar"; +"Scene.Search.Searching.Segment.Posts" = "Gönderiler"; +"Scene.Search.Title" = "Arama"; +"Scene.ServerPicker.Button.Category.Academia" = "akademi"; +"Scene.ServerPicker.Button.Category.Activism" = "aktivizm"; +"Scene.ServerPicker.Button.Category.All" = "Tümü"; +"Scene.ServerPicker.Button.Category.AllAccessiblityDescription" = "Kategori: Tümü"; +"Scene.ServerPicker.Button.Category.Art" = "sanat"; +"Scene.ServerPicker.Button.Category.Food" = "yiyecek"; +"Scene.ServerPicker.Button.Category.Furry" = "furry"; +"Scene.ServerPicker.Button.Category.Games" = "oyunlar"; +"Scene.ServerPicker.Button.Category.General" = "genel"; +"Scene.ServerPicker.Button.Category.Journalism" = "gazetecilik"; +"Scene.ServerPicker.Button.Category.Lgbt" = "lgbt"; +"Scene.ServerPicker.Button.Category.Music" = "müzik"; +"Scene.ServerPicker.Button.Category.Regional" = "bölgesel"; +"Scene.ServerPicker.Button.Category.Tech" = "teknoloji"; +"Scene.ServerPicker.Button.SeeLess" = "Daha Az Göster"; +"Scene.ServerPicker.Button.SeeMore" = "Daha Fazla Gör"; +"Scene.ServerPicker.EmptyState.BadNetwork" = "Veriyi yüklerken bir hata oluştu. Lütfen internet bağlantınızı kontrol edin."; +"Scene.ServerPicker.EmptyState.FindingServers" = "Mevcut sunucular aranıyor..."; +"Scene.ServerPicker.EmptyState.NoResults" = "Sonuç yok"; +"Scene.ServerPicker.Input.Placeholder" = "Toplulukları ara"; +"Scene.ServerPicker.Label.Category" = "KATEGORİ"; +"Scene.ServerPicker.Label.Language" = "DİL"; +"Scene.ServerPicker.Label.Users" = "KULLANICILAR"; +"Scene.ServerPicker.Subtitle" = "İlgi alanlarınıza, bölgenize veya genel amaçlı bir topluluk seçin."; +"Scene.ServerPicker.SubtitleExtend" = "İlgi alanlarınıza, bölgenize veya genel amaçlı bir topluluk seçin. Her topluluk tamamen bağımsız bir kuruluş veya kişi tarafından işletilmektedir."; +"Scene.ServerPicker.Title" = "Mastodon, farklı topluluklardaki kullanıcılardan oluşur."; +"Scene.ServerRules.Button.Confirm" = "Kabul Ediyorum"; +"Scene.ServerRules.PrivacyPolicy" = "gizlilik politikası"; +"Scene.ServerRules.Prompt" = "Devam ederek, %@ için kullanım şartlarını ve gizlilik politikasını kabul etmiş olursunuz."; +"Scene.ServerRules.Subtitle" = "Bunlar, %@ moderatörleri tarafından ayarlanmış ve uygulanmıştır."; +"Scene.ServerRules.TermsOfService" = "kullanım şartları"; +"Scene.ServerRules.Title" = "Bazı temel kurallar."; +"Scene.Settings.Footer.MastodonDescription" = "Mastodon açık kaynaklı bir yazılımdır. GitHub'dan %@ (%@) üzerinden katkıda bulunabilir veya sorunları bildirebilirsiniz"; +"Scene.Settings.Keyboard.CloseSettingsWindow" = "Ayarlar Penceresini Kapat"; +"Scene.Settings.Section.Appearance.Automatic" = "Otomatik"; +"Scene.Settings.Section.Appearance.Dark" = "Daima Koyu"; +"Scene.Settings.Section.Appearance.Light" = "Daima Açık"; +"Scene.Settings.Section.Appearance.Title" = "Görünüm"; +"Scene.Settings.Section.BoringZone.AccountSettings" = "Hesap Ayarları"; +"Scene.Settings.Section.BoringZone.Privacy" = "Gizlilik Politikası"; +"Scene.Settings.Section.BoringZone.Terms" = "Hizmet Şartları"; +"Scene.Settings.Section.BoringZone.Title" = "Sıkıcı Bölge"; +"Scene.Settings.Section.LookAndFeel.Light" = "Açık"; +"Scene.Settings.Section.LookAndFeel.ReallyDark" = "Gerçek Koyu"; +"Scene.Settings.Section.LookAndFeel.SortaDark" = "Hafif Koyu"; +"Scene.Settings.Section.LookAndFeel.Title" = "Look and Feel"; +"Scene.Settings.Section.LookAndFeel.UseSystem" = "Sistem İle Aynı"; +"Scene.Settings.Section.Notifications.Boosts" = "Gönderimi yeniden paylaştığında"; +"Scene.Settings.Section.Notifications.Favorites" = "Gönderimi favorilerine eklediğinde"; +"Scene.Settings.Section.Notifications.Follows" = "Beni takip ettiğinde"; +"Scene.Settings.Section.Notifications.Mentions" = "Benden bahsettiğinde"; +"Scene.Settings.Section.Notifications.Title" = "Bildirimler"; +"Scene.Settings.Section.Notifications.Trigger.Anyone" = "herhangi biri"; +"Scene.Settings.Section.Notifications.Trigger.Follow" = "takip ettiğim biri"; +"Scene.Settings.Section.Notifications.Trigger.Follower" = "bir takipçim"; +"Scene.Settings.Section.Notifications.Trigger.Noone" = "bilgilendirme"; +"Scene.Settings.Section.Notifications.Trigger.Title" = "Beni şu durumda bilgilendir: "; +"Scene.Settings.Section.Preference.DisableAvatarAnimation" = "Hareketli avatarları devre dışı bırak"; +"Scene.Settings.Section.Preference.DisableEmojiAnimation" = "Hareketli emojileri devre dışı bırak"; +"Scene.Settings.Section.Preference.OpenLinksInMastodon" = "Bağlantıları Mastodon içinden aç"; +"Scene.Settings.Section.Preference.Title" = "Tercihler"; +"Scene.Settings.Section.Preference.TrueBlackDarkMode" = "Tam siyah koyu modu"; +"Scene.Settings.Section.Preference.UsingDefaultBrowser" = "Bağlantıları varsayılan tarayıcıda aç"; +"Scene.Settings.Section.SpicyZone.Clear" = "Medya Önbelleğini Temizle"; +"Scene.Settings.Section.SpicyZone.Signout" = "Oturumu Kapat"; +"Scene.Settings.Section.SpicyZone.Title" = "Tehlikeli bölge"; +"Scene.Settings.Title" = "Ayarlar"; +"Scene.SuggestionAccount.FollowExplain" = "Birisini takip ettiğinizde, ana sayfanızda o kişinin gönderilerini görürsünüz."; +"Scene.SuggestionAccount.Title" = "Takip Edecek İnsanlar Bul"; +"Scene.Thread.BackTitle" = "Gönderi"; +"Scene.Thread.Title" = "%@ kullanıcının gönderisi"; +"Scene.Welcome.GetStarted" = "Başlayın"; +"Scene.Welcome.LogIn" = "Oturum Aç"; +"Scene.Welcome.Slogan" = "Sosyal ağ, +tekrardan ellerinizde."; +"Scene.Wizard.AccessibilityHint" = "Bu yardımı kapatmak için çift tıklayın"; +"Scene.Wizard.MultipleAccountSwitchIntroDescription" = "Profil butonuna basılı tutarak birden fazla hesap arasında geçiş yapın."; +"Scene.Wizard.NewInMastodon" = "Mastodon'da Yeni"; \ No newline at end of file diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/tr.lproj/Localizable.stringsdict b/MastodonSDK/Sources/MastodonLocalization/Resources/tr.lproj/Localizable.stringsdict new file mode 100644 index 000000000..d6817c1f6 --- /dev/null +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/tr.lproj/Localizable.stringsdict @@ -0,0 +1,406 @@ + + + + + a11y.plural.count.unread.notification + + NSStringLocalizedFormatKey + %#@notification_count_unread_notification@ + notification_count_unread_notification + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + Okunmamış 1 bildirim + other + Okunmamış %ld bildirim + + + a11y.plural.count.input_limit_exceeds + + NSStringLocalizedFormatKey + %#@character_count@ karakter limiti aşıyor + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 karakter + other + %ld karakter + + + a11y.plural.count.input_limit_remains + + NSStringLocalizedFormatKey + %#@character_count@ karakter limiti var + character_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 karakter + other + %ld karakter + + + plural.count.metric_formatted.post + + NSStringLocalizedFormatKey + %@ %#@post_count@ + post_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + gönderi + other + gönderi + + + plural.count.post + + NSStringLocalizedFormatKey + %#@post_count@ + post_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 gönderi + other + %ld gönderi + + + plural.count.favorite + + NSStringLocalizedFormatKey + %#@favorite_count@ + favorite_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 favori + other + %ld favori + + + plural.count.reblog + + NSStringLocalizedFormatKey + %#@reblog_count@ + reblog_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 yeniden paylaşım + other + %ld yeniden paylaşım + + + plural.count.reply + + NSStringLocalizedFormatKey + %#@reply_count@ + reply_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + %ld yanıt + other + %ld yanıt + + + plural.count.vote + + NSStringLocalizedFormatKey + %#@vote_count@ + vote_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 oy + other + %ld oy + + + plural.count.voter + + NSStringLocalizedFormatKey + %#@voter_count@ + voter_count + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 oy veren + other + %ld oy veren + + + plural.people_talking + + NSStringLocalizedFormatKey + %#@count_people_talking@ + count_people_talking + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 kişi konuşuyor + other + %ld kişi konuşuyor + + + plural.count.following + + NSStringLocalizedFormatKey + %#@count_following@ + count_following + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 takip edilen + other + %ld takip edilen + + + plural.count.follower + + NSStringLocalizedFormatKey + %#@count_follower@ + count_follower + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 takipçi + other + %ld takipçi + + + date.year.left + + NSStringLocalizedFormatKey + %#@count_year_left@ + count_year_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 yıl kaldı + other + %ld yıl kaldı + + + date.month.left + + NSStringLocalizedFormatKey + %#@count_month_left@ + count_month_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 ay kaldı + other + %ld ay kaldı + + + date.day.left + + NSStringLocalizedFormatKey + %#@count_day_left@ + count_day_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 gün kaldı + other + %ld gün kaldı + + + date.hour.left + + NSStringLocalizedFormatKey + %#@count_hour_left@ + count_hour_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 saat kaldı + other + %ld saat kaldı + + + date.minute.left + + NSStringLocalizedFormatKey + %#@count_minute_left@ + count_minute_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 dakika kaldı + other + %ld dakika kaldı + + + date.second.left + + NSStringLocalizedFormatKey + %#@count_second_left@ + count_second_left + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 saniye kaldı + other + %ld saniye kaldı + + + date.year.ago.abbr + + NSStringLocalizedFormatKey + %#@count_year_ago_abbr@ + count_year_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 yıl önce + other + %ld yıl önce + + + date.month.ago.abbr + + NSStringLocalizedFormatKey + %#@count_month_ago_abbr@ + count_month_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 ay önce + other + %ld ay önce + + + date.day.ago.abbr + + NSStringLocalizedFormatKey + %#@count_day_ago_abbr@ + count_day_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 gün önce + other + %ld gün önce + + + date.hour.ago.abbr + + NSStringLocalizedFormatKey + %#@count_hour_ago_abbr@ + count_hour_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 saat önce + other + %ld saat önce + + + date.minute.ago.abbr + + NSStringLocalizedFormatKey + %#@count_minute_ago_abbr@ + count_minute_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 dakika önce + other + %ld dakika önce + + + date.second.ago.abbr + + NSStringLocalizedFormatKey + %#@count_second_ago_abbr@ + count_second_ago_abbr + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + one + 1 saniye önce + other + %ld saniye önce + + + + diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/zh-Hant.lproj/Localizable.strings b/MastodonSDK/Sources/MastodonLocalization/Resources/zh-Hant.lproj/Localizable.strings new file mode 100644 index 000000000..e76396f15 --- /dev/null +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/zh-Hant.lproj/Localizable.strings @@ -0,0 +1,387 @@ +"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.Message" = "是否確定要刪除此嘟文?"; +"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.Compose" = "撰寫"; +"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" = "OK"; +"Common.Controls.Actions.Open" = "開啟"; +"Common.Controls.Actions.OpenInBrowser" = "在瀏覽器中開啟"; +"Common.Controls.Actions.OpenInSafari" = "在 Safari 中開啟"; +"Common.Controls.Actions.Preview" = "預覽"; +"Common.Controls.Actions.Previous" = "上一步"; +"Common.Controls.Actions.Remove" = "刪除"; +"Common.Controls.Actions.Reply" = "回覆"; +"Common.Controls.Actions.ReportUser" = "檢舉 %@"; +"Common.Controls.Actions.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.Hide" = "隱藏"; +"Common.Controls.Status.Actions.Menu" = "選單"; +"Common.Controls.Status.Actions.Reblog" = "轉嘟"; +"Common.Controls.Status.Actions.Reply" = "回覆"; +"Common.Controls.Status.Actions.ShowGif" = "顯示 GIF"; +"Common.Controls.Status.Actions.ShowImage" = "顯示圖片"; +"Common.Controls.Status.Actions.ShowVideoPlayer" = "顯示影片播放器"; +"Common.Controls.Status.Actions.TapThenHoldToShowMenu" = "輕觸然後按住以顯示選單"; +"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.SensitiveContent" = "敏感內容"; +"Common.Controls.Status.ShowPost" = "顯示嘟文"; +"Common.Controls.Status.ShowUserProfile" = "顯示使用者個人檔案頁面"; +"Common.Controls.Status.Tag.Email" = "電子郵件"; +"Common.Controls.Status.Tag.Emoji" = "emoji"; +"Common.Controls.Status.Tag.Hashtag" = "主題標籤"; +"Common.Controls.Status.Tag.Link" = "連結"; +"Common.Controls.Status.Tag.Mention" = "提及"; +"Common.Controls.Status.Tag.Url" = "網址"; +"Common.Controls.Status.TapToReveal" = "輕觸以顯示"; +"Common.Controls.Status.UserReblogged" = "%@ 已轉嘟"; +"Common.Controls.Status.UserRepliedTo" = "回覆給 %@"; +"Common.Controls.Status.Visibility.Direct" = "只有被提及的使用者能看到此嘟文。"; +"Common.Controls.Status.Visibility.Private" = "只有他們的跟隨者能看到此嘟文。"; +"Common.Controls.Status.Visibility.PrivateFromMe" = "只有我的跟隨者能看到此嘟文。"; +"Common.Controls.Status.Visibility.Unlisted" = "任何人都能看到此嘟文,但是不會顯示於公開時間軸上。"; +"Common.Controls.Tabs.Home" = "首頁"; +"Common.Controls.Tabs.Notification" = "通知"; +"Common.Controls.Tabs.Profile" = "個人檔案"; +"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.AccountList.AddAccount" = "新增帳號"; +"Scene.AccountList.DismissAccountSwitcher" = "關閉帳號切換器"; +"Scene.AccountList.TabBarHint" = "目前已選擇的個人檔案:%@。點兩下然後按住以顯示帳號切換器"; +"Scene.Compose.Accessibility.AppendAttachment" = "新增附件"; +"Scene.Compose.Accessibility.AppendPoll" = "新增投票"; +"Scene.Compose.Accessibility.CustomEmojiPicker" = "自訂 emoji 選擇器"; +"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" = "一天"; +"Scene.Compose.Poll.OneHour" = "一小時"; +"Scene.Compose.Poll.OptionNumber" = "選項 %ld"; +"Scene.Compose.Poll.SevenDays" = "七天"; +"Scene.Compose.Poll.SixHours" = "六小時"; +"Scene.Compose.Poll.ThirtyMinutes" = "30 分鐘"; +"Scene.Compose.Poll.ThreeDays" = "三天"; +"Scene.Compose.ReplyingToUser" = "正在回覆 %@"; +"Scene.Compose.Title.NewPost" = "新增嘟文"; +"Scene.Compose.Title.NewReply" = "新增回覆"; +"Scene.Compose.Visibility.Direct" = "僅限於我提及的人"; +"Scene.Compose.Visibility.Private" = "僅限跟隨者"; +"Scene.Compose.Visibility.Public" = "公開"; +"Scene.Compose.Visibility.Unlisted" = "不公開"; +"Scene.ConfirmEmail.Button.OpenEmailApp" = "開啟電子郵件 App"; +"Scene.ConfirmEmail.Button.Resend" = "重新發送"; +"Scene.ConfirmEmail.DontReceiveEmail.Description" = "請檢查您的電子郵件地址是否正確,以及您的垃圾信件夾。"; +"Scene.ConfirmEmail.DontReceiveEmail.ResendEmail" = "重新發送電子郵件"; +"Scene.ConfirmEmail.DontReceiveEmail.Title" = "請檢查您的電子郵件"; +"Scene.ConfirmEmail.OpenEmailApp.Description" = "我們剛寄送您一封電子郵件。請檢查您的垃圾信件夾。"; +"Scene.ConfirmEmail.OpenEmailApp.Mail" = "電子郵件"; +"Scene.ConfirmEmail.OpenEmailApp.OpenEmailClient" = "請開啟電子郵件程式"; +"Scene.ConfirmEmail.OpenEmailApp.Title" = "請檢查您的收件夾。"; +"Scene.ConfirmEmail.Subtitle" = "點擊我們寄送給您的帳號驗證連結。"; +"Scene.ConfirmEmail.Title" = "最後一步。"; +"Scene.Discovery.Intro" = "這些嘟文正在您 Mastodon 的角落受到注目。"; +"Scene.Discovery.Tabs.Community" = "社群"; +"Scene.Discovery.Tabs.ForYou" = "為您推薦"; +"Scene.Discovery.Tabs.Hashtags" = "主題標籤"; +"Scene.Discovery.Tabs.News" = "最新消息"; +"Scene.Discovery.Tabs.Posts" = "嘟文"; +"Scene.Favorite.Title" = "您的最愛"; +"Scene.Follower.Footer" = "來自其他伺服器的跟隨者不會被顯示。"; +"Scene.Following.Footer" = "來自其他伺服器的跟隨中不會被顯示。"; +"Scene.HomeTimeline.NavigationBarState.NewPosts" = "檢視最新嘟文"; +"Scene.HomeTimeline.NavigationBarState.Offline" = "離線"; +"Scene.HomeTimeline.NavigationBarState.Published" = "嘟出去!"; +"Scene.HomeTimeline.NavigationBarState.Publishing" = "發表嘟文..."; +"Scene.HomeTimeline.Title" = "首頁"; +"Scene.Notification.Keyobard.ShowEverything" = "顯示全部"; +"Scene.Notification.Keyobard.ShowMentions" = "顯示提及"; +"Scene.Notification.NotificationDescription.FavoritedYourPost" = "最愛了您的嘟文"; +"Scene.Notification.NotificationDescription.FollowedYou" = "跟隨了您"; +"Scene.Notification.NotificationDescription.MentionedYou" = "提到了您"; +"Scene.Notification.NotificationDescription.PollHasEnded" = "投票已結束"; +"Scene.Notification.NotificationDescription.RebloggedYourPost" = "轉嘟了您的嘟文"; +"Scene.Notification.NotificationDescription.RequestToFollowYou" = "要求跟隨您"; +"Scene.Notification.Title.Everything" = "全部"; +"Scene.Notification.Title.Mentions" = "提及"; +"Scene.Preview.Keyboard.ClosePreview" = "關閉預覽"; +"Scene.Preview.Keyboard.ShowNext" = "顯示下一筆"; +"Scene.Preview.Keyboard.ShowPrevious" = "顯示上一筆"; +"Scene.Profile.Accessibility.DoubleTapToOpenTheList" = "點兩下以開啟列表"; +"Scene.Profile.Accessibility.EditAvatarImage" = "編輯大頭貼"; +"Scene.Profile.Accessibility.ShowAvatarImage" = "顯示大頭貼"; +"Scene.Profile.Accessibility.ShowBannerImage" = "顯示橫幅圖片"; +"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.ConfirmBlockUser.Message" = "確認將 %@ 封鎖"; +"Scene.Profile.RelationshipActionAlert.ConfirmBlockUser.Title" = "封鎖"; +"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Message" = "確認將 %@ 靜音"; +"Scene.Profile.RelationshipActionAlert.ConfirmMuteUser.Title" = "靜音"; +"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Message" = "確認將 %@ 取消封鎖"; +"Scene.Profile.RelationshipActionAlert.ConfirmUnblockUser.Title" = "取消封鎖"; +"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Message" = "確認將 %@ 取消靜音"; +"Scene.Profile.RelationshipActionAlert.ConfirmUnmuteUser.Title" = "取消靜音"; +"Scene.Profile.SegmentedControl.About" = "關於"; +"Scene.Profile.SegmentedControl.Media" = "媒體"; +"Scene.Profile.SegmentedControl.Posts" = "嘟文"; +"Scene.Profile.SegmentedControl.PostsAndReplies" = "嘟文及回覆"; +"Scene.Profile.SegmentedControl.Replies" = "回覆"; +"Scene.Register.Error.Item.Agreement" = "條款"; +"Scene.Register.Error.Item.Email" = "電子郵件"; +"Scene.Register.Error.Item.Locale" = "地區"; +"Scene.Register.Error.Item.Password" = "密碼"; +"Scene.Register.Error.Item.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" = "密碼太短了(至少需要八個字元)"; +"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.Accessibility.Checked" = "已選擇"; +"Scene.Register.Input.Password.Accessibility.Unchecked" = "取消勾選"; +"Scene.Register.Input.Password.CharacterLimit" = "8 個字元"; +"Scene.Register.Input.Password.Hint" = "您的密碼必須至少為八個字元"; +"Scene.Register.Input.Password.Placeholder" = "密碼"; +"Scene.Register.Input.Password.Require" = "您的密碼必須是至少:"; +"Scene.Register.Input.Username.DuplicatePrompt" = "此使用者名稱已被佔用。"; +"Scene.Register.Input.Username.Placeholder" = "使用者名稱"; +"Scene.Register.Title" = "讓我們一起設定 %@ 吧!"; +"Scene.Report.Content1" = "還有其他您想加入這份檢舉報告的嘟文嗎?"; +"Scene.Report.Content2" = "有其他管管們需要知道關於這份檢舉報告的嗎?"; +"Scene.Report.ReportSentTitle" = "感謝您的檢舉,我們將著手處理。"; +"Scene.Report.Reported" = "已檢舉"; +"Scene.Report.Send" = "傳送檢舉報告"; +"Scene.Report.SkipToSend" = "不加入備註並傳送"; +"Scene.Report.Step1" = "兩個步驟中的第一步"; +"Scene.Report.Step2" = "兩個步驟中的第二步"; +"Scene.Report.TextPlaceholder" = "請輸入或貼上額外的備註"; +"Scene.Report.Title" = "檢舉 %@"; +"Scene.Report.TitleReport" = "檢舉"; +"Scene.Search.Recommend.Accounts.Description" = "您也許想跟隨這些帳號"; +"Scene.Search.Recommend.Accounts.Follow" = "跟隨"; +"Scene.Search.Recommend.Accounts.Title" = "您可能會喜歡的帳號"; +"Scene.Search.Recommend.ButtonText" = "檢視全部"; +"Scene.Search.Recommend.HashTag.Description" = "發燒中的主題標籤"; +"Scene.Search.Recommend.HashTag.PeopleTalking" = "%@ 人正在討論"; +"Scene.Search.Recommend.HashTag.Title" = "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" = "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.Subtitle" = "基於您的興趣、地區、或一般用途選定一個伺服器。"; +"Scene.ServerPicker.SubtitleExtend" = "基於您的興趣、地區、或一般用途選定一個伺服器。每個伺服器是由完全獨立的組織或個人營運。"; +"Scene.ServerPicker.Title" = "Mastodon 由不同伺服器的使用者組成。"; +"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.LookAndFeel.Light" = "淺色"; +"Scene.Settings.Section.LookAndFeel.ReallyDark" = "闇黑風格"; +"Scene.Settings.Section.LookAndFeel.SortaDark" = "有點黑又不會太黑"; +"Scene.Settings.Section.LookAndFeel.Title" = "外觀與風格"; +"Scene.Settings.Section.LookAndFeel.UseSystem" = "與系統一致"; +"Scene.Settings.Section.Notifications.Boosts" = "將我的嘟文轉嘟"; +"Scene.Settings.Section.Notifications.Favorites" = "將我的嘟文加到最愛"; +"Scene.Settings.Section.Notifications.Follows" = "跟隨著我"; +"Scene.Settings.Section.Notifications.Mentions" = "提到了我"; +"Scene.Settings.Section.Notifications.Title" = "通知"; +"Scene.Settings.Section.Notifications.Trigger.Anyone" = "任何人"; +"Scene.Settings.Section.Notifications.Trigger.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" = "停用動畫 emoji"; +"Scene.Settings.Section.Preference.OpenLinksInMastodon" = "在 Mastodon 中開啟連結"; +"Scene.Settings.Section.Preference.Title" = "偏好設定"; +"Scene.Settings.Section.Preference.TrueBlackDarkMode" = "真☆闇黑模式"; +"Scene.Settings.Section.Preference.UsingDefaultBrowser" = "使用預設瀏覽器開啟連結"; +"Scene.Settings.Section.SpicyZone.Clear" = "清除媒體快取"; +"Scene.Settings.Section.SpicyZone.Signout" = "登出"; +"Scene.Settings.Section.SpicyZone.Title" = "危險地帶"; +"Scene.Settings.Title" = "設定"; +"Scene.SuggestionAccount.FollowExplain" = "當您跟隨這些人時,將會看到他們的嘟文出現在您的首頁時間軸上。"; +"Scene.SuggestionAccount.Title" = "尋找一些人來跟隨"; +"Scene.Thread.BackTitle" = "嘟文"; +"Scene.Thread.Title" = "來自 %@ 的嘟文"; +"Scene.Welcome.GetStarted" = "新手上路"; +"Scene.Welcome.LogIn" = "登入"; +"Scene.Welcome.Slogan" = "社群網路 +還權於您。"; +"Scene.Wizard.AccessibilityHint" = "點兩下以關閉此設定精靈"; +"Scene.Wizard.MultipleAccountSwitchIntroDescription" = "按住個人檔案按鈕以於多個帳號間切換。"; +"Scene.Wizard.NewInMastodon" = "Mastodon 新功能"; \ No newline at end of file diff --git a/MastodonSDK/Sources/MastodonLocalization/Resources/zh-Hant.lproj/Localizable.stringsdict b/MastodonSDK/Sources/MastodonLocalization/Resources/zh-Hant.lproj/Localizable.stringsdict new file mode 100644 index 000000000..0f28a8f6e --- /dev/null +++ b/MastodonSDK/Sources/MastodonLocalization/Resources/zh-Hant.lproj/Localizable.stringsdict @@ -0,0 +1,356 @@ + + + + + a11y.plural.count.unread.notification + + NSStringLocalizedFormatKey + %#@notification_count_unread_notification@ + notification_count_unread_notification + + NSStringFormatSpecTypeKey + NSStringPluralRuleType + NSStringFormatValueTypeKey + ld + other + %ld 則未讀通知 + + + 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.reply + + NSStringLocalizedFormatKey + %#@reply_count@ + reply_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 秒前 + + + +