Skip to content

Commit

Permalink
Add theme author to activation message
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcurylo committed Nov 27, 2015
1 parent 7bb6976 commit f1f7e60
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -506,8 +506,8 @@ public protocol ThemePresenter: class {
self?.collectionView?.reloadData()

let successTitle = NSLocalizedString("Theme Activated", comment:"Title of alert when theme activation succeeds")
let successFormat = NSLocalizedString("Thanks for choosing %@", comment:"Message of alert when theme activation succeeds")
let successMessage = String(format:successFormat, theme?.name ?? "")
let successFormat = NSLocalizedString("Thanks for choosing %@ by %@", comment:"Message of alert when theme activation succeeds")
let successMessage = String(format:successFormat, theme?.name ?? "", theme?.author ?? "")
let manageTitle = NSLocalizedString("Manage site", comment:"Return to blog screen action when theme activation succeeds")
let okTitle = NSLocalizedString("OK", comment:"Alert dismissal title")
let alertController = UIAlertController(title: successTitle,
Expand Down

0 comments on commit f1f7e60

Please sign in to comment.