You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

54 lines
1.7 KiB

//
// String+LocalizeBundle.swift
// Localize_Swift
//
// Created by Vitalii Budnik on 10/7/16.
// Copyright © 2016 Roy Marmelstein. All rights reserved.
//
import Foundation
/// bundle friendly extension
public extension String {
/**
Swift 2 friendly localization syntax, replaces NSLocalizedString.
- parameter bundle: The receivers bundle to search. If bundle is `nil`,
the method attempts to use main bundle.
- returns: The localized string.
*/
func localized(in bundle: Bundle?) -> String {
return localized(using: nil, in: bundle)
}
/**
Swift 2 friendly localization syntax with format arguments, replaces String(format:NSLocalizedString).
- parameter arguments: arguments values for temlpate (substituted according to the users default locale).
- parameter bundle: The receivers bundle to search. If bundle is `nil`,
the method attempts to use main bundle.
- returns: The formatted localized string with arguments.
*/
func localizedFormat(arguments: CVarArg..., in bundle: Bundle?) -> String {
return String(format: localized(in: bundle), arguments: arguments)
}
/**
Swift 2 friendly plural localization syntax with a format argument.
- parameter argument: Argument to determine pluralisation.
- parameter bundle: The receivers bundle to search. If bundle is `nil`,
the method attempts to use main bundle.
- returns: Pluralized localized string.
*/
func localizedPlural(argument: CVarArg, in bundle: Bundle?) -> String {
return NSString.localizedStringWithFormat(localized(in: bundle) as NSString, argument) as String
}
}