LanguageFixture.php 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. <?php
  2. /* Language Fixture generated on: 2011-11-20 21:59:07 : 1321822747 */
  3. /**
  4. * LanguageFixture
  5. *
  6. */
  7. class LanguageFixture extends CakeTestFixture {
  8. /**
  9. * Fields
  10. *
  11. * @var array
  12. */
  13. public $fields = array(
  14. 'id' => array('type' => 'integer', 'null' => false, 'default' => null, 'length' => 10, 'key' => 'primary', 'collate' => null, 'comment' => ''),
  15. 'name' => array('type' => 'string', 'null' => false, 'default' => null, 'length' => 40, 'collate' => 'utf8_unicode_ci', 'comment' => '', 'charset' => 'utf8'),
  16. 'ori_name' => array('type' => 'string', 'null' => false, 'default' => null, 'length' => 40, 'collate' => 'utf8_unicode_ci', 'comment' => '', 'charset' => 'utf8'),
  17. 'code' => array('type' => 'string', 'null' => false, 'default' => null, 'length' => 6, 'collate' => 'utf8_unicode_ci', 'comment' => '', 'charset' => 'utf8'),
  18. 'iso3' => array('type' => 'string', 'null' => false, 'default' => null, 'length' => 3, 'collate' => 'utf8_unicode_ci', 'comment' => '', 'charset' => 'utf8'),
  19. 'iso2' => array('type' => 'string', 'null' => false, 'default' => null, 'length' => 2, 'collate' => 'utf8_unicode_ci', 'comment' => '', 'charset' => 'utf8'),
  20. 'locale' => array('type' => 'string', 'null' => false, 'default' => null, 'length' => 30, 'collate' => 'utf8_unicode_ci', 'comment' => '', 'charset' => 'utf8'),
  21. 'locale_fallback' => array('type' => 'string', 'null' => false, 'default' => null, 'length' => 30, 'collate' => 'utf8_unicode_ci', 'comment' => '', 'charset' => 'utf8'),
  22. 'status' => array('type' => 'integer', 'null' => false, 'default' => '0', 'length' => 2, 'collate' => null, 'comment' => ''),
  23. 'sort' => array('type' => 'integer', 'null' => false, 'default' => '0', 'length' => 10, 'collate' => null, 'comment' => ''),
  24. 'modified' => array('type' => 'datetime', 'null' => false, 'default' => null, 'collate' => null, 'comment' => ''),
  25. 'indexes' => array('PRIMARY' => array('column' => 'id', 'unique' => 1)),
  26. 'tableParameters' => array()
  27. );
  28. /**
  29. * Records
  30. *
  31. * @var array
  32. */
  33. public $records = array(
  34. array(
  35. 'id' => '25',
  36. 'name' => 'Deutsch',
  37. 'ori_name' => 'German',
  38. 'code' => 'de',
  39. 'iso3' => '',
  40. 'iso2' => '',
  41. 'locale' => 'de_DE',
  42. 'locale_fallback' => 'deu',
  43. 'status' => '0',
  44. 'sort' => '0',
  45. 'modified' => '2011-07-17 15:23:08'
  46. ),
  47. array(
  48. 'id' => '2',
  49. 'name' => 'Arabic',
  50. 'ori_name' => 'Arabic',
  51. 'code' => 'ar',
  52. 'iso3' => '',
  53. 'iso2' => '',
  54. 'locale' => 'ara',
  55. 'locale_fallback' => 'ara',
  56. 'status' => '0',
  57. 'sort' => '0',
  58. 'modified' => '2011-07-17 15:23:08'
  59. ),
  60. array(
  61. 'id' => '3',
  62. 'name' => 'Arabic (U.A.E.)',
  63. 'ori_name' => 'Arabic (U.A.E.)',
  64. 'code' => 'ar',
  65. 'iso3' => '',
  66. 'iso2' => '',
  67. 'locale' => 'ar_ae',
  68. 'locale_fallback' => 'ara',
  69. 'status' => '0',
  70. 'sort' => '0',
  71. 'modified' => '2011-07-17 15:23:08'
  72. ),
  73. array(
  74. 'id' => '4',
  75. 'name' => 'Arabic (Bahrain)',
  76. 'ori_name' => 'Arabic (Bahrain)',
  77. 'code' => 'ar',
  78. 'iso3' => '',
  79. 'iso2' => '',
  80. 'locale' => 'ar_bh',
  81. 'locale_fallback' => 'ara',
  82. 'status' => '0',
  83. 'sort' => '0',
  84. 'modified' => '2011-07-17 15:23:08'
  85. ),
  86. array(
  87. 'id' => '5',
  88. 'name' => 'Arabic (Algeria)',
  89. 'ori_name' => 'Arabic (Algeria)',
  90. 'code' => 'ar',
  91. 'iso3' => '',
  92. 'iso2' => '',
  93. 'locale' => 'ar_dz',
  94. 'locale_fallback' => 'ara',
  95. 'status' => '0',
  96. 'sort' => '0',
  97. 'modified' => '2011-07-17 15:23:08'
  98. ),
  99. array(
  100. 'id' => '6',
  101. 'name' => 'Arabic (Egypt)',
  102. 'ori_name' => 'Arabic (Egypt)',
  103. 'code' => 'ar',
  104. 'iso3' => '',
  105. 'iso2' => '',
  106. 'locale' => 'ar_eg',
  107. 'locale_fallback' => 'ara',
  108. 'status' => '0',
  109. 'sort' => '0',
  110. 'modified' => '2011-07-17 15:23:08'
  111. ),
  112. array(
  113. 'id' => '7',
  114. 'name' => 'Arabic (Iraq)',
  115. 'ori_name' => 'Arabic (Iraq)',
  116. 'code' => 'ar',
  117. 'iso3' => '',
  118. 'iso2' => '',
  119. 'locale' => 'ar_iq',
  120. 'locale_fallback' => 'ara',
  121. 'status' => '0',
  122. 'sort' => '0',
  123. 'modified' => '2011-07-17 15:23:08'
  124. ),
  125. array(
  126. 'id' => '8',
  127. 'name' => 'Arabic (Jordan)',
  128. 'ori_name' => 'Arabic (Jordan)',
  129. 'code' => 'ar',
  130. 'iso3' => '',
  131. 'iso2' => '',
  132. 'locale' => 'ar_jo',
  133. 'locale_fallback' => 'ara',
  134. 'status' => '0',
  135. 'sort' => '0',
  136. 'modified' => '2011-07-17 15:23:08'
  137. ),
  138. array(
  139. 'id' => '9',
  140. 'name' => 'Arabic (Kuwait)',
  141. 'ori_name' => 'Arabic (Kuwait)',
  142. 'code' => 'ar',
  143. 'iso3' => '',
  144. 'iso2' => '',
  145. 'locale' => 'ar_kw',
  146. 'locale_fallback' => 'ara',
  147. 'status' => '0',
  148. 'sort' => '0',
  149. 'modified' => '2011-07-17 15:23:08'
  150. ),
  151. array(
  152. 'id' => '10',
  153. 'name' => 'Arabic (Lebanon)',
  154. 'ori_name' => 'Arabic (Lebanon)',
  155. 'code' => 'ar',
  156. 'iso3' => '',
  157. 'iso2' => '',
  158. 'locale' => 'ar_lb',
  159. 'locale_fallback' => 'ara',
  160. 'status' => '0',
  161. 'sort' => '0',
  162. 'modified' => '2011-07-17 15:23:08'
  163. ),
  164. );
  165. }