pwb 1.0.0 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (367) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/app/assets/javascripts/comfy/admin/cms/custom.js.coffee +1 -0
  4. data/app/assets/stylesheets/comfy/admin/cms/custom.sass +1 -0
  5. data/app/assets/stylesheets/pwb/themes/berlin/inmo.scss +6 -1
  6. data/app/assets/stylesheets/pwb/themes/berlin/main.scss +12 -11
  7. data/app/assets/stylesheets/pwb/themes/default/shame.scss +1 -1
  8. data/app/controllers/pwb/admin_panel_controller.rb +2 -2
  9. data/app/controllers/pwb/api/v1/cms_pages_controller.rb +102 -0
  10. data/app/controllers/pwb/api/v1/website_controller.rb +7 -0
  11. data/app/controllers/pwb/api_public/v1/props_controller.rb +2 -2
  12. data/app/controllers/pwb/application_api_controller.rb +3 -7
  13. data/app/controllers/pwb/application_controller.rb +2 -3
  14. data/app/controllers/pwb/comfy_controller.rb +106 -0
  15. data/app/controllers/pwb/css_controller.rb +1 -2
  16. data/app/controllers/pwb/devise/registrations_controller.rb +2 -5
  17. data/app/controllers/pwb/devise_controller.rb +3 -8
  18. data/app/controllers/pwb/export/properties_controller.rb +5 -6
  19. data/app/controllers/pwb/export/translations_controller.rb +1 -5
  20. data/app/controllers/pwb/export/web_contents_controller.rb +1 -4
  21. data/app/controllers/pwb/export/website_controller.rb +0 -1
  22. data/app/controllers/pwb/import/mls_controller.rb +3 -6
  23. data/app/controllers/pwb/import/properties_controller.rb +2 -4
  24. data/app/controllers/pwb/import/scrapper_controller.rb +6 -9
  25. data/app/controllers/pwb/props_controller.rb +10 -13
  26. data/app/controllers/pwb/search_controller.rb +16 -16
  27. data/app/controllers/pwb/sections_controller.rb +21 -22
  28. data/app/controllers/pwb/welcome_controller.rb +1 -2
  29. data/app/helpers/pwb/application_helper.rb +37 -0
  30. data/app/helpers/pwb/css_helper.rb +9 -0
  31. data/app/models/pwb/cms_page_container.rb +9 -0
  32. data/app/models/pwb/content.rb +10 -6
  33. data/app/models/pwb/prop.rb +12 -4
  34. data/app/models/pwb/section.rb +1 -1
  35. data/app/models/pwb/website.rb +14 -1
  36. data/app/resources/pwb/api/v1/cms_block_resource.rb +11 -0
  37. data/app/resources/pwb/api/v1/cms_page_resource.rb +27 -0
  38. data/app/themes/berlin/views/layouts/pwb/application.html.erb +25 -9
  39. data/app/themes/berlin/views/pwb/props/show.html.erb +5 -5
  40. data/app/themes/berlin/views/pwb/search/_search_results.html.erb +2 -1
  41. data/app/themes/berlin/views/pwb/search/buy.html.erb +1 -1
  42. data/app/themes/berlin/views/pwb/search/rent.html.erb +2 -1
  43. data/app/themes/berlin/views/pwb/sections/about_us.html.erb +3 -2
  44. data/app/themes/berlin/views/pwb/sections/cms.html.erb +34 -0
  45. data/app/themes/berlin/views/pwb/sections/contact_us.html.erb +2 -1
  46. data/app/themes/berlin/views/pwb/welcome/_about_us_to_del.html.erb +35 -0
  47. data/app/themes/berlin/views/pwb/welcome/{_adv_search.html.erb → _adv_search_to_del.html.erb} +0 -0
  48. data/app/themes/berlin/views/pwb/welcome/_landing_carousel.html.erb +1 -1
  49. data/app/themes/berlin/views/pwb/welcome/_latest_properties.html.erb +2 -1
  50. data/app/themes/default/views/layouts/pwb/application.html.erb +24 -3
  51. data/app/themes/default/views/pwb/sections/about_us.html.erb +1 -2
  52. data/app/themes/default/views/pwb/sections/cms.html.erb +30 -0
  53. data/app/themes/default/views/pwb/welcome/_single_property_row.html.erb +2 -1
  54. data/app/themes/default/views/pwb/welcome/index.html.erb +3 -1
  55. data/app/views/layouts/pwb/devise.html.erb +1 -0
  56. data/app/views/pwb/_analytics.html.erb +15 -0
  57. data/app/views/pwb/_footer.html.erb +0 -12
  58. data/app/views/pwb/custom_css/{berlin.css.erb → _berlin.css.erb} +0 -1
  59. data/app/views/pwb/custom_css/{default.css.erb → _default.css.erb} +0 -1
  60. data/app/views/pwb/custom_css/_shared.css.erb +1 -0
  61. data/app/views/pwb/props/_images_section_carousel.html.erb +13 -27
  62. data/app/views/pwb/props/_prop_info_list.html.erb +1 -1
  63. data/app/views/pwb/search/_search_result_item.html.erb +62 -64
  64. data/app/views/pwb/search/_search_result_item_to_del.html.erb +3 -3
  65. data/config/client_setups/default.json +59 -21
  66. data/config/cms_page_containers/about-us.json +18 -0
  67. data/config/cms_page_containers/about.json +107 -0
  68. data/config/cms_page_containers/landing.json +19 -0
  69. data/config/cms_page_containers/legal.json +17 -0
  70. data/config/cms_page_containers/sell.json +96 -0
  71. data/config/initializers/cloudinary.rb +3 -0
  72. data/config/initializers/comfortable_mexican_sofa.rb +142 -0
  73. data/config/locales/admin.en.yml +213 -0
  74. data/config/locales/admin.es.yml +32 -17
  75. data/config/locales/admin.ru.yml +432 -0
  76. data/config/locales/admin.zh.yml.tmp +226 -0
  77. data/config/locales/de.yml +31 -32
  78. data/config/locales/devise.zh-HK.yml +119 -0
  79. data/config/locales/en.yml +3 -0
  80. data/config/locales/es.yml +3 -5
  81. data/config/locales/rails.zh-HK.yml +210 -0
  82. data/config/locales/ru.yml +11 -11
  83. data/config/locales/zh-HK.yml +154 -0
  84. data/config/routes.rb +17 -2
  85. data/db/cms_fixtures/cms/categories/pages.yml +3 -0
  86. data/db/cms_fixtures/cms/files/_rerenting-landing_framed.png.yml +6 -0
  87. data/{spec/dummy/public/system/comfy/cms/files/files/000/000/003/original → db/cms_fixtures/cms/files}/rerenting-landing_framed.png +0 -0
  88. data/db/cms_fixtures/cms/layouts/about-us/attributes.yml +4 -0
  89. data/db/cms_fixtures/cms/layouts/about-us/content.html +0 -0
  90. data/db/cms_fixtures/cms/layouts/about-us/javascript.js +0 -0
  91. data/db/cms_fixtures/cms/layouts/about-us/people/attributes.yml +4 -0
  92. data/db/cms_fixtures/cms/layouts/about-us/people/content.html +55 -0
  93. data/db/cms_fixtures/cms/layouts/about-us/services/attributes.yml +4 -0
  94. data/db/cms_fixtures/cms/layouts/about-us/services/content.html +32 -0
  95. data/db/cms_fixtures/cms/layouts/about-us/services/javascript.js +0 -0
  96. data/db/cms_fixtures/cms/layouts/about-us/services/stylesheet.css +0 -0
  97. data/db/cms_fixtures/cms/layouts/about-us/stylesheet.css +0 -0
  98. data/db/cms_fixtures/cms/layouts/default-layout/attributes.yml +4 -0
  99. data/db/cms_fixtures/cms/layouts/default-layout/content.html +51 -0
  100. data/db/cms_fixtures/cms/layouts/default-layout/javascript.js +0 -0
  101. data/db/cms_fixtures/cms/layouts/default-layout/stylesheet.css +0 -0
  102. data/db/cms_fixtures/cms/pages/index/about-us/attributes.yml +8 -0
  103. data/db/cms_fixtures/cms/pages/index/about-us/people/attributes.yml +8 -0
  104. data/db/cms_fixtures/cms/pages/index/about-us/people/de/attributes.yml +8 -0
  105. data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_details_a.html +1 -0
  106. data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_details_b.html +1 -0
  107. data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_details_c.html +1 -0
  108. data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_details_d.html +1 -0
  109. data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_img_url_a.html +1 -0
  110. data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_img_url_b.html +1 -0
  111. data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_img_url_c.html +1 -0
  112. data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_img_url_d.html +1 -0
  113. data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_name_a.html +1 -0
  114. data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_name_b.html +1 -0
  115. data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_name_c.html +1 -0
  116. data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_name_d.html +1 -0
  117. data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_title_a.html +1 -0
  118. data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_title_b.html +1 -0
  119. data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_title_c.html +1 -0
  120. data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_title_d.html +1 -0
  121. data/db/cms_fixtures/cms/pages/index/about-us/people/en/attributes.yml +8 -0
  122. data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_details_a.html +1 -0
  123. data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_details_b.html +1 -0
  124. data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_details_c.html +1 -0
  125. data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_details_d.html +1 -0
  126. data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_img_url_a.html +1 -0
  127. data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_img_url_b.html +1 -0
  128. data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_img_url_c.html +1 -0
  129. data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_img_url_d.html +1 -0
  130. data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_name_a.html +1 -0
  131. data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_name_b.html +1 -0
  132. data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_name_c.html +1 -0
  133. data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_name_d.html +1 -0
  134. data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_title_a.html +1 -0
  135. data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_title_b.html +1 -0
  136. data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_title_c.html +1 -0
  137. data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_title_d.html +1 -0
  138. data/db/cms_fixtures/cms/pages/index/about-us/people/es/attributes.yml +8 -0
  139. data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_details_a.html +1 -0
  140. data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_details_b.html +1 -0
  141. data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_details_c.html +1 -0
  142. data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_details_d.html +1 -0
  143. data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_img_url_a.html +1 -0
  144. data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_img_url_b.html +1 -0
  145. data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_img_url_c.html +1 -0
  146. data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_img_url_d.html +1 -0
  147. data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_name_a.html +1 -0
  148. data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_name_b.html +1 -0
  149. data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_name_c.html +1 -0
  150. data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_name_d.html +1 -0
  151. data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_title_a.html +1 -0
  152. data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_title_b.html +1 -0
  153. data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_title_c.html +1 -0
  154. data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_title_d.html +1 -0
  155. data/db/cms_fixtures/cms/pages/index/about-us/people/pt/attributes.yml +8 -0
  156. data/db/cms_fixtures/cms/pages/index/about-us/people/pt/person_details_a.html +1 -0
  157. data/db/cms_fixtures/cms/pages/index/about-us/people/pt/person_details_b.html +1 -0
  158. data/db/cms_fixtures/cms/pages/index/about-us/people/pt/person_details_c.html +1 -0
  159. data/db/cms_fixtures/cms/pages/index/about-us/people/pt/person_details_d.html +1 -0
  160. data/db/cms_fixtures/cms/pages/index/about-us/people/pt/person_name_a.html +1 -0
  161. data/db/cms_fixtures/cms/pages/index/about-us/people/pt/person_name_b.html +1 -0
  162. data/db/cms_fixtures/cms/pages/index/about-us/people/pt/person_name_c.html +1 -0
  163. data/db/cms_fixtures/cms/pages/index/about-us/people/pt/person_name_d.html +1 -0
  164. data/db/cms_fixtures/cms/pages/index/about-us/people/pt/person_title_a.html +1 -0
  165. data/db/cms_fixtures/cms/pages/index/about-us/people/pt/person_title_b.html +1 -0
  166. data/db/cms_fixtures/cms/pages/index/about-us/people/pt/person_title_c.html +1 -0
  167. data/db/cms_fixtures/cms/pages/index/about-us/people/pt/person_title_d.html +1 -0
  168. data/db/cms_fixtures/cms/pages/index/about-us/people/ru/attributes.yml +8 -0
  169. data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_details_a.html +1 -0
  170. data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_details_b.html +1 -0
  171. data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_details_c.html +1 -0
  172. data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_details_d.html +1 -0
  173. data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_img_url_a.html +1 -0
  174. data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_img_url_b.html +1 -0
  175. data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_img_url_c.html +1 -0
  176. data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_img_url_d.html +1 -0
  177. data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_name_a.html +1 -0
  178. data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_name_b.html +1 -0
  179. data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_name_c.html +1 -0
  180. data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_name_d.html +1 -0
  181. data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_title_a.html +1 -0
  182. data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_title_b.html +1 -0
  183. data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_title_c.html +1 -0
  184. data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_title_d.html +1 -0
  185. data/db/cms_fixtures/cms/pages/index/about-us/services/attributes.yml +8 -0
  186. data/db/cms_fixtures/cms/pages/index/about-us/services/content_a.html +1 -0
  187. data/db/cms_fixtures/cms/pages/index/about-us/services/content_b.html +0 -0
  188. data/db/cms_fixtures/cms/pages/index/about-us/services/content_c.html +0 -0
  189. data/db/cms_fixtures/cms/pages/index/about-us/services/de/attributes.yml +8 -0
  190. data/db/cms_fixtures/cms/pages/index/about-us/services/de/content_a.html +1 -0
  191. data/db/cms_fixtures/cms/pages/index/about-us/services/de/content_b.html +1 -0
  192. data/db/cms_fixtures/cms/pages/index/about-us/services/de/content_c.html +1 -0
  193. data/db/cms_fixtures/cms/pages/index/about-us/services/de/title_a.html +1 -0
  194. data/db/cms_fixtures/cms/pages/index/about-us/services/de/title_b.html +1 -0
  195. data/db/cms_fixtures/cms/pages/index/about-us/services/de/title_c.html +1 -0
  196. data/db/cms_fixtures/cms/pages/index/about-us/services/en/attributes.yml +8 -0
  197. data/db/cms_fixtures/cms/pages/index/about-us/services/en/content_a.html +1 -0
  198. data/db/cms_fixtures/cms/pages/index/about-us/services/en/content_b.html +1 -0
  199. data/db/cms_fixtures/cms/pages/index/about-us/services/en/content_c.html +1 -0
  200. data/db/cms_fixtures/cms/pages/index/about-us/services/en/title_a.html +1 -0
  201. data/db/cms_fixtures/cms/pages/index/about-us/services/en/title_b.html +1 -0
  202. data/db/cms_fixtures/cms/pages/index/about-us/services/en/title_c.html +1 -0
  203. data/db/cms_fixtures/cms/pages/index/about-us/services/es/attributes.yml +8 -0
  204. data/db/cms_fixtures/cms/pages/index/about-us/services/es/content_a.html +1 -0
  205. data/db/cms_fixtures/cms/pages/index/about-us/services/es/content_b.html +1 -0
  206. data/db/cms_fixtures/cms/pages/index/about-us/services/es/content_c.html +1 -0
  207. data/db/cms_fixtures/cms/pages/index/about-us/services/es/title_a.html +1 -0
  208. data/db/cms_fixtures/cms/pages/index/about-us/services/es/title_b.html +1 -0
  209. data/db/cms_fixtures/cms/pages/index/about-us/services/es/title_c.html +1 -0
  210. data/db/cms_fixtures/cms/pages/index/about-us/services/title_a.html +1 -0
  211. data/db/cms_fixtures/cms/pages/index/about-us/services/title_b.html +0 -0
  212. data/db/cms_fixtures/cms/pages/index/about-us/services/title_c.html +0 -0
  213. data/db/cms_fixtures/cms/pages/index/attributes.yml +8 -0
  214. data/db/cms_fixtures/cms/pages/index/content.html +1 -0
  215. data/db/cms_fixtures/cms/pages/index/title.html +0 -0
  216. data/db/cms_fixtures/cms/snippets/snippet1/attributes.yml +3 -0
  217. data/db/cms_fixtures/cms/snippets/snippet1/content.html +1 -0
  218. data/db/cms_fixtures/sample-site/categories/files.yml +1 -0
  219. data/db/cms_fixtures/sample-site/categories/pages.yml +1 -0
  220. data/db/cms_fixtures/sample-site/categories/snippets.yml +1 -0
  221. data/db/cms_fixtures/sample-site/files/_sample.jpg.yml +5 -0
  222. data/db/cms_fixtures/sample-site/files/sample.jpg +0 -0
  223. data/db/cms_fixtures/sample-site/layouts/default/attributes.yml +1 -0
  224. data/db/cms_fixtures/sample-site/layouts/default/content.html +5 -0
  225. data/db/cms_fixtures/sample-site/layouts/default/javascript.js +1 -0
  226. data/db/cms_fixtures/sample-site/layouts/default/nested/attributes.yml +2 -0
  227. data/db/cms_fixtures/sample-site/layouts/default/nested/content.haml +3 -0
  228. data/db/cms_fixtures/sample-site/layouts/default/nested/javascript.js +1 -0
  229. data/db/cms_fixtures/sample-site/layouts/default/nested/stylesheet.css +1 -0
  230. data/db/cms_fixtures/sample-site/layouts/default/stylesheet.css +1 -0
  231. data/db/cms_fixtures/sample-site/pages/index/attributes.yml +6 -0
  232. data/db/cms_fixtures/sample-site/pages/index/child/attributes.yml +3 -0
  233. data/db/cms_fixtures/sample-site/pages/index/child/left.haml +1 -0
  234. data/db/cms_fixtures/sample-site/pages/index/child/right.html +1 -0
  235. data/db/cms_fixtures/sample-site/pages/index/child/thumbnail.png +0 -0
  236. data/db/cms_fixtures/sample-site/pages/index/content.html +2 -0
  237. data/db/cms_fixtures/sample-site/snippets/default/attributes.yml +4 -0
  238. data/db/cms_fixtures/sample-site/snippets/default/content.html +1 -0
  239. data/db/migrate/20170513221300_create_cms.rb +133 -0
  240. data/db/seeds/spain/translations.rb +2 -2
  241. data/db/seeds/translations_ca.rb +92 -0
  242. data/db/seeds/translations_de.rb +86 -85
  243. data/db/seeds/translations_en.rb +73 -73
  244. data/db/seeds/translations_es.rb +79 -78
  245. data/db/seeds/translations_ru.rb +92 -0
  246. data/db/yml_seeds/prop/flat_for_rent.yml +4 -4
  247. data/db/yml_seeds/sections.yml +2 -2
  248. data/db/yml_seeds/website.yml +3 -1
  249. data/lib/pwb/cms_data_loader.rb +38 -0
  250. data/lib/pwb/engine.rb +1 -0
  251. data/lib/pwb/locale_loader.rb +47 -0
  252. data/lib/pwb/seeder.rb +8 -5
  253. data/lib/pwb/version.rb +1 -1
  254. data/lib/tasks/pwb_tasks.rake +1 -0
  255. data/spec/dummy/config/routes.rb +5 -0
  256. data/spec/dummy/config/secrets.yml +5 -0
  257. data/spec/dummy/db/schema.rb +111 -1
  258. data/spec/dummy/log/development.log +0 -0
  259. data/spec/features/pwb/admin_spec.rb +14 -40
  260. data/spec/features/pwb/admin_spec_tmp.rb +54 -0
  261. data/spec/fixtures/to_import/pwb-properties.csv +2 -2
  262. data/spec/views/pwb/application_layout.html.erb_spec.rb +1 -0
  263. metadata +207 -235
  264. data/app/themes/berlin/views/pwb/welcome/_about_us.html.erb +0 -36
  265. data/db/seeds/translations_others.rb +0 -215
  266. data/spec/dummy/public/assets/application-af04b226fd7202dfc532ce7aedb95a0128277937e90d3b3a3d35e1cce9e16886.css +0 -16
  267. data/spec/dummy/public/assets/application-af04b226fd7202dfc532ce7aedb95a0128277937e90d3b3a3d35e1cce9e16886.css.gz +0 -0
  268. data/spec/dummy/public/assets/application-ec8550e416fd8df1557ddb7f132ccd38baaafd36e4c5c9aff8420fbd47c0313f.js +0 -617
  269. data/spec/dummy/public/assets/application-ec8550e416fd8df1557ddb7f132ccd38baaafd36e4c5c9aff8420fbd47c0313f.js.gz +0 -0
  270. data/spec/dummy/public/assets/bootstrap/glyphicons-halflings-regular-13634da87d9e23f8c3ed9108ce1724d183a39ad072e73e1b3d8cbf646d2d0407.eot +0 -0
  271. data/spec/dummy/public/assets/bootstrap/glyphicons-halflings-regular-13634da87d9e23f8c3ed9108ce1724d183a39ad072e73e1b3d8cbf646d2d0407.eot.gz +0 -0
  272. data/spec/dummy/public/assets/bootstrap/glyphicons-halflings-regular-42f60659d265c1a3c30f9fa42abcbb56bd4a53af4d83d316d6dd7a36903c43e5.svg +0 -288
  273. data/spec/dummy/public/assets/bootstrap/glyphicons-halflings-regular-42f60659d265c1a3c30f9fa42abcbb56bd4a53af4d83d316d6dd7a36903c43e5.svg.gz +0 -0
  274. data/spec/dummy/public/assets/bootstrap/glyphicons-halflings-regular-a26394f7ede100ca118eff2eda08596275a9839b959c226e15439557a5a80742.woff +0 -0
  275. data/spec/dummy/public/assets/bootstrap/glyphicons-halflings-regular-e395044093757d82afcb138957d06a1ea9361bdcf0b442d06a18a8051af57456.ttf +0 -0
  276. data/spec/dummy/public/assets/bootstrap/glyphicons-halflings-regular-e395044093757d82afcb138957d06a1ea9361bdcf0b442d06a18a8051af57456.ttf.gz +0 -0
  277. data/spec/dummy/public/assets/bootstrap/glyphicons-halflings-regular-fe185d11a49676890d47bb783312a0cda5a44c4039214094e7957b4c040ef11c.woff2 +0 -0
  278. data/spec/dummy/public/assets/pwb/application-0dc6ff845cde8e032ed365593c17fe09c18a6966d44f551946bf1673d8d1ac51.css +0 -13
  279. data/spec/dummy/public/assets/pwb/application-0dc6ff845cde8e032ed365593c17fe09c18a6966d44f551946bf1673d8d1ac51.css.gz +0 -0
  280. data/spec/dummy/public/assets/pwb/application-b4df8e7ae7700a0d09d88175af77e7f457ca2fbe15ae08450551ebf3bfb0c4d1.js +0 -15656
  281. data/spec/dummy/public/assets/pwb/application-b4df8e7ae7700a0d09d88175af77e7f457ca2fbe15ae08450551ebf3bfb0c4d1.js.gz +0 -0
  282. data/spec/dummy/public/assets/pwb/themes/berlin-279c2e3a7fa11a902fdee83a6819dcc315ff8eb240cfad21b1322cedadb07ea7.js +0 -18690
  283. data/spec/dummy/public/assets/pwb/themes/berlin-279c2e3a7fa11a902fdee83a6819dcc315ff8eb240cfad21b1322cedadb07ea7.js.gz +0 -0
  284. data/spec/dummy/public/assets/pwb/themes/berlin-8038d5cfd670e73fbffb581f6bb8d8c00ac448957945622c5c34438c467d218b.css +0 -8582
  285. data/spec/dummy/public/assets/pwb/themes/berlin-8038d5cfd670e73fbffb581f6bb8d8c00ac448957945622c5c34438c467d218b.css.gz +0 -0
  286. data/spec/dummy/public/assets/pwb/themes/chic-facdff61de4827adfd797b6a36ffd6c8b432072df7190ed722d039f971caa539.css +0 -3500
  287. data/spec/dummy/public/assets/pwb/themes/chic-facdff61de4827adfd797b6a36ffd6c8b432072df7190ed722d039f971caa539.css.gz +0 -0
  288. data/spec/dummy/public/assets/pwb/themes/default-d697fb0c278f500986e614ddd7eb41fd7db502a54f3370b3e8166cc1714509d0.css +0 -8423
  289. data/spec/dummy/public/assets/pwb/themes/default-d697fb0c278f500986e614ddd7eb41fd7db502a54f3370b3e8166cc1714509d0.css.gz +0 -0
  290. data/spec/dummy/public/assets/pwb_admin_panel/application-2d624898965d7a347eb7f365feab34257032c25051633370811ed7dfd24d7c8c.js +0 -61
  291. data/spec/dummy/public/assets/pwb_admin_panel/application-2d624898965d7a347eb7f365feab34257032c25051633370811ed7dfd24d7c8c.js.gz +0 -0
  292. data/spec/dummy/public/assets/pwb_admin_panel/application-f0e38d58d1ce32501b22edd16697f45b561fa44b5be9265398a05e8dee169885.css +0 -17970
  293. data/spec/dummy/public/assets/pwb_admin_panel/application-f0e38d58d1ce32501b22edd16697f45b561fa44b5be9265398a05e8dee169885.css.gz +0 -0
  294. data/spec/dummy/public/img/about-us.png +0 -0
  295. data/spec/dummy/public/img/agents/agent-1.png +0 -0
  296. data/spec/dummy/public/img/agents/agent-3.png +0 -0
  297. data/spec/dummy/public/img/agents/agent-4.png +0 -0
  298. data/spec/dummy/public/img/agents/agent-5.png +0 -0
  299. data/spec/dummy/public/img/banner-ads.jpg +0 -0
  300. data/spec/dummy/public/img/blog-img-1.jpg +0 -0
  301. data/spec/dummy/public/img/blog-img-2.jpg +0 -0
  302. data/spec/dummy/public/img/blog-img-3.jpg +0 -0
  303. data/spec/dummy/public/img/client-brand-1.png +0 -0
  304. data/spec/dummy/public/img/client-brand-2.png +0 -0
  305. data/spec/dummy/public/img/client-brand-3.png +0 -0
  306. data/spec/dummy/public/img/client-brand-4.png +0 -0
  307. data/spec/dummy/public/img/client-brand-5.png +0 -0
  308. data/spec/dummy/public/img/favicon.ico +0 -0
  309. data/spec/dummy/public/img/gallery/big/1.jpg +0 -0
  310. data/spec/dummy/public/img/gallery/big/10.jpg +0 -0
  311. data/spec/dummy/public/img/gallery/big/11 - Copy.jpg +0 -0
  312. data/spec/dummy/public/img/gallery/big/12.jpg +0 -0
  313. data/spec/dummy/public/img/gallery/big/2.jpg +0 -0
  314. data/spec/dummy/public/img/gallery/big/3.jpg +0 -0
  315. data/spec/dummy/public/img/gallery/big/4.jpg +0 -0
  316. data/spec/dummy/public/img/gallery/big/5.jpg +0 -0
  317. data/spec/dummy/public/img/gallery/big/6.jpg +0 -0
  318. data/spec/dummy/public/img/gallery/big/7.jpg +0 -0
  319. data/spec/dummy/public/img/gallery/big/8.jpg +0 -0
  320. data/spec/dummy/public/img/gallery/big/9.jpg +0 -0
  321. data/spec/dummy/public/img/gallery/fancybox_buttons.png +0 -0
  322. data/spec/dummy/public/img/gallery/fancybox_loading.gif +0 -0
  323. data/spec/dummy/public/img/gallery/fancybox_loading@2x.gif +0 -0
  324. data/spec/dummy/public/img/gallery/fancybox_overlay.png +0 -0
  325. data/spec/dummy/public/img/gallery/fancybox_sprite.png +0 -0
  326. data/spec/dummy/public/img/gallery/fancybox_sprite@2x.png +0 -0
  327. data/spec/dummy/public/img/gallery/small/1.jpg +0 -0
  328. data/spec/dummy/public/img/gallery/small/10.jpg +0 -0
  329. data/spec/dummy/public/img/gallery/small/11.jpg +0 -0
  330. data/spec/dummy/public/img/gallery/small/12.jpg +0 -0
  331. data/spec/dummy/public/img/gallery/small/2.jpg +0 -0
  332. data/spec/dummy/public/img/gallery/small/3.jpg +0 -0
  333. data/spec/dummy/public/img/gallery/small/4.jpg +0 -0
  334. data/spec/dummy/public/img/gallery/small/5.jpg +0 -0
  335. data/spec/dummy/public/img/gallery/small/6.jpg +0 -0
  336. data/spec/dummy/public/img/gallery/small/7.jpg +0 -0
  337. data/spec/dummy/public/img/gallery/small/8.jpg +0 -0
  338. data/spec/dummy/public/img/gallery/small/9.jpg +0 -0
  339. data/spec/dummy/public/img/item/1.jpg +0 -0
  340. data/spec/dummy/public/img/item/2.jpg +0 -0
  341. data/spec/dummy/public/img/item/3.jpg +0 -0
  342. data/spec/dummy/public/img/item/4.jpg +0 -0
  343. data/spec/dummy/public/img/item/5.jpg +0 -0
  344. data/spec/dummy/public/img/item/6.jpg +0 -0
  345. data/spec/dummy/public/img/logo.png +0 -0
  346. data/spec/dummy/public/img/promo-banner.jpg +0 -0
  347. data/spec/dummy/public/img/property-header-bg.jpg +0 -0
  348. data/spec/dummy/public/img/property-view-2.jpg +0 -0
  349. data/spec/dummy/public/img/signin-bg.jpg +0 -0
  350. data/spec/dummy/public/img/slider/1.jpg +0 -0
  351. data/spec/dummy/public/img/slider/2.jpg +0 -0
  352. data/spec/dummy/public/img/slider/3.jpg +0 -0
  353. data/spec/dummy/public/img/slider/4.jpg +0 -0
  354. data/spec/dummy/public/img/slider/5.jpg +0 -0
  355. data/spec/dummy/public/img/slider/6.jpg +0 -0
  356. data/spec/dummy/public/img/testimonial-1.png +0 -0
  357. data/spec/dummy/public/img/testimonial-2.png +0 -0
  358. data/spec/dummy/public/img/testimonial-3.png +0 -0
  359. data/spec/dummy/public/img/testimonial-bg.jpg +0 -0
  360. data/spec/dummy/public/js/bootstrap.js +0 -2363
  361. data/spec/dummy/public/js/custom.js +0 -355
  362. data/spec/dummy/public/js/jquery.fancybox.pack.js +0 -46
  363. data/spec/dummy/public/js/jquery.min.js +0 -5
  364. data/spec/dummy/public/js/jquery.mixitup.js +0 -2098
  365. data/spec/dummy/public/js/nouislider.js +0 -1899
  366. data/spec/dummy/public/js/slick.js +0 -2670
  367. data/spec/dummy/public/system/comfy/cms/files/files/000/000/003/cms_thumb/rerenting-landing_framed.png +0 -0
