23OF_ASSUME_NONNULL_BEGIN
40#define OF_LOCALIZED(ID, ...) \
41 [[OFLocale currentLocale] localizedStringForID: ID \
42 fallback: __VA_ARGS__, nil]
52OF_SUBCLASSING_RESTRICTED
55 OFString *_Nullable _languageCode, *_Nullable _countryCode;
62#ifdef OF_HAVE_CLASS_PROPERTIES
63@property (
class, readonly, nullable, nonatomic)
OFLocale *currentLocale;
64@property (
class, readonly, nullable, nonatomic)
OFString *languageCode;
65@property (
class, readonly, nullable, nonatomic)
OFString *countryCode;
67@property (
class, readonly, nullable, nonatomic)
OFString *decimalSeparator;
97@property (readonly, nonatomic)
OFString *decimalSeparator;
107+ (nullable
OFLocale *)currentLocale;
144+ (nullable
OFString *)decimalSeparator;
151+ (void)addLocalizationDirectoryIRI: (
OFIRI *)IRI;
154 OF_DEPRECATED(ObjFW, 1, 1,
155 "Manually creating an
OFLocale is no longer necessary. "
156 "Use +[
OFLocale currentLocale] instead.");
163- (void)addLocalizationDirectoryIRI: (
OFIRI *)IRI;
185 fallback: (
id)fallback, ... OF_SENTINEL;
212 fallback: (
id)fallback
213 arguments: (va_list)arguments;
OFStringEncoding
The encoding of a string.
Definition OFString.h:65
A class for storing constant strings using the @"" literal.
Definition OFConstantString.h:42
An abstract class for storing objects in a dictionary.
Definition OFDictionary.h:84
A class for representing IRIs, URIs, URLs and URNs, for parsing them as well as accessing parts of th...
Definition OFIRI.h:41
A class for querying the locale and retrieving localized strings.
Definition OFLocale.h:54
OFString * languageCode
The language code of the locale for messages.
Definition OFLocale.h:75
OFString * countryCode
The country code of the locale for messages.
Definition OFLocale.h:82
An abstract class for storing, adding and removing objects in an array.
Definition OFMutableArray.h:48
The root class for all other classes inside ObjFW.
Definition OFObject.h:692
A class for handling strings.
Definition OFString.h:143