From 029d24f2345dbaa86084aa87c8bba64503c27262 Mon Sep 17 00:00:00 2001 From: Alex Grebenyuk Date: Tue, 7 May 2024 07:09:39 -0400 Subject: [PATCH] Update WordPress/Classes/ViewRelated/Post/PostSettingsViewController+Swift.swift Co-authored-by: Momo Ozawa --- .../ViewRelated/Post/PostSettingsViewController+Swift.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WordPress/Classes/ViewRelated/Post/PostSettingsViewController+Swift.swift b/WordPress/Classes/ViewRelated/Post/PostSettingsViewController+Swift.swift index 92c9becf39db..0b4512331baa 100644 --- a/WordPress/Classes/ViewRelated/Post/PostSettingsViewController+Swift.swift +++ b/WordPress/Classes/ViewRelated/Post/PostSettingsViewController+Swift.swift @@ -215,7 +215,7 @@ extension PostSettingsViewController { private func showWarningPostWillBePublishedAlert() { let alert = UIAlertController(title: nil, message: Strings.warningPostWillBePublishedAlertMessage, preferredStyle: .alert) - alert.addAction(UIAlertAction(title: NSLocalizedString("Ok", comment: "Ok"), style: .default)) + alert.addAction(UIAlertAction(title: NSLocalizedString("postSettings.ok", value: "OK", comment: "Button OK"), style: .default)) present(alert, animated: true) } }