In addition to great extension written here if you are lazy to find and replace old NSLocalizedString
you can open find & replace in Xcode and in the find section you can write NSLocalizedString\(\(".*"\), comment: ""\)
then in the replace section you need to write $1.localized
to change all NSLocalizedString
with "blabla".localized
in your project.