pwb 1.1.1 → 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (109) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +30 -3
  3. data/app/assets/javascripts/pwb/{application.js → application.js.erb} +19 -2
  4. data/app/assets/javascripts/pwb/paloma/landing.js +10 -10
  5. data/app/assets/javascripts/pwb/paloma/prop.js +14 -22
  6. data/app/assets/javascripts/pwb/paloma/sections.js +15 -15
  7. data/app/assets/javascripts/pwb/shared/inmo-map.js +121 -0
  8. data/app/assets/javascripts/pwb/shared/select-picker.js +15 -0
  9. data/app/assets/javascripts/pwb/shared/slick-carousel.js +10 -0
  10. data/app/assets/javascripts/pwb/shared/vue-main.js +31 -0
  11. data/app/assets/javascripts/pwb/themes/{berlin.js → berlin.js.erb} +61 -5
  12. data/app/assets/stylesheets/pwb/themes/berlin.scss +3 -0
  13. data/app/assets/stylesheets/pwb/themes/default.scss +4 -2
  14. data/app/assets/stylesheets/pwb/themes/default/landing_general.scss +1 -1
  15. data/app/assets/stylesheets/pwb/themes/default/language_switcher.scss +20 -0
  16. data/app/assets/stylesheets/pwb/themes/default/prop.scss +0 -4
  17. data/app/assets/stylesheets/pwb/themes/default/shame.scss +0 -59
  18. data/app/assets/stylesheets/pwb/themes/shared/gmap.scss +38 -0
  19. data/app/assets/stylesheets/pwb/themes/shared/search_box.scss +62 -0
  20. data/app/assets/stylesheets/pwb/themes/shared/shame.scss +6 -1
  21. data/app/assets/stylesheets/pwb/themes/shared/social.scss +84 -0
  22. data/app/controllers/pwb/api_public/v1/props_controller.rb +47 -1
  23. data/app/controllers/pwb/props_controller.rb +32 -3
  24. data/app/controllers/pwb/search_controller.rb +35 -3
  25. data/app/controllers/pwb/sections_controller.rb +24 -7
  26. data/app/controllers/pwb/welcome_controller.rb +2 -0
  27. data/app/helpers/pwb/application_helper.rb +16 -31
  28. data/app/helpers/pwb/images_helper.rb +43 -0
  29. data/app/models/pwb/agency.rb +2 -2
  30. data/app/models/pwb/content.rb +3 -2
  31. data/app/models/pwb/content_photo.rb +1 -1
  32. data/app/models/pwb/feature.rb +2 -2
  33. data/app/models/pwb/message.rb +1 -1
  34. data/app/models/pwb/prop.rb +10 -1
  35. data/app/models/pwb/prop_photo.rb +1 -1
  36. data/app/models/pwb/section.rb +2 -1
  37. data/app/models/pwb/website.rb +1 -1
  38. data/app/themes/berlin/views/layouts/pwb/application.html.erb +9 -4
  39. data/app/themes/berlin/views/pwb/props/not_found.html.erb +37 -0
  40. data/app/themes/berlin/views/pwb/props/show.html.erb +44 -11
  41. data/app/themes/berlin/views/pwb/search/buy.html.erb +15 -8
  42. data/app/themes/berlin/views/pwb/search/rent.html.erb +13 -6
  43. data/app/themes/berlin/views/pwb/sections/about_us.html.erb +25 -34
  44. data/app/themes/berlin/views/pwb/sections/contact_us.html.erb +23 -24
  45. data/app/themes/berlin/views/pwb/sections/static.html.erb +26 -26
  46. data/app/themes/berlin/views/pwb/welcome/_landing_carousel.html.erb +27 -18
  47. data/app/themes/berlin/views/pwb/welcome/_service.html.erb +2 -2
  48. data/app/themes/berlin/views/pwb/welcome/index.html.erb +5 -2
  49. data/app/themes/default/views/layouts/pwb/application.html.erb +15 -12
  50. data/app/themes/default/views/pwb/props/show.html.erb +29 -8
  51. data/app/themes/default/views/pwb/search/buy.html.erb +44 -48
  52. data/app/themes/default/views/pwb/search/rent.html.erb +44 -48
  53. data/app/themes/default/views/pwb/sections/about_us.html.erb +1 -0
  54. data/app/themes/default/views/pwb/sections/contact_us.html.erb +4 -0
  55. data/app/themes/default/views/pwb/sections/static.html.erb +1 -0
  56. data/app/themes/default/views/pwb/welcome/index.html.erb +14 -4
  57. data/app/views/pwb/_meta_tags.html.erb +10 -0
  58. data/app/views/pwb/props/_meta_tags.html.erb +8 -0
  59. data/app/views/pwb/search/_search_form_for_rent.html.erb +19 -16
  60. data/app/views/pwb/search/_search_form_landing.html.erb +35 -0
  61. data/app/views/pwb/search/search_ajax.js.erb +3 -1
  62. data/config/client_setups/default.json +113 -55
  63. data/config/initializers/i18n.rb +1 -0
  64. data/config/locales/admin.en.yml +19 -10
  65. data/config/locales/admin.es.yml +18 -0
  66. data/config/locales/de.yml +9 -6
  67. data/config/locales/devise.tr.yml +135 -0
  68. data/config/locales/devise.vi.yml +137 -0
  69. data/config/locales/en.yml +151 -161
  70. data/config/locales/es.yml +37 -35
  71. data/config/locales/fr.yml +147 -184
  72. data/config/locales/pt.yml +10 -8
  73. data/config/locales/rails.tr.yml +211 -0
  74. data/config/locales/rails.vi.yml +203 -0
  75. data/config/locales/ru.yml +13 -12
  76. data/config/locales/tr.yml +160 -0
  77. data/config/locales/vi.yml +162 -0
  78. data/config/locales/zh-HK.yml +2 -0
  79. data/config/routes.rb +4 -3
  80. data/db/migrate/20170513221300_create_cms.rb +1 -1
  81. data/lib/pwb/seeder.rb +1 -1
  82. data/lib/pwb/version.rb +1 -1
  83. data/spec/dummy/config/routes.rb +3 -4
  84. data/spec/dummy/db/schema.rb +11 -10
  85. data/spec/dummy/log/test.log +0 -0
  86. data/spec/dummy/public/uploads/pwb/content_photo/image/1/carousel_windows.jpg +0 -0
  87. data/spec/dummy/public/uploads/pwb/content_photo/image/2/carousel_deck_chair.jpg +0 -0
  88. data/spec/dummy/public/uploads/pwb/content_photo/image/3/carousel_grass.jpg +0 -0
  89. data/spec/dummy/public/uploads/pwb/content_photo/image/4/carousel_grass.jpg +0 -0
  90. data/spec/dummy/public/uploads/pwb/prop_photo/image/1/flat_balcony.jpg +0 -0
  91. data/spec/dummy/public/uploads/pwb/prop_photo/image/1/gdaje3atcct1gx2ngv9u.jpg +0 -0
  92. data/spec/dummy/public/uploads/pwb/prop_photo/image/1/new_villa.jpg +0 -0
  93. data/spec/dummy/public/uploads/pwb/prop_photo/image/2/flat_balcony.jpg +0 -0
  94. data/spec/dummy/public/uploads/pwb/prop_photo/image/2/kitchen_modern.jpg +0 -0
  95. data/spec/dummy/public/uploads/pwb/prop_photo/image/2/rxo23syongfydjpoizrd.jpg +0 -0
  96. data/spec/dummy/public/uploads/pwb/prop_photo/image/3/mansion_front.jpg +0 -0
  97. data/spec/dummy/public/uploads/pwb/prop_photo/image/3/vzlptgtccsk2d2ewp4id.jpg +0 -0
  98. data/spec/dummy/public/uploads/pwb/prop_photo/image/4/mansion_bedroom.jpg +0 -0
  99. data/spec/dummy/public/uploads/pwb/prop_photo/image/4/xwayprwnmmmhrzrgwvch.jpg +0 -0
  100. data/spec/dummy/public/uploads/pwb/prop_photo/image/5/flat_window.jpg +0 -0
  101. data/spec/dummy/public/uploads/pwb/prop_photo/image/5/ilxn2u37bak0v60u6f8q.jpg +0 -0
  102. data/spec/dummy/public/uploads/pwb/prop_photo/image/6/kitchen_classic.jpg +0 -0
  103. data/spec/dummy/public/uploads/pwb/prop_photo/image/7/flat_balcony.jpg +0 -0
  104. data/spec/dummy/public/uploads/pwb/prop_photo/image/8/lounge_cosy.jpg +0 -0
  105. data/spec/requests/pwb/themes_spec.rb +1 -0
  106. data/spec/views/pwb/welcome.html.erb_spec.rb +7 -0
  107. metadata +63 -6
  108. data/app/assets/javascripts/pwb/themes/berlin/jquery.min.js +0 -5
  109. data/app/assets/stylesheets/pwb/themes/default/search.scss +0 -8
