Вы можете определить свои строки в локализуемом файле и использовать его по всему проекту,
В Localizable.strings
файле,
"SERVER_RESTART_MESSAGE" = "The camera will restart now.Please reconnect after two minutes.";
Затем в Constants
используйте строку как,
struct Constants {
struct AlertsIdentifiers {
static let SERVER_RESTART_MESSAGE = NSLocalizedString("SERVER_RESTART_MESSAGE", comment: "")
}
}