@@ -1,4 +1,7 @@
1
1
  en:
2
+ pages:
3
+ aboutUs: "About us"
4
+ sell: "Sell"
2
5
  devise:
3
6
  user_update_success_title: Congratulations
4
7
  user_update_success: You have successfully updated your account.
@@ -18,7 +18,7 @@ es:
18
18
  'false': 'No'
19
19
  findAProperty: Encuentra tu casa
20
20
  findByReference: Buscar por referencia
21
- forRent: En alquiler
21
+ forRent: En arriendo
22
22
  forSale: En venta
23
23
  go: Ir
24
24
  labels:
@@ -53,7 +53,7 @@ es:
53
53
  buy: Comprar
54
54
  contactUs: Contactar
55
55
  home: Inicio
56
- rent: Alquilar
56
+ rent: Arrendar
57
57
  sell: Vender
58
58
  legalAdvice: Aviso Legal
59
59
  privacyPolicy: Politica de Privacidad
@@ -87,7 +87,7 @@ es:
87
87
  price: Precio
88
88
  propertyType: Tipo de Propiedad
89
89
  ref: Ref.
90
- propertyForRent: Inmueble para alquiler
90
+ propertyForRent: Inmueble para arrendar
91
91
  propertyForSale: Inmueble a la venta
92
92
  propertyNotFound: Propiedad no encontrada