@@ -0,0 +1,137 @@
1
+ # https://raw.githubusercontent.com/tigrish/devise-i18n/master/rails/locales/vi.yml
2
+ vi:
3
+ activerecord:
4
+ attributes:
5
+ user:
6
+ confirmation_sent_at:
7
+ confirmation_token:
8
+ confirmed_at:
9
+ created_at:
10
+ current_password: Mật khẩu hiện tại
11
+ current_sign_in_at:
12
+ current_sign_in_ip:
13
+ email: Email
14
+ encrypted_password:
15
+ failed_attempts:
16
+ last_sign_in_at:
17
+ last_sign_in_ip:
18
+ locked_at:
19
+ password: Mật khẩu
20
+ password_confirmation: Xác nhận mật khẩu
21
+ remember_created_at:
22
+ remember_me: Ghi nhớ đăng nhập
23
+ reset_password_sent_at:
24
+ reset_password_token:
25
+ sign_in_count:
26
+ unconfirmed_email:
27
+ unlock_token:
28
+ updated_at:
29
+ models:
30
+ user: Người dùng
31
+ devise:
32
+ confirmations:
33
+ confirmed: Xác nhận tài khoản thành công! Bạn hiện đang đăng nhập.
34
+ new:
35
+ resend_confirmation_instructions: Gửi lại hướng dẫn xác nhận tài khoản
36
+ send_instructions: Bạn sẽ nhận được email hướng dẫn xác nhận tài khoản trong vài phút nữa.
37
+ send_paranoid_instructions: Nếu email của bạn có trong hệ thống, bạn sẽ nhận được email hướng dẫn xác nhận tài khoản trong một vài phút nữa.
38
+ failure:
39
+ already_authenticated: Bạn đã đăng nhập.
40
+ inactive: Tài khoản của bạn chưa được kích hoạt.
41
+ invalid: Email hoặc mật khẩu không chính xác.
42
+ last_attempt: Bạn còn một lần thử đăng nhập nữa trước khi tài khoản của bạn bị khóa.
43
+ locked: Tài khoản của bạn đã bị khóa.
44
+ not_found_in_database: Email hoặc mật khẩu không chính xác
45
+ timeout: Phiên làm việc của bạn đã kết thúc, bạn cần đăng nhập lại để tiếp tục.
46
+ unauthenticated: Bạn cần phải đăng nhập hoặc đăng ký trước khi tiếp tục.
47
+ unconfirmed: Bạn cần phải xác nhận tài khoản trước khi tiếp tục.
48
+ mailer:
49
+ confirmation_instructions:
50
+ action: Xác nhận tài khoản
51
+ greeting: Chào mừng %{recipient}!
52
+ instruction: 'Bạn có thể xác nhận tài khoản email bằng liên kết dưới đây:'
53
+ subject: Hướng dẫn xác nhận tài khoản
54
+ password_change:
55
+ greeting:
56
+ message:
57
+ subject:
58
+ reset_password_instructions:
59
+ action: Thay đổi mật khẩu
60
+ greeting: Xin chào %{recipient}!
61
+ instruction: Có ai đó yêu cầu liên kết thay đổi mật khẩu, bạn có thể thay đổi mật khẩu bằng liên kết dưới đây.
62
+ instruction_2: Nếu bạn không yêu cầu, vui lòng bỏ qua email này.
63
+ instruction_3: Mật khẩu của bạn sẽ không thay đổi cho đến khi bạn ấn vào liên kết trên và tạo mật khẩu mới.
64
+ subject: Hướng dẫn thiết lập lại mật khẩu
65
+ unlock_instructions:
66
+ action: Mở khoá tài khoản
67
+ greeting: Xin chào %{recipient}!
68
+ instruction: 'Hãy nhấn vào liên kết dưới đây để mở khoá tài khoản:'
69
+ message: Tài khoản của bạn đã bị khoá do vượt quá giới hạn số lần đăng nhập không thành công.
70
+ subject: Hướng dẫn mở khóa tài khoản
71
+ omniauth_callbacks:
72
+ failure: Không thể đăng nhập qua tài khoản %{kind} vì "%{reason}".
73
+ success: "Đăng nhập thành công bằng tài khoản %{kind}."
74
+ passwords:
75
+ edit:
76
+ change_my_password: Thay đổi mật khẩu
77
+ change_your_password: Thay đổi mật khẩu
78
+ confirm_new_password: Xác nhận mật khẩu mới
79
+ new_password: Mật khẩu mới
80
+ new:
81
+ forgot_your_password: Quên mật khẩu?
82
+ send_me_reset_password_instructions: Gửi cho tôi hướng dẫn cài đặt lại mật khẩu
83
+ no_token: Bạn chỉ có thể truy cập trang này từ email đặt lại mật khẩu. Nếu bạn truy cập từ email đặt lại mật khẩu, xin chắc chắn rằng bạn dùng đường dẫn đầy đủ trong email.
84
+ send_instructions: Bạn sẽ nhận được email hướng dẫn thiết lập lại mật khẩu trong vài phút nữa.
85
+ send_paranoid_instructions: Nếu email của bạn có trong hệ thống, bạn sẽ nhận được đường dẫn khôi phục mật khẩu trong vài phút nữa qua email.
86
+ updated: "Đổi mật khẩu thành công! Bạn hiện đang đăng nhập."
87
+ updated_not_active: Mật khẩu của bạn đã được thay đổi thành công.
88
+ registrations:
89
+ destroyed: Tạm biệt! Tài khoản của bạn đã được xóa. Chúng tôi hy vọng sẽ sớm gặp lại bạn.
90
+ edit:
91
+ are_you_sure: Bạn có chắc?
92
+ cancel_my_account: Xoá tài khoản
93
+ currently_waiting_confirmation_for_email: "Đang đợi xác nhận tài khoản email: %{email}"
94
+ leave_blank_if_you_don_t_want_to_change_it: "để trống nếu bạn không muốn thay đổi mật khẩu"
95
+ title: Cập nhật %{resource}
96
+ unhappy: Không hài lòng
97
+ update: Cập nhật
98
+ we_need_your_current_password_to_confirm_your_changes: we need your current password to confirm your changes
99
+ new:
100
+ sign_up: "Đăng ký"
101
+ signed_up: Xin chào! Bạn đã đăng ký thành công.
102
+ signed_up_but_inactive: Bạn đã đăng ký thành công. Tuy nhiên, bạn cần phải kích hoạt tài khoản trước khi có thể đăng nhập được.
103
+ signed_up_but_locked: Bạn đã đăng ký thành công. Tuy nhiên tài khoản của bạn đã bị khóa nên không thể đăng nhập được.
104
+ signed_up_but_unconfirmed: Một email chứa đường dẫn xác nhận tài khoản đã được gửi cho bạn. Bạn vui lòng kiểm tra email.
105
+ update_needs_confirmation: Tài khoản của bạn được cập nhật thành công, nhưng bạn cần xác nhận địa chỉ email mới. Vui lòng kiểm tra email và nhấn vào đường dẫn xác nhận tài khoản để hoàn tất việc thay đổi địa chỉ email.
106
+ updated: Cập nhật tài khoản thành công.
107
+ sessions:
108
+ already_signed_out: "Đăng xuất thành công."
109
+ new:
110
+ sign_in: "Đăng nhập"
111
+ signed_in: "Đăng nhập thành công."
112
+ signed_out: "Đăng xuất thành công."
113
+ shared:
114
+ links:
115
+ back: Trở về
116
+ didn_t_receive_confirmation_instructions: Không nhận được hướng dẫn xác nhận tài khoản?
117
+ didn_t_receive_unlock_instructions: Không nhận được hướng dẫn mở khoá tài khoản?
118
+ forgot_your_password: Quên mật khẩu?
119
+ sign_in: "Đăng nhập"
120
+ sign_in_with_provider: "Đăng nhập với %{provider}"
121
+ sign_up: "Đăng ký"
122
+ unlocks:
123
+ new:
124
+ resend_unlock_instructions: Gửi lại hướng dẫn mở khoá tài khoản
125
+ send_instructions: Bạn sẽ nhận được email hướng dẫn cách mở khóa tài khoản trong vài phút nữa.
126
+ send_paranoid_instructions: Nếu tài khoản của bạn tồn tại, bạn sẽ nhận được email hướng dẫn cách mở khóa tài khoản trong vài phút nữa.
127
+ unlocked: Tài khoản của bạn đã được mở khóa thành công. Vui lòng đăng nhập để tiếp tục.
128
+ errors:
129
+ messages:
130
+ already_confirmed: "đã được xác nhận, vui lòng đăng nhập để tiếp tục."
131
+ confirmation_period_expired: cần được xác nhận trong %{period}, xin vui lòng yêu cầu mã mới.
132
+ expired: "đã hết hạn, vui lòng gửi yêu cầu mới."
133
+ not_found: không tìm thấy
134
+ not_locked: không bị khóa
135
+ not_saved:
136
+ one: '1 lỗi khi lưu %{resource}:'
137
+ other: "%{count} lỗi khi lưu %{resource}:"
@@ -1,170 +1,160 @@
1
+ ---
1
2
  en:
2
- pages:
3
- aboutUs: "About us"
4
- sell: "Sell"
3
+ aboutUs: About Us
4
+ address: Address
5
+ back: Back
6
+ changePassword: Change Password
7
+ contact:
8
+ emailSubject: Contact from your website
9
+ error: Sorry, there has been an error.
10
+ success: Thank you for your message. We will contact you soon!
11
+ contactUs: Contact
12
+ contactUsPrompt: Fill in the following form to contact us
5
13
  devise:
6
- user_update_success_title: Congratulations
7
14
  user_update_success: You have successfully updated your account.
8
- selectpicker:
9
- noneSelectedText: 'Nothing selected'
10
- noneResultsText: 'No results found {0}'
11
- countSelectedText: 'Selected {0} of {1}'
12
- newPassword: "New Password"
13
- signOut: "Sign Out"
14
- changePassword: "Change Password"
15
- update: "Update"
16
- back: "Back"
17
- leaveBlank: "leave it blank if you don't want to change it"
18
- needCurrentPwd: "we need your current password to confirm your changes"
19
- legalAdvice: "Legal Notice"
20
- privacyPolicy: "Privacy Policy"
21
- contact:
22
- success: "Thank you for your message. We will contact you soon!"
23
- error: "Sorry, there has been an error."
24
- emailSubject: "Contact from your website"
25
- tel: "Telephone"
26
- email: "Email"
27
- name: "Name"
28
- subject: "Subject"
29
- message: "Message"
30
- address: "Address"
31
- contactUs: "Contact"
32
- requestPropertyInfo: "Request info"
33
- aboutUs: "About Us"
34
- contactUsPrompt: "Fill in the following form to contact us"
35
- send: "Send"
36
- propertyNotFound: "Property not found"
37
- forRent: "For Rent"
38
- forSale: "For Sale"
39
- propertyForRent: "Property for rent"
40
- propertyForSale: "Property for sale"
41
- setup:
42
- selectUrl: "Select a url"
43
- selectUrlMessage: "You have successfully created an account - now select the url for your new site"
44
- subdomain: "subdomain"
45
- claimSubdomain: "Claim this url"
46
- subdomainMissing: "Please enter a name for the subdomain"
47
- urlNotAvailable: "Sorry, this url is not available"
48
- goToYourSite: "Go to your site"
49
- thankYouForTrusting: "Thank you for trusting %{company_name}"
50
- weAreCreatingSite: "We are creating your site"
51
- createdSuccessfully: "Site created successfully"
52
- loggedInAs: "Logged in as "
53
- logout: "Logout"
54
- pwb:
55
- registerNow: "Register now"
56
- tagLine: "Professional websites for estate agents in minutes"
57
- tagLineExt: "Beautiful websites that have to be seen to be believed.<br>No one gets you online quicker."
58
- getStarted: "Get started now"
59
- createPrompt: "Create your estate agency website"
60
- # createTagLine: "No one gets you online quicker"
61
- createTagLine: "Please enter the details for your account"
62
- # TODO - have a variable for company name so I can switch b/n klavado and property squares
63
- copyright: "%{company_name} Inc. All rights reserved."
64
- property:
65
- price: "Price"
66
- monthlyRentalPriceLowSeason: "Monthly Price (Low Season)"
67
- monthlyRentalPriceStandardSeason: "Monthly Price (Standard Season)"
68
- monthlyRentalPriceHighSeason: "Monthly Price (High Season)"
69
- operationType: "Operation Type"
70
- propertyType: "Property Type"
71
- locality: "Locality"
72
- ref: "Ref"
73
- furniture: "Furniture"
74
- highlightedProperty: "Outstanding Property"
75
- goToProperty: "View Property"
76
- details: "Details"
77
- description: "Description"
78
- extras: "Features"
79
- map: "Map"
80
- navbar:
81
- home: "Home"
82
- admin: "Admin"
83
- aboutUs: "About Us"
84
- sell: "Sell"
85
- buy: "Buy"
86
- rent: "Rent"
87
- contactUs: "Contact"
88
- legalAdvice: "Legal Notice"
89
- privacyPolicy: "Privacy Policy"
90
- menu_admin: "admin"
91
- true: "Yes"
92
- false: "No"
93
- editarPropiedad: "Edit a property"
94
- nuevoPropiedad: "New property"
95
- listadoPropiedades: "List of properties"
96
- searchForProperties: "Search for properties"
97
- search: "Search"
98
- findByReference: "Find by reference"
99
- go: "Go"
100
- findAProperty: "Find a property"
101
- orderBy: "Order by"
102
- noResultsForSearch: "Sorry, no results found"
103
- orderBy:
104
- priceAscending: ↓ Price (ascending)
105
- priceDescending: ↑ Price (descending)
106
- placeHolders:
107
- email: "Your email"
108
- name: "Your name"
109
- tel: "Fixed or mobile"
110
- subject: "Subject"
111
- message: "Write your message here"
112
- labels:
113
- edit: "Edit"
114
- new: "New"
115
- save: "Save"
116
- create: "Create"
117
- webContentSections:
118
- aboutUs: "About us"
119
- contactInformation: "Contact information"
120
- home: "Home"
121
- sell: "Sell"
122
- tagLine: "Tag Line"
15
+ user_update_success_title: Congratulations
16
+ editarPropiedad: Edit a property
17
+ email: Email
18
+ 'false': 'No'
19
+ findAProperty: Find a property
20
+ findByReference: Find by reference
21
+ forRent: For Rent
22
+ forSale: For Sale
23
+ go: Go
24
+ labels:
25
+ create: Create
26
+ edit: Edit
27
+ latestProperties: Latest properties
28
+ new: New
29
+ ourServices: Our services
30
+ save: Save
31
+ leaveBlank: leave it blank if you don't want to change it
32
+ legalAdvice: Legal Notice
33
+ listadoPropiedades: List of properties
123
34
  mailers:
