damus

nostr ios client
git clone git://jb55.com/damus
Log | Files | Refs | README | LICENSE

commit 1e22984d52c910b0d17c18996219174a2e144355
parent 9080e4efae076cd0459b1a45be589bfd1d5731b9
Author: William Casarin <jb55@jb55.com>
Date:   Wed, 15 Feb 2023 08:49:45 -0800

Merge remote-tracking branch 'tyiu/tyiu/translations'

Diffstat:
Mdamus/Components/ZapButton.swift | 2+-
Mdamus/Views/ActionBar/EventActionBar.swift | 6+++---
Mdamus/Views/ActionBar/EventDetailBar.swift | 6+++---
Mdamus/Views/ChatView.swift | 4++--
Mdamus/Views/ConfigView.swift | 2+-
Mdamus/Views/CreateAccountView.swift | 4++--
Mdamus/Views/EventDetailView.swift | 2+-
Mdamus/Views/Events/ReplyDescription.swift | 2+-
Mdamus/Views/Events/SelectedEventView.swift | 2+-
Mdamus/Views/Events/TextEvent.swift | 2+-
Mdamus/Views/MentionView.swift | 2+-
Mdamus/Views/PowView.swift | 2+-
Mdamus/Views/ProfileView.swift | 6+++---
Mdamus/Views/PubkeyView.swift | 2+-
Mdamus/Views/Relays/Detail/RelayPaidDetail.swift | 2+-
Mdamus/ar.lproj/Localizable.strings | 29++++-------------------------
Mdamus/de.lproj/Localizable.strings | 40++++++++++++++++++++--------------------
Mdamus/el-GR.lproj/Localizable.strings | 42+++++++++++++++++++++---------------------
Mdamus/es-419.lproj/Localizable.strings | 40++++++++++++++++++++--------------------
Mdamus/fr-FR.lproj/Localizable.strings | 25++-----------------------
Mdamus/it-IT.lproj/InfoPlist.strings | 3+++
Mdamus/it-IT.lproj/Localizable.strings | 131+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------
Mdamus/ja.lproj/Localizable.strings | 44++++++++++++++++++++++----------------------
Mdamus/lv-LV.lproj/Localizable.strings | 19-------------------
Mdamus/nl.lproj/Localizable.strings | 25++-----------------------
Mdamus/pl-PL.lproj/Localizable.strings | 40++++++++++++++++++++--------------------
Mdamus/pt-PT.lproj/Localizable.strings | 19-------------------
Mdamus/tr-TR.lproj/Localizable.strings | 19-------------------
Mdamus/zh-CN.lproj/Localizable.strings | 31+++++++++++--------------------
Mtranslations/ar.xliff | 56++++++++++----------------------------------------------
Mtranslations/de.xliff | 55+++++++++++++------------------------------------------
Mtranslations/el_GR.xliff | 57++++++++++++++-------------------------------------------
Mtranslations/en-US.xcloc/Localized Contents/en-US.xliff | 44+++++++-------------------------------------
Mtranslations/en-US.xcloc/Source Contents/damus/en-US.lproj/Localizable.strings | 0
Mtranslations/es_419.xliff | 55+++++++++++++------------------------------------------
Mtranslations/fr_FR.xliff | 50+++++++-------------------------------------------
Mtranslations/it_IT.xliff | 89++++++++++++++++++++++++++++++++++++++++++-------------------------------------
Mtranslations/ja.xliff | 59+++++++++++++++--------------------------------------------
Mtranslations/lv_LV.xliff | 49+++++++------------------------------------------
Mtranslations/nl.xliff | 50+++++++-------------------------------------------
Mtranslations/pl_PL.xliff | 55+++++++++++++------------------------------------------
Mtranslations/pt_PT.xliff | 49+++++++------------------------------------------
Mtranslations/tr_TR.xliff | 49+++++++------------------------------------------
Mtranslations/zh_CN.xliff | 52++++++++++------------------------------------------
44 files changed, 437 insertions(+), 885 deletions(-)

