Replace gmtime to gmtime_r for TimeZone
[platform/framework/native/appfw.git] / inc / FLclLocale.h
index 1c4db52..058ab1b 100644 (file)
@@ -1,5 +1,4 @@
 //
-// Open Service Platform
 // Copyright (c) 2012 Samsung Electronics Co., Ltd.
 //
 // Licensed under the Apache License, Version 2.0 (the License);
@@ -572,9 +571,7 @@ enum LanguageCode
        LANGUAGE_ZUN, /**< Zuni */
        LANGUAGE_ZXX, /**< No linguistic content; Not applicable */
        LANGUAGE_ZZA, /**< Zaza; Dimili; Dimli; Kirdki; Kirmanjki; Zazaki */
-       LANGUAGE_MAX, // Language max count
-
-    LANGUAGE_INVALID_RESERVED = LANGUAGE_ZZA + 2, // An invalid language code for internal (LANGUAGE_ZZA+2)
+       LANGUAGE_MAX // Language max count
 }; // LanguageCode
 
 
@@ -834,9 +831,7 @@ enum CountryCode
        COUNTRY_BL, /**< SAINT BARTHELEMY @b Since: @b 2.1  */
        COUNTRY_MF, /**< SAINT MARTIN (FRENCH PART) @b Since: @b 2.1 */
        COUNTRY_AREA_419, /**< Latin America and the Caribbean @b Since: @b 2.1  */
-       COUNTRY_MAX,    //< Country max count
-
-    COUNTRY_INVALID_RESERVED = COUNTRY_ME + 2, // An invalid country code for internal (COUNTRY_ME+2)
+       COUNTRY_MAX    //< Country max count
 };
 
 
@@ -958,7 +953,7 @@ public:
         *
         * @return              The language code enum value of the instance
         *
-        * @remark              The specific LanguageCode represents the language code with the locale's ISO-15924 abbreviation script code.
+        * @remarks             The specific LanguageCode represents the language code with the locale's ISO-15924 abbreviation script code.
         */
        LanguageCode GetLanguageCode(void) const;
 
@@ -1093,7 +1088,7 @@ public:
         * @since                       2.0
         *
         * @param[in]           languageCodeString                              The language code, @n
-        *                                                                      To get the specfied LanguageCode with the locale's ISO-15924 abbreviation script code, @n
+        *                                                                      To get the specified LanguageCode with the locale's ISO-15924 abbreviation script code, @n
         *                                                                      the form of languageCodeString should combine the ISO 639-2 language codes and the locale's ISO-15924 abbreviation script code by "-". @n
         *                                                                      For example, if the language code is "aze" and the script code is "latn", @n
         *                                                                      the languageCodeString is "aze-latn", and the LanguageCode is LANGUAGE_AZE_LATIN.
@@ -1118,7 +1113,7 @@ public:
         *
         * @param[in]           languageCode                                    The language code
         * @return              The language code string associated with the @c languageCode, @n
-        *                              else an empty string if languageCode is invaild.
+        *                              else an empty string if languageCode is invalid.
         * @see StringToLanguageCode()
         */
        static Tizen::Base::String LanguageCodeToString(LanguageCode languageCode);
@@ -1130,7 +1125,7 @@ public:
         *
         * @param[in]           countryCode                                             The country code
         * @return              The ISO 3166-1 alpha-2 country code string associated with the @c countryCode, @n
-        *                              else an empty string if countryCode is invaild.
+        *                              else an empty string if countryCode is invalid.
         */
        static Tizen::Base::String CountryCodeToString(CountryCode countryCode);
 
@@ -1143,7 +1138,7 @@ public:
         * @return              The ISO 639-2 language code string associated with the @c languageCode, @n
         *                              or The ISO 639-2 language code string with the ISO-15924 script code @n
         *                              if the @c languageCode represents The ISO 639-2 language code with the ISO-15924 script code, @n
-        *                              else an empty string if languageCode is invaild.
+        *                              else an empty string if languageCode is invalid.
         */
        static Tizen::Base::String LanguageCodeToTwoLetterLanguageCodeString(LanguageCode languageCode);
 
@@ -1165,9 +1160,9 @@ public:
         *
         * @param[in]           countryCode                                             The country code
         * @return              The ISO 3166-1 alpha-3 country code string associated with the @c countryCode, @n
-        *                              else an empty string if countryCode is invaild
+        *                              else an empty string if countryCode is invalid
         * @see                 CountryCodeToString()
-        * @remark              COUNTRY_AREA_419 returns an empty string, since it is not defined in the ISO 3166-1 alpha-3.
+        * @remarks             COUNTRY_AREA_419 returns an empty string, since it is not defined in the ISO 3166-1 alpha-3.
         */
        static Tizen::Base::String CountryCodeToThreeLetterCountryCodeString(CountryCode countryCode);