Rename "Add to Bookmark" to simply "Bookmark" (#681)

This commit is contained in:
Bas Broek
2017-10-23 23:13:43 +02:00
committed by Ryan Nystrom
parent 2df5e5ffb5
commit 3d9e484974

View File

@@ -143,7 +143,7 @@ struct AlertAction {
}
static func bookmark(_ bookmark: BookmarkModel) -> UIAlertAction {
return UIAlertAction(title: NSLocalizedString("Add To Bookmark", comment: ""), style: .default) { _ in
return UIAlertAction(title: NSLocalizedString("Bookmark", comment: ""), style: .default) { _ in
BookmarksStore.shared.add(bookmark: bookmark)
}
}