93
93
  pwb:
@@ -153,5 +153,3 @@ es:
153
153
  home: Inicio
154
154
  sell: Vender
155
155
  tagLine: Lema
156
-
157
-
@@ -0,0 +1,210 @@
1
+ # https://raw.githubusercontent.com/svenfuchs/rails-i18n/master/rails/locale/zh-HK.yml
2
+ zh-HK:
3
+ activerecord:
4
+ errors:
5
+ messages:
6
+ record_invalid: "驗證失敗︰%{errors}"
7
+ restrict_dependent_destroy:
8
+ has_one: 由於%{record}依賴此記錄,無法移除
9
+ has_many: 由於%{record}依賴此記錄,無法移除
10
+ date:
11
+ abbr_day_names:
12
+ - 周日
13
+ - 周一
14
+ - 周二
15
+ - 周三
16
+ - 周四
17
+ - 周五
18
+ - 周六
19
+ abbr_month_names:
20
+ -
21
+ - 1月
22
+ - 2月
23
+ - 3月
24
+ - 4月
25
+ - 5月
26
+ - 6月
27
+ - 7月
28
+ - 8月
29
+ - 9月
30
+ - 10月
31
+ - 11月
32
+ - 12月
33
+ day_names:
34
+ - 星期日
35
+ - 星期一
36
+ - 星期二
37
+ - 星期三
38
+ - 星期四
39
+ - 星期五
40
+ - 星期六
41
+ formats:
42
+ default: "%Y-%m-%d"
43
+ long: "%Y年%m月%d日"
44
+ short: "%m月%d日"
45
+ month_names:
46
+ -
47
+ - 一月
48
+ - 二月
49
+ - 三月
50
+ - 四月
51
+ - 五月
52
+ - 六月
53
+ - 七月
54
+ - 八月
55
+ - 九月
56
+ - 十月
57
+ - 十一月
58
+ - 十二月
59
+ order:
60
+ - :year
61
+ - :month
62
+ - :day
63
+ datetime:
64
+ distance_in_words:
65
+ about_x_hours:
66
+ one: 約一小時
67
+ other: 約%{count}小時
68
+ about_x_months:
69
+ one: 約一個月
70
+ other: 約%{count}個月
71
+ about_x_years:
72
+ one: 約一年
73
+ other: 約%{count}年
74
+ almost_x_years:
75
+ one: 接近一年
76
+ other: 接近%{count}年
77
+ half_a_minute: 半分鐘
78
+ less_than_x_minutes:
79
+ one: 不到一分鐘
80
+ other: 不到%{count}分鐘
81
+ less_than_x_seconds:
82
+ one: 不到一秒
83
+ other: 不到%{count}秒
84
+ over_x_years:
85
+ one: 超過一年
86
+ other: 超過%{count}年
87
+ x_days:
88
+ one: 一天
89
+ other: "%{count}天"
90
+ x_minutes:
91
+ one: 一分鐘
92
+ other: "%{count}分鐘"
93
+ x_months:
94
+ one: 一個月
95
+ other: "%{count}個月"
96
+ x_seconds:
97
+ one: 一秒
98
+ other: "%{count}秒"
99
+ prompts:
100
+ day: 日
101
+ hour: 時
102
+ minute: 分
103
+ month: 月
104
+ second: 秒
105
+ year: 年
106
+ errors:
107
+ format: "%{attribute} %{message}"
108
+ messages:
109
+ accepted: 必定要被接受
110
+ blank: "不可以是空白"
111
+ present: "必定要是空白"
112
+ confirmation: 兩次輸入不一致
113
+ empty: "不可以留空"
114
+ equal_to: "必須等於 %{count}"
115
+ even: "必須要是雙數"
116
+ exclusion: "是被保留的關鍵字"
117
+ greater_than: "必須大於 %{count}"
118
+ greater_than_or_equal_to: "必須大於或等於 %{count}"
119
+ inclusion: "並非可被接受的內容"
120
+ invalid: "是無效的"
121
+ less_than: "必須小於 %{count}"
122
+ less_than_or_equal_to: "必須小於或等於 %{count}"
123
+ model_invalid: "驗證失敗︰%{errors}"
124
+ not_a_number: "必須是數字"
125
+ not_an_integer: "必須是整數"
126
+ odd: "必須是單數"
127
+ required: 必須存在
128
+ taken: "已被使用"
129
+ too_long:
130
+ one: 太長(最長為一個字元)
131
+ other: 太長(最長為 %{count} 個字元)
132
+ too_short:
133
+ one: 太短(最少為一個字元)
134
+ other: 太短(最少為 %{count} 個字元)
135
+ wrong_length:
136
+ one: 字數錯誤 (應為一個字元)
137
+ other: 字數錯誤 (應為 %{count} 個字元)
138
+ other_than: "不可以是 %{count} 個字"
139
+ template:
140
+ body: 以下欄位發生問題︰
141
+ header:
142
+ one: 發生一項錯誤,以致 %{model} 未能儲存。
143
+ other: 發生%{count}項錯誤,以致 %{model} 未能儲存。
144
+ helpers:
145
+ select:
146
+ prompt: 請選擇
147
+ submit:
148
+ create: 新增%{model}
149
+ submit: 儲存%{model}
150
+ update: 更新%{model}
151
+ number:
152
+ currency:
153
+ format:
154
+ delimiter: ","
155
+ format: "%u %n"
156
+ precision: 2
157
+ separator: "."
158
+ significant: false
159
+ strip_insignificant_zeros: false
160
+ unit: HK$
161
+ format:
162
+ delimiter: ","
163
+ precision: 3
164
+ separator: "."
165
+ significant: false
166
+ strip_insignificant_zeros: false
167
+ human:
168
+ decimal_units:
169
+ format: "%n %u"
170
+ units:
171
+ billion: 十億
172
+ million: 百萬
173
+ quadrillion: 千兆
174
+ thousand: 千
175
+ trillion: 兆
176
+ unit: ''
177
+ format:
178
+ delimiter: ''
179
+ precision: 1
180
+ significant: false
181
+ strip_insignificant_zeros: false
182
+ storage_units:
183
+ format: "%n %u"
184
+ units:
185
+ byte:
186
+ one: Byte
187
+ other: Bytes
188
+ gb: GB
189
+ kb: KB
190
+ mb: MB
191
+ tb: TB
192
+ percentage:
193
+ format:
194
+ delimiter: ''
195
+ format: "%n%"
196
+ precision:
197
+ format:
198
+ delimiter: ''
199
+ support:
200
+ array:
201
+ last_word_connector: 和
202
+ two_words_connector: 和
203
+ words_connector: "、"
204
+ time:
205
+ am: 上午
206
+ formats:
207
+ default: "%Y年%m月%d日 %A %H:%M:%S %Z"
208
+ long: "%Y年%m月%d日 %H:%M"
209
+ short: "%m月%d日 %H:%M"
210
+ pm: 下午
@@ -1,8 +1,8 @@
1
1
  ---
