mirror of
https://github.com/AU-COVIDSafe/mobile-ios.git
synced 2025-04-04 22:04:59 +00:00
17 lines
343 B
Swift
17 lines
343 B
Swift
//
|
|
// String+Localization.swift
|
|
// CovidSafe
|
|
//
|
|
// Copyright © 2020 Australian Government. All rights reserved.
|
|
//
|
|
import Foundation
|
|
|
|
extension String {
|
|
|
|
func localizedString( comment: String = "") -> String {
|
|
if self == "" {
|
|
return ""
|
|
}
|
|
return NSLocalizedString(self, comment: comment)
|
|
}
|
|
}
|