diff --git a/damus/Components/ZapButton.swift b/damus/Components/ZapButton.swift index 7d5363b1..4b45efea 100644 --- 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 index 1852b918..96700ad5 100644 --- 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 index be9227e6..820c9819 100644 --- 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 index 1dc85cb7..8b519984 100644 --- 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 index 0c849c04..497137b9 100644 --- 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 index dd14533d..3505ad8c 100644 --- 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 index 46a2a09a..9960e487 100644 --- 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 index 873bce7e..70d8b3ba 100644 --- 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 index a4cf4648..242a63d8 100644 --- 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 index 3b281c06..14046097 100644 --- 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 index baedd474..e8e8fc50 100644 --- 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 index 5f445f62..2f56c7b9 100644 --- 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 index b68baedf..ea56174f 100644 --- 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 index 47fcb955..beb835db 100644 --- 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 index 4d83d161..53f57517 100644 --- 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 index 4b226394..80769460 100644 --- 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 */ "⚡️ %@" = "⚡️ %@"; @@ -269,9 +253,6 @@ 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" = "اتفاقية الاستخدام"; -/* No comment provided by engineer. */ -"EventDetailView" = "EventDetailView"; - /* No comment provided by engineer. */ "Filter" = "تصفية"; @@ -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 index 9f28f8c8..1e5178c2 100644 --- 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 index 9657d8b7..b52c73c4 100644 --- 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 index 1948dcb6..a0305a31 100644 --- 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 index 34e7f758..4d4962d5 100644 --- 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 */ "⚡️ %@" = "⚡️ %@"; @@ -269,9 +253,6 @@ 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. */ -"EventDetailView" = "EventDetailView"; - /* No comment provided by engineer. */ "Filter" = "Filtre"; @@ -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 index f4c20760..a1b52641 100644 --- 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 index 1d34abe5..97fc6512 100644 --- 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 index 57c9780a..0f055a7c 100644 --- 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 index 02449007..0d5a4ea2 100644 --- 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 index 05bf3c23..e0097a6d 100644 --- 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 */ "⚡️ %@" = "⚡️ %@"; @@ -269,9 +253,6 @@ 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. */ -"EventDetailView" = "EventDetailView"; - /* No comment provided by engineer. */ "Filter" = "Filter"; @@ -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 index 3467afc5..4a19c1f1 100644 --- 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 index 74b3b86b..aabd2a1b 100644 --- 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 index a6c8b482..efe3f4b1 100644 --- 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 index 16212422..5a981c2b 100644 --- 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 index beded790..0f769ac8 100644 --- a/translations/ar.xliff +++ b/translations/ar.xliff @@ -35,17 +35,6 @@ - - - 61b6edf1108e6f396680a33b02486a70_tr - Blank space to separate profile picture from profile editor form. - - - %@ - %@ - - Abbreviated version of a nostr public key. - %@ %@ %@ %@ @@ -77,13 +66,6 @@ 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. - - %lld - %lld - - Number of reposts. -Number of relay servers a user is connected. - %lld/%lld %lld/%lld @@ -114,18 +96,6 @@ Number of relay servers a user is connected. Navigation bar title for view that shows who a user is following. - - < e > - < e > - - Placeholder for event mention. - - - @ - @ - - Prefix character to username. - API Key (optional) مفتاح API (اختياري) @@ -467,6 +437,11 @@ Number of relay servers a user is connected. Button to pay a Lightning invoice with the user's default Lightning wallet. + + Default Zap Amount in sats + + Section title for zap configuration + Delete حذف @@ -554,12 +529,6 @@ Number of relay servers a user is connected. Error message indicating why saving keys failed. - - EventDetailView - EventDetailView - - No comment provided by engineer. - Filter تصفية @@ -586,13 +555,13 @@ Number of relay servers a user is connected. Followers - المتابعون + المتابِعون Label describing followers of a user. Following - المتابَعين + المتابَعون 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. @@ -1322,7 +1291,8 @@ Part of a larger sentence to describe how many profiles a user is following.Version الاصدار - Label to display relay software version. + Label to display relay software version. + Section title for displaying the version number of the Damus app. Wallet @@ -1504,12 +1474,6 @@ Part of a larger sentence to describe how many profiles a user is following.Amount of sats. (Key in .stringsdict) - - u{00A0} - u{00A0} - - Non-breaking space character to fill in blank space next to event action button icons. - wss://some.relay.com wss://some.relay.com @@ -1567,7 +1531,7 @@ Part of a larger sentence to describe how many profiles a user is following. Followers - المتابعون + المتابِعون Part of a larger sentence to describe how many people are following a user. diff --git a/translations/de.xliff b/translations/de.xliff index 31667ac5..52d4dfc4 100644 --- a/translations/de.xliff +++ b/translations/de.xliff @@ -35,17 +35,6 @@ - - - 61b6edf1108e6f396680a33b02486a70_tr - Blank space to separate profile picture from profile editor form. - - - %@ - %@ - - Abbreviated version of a nostr public key. - %@ %@ %@ %@ @@ -77,13 +66,6 @@ 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. - - %lld - %lld - - Number of reposts. -Number of relay servers a user is connected. - %lld/%lld %lld/%lld @@ -114,18 +96,6 @@ Number of relay servers a user is connected. Navigation bar title for view that shows who a user is following. - - < e > - < e > - - Placeholder for event mention. - - - @ - @ - - Prefix character to username. - API Key (optional) API Schlüssel (optional) @@ -467,6 +437,11 @@ Number of relay servers a user is connected. Button to pay a Lightning invoice with the user's default Lightning wallet. + + Default Zap Amount in sats + + Section title for zap configuration + Delete Löschen @@ -554,13 +529,9 @@ Number of relay servers a user is connected. Error message indicating why saving keys failed. - - EventDetailView - - No comment provided by engineer. - Filter + Filter No comment provided by engineer. @@ -811,6 +782,7 @@ Part of a larger sentence to describe how many profiles a user is following. @@ -828,6 +800,7 @@ Part of a larger sentence to describe how many profiles a user is following. Permanently Delete Account + Konto dauerhaft löschen Alert for deleting the users account. @@ -1189,6 +1162,7 @@ Part of a larger sentence to describe how many profiles a user is following. @@ -1224,6 +1198,7 @@ Part of a larger sentence to describe how many profiles a user is following. 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: No comment provided by engineer. @@ -1316,7 +1291,8 @@ Part of a larger sentence to describe how many profiles a user is following.Version Version - Label to display relay software version. + Label to display relay software version. + Section title for displaying the version number of the Damus app. Wallet @@ -1392,6 +1368,7 @@ Part of a larger sentence to describe how many profiles a user is following. Zaps + Zaps Navigation bar title for the Zaps view. @@ -1497,12 +1474,6 @@ Part of a larger sentence to describe how many profiles a user is following.Amount of sats. (Key in .stringsdict) - - u{00A0} - u{00A0} - - Non-breaking space character to fill in blank space next to event action button icons. - wss://some.relay.com wss://some.relay.com diff --git a/translations/el_GR.xliff b/translations/el_GR.xliff index adbe785d..1a41a7a4 100644 --- a/translations/el_GR.xliff +++ b/translations/el_GR.xliff @@ -35,17 +35,6 @@ - - - 61b6edf1108e6f396680a33b02486a70_tr - Blank space to separate profile picture from profile editor form. - - - %@ - %@ - - Abbreviated version of a nostr public key. - %@ %@ %@ %@ @@ -77,13 +66,6 @@ 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. - - %lld - %lld - - Number of reposts. -Number of relay servers a user is connected. - %lld/%lld %lld/%lld @@ -104,7 +86,7 @@ Number of relay servers a user is connected. (Profile.displayName(profile: profile, pubkey: whos))'s Followers - (Profile.displayName(profile: profile, pubkey: whos))'s Ακόλουθοι + (Profile.displayName(profile: profile, pubkey: whos)) Ακόλουθοι Navigation bar title for view that shows who is following a user. @@ -114,18 +96,6 @@ Number of relay servers a user is connected. Navigation bar title for view that shows who a user is following. - - < e > - < e > - - Placeholder for event mention. - - - @ - @ - - Prefix character to username. - API Key (optional) Κλειδί API (προαιρετικό) @@ -467,6 +437,11 @@ Number of relay servers a user is connected. Button to pay a Lightning invoice with the user's default Lightning wallet. + + Default Zap Amount in sats + + Section title for zap configuration + Delete Διαγραφή @@ -554,13 +529,9 @@ Number of relay servers a user is connected. Error message indicating why saving keys failed. - - EventDetailView - - No comment provided by engineer. - Filter + Φίλτρο No comment provided by engineer. @@ -811,6 +782,7 @@ Part of a larger sentence to describe how many profiles a user is following. @@ -828,6 +800,7 @@ Part of a larger sentence to describe how many profiles a user is following. Permanently Delete Account + Οριστική διαγραφή λογαριασμού Alert for deleting the users account. @@ -1189,6 +1162,7 @@ Part of a larger sentence to describe how many profiles a user is following. @@ -1224,6 +1198,7 @@ Part of a larger sentence to describe how many profiles a user is following. To filter your %@ feed, please choose applicable relays from the list below: + Για να φιλτράρετε την ροή μηνυμάτων από ανεπιθύμητα στην κεντρική τροφοδοσία του %@, παρακαλώ επιλέξτε σχετικούς διακομιστές relays απο την παρακάτω λίστα: No comment provided by engineer. @@ -1316,7 +1291,8 @@ Part of a larger sentence to describe how many profiles a user is following.Version Έκδοση - Label to display relay software version. + Label to display relay software version. + Section title for displaying the version number of the Damus app. Wallet @@ -1392,6 +1368,7 @@ Part of a larger sentence to describe how many profiles a user is following. Zaps + Zaps Navigation bar title for the Zaps view. @@ -1497,12 +1474,6 @@ Part of a larger sentence to describe how many profiles a user is following.Amount of sats. (Key in .stringsdict) - - u{00A0} - u{00A0} - - Non-breaking space character to fill in blank space next to event action button icons. - wss://some.relay.com wss://some.relay.com diff --git a/translations/en-US.xcloc/Localized Contents/en-US.xliff b/translations/en-US.xcloc/Localized Contents/en-US.xliff index a537b7fc..053fff85 100644 --- a/translations/en-US.xcloc/Localized Contents/en-US.xliff +++ b/translations/en-US.xcloc/Localized Contents/en-US.xliff @@ -32,16 +32,6 @@ - - - - Blank space to separate profile picture from profile editor form. - - - %@ - %@ - Abbreviated version of a nostr public key. - %@ %@ %@ %@ @@ -68,12 +58,6 @@ Sentence composed of 2 variables to describe how many relay servers a user is co %@. Tip your friend's posts and stack sats with Bitcoin⚡️, the native currency of the internet. 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. - - %lld - %lld - Number of reposts. -Number of relay servers a user is connected. - %lld/%lld %lld/%lld @@ -99,16 +83,6 @@ Number of relay servers a user is connected. (who) following Navigation bar title for view that shows who a user is following. - - < e > - < e > - Placeholder for event mention. - - - @ - @ - Prefix character to username. - API Key (optional) API Key (optional) @@ -395,6 +369,11 @@ Number of relay servers a user is connected. Default Wallet Button to pay a Lightning invoice with the user's default Lightning wallet. + + Default Zap Amount in sats + Default Zap Amount in sats + Section title for zap configuration + Delete Delete @@ -468,11 +447,6 @@ Number of relay servers a user is connected. Error: %@ Error message indicating why saving keys failed. - - EventDetailView - EventDetailView - No comment provided by engineer. - Filter Filter @@ -1110,7 +1084,8 @@ Part of a larger sentence to describe how many profiles a user is following. Version Version - Label to display relay software version. + Label to display relay software version. + Section title for displaying the version number of the Damus app. Wallet @@ -1262,11 +1237,6 @@ Part of a larger sentence to describe how many profiles a user is following.sats_count Amount of sats. (Key in .stringsdict) - - u{00A0} - u{00A0} - Non-breaking space character to fill in blank space next to event action button icons. - wss://some.relay.com wss://some.relay.com 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 index a6c93803..5f196723 100644 Binary files a/translations/en-US.xcloc/Source Contents/damus/en-US.lproj/Localizable.strings and b/translations/en-US.xcloc/Source Contents/damus/en-US.lproj/Localizable.strings differ diff --git a/translations/es_419.xliff b/translations/es_419.xliff index d21e04b7..c499bdd9 100644 --- a/translations/es_419.xliff +++ b/translations/es_419.xliff @@ -35,17 +35,6 @@ - - - 61b6edf1108e6f396680a33b02486a70_tr - Blank space to separate profile picture from profile editor form. - - - %@ - %@ - - Abbreviated version of a nostr public key. - %@ %@ %@ %@ @@ -77,13 +66,6 @@ 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. - - %lld - %lld - - Number of reposts. -Number of relay servers a user is connected. - %lld/%lld %lld/%lld @@ -114,18 +96,6 @@ Number of relay servers a user is connected. Navigation bar title for view that shows who a user is following. - - < e > - < e > - - Placeholder for event mention. - - - @ - @ - - Prefix character to username. - API Key (optional) Clave de API (opcional) @@ -467,6 +437,11 @@ Number of relay servers a user is connected. Button to pay a Lightning invoice with the user's default Lightning wallet. + + Default Zap Amount in sats + + Section title for zap configuration + Delete Borrar @@ -554,13 +529,9 @@ Number of relay servers a user is connected. Error message indicating why saving keys failed. - - EventDetailView - - No comment provided by engineer. - Filter + Filtro No comment provided by engineer. @@ -811,6 +782,7 @@ Part of a larger sentence to describe how many profiles a user is following. @@ -828,6 +800,7 @@ Part of a larger sentence to describe how many profiles a user is following. Permanently Delete Account + Cuenta eliminada permanentemente Alert for deleting the users account. @@ -1189,6 +1162,7 @@ Part of a larger sentence to describe how many profiles a user is following. @@ -1224,6 +1198,7 @@ Part of a larger sentence to describe how many profiles a user is following. 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: No comment provided by engineer. @@ -1316,7 +1291,8 @@ Part of a larger sentence to describe how many profiles a user is following.Version Versión - Label to display relay software version. + Label to display relay software version. + Section title for displaying the version number of the Damus app. Wallet @@ -1392,6 +1368,7 @@ Part of a larger sentence to describe how many profiles a user is following. Zaps + Zaps Navigation bar title for the Zaps view. @@ -1497,12 +1474,6 @@ Part of a larger sentence to describe how many profiles a user is following.Amount of sats. (Key in .stringsdict) - - u{00A0} - u{00A0} - - Non-breaking space character to fill in blank space next to event action button icons. - wss://some.relay.com wss://algun.rele.com diff --git a/translations/fr_FR.xliff b/translations/fr_FR.xliff index 03359b6c..ffa5c999 100644 --- a/translations/fr_FR.xliff +++ b/translations/fr_FR.xliff @@ -35,17 +35,6 @@ - - - 61b6edf1108e6f396680a33b02486a70_tr - Blank space to separate profile picture from profile editor form. - - - %@ - %@ - - Abbreviated version of a nostr public key. - %@ %@ %@ %@ @@ -77,13 +66,6 @@ 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. - - %lld - %lld - - Number of reposts. -Number of relay servers a user is connected. - %lld/%lld %lld/%lld @@ -114,18 +96,6 @@ Number of relay servers a user is connected. Navigation bar title for view that shows who a user is following. - - < e > - < e > - - Placeholder for event mention. - - - @ - @ - - Prefix character to username. - API Key (optional) Clé d'API (optionnelle) @@ -467,6 +437,11 @@ Number of relay servers a user is connected. Button to pay a Lightning invoice with the user's default Lightning wallet. + + Default Zap Amount in sats + + Section title for zap configuration + Delete Effacer @@ -554,12 +529,6 @@ Number of relay servers a user is connected. Error message indicating why saving keys failed. - - EventDetailView - EventDetailView - - No comment provided by engineer. - Filter Filtre @@ -1322,7 +1291,8 @@ Part of a larger sentence to describe how many profiles a user is following.Version Version - Label to display relay software version. + Label to display relay software version. + Section title for displaying the version number of the Damus app. Wallet @@ -1504,12 +1474,6 @@ Part of a larger sentence to describe how many profiles a user is following.Amount of sats. (Key in .stringsdict) - - u{00A0} - u{00A0} - - Non-breaking space character to fill in blank space next to event action button icons. - wss://some.relay.com wss://un.relais.com diff --git a/translations/it_IT.xliff b/translations/it_IT.xliff index a0fc6cc8..19a694ed 100644 --- a/translations/it_IT.xliff +++ b/translations/it_IT.xliff @@ -18,6 +18,7 @@ Local authentication to access private key + Autenticazione locale necessaria per accedere alla chiave privata Privacy - Face ID Usage Description @@ -34,17 +35,6 @@ - - - 61b6edf1108e6f396680a33b02486a70_tr - Blank space to separate profile picture from profile editor form. - - - %@ - %@ - - Abbreviated version of a nostr public key. - %@ %@ %@ %@ @@ -76,13 +66,6 @@ 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. - - %lld - %lld - - Number of reposts. -Number of relay servers a user is connected. - %lld/%lld %lld/%lld @@ -113,18 +96,6 @@ Number of relay servers a user is connected. Navigation bar title for view that shows who a user is following. - - < e > - < e > - - Placeholder for event mention. - - - @ - @ - - Prefix character to username. - API Key (optional) API Key (facoltativo) @@ -133,6 +104,7 @@ Number of relay servers a user is connected. API Key (required) + Chiave API (richiesta) Prompt for required entry of API Key to use translation server. @@ -193,6 +165,7 @@ Number of relay servers a user is connected. Admin + Amministratore Label to display relay contact user. @@ -278,6 +251,7 @@ Number of relay servers a user is connected. Boosts + Potenziamenti Accessibility label for boosts button @@ -325,6 +299,7 @@ Number of relay servers a user is connected. Contact + Contatti Label to display relay contact information. @@ -452,6 +427,7 @@ Number of relay servers a user is connected. DeepL (Proprietary, Higher Accuracy) + DeepL (Proprietario, Accuratezza Elevata) Dropdown option for selecting DeepL as the translation service. @@ -461,6 +437,11 @@ Number of relay servers a user is connected. Button to pay a Lightning invoice with the user's default Lightning wallet. + + Default Zap Amount in sats + + Section title for zap configuration + Delete Elimina @@ -472,16 +453,19 @@ Number of relay servers a user is connected. Delete Account + Elimina Account Button to delete the user's account. Deleted Account + Account Eliminato Alert message to indicate this is a deleted account Description + Descrizione Label to display relay description. @@ -545,13 +529,9 @@ Number of relay servers a user is connected. Error message indicating why saving keys failed. - - EventDetailView - - No comment provided by engineer. - Filter + Filtro No comment provided by engineer. @@ -563,11 +543,13 @@ Number of relay servers a user is connected. Follow Back + Segui anche tu Button to follow a user back. Follow me on nostr + Seguimi su nostr Text on QR code view to prompt viewer looking at screen to follow the user. @@ -598,16 +580,19 @@ Part of a larger sentence to describe how many profiles a user is following. Follows you + Seguono te Text to indicate that a user is following your profile. Free + Gratis Dropdown option for selecting Free plan for DeepL translation service. Get API Key + Ottieni chiave API Button to navigate to DeepL website to get a translation API key. @@ -686,6 +671,7 @@ Part of a larger sentence to describe how many profiles a user is following. LibreTranslate (Open Source) + LibreTranslate (Open Source) Dropdown option for selecting LibreTranslate as the translation service. @@ -703,11 +689,13 @@ Part of a larger sentence to describe how many profiles a user is following. Like + Like Accessibility Label for Like button Local authentication to access private key + Autenticazione locale necessaria per accedere alla chiave privata Face ID usage description shown when trying to access private key @@ -752,6 +740,7 @@ Part of a larger sentence to describe how many profiles a user is following. No + No Button to cancel out of posting a note after being alerted that it looks like they might be posting a private key. @@ -769,6 +758,7 @@ Part of a larger sentence to describe how many profiles a user is following. Note contains "nsec1" private key. Are you sure? + La nota contiene una chiave privata di tipo "nsec1". Sei sicuro? Alert user that they might be attempting to paste a private key and ask them to confirm. @@ -792,6 +782,7 @@ Part of a larger sentence to describe how many profiles a user is following. @@ -809,6 +800,7 @@ Part of a larger sentence to describe how many profiles a user is following. Permanently Delete Account + Elimina l'account in modo permanente Alert for deleting the users account. @@ -820,6 +812,7 @@ Part of a larger sentence to describe how many profiles a user is following. Plan + Piano Prompt selection of DeepL subscription plan to perform machine translations on notes @@ -861,6 +854,7 @@ Part of a larger sentence to describe how many profiles a user is following. Pro + Pro Dropdown option for selecting Pro plan for DeepL translation service. @@ -945,6 +939,7 @@ Part of a larger sentence to describe how many profiles a user is following. Reply + Risposta Accessibility label for reply button @@ -1042,6 +1037,7 @@ Part of a larger sentence to describe how many profiles a user is following. Scan the code + Scansiona il codice Text on QR code view to prompt viewer to scan the QR code on screen with their device camera. @@ -1089,6 +1085,7 @@ Part of a larger sentence to describe how many profiles a user is following. Service + Servizio Prompt selection of translation service provider. @@ -1135,6 +1132,7 @@ Part of a larger sentence to describe how many profiles a user is following. Software + Software Label to display relay software. @@ -1146,6 +1144,7 @@ Part of a larger sentence to describe how many profiles a user is following. Supported NIPs + NIP Supportati Label to display relay's supported NIPs. @@ -1163,6 +1162,7 @@ Part of a larger sentence to describe how many profiles a user is following. @@ -1198,6 +1198,7 @@ Part of a larger sentence to describe how many profiles a user is following. To filter your %@ feed, please choose applicable relays from the list below: + Per filtrare il tuo %@ feed, scegli un relè disponibile dalla lista sottostante: No comment provided by engineer. @@ -1215,16 +1216,19 @@ Part of a larger sentence to describe how many profiles a user is following. Translating from (lang)... + Tradotto da (lang)... Button to indicate that the note is in the process of being translated from a different language. Translations + Traduzioni Section title for selecting the translation service. Type DELETE to delete + Inserisci CANCELLA per cancellare 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. @@ -1285,8 +1289,10 @@ Part of a larger sentence to describe how many profiles a user is following. Version + Versione - Label to display relay software version. + Label to display relay software version. + Section title for displaying the version number of the Damus app. Wallet @@ -1338,6 +1344,7 @@ Part of a larger sentence to describe how many profiles a user is following. Yes, Post with Private Key + Si, posta con Chiave Privata Button to proceed with posting a note even though it looks like they might be posting a private key. @@ -1355,11 +1362,13 @@ Part of a larger sentence to describe how many profiles a user is following. Zap + Zap Accessibility label for zap button Zaps + Zaps Navigation bar title for the Zaps view. @@ -1465,12 +1474,6 @@ Part of a larger sentence to describe how many profiles a user is following.Amount of sats. (Key in .stringsdict) - - u{00A0} - u{00A0} - - Non-breaking space character to fill in blank space next to event action button icons. - wss://some.relay.com wss://qualche.relay.com @@ -1662,11 +1665,13 @@ Part of a larger sentence to describe how many profiles a user is following. Zap + Zap Part of a larger sentence to describe how many zap payments there are on a post. Zaps + Zaps Part of a larger sentence to describe how many zap payments there are on a post. diff --git a/translations/ja.xliff b/translations/ja.xliff index 4ba1830d..7b7d65a8 100644 --- a/translations/ja.xliff +++ b/translations/ja.xliff @@ -35,17 +35,6 @@ - - - 61b6edf1108e6f396680a33b02486a70_tr - Blank space to separate profile picture from profile editor form. - - - %@ - %@ - - Abbreviated version of a nostr public key. - %@ %@ %@ %@ @@ -77,13 +66,6 @@ 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. - - %lld - %lld - - Number of reposts. -Number of relay servers a user is connected. - %lld/%lld %lld/%lld @@ -114,18 +96,6 @@ Number of relay servers a user is connected. Navigation bar title for view that shows who a user is following. - - < e > - < e > - - Placeholder for event mention. - - - @ - @ - - Prefix character to username. - API Key (optional) APIキー (任意) @@ -183,7 +153,7 @@ Number of relay servers a user is connected. Add Relay - Relayを追加 + リレーを追加 Label for section for adding a relay server. @@ -467,6 +437,11 @@ Number of relay servers a user is connected. Button to pay a Lightning invoice with the user's default Lightning wallet. + + Default Zap Amount in sats + + Section title for zap configuration + Delete 削除 @@ -554,13 +529,9 @@ Number of relay servers a user is connected. Error message indicating why saving keys failed. - - EventDetailView - - No comment provided by engineer. - Filter + フィルター No comment provided by engineer. @@ -811,6 +782,7 @@ Part of a larger sentence to describe how many profiles a user is following. @@ -828,6 +800,7 @@ Part of a larger sentence to describe how many profiles a user is following. Permanently Delete Account + アカウントの永久的な削除 Alert for deleting the users account. @@ -929,7 +902,7 @@ Part of a larger sentence to describe how many profiles a user is following. Recommended Relays - 推奨のリレーサーバー + 推奨のリレー Section title for recommend relay servers that could be added as part of configuration @@ -1189,6 +1162,7 @@ Part of a larger sentence to describe how many profiles a user is following. @@ -1224,6 +1198,7 @@ Part of a larger sentence to describe how many profiles a user is following. To filter your %@ feed, please choose applicable relays from the list below: + %@ フィードをフィルタリングするには、以下のリストから該当するリレーを選択してください。 No comment provided by engineer. @@ -1316,7 +1291,8 @@ Part of a larger sentence to describe how many profiles a user is following.Version バージョン - Label to display relay software version. + Label to display relay software version. + Section title for displaying the version number of the Damus app. Wallet @@ -1392,6 +1368,7 @@ Part of a larger sentence to describe how many profiles a user is following. Zaps + Zaps Navigation bar title for the Zaps view. @@ -1497,12 +1474,6 @@ Part of a larger sentence to describe how many profiles a user is following.Amount of sats. (Key in .stringsdict) - - u{00A0} - u{00A0} - - Non-breaking space character to fill in blank space next to event action button icons. - wss://some.relay.com wss://some.relay.com diff --git a/translations/lv_LV.xliff b/translations/lv_LV.xliff index f89b89ce..ff33160d 100644 --- a/translations/lv_LV.xliff +++ b/translations/lv_LV.xliff @@ -34,17 +34,6 @@ - - - 61b6edf1108e6f396680a33b02486a70_tr - Blank space to separate profile picture from profile editor form. - - - %@ - %@ - - Abbreviated version of a nostr public key. - %@ %@ %@ %@ @@ -76,13 +65,6 @@ 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. - - %lld - %lld - - Number of reposts. -Number of relay servers a user is connected. - %lld/%lld %lld/%lld @@ -113,18 +95,6 @@ Number of relay servers a user is connected. Navigation bar title for view that shows who a user is following. - - < e > - < e > - - Placeholder for event mention. - - - @ - @ - - Prefix character to username. - API Key (optional) API Atslēga (pēc izvēles) @@ -461,6 +431,11 @@ Number of relay servers a user is connected. Button to pay a Lightning invoice with the user's default Lightning wallet. + + Default Zap Amount in sats + + Section title for zap configuration + Delete Izdzēst @@ -547,11 +522,6 @@ Number of relay servers a user is connected. Error message indicating why saving keys failed. - - EventDetailView - - No comment provided by engineer. - Filter @@ -1292,7 +1262,8 @@ Part of a larger sentence to describe how many profiles a user is following. Version - Label to display relay software version. + Label to display relay software version. + Section title for displaying the version number of the Damus app. Wallet @@ -1472,12 +1443,6 @@ Part of a larger sentence to describe how many profiles a user is following.Amount of sats. (Key in .stringsdict) - - u{00A0} - u{00A0} - - Non-breaking space character to fill in blank space next to event action button icons. - wss://some.relay.com wss://cits.relejs.com diff --git a/translations/nl.xliff b/translations/nl.xliff index 07f1bb02..00fc262e 100644 --- a/translations/nl.xliff +++ b/translations/nl.xliff @@ -35,17 +35,6 @@ - - - 61b6edf1108e6f396680a33b02486a70_tr - Blank space to separate profile picture from profile editor form. - - - %@ - %@ - - Abbreviated version of a nostr public key. - %@ %@ %@ %@ @@ -77,13 +66,6 @@ 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. - - %lld - %lld - - Number of reposts. -Number of relay servers a user is connected. - %lld/%lld %lld/%lld @@ -114,18 +96,6 @@ Number of relay servers a user is connected. Navigation bar title for view that shows who a user is following. - - < e > - < e > - - Placeholder for event mention. - - - @ - @ - - Prefix character to username. - API Key (optional) Api-sleutel (optioneel) @@ -467,6 +437,11 @@ Number of relay servers a user is connected. Button to pay a Lightning invoice with the user's default Lightning wallet. + + Default Zap Amount in sats + + Section title for zap configuration + Delete Verwijder @@ -554,12 +529,6 @@ Number of relay servers a user is connected. Error message indicating why saving keys failed. - - EventDetailView - EventDetailView - - No comment provided by engineer. - Filter Filter @@ -1322,7 +1291,8 @@ Part of a larger sentence to describe how many profiles a user is following.Version Versie - Label to display relay software version. + Label to display relay software version. + Section title for displaying the version number of the Damus app. Wallet @@ -1504,12 +1474,6 @@ Part of a larger sentence to describe how many profiles a user is following.Amount of sats. (Key in .stringsdict) - - u{00A0} - u{00A0} - - Non-breaking space character to fill in blank space next to event action button icons. - wss://some.relay.com wss://een.relay.nl diff --git a/translations/pl_PL.xliff b/translations/pl_PL.xliff index debc3854..70f7ac85 100644 --- a/translations/pl_PL.xliff +++ b/translations/pl_PL.xliff @@ -35,17 +35,6 @@ - - - 61b6edf1108e6f396680a33b02486a70_tr - Blank space to separate profile picture from profile editor form. - - - %@ - %@ - - Abbreviated version of a nostr public key. - %@ %@ %@ %@ @@ -77,13 +66,6 @@ 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. - - %lld - %lld - - Number of reposts. -Number of relay servers a user is connected. - %lld/%lld %lld/%lld @@ -114,18 +96,6 @@ Number of relay servers a user is connected. Navigation bar title for view that shows who a user is following. - - < e > - < e > - - Placeholder for event mention. - - - @ - @ - - Prefix character to username. - API Key (optional) Klucz API (opcjonalny) @@ -467,6 +437,11 @@ Number of relay servers a user is connected. Button to pay a Lightning invoice with the user's default Lightning wallet. + + Default Zap Amount in sats + + Section title for zap configuration + Delete Usuń @@ -554,13 +529,9 @@ Number of relay servers a user is connected. Error message indicating why saving keys failed. - - EventDetailView - - No comment provided by engineer. - Filter + Filtr No comment provided by engineer. @@ -811,6 +782,7 @@ Part of a larger sentence to describe how many profiles a user is following. @@ -828,6 +800,7 @@ Part of a larger sentence to describe how many profiles a user is following. Permanently Delete Account + Trwałe skasowanie konta Alert for deleting the users account. @@ -1189,6 +1162,7 @@ Part of a larger sentence to describe how many profiles a user is following. @@ -1224,6 +1198,7 @@ Part of a larger sentence to describe how many profiles a user is following. 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: No comment provided by engineer. @@ -1316,7 +1291,8 @@ Part of a larger sentence to describe how many profiles a user is following.Version Wersja - Label to display relay software version. + Label to display relay software version. + Section title for displaying the version number of the Damus app. Wallet @@ -1392,6 +1368,7 @@ Part of a larger sentence to describe how many profiles a user is following. Zaps + Zapy Navigation bar title for the Zaps view. @@ -1497,12 +1474,6 @@ Part of a larger sentence to describe how many profiles a user is following.Amount of sats. (Key in .stringsdict) - - u{00A0} - u{00A0} - - Non-breaking space character to fill in blank space next to event action button icons. - wss://some.relay.com wss://jakis.przekaznik.com diff --git a/translations/pt_PT.xliff b/translations/pt_PT.xliff index b6191429..4a94be79 100644 --- a/translations/pt_PT.xliff +++ b/translations/pt_PT.xliff @@ -34,17 +34,6 @@ - - - 61b6edf1108e6f396680a33b02486a70_tr - Blank space to separate profile picture from profile editor form. - - - %@ - %@ - - Abbreviated version of a nostr public key. - %@ %@ %@ %@ @@ -76,13 +65,6 @@ 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. - - %lld - %lld - - Number of reposts. -Number of relay servers a user is connected. - %lld/%lld %lld/%lld @@ -113,18 +95,6 @@ Number of relay servers a user is connected. Navigation bar title for view that shows who a user is following. - - < e > - < e > - - Placeholder for event mention. - - - @ - @ - - Prefix character to username. - API Key (optional) Chave API (opcional) @@ -461,6 +431,11 @@ Number of relay servers a user is connected. Button to pay a Lightning invoice with the user's default Lightning wallet. + + Default Zap Amount in sats + + Section title for zap configuration + Delete Apagar @@ -545,11 +520,6 @@ Number of relay servers a user is connected. Error message indicating why saving keys failed. - - EventDetailView - - No comment provided by engineer. - Filter @@ -1286,7 +1256,8 @@ Part of a larger sentence to describe how many profiles a user is following. Version - Label to display relay software version. + Label to display relay software version. + Section title for displaying the version number of the Damus app. Wallet @@ -1465,12 +1436,6 @@ Part of a larger sentence to describe how many profiles a user is following.Amount of sats. (Key in .stringsdict) - - u{00A0} - u{00A0} - - Non-breaking space character to fill in blank space next to event action button icons. - wss://some.relay.com wss://some.relay.com diff --git a/translations/tr_TR.xliff b/translations/tr_TR.xliff index 3e52203c..9b3c00f5 100644 --- a/translations/tr_TR.xliff +++ b/translations/tr_TR.xliff @@ -33,17 +33,6 @@ - - - 61b6edf1108e6f396680a33b02486a70_tr - Blank space to separate profile picture from profile editor form. - - - %@ - %@ - - Abbreviated version of a nostr public key. - %@ %@ %@ %@ @@ -74,13 +63,6 @@ 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. - - %lld - %lld - - Number of reposts. -Number of relay servers a user is connected. - %lld/%lld %lld/%lld @@ -110,18 +92,6 @@ Number of relay servers a user is connected. Navigation bar title for view that shows who a user is following. - - < e > - < e > - - Placeholder for event mention. - - - @ - @ - - Prefix character to username. - API Key (optional) @@ -443,6 +413,11 @@ Number of relay servers a user is connected. Button to pay a Lightning invoice with the user's default Lightning wallet. + + Default Zap Amount in sats + + Section title for zap configuration + Delete Sil @@ -525,11 +500,6 @@ Number of relay servers a user is connected. Error message indicating why saving keys failed. - - EventDetailView - - No comment provided by engineer. - Filter @@ -1241,7 +1211,8 @@ Part of a larger sentence to describe how many profiles a user is following. Version - Label to display relay software version. + Label to display relay software version. + Section title for displaying the version number of the Damus app. Wallet @@ -1417,12 +1388,6 @@ Part of a larger sentence to describe how many profiles a user is following.Amount of sats. (Key in .stringsdict) - - u{00A0} - u{00A0} - - Non-breaking space character to fill in blank space next to event action button icons. - wss://some.relay.com wss://örnek.role.com diff --git a/translations/zh_CN.xliff b/translations/zh_CN.xliff index a3343925..f029da98 100644 --- a/translations/zh_CN.xliff +++ b/translations/zh_CN.xliff @@ -35,17 +35,6 @@ - - - 61b6edf1108e6f396680a33b02486a70_tr - Blank space to separate profile picture from profile editor form. - - - %@ - %@ - - Abbreviated version of a nostr public key. - %@ %@ %@ %@ @@ -77,13 +66,6 @@ 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. - - %lld - %lld - - Number of reposts. -Number of relay servers a user is connected. - %lld/%lld %lld/%lld @@ -114,18 +96,6 @@ Number of relay servers a user is connected. Navigation bar title for view that shows who a user is following. - - < e > - < e > - - Placeholder for event mention. - - - @ - @ - - Prefix character to username. - API Key (optional) API Key (可选) @@ -457,6 +427,7 @@ Number of relay servers a user is connected. DeepL (Proprietary, Higher Accuracy) + DeepL(专有软件,准确性更高) Dropdown option for selecting DeepL as the translation service. @@ -466,6 +437,11 @@ Number of relay servers a user is connected. Button to pay a Lightning invoice with the user's default Lightning wallet. + + Default Zap Amount in sats + + Section title for zap configuration + Delete 删除 @@ -553,11 +529,6 @@ Number of relay servers a user is connected. Error message indicating why saving keys failed. - - EventDetailView - - No comment provided by engineer. - Filter 筛选 @@ -1320,7 +1291,8 @@ Part of a larger sentence to describe how many profiles a user is following.Version 版本 - Label to display relay software version. + Label to display relay software version. + Section title for displaying the version number of the Damus app. Wallet @@ -1390,11 +1362,13 @@ Part of a larger sentence to describe how many profiles a user is following. Zap + 电击 Accessibility label for zap button Zaps + 电击 Navigation bar title for the Zaps view. @@ -1500,12 +1474,6 @@ Part of a larger sentence to describe how many profiles a user is following.Amount of sats. (Key in .stringsdict) - - u{00A0} - u{00A0} - - Non-breaking space character to fill in blank space next to event action button icons. - wss://some.relay.com wss://some.relay.com