2
2
  ru:
3
3
  devise:
4
- user_update_success_title: Congratulations
5
- user_update_success: You have successfully updated your account.
4
+ user_update_success_title: Поздравляем
5
+ user_update_success: Вы успешно обновили ваш личный кабинет
6
6
  aboutUs: О нас
7
7
  address: Адрес
8
8
  back: назад
@@ -16,7 +16,7 @@ ru:
16
16
  editarPropiedad: Редактировать недвижимость
17
17
  email: e-mail
18
18
  'false': нет
19
- findAProperty: Найти недвижимость
19
+ findAProperty: Найти недвижимость
20
20
  findByReference: Поиск по рекомендациям
21
21
  forRent: Аренда
22
22
  forSale: Продажа
@@ -27,7 +27,7 @@ ru:
27
27
  new: Новый
28
28
  save: Сохранить
29
29
  leaveBlank: оставьте это поле пустым, если вы не хотите заполнять
30
- legalAdvice: Официальное уведомление
30
+ legalAdvice: публичное соглашение
31
31
  listadoPropiedades: Список недвижимости
32
32
  mailers:
33
33
  confirm_registration: Пожалуйста, подтвердите регистрацию по ссылке ниже
@@ -77,7 +77,7 @@ ru:
77
77
  extras: Особенности