diff --git a/damus/Components/ZapButton.swift b/damus/Components/ZapButton.swift @@ -110,7 +110,7 @@ struct ZapButton: View { } .accessibilityLabel(NSLocalizedString("Zap", comment: "Accessibility label for zap button")) - Text("\(bar.zap_total > 0 ? "\(format_msats_abbrev(bar.zap_total))" : "")") + Text(String("\(bar.zap_total > 0 ? "\(format_msats_abbrev(bar.zap_total))" : "")")) .offset(x: 22) .font(.footnote) .foregroundColor(bar.zapped ? Color.orange : Color.gray) diff --git a/damus/Views/ActionBar/EventActionBar.swift b/damus/Views/ActionBar/EventActionBar.swift @@ -61,7 +61,7 @@ struct EventActionBar: View { } } .accessibilityLabel(NSLocalizedString("Boosts", comment: "Accessibility label for boosts button")) - Text("\(bar.boosts > 0 ? "\(bar.boosts)" : "")") + Text(String("\(bar.boosts > 0 ? "\(bar.boosts)" : "")")) .offset(x: 18) .font(.footnote.weight(.medium)) .foregroundColor(bar.boosted ? Color.green : Color.gray) @@ -76,7 +76,7 @@ struct EventActionBar: View { send_like() } } - Text("\(bar.likes > 0 ? "\(bar.likes)" : "")") + Text(String("\(bar.likes > 0 ? "\(bar.likes)" : "")")) .offset(x: 22) .font(.footnote.weight(.medium)) .foregroundColor(bar.liked ? Color.accentColor : Color.gray) @@ -158,7 +158,7 @@ struct EventActionBar: View { func EventActionButton(img: String, col: Color?, action: @escaping () -> ()) -> some View { Button(action: action) { - Label(NSLocalizedString("\u{00A0}", comment: "Non-breaking space character to fill in blank space next to event action button icons."), systemImage: img) + Label(String("\u{00A0}"), systemImage: img) .font(.footnote.weight(.medium)) .foregroundColor(col == nil ? Color.gray : col!) } diff --git a/damus/Views/ActionBar/EventDetailBar.swift b/damus/Views/ActionBar/EventDetailBar.swift @@ -26,14 +26,14 @@ struct EventDetailBar: View { HStack { if bar.boosts > 0 { NavigationLink(destination: RepostsView(damus_state: state, model: RepostsModel(state: state, target: target))) { - Text("\(Text("\(bar.boosts)", comment: "Number of reposts.").font(.body.bold())) \(Text(String(format: NSLocalizedString("reposts_count", comment: "Part of a larger sentence to describe how many reposts there are."), bar.boosts)).foregroundColor(.gray))", comment: "Sentence composed of 2 variables to describe how many reposts. In source English, the first variable is the number of reposts, and the second variable is 'Repost' or 'Reposts'.") + Text("\(Text(String("\(bar.boosts)")).font(.body.bold())) \(Text(String(format: NSLocalizedString("reposts_count", comment: "Part of a larger sentence to describe how many reposts there are."), bar.boosts)).foregroundColor(.gray))", comment: "Sentence composed of 2 variables to describe how many reposts. In source English, the first variable is the number of reposts, and the second variable is 'Repost' or 'Reposts'.") } .buttonStyle(PlainButtonStyle()) } if bar.likes > 0 { NavigationLink(destination: ReactionsView(damus_state: state, model: ReactionsModel(state: state, target: target))) { - Text("\(Text("\(bar.likes)", comment: "Number of reactions on a post.").font(.body.bold())) \(Text(String(format: NSLocalizedString("reactions_count", comment: "Part of a larger sentence to describe how many reactions there are on a post."), bar.likes)).foregroundColor(.gray))", comment: "Sentence composed of 2 variables to describe how many reactions there are on a post. In source English, the first variable is the number of reactions, and the second variable is 'Reaction' or 'Reactions'.") + Text("\(Text(String("\(bar.likes)")).font(.body.bold())) \(Text(String(format: NSLocalizedString("reactions_count", comment: "Part of a larger sentence to describe how many reactions there are on a post."), bar.likes)).foregroundColor(.gray))", comment: "Sentence composed of 2 variables to describe how many reactions there are on a post. In source English, the first variable is the number of reactions, and the second variable is 'Reaction' or 'Reactions'.") } .buttonStyle(PlainButtonStyle()) } @@ -41,7 +41,7 @@ struct EventDetailBar: View { if bar.zaps > 0 { let dst = ZapsView(state: state, target: .note(id: target, author: target_pk)) NavigationLink(destination: dst) { - Text("\(Text("\(bar.zaps)", comment: "Number of zap payments on a post.").font(.body.bold())) \(Text(String(format: NSLocalizedString("zaps_count", comment: "Part of a larger sentence to describe how many zap payments there are on a post."), bar.boosts)).foregroundColor(.gray))", comment: "Sentence composed of 2 variables to describe how many zap payments there are on a post. In source English, the first variable is the number of zap payments, and the second variable is 'Zap' or 'Zaps'.") + Text("\(Text(String("\(bar.zaps)")).font(.body.bold())) \(Text(String(format: NSLocalizedString("zaps_count", comment: "Part of a larger sentence to describe how many zap payments there are on a post."), bar.boosts)).foregroundColor(.gray))", comment: "Sentence composed of 2 variables to describe how many zap payments there are on a post. In source English, the first variable is the number of zap payments, and the second variable is 'Zap' or 'Zaps'.") } .buttonStyle(PlainButtonStyle()) } diff --git a/damus/Views/ChatView.swift b/damus/Views/ChatView.swift @@ -63,7 +63,7 @@ struct ChatView: View { } var ReplyDescription: some View { - Text("\(reply_desc(profiles: damus_state.profiles, event: event))") + Text(String("\(reply_desc(profiles: damus_state.profiles, event: event))")) .font(.footnote) .foregroundColor(.gray) .frame(alignment: .leading) @@ -89,7 +89,7 @@ struct ChatView: View { ProfileName(pubkey: event.pubkey, profile: damus_state.profiles.lookup(id: event.pubkey), damus: damus_state, show_friend_confirmed: true) .foregroundColor(colorScheme == .dark ? id_to_color(event.pubkey) : Color.black) //.shadow(color: Color.black, radius: 2) - Text("\(format_relative_time(event.created_at))") + Text(String("\(format_relative_time(event.created_at))")) .foregroundColor(.gray) } } diff --git a/damus/Views/ConfigView.swift b/damus/Views/ConfigView.swift @@ -223,7 +223,7 @@ struct ConfigView: View { let bundleShortVersion = Bundle.main.infoDictionary?["CFBundleShortVersionString"] as! String let bundleVersion = Bundle.main.infoDictionary?["CFBundleVersion"] as! String Section(NSLocalizedString("Version", comment: "Section title for displaying the version number of the Damus app.")) { - Text("\(bundleShortVersion) (\(bundleVersion))", comment: "Text indicating which version of the Damus app is running. Should typically not need to be translated.") + Text(String("\(bundleShortVersion) (\(bundleVersion))")) } } } diff --git a/damus/Views/CreateAccountView.swift b/damus/Views/CreateAccountView.swift @@ -36,14 +36,14 @@ struct CreateAccountView: View { HStack(alignment: .top) { VStack { - Text(" ", comment: "Blank space to separate profile picture from profile editor form.") + Text(String(" ")) .foregroundColor(.white) } VStack { SignupForm { FormLabel(NSLocalizedString("Username", comment: "Label to prompt username entry.")) HStack(spacing: 0.0) { - Text("@", comment: "Prefix character to username.") + Text(String("@")) .foregroundColor(.white) .padding(.leading, -25.0) diff --git a/damus/Views/EventDetailView.swift b/damus/Views/EventDetailView.swift @@ -10,7 +10,7 @@ import SwiftUI struct EventDetailView: View { var body: some View { - Text("EventDetailView") + Text(String("EventDetailView")) } } diff --git a/damus/Views/Events/ReplyDescription.swift b/damus/Views/Events/ReplyDescription.swift @@ -13,7 +13,7 @@ struct ReplyDescription: View { let profiles: Profiles var body: some View { - Text("\(reply_desc(profiles: profiles, event: event))") + Text(String("\(reply_desc(profiles: profiles, event: event))")) .font(.footnote) .foregroundColor(.gray) .frame(maxWidth: .infinity, alignment: .leading) diff --git a/damus/Views/Events/SelectedEventView.swift b/damus/Views/Events/SelectedEventView.swift @@ -35,7 +35,7 @@ struct SelectedEventView: View { BuilderEventView(damus: damus, event_id: mention.ref.id) } - Text("\(format_date(event.created_at))") + Text(String("\(format_date(event.created_at))")) .padding(.top, 10) .font(.footnote) .foregroundColor(.gray) diff --git a/damus/Views/Events/TextEvent.swift b/damus/Views/Events/TextEvent.swift @@ -33,7 +33,7 @@ struct TextEvent: View { HStack(alignment: .center) { EventProfileName(pubkey: pubkey, profile: profile, damus: damus, show_friend_confirmed: true, size: .normal) - Text("\(format_relative_time(event.created_at))") + Text(String("\(format_relative_time(event.created_at))")) .foregroundColor(.gray) Spacer() diff --git a/damus/Views/MentionView.swift b/damus/Views/MentionView.swift @@ -17,7 +17,7 @@ struct MentionView: View { let pk = bech32_pubkey(mention.ref.ref_id) ?? mention.ref.ref_id PubkeyView(pubkey: pk, relay: mention.ref.relay_id) case .event: - Text("< e >", comment: "Placeholder for event mention.") + Text(String("< e >")) //EventBlockView(pubkey: mention.ref.ref_id, relay: mention.ref.relay_id) } } diff --git a/damus/Views/PowView.swift b/damus/Views/PowView.swift @@ -11,7 +11,7 @@ import SwiftUI func PowView(_ mpow: Int?) -> some View { let pow = mpow ?? 0 - return Text("\(pow)") + return Text(String("\(pow)")) .font(.callout) .foregroundColor(calculate_pow_color(pow)) } diff --git a/damus/Views/ProfileView.swift b/damus/Views/ProfileView.swift @@ -300,7 +300,7 @@ struct ProfileView: View { let following_model = FollowingModel(damus_state: damus_state, contacts: contacts) NavigationLink(destination: FollowingView(damus_state: damus_state, following: following_model, whos: profile.pubkey)) { HStack { - Text("\(Text("\(profile.following)", comment: "Number of profiles a user is following.").font(.subheadline.weight(.medium))) \(Text("Following", comment: "Part of a larger sentence to describe how many profiles a user is following.").font(.subheadline).foregroundColor(.gray))", comment: "Sentence composed of 2 variables to describe how many profiles a user is following. In source English, the first variable is the number of profiles being followed, and the second variable is 'Following'.") + Text("\(Text(String("\(profile.following)")).font(.subheadline.weight(.medium))) \(Text("Following", comment: "Part of a larger sentence to describe how many profiles a user is following.").font(.subheadline).foregroundColor(.gray))", comment: "Sentence composed of 2 variables to describe how many profiles a user is following. In source English, the first variable is the number of profiles being followed, and the second variable is 'Following'.") } } .buttonStyle(PlainButtonStyle()) @@ -323,7 +323,7 @@ struct ProfileView: View { if let relays = profile.relays { // Only open relay config view if the user is logged in with private key and they are looking at their own profile. - let relay_text = Text("\(Text("\(relays.keys.count)", comment: "Number of relay servers a user is connected.").font(.subheadline.weight(.medium))) \(Text(String(format: NSLocalizedString("relays_count", comment: "Part of a larger sentence to describe how many relay servers a user is connected."), relays.keys.count)).font(.subheadline).foregroundColor(.gray))", comment: "Sentence composed of 2 variables to describe how many relay servers a user is connected. In source English, the first variable is the number of relay servers, and the second variable is 'Relay' or 'Relays'.") + let relay_text = Text("\(Text(String("\(relays.keys.count)")).font(.subheadline.weight(.medium))) \(Text(String(format: NSLocalizedString("relays_count", comment: "Part of a larger sentence to describe how many relay servers a user is connected."), relays.keys.count)).font(.subheadline).foregroundColor(.gray))", comment: "Sentence composed of 2 variables to describe how many relay servers a user is connected. In source English, the first variable is the number of relay servers, and the second variable is 'Relay' or 'Relays'.") if profile.pubkey == damus_state.pubkey && damus_state.is_privkey_user { NavigationLink(destination: RelayConfigView(state: damus_state)) { relay_text @@ -353,7 +353,7 @@ struct ProfileView: View { .foregroundColor(.gray) } else { let followerCount = followers.count! - Text("\(Text("\(followerCount)", comment: "Number of people following a user.").font(.subheadline.weight(.medium))) \(Text(String(format: NSLocalizedString("followers_count", comment: "Part of a larger sentence to describe how many people are following a user."), followerCount)).font(.subheadline).foregroundColor(.gray))", comment: "Sentence composed of 2 variables to describe how many people are following a user. In source English, the first variable is the number of followers, and the second variable is 'Follower' or 'Followers'.") + Text("\(Text(String("\(followerCount)")).font(.subheadline.weight(.medium))) \(Text(String(format: NSLocalizedString("followers_count", comment: "Part of a larger sentence to describe how many people are following a user."), followerCount)).font(.subheadline).foregroundColor(.gray))", comment: "Sentence composed of 2 variables to describe how many people are following a user. In source English, the first variable is the number of followers, and the second variable is 'Follower' or 'Followers'.") } } } diff --git a/damus/Views/PubkeyView.swift b/damus/Views/PubkeyView.swift @@ -14,7 +14,7 @@ struct PubkeyView: View { var body: some View { let color: Color = id_to_color(pubkey) ZStack { - Text("\(abbrev_pubkey(pubkey))", comment: "Abbreviated version of a nostr public key.") + Text(String("\(abbrev_pubkey(pubkey))")) .foregroundColor(color) } } diff --git a/damus/Views/Relays/Detail/RelayPaidDetail.swift b/damus/Views/Relays/Detail/RelayPaidDetail.swift @@ -19,7 +19,7 @@ struct RelayPaidDetail: View { Button(action: { openURL(url) }, label: { - Text("\(url)") + Text(String("\(url)")) }) } } diff --git a/damus/ar.lproj/Localizable.strings b/damus/ar.lproj/Localizable.strings @@ -1,6 +1,3 @@ -/* Blank space to separate profile picture from profile editor form. */ -" " = "61b6edf1108e6f396680a33b02486a70_tr"; - /* Description of how the nip05 identifier would be used for verification. */ "'%@' at '%@' will be used for verification" = "سيتم التحقق من '%@' @ '%@'"; @@ -13,12 +10,6 @@ /* Navigation bar title for view that shows who a user is following. */ "(who) following" = "(who) يتابع"; -/* Prefix character to username. */ -"@" = "@"; - -/* Abbreviated version of a nostr public key. */ -"%@" = "%@"; - /* Sentence composed of 2 variables to describe how many reposts. In source English, the first variable is the number of reposts, and the second variable is 'Repost' or 'Reposts'. Sentence composed of 2 variables to describe how many relay servers a user is connected. In source English, the first variable is the number of relay servers, and the second variable is 'Relay' or 'Relays'. */ "%@ %@" = "%@ %@"; @@ -35,16 +26,9 @@ Sentence composed of 2 variables to describe how many relay servers a user is co /* Explanation of what can be done by users to earn money. There is a heading that precedes this explanation which is a variable to this string. */ "%@. Tip your friend's posts and stack sats with Bitcoin⚡️, the native currency of the internet." = "%@. بسهولة مطلقة، أرسل و استقبل برقيات البتكوين ⚡️عملة الانترنت العالمية."; -/* Number of reposts. -Number of relay servers a user is connected. */ -"%lld" = "%lld"; - /* Fraction of how many of the user's relay servers that are operational. */ "%lld/%lld" = "%lld/%lld"; -/* Placeholder for event mention. */ -"< e >" = "< e >"; - /* Text indicating the zap amount. i.e. number of satoshis that were tipped to a user */ "⚡️ %@" = "⚡️ %@"; @@ -270,9 +254,6 @@ Number of relay servers a user is connected. */ "EULA" = "اتفاقية الاستخدام"; /* No comment provided by engineer. */ -"EventDetailView" = "EventDetailView"; - -/* No comment provided by engineer. */ "Filter" = "تصفية"; /* Button to follow a user. */ @@ -285,11 +266,11 @@ Number of relay servers a user is connected. */ "Follow me on nostr" = "تابعني على نوستر"; /* Label describing followers of a user. */ -"Followers" = "المتابعون"; +"Followers" = "المتابِعون"; /* Text to indicate that the button next to it is in a state that indicates that it is in the process of following a profile. Part of a larger sentence to describe how many profiles a user is following. */ -"Following" = "المتابَعين"; +"Following" = "المتابَعون"; /* Label to indicate that the user is in the process of following another user. */ "Following..." = "يتابع..."; @@ -657,9 +638,6 @@ Part of a larger sentence to describe how many profiles a user is following. */ /* Text box prompt to ask user to type their post. */ "Type your post here..." = "اكتب المنشور هنا..."; -/* Non-breaking space character to fill in blank space next to event action button icons. */ -"u{00A0}" = "u{00A0}"; - /* Button to unfollow a user. */ "Unfollow" = "الغاء المتابعة"; @@ -685,7 +663,8 @@ Part of a larger sentence to describe how many profiles a user is following. */ Label to prompt username entry. */ "Username" = "اسم المستخدم"; -/* Label to display relay software version. */ +/* Label to display relay software version. + Section title for displaying the version number of the Damus app. */ "Version" = "الاصدار"; /* Sidebar menu label for Wallet view. */ diff --git a/damus/de.lproj/Localizable.strings b/damus/de.lproj/Localizable.strings @@ -1,6 +1,3 @@ -/* Blank space to separate profile picture from profile editor form. */ -" " = "61b6edf1108e6f396680a33b02486a70_tr"; - /* Description of how the nip05 identifier would be used for verification. */ "'%@' at '%@' will be used for verification" = "'%@' bei '%@' wird zur Verifizierung benutzt werden."; @@ -13,12 +10,6 @@ /* Navigation bar title for view that shows who a user is following. */ "(who) following" = "(who) folgt"; -/* Prefix character to username. */ -"@" = "@"; - -/* Abbreviated version of a nostr public key. */ -"%@" = "%@"; - /* Sentence composed of 2 variables to describe how many reposts. In source English, the first variable is the number of reposts, and the second variable is 'Repost' or 'Reposts'. Sentence composed of 2 variables to describe how many relay servers a user is connected. In source English, the first variable is the number of relay servers, and the second variable is 'Relay' or 'Relays'. */ "%@ %@" = "%@ %@"; @@ -35,16 +26,9 @@ Sentence composed of 2 variables to describe how many relay servers a user is co /* Explanation of what can be done by users to earn money. There is a heading that precedes this explanation which is a variable to this string. */ "%@. Tip your friend's posts and stack sats with Bitcoin⚡️, the native currency of the internet." = "%@. Belohne Beiträge deiner Freunde und sammle Sats mit Bitcoin⚡️, der eigenen Währung des Internets."; -/* Number of reposts. -Number of relay servers a user is connected. */ -"%lld" = "%lld"; - /* Fraction of how many of the user's relay servers that are operational. */ "%lld/%lld" = "%lld/%lld"; -/* Placeholder for event mention. */ -"< e >" = "< e >"; - /* Text indicating the zap amount. i.e. number of satoshis that were tipped to a user */ "⚡️ %@" = "⚡️ %@"; @@ -269,6 +253,9 @@ Number of relay servers a user is connected. */ /* Label indicating that the below text is the EULA, an acronym for End User License Agreement. */ "EULA" = "Endbenutzer-Lizenzvereinbarung"; +/* No comment provided by engineer. */ +"Filter" = "Filter"; + /* Button to follow a user. */ "Follow" = "Folgen"; @@ -415,12 +402,18 @@ Part of a larger sentence to describe how many profiles a user is following. */ /* Label indicating that a form input is optional. */ "optional" = "optional"; +/* No comment provided by engineer. */ +"Paid Relay" = "Kostenpflichtiger Relay"; + /* Button to pay a Lightning invoice. */ "Pay" = "Bezahlen"; /* Navigation bar title for view to pay Lightning invoice. */ "Pay the Lightning invoice" = "Bezahle die Lightning-Rechnung"; +/* Alert for deleting the users account. */ +"Permanently Delete Account" = "Konto dauerhaft löschen"; + /* Dropdown option label for Lightning wallet, Phoenix. */ "Phoenix" = "Phoenix"; @@ -606,6 +599,9 @@ Part of a larger sentence to describe how many profiles a user is following. */ /* Button for user to report that the account is impersonating someone. */ "They are impersonating someone" = "Die geben sich für jemand anderen aus"; +/* No comment provided by engineer. */ +"This is a paid relay, you must pay for posts to be accepted." = "Das ist ein kostenpflichtiges Relay. Du musst bezahlen um Beiträge teilen zu können."; + /* Warning that the inputted account key is a public key and the result of what happens because of it. */ "This is a public key, you will not be able to make posts or interact in any way. This is used for viewing accounts from their perspective." = "Dies ist ein öffentlicher Schlüssel, Du wirst keine Beiträge teilen oder oder auf irgendeine Weise interagieren können. Dies wird genutzt um andere Kontos aus deren Perspektive zu sehen."; @@ -621,6 +617,9 @@ Part of a larger sentence to describe how many profiles a user is following. */ /* Navigation bar title for note thread. */ "Thread" = "Thema"; +/* No comment provided by engineer. */ +"To filter your %@ feed, please choose applicable relays from the list below:" = "Um deinen %@-Feed zu filtern, wähle bitte passende Relays aus der Liste unten aus:"; + /* Button to translate note from different language. */ "Translate Note" = "Notiz übersetzen"; @@ -639,9 +638,6 @@ Part of a larger sentence to describe how many profiles a user is following. */ /* Text box prompt to ask user to type their post. */ "Type your post here..." = "Schreibe deinen Beitrag hier..."; -/* Non-breaking space character to fill in blank space next to event action button icons. */ -"u{00A0}" = "u{00A0}"; - /* Button to unfollow a user. */ "Unfollow" = "Entfolgen"; @@ -667,7 +663,8 @@ Part of a larger sentence to describe how many profiles a user is following. */ Label to prompt username entry. */ "Username" = "Benutzername"; -/* Label to display relay software version. */ +/* Label to display relay software version. + Section title for displaying the version number of the Damus app. */ "Version" = "Version"; /* Sidebar menu label for Wallet view. */ @@ -712,6 +709,9 @@ Part of a larger sentence to describe how many profiles a user is following. */ /* Accessibility label for zap button */ "Zap" = "Zap"; +/* Navigation bar title for the Zaps view. */ +"Zaps" = "Zaps"; + /* Dropdown option label for Lightning wallet, Zebedee. */ "Zebedee" = "Zebedee"; diff --git a/damus/el-GR.lproj/Localizable.strings b/damus/el-GR.lproj/Localizable.strings @@ -1,6 +1,3 @@ -/* Blank space to separate profile picture from profile editor form. */ -" " = "61b6edf1108e6f396680a33b02486a70_tr"; - /* Description of how the nip05 identifier would be used for verification. */ "'%@' at '%@' will be used for verification" = "'%@' at '%@' θα χρησιμοποιηθεί για επαλήθευση"; @@ -8,17 +5,11 @@ "'%@' is an invalid NIP-05 identifier. It should look like an email." = "'%@' είναι ένα λανθασμένο NIP-05 αναγνωριστικό. Θα πρέπει να έχει την μορφή email."; /* Navigation bar title for view that shows who is following a user. */ -"(Profile.displayName(profile: profile, pubkey: whos))'s Followers" = "(Profile.displayName(profile: profile, pubkey: whos))'s Ακόλουθοι"; +"(Profile.displayName(profile: profile, pubkey: whos))'s Followers" = "(Profile.displayName(profile: profile, pubkey: whos)) Ακόλουθοι"; /* Navigation bar title for view that shows who a user is following. */ "(who) following" = "(ποίους) ακολουθεί"; -/* Prefix character to username. */ -"@" = "@"; - -/* Abbreviated version of a nostr public key. */ -"%@" = "%@"; - /* Sentence composed of 2 variables to describe how many reposts. In source English, the first variable is the number of reposts, and the second variable is 'Repost' or 'Reposts'. Sentence composed of 2 variables to describe how many relay servers a user is connected. In source English, the first variable is the number of relay servers, and the second variable is 'Relay' or 'Relays'. */ "%@ %@" = "%@ %@"; @@ -35,16 +26,9 @@ Sentence composed of 2 variables to describe how many relay servers a user is co /* Explanation of what can be done by users to earn money. There is a heading that precedes this explanation which is a variable to this string. */ "%@. Tip your friend's posts and stack sats with Bitcoin⚡️, the native currency of the internet." = "%@. Δώστε φιλοδώρημα στις δημοσιεύσεις των φίλων σας και μαζέψτε Bitcoin sats⚡️, το νόμισμα του ίντερνετ."; -/* Number of reposts. -Number of relay servers a user is connected. */ -"%lld" = "%lld"; - /* Fraction of how many of the user's relay servers that are operational. */ "%lld/%lld" = "%lld/%lld"; -/* Placeholder for event mention. */ -"< e >" = "< e >"; - /* Text indicating the zap amount. i.e. number of satoshis that were tipped to a user */ "⚡️ %@" = "⚡️ %@"; @@ -269,6 +253,9 @@ Number of relay servers a user is connected. */ /* Label indicating that the below text is the EULA, an acronym for End User License Agreement. */ "EULA" = "EULA"; +/* No comment provided by engineer. */ +"Filter" = "Φίλτρο"; + /* Button to follow a user. */ "Follow" = "Ακολουθήστε"; @@ -415,12 +402,18 @@ Part of a larger sentence to describe how many profiles a user is following. */ /* Label indicating that a form input is optional. */ "optional" = "προαιρετικό"; +/* No comment provided by engineer. */ +"Paid Relay" = "Διακομιστής Relay με πληρωμή"; + /* Button to pay a Lightning invoice. */ "Pay" = "Πληρωμή"; /* Navigation bar title for view to pay Lightning invoice. */ "Pay the Lightning invoice" = "Πληρωμή Lightning ποσού"; +/* Alert for deleting the users account. */ +"Permanently Delete Account" = "Οριστική διαγραφή λογαριασμού"; + /* Dropdown option label for Lightning wallet, Phoenix. */ "Phoenix" = "Phoenix"; @@ -606,6 +599,9 @@ Part of a larger sentence to describe how many profiles a user is following. */ /* Button for user to report that the account is impersonating someone. */ "They are impersonating someone" = "Προσποιείται κάποιον άλλο"; +/* No comment provided by engineer. */ +"This is a paid relay, you must pay for posts to be accepted." = "Αυτός είναι ένας επί πληρωμή διακομιστής relay, πρέπει να πληρώσετε ώστε οι δημοσιεύσεις σας να εμφανιστούν."; + /* Warning that the inputted account key is a public key and the result of what happens because of it. */ "This is a public key, you will not be able to make posts or interact in any way. This is used for viewing accounts from their perspective." = "Αυτό είναι ένα δημόσιο κλειδί, δεν θα έχετε την δυνατότητα να κάνετε δημοσιεύσεις ή να αλληλεπιδράσετε με κάποιο τρόπο. Αυτό το κλειδί είναι μόνο για προβολή / εύρεση λογαριασμών."; @@ -621,6 +617,9 @@ Part of a larger sentence to describe how many profiles a user is following. */ /* Navigation bar title for note thread. */ "Thread" = "Νήμα"; +/* No comment provided by engineer. */ +"To filter your %@ feed, please choose applicable relays from the list below:" = "Για να φιλτράρετε την ροή μηνυμάτων από ανεπιθύμητα στην κεντρική τροφοδοσία του %@, παρακαλώ επιλέξτε σχετικούς διακομιστές relays απο την παρακάτω λίστα:"; + /* Button to translate note from different language. */ "Translate Note" = "Μεταφρασμένο σχόλιο"; @@ -639,9 +638,6 @@ Part of a larger sentence to describe how many profiles a user is following. */ /* Text box prompt to ask user to type their post. */ "Type your post here..." = "Πληκρολογίστε την δημοσίευσή σας εδώ..."; -/* Non-breaking space character to fill in blank space next to event action button icons. */ -"u{00A0}" = "u{00A0}"; - /* Button to unfollow a user. */ "Unfollow" = "Διακοπή"; @@ -667,7 +663,8 @@ Part of a larger sentence to describe how many profiles a user is following. */ Label to prompt username entry. */ "Username" = "Όνομα χρήστη"; -/* Label to display relay software version. */ +/* Label to display relay software version. + Section title for displaying the version number of the Damus app. */ "Version" = "Έκδοση"; /* Sidebar menu label for Wallet view. */ @@ -712,6 +709,9 @@ Part of a larger sentence to describe how many profiles a user is following. */ /* Accessibility label for zap button */ "Zap" = "Zap"; +/* Navigation bar title for the Zaps view. */ +"Zaps" = "Zaps"; + /* Dropdown option label for Lightning wallet, Zebedee. */ "Zebedee" = "Zebedee"; diff --git a/damus/es-419.lproj/Localizable.strings b/damus/es-419.lproj/Localizable.strings @@ -1,6 +1,3 @@ -/* Blank space to separate profile picture from profile editor form. */ -" " = "61b6edf1108e6f396680a33b02486a70_tr"; - /* Description of how the nip05 identifier would be used for verification. */ "'%@' at '%@' will be used for verification" = "'%@' en '%@' se usará con fines de verificación"; @@ -13,12 +10,6 @@ /* Navigation bar title for view that shows who a user is following. */ "(who) following" = "(who) sigue a"; -/* Prefix character to username. */ -"@" = "@"; - -/* Abbreviated version of a nostr public key. */ -"%@" = "%@"; - /* Sentence composed of 2 variables to describe how many reposts. In source English, the first variable is the number of reposts, and the second variable is 'Repost' or 'Reposts'. Sentence composed of 2 variables to describe how many relay servers a user is connected. In source English, the first variable is the number of relay servers, and the second variable is 'Relay' or 'Relays'. */ "%@ %@" = "%@ %@"; @@ -35,16 +26,9 @@ Sentence composed of 2 variables to describe how many relay servers a user is co /* Explanation of what can be done by users to earn money. There is a heading that precedes this explanation which is a variable to this string. */ "%@. Tip your friend's posts and stack sats with Bitcoin⚡️, the native currency of the internet." = "%@. Deja propinas en las publicaciones de tus amigos y acumula sats con Bitcoin⚡️, la moneda nativa de internet."; -/* Number of reposts. -Number of relay servers a user is connected. */ -"%lld" = "%lld"; - /* Fraction of how many of the user's relay servers that are operational. */ "%lld/%lld" = "%lld/%lld"; -/* Placeholder for event mention. */ -"< e >" = "< e >"; - /* Text indicating the zap amount. i.e. number of satoshis that were tipped to a user */ "⚡️ %@" = "⚡️ %@"; @@ -269,6 +253,9 @@ Number of relay servers a user is connected. */ /* Label indicating that the below text is the EULA, an acronym for End User License Agreement. */ "EULA" = "CLUF"; +/* No comment provided by engineer. */ +"Filter" = "Filtro"; + /* Button to follow a user. */ "Follow" = "Seguir"; @@ -415,12 +402,18 @@ Part of a larger sentence to describe how many profiles a user is following. */ /* Label indicating that a form input is optional. */ "optional" = "opcional"; +/* No comment provided by engineer. */ +"Paid Relay" = "Relé de pago"; + /* Button to pay a Lightning invoice. */ "Pay" = "Pagar"; /* Navigation bar title for view to pay Lightning invoice. */ "Pay the Lightning invoice" = "Paga la factura de Lightning"; +/* Alert for deleting the users account. */ +"Permanently Delete Account" = "Cuenta eliminada permanentemente"; + /* Dropdown option label for Lightning wallet, Phoenix. */ "Phoenix" = "Phoenix"; @@ -606,6 +599,9 @@ Part of a larger sentence to describe how many profiles a user is following. */ /* Button for user to report that the account is impersonating someone. */ "They are impersonating someone" = "Está suplantando a alguien"; +/* No comment provided by engineer. */ +"This is a paid relay, you must pay for posts to be accepted." = "Este es un relé de pago, debes de pagar para que acepte tus publicaciones."; + /* Warning that the inputted account key is a public key and the result of what happens because of it. */ "This is a public key, you will not be able to make posts or interact in any way. This is used for viewing accounts from their perspective." = "Esta es una clave pública, por lo que no podrás hacer publicaciones ni interactuar de ningún modo. Se usa para ver cuentas desde su perspectiva."; @@ -621,6 +617,9 @@ Part of a larger sentence to describe how many profiles a user is following. */ /* Navigation bar title for note thread. */ "Thread" = "Hilo"; +/* No comment provided by engineer. */ +"To filter your %@ feed, please choose applicable relays from the list below:" = "Para filtrar tu feed de %@, elija los relés correspondientes de la lista siguiente:"; + /* Button to translate note from different language. */ "Translate Note" = "Traducir nota"; @@ -639,9 +638,6 @@ Part of a larger sentence to describe how many profiles a user is following. */ /* Text box prompt to ask user to type their post. */ "Type your post here..." = "Escribe tu publicación aquí..."; -/* Non-breaking space character to fill in blank space next to event action button icons. */ -"u{00A0}" = "u{00A0}"; - /* Button to unfollow a user. */ "Unfollow" = "Dejar de seguir"; @@ -667,7 +663,8 @@ Part of a larger sentence to describe how many profiles a user is following. */ Label to prompt username entry. */ "Username" = "Nombre de usuario"; -/* Label to display relay software version. */ +/* Label to display relay software version. + Section title for displaying the version number of the Damus app. */ "Version" = "Versión"; /* Sidebar menu label for Wallet view. */ @@ -712,6 +709,9 @@ Part of a larger sentence to describe how many profiles a user is following. */ /* Accessibility label for zap button */ "Zap" = "Zap"; +/* Navigation bar title for the Zaps view. */ +"Zaps" = "Zaps"; + /* Dropdown option label for Lightning wallet, Zebedee. */ "Zebedee" = "Zebedee"; diff --git a/damus/fr-FR.lproj/Localizable.strings b/damus/fr-FR.lproj/Localizable.strings @@ -1,6 +1,3 @@ -/* Blank space to separate profile picture from profile editor form. */ -" " = "61b6edf1108e6f396680a33b02486a70_tr"; - /* Description of how the nip05 identifier would be used for verification. */ "'%@' at '%@' will be used for verification" = "'%@' à '@' sera utilisé pour la vérification"; @@ -13,12 +10,6 @@ /* Navigation bar title for view that shows who a user is following. */ "(who) following" = "(who) suit"; -/* Prefix character to username. */ -"@" = "@"; - -/* Abbreviated version of a nostr public key. */ -"%@" = "%@"; - /* Sentence composed of 2 variables to describe how many reposts. In source English, the first variable is the number of reposts, and the second variable is 'Repost' or 'Reposts'. Sentence composed of 2 variables to describe how many relay servers a user is connected. In source English, the first variable is the number of relay servers, and the second variable is 'Relay' or 'Relays'. */ "%@ %@" = "%@ %@"; @@ -35,16 +26,9 @@ Sentence composed of 2 variables to describe how many relay servers a user is co /* Explanation of what can be done by users to earn money. There is a heading that precedes this explanation which is a variable to this string. */ "%@. Tip your friend's posts and stack sats with Bitcoin⚡️, the native currency of the internet." = "%@. Donnez un pourboire aux publications de vos amis et accumulez les sats avec Bitcoin⚡️, la monnaie native d'Internet."; -/* Number of reposts. -Number of relay servers a user is connected. */ -"%lld" = "%lld"; - /* Fraction of how many of the user's relay servers that are operational. */ "%lld/%lld" = "%lld/%lld"; -/* Placeholder for event mention. */ -"< e >" = "< e >"; - /* Text indicating the zap amount. i.e. number of satoshis that were tipped to a user */ "⚡️ %@" = "⚡️ %@"; @@ -270,9 +254,6 @@ Number of relay servers a user is connected. */ "EULA" = "CLUF"; /* No comment provided by engineer. */ -"EventDetailView" = "EventDetailView"; - -/* No comment provided by engineer. */ "Filter" = "Filtre"; /* Button to follow a user. */ @@ -657,9 +638,6 @@ Part of a larger sentence to describe how many profiles a user is following. */ /* Text box prompt to ask user to type their post. */ "Type your post here..." = "Tapez votre message ici..."; -/* Non-breaking space character to fill in blank space next to event action button icons. */ -"u{00A0}" = "u{00A0}"; - /* Button to unfollow a user. */ "Unfollow" = "Se désabonner"; @@ -685,7 +663,8 @@ Part of a larger sentence to describe how many profiles a user is following. */ Label to prompt username entry. */ "Username" = "Nom d'utilisateur"; -/* Label to display relay software version. */ +/* Label to display relay software version. + Section title for displaying the version number of the Damus app. */ "Version" = "Version"; /* Sidebar menu label for Wallet view. */ diff --git a/damus/it-IT.lproj/InfoPlist.strings b/damus/it-IT.lproj/InfoPlist.strings @@ -4,6 +4,9 @@ /* Bundle name */ "CFBundleName" = "damus"; +/* Privacy - Face ID Usage Description */ +"NSFaceIDUsageDescription" = "Autenticazione locale necessaria per accedere alla chiave privata"; + /* Privacy - Photo Library Additions Usage Description */ "NSPhotoLibraryAddUsageDescription" = "Dai il permesso a Damus di accedere alle tue foto per salvare immagini"; diff --git a/damus/it-IT.lproj/Localizable.strings b/damus/it-IT.lproj/Localizable.strings @@ -1,6 +1,3 @@ -/* Blank space to separate profile picture from profile editor form. */ -" " = "61b6edf1108e6f396680a33b02486a70_tr"; - /* Description of how the nip05 identifier would be used for verification. */ "'%@' at '%@' will be used for verification" = "'%@' at '%@' sarà usato per la verifica"; @@ -13,12 +10,6 @@ /* Navigation bar title for view that shows who a user is following. */ "(who) following" = "(who) segui già"; -/* Prefix character to username. */ -"@" = "@"; - -/* Abbreviated version of a nostr public key. */ -"%@" = "%@"; - /* Sentence composed of 2 variables to describe how many reposts. In source English, the first variable is the number of reposts, and the second variable is 'Repost' or 'Reposts'. Sentence composed of 2 variables to describe how many relay servers a user is connected. In source English, the first variable is the number of relay servers, and the second variable is 'Relay' or 'Relays'. */ "%@ %@" = "%@ %@"; @@ -35,16 +26,9 @@ Sentence composed of 2 variables to describe how many relay servers a user is co /* Explanation of what can be done by users to earn money. There is a heading that precedes this explanation which is a variable to this string. */ "%@. Tip your friend's posts and stack sats with Bitcoin⚡️, the native currency of the internet." = "%@. Paga i tuoi amici e accumula sats con Bitcoin⚡️, la moneta di internet."; -/* Number of reposts. -Number of relay servers a user is connected. */ -"%lld" = "%lld"; - /* Fraction of how many of the user's relay servers that are operational. */ "%lld/%lld" = "%lld/%lld"; -/* Placeholder for event mention. */ -"< e >" = "< e >"; - /* Text indicating the zap amount. i.e. number of satoshis that were tipped to a user */ "⚡️ %@" = "⚡️ %@"; @@ -76,12 +60,18 @@ Number of relay servers a user is connected. */ /* Label for section for adding a relay server. */ "Add Relay" = "Aggiungi Relay"; +/* Label to display relay contact user. */ +"Admin" = "Amministratore"; + /* Any amount of sats */ "Any" = "Qualsiasi"; /* Prompt for optional entry of API Key to use translation server. */ "API Key (optional)" = "API Key (facoltativo)"; +/* Prompt for required entry of API Key to use translation server. */ +"API Key (required)" = "Chiave API (richiesta)"; + /* Alert message to ask if user wants to repost a post. */ "Are you sure you want to repost this?" = "Sei sicuro di voler condividere questo post?"; @@ -120,6 +110,9 @@ Number of relay servers a user is connected. */ /* Dropdown option label for Lightning wallet, Blue Wallet. */ "Blue Wallet" = "Blue Wallet"; +/* Accessibility label for boosts button */ +"Boosts" = "Potenziamenti"; + /* Dropdown option label for Lightning wallet, Breez. */ "Breez" = "Breez"; @@ -144,6 +137,9 @@ Number of relay servers a user is connected. */ /* Section title for clearing cached data. */ "Clear Cache" = "Cancella Cache"; +/* Label to display relay contact information. */ +"Contact" = "Contatti"; + /* Label indicating that a user's key was copied. */ "Copied" = "Copiato"; @@ -202,6 +198,9 @@ Number of relay servers a user is connected. */ /* Name of the app, shown on the first screen when user is not logged in. */ "Damus" = "Damus"; +/* Dropdown option for selecting DeepL as the translation service. */ +"DeepL (Proprietary, Higher Accuracy)" = "DeepL (Proprietario, Accuratezza Elevata)"; + /* Button to pay a Lightning invoice with the user's default Lightning wallet. */ "Default Wallet" = "Portafoglio Predefinito"; @@ -211,6 +210,15 @@ Number of relay servers a user is connected. */ Section title for deleting the user */ "Delete" = "Elimina"; +/* Button to delete the user's account. */ +"Delete Account" = "Elimina Account"; + +/* Alert message to indicate this is a deleted account */ +"Deleted Account" = "Account Eliminato"; + +/* Label to display relay description. */ +"Description" = "Descrizione"; + /* Button to dismiss a text field alert. */ "Dismiss" = "Lascia stare"; @@ -245,9 +253,18 @@ Number of relay servers a user is connected. */ /* Label indicating that the below text is the EULA, an acronym for End User License Agreement. */ "EULA" = "EULA"; +/* No comment provided by engineer. */ +"Filter" = "Filtro"; + /* Button to follow a user. */ "Follow" = "Segui"; +/* Button to follow a user back. */ +"Follow Back" = "Segui anche tu"; + +/* Text on QR code view to prompt viewer looking at screen to follow the user. */ +"Follow me on nostr" = "Seguimi su nostr"; + /* Label describing followers of a user. */ "Followers" = "Seguaci"; @@ -261,6 +278,15 @@ Part of a larger sentence to describe how many profiles a user is following. */ /* Text to indicate that button next to it is in a state that will follow a profile when tapped. */ "Follows" = "Segui"; +/* Text to indicate that a user is following your profile. */ +"Follows you" = "Seguono te"; + +/* Dropdown option for selecting Free plan for DeepL translation service. */ +"Free" = "Gratis"; + +/* Button to navigate to DeepL website to get a translation API key. */ +"Get API Key" = "Ottieni chiave API"; + /* Navigation bar title for Global view where posts from all connected relay servers appear. */ "Global" = "Globale"; @@ -304,15 +330,24 @@ Part of a larger sentence to describe how many profiles a user is following. */ /* Button to complete account creation and start using the app. */ "Let's go!" = "Andiamo!"; +/* Dropdown option for selecting LibreTranslate as the translation service. */ +"LibreTranslate (Open Source)" = "LibreTranslate (Open Source)"; + /* Placeholder text for entry of Lightning Address or LNURL. */ "Lightning Address or LNURL" = "Indirizzo Lightning o LNURL"; /* Indicates that the view is for paying a Lightning invoice. */ "Lightning Invoice" = "Fattura Lightning"; +/* Accessibility Label for Like button */ +"Like" = "Like"; + /* Dropdown option label for Lightning wallet, LNLink. */ "LNLink" = "LNLink"; +/* Face ID usage description shown when trying to access private key */ +"Local authentication to access private key" = "Autenticazione locale necessaria per accedere alla chiave privata"; + /* Dropdown option label for system default for Lightning wallet. */ "Local default" = "Predefinito"; @@ -334,6 +369,9 @@ Part of a larger sentence to describe how many profiles a user is following. */ /* Label for NIP-05 Verification section of user profile form. */ "NIP-05 Verification" = "Verifica NIP-05"; +/* Button to cancel out of posting a note after being alerted that it looks like they might be posting a private key. */ +"No" = "No"; + /* Alert message prompt that asks if the user wants to create a new block list, overwriting previous block lists. */ "No block list found, create a new one? This will overwrite any previous block lists." = "Nessuna lista degli utenti bloccati trovata, vuoi creane una nuova? Creandone una nuova, sovrascriverai eventuali liste di utenti bloccati in precedenza"; @@ -343,6 +381,9 @@ Part of a larger sentence to describe how many profiles a user is following. */ /* Dropdown option for selecting no translation service. */ "None" = "Nessuno"; +/* Alert user that they might be attempting to paste a private key and ask them to confirm. */ +"Note contains \"nsec1\" private key. Are you sure?" = "La nota contiene una chiave privata di tipo \"nsec1\". Sei sicuro?"; + /* Indicates that there are no notes in the timeline to view. */ "Nothing to see here. Check back later!" = "Niente da vedere qui. Controlla dopo!"; @@ -361,15 +402,24 @@ Part of a larger sentence to describe how many profiles a user is following. */ /* Label indicating that a form input is optional. */ "optional" = "facoltativo"; +/* No comment provided by engineer. */ +"Paid Relay" = "Paga il Relè"; + /* Button to pay a Lightning invoice. */ "Pay" = "Paga"; /* Navigation bar title for view to pay Lightning invoice. */ "Pay the Lightning invoice" = "Paga la fattura Lightning"; +/* Alert for deleting the users account. */ +"Permanently Delete Account" = "Elimina l'account in modo permanente"; + /* Dropdown option label for Lightning wallet, Phoenix. */ "Phoenix" = "Phoenix"; +/* Prompt selection of DeepL subscription plan to perform machine translations on notes */ +"Plan" = "Piano"; + /* Button to post a note. */ "Post" = "Post"; @@ -388,6 +438,9 @@ Part of a larger sentence to describe how many profiles a user is following. */ /* Title of the secure field that holds the user's private key. */ "Private Key" = "Chiave Privata"; +/* Dropdown option for selecting Pro plan for DeepL translation service. */ +"Pro" = "Pro"; + /* Sidebar menu label for Profile view. */ "Profile" = "Profilo"; @@ -428,6 +481,9 @@ Part of a larger sentence to describe how many profiles a user is following. */ /* Button label to remove all participants from a note reply. */ "Remove all" = "Rimuovi tutto"; +/* Accessibility label for reply button */ +"Reply" = "Risposta"; + /* Label to indicate that the user is replying to themself. */ "Reply to self" = "Rispondi a te stesso"; @@ -478,6 +534,9 @@ Part of a larger sentence to describe how many profiles a user is following. */ /* Context menu option to save an image. */ "Save Image" = "Salva Immagine"; +/* Text on QR code view to prompt viewer to scan the QR code on screen with their device camera. */ +"Scan the code" = "Scansiona il codice"; + /* Navigation link to search hashtag. */ "Search hashtag: #%@" = "Cerca hashtag: #%@"; @@ -499,6 +558,9 @@ Part of a larger sentence to describe how many profiles a user is following. */ /* Prompt selection of LibreTranslate server to perform machine translations on notes */ "Server" = "Server"; +/* Prompt selection of translation service provider. */ +"Service" = "Servizio"; + /* Navigation title for Settings view. Sidebar menu label for accessing the app settings */ "Settings" = "Impostazioni"; @@ -522,15 +584,24 @@ Part of a larger sentence to describe how many profiles a user is following. */ /* Sidebar menu label to sign out of the account. */ "Sign out" = "Esci"; +/* Label to display relay software. */ +"Software" = "Software"; + /* Dropdown option label for Lightning wallet, Strike. */ "Strike" = "Strike"; +/* Label to display relay's supported NIPs. */ +"Supported NIPs" = "NIP Supportati"; + /* Button to close out of alert that informs that the action to block a user was successful. */ "Thanks!" = "Grazie!"; /* Button for user to report that the account is impersonating someone. */ "They are impersonating someone" = "Stanno impersonando qualcuno"; +/* No comment provided by engineer. */ +"This is a paid relay, you must pay for posts to be accepted." = "Questo è un relè a pagamento, devi pagare per postare qui."; + /* Warning that the inputted account key is a public key and the result of what happens because of it. */ "This is a public key, you will not be able to make posts or interact in any way. This is used for viewing accounts from their perspective." = "Questa è una chiave pubblica, non potrai postare o interagire in alcun modo. Puoi utilizzarla solo per vedere gli account"; @@ -546,18 +617,27 @@ Part of a larger sentence to describe how many profiles a user is following. */ /* Navigation bar title for note thread. */ "Thread" = "Thread"; +/* No comment provided by engineer. */ +"To filter your %@ feed, please choose applicable relays from the list below:" = "Per filtrare il tuo %@ feed, scegli un relè disponibile dalla lista sottostante:"; + /* Button to translate note from different language. */ "Translate Note" = "Nota sulla traduzione"; /* Button to indicate that the note has been translated from a different language. */ "Translated from (lang)" = "Tradotto da (lang)"; +/* Button to indicate that the note is in the process of being translated from a different language. */ +"Translating from (lang)..." = "Tradotto da (lang)..."; + +/* Section title for selecting the translation service. */ +"Translations" = "Traduzioni"; + +/* Text field prompt asking user to type the word DELETE to confirm that they want to proceed with deleting their account. The all caps lock DELETE word should not be translated. Everything else should. */ +"Type DELETE to delete" = "Inserisci CANCELLA per cancellare"; + /* Text box prompt to ask user to type their post. */ "Type your post here..." = "Scrivi il tuo post qui..."; -/* Non-breaking space character to fill in blank space next to event action button icons. */ -"u{00A0}" = "u{00A0}"; - /* Button to unfollow a user. */ "Unfollow" = "Smetti di seguire"; @@ -583,6 +663,10 @@ Part of a larger sentence to describe how many profiles a user is following. */ Label to prompt username entry. */ "Username" = "Nome utente"; +/* Label to display relay software version. + Section title for displaying the version number of the Damus app. */ +"Version" = "Versione"; + /* Sidebar menu label for Wallet view. */ "Wallet" = "Portafoglio"; @@ -610,6 +694,9 @@ Part of a larger sentence to describe how many profiles a user is following. */ /* Text of button that confirms to overwrite the existing mutelist. */ "Yes, Overwrite" = "Si, sovrascrivi"; +/* Button to proceed with posting a note even though it looks like they might be posting a private key. */ +"Yes, Post with Private Key" = "Si, posta con Chiave Privata"; + /* You, in this context, is the person who controls their own social network. You is used in the context of a larger sentence that welcomes the reader to the social network that they control themself. */ "you" = "tu"; @@ -619,6 +706,12 @@ Part of a larger sentence to describe how many profiles a user is following. */ /* Footer text to inform user what will happen when the report is submitted. */ "Your report will be sent to the relays you are connected to" = "Questo report sarà inviato a i relays a cui sei connesso"; +/* Accessibility label for zap button */ +"Zap" = "Zap"; + +/* Navigation bar title for the Zaps view. */ +"Zaps" = "Zaps"; + /* Dropdown option label for Lightning wallet, Zebedee. */ "Zebedee" = "Zebedee"; diff --git a/damus/ja.lproj/Localizable.strings b/damus/ja.lproj/Localizable.strings @@ -1,6 +1,3 @@ -/* Blank space to separate profile picture from profile editor form. */ -" " = "61b6edf1108e6f396680a33b02486a70_tr"; - /* Description of how the nip05 identifier would be used for verification. */ "'%@' at '%@' will be used for verification" = "'%@' at '%@' は認証に使用されています"; @@ -13,12 +10,6 @@ /* Navigation bar title for view that shows who a user is following. */ "(who) following" = "(who) がフォロー中"; -/* Prefix character to username. */ -"@" = "@"; - -/* Abbreviated version of a nostr public key. */ -"%@" = "%@"; - /* Sentence composed of 2 variables to describe how many reposts. In source English, the first variable is the number of reposts, and the second variable is 'Repost' or 'Reposts'. Sentence composed of 2 variables to describe how many relay servers a user is connected. In source English, the first variable is the number of relay servers, and the second variable is 'Relay' or 'Relays'. */ "%@ %@" = "%@ %@"; @@ -35,16 +26,9 @@ Sentence composed of 2 variables to describe how many relay servers a user is co /* Explanation of what can be done by users to earn money. There is a heading that precedes this explanation which is a variable to this string. */ "%@. Tip your friend's posts and stack sats with Bitcoin⚡️, the native currency of the internet." = "%@. 友達の投稿にチップを送ろう。インターネットのネイティブ通貨:ビットコイン⚡️で。"; -/* Number of reposts. -Number of relay servers a user is connected. */ -"%lld" = "%lld"; - /* Fraction of how many of the user's relay servers that are operational. */ "%lld/%lld" = "%lld/%lld"; -/* Placeholder for event mention. */ -"< e >" = "< e >"; - /* Text indicating the zap amount. i.e. number of satoshis that were tipped to a user */ "⚡️ %@" = "⚡️ %@"; @@ -74,7 +58,7 @@ Number of relay servers a user is connected. */ "Add all" = "全て追加"; /* Label for section for adding a relay server. */ -"Add Relay" = "Relayを追加"; +"Add Relay" = "リレーを追加"; /* Label to display relay contact user. */ "Admin" = "管理者"; @@ -269,6 +253,9 @@ Number of relay servers a user is connected. */ /* Label indicating that the below text is the EULA, an acronym for End User License Agreement. */ "EULA" = "EULA"; +/* No comment provided by engineer. */ +"Filter" = "フィルター"; + /* Button to follow a user. */ "Follow" = "フォローする"; @@ -415,12 +402,18 @@ Part of a larger sentence to describe how many profiles a user is following. */ /* Label indicating that a form input is optional. */ "optional" = "任意"; +/* No comment provided by engineer. */ +"Paid Relay" = "有料リレー"; + /* Button to pay a Lightning invoice. */ "Pay" = "支払う"; /* Navigation bar title for view to pay Lightning invoice. */ "Pay the Lightning invoice" = "Lightning invoiceを支払う"; +/* Alert for deleting the users account. */ +"Permanently Delete Account" = "アカウントの永久的な削除"; + /* Dropdown option label for Lightning wallet, Phoenix. */ "Phoenix" = "Phoenix"; @@ -470,7 +463,7 @@ Part of a larger sentence to describe how many profiles a user is following. */ "Reactions" = "リアクション"; /* Section title for recommend relay servers that could be added as part of configuration */ -"Recommended Relays" = "推奨のリレーサーバー"; +"Recommended Relays" = "推奨のリレー"; /* Button to reject the end user license agreement, which disallows the user from being let into the app. */ "Reject" = "却下"; @@ -606,6 +599,9 @@ Part of a larger sentence to describe how many profiles a user is following. */ /* Button for user to report that the account is impersonating someone. */ "They are impersonating someone" = "誰かになりすましています"; +/* No comment provided by engineer. */ +"This is a paid relay, you must pay for posts to be accepted." = "このリレーは有料です。投稿するには利用料の支払いが必要です。"; + /* Warning that the inputted account key is a public key and the result of what happens because of it. */ "This is a public key, you will not be able to make posts or interact in any way. This is used for viewing accounts from their perspective." = "これは公開鍵で、投稿などの操作は一切できません。入力された公開鍵の視点で投稿を見るために使用します。"; @@ -621,6 +617,9 @@ Part of a larger sentence to describe how many profiles a user is following. */ /* Navigation bar title for note thread. */ "Thread" = "スレッド"; +/* No comment provided by engineer. */ +"To filter your %@ feed, please choose applicable relays from the list below:" = "%@ フィードをフィルタリングするには、以下のリストから該当するリレーを選択してください。"; + /* Button to translate note from different language. */ "Translate Note" = "翻訳する"; @@ -639,9 +638,6 @@ Part of a larger sentence to describe how many profiles a user is following. */ /* Text box prompt to ask user to type their post. */ "Type your post here..." = "投稿をここに入力..."; -/* Non-breaking space character to fill in blank space next to event action button icons. */ -"u{00A0}" = "u{00A0}"; - /* Button to unfollow a user. */ "Unfollow" = "フォロー解除"; @@ -667,7 +663,8 @@ Part of a larger sentence to describe how many profiles a user is following. */ Label to prompt username entry. */ "Username" = "ユーザー名"; -/* Label to display relay software version. */ +/* Label to display relay software version. + Section title for displaying the version number of the Damus app. */ "Version" = "バージョン"; /* Sidebar menu label for Wallet view. */ @@ -712,6 +709,9 @@ Part of a larger sentence to describe how many profiles a user is following. */ /* Accessibility label for zap button */ "Zap" = "Zap"; +/* Navigation bar title for the Zaps view. */ +"Zaps" = "Zaps"; + /* Dropdown option label for Lightning wallet, Zebedee. */ "Zebedee" = "Zebedee"; diff --git a/damus/lv-LV.lproj/Localizable.strings b/damus/lv-LV.lproj/Localizable.strings @@ -1,6 +1,3 @@ -/* Blank space to separate profile picture from profile editor form. */ -" " = "61b6edf1108e6f396680a33b02486a70_tr"; - /* Description of how the nip05 identifier would be used for verification. */ "'%@' at '%@' will be used for verification" = "'%@' pie '%@' tiks izmantota priekš verifikācijas."; @@ -13,12 +10,6 @@ /* Navigation bar title for view that shows who a user is following. */ "(who) following" = "(who) seko"; -/* Prefix character to username. */ -"@" = "@"; - -/* Abbreviated version of a nostr public key. */ -"%@" = "%@"; - /* Sentence composed of 2 variables to describe how many reposts. In source English, the first variable is the number of reposts, and the second variable is 'Repost' or 'Reposts'. Sentence composed of 2 variables to describe how many relay servers a user is connected. In source English, the first variable is the number of relay servers, and the second variable is 'Relay' or 'Relays'. */ "%@ %@" = "%@ %@"; @@ -35,16 +26,9 @@ Sentence composed of 2 variables to describe how many relay servers a user is co /* Explanation of what can be done by users to earn money. There is a heading that precedes this explanation which is a variable to this string. */ "%@. Tip your friend's posts and stack sats with Bitcoin⚡️, the native currency of the internet." = "%@. Sponsorē draugu ziņas un krājiet Satus ar BitMonētu⚡️, interneta digitālo valūtu."; -/* Number of reposts. -Number of relay servers a user is connected. */ -"%lld" = "%lld"; - /* Fraction of how many of the user's relay servers that are operational. */ "%lld/%lld" = "%lld/%lld"; -/* Placeholder for event mention. */ -"< e >" = "< e >"; - /* Text indicating the zap amount. i.e. number of satoshis that were tipped to a user */ "⚡️ %@" = "⚡️ %@"; @@ -573,9 +557,6 @@ Part of a larger sentence to describe how many profiles a user is following. */ /* Text box prompt to ask user to type their post. */ "Type your post here..." = "Rakstiet savu ziņu šeit..."; -/* Non-breaking space character to fill in blank space next to event action button icons. */ -"u{00A0}" = "u{00A0}"; - /* Button to unfollow a user. */ "Unfollow" = "Atsekot"; diff --git a/damus/nl.lproj/Localizable.strings b/damus/nl.lproj/Localizable.strings @@ -1,6 +1,3 @@ -/* Blank space to separate profile picture from profile editor form. */ -" " = "61b6edf1108e6f396680a33b02486a70_tr"; - /* Description of how the nip05 identifier would be used for verification. */ "'%@' at '%@' will be used for verification" = "‘%@’ op ‘%@’ wordt gebruikt ter verificatie"; @@ -13,12 +10,6 @@ /* Navigation bar title for view that shows who a user is following. */ "(who) following" = "(who) volgt"; -/* Prefix character to username. */ -"@" = "@"; - -/* Abbreviated version of a nostr public key. */ -"%@" = "%@"; - /* Sentence composed of 2 variables to describe how many reposts. In source English, the first variable is the number of reposts, and the second variable is 'Repost' or 'Reposts'. Sentence composed of 2 variables to describe how many relay servers a user is connected. In source English, the first variable is the number of relay servers, and the second variable is 'Relay' or 'Relays'. */ "%@ %@" = "%@ %@"; @@ -35,16 +26,9 @@ Sentence composed of 2 variables to describe how many relay servers a user is co /* Explanation of what can be done by users to earn money. There is a heading that precedes this explanation which is a variable to this string. */ "%@. Tip your friend's posts and stack sats with Bitcoin⚡️, the native currency of the internet." = "%@. Geef je vrienden een fooi met Bitcoin⚡️, dé internetvaluta."; -/* Number of reposts. -Number of relay servers a user is connected. */ -"%lld" = "%lld"; - /* Fraction of how many of the user's relay servers that are operational. */ "%lld/%lld" = "%lld/%lld"; -/* Placeholder for event mention. */ -"< e >" = "< e >"; - /* Text indicating the zap amount. i.e. number of satoshis that were tipped to a user */ "⚡️ %@" = "⚡️ %@"; @@ -270,9 +254,6 @@ Number of relay servers a user is connected. */ "EULA" = "EULA"; /* No comment provided by engineer. */ -"EventDetailView" = "EventDetailView"; - -/* No comment provided by engineer. */ "Filter" = "Filter"; /* Button to follow a user. */ @@ -657,9 +638,6 @@ Part of a larger sentence to describe how many profiles a user is following. */ /* Text box prompt to ask user to type their post. */ "Type your post here..." = "Typ een bericht…"; -/* Non-breaking space character to fill in blank space next to event action button icons. */ -"u{00A0}" = "u{00A0}"; - /* Button to unfollow a user. */ "Unfollow" = "Ontvolg"; @@ -685,7 +663,8 @@ Part of a larger sentence to describe how many profiles a user is following. */ Label to prompt username entry. */ "Username" = "Gebruikersnaam"; -/* Label to display relay software version. */ +/* Label to display relay software version. + Section title for displaying the version number of the Damus app. */ "Version" = "Versie"; /* Sidebar menu label for Wallet view. */ diff --git a/damus/pl-PL.lproj/Localizable.strings b/damus/pl-PL.lproj/Localizable.strings @@ -1,6 +1,3 @@ -/* Blank space to separate profile picture from profile editor form. */ -" " = "61b6edf1108e6f396680a33b02486a70_tr"; - /* Description of how the nip05 identifier would be used for verification. */ "'%@' at '%@' will be used for verification" = "'%@' pod adresem '%@' zostanie użyty do weryfikacji"; @@ -13,12 +10,6 @@ /* Navigation bar title for view that shows who a user is following. */ "(who) following" = "(who) obserwuje"; -/* Prefix character to username. */ -"@" = "@"; - -/* Abbreviated version of a nostr public key. */ -"%@" = "%@"; - /* Sentence composed of 2 variables to describe how many reposts. In source English, the first variable is the number of reposts, and the second variable is 'Repost' or 'Reposts'. Sentence composed of 2 variables to describe how many relay servers a user is connected. In source English, the first variable is the number of relay servers, and the second variable is 'Relay' or 'Relays'. */ "%@ %@" = "%@ %@"; @@ -35,16 +26,9 @@ Sentence composed of 2 variables to describe how many relay servers a user is co /* Explanation of what can be done by users to earn money. There is a heading that precedes this explanation which is a variable to this string. */ "%@. Tip your friend's posts and stack sats with Bitcoin⚡️, the native currency of the internet." = "%@. Dawaj napiwki w reakcji na odpowiedzi znajomych i ciułaj satsy z Bitcoin⚡️, natywną walutą internetu."; -/* Number of reposts. -Number of relay servers a user is connected. */ -"%lld" = "%lld"; - /* Fraction of how many of the user's relay servers that are operational. */ "%lld/%lld" = "%lld/%lld"; -/* Placeholder for event mention. */ -"< e >" = "< e >"; - /* Text indicating the zap amount. i.e. number of satoshis that were tipped to a user */ "⚡️ %@" = "⚡️ %@"; @@ -269,6 +253,9 @@ Number of relay servers a user is connected. */ /* Label indicating that the below text is the EULA, an acronym for End User License Agreement. */ "EULA" = "EULA"; +/* No comment provided by engineer. */ +"Filter" = "Filtr"; + /* Button to follow a user. */ "Follow" = "Obserwuj"; @@ -415,12 +402,18 @@ Part of a larger sentence to describe how many profiles a user is following. */ /* Label indicating that a form input is optional. */ "optional" = "opcjonalne"; +/* No comment provided by engineer. */ +"Paid Relay" = "Płatny przekaźnik"; + /* Button to pay a Lightning invoice. */ "Pay" = "Zapłać"; /* Navigation bar title for view to pay Lightning invoice. */ "Pay the Lightning invoice" = "Zapłać fakturę Lightning"; +/* Alert for deleting the users account. */ +"Permanently Delete Account" = "Trwałe skasowanie konta"; + /* Dropdown option label for Lightning wallet, Phoenix. */ "Phoenix" = "Phoenix"; @@ -606,6 +599,9 @@ Part of a larger sentence to describe how many profiles a user is following. */ /* Button for user to report that the account is impersonating someone. */ "They are impersonating someone" = "Podszywa się pod kogoś"; +/* No comment provided by engineer. */ +"This is a paid relay, you must pay for posts to be accepted." = "To jest płatny przekaźnik - musisz zapłacić, aby wysyłać posty."; + /* Warning that the inputted account key is a public key and the result of what happens because of it. */ "This is a public key, you will not be able to make posts or interact in any way. This is used for viewing accounts from their perspective." = "To jest klucz publiczny, nie będziesz mógł pisać postów ani mieć żadnych interakcji. Jest używany tylko do odczytu z ich perspektywy."; @@ -621,6 +617,9 @@ Part of a larger sentence to describe how many profiles a user is following. */ /* Navigation bar title for note thread. */ "Thread" = "Wątek"; +/* No comment provided by engineer. */ +"To filter your %@ feed, please choose applicable relays from the list below:" = "Aby filtrować swój %@ kanał, wybierz stosowne przekaźniki z listy poniżej:"; + /* Button to translate note from different language. */ "Translate Note" = "Tłumacz wpis"; @@ -639,9 +638,6 @@ Part of a larger sentence to describe how many profiles a user is following. */ /* Text box prompt to ask user to type their post. */ "Type your post here..." = "Napisz swój post tutaj..."; -/* Non-breaking space character to fill in blank space next to event action button icons. */ -"u{00A0}" = "u{00A0}"; - /* Button to unfollow a user. */ "Unfollow" = "Przestań obserwować"; @@ -667,7 +663,8 @@ Part of a larger sentence to describe how many profiles a user is following. */ Label to prompt username entry. */ "Username" = "Nazwa użytkownika"; -/* Label to display relay software version. */ +/* Label to display relay software version. + Section title for displaying the version number of the Damus app. */ "Version" = "Wersja"; /* Sidebar menu label for Wallet view. */ @@ -712,6 +709,9 @@ Part of a larger sentence to describe how many profiles a user is following. */ /* Accessibility label for zap button */ "Zap" = "Zap"; +/* Navigation bar title for the Zaps view. */ +"Zaps" = "Zapy"; + /* Dropdown option label for Lightning wallet, Zebedee. */ "Zebedee" = "Zebedee"; diff --git a/damus/pt-PT.lproj/Localizable.strings b/damus/pt-PT.lproj/Localizable.strings @@ -1,6 +1,3 @@ -/* Blank space to separate profile picture from profile editor form. */ -" " = "61b6edf1108e6f396680a33b02486a70_tr"; - /* Description of how the nip05 identifier would be used for verification. */ "'%@' at '%@' will be used for verification" = "'%@' a '%@' será utilizado para verificação"; @@ -13,12 +10,6 @@ /* Navigation bar title for view that shows who a user is following. */ "(who) following" = "Seguindo (quem)"; -/* Prefix character to username. */ -"@" = "@"; - -/* Abbreviated version of a nostr public key. */ -"%@" = "%@"; - /* Sentence composed of 2 variables to describe how many reposts. In source English, the first variable is the number of reposts, and the second variable is 'Repost' or 'Reposts'. Sentence composed of 2 variables to describe how many relay servers a user is connected. In source English, the first variable is the number of relay servers, and the second variable is 'Relay' or 'Relays'. */ "%@ %@" = "%@ %@"; @@ -35,16 +26,9 @@ Sentence composed of 2 variables to describe how many relay servers a user is co /* Explanation of what can be done by users to earn money. There is a heading that precedes this explanation which is a variable to this string. */ "%@. Tip your friend's posts and stack sats with Bitcoin⚡️, the native currency of the internet." = "%@. Dê uma gorjeta aos seus amigos e acumule sats com Bitcoin⚡️, a moeda nativa da Internet."; -/* Number of reposts. -Number of relay servers a user is connected. */ -"%lld" = "%lld"; - /* Fraction of how many of the user's relay servers that are operational. */ "%lld/%lld" = "%lld/%lld"; -/* Placeholder for event mention. */ -"< e >" = "< e >"; - /* Text indicating the zap amount. i.e. number of satoshis that were tipped to a user */ "⚡️ %@" = "⚡️ %@"; @@ -555,9 +539,6 @@ Part of a larger sentence to describe how many profiles a user is following. */ /* Text box prompt to ask user to type their post. */ "Type your post here..." = "Escreva aqui o seu post..."; -/* Non-breaking space character to fill in blank space next to event action button icons. */ -"u{00A0}" = "u{00A0}"; - /* Button to unfollow a user. */ "Unfollow" = "Deixar de Seguir"; diff --git a/damus/tr-TR.lproj/Localizable.strings b/damus/tr-TR.lproj/Localizable.strings @@ -1,6 +1,3 @@ -/* Blank space to separate profile picture from profile editor form. */ -" " = "61b6edf1108e6f396680a33b02486a70_tr"; - /* Description of how the nip05 identifier would be used for verification. */ "'%@' at '%@' will be used for verification" = "'%@' adresindeki '%@' doğrulama için kullanılacaktır"; @@ -10,12 +7,6 @@ /* Navigation bar title for view that shows who a user is following. */ "(who) following" = "(who)'nin Takip Ettikleri"; -/* Prefix character to username. */ -"@" = "@"; - -/* Abbreviated version of a nostr public key. */ -"%@" = "%@"; - /* Sentence composed of 2 variables to describe how many reposts. In source English, the first variable is the number of reposts, and the second variable is 'Repost' or 'Reposts'. Sentence composed of 2 variables to describe how many relay servers a user is connected. In source English, the first variable is the number of relay servers, and the second variable is 'Relay' or 'Relays'. */ "%@ %@" = "%@ %@"; @@ -29,16 +20,9 @@ Sentence composed of 2 variables to describe how many relay servers a user is co /* Explanation of what can be done by users to earn money. There is a heading that precedes this explanation which is a variable to this string. */ "%@. Tip your friend's posts and stack sats with Bitcoin⚡️, the native currency of the internet." = "%@. Arkadaşlarınızın gönderilerine bahşiş verin ve internetin yerel para birimi olan Bitcoin⚡️ ile sats biriktirin."; -/* Number of reposts. -Number of relay servers a user is connected. */ -"%lld" = "%lld"; - /* Fraction of how many of the user's relay servers that are operational. */ "%lld/%lld" = "%lld/%lld"; -/* Placeholder for event mention. */ -"< e >" = "< e >"; - /* Text indicating the zap amount. i.e. number of satoshis that were tipped to a user */ "⚡️ %@" = "⚡️ %@"; @@ -426,9 +410,6 @@ Part of a larger sentence to describe how many profiles a user is following. */ /* Text box prompt to ask user to type their post. */ "Type your post here..." = "Gönderinizi buraya yazın..."; -/* Non-breaking space character to fill in blank space next to event action button icons. */ -"u{00A0}" = "u{00A0}"; - /* Button to unfollow a user. */ "Unfollow" = "Takipten Çık"; diff --git a/damus/zh-CN.lproj/Localizable.strings b/damus/zh-CN.lproj/Localizable.strings @@ -1,6 +1,3 @@ -/* Blank space to separate profile picture from profile editor form. */ -" " = "61b6edf1108e6f396680a33b02486a70_tr"; - /* Description of how the nip05 identifier would be used for verification. */ "'%@' at '%@' will be used for verification" = "'%@' at '%@' 将被用于认证"; @@ -13,12 +10,6 @@ /* Navigation bar title for view that shows who a user is following. */ "(who) following" = "(who)关注"; -/* Prefix character to username. */ -"@" = "@"; - -/* Abbreviated version of a nostr public key. */ -"%@" = "%@"; - /* Sentence composed of 2 variables to describe how many reposts. In source English, the first variable is the number of reposts, and the second variable is 'Repost' or 'Reposts'. Sentence composed of 2 variables to describe how many relay servers a user is connected. In source English, the first variable is the number of relay servers, and the second variable is 'Relay' or 'Relays'. */ "%@ %@" = "%@ %@"; @@ -35,16 +26,9 @@ Sentence composed of 2 variables to describe how many relay servers a user is co /* Explanation of what can be done by users to earn money. There is a heading that precedes this explanation which is a variable to this string. */ "%@. Tip your friend's posts and stack sats with Bitcoin⚡️, the native currency of the internet." = "%@. 用互联网原生货币--比特币⚡️来打赏好友的推文并积攒财富。"; -/* Number of reposts. -Number of relay servers a user is connected. */ -"%lld" = "%lld"; - /* Fraction of how many of the user's relay servers that are operational. */ "%lld/%lld" = "%lld/%lld"; -/* Placeholder for event mention. */ -"< e >" = "< e >"; - /* Text indicating the zap amount. i.e. number of satoshis that were tipped to a user */ "⚡️ %@" = "⚡️ %@"; @@ -214,6 +198,9 @@ Number of relay servers a user is connected. */ /* Name of the app, shown on the first screen when user is not logged in. */ "Damus" = "达摩"; +/* Dropdown option for selecting DeepL as the translation service. */ +"DeepL (Proprietary, Higher Accuracy)" = "DeepL(专有软件,准确性更高)"; + /* Button to pay a Lightning invoice with the user's default Lightning wallet. */ "Default Wallet" = "默认钱包"; @@ -651,9 +638,6 @@ Part of a larger sentence to describe how many profiles a user is following. */ /* Text box prompt to ask user to type their post. */ "Type your post here..." = "说点什么呢..."; -/* Non-breaking space character to fill in blank space next to event action button icons. */ -"u{00A0}" = "u{00A0}"; - /* Button to unfollow a user. */ "Unfollow" = "取消关注"; @@ -679,7 +663,8 @@ Part of a larger sentence to describe how many profiles a user is following. */ Label to prompt username entry. */ "Username" = "用户名"; -/* Label to display relay software version. */ +/* Label to display relay software version. + Section title for displaying the version number of the Damus app. */ "Version" = "版本"; /* Sidebar menu label for Wallet view. */ @@ -721,6 +706,12 @@ Part of a larger sentence to describe how many profiles a user is following. */ /* Footer text to inform user what will happen when the report is submitted. */ "Your report will be sent to the relays you are connected to" = "您的举报将被发送到您已连接的中继器上"; +/* Accessibility label for zap button */ +"Zap" = "电击"; + +/* Navigation bar title for the Zaps view. */ +"Zaps" = "电击"; + /* Dropdown option label for Lightning wallet, Zebedee. */ "Zebedee" = "Zebedee"; diff --git a/translations/ar.xliff b/translations/ar.xliff @@ -35,17 +35,6 @@ <tool tool-id="com.apple.dt.xcode" tool-name="Xcode" tool-version="14.2" build-num="14C18"/> </header> <body> - <trans-unit id=" " xml:space="preserve"> - <source> </source> - <target>61b6edf1108e6f396680a33b02486a70_tr</target> - <note>Blank space to separate profile picture from profile editor form.</note> - </trans-unit> - <trans-unit id="%@" xml:space="preserve"> - <source>%@</source> - <target>%@</target> - - <note>Abbreviated version of a nostr public key.</note> - </trans-unit> <trans-unit id="%@ %@" xml:space="preserve"> <source>%@ %@</source> <target>%@ %@</target> @@ -77,13 +66,6 @@ Sentence composed of 2 variables to describe how many relay servers a user is co <note>Explanation of what can be done by users to earn money. There is a heading that precedes this explanation which is a variable to this string.</note> </trans-unit> - <trans-unit id="%lld" xml:space="preserve"> - <source>%lld</source> - <target>%lld</target> - - <note>Number of reposts. -Number of relay servers a user is connected.</note> - </trans-unit> <trans-unit id="%lld/%lld" xml:space="preserve"> <source>%lld/%lld</source> <target>%lld/%lld</target> @@ -114,18 +96,6 @@ Number of relay servers a user is connected.</note> <note>Navigation bar title for view that shows who a user is following.</note> </trans-unit> - <trans-unit id="&lt; e &gt;" xml:space="preserve"> - <source>&lt; e &gt;</source> - <target>&lt; e &gt;</target> - - <note>Placeholder for event mention.</note> - </trans-unit> - <trans-unit id="@" xml:space="preserve"> - <source>@</source> - <target>@</target> - - <note>Prefix character to username.</note> - </trans-unit> <trans-unit id="API Key (optional)" xml:space="preserve"> <source>API Key (optional)</source> <target>مفتاح API (اختياري)</target> @@ -467,6 +437,11 @@ Number of relay servers a user is connected.</note> <note>Button to pay a Lightning invoice with the user's default Lightning wallet.</note> </trans-unit> + <trans-unit id="Default Zap Amount in sats" xml:space="preserve"> + <source>Default Zap Amount in sats</source> + + <note>Section title for zap configuration</note> + </trans-unit> <trans-unit id="Delete" xml:space="preserve"> <source>Delete</source> <target>حذف</target> @@ -554,12 +529,6 @@ Number of relay servers a user is connected.</note> <note>Error message indicating why saving keys failed.</note> </trans-unit> - <trans-unit id="EventDetailView" xml:space="preserve"> - <source>EventDetailView</source> - <target>EventDetailView</target> - - <note>No comment provided by engineer.</note> - </trans-unit> <trans-unit id="Filter" xml:space="preserve"> <source>Filter</source> <target>تصفية</target> @@ -586,13 +555,13 @@ Number of relay servers a user is connected.</note> </trans-unit> <trans-unit id="Followers" xml:space="preserve"> <source>Followers</source> - <target>المتابعون</target> + <target>المتابِعون</target> <note>Label describing followers of a user.</note> </trans-unit> <trans-unit id="Following" xml:space="preserve"> <source>Following</source> - <target>المتابَعين</target> + <target>المتابَعون</target> <note>Text to indicate that the button next to it is in a state that indicates that it is in the process of following a profile. Part of a larger sentence to describe how many profiles a user is following.</note> @@ -1322,7 +1291,8 @@ Part of a larger sentence to describe how many profiles a user is following.</no <source>Version</source> <target>الاصدار</target> - <note>Label to display relay software version.</note> + <note>Label to display relay software version. + Section title for displaying the version number of the Damus app.</note> </trans-unit> <trans-unit id="Wallet" xml:space="preserve"> <source>Wallet</source> @@ -1504,12 +1474,6 @@ Part of a larger sentence to describe how many profiles a user is following.</no <note>Amount of sats. (Key in .stringsdict)</note> </trans-unit> - <trans-unit id="u{00A0}" xml:space="preserve"> - <source>u{00A0}</source> - <target>u{00A0}</target> - - <note>Non-breaking space character to fill in blank space next to event action button icons.</note> - </trans-unit> <trans-unit id="wss://some.relay.com" xml:space="preserve"> <source>wss://some.relay.com</source> <target>wss://some.relay.com</target> @@ -1567,7 +1531,7 @@ Part of a larger sentence to describe how many profiles a user is following.</no </trans-unit> <trans-unit id="/followers_count:dict/FOLLOWERS:dict/other:dict/:string" xml:space="preserve"> <source>Followers</source> - <target>المتابعون</target> + <target>المتابِعون</target> <note>Part of a larger sentence to describe how many people are following a user.</note> </trans-unit> diff --git a/translations/de.xliff b/translations/de.xliff @@ -35,17 +35,6 @@ <tool tool-id="com.apple.dt.xcode" tool-name="Xcode" tool-version="14.2" build-num="14C18"/> </header> <body> - <trans-unit id=" " xml:space="preserve"> - <source> </source> - <target>61b6edf1108e6f396680a33b02486a70_tr</target> - <note>Blank space to separate profile picture from profile editor form.</note> - </trans-unit> - <trans-unit id="%@" xml:space="preserve"> - <source>%@</source> - <target>%@</target> - - <note>Abbreviated version of a nostr public key.</note> - </trans-unit> <trans-unit id="%@ %@" xml:space="preserve"> <source>%@ %@</source> <target>%@ %@</target> @@ -77,13 +66,6 @@ Sentence composed of 2 variables to describe how many relay servers a user is co <note>Explanation of what can be done by users to earn money. There is a heading that precedes this explanation which is a variable to this string.</note> </trans-unit> - <trans-unit id="%lld" xml:space="preserve"> - <source>%lld</source> - <target>%lld</target> - - <note>Number of reposts. -Number of relay servers a user is connected.</note> - </trans-unit> <trans-unit id="%lld/%lld" xml:space="preserve"> <source>%lld/%lld</source> <target>%lld/%lld</target> @@ -114,18 +96,6 @@ Number of relay servers a user is connected.</note> <note>Navigation bar title for view that shows who a user is following.</note> </trans-unit> - <trans-unit id="&lt; e &gt;" xml:space="preserve"> - <source>&lt; e &gt;</source> - <target>&lt; e &gt;</target> - - <note>Placeholder for event mention.</note> - </trans-unit> - <trans-unit id="@" xml:space="preserve"> - <source>@</source> - <target>@</target> - - <note>Prefix character to username.</note> - </trans-unit> <trans-unit id="API Key (optional)" xml:space="preserve"> <source>API Key (optional)</source> <target>API Schlüssel (optional)</target> @@ -467,6 +437,11 @@ Number of relay servers a user is connected.</note> <note>Button to pay a Lightning invoice with the user's default Lightning wallet.</note> </trans-unit> + <trans-unit id="Default Zap Amount in sats" xml:space="preserve"> + <source>Default Zap Amount in sats</source> + + <note>Section title for zap configuration</note> + </trans-unit> <trans-unit id="Delete" xml:space="preserve"> <source>Delete</source> <target>Löschen</target> @@ -554,13 +529,9 @@ Number of relay servers a user is connected.</note> <note>Error message indicating why saving keys failed.</note> </trans-unit> - <trans-unit id="EventDetailView" xml:space="preserve"> - <source>EventDetailView</source> - - <note>No comment provided by engineer.</note> - </trans-unit> <trans-unit id="Filter" xml:space="preserve"> <source>Filter</source> + <target>Filter</target> <note>No comment provided by engineer.</note> </trans-unit> @@ -811,6 +782,7 @@ Part of a larger sentence to describe how many profiles a user is following.</no </trans-unit> <trans-unit id="Paid Relay" xml:space="preserve"> <source>Paid Relay</source> + <target>Kostenpflichtiger Relay</target> <note>No comment provided by engineer.</note> </trans-unit> @@ -828,6 +800,7 @@ Part of a larger sentence to describe how many profiles a user is following.</no </trans-unit> <trans-unit id="Permanently Delete Account" xml:space="preserve"> <source>Permanently Delete Account</source> + <target>Konto dauerhaft löschen</target> <note>Alert for deleting the users account.</note> </trans-unit> @@ -1189,6 +1162,7 @@ Part of a larger sentence to describe how many profiles a user is following.</no </trans-unit> <trans-unit id="This is a paid relay, you must pay for posts to be accepted." xml:space="preserve"> <source>This is a paid relay, you must pay for posts to be accepted.</source> + <target>Das ist ein kostenpflichtiges Relay. Du musst bezahlen um Beiträge teilen zu können.</target> <note>No comment provided by engineer.</note> </trans-unit> @@ -1224,6 +1198,7 @@ Part of a larger sentence to describe how many profiles a user is following.</no </trans-unit> <trans-unit id="To filter your %@ feed, please choose applicable relays from the list below:" xml:space="preserve"> <source>To filter your %@ feed, please choose applicable relays from the list below:</source> + <target>Um deinen %@-Feed zu filtern, wähle bitte passende Relays aus der Liste unten aus:</target> <note>No comment provided by engineer.</note> </trans-unit> @@ -1316,7 +1291,8 @@ Part of a larger sentence to describe how many profiles a user is following.</no <source>Version</source> <target>Version</target> - <note>Label to display relay software version.</note> + <note>Label to display relay software version. + Section title for displaying the version number of the Damus app.</note> </trans-unit> <trans-unit id="Wallet" xml:space="preserve"> <source>Wallet</source> @@ -1392,6 +1368,7 @@ Part of a larger sentence to describe how many profiles a user is following.</no </trans-unit> <trans-unit id="Zaps" xml:space="preserve"> <source>Zaps</source> + <target>Zaps</target> <note>Navigation bar title for the Zaps view.</note> </trans-unit> @@ -1497,12 +1474,6 @@ Part of a larger sentence to describe how many profiles a user is following.</no <note>Amount of sats. (Key in .stringsdict)</note> </trans-unit> - <trans-unit id="u{00A0}" xml:space="preserve"> - <source>u{00A0}</source> - <target>u{00A0}</target> - - <note>Non-breaking space character to fill in blank space next to event action button icons.</note> - </trans-unit> <trans-unit id="wss://some.relay.com" xml:space="preserve"> <source>wss://some.relay.com</source> <target>wss://some.relay.com</target> diff --git a/translations/el_GR.xliff b/translations/el_GR.xliff @@ -35,17 +35,6 @@ <tool tool-id="com.apple.dt.xcode" tool-name="Xcode" tool-version="14.2" build-num="14C18"/> </header> <body> - <trans-unit id=" " xml:space="preserve"> - <source> </source> - <target>61b6edf1108e6f396680a33b02486a70_tr</target> - <note>Blank space to separate profile picture from profile editor form.</note> - </trans-unit> - <trans-unit id="%@" xml:space="preserve"> - <source>%@</source> - <target>%@</target> - - <note>Abbreviated version of a nostr public key.</note> - </trans-unit> <trans-unit id="%@ %@" xml:space="preserve"> <source>%@ %@</source> <target>%@ %@</target> @@ -77,13 +66,6 @@ Sentence composed of 2 variables to describe how many relay servers a user is co <note>Explanation of what can be done by users to earn money. There is a heading that precedes this explanation which is a variable to this string.</note> </trans-unit> - <trans-unit id="%lld" xml:space="preserve"> - <source>%lld</source> - <target>%lld</target> - - <note>Number of reposts. -Number of relay servers a user is connected.</note> - </trans-unit> <trans-unit id="%lld/%lld" xml:space="preserve"> <source>%lld/%lld</source> <target>%lld/%lld</target> @@ -104,7 +86,7 @@ Number of relay servers a user is connected.</note> </trans-unit> <trans-unit id="(Profile.displayName(profile: profile, pubkey: whos))'s Followers" xml:space="preserve"> <source>(Profile.displayName(profile: profile, pubkey: whos))'s Followers</source> - <target>(Profile.displayName(profile: profile, pubkey: whos))'s Ακόλουθοι</target> + <target>(Profile.displayName(profile: profile, pubkey: whos)) Ακόλουθοι</target> <note>Navigation bar title for view that shows who is following a user.</note> </trans-unit> @@ -114,18 +96,6 @@ Number of relay servers a user is connected.</note> <note>Navigation bar title for view that shows who a user is following.</note> </trans-unit> - <trans-unit id="&lt; e &gt;" xml:space="preserve"> - <source>&lt; e &gt;</source> - <target>&lt; e &gt;</target> - - <note>Placeholder for event mention.</note> - </trans-unit> - <trans-unit id="@" xml:space="preserve"> - <source>@</source> - <target>@</target> - - <note>Prefix character to username.</note> - </trans-unit> <trans-unit id="API Key (optional)" xml:space="preserve"> <source>API Key (optional)</source> <target>Κλειδί API (προαιρετικό)</target> @@ -467,6 +437,11 @@ Number of relay servers a user is connected.</note> <note>Button to pay a Lightning invoice with the user's default Lightning wallet.</note> </trans-unit> + <trans-unit id="Default Zap Amount in sats" xml:space="preserve"> + <source>Default Zap Amount in sats</source> + + <note>Section title for zap configuration</note> + </trans-unit> <trans-unit id="Delete" xml:space="preserve"> <source>Delete</source> <target>Διαγραφή</target> @@ -554,13 +529,9 @@ Number of relay servers a user is connected.</note> <note>Error message indicating why saving keys failed.</note> </trans-unit> - <trans-unit id="EventDetailView" xml:space="preserve"> - <source>EventDetailView</source> - - <note>No comment provided by engineer.</note> - </trans-unit> <trans-unit id="Filter" xml:space="preserve"> <source>Filter</source> + <target>Φίλτρο</target> <note>No comment provided by engineer.</note> </trans-unit> @@ -811,6 +782,7 @@ Part of a larger sentence to describe how many profiles a user is following.</no </trans-unit> <trans-unit id="Paid Relay" xml:space="preserve"> <source>Paid Relay</source> + <target>Διακομιστής Relay με πληρωμή</target> <note>No comment provided by engineer.</note> </trans-unit> @@ -828,6 +800,7 @@ Part of a larger sentence to describe how many profiles a user is following.</no </trans-unit> <trans-unit id="Permanently Delete Account" xml:space="preserve"> <source>Permanently Delete Account</source> + <target>Οριστική διαγραφή λογαριασμού</target> <note>Alert for deleting the users account.</note> </trans-unit> @@ -1189,6 +1162,7 @@ Part of a larger sentence to describe how many profiles a user is following.</no </trans-unit> <trans-unit id="This is a paid relay, you must pay for posts to be accepted." xml:space="preserve"> <source>This is a paid relay, you must pay for posts to be accepted.</source> + <target>Αυτός είναι ένας επί πληρωμή διακομιστής relay, πρέπει να πληρώσετε ώστε οι δημοσιεύσεις σας να εμφανιστούν.</target> <note>No comment provided by engineer.</note> </trans-unit> @@ -1224,6 +1198,7 @@ Part of a larger sentence to describe how many profiles a user is following.</no </trans-unit> <trans-unit id="To filter your %@ feed, please choose applicable relays from the list below:" xml:space="preserve"> <source>To filter your %@ feed, please choose applicable relays from the list below:</source> + <target>Για να φιλτράρετε την ροή μηνυμάτων από ανεπιθύμητα στην κεντρική τροφοδοσία του %@, παρακαλώ επιλέξτε σχετικούς διακομιστές relays απο την παρακάτω λίστα:</target> <note>No comment provided by engineer.</note> </trans-unit> @@ -1316,7 +1291,8 @@ Part of a larger sentence to describe how many profiles a user is following.</no <source>Version</source> <target>Έκδοση</target> - <note>Label to display relay software version.</note> + <note>Label to display relay software version. + Section title for displaying the version number of the Damus app.</note> </trans-unit> <trans-unit id="Wallet" xml:space="preserve"> <source>Wallet</source> @@ -1392,6 +1368,7 @@ Part of a larger sentence to describe how many profiles a user is following.</no </trans-unit> <trans-unit id="Zaps" xml:space="preserve"> <source>Zaps</source> + <target>Zaps</target> <note>Navigation bar title for the Zaps view.</note> </trans-unit> @@ -1497,12 +1474,6 @@ Part of a larger sentence to describe how many profiles a user is following.</no <note>Amount of sats. (Key in .stringsdict)</note> </trans-unit> - <trans-unit id="u{00A0}" xml:space="preserve"> - <source>u{00A0}</source> - <target>u{00A0}</target> - - <note>Non-breaking space character to fill in blank space next to event action button icons.</note> - </trans-unit> <trans-unit id="wss://some.relay.com" xml:space="preserve"> <source>wss://some.relay.com</source> <target>wss://some.relay.com</target> diff --git a/translations/en-US.xcloc/Localized Contents/en-US.xliff b/translations/en-US.xcloc/Localized Contents/en-US.xliff @@ -32,16 +32,6 @@ <tool tool-id="com.apple.dt.xcode" tool-name="Xcode" tool-version="14.2" build-num="14C18"/> </header> <body> - <trans-unit id=" " xml:space="preserve"> - <source> </source> - <target> </target> - <note>Blank space to separate profile picture from profile editor form.</note> - </trans-unit> - <trans-unit id="%@" xml:space="preserve"> - <source>%@</source> - <target>%@</target> - <note>Abbreviated version of a nostr public key.</note> - </trans-unit> <trans-unit id="%@ %@" xml:space="preserve"> <source>%@ %@</source> <target>%@ %@</target> @@ -68,12 +58,6 @@ Sentence composed of 2 variables to describe how many relay servers a user is co <target>%@. Tip your friend's posts and stack sats with Bitcoin⚡️, the native currency of the internet.</target> <note>Explanation of what can be done by users to earn money. There is a heading that precedes this explanation which is a variable to this string.</note> </trans-unit> - <trans-unit id="%lld" xml:space="preserve"> - <source>%lld</source> - <target>%lld</target> - <note>Number of reposts. -Number of relay servers a user is connected.</note> - </trans-unit> <trans-unit id="%lld/%lld" xml:space="preserve"> <source>%lld/%lld</source> <target>%lld/%lld</target> @@ -99,16 +83,6 @@ Number of relay servers a user is connected.</note> <target>(who) following</target> <note>Navigation bar title for view that shows who a user is following.</note> </trans-unit> - <trans-unit id="&lt; e &gt;" xml:space="preserve"> - <source>&lt; e &gt;</source> - <target>&lt; e &gt;</target> - <note>Placeholder for event mention.</note> - </trans-unit> - <trans-unit id="@" xml:space="preserve"> - <source>@</source> - <target>@</target> - <note>Prefix character to username.</note> - </trans-unit> <trans-unit id="API Key (optional)" xml:space="preserve"> <source>API Key (optional)</source> <target>API Key (optional)</target> @@ -395,6 +369,11 @@ Number of relay servers a user is connected.</note> <target>Default Wallet</target> <note>Button to pay a Lightning invoice with the user's default Lightning wallet.</note> </trans-unit> + <trans-unit id="Default Zap Amount in sats" xml:space="preserve"> + <source>Default Zap Amount in sats</source> + <target>Default Zap Amount in sats</target> + <note>Section title for zap configuration</note> + </trans-unit> <trans-unit id="Delete" xml:space="preserve"> <source>Delete</source> <target>Delete</target> @@ -468,11 +447,6 @@ Number of relay servers a user is connected.</note> <target>Error: %@</target> <note>Error message indicating why saving keys failed.</note> </trans-unit> - <trans-unit id="EventDetailView" xml:space="preserve"> - <source>EventDetailView</source> - <target>EventDetailView</target> - <note>No comment provided by engineer.</note> - </trans-unit> <trans-unit id="Filter" xml:space="preserve"> <source>Filter</source> <target>Filter</target> @@ -1110,7 +1084,8 @@ Part of a larger sentence to describe how many profiles a user is following.</no <trans-unit id="Version" xml:space="preserve"> <source>Version</source> <target>Version</target> - <note>Label to display relay software version.</note> + <note>Label to display relay software version. + Section title for displaying the version number of the Damus app.</note> </trans-unit> <trans-unit id="Wallet" xml:space="preserve"> <source>Wallet</source> @@ -1262,11 +1237,6 @@ Part of a larger sentence to describe how many profiles a user is following.</no <target>sats_count</target> <note>Amount of sats. (Key in .stringsdict)</note> </trans-unit> - <trans-unit id="u{00A0}" xml:space="preserve"> - <source>u{00A0}</source> - <target>u{00A0}</target> - <note>Non-breaking space character to fill in blank space next to event action button icons.</note> - </trans-unit> <trans-unit id="wss://some.relay.com" xml:space="preserve"> <source>wss://some.relay.com</source> <target>wss://some.relay.com</target> diff --git a/translations/en-US.xcloc/Source Contents/damus/en-US.lproj/Localizable.strings b/translations/en-US.xcloc/Source Contents/damus/en-US.lproj/Localizable.strings Binary files differ. diff --git a/translations/es_419.xliff b/translations/es_419.xliff @@ -35,17 +35,6 @@ <tool tool-id="com.apple.dt.xcode" tool-name="Xcode" tool-version="14.2" build-num="14C18"/> </header> <body> - <trans-unit id=" " xml:space="preserve"> - <source> </source> - <target>61b6edf1108e6f396680a33b02486a70_tr</target> - <note>Blank space to separate profile picture from profile editor form.</note> - </trans-unit> - <trans-unit id="%@" xml:space="preserve"> - <source>%@</source> - <target>%@</target> - - <note>Abbreviated version of a nostr public key.</note> - </trans-unit> <trans-unit id="%@ %@" xml:space="preserve"> <source>%@ %@</source> <target>%@ %@</target> @@ -77,13 +66,6 @@ Sentence composed of 2 variables to describe how many relay servers a user is co <note>Explanation of what can be done by users to earn money. There is a heading that precedes this explanation which is a variable to this string.</note> </trans-unit> - <trans-unit id="%lld" xml:space="preserve"> - <source>%lld</source> - <target>%lld</target> - - <note>Number of reposts. -Number of relay servers a user is connected.</note> - </trans-unit> <trans-unit id="%lld/%lld" xml:space="preserve"> <source>%lld/%lld</source> <target>%lld/%lld</target> @@ -114,18 +96,6 @@ Number of relay servers a user is connected.</note> <note>Navigation bar title for view that shows who a user is following.</note> </trans-unit> - <trans-unit id="&lt; e &gt;" xml:space="preserve"> - <source>&lt; e &gt;</source> - <target>&lt; e &gt;</target> - - <note>Placeholder for event mention.</note> - </trans-unit> - <trans-unit id="@" xml:space="preserve"> - <source>@</source> - <target>@</target> - - <note>Prefix character to username.</note> - </trans-unit> <trans-unit id="API Key (optional)" xml:space="preserve"> <source>API Key (optional)</source> <target>Clave de API (opcional)</target> @@ -467,6 +437,11 @@ Number of relay servers a user is connected.</note> <note>Button to pay a Lightning invoice with the user's default Lightning wallet.</note> </trans-unit> + <trans-unit id="Default Zap Amount in sats" xml:space="preserve"> + <source>Default Zap Amount in sats</source> + + <note>Section title for zap configuration</note> + </trans-unit> <trans-unit id="Delete" xml:space="preserve"> <source>Delete</source> <target>Borrar</target> @@ -554,13 +529,9 @@ Number of relay servers a user is connected.</note> <note>Error message indicating why saving keys failed.</note> </trans-unit> - <trans-unit id="EventDetailView" xml:space="preserve"> - <source>EventDetailView</source> - - <note>No comment provided by engineer.</note> - </trans-unit> <trans-unit id="Filter" xml:space="preserve"> <source>Filter</source> + <target>Filtro</target> <note>No comment provided by engineer.</note> </trans-unit> @@ -811,6 +782,7 @@ Part of a larger sentence to describe how many profiles a user is following.</no </trans-unit> <trans-unit id="Paid Relay" xml:space="preserve"> <source>Paid Relay</source> + <target>Relé de pago</target> <note>No comment provided by engineer.</note> </trans-unit> @@ -828,6 +800,7 @@ Part of a larger sentence to describe how many profiles a user is following.</no </trans-unit> <trans-unit id="Permanently Delete Account" xml:space="preserve"> <source>Permanently Delete Account</source> + <target>Cuenta eliminada permanentemente</target> <note>Alert for deleting the users account.</note> </trans-unit> @@ -1189,6 +1162,7 @@ Part of a larger sentence to describe how many profiles a user is following.</no </trans-unit> <trans-unit id="This is a paid relay, you must pay for posts to be accepted." xml:space="preserve"> <source>This is a paid relay, you must pay for posts to be accepted.</source> + <target>Este es un relé de pago, debes de pagar para que acepte tus publicaciones.</target> <note>No comment provided by engineer.</note> </trans-unit> @@ -1224,6 +1198,7 @@ Part of a larger sentence to describe how many profiles a user is following.</no </trans-unit> <trans-unit id="To filter your %@ feed, please choose applicable relays from the list below:" xml:space="preserve"> <source>To filter your %@ feed, please choose applicable relays from the list below:</source> + <target>Para filtrar tu feed de %@, elija los relés correspondientes de la lista siguiente:</target> <note>No comment provided by engineer.</note> </trans-unit> @@ -1316,7 +1291,8 @@ Part of a larger sentence to describe how many profiles a user is following.</no <source>Version</source> <target>Versión</target> - <note>Label to display relay software version.</note> + <note>Label to display relay software version. + Section title for displaying the version number of the Damus app.</note> </trans-unit> <trans-unit id="Wallet" xml:space="preserve"> <source>Wallet</source> @@ -1392,6 +1368,7 @@ Part of a larger sentence to describe how many profiles a user is following.</no </trans-unit> <trans-unit id="Zaps" xml:space="preserve"> <source>Zaps</source> + <target>Zaps</target> <note>Navigation bar title for the Zaps view.</note> </trans-unit> @@ -1497,12 +1474,6 @@ Part of a larger sentence to describe how many profiles a user is following.</no <note>Amount of sats. (Key in .stringsdict)</note> </trans-unit> - <trans-unit id="u{00A0}" xml:space="preserve"> - <source>u{00A0}</source> - <target>u{00A0}</target> - - <note>Non-breaking space character to fill in blank space next to event action button icons.</note> - </trans-unit> <trans-unit id="wss://some.relay.com" xml:space="preserve"> <source>wss://some.relay.com</source> <target>wss://algun.rele.com</target> diff --git a/translations/fr_FR.xliff b/translations/fr_FR.xliff @@ -35,17 +35,6 @@ <tool tool-id="com.apple.dt.xcode" tool-name="Xcode" tool-version="14.2" build-num="14C18"/> </header> <body> - <trans-unit id=" " xml:space="preserve"> - <source> </source> - <target>61b6edf1108e6f396680a33b02486a70_tr</target> - <note>Blank space to separate profile picture from profile editor form.</note> - </trans-unit> - <trans-unit id="%@" xml:space="preserve"> - <source>%@</source> - <target>%@</target> - - <note>Abbreviated version of a nostr public key.</note> - </trans-unit> <trans-unit id="%@ %@" xml:space="preserve"> <source>%@ %@</source> <target>%@ %@</target> @@ -77,13 +66,6 @@ Sentence composed of 2 variables to describe how many relay servers a user is co <note>Explanation of what can be done by users to earn money. There is a heading that precedes this explanation which is a variable to this string.</note> </trans-unit> - <trans-unit id="%lld" xml:space="preserve"> - <source>%lld</source> - <target>%lld</target> - - <note>Number of reposts. -Number of relay servers a user is connected.</note> - </trans-unit> <trans-unit id="%lld/%lld" xml:space="preserve"> <source>%lld/%lld</source> <target>%lld/%lld</target> @@ -114,18 +96,6 @@ Number of relay servers a user is connected.</note> <note>Navigation bar title for view that shows who a user is following.</note> </trans-unit> - <trans-unit id="&lt; e &gt;" xml:space="preserve"> - <source>&lt; e &gt;</source> - <target>&lt; e &gt;</target> - - <note>Placeholder for event mention.</note> - </trans-unit> - <trans-unit id="@" xml:space="preserve"> - <source>@</source> - <target>@</target> - - <note>Prefix character to username.</note> - </trans-unit> <trans-unit id="API Key (optional)" xml:space="preserve"> <source>API Key (optional)</source> <target>Clé d'API (optionnelle)</target> @@ -467,6 +437,11 @@ Number of relay servers a user is connected.</note> <note>Button to pay a Lightning invoice with the user's default Lightning wallet.</note> </trans-unit> + <trans-unit id="Default Zap Amount in sats" xml:space="preserve"> + <source>Default Zap Amount in sats</source> + + <note>Section title for zap configuration</note> + </trans-unit> <trans-unit id="Delete" xml:space="preserve"> <source>Delete</source> <target>Effacer</target> @@ -554,12 +529,6 @@ Number of relay servers a user is connected.</note> <note>Error message indicating why saving keys failed.</note> </trans-unit> - <trans-unit id="EventDetailView" xml:space="preserve"> - <source>EventDetailView</source> - <target>EventDetailView</target> - - <note>No comment provided by engineer.</note> - </trans-unit> <trans-unit id="Filter" xml:space="preserve"> <source>Filter</source> <target>Filtre</target> @@ -1322,7 +1291,8 @@ Part of a larger sentence to describe how many profiles a user is following.</no <source>Version</source> <target>Version</target> - <note>Label to display relay software version.</note> + <note>Label to display relay software version. + Section title for displaying the version number of the Damus app.</note> </trans-unit> <trans-unit id="Wallet" xml:space="preserve"> <source>Wallet</source> @@ -1504,12 +1474,6 @@ Part of a larger sentence to describe how many profiles a user is following.</no <note>Amount of sats. (Key in .stringsdict)</note> </trans-unit> - <trans-unit id="u{00A0}" xml:space="preserve"> - <source>u{00A0}</source> - <target>u{00A0}</target> - - <note>Non-breaking space character to fill in blank space next to event action button icons.</note> - </trans-unit> <trans-unit id="wss://some.relay.com" xml:space="preserve"> <source>wss://some.relay.com</source> <target>wss://un.relais.com</target> diff --git a/translations/it_IT.xliff b/translations/it_IT.xliff @@ -18,6 +18,7 @@ </trans-unit> <trans-unit id="NSFaceIDUsageDescription" xml:space="preserve"> <source>Local authentication to access private key</source> + <target>Autenticazione locale necessaria per accedere alla chiave privata</target> <note>Privacy - Face ID Usage Description</note> </trans-unit> @@ -34,17 +35,6 @@ <tool tool-id="com.apple.dt.xcode" tool-name="Xcode" tool-version="14.2" build-num="14C18"/> </header> <body> - <trans-unit id=" " xml:space="preserve"> - <source> </source> - <target>61b6edf1108e6f396680a33b02486a70_tr</target> - <note>Blank space to separate profile picture from profile editor form.</note> - </trans-unit> - <trans-unit id="%@" xml:space="preserve"> - <source>%@</source> - <target>%@</target> - - <note>Abbreviated version of a nostr public key.</note> - </trans-unit> <trans-unit id="%@ %@" xml:space="preserve"> <source>%@ %@</source> <target>%@ %@</target> @@ -76,13 +66,6 @@ Sentence composed of 2 variables to describe how many relay servers a user is co <note>Explanation of what can be done by users to earn money. There is a heading that precedes this explanation which is a variable to this string.</note> </trans-unit> - <trans-unit id="%lld" xml:space="preserve"> - <source>%lld</source> - <target>%lld</target> - - <note>Number of reposts. -Number of relay servers a user is connected.</note> - </trans-unit> <trans-unit id="%lld/%lld" xml:space="preserve"> <source>%lld/%lld</source> <target>%lld/%lld</target> @@ -113,18 +96,6 @@ Number of relay servers a user is connected.</note> <note>Navigation bar title for view that shows who a user is following.</note> </trans-unit> - <trans-unit id="&lt; e &gt;" xml:space="preserve"> - <source>&lt; e &gt;</source> - <target>&lt; e &gt;</target> - - <note>Placeholder for event mention.</note> - </trans-unit> - <trans-unit id="@" xml:space="preserve"> - <source>@</source> - <target>@</target> - - <note>Prefix character to username.</note> - </trans-unit> <trans-unit id="API Key (optional)" xml:space="preserve"> <source>API Key (optional)</source> <target>API Key (facoltativo)</target> @@ -133,6 +104,7 @@ Number of relay servers a user is connected.</note> </trans-unit> <trans-unit id="API Key (required)" xml:space="preserve"> <source>API Key (required)</source> + <target>Chiave API (richiesta)</target> <note>Prompt for required entry of API Key to use translation server.</note> </trans-unit> @@ -193,6 +165,7 @@ Number of relay servers a user is connected.</note> </trans-unit> <trans-unit id="Admin" xml:space="preserve"> <source>Admin</source> + <target>Amministratore</target> <note>Label to display relay contact user.</note> </trans-unit> @@ -278,6 +251,7 @@ Number of relay servers a user is connected.</note> </trans-unit> <trans-unit id="Boosts" xml:space="preserve"> <source>Boosts</source> + <target>Potenziamenti</target> <note>Accessibility label for boosts button</note> </trans-unit> @@ -325,6 +299,7 @@ Number of relay servers a user is connected.</note> </trans-unit> <trans-unit id="Contact" xml:space="preserve"> <source>Contact</source> + <target>Contatti</target> <note>Label to display relay contact information.</note> </trans-unit> @@ -452,6 +427,7 @@ Number of relay servers a user is connected.</note> </trans-unit> <trans-unit id="DeepL (Proprietary, Higher Accuracy)" xml:space="preserve"> <source>DeepL (Proprietary, Higher Accuracy)</source> + <target>DeepL (Proprietario, Accuratezza Elevata)</target> <note>Dropdown option for selecting DeepL as the translation service.</note> </trans-unit> @@ -461,6 +437,11 @@ Number of relay servers a user is connected.</note> <note>Button to pay a Lightning invoice with the user's default Lightning wallet.</note> </trans-unit> + <trans-unit id="Default Zap Amount in sats" xml:space="preserve"> + <source>Default Zap Amount in sats</source> + + <note>Section title for zap configuration</note> + </trans-unit> <trans-unit id="Delete" xml:space="preserve"> <source>Delete</source> <target>Elimina</target> @@ -472,16 +453,19 @@ Number of relay servers a user is connected.</note> </trans-unit> <trans-unit id="Delete Account" xml:space="preserve"> <source>Delete Account</source> + <target>Elimina Account</target> <note>Button to delete the user's account.</note> </trans-unit> <trans-unit id="Deleted Account" xml:space="preserve"> <source>Deleted Account</source> + <target>Account Eliminato</target> <note>Alert message to indicate this is a deleted account</note> </trans-unit> <trans-unit id="Description" xml:space="preserve"> <source>Description</source> + <target>Descrizione</target> <note>Label to display relay description.</note> </trans-unit> @@ -545,13 +529,9 @@ Number of relay servers a user is connected.</note> <note>Error message indicating why saving keys failed.</note> </trans-unit> - <trans-unit id="EventDetailView" xml:space="preserve"> - <source>EventDetailView</source> - - <note>No comment provided by engineer.</note> - </trans-unit> <trans-unit id="Filter" xml:space="preserve"> <source>Filter</source> + <target>Filtro</target> <note>No comment provided by engineer.</note> </trans-unit> @@ -563,11 +543,13 @@ Number of relay servers a user is connected.</note> </trans-unit> <trans-unit id="Follow Back" xml:space="preserve"> <source>Follow Back</source> + <target>Segui anche tu</target> <note>Button to follow a user back.</note> </trans-unit> <trans-unit id="Follow me on nostr" xml:space="preserve"> <source>Follow me on nostr</source> + <target>Seguimi su nostr</target> <note>Text on QR code view to prompt viewer looking at screen to follow the user.</note> </trans-unit> @@ -598,16 +580,19 @@ Part of a larger sentence to describe how many profiles a user is following.</no </trans-unit> <trans-unit id="Follows you" xml:space="preserve"> <source>Follows you</source> + <target>Seguono te</target> <note>Text to indicate that a user is following your profile.</note> </trans-unit> <trans-unit id="Free" xml:space="preserve"> <source>Free</source> + <target>Gratis</target> <note>Dropdown option for selecting Free plan for DeepL translation service.</note> </trans-unit> <trans-unit id="Get API Key" xml:space="preserve"> <source>Get API Key</source> + <target>Ottieni chiave API</target> <note>Button to navigate to DeepL website to get a translation API key.</note> </trans-unit> @@ -686,6 +671,7 @@ Part of a larger sentence to describe how many profiles a user is following.</no </trans-unit> <trans-unit id="LibreTranslate (Open Source)" xml:space="preserve"> <source>LibreTranslate (Open Source)</source> + <target>LibreTranslate (Open Source)</target> <note>Dropdown option for selecting LibreTranslate as the translation service.</note> </trans-unit> @@ -703,11 +689,13 @@ Part of a larger sentence to describe how many profiles a user is following.</no </trans-unit> <trans-unit id="Like" xml:space="preserve"> <source>Like</source> + <target>Like</target> <note>Accessibility Label for Like button</note> </trans-unit> <trans-unit id="Local authentication to access private key" xml:space="preserve"> <source>Local authentication to access private key</source> + <target>Autenticazione locale necessaria per accedere alla chiave privata</target> <note>Face ID usage description shown when trying to access private key</note> </trans-unit> @@ -752,6 +740,7 @@ Part of a larger sentence to describe how many profiles a user is following.</no </trans-unit> <trans-unit id="No" xml:space="preserve"> <source>No</source> + <target>No</target> <note>Button to cancel out of posting a note after being alerted that it looks like they might be posting a private key.</note> </trans-unit> @@ -769,6 +758,7 @@ Part of a larger sentence to describe how many profiles a user is following.</no </trans-unit> <trans-unit id="Note contains &quot;nsec1&quot; private key. Are you sure?" xml:space="preserve"> <source>Note contains &quot;nsec1&quot; private key. Are you sure?</source> + <target>La nota contiene una chiave privata di tipo &quot;nsec1&quot;. Sei sicuro?</target> <note>Alert user that they might be attempting to paste a private key and ask them to confirm.</note> </trans-unit> @@ -792,6 +782,7 @@ Part of a larger sentence to describe how many profiles a user is following.</no </trans-unit> <trans-unit id="Paid Relay" xml:space="preserve"> <source>Paid Relay</source> + <target>Paga il Relè</target> <note>No comment provided by engineer.</note> </trans-unit> @@ -809,6 +800,7 @@ Part of a larger sentence to describe how many profiles a user is following.</no </trans-unit> <trans-unit id="Permanently Delete Account" xml:space="preserve"> <source>Permanently Delete Account</source> + <target>Elimina l'account in modo permanente</target> <note>Alert for deleting the users account.</note> </trans-unit> @@ -820,6 +812,7 @@ Part of a larger sentence to describe how many profiles a user is following.</no </trans-unit> <trans-unit id="Plan" xml:space="preserve"> <source>Plan</source> + <target>Piano</target> <note>Prompt selection of DeepL subscription plan to perform machine translations on notes</note> </trans-unit> @@ -861,6 +854,7 @@ Part of a larger sentence to describe how many profiles a user is following.</no </trans-unit> <trans-unit id="Pro" xml:space="preserve"> <source>Pro</source> + <target>Pro</target> <note>Dropdown option for selecting Pro plan for DeepL translation service.</note> </trans-unit> @@ -945,6 +939,7 @@ Part of a larger sentence to describe how many profiles a user is following.</no </trans-unit> <trans-unit id="Reply" xml:space="preserve"> <source>Reply</source> + <target>Risposta</target> <note>Accessibility label for reply button</note> </trans-unit> @@ -1042,6 +1037,7 @@ Part of a larger sentence to describe how many profiles a user is following.</no </trans-unit> <trans-unit id="Scan the code" xml:space="preserve"> <source>Scan the code</source> + <target>Scansiona il codice</target> <note>Text on QR code view to prompt viewer to scan the QR code on screen with their device camera.</note> </trans-unit> @@ -1089,6 +1085,7 @@ Part of a larger sentence to describe how many profiles a user is following.</no </trans-unit> <trans-unit id="Service" xml:space="preserve"> <source>Service</source> + <target>Servizio</target> <note>Prompt selection of translation service provider.</note> </trans-unit> @@ -1135,6 +1132,7 @@ Part of a larger sentence to describe how many profiles a user is following.</no </trans-unit> <trans-unit id="Software" xml:space="preserve"> <source>Software</source> + <target>Software</target> <note>Label to display relay software.</note> </trans-unit> @@ -1146,6 +1144,7 @@ Part of a larger sentence to describe how many profiles a user is following.</no </trans-unit> <trans-unit id="Supported NIPs" xml:space="preserve"> <source>Supported NIPs</source> + <target>NIP Supportati</target> <note>Label to display relay's supported NIPs.</note> </trans-unit> @@ -1163,6 +1162,7 @@ Part of a larger sentence to describe how many profiles a user is following.</no </trans-unit> <trans-unit id="This is a paid relay, you must pay for posts to be accepted." xml:space="preserve"> <source>This is a paid relay, you must pay for posts to be accepted.</source> + <target>Questo è un relè a pagamento, devi pagare per postare qui.</target> <note>No comment provided by engineer.</note> </trans-unit> @@ -1198,6 +1198,7 @@ Part of a larger sentence to describe how many profiles a user is following.</no </trans-unit> <trans-unit id="To filter your %@ feed, please choose applicable relays from the list below:" xml:space="preserve"> <source>To filter your %@ feed, please choose applicable relays from the list below:</source> + <target>Per filtrare il tuo %@ feed, scegli un relè disponibile dalla lista sottostante:</target> <note>No comment provided by engineer.</note> </trans-unit> @@ -1215,16 +1216,19 @@ Part of a larger sentence to describe how many profiles a user is following.</no </trans-unit> <trans-unit id="Translating from (lang)..." xml:space="preserve"> <source>Translating from (lang)...</source> + <target>Tradotto da (lang)...</target> <note>Button to indicate that the note is in the process of being translated from a different language.</note> </trans-unit> <trans-unit id="Translations" xml:space="preserve"> <source>Translations</source> + <target>Traduzioni</target> <note>Section title for selecting the translation service.</note> </trans-unit> <trans-unit id="Type DELETE to delete" xml:space="preserve"> <source>Type DELETE to delete</source> + <target>Inserisci CANCELLA per cancellare</target> <note>Text field prompt asking user to type the word DELETE to confirm that they want to proceed with deleting their account. The all caps lock DELETE word should not be translated. Everything else should.</note> </trans-unit> @@ -1285,8 +1289,10 @@ Part of a larger sentence to describe how many profiles a user is following.</no </trans-unit> <trans-unit id="Version" xml:space="preserve"> <source>Version</source> + <target>Versione</target> - <note>Label to display relay software version.</note> + <note>Label to display relay software version. + Section title for displaying the version number of the Damus app.</note> </trans-unit> <trans-unit id="Wallet" xml:space="preserve"> <source>Wallet</source> @@ -1338,6 +1344,7 @@ Part of a larger sentence to describe how many profiles a user is following.</no </trans-unit> <trans-unit id="Yes, Post with Private Key" xml:space="preserve"> <source>Yes, Post with Private Key</source> + <target>Si, posta con Chiave Privata</target> <note>Button to proceed with posting a note even though it looks like they might be posting a private key.</note> </trans-unit> @@ -1355,11 +1362,13 @@ Part of a larger sentence to describe how many profiles a user is following.</no </trans-unit> <trans-unit id="Zap" xml:space="preserve"> <source>Zap</source> + <target>Zap</target> <note>Accessibility label for zap button</note> </trans-unit> <trans-unit id="Zaps" xml:space="preserve"> <source>Zaps</source> + <target>Zaps</target> <note>Navigation bar title for the Zaps view.</note> </trans-unit> @@ -1465,12 +1474,6 @@ Part of a larger sentence to describe how many profiles a user is following.</no <note>Amount of sats. (Key in .stringsdict)</note> </trans-unit> - <trans-unit id="u{00A0}" xml:space="preserve"> - <source>u{00A0}</source> - <target>u{00A0}</target> - - <note>Non-breaking space character to fill in blank space next to event action button icons.</note> - </trans-unit> <trans-unit id="wss://some.relay.com" xml:space="preserve"> <source>wss://some.relay.com</source> <target>wss://qualche.relay.com</target> @@ -1662,11 +1665,13 @@ Part of a larger sentence to describe how many profiles a user is following.</no </trans-unit> <trans-unit id="/zaps_count:dict/ZAPS:dict/one:dict/:string" xml:space="preserve"> <source>Zap</source> + <target>Zap</target> <note>Part of a larger sentence to describe how many zap payments there are on a post.</note> </trans-unit> <trans-unit id="/zaps_count:dict/ZAPS:dict/other:dict/:string" xml:space="preserve"> <source>Zaps</source> + <target>Zaps</target> <note>Part of a larger sentence to describe how many zap payments there are on a post.</note> </trans-unit> diff --git a/translations/ja.xliff b/translations/ja.xliff @@ -35,17 +35,6 @@ <tool tool-id="com.apple.dt.xcode" tool-name="Xcode" tool-version="14.2" build-num="14C18"/> </header> <body> - <trans-unit id=" " xml:space="preserve"> - <source> </source> - <target>61b6edf1108e6f396680a33b02486a70_tr</target> - <note>Blank space to separate profile picture from profile editor form.</note> - </trans-unit> - <trans-unit id="%@" xml:space="preserve"> - <source>%@</source> - <target>%@</target> - - <note>Abbreviated version of a nostr public key.</note> - </trans-unit> <trans-unit id="%@ %@" xml:space="preserve"> <source>%@ %@</source> <target>%@ %@</target> @@ -77,13 +66,6 @@ Sentence composed of 2 variables to describe how many relay servers a user is co <note>Explanation of what can be done by users to earn money. There is a heading that precedes this explanation which is a variable to this string.</note> </trans-unit> - <trans-unit id="%lld" xml:space="preserve"> - <source>%lld</source> - <target>%lld</target> - - <note>Number of reposts. -Number of relay servers a user is connected.</note> - </trans-unit> <trans-unit id="%lld/%lld" xml:space="preserve"> <source>%lld/%lld</source> <target>%lld/%lld</target> @@ -114,18 +96,6 @@ Number of relay servers a user is connected.</note> <note>Navigation bar title for view that shows who a user is following.</note> </trans-unit> - <trans-unit id="&lt; e &gt;" xml:space="preserve"> - <source>&lt; e &gt;</source> - <target>&lt; e &gt;</target> - - <note>Placeholder for event mention.</note> - </trans-unit> - <trans-unit id="@" xml:space="preserve"> - <source>@</source> - <target>@</target> - - <note>Prefix character to username.</note> - </trans-unit> <trans-unit id="API Key (optional)" xml:space="preserve"> <source>API Key (optional)</source> <target>APIキー (任意)</target> @@ -183,7 +153,7 @@ Number of relay servers a user is connected.</note> </trans-unit> <trans-unit id="Add Relay" xml:space="preserve"> <source>Add Relay</source> - <target>Relayを追加</target> + <target>リレーを追加</target> <note>Label for section for adding a relay server.</note> </trans-unit> @@ -467,6 +437,11 @@ Number of relay servers a user is connected.</note> <note>Button to pay a Lightning invoice with the user's default Lightning wallet.</note> </trans-unit> + <trans-unit id="Default Zap Amount in sats" xml:space="preserve"> + <source>Default Zap Amount in sats</source> + + <note>Section title for zap configuration</note> + </trans-unit> <trans-unit id="Delete" xml:space="preserve"> <source>Delete</source> <target>削除</target> @@ -554,13 +529,9 @@ Number of relay servers a user is connected.</note> <note>Error message indicating why saving keys failed.</note> </trans-unit> - <trans-unit id="EventDetailView" xml:space="preserve"> - <source>EventDetailView</source> - - <note>No comment provided by engineer.</note> - </trans-unit> <trans-unit id="Filter" xml:space="preserve"> <source>Filter</source> + <target>フィルター</target> <note>No comment provided by engineer.</note> </trans-unit> @@ -811,6 +782,7 @@ Part of a larger sentence to describe how many profiles a user is following.</no </trans-unit> <trans-unit id="Paid Relay" xml:space="preserve"> <source>Paid Relay</source> + <target>有料リレー</target> <note>No comment provided by engineer.</note> </trans-unit> @@ -828,6 +800,7 @@ Part of a larger sentence to describe how many profiles a user is following.</no </trans-unit> <trans-unit id="Permanently Delete Account" xml:space="preserve"> <source>Permanently Delete Account</source> + <target>アカウントの永久的な削除</target> <note>Alert for deleting the users account.</note> </trans-unit> @@ -929,7 +902,7 @@ Part of a larger sentence to describe how many profiles a user is following.</no </trans-unit> <trans-unit id="Recommended Relays" xml:space="preserve"> <source>Recommended Relays</source> - <target>推奨のリレーサーバー</target> + <target>推奨のリレー</target> <note>Section title for recommend relay servers that could be added as part of configuration</note> </trans-unit> @@ -1189,6 +1162,7 @@ Part of a larger sentence to describe how many profiles a user is following.</no </trans-unit> <trans-unit id="This is a paid relay, you must pay for posts to be accepted." xml:space="preserve"> <source>This is a paid relay, you must pay for posts to be accepted.</source> + <target>このリレーは有料です。投稿するには利用料の支払いが必要です。</target> <note>No comment provided by engineer.</note> </trans-unit> @@ -1224,6 +1198,7 @@ Part of a larger sentence to describe how many profiles a user is following.</no </trans-unit> <trans-unit id="To filter your %@ feed, please choose applicable relays from the list below:" xml:space="preserve"> <source>To filter your %@ feed, please choose applicable relays from the list below:</source> + <target>%@ フィードをフィルタリングするには、以下のリストから該当するリレーを選択してください。</target> <note>No comment provided by engineer.</note> </trans-unit> @@ -1316,7 +1291,8 @@ Part of a larger sentence to describe how many profiles a user is following.</no <source>Version</source> <target>バージョン</target> - <note>Label to display relay software version.</note> + <note>Label to display relay software version. + Section title for displaying the version number of the Damus app.</note> </trans-unit> <trans-unit id="Wallet" xml:space="preserve"> <source>Wallet</source> @@ -1392,6 +1368,7 @@ Part of a larger sentence to describe how many profiles a user is following.</no </trans-unit> <trans-unit id="Zaps" xml:space="preserve"> <source>Zaps</source> + <target>Zaps</target> <note>Navigation bar title for the Zaps view.</note> </trans-unit> @@ -1497,12 +1474,6 @@ Part of a larger sentence to describe how many profiles a user is following.</no <note>Amount of sats. (Key in .stringsdict)</note> </trans-unit> - <trans-unit id="u{00A0}" xml:space="preserve"> - <source>u{00A0}</source> - <target>u{00A0}</target> - - <note>Non-breaking space character to fill in blank space next to event action button icons.</note> - </trans-unit> <trans-unit id="wss://some.relay.com" xml:space="preserve"> <source>wss://some.relay.com</source> <target>wss://some.relay.com</target> diff --git a/translations/lv_LV.xliff b/translations/lv_LV.xliff @@ -34,17 +34,6 @@ <tool tool-id="com.apple.dt.xcode" tool-name="Xcode" tool-version="14.2" build-num="14C18"/> </header> <body> - <trans-unit id=" " xml:space="preserve"> - <source> </source> - <target>61b6edf1108e6f396680a33b02486a70_tr</target> - <note>Blank space to separate profile picture from profile editor form.</note> - </trans-unit> - <trans-unit id="%@" xml:space="preserve"> - <source>%@</source> - <target>%@</target> - - <note>Abbreviated version of a nostr public key.</note> - </trans-unit> <trans-unit id="%@ %@" xml:space="preserve"> <source>%@ %@</source> <target>%@ %@</target> @@ -76,13 +65,6 @@ Sentence composed of 2 variables to describe how many relay servers a user is co <note>Explanation of what can be done by users to earn money. There is a heading that precedes this explanation which is a variable to this string.</note> </trans-unit> - <trans-unit id="%lld" xml:space="preserve"> - <source>%lld</source> - <target>%lld</target> - - <note>Number of reposts. -Number of relay servers a user is connected.</note> - </trans-unit> <trans-unit id="%lld/%lld" xml:space="preserve"> <source>%lld/%lld</source> <target>%lld/%lld</target> @@ -113,18 +95,6 @@ Number of relay servers a user is connected.</note> <note>Navigation bar title for view that shows who a user is following.</note> </trans-unit> - <trans-unit id="&lt; e &gt;" xml:space="preserve"> - <source>&lt; e &gt;</source> - <target>&lt; e &gt;</target> - - <note>Placeholder for event mention.</note> - </trans-unit> - <trans-unit id="@" xml:space="preserve"> - <source>@</source> - <target>@</target> - - <note>Prefix character to username.</note> - </trans-unit> <trans-unit id="API Key (optional)" xml:space="preserve"> <source>API Key (optional)</source> <target>API Atslēga (pēc izvēles)</target> @@ -461,6 +431,11 @@ Number of relay servers a user is connected.</note> <note>Button to pay a Lightning invoice with the user's default Lightning wallet.</note> </trans-unit> + <trans-unit id="Default Zap Amount in sats" xml:space="preserve"> + <source>Default Zap Amount in sats</source> + + <note>Section title for zap configuration</note> + </trans-unit> <trans-unit id="Delete" xml:space="preserve"> <source>Delete</source> <target>Izdzēst</target> @@ -547,11 +522,6 @@ Number of relay servers a user is connected.</note> <note>Error message indicating why saving keys failed.</note> </trans-unit> - <trans-unit id="EventDetailView" xml:space="preserve"> - <source>EventDetailView</source> - - <note>No comment provided by engineer.</note> - </trans-unit> <trans-unit id="Filter" xml:space="preserve"> <source>Filter</source> @@ -1292,7 +1262,8 @@ Part of a larger sentence to describe how many profiles a user is following.</no <trans-unit id="Version" xml:space="preserve"> <source>Version</source> - <note>Label to display relay software version.</note> + <note>Label to display relay software version. + Section title for displaying the version number of the Damus app.</note> </trans-unit> <trans-unit id="Wallet" xml:space="preserve"> <source>Wallet</source> @@ -1472,12 +1443,6 @@ Part of a larger sentence to describe how many profiles a user is following.</no <note>Amount of sats. (Key in .stringsdict)</note> </trans-unit> - <trans-unit id="u{00A0}" xml:space="preserve"> - <source>u{00A0}</source> - <target>u{00A0}</target> - - <note>Non-breaking space character to fill in blank space next to event action button icons.</note> - </trans-unit> <trans-unit id="wss://some.relay.com" xml:space="preserve"> <source>wss://some.relay.com</source> <target>wss://cits.relejs.com</target> diff --git a/translations/nl.xliff b/translations/nl.xliff @@ -35,17 +35,6 @@ <tool tool-id="com.apple.dt.xcode" tool-name="Xcode" tool-version="14.2" build-num="14C18"/> </header> <body> - <trans-unit id=" " xml:space="preserve"> - <source> </source> - <target>61b6edf1108e6f396680a33b02486a70_tr</target> - <note>Blank space to separate profile picture from profile editor form.</note> - </trans-unit> - <trans-unit id="%@" xml:space="preserve"> - <source>%@</source> - <target>%@</target> - - <note>Abbreviated version of a nostr public key.</note> - </trans-unit> <trans-unit id="%@ %@" xml:space="preserve"> <source>%@ %@</source> <target>%@ %@</target> @@ -77,13 +66,6 @@ Sentence composed of 2 variables to describe how many relay servers a user is co <note>Explanation of what can be done by users to earn money. There is a heading that precedes this explanation which is a variable to this string.</note> </trans-unit> - <trans-unit id="%lld" xml:space="preserve"> - <source>%lld</source> - <target>%lld</target> - - <note>Number of reposts. -Number of relay servers a user is connected.</note> - </trans-unit> <trans-unit id="%lld/%lld" xml:space="preserve"> <source>%lld/%lld</source> <target>%lld/%lld</target> @@ -114,18 +96,6 @@ Number of relay servers a user is connected.</note> <note>Navigation bar title for view that shows who a user is following.</note> </trans-unit> - <trans-unit id="&lt; e &gt;" xml:space="preserve"> - <source>&lt; e &gt;</source> - <target>&lt; e &gt;</target> - - <note>Placeholder for event mention.</note> - </trans-unit> - <trans-unit id="@" xml:space="preserve"> - <source>@</source> - <target>@</target> - - <note>Prefix character to username.</note> - </trans-unit> <trans-unit id="API Key (optional)" xml:space="preserve"> <source>API Key (optional)</source> <target>Api-sleutel (optioneel)</target> @@ -467,6 +437,11 @@ Number of relay servers a user is connected.</note> <note>Button to pay a Lightning invoice with the user's default Lightning wallet.</note> </trans-unit> + <trans-unit id="Default Zap Amount in sats" xml:space="preserve"> + <source>Default Zap Amount in sats</source> + + <note>Section title for zap configuration</note> + </trans-unit> <trans-unit id="Delete" xml:space="preserve"> <source>Delete</source> <target>Verwijder</target> @@ -554,12 +529,6 @@ Number of relay servers a user is connected.</note> <note>Error message indicating why saving keys failed.</note> </trans-unit> - <trans-unit id="EventDetailView" xml:space="preserve"> - <source>EventDetailView</source> - <target>EventDetailView</target> - - <note>No comment provided by engineer.</note> - </trans-unit> <trans-unit id="Filter" xml:space="preserve"> <source>Filter</source> <target>Filter</target> @@ -1322,7 +1291,8 @@ Part of a larger sentence to describe how many profiles a user is following.</no <source>Version</source> <target>Versie</target> - <note>Label to display relay software version.</note> + <note>Label to display relay software version. + Section title for displaying the version number of the Damus app.</note> </trans-unit> <trans-unit id="Wallet" xml:space="preserve"> <source>Wallet</source> @@ -1504,12 +1474,6 @@ Part of a larger sentence to describe how many profiles a user is following.</no <note>Amount of sats. (Key in .stringsdict)</note> </trans-unit> - <trans-unit id="u{00A0}" xml:space="preserve"> - <source>u{00A0}</source> - <target>u{00A0}</target> - - <note>Non-breaking space character to fill in blank space next to event action button icons.</note> - </trans-unit> <trans-unit id="wss://some.relay.com" xml:space="preserve"> <source>wss://some.relay.com</source> <target>wss://een.relay.nl</target> diff --git a/translations/pl_PL.xliff b/translations/pl_PL.xliff @@ -35,17 +35,6 @@ <tool tool-id="com.apple.dt.xcode" tool-name="Xcode" tool-version="14.2" build-num="14C18"/> </header> <body> - <trans-unit id=" " xml:space="preserve"> - <source> </source> - <target>61b6edf1108e6f396680a33b02486a70_tr</target> - <note>Blank space to separate profile picture from profile editor form.</note> - </trans-unit> - <trans-unit id="%@" xml:space="preserve"> - <source>%@</source> - <target>%@</target> - - <note>Abbreviated version of a nostr public key.</note> - </trans-unit> <trans-unit id="%@ %@" xml:space="preserve"> <source>%@ %@</source> <target>%@ %@</target> @@ -77,13 +66,6 @@ Sentence composed of 2 variables to describe how many relay servers a user is co <note>Explanation of what can be done by users to earn money. There is a heading that precedes this explanation which is a variable to this string.</note> </trans-unit> - <trans-unit id="%lld" xml:space="preserve"> - <source>%lld</source> - <target>%lld</target> - - <note>Number of reposts. -Number of relay servers a user is connected.</note> - </trans-unit> <trans-unit id="%lld/%lld" xml:space="preserve"> <source>%lld/%lld</source> <target>%lld/%lld</target> @@ -114,18 +96,6 @@ Number of relay servers a user is connected.</note> <note>Navigation bar title for view that shows who a user is following.</note> </trans-unit> - <trans-unit id="&lt; e &gt;" xml:space="preserve"> - <source>&lt; e &gt;</source> - <target>&lt; e &gt;</target> - - <note>Placeholder for event mention.</note> - </trans-unit> - <trans-unit id="@" xml:space="preserve"> - <source>@</source> - <target>@</target> - - <note>Prefix character to username.</note> - </trans-unit> <trans-unit id="API Key (optional)" xml:space="preserve"> <source>API Key (optional)</source> <target>Klucz API (opcjonalny)</target> @@ -467,6 +437,11 @@ Number of relay servers a user is connected.</note> <note>Button to pay a Lightning invoice with the user's default Lightning wallet.</note> </trans-unit> + <trans-unit id="Default Zap Amount in sats" xml:space="preserve"> + <source>Default Zap Amount in sats</source> + + <note>Section title for zap configuration</note> + </trans-unit> <trans-unit id="Delete" xml:space="preserve"> <source>Delete</source> <target>Usuń</target> @@ -554,13 +529,9 @@ Number of relay servers a user is connected.</note> <note>Error message indicating why saving keys failed.</note> </trans-unit> - <trans-unit id="EventDetailView" xml:space="preserve"> - <source>EventDetailView</source> - - <note>No comment provided by engineer.</note> - </trans-unit> <trans-unit id="Filter" xml:space="preserve"> <source>Filter</source> + <target>Filtr</target> <note>No comment provided by engineer.</note> </trans-unit> @@ -811,6 +782,7 @@ Part of a larger sentence to describe how many profiles a user is following.</no </trans-unit> <trans-unit id="Paid Relay" xml:space="preserve"> <source>Paid Relay</source> + <target>Płatny przekaźnik</target> <note>No comment provided by engineer.</note> </trans-unit> @@ -828,6 +800,7 @@ Part of a larger sentence to describe how many profiles a user is following.</no </trans-unit> <trans-unit id="Permanently Delete Account" xml:space="preserve"> <source>Permanently Delete Account</source> + <target>Trwałe skasowanie konta</target> <note>Alert for deleting the users account.</note> </trans-unit> @@ -1189,6 +1162,7 @@ Part of a larger sentence to describe how many profiles a user is following.</no </trans-unit> <trans-unit id="This is a paid relay, you must pay for posts to be accepted." xml:space="preserve"> <source>This is a paid relay, you must pay for posts to be accepted.</source> + <target>To jest płatny przekaźnik - musisz zapłacić, aby wysyłać posty.</target> <note>No comment provided by engineer.</note> </trans-unit> @@ -1224,6 +1198,7 @@ Part of a larger sentence to describe how many profiles a user is following.</no </trans-unit> <trans-unit id="To filter your %@ feed, please choose applicable relays from the list below:" xml:space="preserve"> <source>To filter your %@ feed, please choose applicable relays from the list below:</source> + <target>Aby filtrować swój %@ kanał, wybierz stosowne przekaźniki z listy poniżej:</target> <note>No comment provided by engineer.</note> </trans-unit> @@ -1316,7 +1291,8 @@ Part of a larger sentence to describe how many profiles a user is following.</no <source>Version</source> <target>Wersja</target> - <note>Label to display relay software version.</note> + <note>Label to display relay software version. + Section title for displaying the version number of the Damus app.</note> </trans-unit> <trans-unit id="Wallet" xml:space="preserve"> <source>Wallet</source> @@ -1392,6 +1368,7 @@ Part of a larger sentence to describe how many profiles a user is following.</no </trans-unit> <trans-unit id="Zaps" xml:space="preserve"> <source>Zaps</source> + <target>Zapy</target> <note>Navigation bar title for the Zaps view.</note> </trans-unit> @@ -1497,12 +1474,6 @@ Part of a larger sentence to describe how many profiles a user is following.</no <note>Amount of sats. (Key in .stringsdict)</note> </trans-unit> - <trans-unit id="u{00A0}" xml:space="preserve"> - <source>u{00A0}</source> - <target>u{00A0}</target> - - <note>Non-breaking space character to fill in blank space next to event action button icons.</note> - </trans-unit> <trans-unit id="wss://some.relay.com" xml:space="preserve"> <source>wss://some.relay.com</source> <target>wss://jakis.przekaznik.com</target> diff --git a/translations/pt_PT.xliff b/translations/pt_PT.xliff @@ -34,17 +34,6 @@ <tool tool-id="com.apple.dt.xcode" tool-name="Xcode" tool-version="14.2" build-num="14C18"/> </header> <body> - <trans-unit id=" " xml:space="preserve"> - <source> </source> - <target>61b6edf1108e6f396680a33b02486a70_tr</target> - <note>Blank space to separate profile picture from profile editor form.</note> - </trans-unit> - <trans-unit id="%@" xml:space="preserve"> - <source>%@</source> - <target>%@</target> - - <note>Abbreviated version of a nostr public key.</note> - </trans-unit> <trans-unit id="%@ %@" xml:space="preserve"> <source>%@ %@</source> <target>%@ %@</target> @@ -76,13 +65,6 @@ Sentence composed of 2 variables to describe how many relay servers a user is co <note>Explanation of what can be done by users to earn money. There is a heading that precedes this explanation which is a variable to this string.</note> </trans-unit> - <trans-unit id="%lld" xml:space="preserve"> - <source>%lld</source> - <target>%lld</target> - - <note>Number of reposts. -Number of relay servers a user is connected.</note> - </trans-unit> <trans-unit id="%lld/%lld" xml:space="preserve"> <source>%lld/%lld</source> <target>%lld/%lld</target> @@ -113,18 +95,6 @@ Number of relay servers a user is connected.</note> <note>Navigation bar title for view that shows who a user is following.</note> </trans-unit> - <trans-unit id="&lt; e &gt;" xml:space="preserve"> - <source>&lt; e &gt;</source> - <target>&lt; e &gt;</target> - - <note>Placeholder for event mention.</note> - </trans-unit> - <trans-unit id="@" xml:space="preserve"> - <source>@</source> - <target>@</target> - - <note>Prefix character to username.</note> - </trans-unit> <trans-unit id="API Key (optional)" xml:space="preserve"> <source>API Key (optional)</source> <target>Chave API (opcional)</target> @@ -461,6 +431,11 @@ Number of relay servers a user is connected.</note> <note>Button to pay a Lightning invoice with the user's default Lightning wallet.</note> </trans-unit> + <trans-unit id="Default Zap Amount in sats" xml:space="preserve"> + <source>Default Zap Amount in sats</source> + + <note>Section title for zap configuration</note> + </trans-unit> <trans-unit id="Delete" xml:space="preserve"> <source>Delete</source> <target>Apagar</target> @@ -545,11 +520,6 @@ Number of relay servers a user is connected.</note> <note>Error message indicating why saving keys failed.</note> </trans-unit> - <trans-unit id="EventDetailView" xml:space="preserve"> - <source>EventDetailView</source> - - <note>No comment provided by engineer.</note> - </trans-unit> <trans-unit id="Filter" xml:space="preserve"> <source>Filter</source> @@ -1286,7 +1256,8 @@ Part of a larger sentence to describe how many profiles a user is following.</no <trans-unit id="Version" xml:space="preserve"> <source>Version</source> - <note>Label to display relay software version.</note> + <note>Label to display relay software version. + Section title for displaying the version number of the Damus app.</note> </trans-unit> <trans-unit id="Wallet" xml:space="preserve"> <source>Wallet</source> @@ -1465,12 +1436,6 @@ Part of a larger sentence to describe how many profiles a user is following.</no <note>Amount of sats. (Key in .stringsdict)</note> </trans-unit> - <trans-unit id="u{00A0}" xml:space="preserve"> - <source>u{00A0}</source> - <target>u{00A0}</target> - - <note>Non-breaking space character to fill in blank space next to event action button icons.</note> - </trans-unit> <trans-unit id="wss://some.relay.com" xml:space="preserve"> <source>wss://some.relay.com</source> <target>wss://some.relay.com</target> diff --git a/translations/tr_TR.xliff b/translations/tr_TR.xliff @@ -33,17 +33,6 @@ <tool tool-id="com.apple.dt.xcode" tool-name="Xcode" tool-version="14.2" build-num="14C18"/> </header> <body> - <trans-unit id=" " xml:space="preserve"> - <source> </source> - <target>61b6edf1108e6f396680a33b02486a70_tr</target> - <note>Blank space to separate profile picture from profile editor form.</note> - </trans-unit> - <trans-unit id="%@" xml:space="preserve"> - <source>%@</source> - <target>%@</target> - - <note>Abbreviated version of a nostr public key.</note> - </trans-unit> <trans-unit id="%@ %@" xml:space="preserve"> <source>%@ %@</source> <target>%@ %@</target> @@ -74,13 +63,6 @@ Sentence composed of 2 variables to describe how many relay servers a user is co <note>Explanation of what can be done by users to earn money. There is a heading that precedes this explanation which is a variable to this string.</note> </trans-unit> - <trans-unit id="%lld" xml:space="preserve"> - <source>%lld</source> - <target>%lld</target> - - <note>Number of reposts. -Number of relay servers a user is connected.</note> - </trans-unit> <trans-unit id="%lld/%lld" xml:space="preserve"> <source>%lld/%lld</source> <target>%lld/%lld</target> @@ -110,18 +92,6 @@ Number of relay servers a user is connected.</note> <note>Navigation bar title for view that shows who a user is following.</note> </trans-unit> - <trans-unit id="&lt; e &gt;" xml:space="preserve"> - <source>&lt; e &gt;</source> - <target>&lt; e &gt;</target> - - <note>Placeholder for event mention.</note> - </trans-unit> - <trans-unit id="@" xml:space="preserve"> - <source>@</source> - <target>@</target> - - <note>Prefix character to username.</note> - </trans-unit> <trans-unit id="API Key (optional)" xml:space="preserve"> <source>API Key (optional)</source> @@ -443,6 +413,11 @@ Number of relay servers a user is connected.</note> <note>Button to pay a Lightning invoice with the user's default Lightning wallet.</note> </trans-unit> + <trans-unit id="Default Zap Amount in sats" xml:space="preserve"> + <source>Default Zap Amount in sats</source> + + <note>Section title for zap configuration</note> + </trans-unit> <trans-unit id="Delete" xml:space="preserve"> <source>Delete</source> <target>Sil</target> @@ -525,11 +500,6 @@ Number of relay servers a user is connected.</note> <note>Error message indicating why saving keys failed.</note> </trans-unit> - <trans-unit id="EventDetailView" xml:space="preserve"> - <source>EventDetailView</source> - - <note>No comment provided by engineer.</note> - </trans-unit> <trans-unit id="Filter" xml:space="preserve"> <source>Filter</source> @@ -1241,7 +1211,8 @@ Part of a larger sentence to describe how many profiles a user is following.</no <trans-unit id="Version" xml:space="preserve"> <source>Version</source> - <note>Label to display relay software version.</note> + <note>Label to display relay software version. + Section title for displaying the version number of the Damus app.</note> </trans-unit> <trans-unit id="Wallet" xml:space="preserve"> <source>Wallet</source> @@ -1417,12 +1388,6 @@ Part of a larger sentence to describe how many profiles a user is following.</no <note>Amount of sats. (Key in .stringsdict)</note> </trans-unit> - <trans-unit id="u{00A0}" xml:space="preserve"> - <source>u{00A0}</source> - <target>u{00A0}</target> - - <note>Non-breaking space character to fill in blank space next to event action button icons.</note> - </trans-unit> <trans-unit id="wss://some.relay.com" xml:space="preserve"> <source>wss://some.relay.com</source> <target>wss://örnek.role.com</target> diff --git a/translations/zh_CN.xliff b/translations/zh_CN.xliff @@ -35,17 +35,6 @@ <tool tool-id="com.apple.dt.xcode" tool-name="Xcode" tool-version="14.2" build-num="14C18"/> </header> <body> - <trans-unit id=" " xml:space="preserve"> - <source> </source> - <target>61b6edf1108e6f396680a33b02486a70_tr</target> - <note>Blank space to separate profile picture from profile editor form.</note> - </trans-unit> - <trans-unit id="%@" xml:space="preserve"> - <source>%@</source> - <target>%@</target> - - <note>Abbreviated version of a nostr public key.</note> - </trans-unit> <trans-unit id="%@ %@" xml:space="preserve"> <source>%@ %@</source> <target>%@ %@</target> @@ -77,13 +66,6 @@ Sentence composed of 2 variables to describe how many relay servers a user is co <note>Explanation of what can be done by users to earn money. There is a heading that precedes this explanation which is a variable to this string.</note> </trans-unit> - <trans-unit id="%lld" xml:space="preserve"> - <source>%lld</source> - <target>%lld</target> - - <note>Number of reposts. -Number of relay servers a user is connected.</note> - </trans-unit> <trans-unit id="%lld/%lld" xml:space="preserve"> <source>%lld/%lld</source> <target>%lld/%lld</target> @@ -114,18 +96,6 @@ Number of relay servers a user is connected.</note> <note>Navigation bar title for view that shows who a user is following.</note> </trans-unit> - <trans-unit id="&lt; e &gt;" xml:space="preserve"> - <source>&lt; e &gt;</source> - <target>&lt; e &gt;</target> - - <note>Placeholder for event mention.</note> - </trans-unit> - <trans-unit id="@" xml:space="preserve"> - <source>@</source> - <target>@</target> - - <note>Prefix character to username.</note> - </trans-unit> <trans-unit id="API Key (optional)" xml:space="preserve"> <source>API Key (optional)</source> <target>API Key (可选)</target> @@ -457,6 +427,7 @@ Number of relay servers a user is connected.</note> </trans-unit> <trans-unit id="DeepL (Proprietary, Higher Accuracy)" xml:space="preserve"> <source>DeepL (Proprietary, Higher Accuracy)</source> + <target>DeepL(专有软件,准确性更高)</target> <note>Dropdown option for selecting DeepL as the translation service.</note> </trans-unit> @@ -466,6 +437,11 @@ Number of relay servers a user is connected.</note> <note>Button to pay a Lightning invoice with the user's default Lightning wallet.</note> </trans-unit> + <trans-unit id="Default Zap Amount in sats" xml:space="preserve"> + <source>Default Zap Amount in sats</source> + + <note>Section title for zap configuration</note> + </trans-unit> <trans-unit id="Delete" xml:space="preserve"> <source>Delete</source> <target>删除</target> @@ -553,11 +529,6 @@ Number of relay servers a user is connected.</note> <note>Error message indicating why saving keys failed.</note> </trans-unit> - <trans-unit id="EventDetailView" xml:space="preserve"> - <source>EventDetailView</source> - - <note>No comment provided by engineer.</note> - </trans-unit> <trans-unit id="Filter" xml:space="preserve"> <source>Filter</source> <target>筛选</target> @@ -1320,7 +1291,8 @@ Part of a larger sentence to describe how many profiles a user is following.</no <source>Version</source> <target>版本</target> - <note>Label to display relay software version.</note> + <note>Label to display relay software version. + Section title for displaying the version number of the Damus app.</note> </trans-unit> <trans-unit id="Wallet" xml:space="preserve"> <source>Wallet</source> @@ -1390,11 +1362,13 @@ Part of a larger sentence to describe how many profiles a user is following.</no </trans-unit> <trans-unit id="Zap" xml:space="preserve"> <source>Zap</source> + <target>电击</target> <note>Accessibility label for zap button</note> </trans-unit> <trans-unit id="Zaps" xml:space="preserve"> <source>Zaps</source> + <target>电击</target> <note>Navigation bar title for the Zaps view.</note> </trans-unit> @@ -1500,12 +1474,6 @@ Part of a larger sentence to describe how many profiles a user is following.</no <note>Amount of sats. (Key in .stringsdict)</note> </trans-unit> - <trans-unit id="u{00A0}" xml:space="preserve"> - <source>u{00A0}</source> - <target>u{00A0}</target> - - <note>Non-breaking space character to fill in blank space next to event action button icons.</note> - </trans-unit> <trans-unit id="wss://some.relay.com" xml:space="preserve"> <source>wss://some.relay.com</source> <target>wss://some.relay.com</target>