iOS Plurals Localization Library
As of iOS 7 and Mac OS X 10.9 Mavericks, Foundation has the ability to specify localized strings according to pluralization and grammar rules. You can find more information about it in the Localized Property List File section of the Foundation release notes.
Smartling.i18n.framework is not compatible with Apple's implementation, and does not handle ".stringsdict" resource files.
iOS (pre-iOS 7) localization does not support plural functionality out of the box. The ios-i18n library was designed to bridge that gap and provide a means for developers to seamlessly integrate plurals into their localized apps across any number of locales.
- Download [Smartling.i18n.framework.tar.gz] fw
- Unpack and drag
Smartling.i18n.framework
to your project'sFrameworks
group. - In the
Build Settings
of your target add -ObjC to Other Linker Flags. #import <Smartling.i18n/SLLocalization.h>
int number = 42;
NSString *format = SLPluralizedString(@"%d apples", number, @"Comment");
NSString *text = [NSString stringWithFormat:format, number];
There are four functions to retrieve pluralized string, similar to NSLocalizedString:
NSString * SLPluralizedString(NSString *key, number, NSString *comment)
NSString * SLPluralizedStringFromTable(NSString *key,
NSString *tableName,
number,
NSString *comment)
NSString * SLPluralizedStringFromTableInBundle(NSString *key,
NSString *tableName,
NSBundle *bundle,
number,
NSString *comment)
NSString * SLPluralizedStringWithDefaultValue(NSString *key,
NSString *tableName,
NSBundle *bundle,
number,
NSString *defaultValue,
NSString *comment)
number
can be any primitive type (int, long, float, double), or NSNumber.
At runtime, SLPluralizedString tries to retrieve localized string according to selected plural form, given number value. If not found, it mimicks NSLocalizedString – and falls back to developer specified language. For more details on this mechanism, see [Support for Internationalization] applei18n
Standard .strings file format is extended with pluralized variants.
The extended syntax for key is: KEY##{rule}
.
Where KEY
is the original key string, and rule
is one of plural rules: zero
, one
, two
, few
, many
, other
.
The rule
portion of the full key conforms to the CLDR spec on plural forms. The iOS-18n library will load a particular translation following the same rules as defined under CLDR.
Sample resource files for key string %d songs found
:
/* Number of songs from search results */
"%d songs found##{one}" = "One song found";
"%d songs found##{other}" = "%d songs found";
/* Number of songs from search results */
"%d songs found##{one}" = "Найдена %d песня";
"%d songs found##{few}" = "Найдено %d песни";
"%d songs found##{many}" = "Найдено %d песен";
"%d songs found##{other}" = "Найдено %d песен";
Copyright 2013 Smartling, Inc.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this work except in compliance with the License. You may obtain a copy of the License in the LICENSE file, or at:
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.