From 06bd3a38dc260669b57feaaa5ba15e50e3f2dffa Mon Sep 17 00:00:00 2001 From: Nathan Mattes Date: Wed, 4 Sep 2024 15:18:28 +0200 Subject: [PATCH] Localize Button Title (#2276) --- deltachat-ios/Controller/QrViewController.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deltachat-ios/Controller/QrViewController.swift b/deltachat-ios/Controller/QrViewController.swift index f0bc8f512..6358e8eb2 100644 --- a/deltachat-ios/Controller/QrViewController.swift +++ b/deltachat-ios/Controller/QrViewController.swift @@ -36,7 +36,7 @@ class QrViewController: UIViewController { qrContentView.translatesAutoresizingMaskIntoConstraints = false shareLinkButton = UIButton(type: .system) - shareLinkButton.setTitle("Share Invite Link", for: .normal) + shareLinkButton.setTitle(String.localized("share_invite_link"), for: .normal) shareLinkButton.translatesAutoresizingMaskIntoConstraints = false contentStackView = UIStackView(arrangedSubviews: [qrContentView, shareLinkButton, UIView()])