PageRenderTime 21ms CodeModel.GetById 21ms RepoModel.GetById 1ms app.codeStats 0ms

/CFLocaleKeys.m

https://bitbucket.org/OCTAGRAM/svn-opencflite
Objective C | 154 lines | 115 code | 7 blank | 32 comment | 0 complexity | 6f38b5643f9afd119805a7777a1c0dd4 MD5 | raw file
Possible License(s): MPL-2.0
  1. /*
  2. * Copyright (c) 2011 Brent Fulgham <bfulgham@gmail.org>. All rights reserved.
  3. *
  4. * This source code is a modified version of the CoreFoundation sources released by Apple Inc. under
  5. * the terms of the APSL version 2.0 (see below).
  6. *
  7. * For information about changes from the original Apple source release can be found by reviewing the
  8. * source control system for the project at https://sourceforge.net/svn/?group_id=246198.
  9. *
  10. * The original license information is as follows:
  11. *
  12. * Copyright (c) 2010 Apple Inc. All rights reserved.
  13. *
  14. * @APPLE_LICENSE_HEADER_START@
  15. *
  16. * This file contains Original Code and/or Modifications of Original Code
  17. * as defined in and that are subject to the Apple Public Source License
  18. * Version 2.0 (the 'License'). You may not use this file except in
  19. * compliance with the License. Please obtain a copy of the License at
  20. * http://www.opensource.apple.com/apsl/ and read it before using this
  21. * file.
  22. *
  23. * The Original Code and all software distributed under the License are
  24. * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
  25. * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
  26. * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
  27. * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
  28. * Please see the License for the specific language governing rights and
  29. * limitations under the License.
  30. *
  31. * @APPLE_LICENSE_HEADER_END@
  32. */
  33. @class NSString;
  34. NSString * const kCFLocaleAlternateQuotationBeginDelimiterKey = @"kCFLocaleAlternateQuotationBeginDelimiterKey";
  35. NSString * const kCFLocaleAlternateQuotationEndDelimiterKey = @"kCFLocaleAlternateQuotationEndDelimiterKey";
  36. NSString * const kCFLocaleQuotationBeginDelimiterKey = @"kCFLocaleQuotationBeginDelimiterKey";
  37. NSString * const kCFLocaleQuotationEndDelimiterKey = @"kCFLocaleQuotationEndDelimiterKey";
  38. NSString * const kCFLocaleCalendarIdentifierKey = @"calendar"; // ***
  39. NSString * const kCFLocaleCalendarIdentifier = @"calendar"; // ***
  40. NSString * const kCFLocaleCalendarKey = @"kCFLocaleCalendarKey";
  41. NSString * const kCFLocaleCollationIdentifierKey = @"collation"; // ***
  42. NSString * const kCFLocaleCollatorIdentifierKey = @"kCFLocaleCollatorIdentifierKey";
  43. NSString * const kCFLocaleCountryCodeKey = @"kCFLocaleCountryCodeKey";
  44. NSString * const kCFLocaleCurrencyCodeKey = @"currency"; // ***
  45. NSString * const kCFLocaleCurrencySymbolKey = @"kCFLocaleCurrencySymbolKey";
  46. NSString * const kCFLocaleDecimalSeparatorKey = @"kCFLocaleDecimalSeparatorKey";
  47. NSString * const kCFLocaleExemplarCharacterSetKey = @"kCFLocaleExemplarCharacterSetKey";
  48. NSString * const kCFLocaleGroupingSeparatorKey = @"kCFLocaleGroupingSeparatorKey";
  49. NSString * const kCFLocaleIdentifierKey = @"kCFLocaleIdentifierKey";
  50. NSString * const kCFLocaleLanguageCodeKey = @"kCFLocaleLanguageCodeKey";
  51. NSString * const kCFLocaleMeasurementSystemKey = @"kCFLocaleMeasurementSystemKey";
  52. NSString * const kCFLocaleScriptCodeKey = @"kCFLocaleScriptCodeKey";
  53. NSString * const kCFLocaleUsesMetricSystemKey = @"kCFLocaleUsesMetricSystemKey";
  54. NSString * const kCFLocaleVariantCodeKey = @"kCFLocaleVariantCodeKey";
  55. NSString * const kCFDateFormatterAMSymbolKey = @"kCFDateFormatterAMSymbolKey";
  56. NSString * const kCFDateFormatterCalendarKey = @"kCFDateFormatterCalendarKey";
  57. NSString * const kCFDateFormatterCalendarIdentifierKey = @"kCFDateFormatterCalendarIdentifierKey";
  58. NSString * const kCFDateFormatterDefaultDateKey = @"kCFDateFormatterDefaultDateKey";
  59. NSString * const kCFDateFormatterDefaultFormatKey = @"kCFDateFormatterDefaultFormatKey";
  60. NSString * const kCFDateFormatterDoesRelativeDateFormattingKey = @"kCFDateFormatterDoesRelativeDateFormattingKey";
  61. NSString * const kCFDateFormatterEraSymbolsKey = @"kCFDateFormatterEraSymbolsKey";
  62. NSString * const kCFDateFormatterGregorianStartDateKey = @"kCFDateFormatterGregorianStartDateKey";
  63. NSString * const kCFDateFormatterIsLenientKey = @"kCFDateFormatterIsLenientKey";
  64. NSString * const kCFDateFormatterLongEraSymbolsKey = @"kCFDateFormatterLongEraSymbolsKey";
  65. NSString * const kCFDateFormatterMonthSymbolsKey = @"kCFDateFormatterMonthSymbolsKey";
  66. NSString * const kCFDateFormatterPMSymbolKey = @"kCFDateFormatterPMSymbolKey";
  67. NSString * const kCFDateFormatterQuarterSymbolsKey = @"kCFDateFormatterQuarterSymbolsKey";
  68. NSString * const kCFDateFormatterShortMonthSymbolsKey = @"kCFDateFormatterShortMonthSymbolsKey";
  69. NSString * const kCFDateFormatterShortQuarterSymbolsKey = @"kCFDateFormatterShortQuarterSymbolsKey";
  70. NSString * const kCFDateFormatterShortStandaloneMonthSymbolsKey = @"kCFDateFormatterShortStandaloneMonthSymbolsKey";
  71. NSString * const kCFDateFormatterShortStandaloneQuarterSymbolsKey = @"kCFDateFormatterShortStandaloneQuarterSymbolsKey";
  72. NSString * const kCFDateFormatterShortStandaloneWeekdaySymbolsKey = @"kCFDateFormatterShortStandaloneWeekdaySymbolsKey";
  73. NSString * const kCFDateFormatterShortWeekdaySymbolsKey = @"kCFDateFormatterShortWeekdaySymbolsKey";
  74. NSString * const kCFDateFormatterStandaloneMonthSymbolsKey = @"kCFDateFormatterStandaloneMonthSymbolsKey";
  75. NSString * const kCFDateFormatterStandaloneQuarterSymbolsKey = @"kCFDateFormatterStandaloneQuarterSymbolsKey";
  76. NSString * const kCFDateFormatterStandaloneWeekdaySymbolsKey = @"kCFDateFormatterStandaloneWeekdaySymbolsKey";
  77. NSString * const kCFDateFormatterTimeZoneKey = @"kCFDateFormatterTimeZoneKey";
  78. NSString * const kCFDateFormatterTimeZone = @"kCFDateFormatterTimeZoneKey";
  79. NSString * const kCFDateFormatterTwoDigitStartDateKey = @"kCFDateFormatterTwoDigitStartDateKey";
  80. NSString * const kCFDateFormatterVeryShortMonthSymbolsKey = @"kCFDateFormatterVeryShortMonthSymbolsKey";
  81. NSString * const kCFDateFormatterVeryShortStandaloneMonthSymbolsKey = @"kCFDateFormatterVeryShortStandaloneMonthSymbolsKey";
  82. NSString * const kCFDateFormatterVeryShortStandaloneWeekdaySymbolsKey = @"kCFDateFormatterVeryShortStandaloneWeekdaySymbolsKey";
  83. NSString * const kCFDateFormatterVeryShortWeekdaySymbolsKey = @"kCFDateFormatterVeryShortWeekdaySymbolsKey";
  84. NSString * const kCFDateFormatterWeekdaySymbolsKey = @"kCFDateFormatterWeekdaySymbolsKey";
  85. NSString * const kCFNumberFormatterAlwaysShowDecimalSeparatorKey = @"kCFNumberFormatterAlwaysShowDecimalSeparatorKey";
  86. NSString * const kCFNumberFormatterCurrencyCodeKey = @"kCFNumberFormatterCurrencyCodeKey";
  87. NSString * const kCFNumberFormatterCurrencyDecimalSeparatorKey = @"kCFNumberFormatterCurrencyDecimalSeparatorKey";
  88. NSString * const kCFNumberFormatterCurrencyGroupingSeparatorKey = @"kCFNumberFormatterCurrencyGroupingSeparatorKey";
  89. NSString * const kCFNumberFormatterCurrencySymbolKey = @"kCFNumberFormatterCurrencySymbolKey";
  90. NSString * const kCFNumberFormatterDecimalSeparatorKey = @"kCFNumberFormatterDecimalSeparatorKey";
  91. NSString * const kCFNumberFormatterDefaultFormatKey = @"kCFNumberFormatterDefaultFormatKey";
  92. NSString * const kCFNumberFormatterExponentSymbolKey = @"kCFNumberFormatterExponentSymbolKey";
  93. NSString * const kCFNumberFormatterFormatWidthKey = @"kCFNumberFormatterFormatWidthKey";
  94. NSString * const kCFNumberFormatterGroupingSeparatorKey = @"kCFNumberFormatterGroupingSeparatorKey";
  95. NSString * const kCFNumberFormatterGroupingSizeKey = @"kCFNumberFormatterGroupingSizeKey";
  96. NSString * const kCFNumberFormatterInfinitySymbolKey = @"kCFNumberFormatterInfinitySymbolKey";
  97. NSString * const kCFNumberFormatterInternationalCurrencySymbolKey = @"kCFNumberFormatterInternationalCurrencySymbolKey";
  98. NSString * const kCFNumberFormatterIsLenientKey = @"kCFNumberFormatterIsLenientKey";
  99. NSString * const kCFNumberFormatterMaxFractionDigitsKey = @"kCFNumberFormatterMaxFractionDigitsKey";
  100. NSString * const kCFNumberFormatterMaxIntegerDigitsKey = @"kCFNumberFormatterMaxIntegerDigitsKey";
  101. NSString * const kCFNumberFormatterMaxSignificantDigitsKey = @"kCFNumberFormatterMaxSignificantDigitsKey";
  102. NSString * const kCFNumberFormatterMinFractionDigitsKey = @"kCFNumberFormatterMinFractionDigitsKey";
  103. NSString * const kCFNumberFormatterMinIntegerDigitsKey = @"kCFNumberFormatterMinIntegerDigitsKey";
  104. NSString * const kCFNumberFormatterMinSignificantDigitsKey = @"kCFNumberFormatterMinSignificantDigitsKey";
  105. NSString * const kCFNumberFormatterMinusSignKey = @"kCFNumberFormatterMinusSignKey";
  106. NSString * const kCFNumberFormatterMultiplierKey = @"kCFNumberFormatterMultiplierKey";
  107. NSString * const kCFNumberFormatterNaNSymbolKey = @"kCFNumberFormatterNaNSymbolKey";
  108. NSString * const kCFNumberFormatterNegativePrefixKey = @"kCFNumberFormatterNegativePrefixKey";
  109. NSString * const kCFNumberFormatterNegativeSuffixKey = @"kCFNumberFormatterNegativeSuffixKey";
  110. NSString * const kCFNumberFormatterPaddingCharacterKey = @"kCFNumberFormatterPaddingCharacterKey";
  111. NSString * const kCFNumberFormatterPaddingPositionKey = @"kCFNumberFormatterPaddingPositionKey";
  112. NSString * const kCFNumberFormatterPerMillSymbolKey = @"kCFNumberFormatterPerMillSymbolKey";
  113. NSString * const kCFNumberFormatterPercentSymbolKey = @"kCFNumberFormatterPercentSymbolKey";
  114. NSString * const kCFNumberFormatterPlusSignKey = @"kCFNumberFormatterPlusSignKey";
  115. NSString * const kCFNumberFormatterPositivePrefixKey = @"kCFNumberFormatterPositivePrefixKey";
  116. NSString * const kCFNumberFormatterPositiveSuffixKey = @"kCFNumberFormatterPositiveSuffixKey";
  117. NSString * const kCFNumberFormatterRoundingIncrementKey = @"kCFNumberFormatterRoundingIncrementKey";
  118. NSString * const kCFNumberFormatterRoundingModeKey = @"kCFNumberFormatterRoundingModeKey";
  119. NSString * const kCFNumberFormatterSecondaryGroupingSizeKey = @"kCFNumberFormatterSecondaryGroupingSizeKey";
  120. NSString * const kCFNumberFormatterUseGroupingSeparatorKey = @"kCFNumberFormatterUseGroupingSeparatorKey";
  121. NSString * const kCFNumberFormatterUseSignificantDigitsKey = @"kCFNumberFormatterUseSignificantDigitsKey";
  122. NSString * const kCFNumberFormatterZeroSymbolKey = @"kCFNumberFormatterZeroSymbolKey";
  123. NSString * const kCFCalendarIdentifierGregorian = @"gregorian";
  124. NSString * const kCFCalendarIdentifierBuddhist = @"buddhist";
  125. NSString * const kCFCalendarIdentifierJapanese = @"japanese";
  126. NSString * const kCFCalendarIdentifierIslamic = @"islamic";
  127. NSString * const kCFCalendarIdentifierIslamicCivil = @"islamic-civil";
  128. NSString * const kCFCalendarIdentifierHebrew = @"hebrew";
  129. NSString * const kCFCalendarIdentifierChinese = @"chinese";
  130. NSString * const kCFCalendarIdentifierRepublicOfChina = @"roc";
  131. NSString * const kCFCalendarIdentifierPersian = @"persian";
  132. NSString * const kCFCalendarIdentifierIndian = @"indian";
  133. NSString * const kCFCalendarIdentifierISO8601 = @"";
  134. NSString * const kCFCalendarIdentifierCoptic = @"coptic";
  135. NSString * const kCFCalendarIdentifierEthiopicAmeteMihret = @"ethiopic";
  136. NSString * const kCFCalendarIdentifierEthiopicAmeteAlem = @"ethiopic-amete-alem";
  137. NSString * const kCFGregorianCalendar = @"gregorian";
  138. NSString * const kCFBuddhistCalendar = @"buddhist";
  139. NSString * const kCFChineseCalendar = @"chinese";
  140. NSString * const kCFHebrewCalendar = @"hebrew";
  141. NSString * const kCFIslamicCalendar = @"islamic";
  142. NSString * const kCFIslamicCivilCalendar = @"islamic-civil";
  143. NSString * const kCFJapaneseCalendar = @"japanese";
  144. NSString * const kCFRepublicOfChinaCalendar = @"roc";
  145. NSString * const kCFPersianCalendar = @"persian";
  146. NSString * const kCFIndianCalendar = @"indian";
  147. NSString * const kCFISO8601Calendar = @"";