Modify a string

This commit is contained in:
2023-03-19 10:44:08 -06:00
parent efdecaf118
commit 9590166367
2 changed files with 2 additions and 2 deletions

View File

@@ -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()

View File

@@ -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)
}