124
- welcome: "Welcome"
125
- confirm_registration: "Please confirm your account through the link below"
126
- received_on: "Received on"
127
- from: "From"
128
- phone: "Tel"
129
- message: "Message"
130
- property: "Property"
131
- general_enquiry_targeting_enquirer:
132
- subject: ""
133
- message_title: ""
35
+ confirm_registration: Please confirm your account through the link below
36
+ from: From
134
37
  general_enquiry_targeting_agency:
135
- title: "General enquiry from your website"
38
+ title: General enquiry from your website
39
+ general_enquiry_targeting_enquirer:
40
+ message_title: ''
41
+ subject: ''
42
+ message: Message
43
+ phone: Tel
44
+ property: Property
136
45
  property_enquiry_targeting_agency:
137
- title: "Enquiry regarding a property"
138
-
46
+ title: Enquiry regarding a property
47
+ received_on: Received on
48
+ welcome: Welcome
49
+ menu_admin: admin
50
+ message: Message
51
+ name: Name
52
+ navbar:
53
+ aboutUs: About Us
54
+ admin: Admin
55
+ buy: Buy
56
+ contactUs: Contact
57
+ home: Home
58
+ legalAdvice: Legal Notice
59
+ privacyPolicy: Privacy Policy
60
+ rent: Rent
61
+ sell: Sell
62
+ needCurrentPwd: we need your current password to confirm your changes
63
+ newPassword: New Password
64
+ noResultsForSearch: Sorry, no results found
65
+ nuevoPropiedad: New property
66
+ orderBy:
67
+ priceAscending: "↓ Price (ascending)"
68
+ priceDescending: "↑ Price (descending)"
69
+ pages:
70
+ aboutUs: About us
71
+ sell: Sell
72
+ placeHolders:
73
+ email: Your email
74
+ message: Write your message here
75
+ name: Your name
76
+ subject: Subject
77
+ tel: Fixed or mobile
78
+ privacyPolicy: Privacy Policy
79
+ property:
80
+ description: Description
81
+ details: Details
82
+ extras: Features
83
+ furniture: Furniture
84
+ goToProperty: View Property
85
+ highlightedProperty: Outstanding Property
86
+ locality: Locality
87
+ map: Map
88
+ monthlyRentalPriceHighSeason: Monthly Price (High Season)
89
+ monthlyRentalPriceLowSeason: Monthly Price (Low Season)
90
+ monthlyRentalPriceStandardSeason: Monthly Price (Standard Season)
91
+ operationType: Operation Type
92
+ price: Price
93
+ propertyType: Property Type
94
+ ref: Ref
95
+ propertyForRent: Property for rent
96
+ propertyForSale: Property for sale
97
+ propertyNotFound: Property not found
98
+ pwb:
99
+ copyright: "%{company_name} Inc. All rights reserved."
100
+ createPrompt: Create your estate agency website
101
+ createTagLine: Please enter the details for your account
102
+ getStarted: Get started now
103
+ registerNow: Register now
104
+ tagLine: Professional websites for estate agents in minutes
105
+ tagLineExt: Beautiful websites that have to be seen to be believed.<br>No one
106
+ gets you online quicker.
107
+ requestPropertyInfo: Request info
108
+ search: Search
109
+ searchForProperties: Search for properties
110
+ selectpicker:
111
+ countSelectedText: Selected {0} of {1}
112
+ noneResultsText: No results found {0}
113
+ noneSelectedText: Nothing selected
114
+ send: Send
115
+ setup:
116
+ claimSubdomain: Claim this url
117
+ createdSuccessfully: Site created successfully
118
+ goToYourSite: Go to your site
119
+ loggedInAs: 'Logged in as '
120
+ logout: Logout
121
+ selectUrl: Select a url
122
+ selectUrlMessage: You have successfully created an account - now select the url
123
+ for your new site
124
+ subdomain: subdomain
125
+ subdomainMissing: Please enter a name for the subdomain
126
+ thankYouForTrusting: Thank you for trusting %{company_name}
127
+ urlNotAvailable: Sorry, this url is not available
128
+ weAreCreatingSite: We are creating your site
129
+ signOut: Sign Out
139
130
  simple_form:
