pwb 1.2.0 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +40 -25
- data/app/assets/fonts/fonts/FontAwesome.otf +0 -0
- data/app/assets/fonts/fonts/fontawesome-webfont.eot +0 -0
- data/app/assets/fonts/fonts/fontawesome-webfont.svg +2668 -637
- data/app/assets/fonts/fonts/fontawesome-webfont.ttf +0 -0
- data/app/assets/fonts/fonts/fontawesome-webfont.woff +0 -0
- data/app/assets/fonts/fonts/fontawesome-webfont.woff2 +0 -0
- data/app/assets/javascripts/pwb/shared/page-content.js +24 -0
- data/app/assets/javascripts/pwb/shared/squares-container.js +58 -0
- data/app/assets/javascripts/pwb/shared/vue-main.js +1 -1
- data/app/assets/javascripts/pwb/shared/vue-squares.js.erb +74 -0
- data/app/assets/javascripts/pwb/squares/tabable-section.js +47 -0
- data/app/assets/javascripts/pwb/themes/squares.js.erb +45 -0
- data/app/assets/javascripts/pwb/themes/vic.js.erb +152 -0
- data/app/assets/javascripts/pwb_admin_panel/application_legacy_1.js +5 -0
- data/app/assets/stylesheets/pwb/themes/berlin.scss +4 -0
- data/app/assets/stylesheets/pwb/themes/berlin/main.scss +1 -1
- data/app/assets/stylesheets/pwb/themes/default.scss +1 -0
- data/app/assets/stylesheets/pwb/themes/default/carousel.scss +2 -1
- data/app/assets/stylesheets/pwb/themes/default/landing_content_areas.scss +13 -13
- data/app/assets/stylesheets/pwb/themes/default/shame.scss +0 -16
- data/app/assets/stylesheets/pwb/themes/matt.scss +18 -0
- data/app/assets/stylesheets/pwb/themes/shared/liquid_templates.scss +37 -0
- data/app/assets/stylesheets/pwb/themes/shared/shame.scss +7 -0
- data/app/assets/stylesheets/pwb/themes/squares.scss +22 -0
- data/app/assets/stylesheets/pwb/themes/squares/vue-material-docs.scss +200 -0
- data/app/assets/stylesheets/pwb/themes/squares/vue-material-vars.scss +141 -0
- data/app/assets/stylesheets/pwb/themes/vic.scss +104 -0
- data/app/assets/stylesheets/pwb/themes/vic/general.scss +15 -0
- data/app/assets/stylesheets/pwb/themes/vic/landing.scss +189 -0
- data/app/assets/stylesheets/pwb/themes/vic/slider.scss +127 -0
- data/app/assets/stylesheets/pwb_admin_panel/application_legacy_1.scss +6 -0
- data/app/controllers/pwb/admin_panel_controller.rb +7 -1
- data/app/controllers/pwb/api/v1/clients_controller.rb +35 -0
- data/app/controllers/pwb/api/v1/contacts_controller.rb +41 -0
- data/app/controllers/pwb/api/v1/links_controller.rb +47 -0
- data/app/controllers/pwb/api/v1/page_controller.rb +117 -0
- data/app/controllers/pwb/api/v1/page_fragments_controller.rb +74 -0
- data/app/controllers/pwb/api/v1/properties_controller.rb +30 -9
- data/app/controllers/pwb/api/v1/sections_controller.rb +27 -26
- data/app/controllers/pwb/api/v1/website_controller.rb +11 -11
- data/app/controllers/pwb/application_controller.rb +22 -11
- data/app/controllers/pwb/{sections_controller.rb → contact_us_controller.rb} +24 -45
- data/app/controllers/pwb/css_controller.rb +5 -2
- data/app/controllers/pwb/pages_controller.rb +36 -0
- data/app/controllers/pwb/search_controller.rb +33 -11
- data/app/controllers/pwb/squares_controller.rb +48 -0
- data/app/controllers/pwb/welcome_controller.rb +30 -5
- data/app/helpers/pwb/application_helper.rb +50 -49
- data/app/helpers/pwb/css_helper.rb +14 -0
- data/app/helpers/pwb/navigation_helper.rb +82 -0
- data/app/models/pwb/contact.rb +25 -0
- data/app/models/pwb/content.rb +26 -8
- data/app/models/pwb/content_photo.rb +18 -0
- data/app/models/pwb/link.rb +41 -0
- data/app/models/pwb/message.rb +1 -1
- data/app/models/pwb/page.rb +227 -0
- data/app/models/pwb/page_content.rb +33 -0
- data/app/models/pwb/page_part.rb +17 -0
- data/app/models/pwb/preset_style.rb +37 -0
- data/app/models/pwb/prop.rb +4 -0
- data/app/models/pwb/website.rb +64 -9
- data/app/resources/pwb/api/v1/{section_resource.rb → client_resource.rb} +3 -4
- data/app/resources/pwb/api/v1/property_resource.rb +23 -4
- data/app/resources/pwb/api/v1/web_content_resource.rb +1 -1
- data/app/resources/pwb/api_public/v1/prop_resource.rb +9 -2
- data/{db/cms_fixtures/cms/layouts/about-us/content.html → app/themes/airbnb/views/layouts/pwb/_generic_modal.html.erb} +0 -0
- data/{db/cms_fixtures/cms/layouts/about-us/javascript.js → app/themes/airbnb/views/layouts/pwb/_login_modal.html.erb} +0 -0
- data/app/themes/airbnb/views/layouts/pwb/application.html.erb +82 -0
- data/app/themes/airbnb/views/pwb/_footer.html.erb +25 -0
- data/app/themes/airbnb/views/pwb/props/_images_section_carousel.html.erb +43 -0
- data/app/themes/airbnb/views/pwb/props/show.html.erb +69 -0
- data/app/themes/airbnb/views/pwb/search/_search_form_for_rent.html.erb +183 -0
- data/app/themes/airbnb/views/pwb/search/_search_results.html.erb +34 -0
- data/app/themes/airbnb/views/pwb/search/buy.html.erb +65 -0
- data/app/themes/airbnb/views/pwb/search/rent.html.erb +87 -0
- data/app/themes/airbnb/views/pwb/sections/_contact_us_form.html.erb +49 -0
- data/app/themes/airbnb/views/pwb/sections/contact_us.html.erb +56 -0
- data/app/themes/airbnb/views/pwb/welcome/_content_area_cols.html.erb +12 -0
- data/app/themes/airbnb/views/pwb/welcome/_single_property_row.html.erb +51 -0
- data/app/themes/airbnb/views/pwb/welcome/index.html.erb +66 -0
- data/app/themes/berlin/views/pwb/_footer.html.erb +15 -20
- data/app/themes/berlin/views/pwb/_header.html.erb +7 -9
- data/app/themes/berlin/views/pwb/pages/show.html.erb +50 -0
- data/app/themes/berlin/views/pwb/search/buy.html.erb +1 -1
- data/app/themes/berlin/views/pwb/search/rent.html.erb +1 -2
- data/app/themes/berlin/views/pwb/sections/contact_us.html.erb +1 -1
- data/app/themes/berlin/views/pwb/welcome/index.html.erb +51 -7
- data/app/themes/config.json +14 -0
- data/app/themes/default/views/pwb/{sections/cms.html.erb → pages/show.html.erb} +9 -8
- data/app/themes/default/views/pwb/search/buy.html.erb +1 -1
- data/app/themes/default/views/pwb/search/rent.html.erb +1 -1
- data/app/themes/default/views/pwb/sections/about_us.html.erb +8 -7
- data/app/themes/default/views/pwb/sections/contact_us.html.erb +40 -30
- data/app/themes/default/views/pwb/sections/static.html.erb +3 -20
- data/app/themes/default/views/pwb/welcome/_single_property_row.html.erb +1 -1
- data/app/themes/default/views/pwb/welcome/index.html.erb +7 -38
- data/app/themes/matt/views/layouts/pwb/application.html.erb +45 -0
- data/app/themes/matt/views/pwb/_footer.html.erb +60 -0
- data/app/themes/matt/views/pwb/_header.html.erb +105 -0
- data/app/themes/matt/views/pwb/search/buy.html.erb +65 -0
- data/app/themes/matt/views/pwb/welcome/index.html.erb +132 -0
- data/app/themes/vic/views/layouts/pwb/application.html.erb +94 -0
- data/app/themes/vic/views/pwb/_header.html.erb +100 -0
- data/app/themes/vic/views/pwb/props/_images_section_carousel.html.erb +43 -0
- data/app/themes/vic/views/pwb/props/show.html.erb +69 -0
- data/app/themes/vic/views/pwb/search/buy.html.erb +65 -0
- data/app/themes/vic/views/pwb/search/rent.html.erb +65 -0
- data/app/themes/vic/views/pwb/sections/_contact_us_form.html.erb +49 -0
- data/app/themes/vic/views/pwb/sections/contact_us.html.erb +56 -0
- data/app/themes/vic/views/pwb/welcome/_content_area_cols.html.erb +12 -0
- data/app/themes/vic/views/pwb/welcome/_single_property_row.html.erb +51 -0
- data/app/themes/vic/views/pwb/welcome/index.html.erb +27 -0
- data/app/views/devise/shared/_links.html.erb +1 -1
- data/app/views/layouts/pwb/admin_panel_error.html.erb +19 -0
- data/app/views/layouts/pwb/admin_panel_legacy_1.html.erb +21 -0
- data/app/views/layouts/pwb/squares.html.erb +72 -0
- data/app/views/pwb/_footer.html.erb +2 -6
- data/app/views/pwb/_header.html.erb +23 -25
- data/app/views/pwb/admin_panel/show_legacy_1.html.erb +3 -0
- data/app/views/pwb/custom_css/_berlin.css.erb +0 -67
- data/app/views/pwb/custom_css/_default.css.erb +0 -22
- data/app/views/pwb/custom_css/_shared.css.erb +4 -3
- data/app/views/pwb/custom_css/_vic.css.erb +10 -0
- data/app/views/pwb/props/_images_section_carousel.html.erb +1 -1
- data/app/views/pwb/search/_search_result_item.html.erb +1 -1
- data/app/views/pwb/squares/show_client.html.erb +26 -0
- data/app/views/pwb/squares/show_prop.html.erb +26 -0
- data/app/views/pwb/squares/vue.html.erb +1 -0
- data/config/client_setups/default.json +28 -27
- data/config/initializers/i18n_globalise.rb +4 -0
- data/config/locales/admin.en.yml +38 -7
- data/config/locales/admin.es.yml +60 -6
- data/config/locales/admin.pt.yml +474 -0
- data/config/locales/admin.ru.yml +49 -6
- data/config/locales/devise.it.yml +137 -0
- data/config/locales/en.yml +7 -7
- data/config/locales/it.yml +160 -0
- data/config/locales/pt.yml +2 -0
- data/config/locales/rails.it.yml +213 -0
- data/config/locales/tr.yml +36 -36
- data/config/locales/vi.yml +5 -5
- data/config/preset_styles/green_amber.json +23 -0
- data/config/preset_styles/purple_teal.json +23 -0
- data/config/preset_styles/red_light.json +18 -0
- data/config/routes.rb +35 -23
- data/db/example_images/carousel_villa_with_pool.jpg +0 -0
- data/db/example_images/flat_luxury_dining_area.jpg +0 -0
- data/db/example_images/flat_luxury_living_area.jpg +0 -0
- data/db/migrate/20161120103546_create_pwb_props.rb +3 -3
- data/db/migrate/20161122174847_create_pwb_sections.rb +9 -8
- data/db/migrate/20161128221919_create_pwb_clients.rb +1 -0
- data/db/migrate/20170315195413_add_extra_cols_to_pwb_sections.rb +7 -6
- data/db/migrate/20170716075456_create_pwb_pages.rb +23 -0
- data/db/migrate/20170716110121_translate_pages.rb +17 -0
- data/db/migrate/20170720183443_create_pwb_links.rb +29 -0
- data/db/migrate/20170720201601_translate_links.rb +13 -0
- data/db/migrate/20170915094326_create_pwb_page_contents.rb +17 -0
- data/db/migrate/20170917215533_add_page_part_key_to_pwb_contents.rb +7 -0
- data/db/migrate/20170919134945_add_block_key_to_pwb_content_photos.rb +5 -0
- data/db/migrate/20170923195321_create_pwb_contacts.rb +33 -0
- data/db/migrate/20171011212930_create_pwb_page_parts.rb +30 -0
- data/db/seeds/translations_es.rb +1 -87
- data/db/seeds/translations_it.rb +92 -0
- data/db/yml_seeds/agency_address.yml +8 -8
- data/db/yml_seeds/contacts.yml +13 -0
- data/db/yml_seeds/content_translations/en.yml +73 -0
- data/db/yml_seeds/content_translations/es.yml +74 -0
- data/db/yml_seeds/content_translations/it.yml +73 -0
- data/db/yml_seeds/content_translations/pt.yml +73 -0
- data/db/yml_seeds/{content/footer.yml → footer.yml} +0 -0
- data/db/yml_seeds/links.yml +389 -0
- data/db/yml_seeds/page_parts/ABOUT_PAGE_PARTS.md +5 -0
- data/db/yml_seeds/page_parts/about-us__content_html.yml +24 -0
- data/db/yml_seeds/page_parts/about-us__our_agency.yml +51 -0
- data/db/yml_seeds/page_parts/contact-us__content_html.yml +24 -0
- data/db/yml_seeds/page_parts/contact-us__form_and_map.yml +17 -0
- data/db/yml_seeds/page_parts/home__about_us_services.yml +85 -0
- data/db/yml_seeds/page_parts/home__content_html.yml +24 -0
- data/db/yml_seeds/page_parts/home__landing_hero.yml +51 -0
- data/db/yml_seeds/page_parts/legal__content_html.yml +24 -0
- data/db/yml_seeds/page_parts/privacy__content_html.yml +24 -0
- data/db/yml_seeds/page_parts/sell__content_html.yml +24 -0
- data/db/yml_seeds/pages/about.yml +11 -0
- data/db/yml_seeds/pages/buy.yml +23 -0
- data/db/yml_seeds/pages/contact.yml +12 -0
- data/db/yml_seeds/pages/home.yml +15 -0
- data/db/yml_seeds/pages/legal_notice.yml +11 -0
- data/db/yml_seeds/pages/privacy_policy.yml +11 -0
- data/db/yml_seeds/pages/rent.yml +15 -0
- data/db/yml_seeds/pages/sell.yml +13 -0
- data/db/yml_seeds/prop/flat_for_rent.yml +11 -11
- data/db/yml_seeds/prop/flat_for_rent_2.yml +57 -0
- data/db/yml_seeds/prop/flat_for_sale.yml +11 -12
- data/db/yml_seeds/prop/flat_for_sale_2.yml +56 -0
- data/db/yml_seeds/prop/villa_for_rent.yml +14 -14
- data/db/yml_seeds/prop/villa_for_sale.yml +15 -15
- data/db/yml_seeds/prop_spain/flat_for_rent.yml +58 -0
- data/db/yml_seeds/prop_spain/flat_for_sale.yml +58 -0
- data/db/yml_seeds/prop_spain/villa_for_rent.yml +58 -0
- data/db/yml_seeds/prop_spain/villa_for_sale.yml +59 -0
- data/db/yml_seeds/sections.yml +119 -119
- data/db/yml_seeds/{content → to_delete}/about_us.yml +0 -0
- data/db/yml_seeds/{content → to_delete}/carousel.yml +0 -0
- data/db/yml_seeds/{content → to_delete}/content_columns.yml +0 -0
- data/db/yml_seeds/to_delete/footer.yml +15 -0
- data/db/yml_seeds/{content → to_delete}/sell.yml +0 -0
- data/db/yml_seeds/{content → to_delete}/static.yml +0 -0
- data/db/yml_seeds/website.yml +2 -1
- data/lib/pwb/engine.rb +16 -2
- data/lib/pwb/pages_seeder.rb +190 -0
- data/lib/pwb/seeder.rb +56 -14
- data/lib/pwb/version.rb +1 -1
- data/lib/tasks/pwb_tasks.rake +19 -2
- data/spec/controllers/pwb/api/v1/propeties_controller_spec.rb +2 -2
- data/spec/controllers/pwb/welcome_controller_spec.rb +18 -5
- data/spec/dummy/config/initializers/assets.rb +9 -0
- data/spec/dummy/config/routes.rb +2 -0
- data/spec/dummy/config/secrets.yml +3 -0
- data/spec/dummy/db/migrate/20171201161323_create_property_web_scraper_import_hosts.property_web_scraper.rb +22 -0
- data/spec/dummy/db/migrate/20171201161324_create_property_web_scraper_listings.property_web_scraper.rb +84 -0
- data/spec/dummy/db/schema.rb +475 -398
- data/spec/factories/pwb_contacts.rb +5 -0
- data/spec/factories/pwb_contents.rb +3 -0
- data/spec/factories/pwb_links.rb +5 -0
- data/spec/factories/pwb_page_contents.rb +5 -0
- data/spec/factories/pwb_page_parts.rb +8 -0
- data/spec/factories/pwb_pages.rb +29 -0
- data/spec/factories/pwb_prop_photos.rb +11 -2
- data/spec/fixtures/mls/properties_interealty.json +1 -496
- data/spec/fixtures/params/bulk_create.json +3 -3
- data/spec/libraries/pwb/pages_seeder_spec.rb +56 -0
- data/spec/libraries/pwb/seeder_spec.rb +14 -10
- data/spec/models/pwb/contact_spec.rb +7 -0
- data/spec/models/pwb/link_spec.rb +7 -0
- data/spec/models/pwb/page_content_spec.rb +7 -0
- data/spec/models/pwb/page_part_spec.rb +7 -0
- data/spec/models/pwb/page_spec.rb +28 -0
- data/spec/models/pwb/website_spec.rb +10 -0
- data/spec/rails_helper.rb +1 -1
- data/spec/requests/pwb/themes_spec.rb +15 -10
- data/spec/views/pwb/application_layout.html.erb_spec.rb +28 -21
- data/spec/views/pwb/contact_us.html.erb_spec.rb +11 -0
- data/spec/views/pwb/welcome.html.erb_spec.rb +13 -9
- metadata +230 -244
- data/app/controllers/pwb/api/v1/cms_pages_controller.rb +0 -102
- data/app/controllers/pwb/comfy_controller.rb +0 -106
- data/app/models/pwb/cms_page_container.rb +0 -9
- data/app/models/pwb/section.rb +0 -35
- data/app/models/pwb/welcome.rb +0 -4
- data/app/resources/pwb/api/v1/cms_block_resource.rb +0 -11
- data/app/resources/pwb/api/v1/cms_page_resource.rb +0 -27
- data/app/themes/berlin/views/pwb/sections/about_us.html.erb +0 -59
- data/app/themes/berlin/views/pwb/sections/cms.html.erb +0 -34
- data/app/themes/berlin/views/pwb/sections/static.html.erb +0 -58
- data/app/views/pwb/search/_search_result_item_to_del.html.erb +0 -56
- data/config/cms_page_containers/about-us.json +0 -18
- data/config/cms_page_containers/about.json +0 -107
- data/config/cms_page_containers/landing.json +0 -19
- data/config/cms_page_containers/legal.json +0 -17
- data/config/cms_page_containers/sell.json +0 -96
- data/config/initializers/comfortable_mexican_sofa.rb +0 -142
- data/config/initializers/i18n.rb +0 -1
- data/db/cms_fixtures/cms/categories/pages.yml +0 -3
- data/db/cms_fixtures/cms/files/_rerenting-landing_framed.png.yml +0 -6
- data/db/cms_fixtures/cms/files/rerenting-landing_framed.png +0 -0
- data/db/cms_fixtures/cms/layouts/about-us/attributes.yml +0 -4
- data/db/cms_fixtures/cms/layouts/about-us/people/attributes.yml +0 -4
- data/db/cms_fixtures/cms/layouts/about-us/people/content.html +0 -55
- data/db/cms_fixtures/cms/layouts/about-us/services/attributes.yml +0 -4
- data/db/cms_fixtures/cms/layouts/about-us/services/content.html +0 -32
- data/db/cms_fixtures/cms/layouts/about-us/services/javascript.js +0 -0
- data/db/cms_fixtures/cms/layouts/about-us/services/stylesheet.css +0 -0
- data/db/cms_fixtures/cms/layouts/about-us/stylesheet.css +0 -0
- data/db/cms_fixtures/cms/layouts/default-layout/attributes.yml +0 -4
- data/db/cms_fixtures/cms/layouts/default-layout/content.html +0 -51
- data/db/cms_fixtures/cms/layouts/default-layout/javascript.js +0 -0
- data/db/cms_fixtures/cms/layouts/default-layout/stylesheet.css +0 -0
- data/db/cms_fixtures/cms/pages/index/about-us/attributes.yml +0 -8
- data/db/cms_fixtures/cms/pages/index/about-us/people/attributes.yml +0 -8
- data/db/cms_fixtures/cms/pages/index/about-us/people/de/attributes.yml +0 -8
- data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_details_a.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_details_b.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_details_c.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_details_d.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_img_url_a.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_img_url_b.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_img_url_c.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_img_url_d.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_name_a.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_name_b.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_name_c.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_name_d.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_title_a.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_title_b.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_title_c.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/de/person_title_d.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/en/attributes.yml +0 -8
- data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_details_a.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_details_b.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_details_c.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_details_d.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_img_url_a.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_img_url_b.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_img_url_c.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_img_url_d.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_name_a.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_name_b.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_name_c.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_name_d.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_title_a.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_title_b.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_title_c.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/en/person_title_d.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/es/attributes.yml +0 -8
- data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_details_a.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_details_b.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_details_c.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_details_d.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_img_url_a.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_img_url_b.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_img_url_c.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_img_url_d.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_name_a.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_name_b.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_name_c.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_name_d.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_title_a.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_title_b.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_title_c.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/es/person_title_d.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/pt/attributes.yml +0 -8
- data/db/cms_fixtures/cms/pages/index/about-us/people/pt/person_details_a.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/pt/person_details_b.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/pt/person_details_c.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/pt/person_details_d.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/pt/person_name_a.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/pt/person_name_b.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/pt/person_name_c.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/pt/person_name_d.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/pt/person_title_a.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/pt/person_title_b.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/pt/person_title_c.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/pt/person_title_d.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/ru/attributes.yml +0 -8
- data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_details_a.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_details_b.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_details_c.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_details_d.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_img_url_a.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_img_url_b.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_img_url_c.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_img_url_d.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_name_a.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_name_b.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_name_c.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_name_d.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_title_a.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_title_b.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_title_c.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/people/ru/person_title_d.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/services/attributes.yml +0 -8
- data/db/cms_fixtures/cms/pages/index/about-us/services/content_a.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/services/content_b.html +0 -0
- data/db/cms_fixtures/cms/pages/index/about-us/services/content_c.html +0 -0
- data/db/cms_fixtures/cms/pages/index/about-us/services/de/attributes.yml +0 -8
- data/db/cms_fixtures/cms/pages/index/about-us/services/de/content_a.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/services/de/content_b.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/services/de/content_c.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/services/de/title_a.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/services/de/title_b.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/services/de/title_c.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/services/en/attributes.yml +0 -8
- data/db/cms_fixtures/cms/pages/index/about-us/services/en/content_a.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/services/en/content_b.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/services/en/content_c.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/services/en/title_a.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/services/en/title_b.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/services/en/title_c.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/services/es/attributes.yml +0 -8
- data/db/cms_fixtures/cms/pages/index/about-us/services/es/content_a.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/services/es/content_b.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/services/es/content_c.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/services/es/title_a.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/services/es/title_b.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/services/es/title_c.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/services/title_a.html +0 -1
- data/db/cms_fixtures/cms/pages/index/about-us/services/title_b.html +0 -0
- data/db/cms_fixtures/cms/pages/index/about-us/services/title_c.html +0 -0
- data/db/cms_fixtures/cms/pages/index/attributes.yml +0 -8
- data/db/cms_fixtures/cms/pages/index/content.html +0 -1
- data/db/cms_fixtures/cms/pages/index/title.html +0 -0
- data/db/cms_fixtures/cms/snippets/snippet1/attributes.yml +0 -3
- data/db/cms_fixtures/cms/snippets/snippet1/content.html +0 -1
- data/db/cms_fixtures/sample-site/categories/files.yml +0 -1
- data/db/cms_fixtures/sample-site/categories/pages.yml +0 -1
- data/db/cms_fixtures/sample-site/categories/snippets.yml +0 -1
- data/db/cms_fixtures/sample-site/files/_sample.jpg.yml +0 -5
- data/db/cms_fixtures/sample-site/files/sample.jpg +0 -0
- data/db/cms_fixtures/sample-site/layouts/default/attributes.yml +0 -1
- data/db/cms_fixtures/sample-site/layouts/default/content.html +0 -5
- data/db/cms_fixtures/sample-site/layouts/default/javascript.js +0 -1
- data/db/cms_fixtures/sample-site/layouts/default/nested/attributes.yml +0 -2
- data/db/cms_fixtures/sample-site/layouts/default/nested/content.haml +0 -3
- data/db/cms_fixtures/sample-site/layouts/default/nested/javascript.js +0 -1
- data/db/cms_fixtures/sample-site/layouts/default/nested/stylesheet.css +0 -1
- data/db/cms_fixtures/sample-site/layouts/default/stylesheet.css +0 -1
- data/db/cms_fixtures/sample-site/pages/index/attributes.yml +0 -6
- data/db/cms_fixtures/sample-site/pages/index/child/attributes.yml +0 -3
- data/db/cms_fixtures/sample-site/pages/index/child/left.haml +0 -1
- data/db/cms_fixtures/sample-site/pages/index/child/right.html +0 -1
- data/db/cms_fixtures/sample-site/pages/index/child/thumbnail.png +0 -0
- data/db/cms_fixtures/sample-site/pages/index/content.html +0 -2
- data/db/cms_fixtures/sample-site/snippets/default/attributes.yml +0 -4
- data/db/cms_fixtures/sample-site/snippets/default/content.html +0 -1
- data/db/migrate/20170315212222_translate_sections.rb +0 -15
- data/db/migrate/20170513221300_create_cms.rb +0 -133
- data/lib/pwb/cms_data_loader.rb +0 -38
- data/spec/dummy/log/development.log +0 -0
- data/spec/dummy/log/test.log +0 -0
- data/spec/dummy/public/uploads/pwb/content_photo/image/1/carousel_windows.jpg +0 -0
- data/spec/dummy/public/uploads/pwb/content_photo/image/2/carousel_deck_chair.jpg +0 -0
- data/spec/dummy/public/uploads/pwb/content_photo/image/3/carousel_grass.jpg +0 -0
- data/spec/dummy/public/uploads/pwb/content_photo/image/4/carousel_grass.jpg +0 -0
- data/spec/dummy/public/uploads/pwb/prop_photo/image/1/flat_balcony.jpg +0 -0
- data/spec/dummy/public/uploads/pwb/prop_photo/image/1/gdaje3atcct1gx2ngv9u.jpg +0 -0
- data/spec/dummy/public/uploads/pwb/prop_photo/image/1/new_villa.jpg +0 -0
- data/spec/dummy/public/uploads/pwb/prop_photo/image/2/flat_balcony.jpg +0 -0
- data/spec/dummy/public/uploads/pwb/prop_photo/image/2/kitchen_modern.jpg +0 -0
- data/spec/dummy/public/uploads/pwb/prop_photo/image/2/rxo23syongfydjpoizrd.jpg +0 -0
- data/spec/dummy/public/uploads/pwb/prop_photo/image/3/mansion_front.jpg +0 -0
- data/spec/dummy/public/uploads/pwb/prop_photo/image/3/vzlptgtccsk2d2ewp4id.jpg +0 -0
- data/spec/dummy/public/uploads/pwb/prop_photo/image/4/mansion_bedroom.jpg +0 -0
- data/spec/dummy/public/uploads/pwb/prop_photo/image/4/xwayprwnmmmhrzrgwvch.jpg +0 -0
- data/spec/dummy/public/uploads/pwb/prop_photo/image/5/flat_window.jpg +0 -0
- data/spec/dummy/public/uploads/pwb/prop_photo/image/5/ilxn2u37bak0v60u6f8q.jpg +0 -0
- data/spec/dummy/public/uploads/pwb/prop_photo/image/6/kitchen_classic.jpg +0 -0
- data/spec/dummy/public/uploads/pwb/prop_photo/image/7/flat_balcony.jpg +0 -0
- data/spec/dummy/public/uploads/pwb/prop_photo/image/8/lounge_cosy.jpg +0 -0
- data/spec/factories/pwb_sections.rb +0 -4
- data/spec/models/pwb/section_spec.rb +0 -11
data/config/locales/admin.es.yml
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
es:
|
|
2
2
|
admin:
|
|
3
|
+
properties: Properties
|
|
4
|
+
cards:
|
|
5
|
+
website: Website
|
|
6
|
+
websitePrompt: Website actions
|
|
7
|
+
websiteLink: Go to web control panel
|
|
8
|
+
properties: Properties
|
|
9
|
+
propertiesPrompt: Property actions
|
|
10
|
+
propertiesLink: Go to properties
|
|
11
|
+
tasks:
|
|
12
|
+
addProperty: Add a property
|
|
13
|
+
addPropertyPrompt: properties / Add property
|
|
14
|
+
manageProperties: Manage properties
|
|
15
|
+
managePropertiesPrompt: Properties / Edit property
|
|
16
|
+
changeLogo: Manage logo, languages and appearance
|
|
17
|
+
changeLogoPrompt: Web Configuration
|
|
18
|
+
changeLang: Change web language
|
|
19
|
+
changeLangPrompt: Web Configuration
|
|
20
|
+
changeLegalText: Change 'Legal' texts
|
|
21
|
+
manageLandingCarousel: Manage landing page carousel
|
|
22
|
+
changeAboutUsText: Change 'About Us' text
|
|
23
|
+
managePropertyTypes: Manage property types
|
|
24
|
+
managePropertyExtras: Manage property features
|
|
25
|
+
|
|
3
26
|
"true": "true"
|
|
4
27
|
"false": "false"
|
|
5
28
|
"yes": "si"
|
|
@@ -61,14 +84,45 @@ es:
|
|
|
61
84
|
landing: Inicio
|
|
62
85
|
legal: Legal
|
|
63
86
|
pageSections:
|
|
87
|
+
notEditable:
|
|
88
|
+
This section cannot be edited
|
|
89
|
+
contactUsFormAndMap:
|
|
90
|
+
title: Form and Map
|
|
91
|
+
info: Contact us form and map
|
|
92
|
+
pageTitle: Page title
|
|
64
93
|
services:
|
|
65
94
|
title: Vuestro servicios
|
|
66
95
|
info: Detalles de vuestro servicios
|
|
67
96
|
people:
|
|
68
97
|
title: Vuestro equipo
|
|
69
98
|
info: Detalles de vuestro equipo
|
|
99
|
+
# landingCarousel:
|
|
100
|
+
# title: Home page carousel
|
|
101
|
+
# info: Main section displaying images and text
|
|
102
|
+
rawHtml:
|
|
103
|
+
title: HTML Content
|
|
104
|
+
info: You can add extra HTML here
|
|
105
|
+
topRentals:
|
|
106
|
+
title: Top Rentals
|
|
107
|
+
info: Summary list of properties to rent
|
|
108
|
+
topSales:
|
|
109
|
+
title: Top Sales
|
|
110
|
+
info: Summary list of properties for sale
|
|
111
|
+
contactUsForm:
|
|
112
|
+
title: Contact us form
|
|
113
|
+
info: Form to allow visitors to send you a message
|
|
114
|
+
# aboutUs:
|
|
115
|
+
# title: Text and photo
|
|
116
|
+
# info: A little bit about your business
|
|
117
|
+
ourAgency:
|
|
118
|
+
title: About our agency
|
|
119
|
+
info: A little bit about your business
|
|
120
|
+
landingHero:
|
|
121
|
+
title: Main header
|
|
122
|
+
info: Large image and text highlighting your busi
|
|
70
123
|
editor:
|
|
71
124
|
pickPhoto: Selecciona foto
|
|
125
|
+
uploadPhoto: Subir foto
|
|
72
126
|
inTabLabels:
|
|
73
127
|
topNav: Navigacion
|
|
74
128
|
footer: Footer
|
|
@@ -140,12 +194,12 @@ es:
|
|
|
140
194
|
suffixTr: en Turko
|
|
141
195
|
privacyPolicy: Texto de la política de privacidad
|
|
142
196
|
legalAdvice: Texto del aviso legal
|
|
143
|
-
landingcarousel: Texto del slider
|
|
144
|
-
cac1: Columna 1
|
|
145
|
-
cac2: Columna 2
|
|
146
|
-
cac3: Columna 3
|
|
147
|
-
landingPageHero: Contenido para la página principal
|
|
148
|
-
tagLine: Tag Line
|
|
197
|
+
# landingcarousel: Texto del slider
|
|
198
|
+
# cac1: Columna 1
|
|
199
|
+
# cac2: Columna 2
|
|
200
|
+
# cac3: Columna 3
|
|
201
|
+
# landingPageHero: Contenido para la página principal
|
|
202
|
+
# tagLine: Tag Line
|
|
149
203
|
aboutUs: Sobre nosotros
|
|
150
204
|
footerInfo: Contenido para el pie de página
|
|
151
205
|
|
|
@@ -0,0 +1,474 @@
|
|
|
1
|
+
pt:
|
|
2
|
+
admin:
|
|
3
|
+
|
|
4
|
+
ar: Arabic
|
|
5
|
+
en: English
|
|
6
|
+
es: Spanish
|
|
7
|
+
ca: Catalan
|
|
8
|
+
fr: French
|
|
9
|
+
ru: Russian
|
|
10
|
+
nl: Dutch
|
|
11
|
+
it: Italian
|
|
12
|
+
de: German
|
|
13
|
+
pt: Portuguese
|
|
14
|
+
vi: Vietnamese
|
|
15
|
+
tr: Turkish
|
|
16
|
+
hi: Hindi
|
|
17
|
+
|
|
18
|
+
street: Street
|
|
19
|
+
streetAddress: Street Address
|
|
20
|
+
streetNumber: Street Number
|
|
21
|
+
city: City
|
|
22
|
+
postCode: Post Code
|
|
23
|
+
region: Region
|
|
24
|
+
zone: Zone
|
|
25
|
+
locality: Locality
|
|
26
|
+
country: Country
|
|
27
|
+
|
|
28
|
+
save: Save
|
|
29
|
+
cancel: Cancel
|
|
30
|
+
edit: Edit
|
|
31
|
+
preview: Preview
|
|
32
|
+
close: Close
|
|
33
|
+
addLogo: Add Logo
|
|
34
|
+
addPhotos: Add Photos
|
|
35
|
+
create: Create
|
|
36
|
+
delete: Delete
|
|
37
|
+
show: Show
|
|
38
|
+
hide: Hide
|
|
39
|
+
logo: Logo
|
|
40
|
+
aboutUsPhoto: About Us photo
|
|
41
|
+
addAboutUsPhoto: Add About Us photo
|
|
42
|
+
|
|
43
|
+
pages:
|
|
44
|
+
aboutUs: About us
|
|
45
|
+
sell: Sell
|
|
46
|
+
landing: Landing
|
|
47
|
+
legal: Legal
|
|
48
|
+
pageSections:
|
|
49
|
+
notEditable:
|
|
50
|
+
This section cannot be edited
|
|
51
|
+
contactUsFormAndMap:
|
|
52
|
+
title: Form and Map
|
|
53
|
+
info: Contact us form and map
|
|
54
|
+
pageTitle: Page title
|
|
55
|
+
services:
|
|
56
|
+
title: Services you offer
|
|
57
|
+
info: An overview of the services you offer
|
|
58
|
+
people:
|
|
59
|
+
title: Your team
|
|
60
|
+
info: Summary info about your team
|
|
61
|
+
rawHtml:
|
|
62
|
+
title: HTML Content
|
|
63
|
+
info: You can add extra HTML here
|
|
64
|
+
topRentals:
|
|
65
|
+
title: Top Rentals
|
|
66
|
+
info: Summary list of properties to rent
|
|
67
|
+
topSales:
|
|
68
|
+
title: Top Sales
|
|
69
|
+
info: Summary list of properties for sale
|
|
70
|
+
contactUsForm:
|
|
71
|
+
title: Contact us form
|
|
72
|
+
info: Form to allow visitors to send you a message
|
|
73
|
+
ourAgency:
|
|
74
|
+
title: About our agency
|
|
75
|
+
info: A little bit about your business
|
|
76
|
+
landingHero:
|
|
77
|
+
title: Main header
|
|
78
|
+
info: Large image and text highlighting your busi
|
|
79
|
+
editor:
|
|
80
|
+
pickPhoto: Pick photo
|
|
81
|
+
uploadPhoto: Upload photo
|
|
82
|
+
|
|
83
|
+
navbar:
|
|
84
|
+
home: "Home"
|
|
85
|
+
admin: "Admin"
|
|
86
|
+
aboutUs: "About Us"
|
|
87
|
+
sell: "Sell"
|
|
88
|
+
buy: "Buy"
|
|
89
|
+
rent: "Rent"
|
|
90
|
+
contactUs: "Contact"
|
|
91
|
+
legalAdvice: "Legal Notice"
|
|
92
|
+
privacyPolicy: "Privacy Policy"
|
|
93
|
+
|
|
94
|
+
btnLabels:
|
|
95
|
+
importTranslations: Import translations
|
|
96
|
+
importSiteContent: Import website content
|
|
97
|
+
setThemePrompt: Set as website theme
|
|
98
|
+
activatedThemeInfo: Currently active website theme
|
|
99
|
+
|
|
100
|
+
info:
|
|
101
|
+
defaultCurrency: Will only apply to newly added properties
|
|
102
|
+
defaultAreaUnit: Will only apply to newly added properties
|
|
103
|
+
recPropPhotoSize: Recommended size for a photo is 800px X 500px,
|
|
104
|
+
recCarouselPhotoSize: Recommended size for carousel images is 900px X 400px,
|
|
105
|
+
recLogoPhotoSize: Recommended size for logo is 120px X 80px,
|
|
106
|
+
orderByDragging: Drag and drop to order - first photo will be main photo.
|
|
107
|
+
|
|
108
|
+
webContentLabels:
|
|
109
|
+
suffixEn: in English
|
|
110
|
+
suffixEs: in Spanish
|
|
111
|
+
suffixAr: in Arabic
|
|
112
|
+
suffixFr: in French
|
|
113
|
+
suffixIt: in Italian
|
|
114
|
+
suffixPt: in Portuguese
|
|
115
|
+
suffixDe: in German
|
|
116
|
+
suffixRu: in Russian
|
|
117
|
+
suffixCa: in Catalan
|
|
118
|
+
suffixNl: in Dutch
|
|
119
|
+
suffixVi: in Vietnamese
|
|
120
|
+
suffixTr: in Turkish
|
|
121
|
+
privacyPolicy: Privacy Policy
|
|
122
|
+
legalAdvice: Legal Notice
|
|
123
|
+
# landingcarousel: Text for carousel image
|
|
124
|
+
# cac1: Column 1
|
|
125
|
+
# cac2: Column 2
|
|
126
|
+
# cac3: Column 3
|
|
127
|
+
# landingPageHero: Content for the main page
|
|
128
|
+
# tagLine: Tag Line
|
|
129
|
+
aboutUs: About us
|
|
130
|
+
footerInfo: Extra footer content
|
|
131
|
+
|
|
132
|
+
siteSections:
|
|
133
|
+
aboutUs: About us
|
|
134
|
+
contactUs: Contact
|
|
135
|
+
buy: Buy
|
|
136
|
+
rent: Rent
|
|
137
|
+
sell: Sell
|
|
138
|
+
|
|
139
|
+
ioSections:
|
|
140
|
+
fromMls: Import from MLS
|
|
141
|
+
fromUpload: Import from file
|
|
142
|
+
fromWebpage: Import from a webpage
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
properties: Properties
|
|
147
|
+
|
|
148
|
+
prompts:
|
|
149
|
+
fixErrors: Please correct the errors below
|
|
150
|
+
|
|
151
|
+
todos:
|
|
152
|
+
createContent: Create some content
|
|
153
|
+
companyDetails: Set up your company details
|
|
154
|
+
|
|
155
|
+
locationTab:
|
|
156
|
+
confirmAddress: Confirm new location
|
|
157
|
+
|
|
158
|
+
agencySections:
|
|
159
|
+
general: Agency Details
|
|
160
|
+
location: Location
|
|
161
|
+
user: User Details
|
|
162
|
+
|
|
163
|
+
siteLayout:
|
|
164
|
+
wide: Wide
|
|
165
|
+
boxed: Boxed
|
|
166
|
+
|
|
167
|
+
propertySections:
|
|
168
|
+
general: General
|
|
169
|
+
location: Location
|
|
170
|
+
text: Text
|
|
171
|
+
extras: Features
|
|
172
|
+
photos: Photos
|
|
173
|
+
sale: Sale / Rental
|
|
174
|
+
owner: Owner
|
|
175
|
+
|
|
176
|
+
propertyGeneralSections:
|
|
177
|
+
sale: Sale
|
|
178
|
+
longtermRental: Long term rental
|
|
179
|
+
seasonalRental: Seasonal rental
|
|
180
|
+
visibility: Visibility
|
|
181
|
+
generalData: General Data
|
|
182
|
+
characteristics: Characteristics
|
|
183
|
+
portals: Web Portals
|
|
184
|
+
extras: Features
|
|
185
|
+
|
|
186
|
+
translationsSections:
|
|
187
|
+
extras: Features
|
|
188
|
+
propertyTypes: Property Types
|
|
189
|
+
propertyOrigins: Property Origins
|
|
190
|
+
propertyStates: Property States
|
|
191
|
+
propertyLabels: Property Labels
|
|
192
|
+
provinces: Provinces
|
|
193
|
+
|
|
194
|
+
toolTips:
|
|
195
|
+
forSale: Select if property is available for sale
|
|
196
|
+
priceSaleCurrent: Current selling price
|
|
197
|
+
saleDiscount: saleDiscount
|
|
198
|
+
priceSaleOriginal: Original selling price
|
|
199
|
+
longTermRental: Select 'Yes' if property is available for long term rental
|
|
200
|
+
priceRentalMonthlyCurrent: Current rental price
|
|
201
|
+
priceRentalMonthlyOriginal: Original rental price
|
|
202
|
+
|
|
203
|
+
addNewEntry: Add New Entry
|
|
204
|
+
visible: Select 'Yes' to publish property on the website
|
|
205
|
+
highlighted: Select 'Yes' to highlight property on the website
|
|
206
|
+
seasonalRental: Select 'Yes' if property is rentened seasonaly
|
|
207
|
+
ref: Reference number for property
|
|
208
|
+
|
|
209
|
+
alerts:
|
|
210
|
+
changesDetected: You have unsaved changes.
|
|
211
|
+
deletingProperty: Are you sure you want to delete this property. This action cannot be undone.
|
|
212
|
+
navigatingFromChanges: You have unsaved changes. Please save or cancel your changes.
|
|
213
|
+
visibleProperties: These properties are visible on your website
|
|
214
|
+
hiddenProperties: These properties will not be shown on your website
|
|
215
|
+
clickMapToUpdate: Click on map to select address or type directly below.
|
|
216
|
+
|
|
217
|
+
|
|
218
|
+
cards:
|
|
219
|
+
website: Website
|
|
220
|
+
websitePrompt: Website actions
|
|
221
|
+
websiteLink: Go to web control panel
|
|
222
|
+
properties: Properties
|
|
223
|
+
propertiesPrompt: Property actions
|
|
224
|
+
propertiesLink: Go to properties
|
|
225
|
+
tasks:
|
|
226
|
+
addProperty: Add a property
|
|
227
|
+
addPropertyPrompt: properties / Add property
|
|
228
|
+
manageProperties: Manage properties
|
|
229
|
+
managePropertiesPrompt: Properties / Edit property
|
|
230
|
+
changeLogo: Manage logo, languages and appearance
|
|
231
|
+
changeLogoPrompt: Web Configuration
|
|
232
|
+
changeLang: Change web language
|
|
233
|
+
changeLangPrompt: Web Configuration
|
|
234
|
+
changeLegalText: Change 'Legal' texts
|
|
235
|
+
manageLandingCarousel: Manage landing page carousel
|
|
236
|
+
changeAboutUsText: Change 'About Us' text
|
|
237
|
+
managePropertyTypes: Manage property types
|
|
238
|
+
managePropertyExtras: Manage property features
|
|
239
|
+
|
|
240
|
+
editWebsite: Edit Website
|
|
241
|
+
settingsForWebsite: Settings for Website
|
|
242
|
+
contentForWebsite: Content for Website
|
|
243
|
+
sectionsForWebsite: Website Sections
|
|
244
|
+
themesForWebsite: Website Themes
|
|
245
|
+
importExport: Import and export data
|
|
246
|
+
returnToWebsite: Return to web
|
|
247
|
+
settingsForProperties: Settings for properties
|
|
248
|
+
returnToProperties: Return to properties
|
|
249
|
+
addProperty: Add property
|
|
250
|
+
addClient: Add client
|
|
251
|
+
newProperty: New Property
|
|
252
|
+
newClient: New Client
|
|
253
|
+
propertiesList: Properties list
|
|
254
|
+
clientsList: Clients list
|
|
255
|
+
|
|
256
|
+
inTabLabels:
|
|
257
|
+
topNav: Navigacion
|
|
258
|
+
footer: Footer
|
|
259
|
+
currency: Moneda
|
|
260
|
+
colors: Colores
|
|
261
|
+
socialLinks: Redes sociales
|
|
262
|
+
siteLayout: Modo de visualización
|
|
263
|
+
colorFooterBg: Color de fondo del footer
|
|
264
|
+
colorFooterMainText: Color principal del texto del footer
|
|
265
|
+
colorFooterSecText: Color secundario del texto del footer
|
|
266
|
+
colorPrimary: Color principal
|
|
267
|
+
colorSecondary: Color secundario
|
|
268
|
+
colorActions: Color acciones
|
|
269
|
+
supportedLanguages: Idiomas
|
|
270
|
+
visibility: Visibilidad
|
|
271
|
+
adminSections:
|
|
272
|
+
pages: Páginas
|
|
273
|
+
about: Sobre
|
|
274
|
+
agencyDetails: Agencia
|
|
275
|
+
clientes: Clientes
|
|
276
|
+
content: Página
|
|
277
|
+
import: Importar Dados
|
|
278
|
+
labels: Etiquetas
|
|
279
|
+
list: Listagem
|
|
280
|
+
properties: Imóveis
|
|
281
|
+
quit: Ir para a página
|
|
282
|
+
settings: Definições
|
|
283
|
+
start: Início
|
|
284
|
+
translations: Traduções
|
|
285
|
+
websiteContent: Conteúdo
|
|
286
|
+
websiteSettings: Definições
|
|
287
|
+
|
|
288
|
+
brl: Brasil
|
|
289
|
+
btnLabels:
|
|
290
|
+
activatedThemeInfo: Tema da página ativo
|
|
291
|
+
importSiteContent: Importar conteúdo para a página
|
|
292
|
+
importTranslations: Importar traduções
|
|
293
|
+
setThemePrompt: Definir como tema da página
|
|
294
|
+
ca-CA: Catalunha
|
|
295
|
+
chf: Franco Suiço
|
|
296
|
+
clp: Peso Chile
|
|
297
|
+
cny:
|
|
298
|
+
de-DE: Alemanha
|
|
299
|
+
en-UK: Reino Unido
|
|
300
|
+
en-US: Estados Unidos
|
|
301
|
+
es-CL: Chile
|
|
302
|
+
es-ES: Espanha
|
|
303
|
+
es-MX: México
|
|
304
|
+
eur: Euros
|
|
305
|
+
'false': falso
|
|
306
|
+
fi-FI: Finlândia
|
|
307
|
+
fieldLabels:
|
|
308
|
+
defaultLocale: Default Website Language
|
|
309
|
+
areaUnit: Unidade de Área
|
|
310
|
+
codigoPostal: Código Postal
|
|
311
|
+
companyName: Nome da Empresa
|
|
312
|
+
constructedArea: "Área de construção"
|
|
313
|
+
countBathrooms: Casas de Banho
|
|
314
|
+
countBedrooms: Quartos
|
|
315
|
+
currency: Moeda
|
|
316
|
+
defaultAreaUnit: Unidade de Área predefinida
|
|
317
|
+
defaultCurrency: Moeda predefinida
|
|
318
|
+
deleteProp: Eliminar imóvel
|
|
319
|
+
descripcionEspanol: Descrição em Espanhol
|
|
320
|
+
descripcionIngles: Descrição em Inglês
|
|
321
|
+
description: Descrição
|
|
322
|
+
direccion: Morada
|
|
323
|
+
direccionMapa: Morada no Mapa
|
|
324
|
+
direccionReal: Morada Real
|
|
325
|
+
documentationId: ID Documentação
|
|
326
|
+
documentationType: Tipo de Documentação
|
|
327
|
+
eficienciaEnergia: Certificado Energético
|
|
328
|
+
email: Endereço de Email
|
|
329
|
+
estado: Estado
|
|
330
|
+
fax: Fax
|
|
331
|
+
firstNames: Primeiro Nome
|
|
332
|
+
forSale: Para Venda?
|
|
333
|
+
forSearchWidget: Para caixa de pesquisa
|
|
334
|
+
garaje: Garagem
|
|
335
|
+
generalContactEmail: Email de contacto geral
|
|
336
|
+
hideMap: Esconder Mapa
|
|
337
|
+
highlighted: Em destaque
|
|
338
|
+
info:
|
|
339
|
+
generalContactEmail: Questões colocadas na página de contactos serão enviadas para aqui
|
|
340
|
+
primaryEmail: Email exibido no topo da página
|
|
341
|
+
primaryPhone: Telefone exibido no topo da página
|
|
342
|
+
propertyContactEmail: Perguntas sobre imóveis específicos serão enviadas para aqui
|
|
343
|
+
label: Etiqueta
|
|
344
|
+
lastNames: "Último nome"
|
|
345
|
+
longTermRental: Disponível para arrendamento a longo prazo?
|
|
346
|
+
longTermRentalDiscount: Desconto de arrendamento a longo prazo
|
|
347
|
+
mlsCsvFile: Ficheiro csv exportado a partir da sua MLS
|
|
348
|
+
nationality: Nacionalidade
|
|
349
|
+
numAseos:
|
|
350
|
+
obscureMap: Esconder morada real na página?
|
|
351
|
+
origen: Origem
|
|
352
|
+
otherPhone: Outro número de telefone
|
|
353
|
+
personTitle: Título
|
|
354
|
+
pickMlsPrompt: Escolher a sua MLS
|
|
355
|
+
plotArea: "Área do Terreno"
|
|
356
|
+
precioAlquiler: Preço de Arrendamento
|
|
357
|
+
precioAntiguo: Preço Original
|
|
358
|
+
precioTa:
|
|
359
|
+
precioTb: Baixa de preço
|
|
360
|
+
precioTm: Preço médio
|
|
361
|
+
precioVenta: Preço de Venda
|
|
362
|
+
priceRentalMonthlyCurrent: Valor renda (por mês)
|
|
363
|
+
priceRentalMonthlyHighSeason: Preço época alta
|
|
364
|
+
priceRentalMonthlyLowSeason: Preço época baixa
|
|
365
|
+
priceRentalMonthlyOriginal: Preço original de arrendamento (por mês)
|
|
366
|
+
priceRentalMonthlyStandardSeason: Preço de arrendamento normal
|
|
367
|
+
priceSaleCurrent: Preço atual
|
|
368
|
+
priceSaleOriginal: Preço original
|
|
369
|
+
primaryEmail: Email principal
|
|
370
|
+
primaryPhone: Telefone principal
|
|
371
|
+
propCsvUploadPrompt: Escolher tipo de ficheiro para importação
|
|
372
|
+
propertyContactEmail: Email de contacto de imóveis
|
|
373
|
+
pwbCsvFile: Ficheiro csv exportado a partir do PropertyWebBuilder
|
|
374
|
+
ref: Referência
|
|
375
|
+
saleDiscount: Desconto de Venda
|
|
376
|
+
seasonalRental: Disponível para aluguer de temporada?
|
|
377
|
+
skype: Skype
|
|
378
|
+
temporadas: Temporadas
|
|
379
|
+
tipo: Tipo
|
|
380
|
+
title: Título
|
|
381
|
+
tituloEspanol: Título em Espanhol
|
|
382
|
+
tituloIngles: Título em Inglês
|
|
383
|
+
visible: Visível
|
|
384
|
+
visibleOnWeb: Visível na página
|
|
385
|
+
yearConstruction: Ano de construção
|
|
386
|
+
fr-FR: França
|
|
387
|
+
gbp: Libras esterlinas
|
|
388
|
+
hi:
|
|
389
|
+
hi-IN: "Índia"
|
|
390
|
+
hkd: Dólar Hong Kong
|
|
391
|
+
info:
|
|
392
|
+
defaultAreaUnit: Apenas será aplicado a novas propriedades
|
|
393
|
+
defaultCurrency: Moeda predefinida
|
|
394
|
+
orderByDragging: Arraste para ordenar - a primeira foto será a principal.
|
|
395
|
+
recCarouselPhotoSize: Tamanho recomendado para imagens do carousel é de 900px X 400px
|
|
396
|
+
recLogoPhotoSize: Tamanho recomendado para o logo é 120px X 80px
|
|
397
|
+
recPropPhotoSize: Tamanho recomendado para a foto é 800px X 500px
|
|
398
|
+
inr:
|
|
399
|
+
ioSections:
|
|
400
|
+
fromMls: Importar da MLS
|
|
401
|
+
fromUpload: Importar de Ficheiro
|
|
402
|
+
fromWebpage: Importar de uma Página
|
|
403
|
+
it-IT: Itália
|
|
404
|
+
ne-NE: Holanda
|
|
405
|
+
'no': Não
|
|
406
|
+
no-NO: Noruega
|
|
407
|
+
po-PO: Polónia
|
|
408
|
+
propertyColHeader:
|
|
409
|
+
actions: Acções
|
|
410
|
+
bathrooms: Casas de Banho
|
|
411
|
+
bedrooms: Quartos
|
|
412
|
+
highlighted: Em destaque
|
|
413
|
+
locality: Freguesia
|
|
414
|
+
price: Preço
|
|
415
|
+
reference: Referência
|
|
416
|
+
type: Tipo
|
|
417
|
+
visible: Vísivel
|
|
418
|
+
zone: Zona
|
|
419
|
+
pt-BR: Brasil
|
|
420
|
+
pt-PT: Portugal
|
|
421
|
+
ru-RU: Rússia
|
|
422
|
+
rub:
|
|
423
|
+
siteSections:
|
|
424
|
+
aboutUs: Sobre nós
|
|
425
|
+
buy: Comprar
|
|
426
|
+
contactUs: Contactos
|
|
427
|
+
rent: Arrendar
|
|
428
|
+
sell: Vender
|
|
429
|
+
sqft:
|
|
430
|
+
sqmt: Metros Quadrados
|
|
431
|
+
'true': Verdade
|
|
432
|
+
usd: Dólares Americanos
|
|
433
|
+
webContentLabels:
|
|
434
|
+
aboutUs: Sobre Nós
|
|
435
|
+
cac1: Coluna 1
|
|
436
|
+
cac2: Coluna 2
|
|
437
|
+
cac3: Coluna 3
|
|
438
|
+
footerInfo: Conteúdo extra do rodapé
|
|
439
|
+
landingPageHero: Conteúdo da página principal
|
|
440
|
+
landingcarousel: Texto para imagens de carousel
|
|
441
|
+
legalAdvice: Informação Legal
|
|
442
|
+
privacyPolicy: Termos de Privacidade
|
|
443
|
+
suffixAr: em Árabe
|
|
444
|
+
suffixDe: em Alemão
|
|
445
|
+
suffixEn: em Inglês
|
|
446
|
+
suffixEs: em Espanhol
|
|
447
|
+
suffixFr: em Francês
|
|
448
|
+
suffixIt: em Italíano
|
|
449
|
+
suffixPt: em Português
|
|
450
|
+
tagLine: Linha de Etiqueta
|
|
451
|
+
webContentSections:
|
|
452
|
+
aboutUs: Sobre nós
|
|
453
|
+
appearance: Aspecto
|
|
454
|
+
contactInformation: Informação de Contacto
|
|
455
|
+
contentAreaCols: Colunas
|
|
456
|
+
footer: Rodapé
|
|
457
|
+
general: Geral
|
|
458
|
+
home: Iníco
|
|
459
|
+
info:
|
|
460
|
+
contentAreaCols: Colunas na página principal que dão uma visão geral dos serviços fornecidos
|
|
461
|
+
landingCarousel: Carousel da Página Inicial
|
|
462
|
+
legal: Informação Legal
|
|
463
|
+
sections: Secções
|
|
464
|
+
sell: Vender
|
|
465
|
+
tagLine: Linha de Etiqueta
|
|
466
|
+
navigation: Navigation
|
|
467
|
+
|
|
468
|
+
'yes': Sim
|
|
469
|
+
zar: South African Rand
|
|
470
|
+
|
|
471
|
+
|
|
472
|
+
|
|
473
|
+
|
|
474
|
+
|