diff --git a/damus/Components/TranslateView.swift b/damus/Components/TranslateView.swift index fc9b8530..d8b91c93 100644 --- a/damus/Components/TranslateView.swift +++ b/damus/Components/TranslateView.swift @@ -20,7 +20,7 @@ struct TranslateView: View { @State var translated_artifacts: NoteArtifacts? = nil var TranslateButton: some View { - Button(NSLocalizedString("Translate Note", comment: "Button to translate note from different language.")) { + Button(NSLocalizedString("Translate Note into your language", comment: "Button to translate note from different language.")) { show_translated_note = true } .translate_button_style() diff --git a/damus/Views/ActionBar/ShareAction.swift b/damus/Views/ActionBar/ShareAction.swift index e4e76262..5aef01b9 100644 --- a/damus/Views/ActionBar/ShareAction.swift +++ b/damus/Views/ActionBar/ShareAction.swift @@ -40,7 +40,7 @@ struct ShareAction: View { HStack(alignment: .top, spacing: 25) { - ShareActionButton(img: "link", text: NSLocalizedString("Copy Link", comment: "Button to copy link to note"), col: col) { + ShareActionButton(img: "link", text: NSLocalizedString("Copy Link TempChange", comment: "Button to copy link to note"), col: col) { show_share_action = false UIPasteboard.general.string = "https://damus.io/" + (bech32_note_id(event.id) ?? event.id) }