140
- "yes": 'Yes'
141
- "no": 'No'
142
- required:
143
- text: 'required'
144
- mark: '*'
145
- # You can uncomment the line below if you need to overwrite the whole required html.
146
- # When using html, text and mark won't be used.
147
- # html: '<abbr title="required">*</abbr>'
131
+ error_notification:
132
+ default_message: 'Please review the problems below:'
148
133
  labels:
149
134
  search:
150
- for_rent_price_from: 'Rent From (Monthly)'
151
- for_rent_price_till: 'Rent Till (Monthly)'
152
- for_sale_price_from: 'Price From'
153
- for_sale_price_till: 'Price Till'
154
- count_bedrooms: 'Bedrooms (min)'
155
- count_bathrooms: 'Bathrooms (min)'
156
- property_type: 'Property Type'
157
- property_state: 'Property State'
158
- locality: 'Locality'
159
- in_locality: 'Locality'
160
- in_zone: 'Zone'
161
- # hints:
162
- # search:
163
- # price_from: 'User name to sign in.'
164
- # price_till: 'No special characters, please.'
165
- # placeholders:
166
- # search:
167
- # price_from: 'Your username'
168
- # price_till: '****'
169
- error_notification:
170
- default_message: "Please review the problems below:"
135
+ count_bathrooms: Bathrooms (min)
136
+ count_bedrooms: Bedrooms (min)
137
+ for_rent_price_from: Rent From (Monthly)
138
+ for_rent_price_till: Rent Till (Monthly)
139
+ for_sale_price_from: Price From
140
+ for_sale_price_till: Price Till
141
+ in_locality: Locality
142
+ in_zone: Zone
143
+ locality: Locality
144
+ property_state: Property State
145
+ property_type: Property Type
146
+ 'no': 'No'
147
+ required:
148
+ mark: "*"
149
+ text: required
150
+ 'yes': 'Yes'
151
+ subject: Subject
152
+ tel: Telephone
153
+ 'true': 'Yes'
154
+ update: Update
155
+ webContentSections:
156
+ aboutUs: About us
157
+ contactInformation: Contact information
158
+ home: Home
159
+ sell: Sell
160
+ tagLine: Tag Line