78
78
  furniture: Мебель
79
79
  goToProperty: Вид недвижимости
80
- highlightedProperty: Выдающаяся недвижимость
80
+ highlightedProperty: Популярная недвижимость
81
81
  locality: Местонахождение
82
82
  map: карта
83
83
  monthlyRentalPriceHighSeason: Цена за месяц (горячий сезон)
@@ -86,13 +86,13 @@ ru:
86
86
  operationType: Вид
87
87
  price: Цена
88
88
  propertyType: Тип недвижимости
89
- ref: ссылка
90
- propertyForRent: Недвижимость в аренду
91
- propertyForSale: Недвижимость на продажу
89
+ ref: номер объявления
90
+ propertyForRent: Аренда
91
+ propertyForSale: Продажа
92
92
  propertyNotFound: Недвижимость не найдена
93
93
  pwb:
94
94
  copyright: "%{company_name} Inc. Все права защищены."
95
- createPrompt: Создать свой сайт для агентства недвижимости
95
+ createPrompt: Создать свой сайт для агенства недвижимости
96
96
  createTagLine: Пожалуйста, введите данные для вашей учетной записи
97
97
  getStarted: Начать прямо сейчас
98
98
  registerNow: Зарегистрируйтесь сейчас
@@ -100,7 +100,7 @@ ru:
100
100
  минут
101
101
  tagLineExt: Красивые сайты, которые Вы должны увидеть, чтобы поверить. <br>
102
102
  Получите быстрый результат он-лайн быстрее всех остальных.
103
- requestPropertyInfo: Запрос информации о недвижимости
103
+ requestPropertyInfo: Запросить информацию о недвижимости
104
104
  search: Поиск
105
105
  searchForProperties: Поиск недвижимости
106
106
  selectpicker:
@@ -122,7 +122,7 @@ ru:
122
122
  thankYouForTrusting: Спасибо за доверие %{company_name}
123
123
  urlNotAvailable: К сожалению, этот URL не доступен
124
124
  weAreCreatingSite: Ваш сайт создан
125
- signOut: Выход
125
+ signOut: Выйти
126
126
  simple_form:
127
127
  error_notification:
128
128
  default_message: 'Пожалуйста, ознакомьтесь с проблемами ниже:'
@@ -0,0 +1,154 @@
1
+ ---
2
+ # automatically generated file - awaiting correction
3
+ zh:
4
+ aboutUs: 关于我们
5
+ address: 地址
6
+ back: 背部
7
+ changePassword: 更改密码
8
+ contact:
9
+ emailSubject: 联系您的网站
10
+ error: 对不起,有一个错误。
11
+ success: 感谢您的留言。我们会尽快与您联系!
12
+ contactUs: 联系
13
+ contactUsPrompt: 填写以下表格与我们联系
14
+ devise:
15
+ user_update_success: 您已成功更新您的帐户。
16
+ user_update_success_title: 祝贺
17
+ editarPropiedad: 修改属性
18
+ email: 电子邮件
19
+ 'false': 没有
20
+ findAProperty: 查找酒店
21
+ findByReference: 通过参考查找
22
+ forRent: 出租
23
+ forSale: 出售
24
+ go: 走
25
+ labels:
26
+ create: 创建
27
+ edit: 编辑
28
+ new: 新
29
+ save: 保存
30
+ leaveBlank: 如果你不想改变它,请留空
31
+ legalAdvice: 法律声明
32
+ listadoPropiedades: 属性列表
33
+ mailers:
34
+ confirm_registration: 请通过以下链接确认您的帐户
35
+ from: 从
36
+ general_enquiry_targeting_agency:
37
+ title: 从您的网站的一般查询
38
+ general_enquiry_targeting_enquirer:
39
+ message_title: ''
40
+ subject: ''
41
+ message: 信息
42
+ phone: 联系电话
43
+ property: 属性
44
+ property_enquiry_targeting_agency:
45
+ title: 有关物业的查询
46
+ received_on: 收到了
47
+ welcome: 欢迎
48
+ menu_admin: 管理
49
+ message: 信息
50
+ name: 名称
51
+ navbar:
52
+ aboutUs: 关于我们
53
+ admin: 管理员
54
+ buy: 购买
55
+ contactUs: 联系
56
+ home: 家
57
+ legalAdvice: 法律声明
58
+ privacyPolicy: 隐私政策
59
+ rent: 出租
60
+ sell: 卖
61
+ needCurrentPwd: 我们需要您当前的密码来确认您的更改
62
+ newPassword: 新密码
63
+ noResultsForSearch: 对不起,没有找到结果
64
+ nuevoPropiedad: 新的财产
65
+ orderBy:
66
+ priceAscending: "↓价格(升序)"
67
+ priceDescending: "↑价格(降)"
68
+ placeHolders:
69
+ email: 你的邮件
70
+ message: 在这里写下你的消息
71
+ name: 你的名字
72
+ subject: 学科
73
+ tel: 固定或移动
74
+ privacyPolicy: 隐私政策
75
+ property:
76
+ description: 描述
77
+ details: 细节
78
+ extras: 特征
79
+ furniture: 家具
80
+ goToProperty: 查看属性
81
+ highlightedProperty: 优秀财产
82
+ locality: 局部性
83
+ map: 地图
84
+ monthlyRentalPriceHighSeason: 月价(旺季)
85
+ monthlyRentalPriceLowSeason: 月价(淡季)
86
+ monthlyRentalPriceStandardSeason: 月价(标准季)
87
+ operationType: 操作类型
88
+ price: 价钱
89
+ propertyType: 财产种类
90
+ ref: 参考
91
+ propertyForRent: 物业出租
92
+ propertyForSale: 物业出售
93
+ propertyNotFound: 找不到物业
94
+ pwb:
95
+ copyright: "%{company_name} Inc.保留所有权利。"
96
+ createPrompt: 创建您的房地产代理网站
97
+ createTagLine: 请输入您的帐户的详细信息
98
+ getStarted: 现在就开始
99
+ registerNow: 现在注册
100
+ tagLine: 地产代理专业网站在几分钟内
101
+ tagLineExt: 美丽的网站必须被视为相信。<br>没有人能更快地上网。
102
+ requestPropertyInfo: 请求信息
103
+ search: 搜索
104
+ searchForProperties: 搜索属性
105
+ selectpicker:
106
+ countSelectedText: "{1}的{0}"
107
+ noneResultsText: 找不到结果{0}
108
+ noneSelectedText: 没有选择
109
+ send: 发送
110
+ setup:
111
+ claimSubdomain: 声明此网址
112
+ createdSuccessfully: 站点创建成功
113
+ goToYourSite: 去你的网站
114
+ loggedInAs: 登录为
115
+ logout: 登出
116
+ selectUrl: 选择一个网址
117
+ selectUrlMessage: 您已经成功创建了一个帐户 - 现在选择您的新网站的网址
118
+ subdomain: 子域
119
+ subdomainMissing: 请输入子域名
120
+ thankYouForTrusting: 感谢您信任%{company_name}
121
+ urlNotAvailable: 对不起,此网址不可用
122
+ weAreCreatingSite: 我们正在创建您的网站
123
+ signOut: 登出
124
+ simple_form:
125
+ error_notification:
126
+ default_message: 请查看以下问题:
127
+ labels:
128
+ search:
129
+ count_bathrooms: 浴室(分钟)
130
+ count_bedrooms: 卧室(分)
131
+ for_rent_price_from: 租金(每月)
132
+ for_rent_price_till: 租金(每月)
133
+ for_sale_price_from: 价格从
134
+ for_sale_price_till: 价格直到
135
+ in_locality: 局部性
136
+ in_zone: 区
137
+ locality: 局部性
138
+ property_state: 财产状况
139
+ property_type: 财产种类
140
+ 'no': 没有
141
+ required:
142
+ mark: "*"
143
+ text: 需要
144
+ 'yes': 是
145
+ subject: 学科
146
+ tel: 电话
147
+ 'true': 是
148
+ update: 更新
149
+ webContentSections:
150
+ aboutUs: 关于我们
151
+ contactInformation: 联系信息
152
+ home: 家
153
+ sell: 卖
154
+ tagLine: 标语