diff --git a/assets/js/frontend/googlemaps.js b/assets/js/frontend/googlemaps.js index 7b45307e..fe19671c 100755 --- a/assets/js/frontend/googlemaps.js +++ b/assets/js/frontend/googlemaps.js @@ -9,7 +9,6 @@ * GooglemapSearch */ var GooglemapSingle = Opalestate.GooglemapSingle = function ( data, id ) { - /** * Create Google Map In Single Property Only */ @@ -42,11 +41,36 @@ mapTypeId: google.maps.MapTypeId.ROADMAP, scrollwheel: false }; - var propertyMap = new google.maps.Map( document.getElementById( id ), propertyMapOptions ); - /** - * - */ + if ( ( typeof opalestateGmap !== 'undefined' ) ) { + switch ( opalestateGmap.style ) { + case 'standard': + propertyMapOptions.styles = GoogleMapStyles.standard; + break; + case 'silver': + propertyMapOptions.styles = GoogleMapStyles.silver; + break; + case 'retro': + propertyMapOptions.styles = GoogleMapStyles.retro; + break; + case 'dark': + propertyMapOptions.styles = GoogleMapStyles.dark; + break; + case 'night': + propertyMapOptions.styles = GoogleMapStyles.night; + break; + case 'aubergine': + propertyMapOptions.styles = GoogleMapStyles.aubergine; + break; + case 'custom': + if ( opalestateGmap.custom_style != '' ) { + propertyMapOptions.styles = $.parseJSON( opalestateGmap.custom_style ); + } + break; + } + } + + var propertyMap = new google.maps.Map( document.getElementById( id ), propertyMapOptions ); var createMarker = function ( position, icon ) { @@ -1430,7 +1454,7 @@ } ); $( '.property-preview-street-map' ).show( 100 ); } ); - /// + /// // auto set height for split google map $( '.split-maps-container' ).each( function () { $( '#opalestate-map-preview ' ).height( $( window ).height() ); @@ -1539,12 +1563,12 @@ } ); } ); - // // Sortable Change // // + // // Sortable Change // // $( 'body' ).delegate( '#opalestate-sortable-form select', 'change', function () { var ps = ''; if ( $( 'form.opalestate-search-form' ).length > 0 ) { var $form = $( 'form.opalestate-search-form' ); - if ( $('body').hasClass( 'archive' ) ) { + if ( $( 'body' ).hasClass( 'archive' ) ) { ps = 'opalsortable=' + $( this ).val() + '&display=' + $( '.display-mode a.active' ).data( 'mode' ); } else { @@ -1561,7 +1585,7 @@ updatePropertiesByParseringHtml( newurl ); } } else { - if ( history.pushState && $('body').hasClass( 'archive' ) ) { + if ( history.pushState && $( 'body' ).hasClass( 'archive' ) ) { var newurl = window.location.protocol + '//' + window.location.host + window.location.pathname + '?' + ps; window.history.pushState( { path: newurl }, '', newurl ); @@ -1571,7 +1595,7 @@ } } ); - // display mode + // display mode $( 'body' ).delegate( '.display-mode a', 'click', function () { if ( $( '.opalesate-properties-results' ).length > 0 ) { var newurl = $( this ).attr( 'href' ); @@ -1580,7 +1604,7 @@ return false; } } ); - // check any estate search form is enabled ///////////////// + if ( $( '#opalestate-map-preview' ).length > 0 ) { $( 'body' ).delegate( 'form.opalestate-search-form select', 'change', function () { var params = $( 'form.opalestate-search-form' ).serialize(); @@ -1603,12 +1627,9 @@ $( 'form.opalestate-search-form' ).submit(); } ); } - /////////// /////// - } ); } )( jQuery ); -//// ////// ( function ( $ ) { 'use strict'; @@ -1627,8 +1648,11 @@ var latitude = mapInstance.find( '.opal-map-latitude' ); var longitude = mapInstance.find( '.opal-map-longitude' ); - google.maps.event.addListener( autocomplete, 'place_changed', function () { + if ( ( typeof opalestateGmap !== 'undefined' ) && opalestateGmap.autocomplete_restrictions ) { + autocomplete.setComponentRestrictions( { 'country': JSON.parse(opalestateGmap.autocomplete_restrictions) } ); + } + google.maps.event.addListener( autocomplete, 'place_changed', function () { var place = autocomplete.getPlace(); if ( !place.geometry ) { @@ -1657,7 +1681,5 @@ event.preventDefault(); } } ); - } - } )( jQuery ); diff --git a/assets/js/frontend/uploader.js b/assets/js/frontend/uploader.js index 578e67b8..3ed1f88f 100755 --- a/assets/js/frontend/uploader.js +++ b/assets/js/frontend/uploader.js @@ -13,7 +13,7 @@ window.opalestate_uploader = function() { * @param {window} The window object. * */ - + ( function( $, window ) { /** @@ -26,9 +26,9 @@ window.opalestate_uploader = function() { function opalestate_uploader() { - $document = $( document ); - - function is_image_file( file ) { + $document = $( document ); + + function is_image_file( file ) { const acceptedImageTypes = ['image/gif', 'image/jpeg', 'image/png']; return file && acceptedImageTypes.includes(file['type']) } @@ -36,14 +36,14 @@ window.opalestate_uploader = function() { function check_number_files( file , i ) { if( is_image_file(file) ) { if( i+1 > opalesateJS.mfile_image ){ - return false; + return false; } } else { if( i+1 > opalesateJS.mfile_other ){ - return false; + return false; } } - return true; + return true; } function check_filesize ( file , i ) { @@ -54,8 +54,8 @@ window.opalestate_uploader = function() { heading: file.name, text: opalesateJS.error_upload_size, icon: 'error', - position: 'bottom-right', - hideAfter: 3500, + position: 'bottom-right', + hideAfter: 3500, showHideTransition: 'fade' }); return false; @@ -63,7 +63,7 @@ window.opalestate_uploader = function() { return true; } } else { - return true; + return true; } } @@ -71,56 +71,57 @@ window.opalestate_uploader = function() { * */ function trigger_button_upload(){ - + var handleUpload = function ( _container ){ - var file_btn = $( 'input.select-file', _container ); + var file_btn = $( 'input.select-file', _container ); var allow_files = []; // var all_selected = []; var name = $(this).data( 'name' ); - var issingle = $(_container).data('single'); + var issingle = $(_container).data('single'); var show_icon = $(_container).data( 'show-icon' ); var on_select_files = function ( files, _container ) { - + if ( window.File && window.FileList && window.FileReader ) { $(files).each( function( i, file ){ if( check_number_files( file, i+$(".uploader-item-preview",_container).length ) == false ){ return ; - } + } if( check_filesize( file, i ) ) { var picReader = new FileReader(); - picReader.addEventListener("load", function ( event ) { + picReader.addEventListener("load", function ( event ) { var input = '
'; var picFile = event.target; if ( picFile.result ) { if( show_icon == 1 ) { - input += '
'+ file.name +'
'; + input += '
'+ file.name +'
'; } else { - input += '
'; + input += '
'; } - + } - input += '
'; - var a = $(input) ; + input += ''; + var a = $(input) ; if( issingle ){ $( ".uploader-item-preview", _container ).remove(); all_selected = []; } $( _container ).prepend( a ); - a.prop( 'file', file ); + a.prop( 'file', file ); } ); picReader.readAsDataURL( file ); } } ); } }; - + file_btn.on("change", function( event ){ on_select_files( event.target.files, _container, allow_files ); - } ); + } ); $( _container ).on( "click", ".btn-close", function(){ if( confirm(opalesateJS.confirmed ) ){ @@ -128,14 +129,14 @@ window.opalestate_uploader = function() { var rinput = $(""); $(_container).append( rinput ); } - + $(this).parent().parent().remove(); } } ); $( ".button-placehold", _container ).click( function(){ file_btn.trigger("click"); - } ); + } ); } $(".cmb2-uploader-files").each( function(){ @@ -145,9 +146,9 @@ window.opalestate_uploader = function() { // fix for submittion form window.CMB2 = window.CMB2 || {}; window.CMB2.metabox().find('.cmb-repeatable-group').on( 'cmb2_add_row', function(i, row ) { - var _container = $( row ); + var _container = $( row ); if( $(".cmb2-uploader-files", _container ).length ) { - $( ".uploader-item-preview", _container ).remove(); + $( ".uploader-item-preview", _container ).remove(); $(".cmb2-uploader-files", _container ).each( function(){ var name = $( 'input', this ).attr('name'); $( this ).attr('data-name', name ); @@ -162,7 +163,7 @@ window.opalestate_uploader = function() { alert( name ); } - + /** * @summary Sets the autosave time out. * @@ -176,13 +177,13 @@ window.opalestate_uploader = function() { * @returns {void} */ $document.on( 'body', function( event, editor ) { - + }).ready( function() { - trigger_button_upload(); + trigger_button_upload(); }); return { - + }; } @@ -190,4 +191,4 @@ window.opalestate_uploader = function() { window.wp = window.wp || {}; window.wp.opalestate_uploader = opalestate_uploader(); -}( jQuery, window )); \ No newline at end of file +}( jQuery, window )); diff --git a/assets/js/opalestate.js b/assets/js/opalestate.js index 2f0d54b5..3efebefa 100755 --- a/assets/js/opalestate.js +++ b/assets/js/opalestate.js @@ -132,7 +132,7 @@ jQuery( document ).ready( function ( $ ) { } ); } - //////// + //////// $( '.opalestate-scroll-elements a' ).on( 'click', function ( e ) { e.preventDefault(); if ( $( $( this ).attr( 'href' ) ).length ) { @@ -157,9 +157,9 @@ jQuery( document ).ready( function ( $ ) { } } ); - //// + //// - //// + //// $( '.opalestate-gallery' ).each( function () { // the containers for all your galleries $( this ).magnificPopup( { delegate: 'a', // the selector for gallery item @@ -219,32 +219,32 @@ jQuery( document ).ready( function ( $ ) { } } ); - // sticky //// + // sticky //// // $( '.opalestate-sticky-column' ).stick_in_parent(); - var window_width = $( window ).width(); - - if ( window_width < 768 ) { - $( '.opalestate-sticky-column' ).trigger( 'sticky_kit:detach' ); - } else { - make_sticky(); - } - - $( window ).resize( function () { - - window_width = $( window ).width(); - - if ( window_width < 768 ) { - $( '.opalestate-sticky-column' ).trigger( 'sticky_kit:detach' ); - } else { - make_sticky(); - } - - } ); - - function make_sticky() { - $( '.opalestate-sticky-column' ).stick_in_parent(); - } + // var window_width = $( window ).width(); + // + // if ( window_width < 768 ) { + // $( '.opalestate-sticky-column' ).trigger( 'sticky_kit:detach' ); + // } else { + // make_sticky(); + // } + // + // $( window ).resize( function () { + // + // window_width = $( window ).width(); + // + // if ( window_width < 768 ) { + // $( '.opalestate-sticky-column' ).trigger( 'sticky_kit:detach' ); + // } else { + // make_sticky(); + // } + // + // } ); + // + // function make_sticky() { + // $( '.opalestate-sticky-column' ).stick_in_parent(); + // } //// $( '.input-group-number' ).each( function () { @@ -512,7 +512,7 @@ jQuery( document ).ready( function ( $ ) { var nummm = wNumb( config_format ); var istart = [ imin, imax ]; - if ( mode && mode == 1 && start ) { + if ( mode && mode == 1 && ( start || start == 0 ) ) { istart = [ start ]; } diff --git a/changelog.txt b/changelog.txt index 96d23086..d714fa60 100755 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,27 @@ += 1.4.6 - 2020-04-22 = +* Fixes - Search queries. +* Removed - Sticky single property sidebar. + += 1.4.5 - 2020-04-20 = +* Fixes - Templates. + += 1.4.4 - 2020-04-17 = +* Fixes - Feature properties in submission. +* Added - Mortgage hooks. + += 1.4.3.1 - 2020-04-10 = +* Fixes - Translate strings. + += 1.4.3 - 2020-04-08 = +* Fixes - Google style in Single property page. +* Added - Autocomplete Restrictions setting. + += 1.4.2.1 - 2020-03-31 = +* Fixes - Sanitize data + += 1.4.2 - 2020-03-31 = +* Fixes - Upload images in submission page + = 1.4.1 - 2020-03-25 = * Fixes - Split map AJAX diff --git a/inc/admin/settings/3rd_party.php b/inc/admin/settings/3rd_party.php index cca451ad..820c5738 100755 --- a/inc/admin/settings/3rd_party.php +++ b/inc/admin/settings/3rd_party.php @@ -84,6 +84,14 @@ class Opalestate_Settings_3rd_party_Tab extends Opalestate_Settings_Base_Tab { 'id' => 'google_map_custom_style', 'type' => 'textarea_code', ], + [ + 'name' => esc_html__( 'Autocomplete Restrictions', 'opalestate-pro' ), + 'desc' => __( 'Enter one or more country codes ALPHA-2 separator by ",". Example: "us" for USA. See list country codes.', + 'opalestate-pro' ), + 'id' => 'autocomplete_restrictions', + 'type' => 'text', + 'default' => '', + ], ]; } diff --git a/inc/class-opalestate-enqueue.php b/inc/class-opalestate-enqueue.php index b88cc32c..6f3529ab 100755 --- a/inc/class-opalestate-enqueue.php +++ b/inc/class-opalestate-enqueue.php @@ -53,8 +53,9 @@ class OpalEstate_Enqueue { wp_enqueue_script( 'opalestate-gmap', OPALESTATE_PLUGIN_URL . 'assets/js/frontend/googlemaps.js', [ 'jquery' ], OPALESTATE_VERSION, false ); $custom_map_styles = json_decode( ( opalestate_options( 'google_map_custom_style', '' ) ) ); wp_localize_script( 'opalestate-gmap', 'opalestateGmap', [ - 'style' => opalestate_options( 'google_map_style', 'standard' ), - 'custom_style' => json_encode( $custom_map_styles ), + 'style' => opalestate_options( 'google_map_style', 'standard' ), + 'autocomplete_restrictions' => opalestate_get_autocomplete_restrictions(), + 'custom_style' => json_encode( $custom_map_styles ), ] ); /** @@ -126,7 +127,7 @@ class OpalEstate_Enqueue { wp_enqueue_script( 'opalestate-elementor', OPALESTATE_PLUGIN_URL . 'assets/js/frontend/elementor.js', [], null, true ); wp_enqueue_script( 'jquery-ui-datepicker' ); wp_enqueue_style( 'jquery-ui-datepicker-style', OPALESTATE_PLUGIN_URL . '/assets/3rd/datepicker.css' ); - /// + /// wp_register_script( 'jquery-toast', OPALESTATE_PLUGIN_URL . 'assets/3rd/toast/jquery.toast.js', [], null, true ); diff --git a/inc/function-search-fields.php b/inc/function-search-fields.php index 5bc15339..b1b9e8ea 100755 --- a/inc/function-search-fields.php +++ b/inc/function-search-fields.php @@ -34,7 +34,7 @@ function opalestate_property_render_field_template( $field, $label, $type = 'sel
-
@@ -62,7 +62,7 @@ function opalestate_property_render_field_template( $field, $label, $type = 'sel foreach ( $option_values as $value ) { $selected = $value == $qvalue ? 'selected="selected"' : ''; - $template .= ''; + $template .= ''; } $template .= ''; $template = sprintf( $template, $field, $label ); diff --git a/inc/mixes-functions.php b/inc/mixes-functions.php index da9d4f3d..fcb9563d 100755 --- a/inc/mixes-functions.php +++ b/inc/mixes-functions.php @@ -1349,9 +1349,9 @@ function opalestate_is_require_login_to_show_author_box() { function opalestate_clean( $var ) { if ( is_array( $var ) ) { return array_map( 'opalestate_clean', $var ); - } else { - return is_scalar( $var ) ? sanitize_text_field( $var ) : $var; } + + return is_scalar( $var ) ? sanitize_text_field( $var ) : $var; } /** @@ -1400,8 +1400,34 @@ add_action( 'widgets_init', 'opalestate_widgets_init' ); /** * Get email date format. * - * @return mixed|void + * @return string */ function opalestate_email_date_format() { return apply_filters( 'opalestate_email_date_format', 'F j, Y, g:i a' ); } + +/** + * Get autocomplete restrictions. + * + * @return string + */ +function opalestate_get_autocomplete_restrictions() { + $restrictions_option = trim( opalestate_options( 'autocomplete_restrictions', '' ) ); + + if ( ! $restrictions_option ) { + return ''; + } + + $array = explode( ',', $restrictions_option ); + $results = []; + + foreach ( $array as $res ) { + $results[] = strtolower( trim( $res ) ); + } + + if ( ! $results ) { + return ''; + } + + return json_encode( $results ); +} diff --git a/inc/property/class-opalestate-search.php b/inc/property/class-opalestate-search.php index 7b5aba87..e83d8593 100755 --- a/inc/property/class-opalestate-search.php +++ b/inc/property/class-opalestate-search.php @@ -37,12 +37,12 @@ class OpalEstate_Search { $posts_per_page = apply_filters( 'opalestate_search_property_per_page', opalestate_options( 'search_property_per_page', $limit ) ); - $paged = ( get_query_var( 'paged' ) ) ? get_query_var( 'paged' ) : 1; + $paged = get_query_var( 'paged' ) ? get_query_var( 'paged' ) : 1; $paged = isset( $wp_query->query['paged'] ) ? $wp_query->query['paged'] : $paged; $paged = ! empty( $_REQUEST['paged'] ) ? absint( $_REQUEST['paged'] ) : $paged; - if ( isset( $_GET['paged'] ) && intval( $_GET['paged'] ) > 0 ) { - $paged = intval( $_GET['paged'] ); + if ( isset( $_GET['paged'] ) && absint( $_GET['paged'] ) > 0 ) { + $paged = absint( $_GET['paged'] ); } $args = [ @@ -56,66 +56,92 @@ class OpalEstate_Search { $tax_query = []; if ( isset( $_GET['location'] ) && $_GET['location'] != -1 ) { - $tax_query[] = - [ - 'taxonomy' => 'opalestate_location', - 'field' => 'slug', - 'terms' => sanitize_text_field( $_GET['location'] ), - ]; + $tax_query[] = [ + 'taxonomy' => 'opalestate_location', + 'field' => 'slug', + 'terms' => sanitize_text_field( $_GET['location'] ), + ]; } if ( isset( $_GET['state'] ) && $_GET['state'] != -1 ) { - $tax_query[] = - [ + if ( is_array( $_GET['state'] ) ) { + $tax_query[] = [ + 'taxonomy' => 'opalestate_state', + 'field' => 'slug', + 'terms' => opalestate_clean( $_GET['state'] ), + ]; + } else { + $tax_query[] = [ 'taxonomy' => 'opalestate_state', 'field' => 'slug', 'terms' => sanitize_text_field( $_GET['state'] ), ]; + } } if ( isset( $_GET['city'] ) && $_GET['city'] != -1 ) { - $tax_query[] = - [ - 'taxonomy' => 'opalestate_city', - 'field' => 'slug', - 'terms' => sanitize_text_field( $_GET['city'] ), - ]; + $tax_query[] = [ + 'taxonomy' => 'opalestate_city', + 'field' => 'slug', + 'terms' => sanitize_text_field( $_GET['city'] ), + ]; } if ( isset( $_GET['types'] ) && $_GET['types'] != -1 ) { - $tax_query[] = - [ + if ( is_array( $_GET['types'] ) ) { + $tax_query[] = [ + 'taxonomy' => 'opalestate_types', + 'field' => 'slug', + 'terms' => opalestate_clean( $_GET['types'] ), + ]; + } else { + $tax_query[] = [ 'taxonomy' => 'opalestate_types', 'field' => 'slug', 'terms' => sanitize_text_field( $_GET['types'] ), ]; + } } if ( isset( $_GET['cat'] ) && $_GET['cat'] != -1 ) { - $tax_query[] = - [ + if ( is_array( $_GET['cat'] ) ) { + $tax_query[] = [ + 'taxonomy' => 'property_category', + 'field' => 'slug', + 'terms' => opalestate_clean( $_GET['cat'] ), + ]; + } else { + $tax_query[] = [ 'taxonomy' => 'property_category', 'field' => 'slug', 'terms' => sanitize_text_field( $_GET['cat'] ), ]; + } } if ( isset( $_GET['status'] ) && $_GET['status'] != -1 ) { - $tax_query[] = - [ + if ( is_array( $_GET['status'] ) ) { + $tax_query[] = [ + 'taxonomy' => 'opalestate_status', + 'field' => 'slug', + 'terms' => opalestate_clean( $_GET['status'] ), + ]; + } else { + $tax_query[] = [ 'taxonomy' => 'opalestate_status', 'field' => 'slug', 'terms' => sanitize_text_field( $_GET['status'] ), ]; + } + } if ( isset( $_GET['amenities'] ) && is_array( $_GET['amenities'] ) ) { - $tax_query[] = - [ - 'taxonomy' => 'opalestate_amenities', - 'field' => 'slug', - 'terms' => ( $_GET['amenities'] ), - ]; + $tax_query[] = [ + 'taxonomy' => 'opalestate_amenities', + 'field' => 'slug', + 'terms' => opalestate_clean( $_GET['amenities'] ), + ]; } if ( $tax_query ) { @@ -153,14 +179,14 @@ class OpalEstate_Search { if ( $search_min_price != '' && $search_max_price != '' && is_numeric( $search_min_price ) && is_numeric( $search_max_price ) ) { if ( $search_min_price ) { - array_push( $args['meta_query'], [ + $args['meta_query'][] = [ 'key' => OPALESTATE_PROPERTY_PREFIX . 'price', 'value' => [ $search_min_price, $search_max_price ], 'compare' => 'BETWEEN', 'type' => 'NUMERIC', - ] ); + ]; } else { - array_push( $args['meta_query'], [ + $args['meta_query'][] = [ [ [ 'key' => OPALESTATE_PROPERTY_PREFIX . 'price', @@ -174,56 +200,55 @@ class OpalEstate_Search { 'type' => 'NUMERIC', ], ], - ] ); + ]; } - } elseif ( $search_min_price != '' && is_numeric( $search_min_price ) ) { - array_push( $args['meta_query'], [ + $args['meta_query'][] = [ 'key' => OPALESTATE_PROPERTY_PREFIX . 'price', 'value' => $search_min_price, 'compare' => '>=', 'type' => 'NUMERIC', - ] ); + ]; } elseif ( $search_max_price != '' && is_numeric( $search_max_price ) ) { - array_push( $args['meta_query'], [ + $args['meta_query'][] = [ 'key' => OPALESTATE_PROPERTY_PREFIX . 'price', 'value' => $search_max_price, 'compare' => '<=', 'type' => 'NUMERIC', - ] ); + ]; } if ( $search_min_area != '' && $search_max_area != '' && is_numeric( $search_min_area ) && is_numeric( $search_max_area ) ) { - array_push( $args['meta_query'], [ + $args['meta_query'][] = [ 'key' => OPALESTATE_PROPERTY_PREFIX . 'areasize', 'value' => [ $search_min_area, $search_max_area ], 'compare' => 'BETWEEN', 'type' => 'NUMERIC', - ] ); + ]; } elseif ( $search_min_area != '' && is_numeric( $search_min_area ) ) { - array_push( $args['meta_query'], [ + $args['meta_query'][] = [ 'key' => OPALESTATE_PROPERTY_PREFIX . 'areasize', 'value' => $search_min_area, 'compare' => '>=', 'type' => 'NUMERIC', - ] ); + ]; } elseif ( $search_max_area != '' && is_numeric( $search_max_area ) ) { - array_push( $args['meta_query'], [ + $args['meta_query'][] = [ 'key' => OPALESTATE_PROPERTY_PREFIX . 'areasize', 'value' => $search_max_area, 'compare' => '<=', 'type' => 'NUMERIC', - ] ); + ]; } if ( isset( $_GET['geo_long'] ) && isset( $_GET['geo_lat'] ) ) { if ( $_GET['location_text'] && ( empty( $_GET['geo_long'] ) || empty( $_GET['geo_lat'] ) ) ) { - array_push( $args['meta_query'], [ + $args['meta_query'][] = [ 'key' => OPALESTATE_PROPERTY_PREFIX . 'map_address', 'value' => sanitize_text_field( trim( $_GET['location_text'] ) ), 'compare' => 'LIKE', 'operator' => 'OR', - ] ); + ]; } elseif ( $_GET['geo_lat'] && $_GET['geo_long'] ) { $radius = isset( $_GET['geo_radius'] ) ? $_GET['geo_radius'] : 5; @@ -249,7 +274,7 @@ class OpalEstate_Search { $args['orderby'] = 'meta_value_num'; $args['order'] = $ksearchs[1]; } - } elseif ( 'on' == opalestate_options( 'show_featured_first', 'off' ) ) { + } elseif ( 'on' === opalestate_options( 'show_featured_first', 'off' ) ) { $args['orderby'] = [ 'meta_value' => 'DESC', 'date' => 'DESC' ]; $args['meta_key'] = OPALESTATE_PROPERTY_PREFIX . 'featured'; } @@ -269,26 +294,26 @@ class OpalEstate_Search { $max_request = isset( $_GET[ 'max_' . $request ] ) ? sanitize_text_field( $_GET[ 'max_' . $request ] ) : ''; if ( $min_request != '' && $max_request != '' && is_numeric( $min_request ) && is_numeric( $max_request ) ) { - array_push( $args['meta_query'], [ + $args['meta_query'][] = [ 'key' => $meta['id'], 'value' => [ $min_request, $max_request ], 'compare' => 'BETWEEN', 'type' => 'NUMERIC', - ] ); + ]; } elseif ( $min_request != '' && is_numeric( $min_request ) ) { - array_push( $args['meta_query'], [ + $args['meta_query'][] = [ 'key' => $meta['id'], 'value' => $min_request, 'compare' => '>=', 'type' => 'NUMERIC', - ] ); + ]; } elseif ( $max_request != '' && is_numeric( $max_request ) ) { - array_push( $args['meta_query'], [ + $args['meta_query'][] = [ 'key' => $meta['id'], 'value' => $max_request, 'compare' => '<=', 'type' => 'NUMERIC', - ] ); + ]; } } } @@ -352,20 +377,20 @@ class OpalEstate_Search { $args['meta_query'] = [ 'relation' => 'AND' ]; if ( $search_min_price != $min && is_numeric( $search_min_price ) ) { - array_push( $args['meta_query'], [ + $args['meta_query'][] = [ 'key' => OPALESTATE_AGENT_PREFIX . 'target_min_price', 'value' => $search_min_price, 'compare' => '>=', // 'type' => 'NUMERIC' - ] ); + ]; } if ( is_numeric( $search_max_price ) && $search_max_price != $max ) { - array_push( $args['meta_query'], [ + $args['meta_query'][] = [ 'key' => OPALESTATE_AGENT_PREFIX . 'target_max_price', 'value' => $search_max_price, 'compare' => '<=', // 'type' => 'NUMERIC' - ] ); + ]; } return new WP_Query( $args ); @@ -388,23 +413,20 @@ class OpalEstate_Search { $tax_query = []; - if ( isset( $_GET['location'] ) && $_GET['location'] != -1 ) { - $tax_query[] = - [ - 'taxonomy' => 'opalestate_location', - 'field' => 'slug', - 'terms' => sanitize_text_field( $_GET['location'] ), - ]; + $tax_query[] = [ + 'taxonomy' => 'opalestate_location', + 'field' => 'slug', + 'terms' => sanitize_text_field( $_GET['location'] ), + ]; } if ( isset( $_GET['types'] ) && $_GET['types'] != -1 ) { - $tax_query[] = - [ - 'taxonomy' => 'opalestate_types', - 'field' => 'slug', - 'terms' => sanitize_text_field( $_GET['types'] ), - ]; + $tax_query[] = [ + 'taxonomy' => 'opalestate_types', + 'field' => 'slug', + 'terms' => sanitize_text_field( $_GET['types'] ), + ]; } if ( $tax_query ) { @@ -418,7 +440,6 @@ class OpalEstate_Search { return new WP_Query( $args ); } - public function filter_by_geolocations() { } @@ -444,7 +465,7 @@ class OpalEstate_Search { continue; } - if ( 'on' == $value ) { + if ( 'on' === $value ) { $id = str_replace( OPALESTATE_PROPERTY_PREFIX, '', $meta['id'] ); $esettings[ $id ] = $meta['name']; } @@ -467,7 +488,6 @@ class OpalEstate_Search { * Get Json data by action ajax filter */ public static function get_search_json() { - $query = self::get_search_results_query(); $output = []; @@ -486,7 +506,6 @@ class OpalEstate_Search { } public static function render_get_properties() { - // $_GET = $_POST; echo opalestate_load_template_path( 'shortcodes/ajax-map-search-result' ); die; } diff --git a/inc/submission/class-opalestate-submission.php b/inc/submission/class-opalestate-submission.php index 05c26861..fff50f28 100755 --- a/inc/submission/class-opalestate-submission.php +++ b/inc/submission/class-opalestate-submission.php @@ -83,8 +83,8 @@ class OpalEstate_Submission { ); } - /* - * Is submission page. 'submission_page' option in General Setting + /* + * Is submission page. 'submission_page' option in General Setting */ public function register_shortcodes() { $shortcodes = [ @@ -103,8 +103,8 @@ class OpalEstate_Submission { } } - /* - * Is submission page. 'submission_page' option in General Setting + /* + * Is submission page. 'submission_page' option in General Setting */ public function setting_content_tab( $tabs ) { $tabs['submission_page'] = esc_html__( 'Submission', 'opalestate-pro' ); @@ -112,8 +112,8 @@ class OpalEstate_Submission { return $tabs; } - /* - * Is submission page. 'submission_page' option in General Setting + /* + * Is submission page. 'submission_page' option in General Setting */ public function setting_content_fields( $fields = [] ) { $fields = [ @@ -267,15 +267,15 @@ class OpalEstate_Submission { return $fields; } - /* - * Is submission page. 'submission_page' option in General Setting + /* + * Is submission page. 'submission_page' option in General Setting */ public function head_check_page() { } - /* - * Is submission page. 'submission_page' option in General Setting + /* + * Is submission page. 'submission_page' option in General Setting */ public function render_button_edit() { global $post, $current_user; @@ -289,8 +289,8 @@ class OpalEstate_Submission { } } - /* - * Is submission page. 'submission_page' option in General Setting + /* + * Is submission page. 'submission_page' option in General Setting */ public function is_submission_page() { global $post; @@ -335,7 +335,7 @@ class OpalEstate_Submission { return; } - // remove all dirty images before edit/create new a property + // remove all dirty images before edit/create new a property $this->cleanup(); wp_enqueue_script( 'opalestate-submission' ); @@ -396,11 +396,8 @@ class OpalEstate_Submission { * FrontEnd Submission */ public function process_submission() { - if ( isset( $_POST['submission_action'] ) && ! empty( $_POST['submission_action'] ) ) { - if ( wp_verify_nonce( $_POST['submission_action'], 'submitted-property' ) ) { - $user_id = get_current_user_id(); $edit = false; $prefix = OPALESTATE_PROPERTY_PREFIX; @@ -421,7 +418,7 @@ class OpalEstate_Submission { $post_status = 'pending'; - if ( 'on' != opalestate_get_option( 'admin_approve', 'on' ) ) { + if ( 'on' !== opalestate_get_option( 'admin_approve', 'on' ) ) { $post_status = 'publish'; } @@ -485,7 +482,7 @@ class OpalEstate_Submission { /* * Processing upload files */ - $this->process_upload_files( $post_id, $_POST ); + $this->process_upload_files( $post_id ); /** * Fetch sanitized values @@ -513,12 +510,14 @@ class OpalEstate_Submission { update_post_meta( $post_id, $prefix . 'featured_image', null ); // Update SKU. - if ( 'on' == opalestate_get_option( 'enable_submission_generate_sku', 'off' ) ) { + if ( 'on' === opalestate_get_option( 'enable_submission_generate_sku', 'off' ) ) { $_sku = str_replace( '{property_id}', $post_id, opalestate_options( 'submission_sku_format', 'SKU-{property_id}' ) ); $sku_generated = apply_filters( 'opalestate_submission_sku_generated', sanitize_text_field( $_sku ) ); update_post_meta( $post_id, $prefix . 'sku', $sku_generated ); } + update_post_meta( $post_id, $prefix . 'featured', '' ); + //redirect $_SESSION['messages'][] = [ 'success', esc_html__( 'Property has been successfully updated.', 'opalestate-pro' ) ]; @@ -577,11 +576,8 @@ class OpalEstate_Submission { * @param int $post_id Post ID. */ private function process_upload_files( $post_id ) { - //upload images for featured and gallery images if ( isset( $_FILES ) && ! empty( $_FILES ) ) { - - /// $fields = [ $this->get_field_name( 'gallery' ), $this->get_field_name( 'featured_image' ), @@ -592,7 +588,6 @@ class OpalEstate_Submission { if ( in_array( $key, $fields ) ) { $ufile = $_FILES[ $key ]; - /// ///// if ( isset( $ufile['name'] ) && is_array( $ufile['name'] ) ) { $output = []; @@ -620,11 +615,11 @@ class OpalEstate_Submission { $this->new_attachmenet_ids[ $new_atm['attachment_id'] ] = $new_atm['attachment_id']; } } - //// / // + //// / // } } - // for group files + // for group files $fields = [ $this->get_field_name( 'public_floor_group' ), ]; diff --git a/inc/taxonomies/class-taxonomy-types.php b/inc/taxonomies/class-taxonomy-types.php index 899c71c7..06d70fea 100755 --- a/inc/taxonomies/class-taxonomy-types.php +++ b/inc/taxonomies/class-taxonomy-types.php @@ -149,7 +149,7 @@ class Opalestate_Taxonomy_Type { public static function get_multi_check_list( $stypes ) { $list = self::get_list(); - echo opalestate_terms_multi_check( $list, $stypes ); + echo opalestate_terms_multi_check( $list ); } } diff --git a/inc/template-functions.php b/inc/template-functions.php index 99b994f7..665198c8 100755 --- a/inc/template-functions.php +++ b/inc/template-functions.php @@ -126,37 +126,40 @@ function opalestate_get_read_message_uri( $message_id ) { return opalestate_get_current_url( $args ); } +if ( ! function_exists( 'opalestate_terms_multi_check' ) ) { + function opalestate_terms_multi_check( $terms ) { + $html = '
'; -function opalestate_terms_multi_check( $terms ) { - $html = '
'; + foreach ( $terms as $term ) { + $id = time() . '-' . $term->slug; + $html .= '
'; + $html .= ''; + $html .= ' '; + $html .= '
'; + } - foreach ( $terms as $term ) { - $id = time() . '-' . $term->slug; - $html .= '
'; - $html .= ''; - $html .= ' '; $html .= '
'; + + return $html; } - - $html .= '
'; - - return $html; } -function opalestate_categories_multi_check( $terms ) { - $html = '
'; +if ( ! function_exists( 'opalestate_categories_multi_check' ) ) { + function opalestate_categories_multi_check( $terms ) { + $html = '
'; + + foreach ( $terms as $term ) { + $id = time() . '-' . $term->slug; + $html .= '
'; + $html .= ''; + $html .= ' '; + $html .= '
'; + } - foreach ( $terms as $term ) { - $id = time() . '-' . $term->slug; - $html .= '
'; - $html .= ''; - $html .= ' '; $html .= '
'; + + return $html; } - - $html .= '
'; - - return $html; } function opalestate_get_image_by_id( $id ) { @@ -169,39 +172,34 @@ function opalestate_get_image_by_id( $id ) { return ''; } - -/** - * - */ -function opalestate_get_loop_thumbnail( $size = 'property-thumbnail' ) { ?> - - - + + - - - + + - * @copyright Copyright (C) 2019 wpopal.com. All Rights Reserved. - * @license GNU/GPL v2 or later http://www.gnu.org/licenses/gpl-2.0.html - * - * @website http://www.wpopal.com - * @support http://www.wpopal.com/support/forum.html - */ - if ( ! defined( 'ABSPATH' ) ) { - exit; // Exit if accessed directly + exit; // Exit if accessed directly } -if( !class_exists( 'CMB2_Uploader_Button' ) ) { +if ( ! class_exists( 'CMB2_Uploader_Button' ) ) { + /** + * Class CMB2_Uploader_Button + */ + class CMB2_Uploader_Button { - /** - * Class CMB2_Uploader_Button - */ - class CMB2_Uploader_Button { + /** + * Constructor + */ + public function __construct() { + add_action( 'cmb2_render_uploader', [ $this, 'callback' ], 10, 5 ); + add_action( 'admin_head', [ $this, 'admin_head' ] ); + add_action( 'wp_enqueue_scripts', [ $this, 'scripts_styles' ], 99 ); + } - /** - * Constructor - */ - public function __construct() { - add_action( 'cmb2_render_uploader', array( $this, 'callback' ), 10, 5 ); - add_action( 'admin_head', array( $this, 'admin_head' ) ); - add_action( 'wp_enqueue_scripts', [$this,'scripts_styles'], 99 ); - } + /** + * Register javascript file for processing upload images/files + */ + public function scripts_styles() { + wp_register_script( + 'cmb2-uploader', + OPALESTATE_PLUGIN_URL . 'assets/js/frontend/uploader.js', + [ + 'jquery', + ], + '4.4.3', + true + ); + } - /** - * Register javascript file for processing upload images/files - */ - public function scripts_styles () { - wp_register_script( - 'cmb2-uploader', - OPALESTATE_PLUGIN_URL . 'assets/js/frontend/uploader.js', - [ - 'jquery', - ], - '4.4.3', - true - ); - } + /** + * Render Preview is image or icon with its name + */ + private function render_image_or_icon( $escaped_value, $show_icon ) { + $cls = $show_icon ? "preview-icon" : "preview-image"; + echo '
'; + echo ' '; + if ( $show_icon ) { + echo ' ' . basename( get_attached_file( $escaped_value ) ); + } else { + echo wp_get_attachment_image( $escaped_value, 'thumbnail' ); + } - /** - * Render Preview is image or icon with its name - */ - private function render_image_or_icon ( $escaped_value , $show_icon ) { - $cls = $show_icon ? "preview-icon" : "preview-image"; - echo '
'; - echo ' '; - if( $show_icon ){ - echo ' '. basename ( get_attached_file( $escaped_value ) ); - } else { - echo wp_get_attachment_image( $escaped_value, 'thumbnail' ); - } + echo '
'; + } - echo '
'; - } + /** + * Render content input field. + */ + public function callback( $field, $escaped_value, $object_id, $object_type, $field_type_object ) { + wp_enqueue_script( 'cmb2-uploader' ); - /** - * Render content input field. - */ - public function callback( $field, $escaped_value, $object_id, $object_type, $field_type_object) { - - wp_enqueue_script( 'cmb2-uploader'); + $field_name = $field->_name(); - $field_name = $field->_name(); - - $args = array( - 'type' => 'checkbox', - 'id' => $field_name, - 'name' => $field_name, - 'desc' => '', - 'value' => 'on', - ); + $args = [ + 'type' => 'checkbox', + 'id' => $field_name, + 'name' => $field_name, + 'desc' => '', + 'value' => 'on', + ]; - if( $escaped_value == 'on' || $escaped_value == 1 ){ - $args['checked'] = 'checked'; - } + if ( $escaped_value == 'on' || $escaped_value == 1 ) { + $args['checked'] = 'checked'; + } - $single = isset( $field->args['single'] ) && $field->args['single']; - $attrs = $single ? "" : 'multiple="multiple"'; - $size = ''; - - - if( isset($field->args['accept']) && $field->args['accept'] ){ - $attrs .= ' accept="'.$field->args['accept'].'" '; - + $single = isset( $field->args['single'] ) && $field->args['single']; + $attrs = $single ? "" : 'multiple="multiple"'; + $size = ''; - $info = array( - 'size' => opalestate_options( 'upload_other_max_size', 0.5), - 'number' => opalestate_options( 'upload_other_max_files', 10) - ); - $class = 'upload-file-wrap'; - } else { - $attrs .= ' accept="image/*" '; - $class = 'upload-image-wrap'; + if ( isset( $field->args['accept'] ) && $field->args['accept'] ) { + $attrs .= ' accept="' . $field->args['accept'] . '" '; - $info = array( - 'size' => opalestate_options( 'upload_image_max_size', 0.5), - 'number' => opalestate_options( 'upload_image_max_files', 10) - ); - } - if( $single ){ - $info['number'] = 1; - } - $show_icon = isset($field->args['show_icon']) && $field->args['show_icon'] ? $field->args['show_icon']: false; - ?> -
- - $url ): ?> -
- - render_image_or_icon( $key, $show_icon ); ?> - -
- - -
- - render_image_or_icon( $escaped_value, $show_icon ); ?> - - -
- args['value']) && (int)$field->args['value'] ): - $image_id = $field->args['value']; - ?> -
- - render_image_or_icon( $image_id , $show_icon ); ?> - -
- -
-
- - + + $info = [ + 'size' => opalestate_options( 'upload_other_max_size', 0.5 ), + 'number' => opalestate_options( 'upload_other_max_files', 10 ), + ]; + + $class = 'upload-file-wrap'; + } else { + $attrs .= ' accept="image/*" '; + $class = 'upload-image-wrap'; + + $info = [ + 'size' => opalestate_options( 'upload_image_max_size', 0.5 ), + 'number' => opalestate_options( 'upload_image_max_files', 10 ), + ]; + } + if ( $single ) { + $info['number'] = 1; + } + $show_icon = isset( $field->args['show_icon'] ) && $field->args['show_icon'] ? $field->args['show_icon'] : false; + ?> +
+ + $url ): ?> +
+ + render_image_or_icon( $key, $show_icon ); ?> + +
+ + +
+ + render_image_or_icon( $escaped_value, $show_icon ); ?> + +
-
- class="select-file" style="visibility: hidden;"> - - -
+ args['value'] ) && (int) $field->args['value'] ): + $image_id = $field->args['value']; + ?> +
+ + render_image_or_icon( $image_id, $show_icon ); ?> + +
+ +
+
+ + +
+
+ class="select-file" style="visibility: hidden;"> + + +

- '.$info['size'].'', ''.$info['number'].'' ); ?> - - + ' . $info['size'] . '', '' . $info['number'] . '' ); ?> +

- - - - + \n" "Language-Team: \n" @@ -19,22 +19,139 @@ msgstr "" msgid "Cheatin’ huh?" msgstr "" -#: inc/function-search-fields.php:93 -msgid ": " +#: inc/ajax-functions.php:99 inc/taxonomies/class-taxonomy-state.php:129 +#: inc/taxonomies/class-taxonomy-state.php:146 +msgid "Select State" msgstr "" -#: inc/function-search-fields.php:140 -#: templates/search-box/search-form-v3.php:64 -#: templates/search-box/search-form-v2.php:47 -msgid "Area" +#: inc/ajax-functions.php:141 inc/taxonomies/class-taxonomy-city.php:140 +msgid "Select City" msgstr "" -#: inc/class-opalestate-enqueue.php:97 -msgid "Are you sure to remove?" +#: inc/ajax-functions.php:215 inc/ajax-functions.php:220 +msgid "Could not set this as featured" msgstr "" -#: inc/class-opalestate-enqueue.php:98 -msgid "This file is has large volume size, please try to upload other." +#: inc/ajax-functions.php:326 +msgid "Description is missing." +msgstr "" + +#: inc/ajax-functions.php:329 +msgid "User is missing." +msgstr "" + +#: inc/ajax-functions.php:332 +msgid "Permissions is missing." +msgstr "" + +#: inc/ajax-functions.php:343 +msgid "You do not have permission to assign API Keys to the selected user." +msgstr "" + +#: inc/ajax-functions.php:369 +msgid "API Key updated successfully." +msgstr "" + +#: inc/ajax-functions.php:400 +msgid "" +"API Key generated successfully. Make sure to copy your new keys now as the " +"secret key will be hidden once you leave this page." +msgstr "" + +#: inc/ajax-functions.php:402 inc/api/html-keys-edit.php:118 +msgid "Revoke key" +msgstr "" + +#: inc/class-no-captcha-recaptcha.php:88 +msgid "The captcha is not verified, please try again!" +msgstr "" + +#: inc/class-no-captcha-recaptcha.php:101 +msgid "Show Captcha In Form" +msgstr "" + +#: inc/class-no-captcha-recaptcha.php:102 +msgid "" +"Enable google captch in contact , register form. After Set yes, you change " +"setting in Google Captcha Tab. Register here: https://www.google." +"com/recaptcha/admin Version 2" +msgstr "" + +#: inc/class-no-captcha-recaptcha.php:107 +#: inc/agency/class-opalestate-agency-metabox.php:62 +#: inc/classes/class-opalestate-metabox-user.php:181 +#: inc/classes/class-opalestate-metabox-user.php:191 +#: inc/property/class-metabox-property-admin.php:181 +#: inc/property/class-metabox-property-admin.php:210 +#: inc/property/class-metabox-property-admin.php:270 +#: inc/property/class-metabox-property-admin.php:405 +#: inc/property/class-metabox-property-admin.php:415 +#: inc/submission/class-metabox-property-submission.php:353 +#: inc/submission/class-metabox-property-submission.php:433 +#: inc/widgets/search-properties.php:147 +#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:236 +#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:250 +#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:274 +#: inc/vendors/opalmembership/free-package.php:35 +msgid "No" +msgstr "" + +#: inc/class-no-captcha-recaptcha.php:108 +#: inc/agency/class-opalestate-agency-metabox.php:63 +#: inc/classes/class-opalestate-metabox-user.php:182 +#: inc/classes/class-opalestate-metabox-user.php:192 +#: inc/property/class-metabox-property-admin.php:180 +#: inc/property/class-metabox-property-admin.php:209 +#: inc/property/class-metabox-property-admin.php:269 +#: inc/submission/class-metabox-property-submission.php:354 +#: inc/submission/class-metabox-property-submission.php:434 +#: inc/widgets/search-properties.php:148 +#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:235 +#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:249 +#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:273 +#: inc/vendors/opalmembership/free-package.php:34 +msgid "Yes" +msgstr "" + +#: inc/class-no-captcha-recaptcha.php:114 +msgid "Google Captcha page Settings" +msgstr "" + +#: inc/class-no-captcha-recaptcha.php:121 +msgid "Site Key" +msgstr "" + +#: inc/class-no-captcha-recaptcha.php:122 +msgid "Used for displaying the CAPTCHA." +msgstr "" + +#: inc/class-no-captcha-recaptcha.php:128 +msgid "Secret key" +msgstr "" + +#: inc/class-no-captcha-recaptcha.php:129 +msgid "Used for communication between your site and Google. Grab it." +msgstr "" + +#: inc/class-no-captcha-recaptcha.php:135 +msgid "Theme" +msgstr "" + +#: inc/class-no-captcha-recaptcha.php:136 +msgid "Display captcha box with color style." +msgstr "" + +#: inc/class-no-captcha-recaptcha.php:140 +msgid "Light" +msgstr "" + +#: inc/class-no-captcha-recaptcha.php:141 inc/admin/settings/3rd_party.php:73 +msgid "Dark" +msgstr "" + +#: inc/class-no-captcha-recaptcha.php:154 +msgid "Google Captcha" msgstr "" #: inc/class-opalestate-email.php:141 @@ -42,9 +159,9 @@ msgid "Message has been successfully sent." msgstr "" #: inc/class-opalestate-email.php:143 -#: inc/message/class-opalestate-request-reviewing.php:99 #: inc/message/class-opalestate-message.php:251 #: inc/message/class-opalestate-message.php:293 +#: inc/message/class-opalestate-request-reviewing.php:99 msgid "Unable to send a message." msgstr "" @@ -53,12 +170,12 @@ msgid "Missing some information!" msgstr "" #: inc/class-opalestate-email.php:178 +#: inc/agency/class-opalestate-agency-metabox.php:337 +#: inc/agent/class-opalestate-agent-metabox.php:177 #: inc/classes/class-opalestate-metabox-user.php:144 #: inc/classes/class-opalestate-metabox-user.php:204 -#: inc/agency/class-opalestate-agency-metabox.php:337 #: inc/message/class-opalestate-message.php:537 #: inc/message/class-opalestate-message.php:639 -#: inc/agent/class-opalestate-agent-metabox.php:177 #: templates/rating/opalestate-ratings.php:242 msgid "Email" msgstr "" @@ -108,27 +225,27 @@ msgstr "" #: inc/submission/class-opalestate-submission.php:225 #: inc/submission/class-opalestate-submission.php:235 #: inc/submission/class-opalestate-submission.php:252 -#: inc/vendors/social-login/class-opalestate-social-login.php:69 -#: inc/vendors/social-login/class-opalestate-social-login.php:106 -#: inc/admin/settings/property.php:65 inc/admin/settings/property.php:130 -#: inc/admin/settings/property.php:141 inc/admin/settings/property.php:178 -#: inc/admin/settings/property.php:255 inc/admin/settings/property.php:266 -#: inc/admin/settings/property.php:365 inc/admin/settings/property.php:391 -#: inc/admin/settings/property.php:402 inc/admin/settings/property.php:414 -#: inc/admin/settings/property.php:426 inc/admin/settings/property.php:438 -#: inc/admin/settings/property.php:450 inc/admin/settings/property.php:462 -#: inc/admin/settings/property.php:474 inc/admin/settings/property.php:486 -#: inc/admin/settings/property.php:498 inc/admin/settings/property.php:510 -#: inc/admin/settings/property.php:522 inc/admin/settings/property.php:547 -#: inc/admin/settings/property.php:558 inc/admin/settings/property.php:570 -#: inc/admin/settings/property.php:582 inc/admin/settings/general.php:50 +#: inc/admin/rating/class-rating.php:69 inc/admin/rating/class-rating.php:79 +#: inc/admin/rating/class-rating.php:89 inc/admin/settings/general.php:50 #: inc/admin/settings/general.php:60 inc/admin/settings/pages.php:102 #: inc/admin/settings/pages.php:113 inc/admin/settings/pages.php:124 #: inc/admin/settings/pages.php:135 inc/admin/settings/pages.php:146 #: inc/admin/settings/pages.php:158 inc/admin/settings/pages.php:168 #: inc/admin/settings/pages.php:179 inc/admin/settings/pages.php:190 -#: inc/admin/rating/class-rating.php:69 inc/admin/rating/class-rating.php:79 -#: inc/admin/rating/class-rating.php:89 +#: inc/admin/settings/property.php:65 inc/admin/settings/property.php:130 +#: inc/admin/settings/property.php:141 inc/admin/settings/property.php:178 +#: inc/admin/settings/property.php:255 inc/admin/settings/property.php:277 +#: inc/admin/settings/property.php:376 inc/admin/settings/property.php:402 +#: inc/admin/settings/property.php:413 inc/admin/settings/property.php:425 +#: inc/admin/settings/property.php:437 inc/admin/settings/property.php:449 +#: inc/admin/settings/property.php:461 inc/admin/settings/property.php:473 +#: inc/admin/settings/property.php:485 inc/admin/settings/property.php:497 +#: inc/admin/settings/property.php:509 inc/admin/settings/property.php:521 +#: inc/admin/settings/property.php:533 inc/admin/settings/property.php:558 +#: inc/admin/settings/property.php:569 inc/admin/settings/property.php:581 +#: inc/admin/settings/property.php:593 +#: inc/vendors/social-login/class-opalestate-social-login.php:69 +#: inc/vendors/social-login/class-opalestate-social-login.php:106 msgid "Enable" msgstr "" @@ -147,27 +264,27 @@ msgstr "" #: inc/submission/class-opalestate-submission.php:226 #: inc/submission/class-opalestate-submission.php:236 #: inc/submission/class-opalestate-submission.php:253 -#: inc/vendors/social-login/class-opalestate-social-login.php:70 -#: inc/vendors/social-login/class-opalestate-social-login.php:107 -#: inc/admin/settings/property.php:66 inc/admin/settings/property.php:131 -#: inc/admin/settings/property.php:142 inc/admin/settings/property.php:179 -#: inc/admin/settings/property.php:254 inc/admin/settings/property.php:265 -#: inc/admin/settings/property.php:366 inc/admin/settings/property.php:392 -#: inc/admin/settings/property.php:403 inc/admin/settings/property.php:415 -#: inc/admin/settings/property.php:427 inc/admin/settings/property.php:439 -#: inc/admin/settings/property.php:451 inc/admin/settings/property.php:463 -#: inc/admin/settings/property.php:475 inc/admin/settings/property.php:487 -#: inc/admin/settings/property.php:499 inc/admin/settings/property.php:511 -#: inc/admin/settings/property.php:523 inc/admin/settings/property.php:548 -#: inc/admin/settings/property.php:559 inc/admin/settings/property.php:571 -#: inc/admin/settings/property.php:583 inc/admin/settings/general.php:51 +#: inc/admin/rating/class-rating.php:70 inc/admin/rating/class-rating.php:80 +#: inc/admin/rating/class-rating.php:90 inc/admin/settings/general.php:51 #: inc/admin/settings/general.php:61 inc/admin/settings/pages.php:103 #: inc/admin/settings/pages.php:114 inc/admin/settings/pages.php:125 #: inc/admin/settings/pages.php:136 inc/admin/settings/pages.php:147 #: inc/admin/settings/pages.php:159 inc/admin/settings/pages.php:169 #: inc/admin/settings/pages.php:180 inc/admin/settings/pages.php:191 -#: inc/admin/rating/class-rating.php:70 inc/admin/rating/class-rating.php:80 -#: inc/admin/rating/class-rating.php:90 +#: inc/admin/settings/property.php:66 inc/admin/settings/property.php:131 +#: inc/admin/settings/property.php:142 inc/admin/settings/property.php:179 +#: inc/admin/settings/property.php:254 inc/admin/settings/property.php:276 +#: inc/admin/settings/property.php:377 inc/admin/settings/property.php:403 +#: inc/admin/settings/property.php:414 inc/admin/settings/property.php:426 +#: inc/admin/settings/property.php:438 inc/admin/settings/property.php:450 +#: inc/admin/settings/property.php:462 inc/admin/settings/property.php:474 +#: inc/admin/settings/property.php:486 inc/admin/settings/property.php:498 +#: inc/admin/settings/property.php:510 inc/admin/settings/property.php:522 +#: inc/admin/settings/property.php:534 inc/admin/settings/property.php:559 +#: inc/admin/settings/property.php:570 inc/admin/settings/property.php:582 +#: inc/admin/settings/property.php:594 +#: inc/vendors/social-login/class-opalestate-social-login.php:70 +#: inc/vendors/social-login/class-opalestate-social-login.php:107 msgid "Disable" msgstr "" @@ -262,16 +379,37 @@ msgstr "" msgid "Email Contact Host Form (in the Agent/Agency page)" msgstr "" -#: inc/class-opalestate-roles.php:49 -msgid "Opal Estate Manager" +#: inc/class-opalestate-enqueue.php:98 +msgid "Are you sure to remove?" msgstr "" -#: inc/class-opalestate-roles.php:80 -msgid "Opal Estate Agent" +#: inc/class-opalestate-enqueue.php:99 +msgid "This file is has large volume size, please try to upload other." msgstr "" -#: inc/class-opalestate-roles.php:92 -msgid "Opal Estate Agency" +#: inc/class-opalestate-html.php:42 +msgid "Enter username" +msgstr "" + +#: inc/class-opalestate-html.php:57 +msgid "Cancel" +msgstr "" + +#: inc/class-opalestate-html.php:221 inc/mixes-functions.php:1258 +#: inc/template-functions.php:347 templates/user/my-properties.php:3 +#: templates/search-box/fields/status-bar.php:9 +#: inc/vendors/elementor/widgets/opalestate-property-collection.php:152 +msgid "All" +msgstr "" + +#: inc/class-opalestate-html.php:222 +#: inc/property/class-metabox-property-admin.php:621 +#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:203 +#: inc/vendors/elementor/widgets/opalestate-agency-collection.php:276 +#: inc/vendors/elementor/widgets/opalestate-agent-collection.php:276 +#: inc/vendors/elementor/widgets/opalestate-property-collection.php:309 +#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:298 +msgid "None" msgstr "" #: inc/class-opalestate-install.php:149 @@ -303,182 +441,26 @@ msgstr "" msgid "[opalestate_search_map_properties]" msgstr "" -#: inc/class-no-captcha-recaptcha.php:88 -msgid "The captcha is not verified, please try again!" +#: inc/class-opalestate-roles.php:49 +msgid "Opal Estate Manager" msgstr "" -#: inc/class-no-captcha-recaptcha.php:101 -msgid "Show Captcha In Form" +#: inc/class-opalestate-roles.php:80 +msgid "Opal Estate Agent" msgstr "" -#: inc/class-no-captcha-recaptcha.php:102 -msgid "" -"Enable google captch in contact , register form. After Set yes, you change " -"setting in Google Captcha Tab. Register here: https://www.google." -"com/recaptcha/admin Version 2" +#: inc/class-opalestate-roles.php:92 +msgid "Opal Estate Agency" msgstr "" -#: inc/class-no-captcha-recaptcha.php:107 -#: inc/classes/class-opalestate-metabox-user.php:181 -#: inc/classes/class-opalestate-metabox-user.php:191 -#: inc/property/class-metabox-property-admin.php:181 -#: inc/property/class-metabox-property-admin.php:210 -#: inc/property/class-metabox-property-admin.php:270 -#: inc/property/class-metabox-property-admin.php:405 -#: inc/property/class-metabox-property-admin.php:415 -#: inc/agency/class-opalestate-agency-metabox.php:62 -#: inc/widgets/search-properties.php:147 -#: inc/submission/class-metabox-property-submission.php:353 -#: inc/submission/class-metabox-property-submission.php:433 -#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:236 -#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:250 -#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:274 -#: inc/vendors/opalmembership/free-package.php:35 -msgid "No" +#: inc/function-search-fields.php:96 +msgid ": " msgstr "" -#: inc/class-no-captcha-recaptcha.php:108 -#: inc/classes/class-opalestate-metabox-user.php:182 -#: inc/classes/class-opalestate-metabox-user.php:192 -#: inc/property/class-metabox-property-admin.php:180 -#: inc/property/class-metabox-property-admin.php:209 -#: inc/property/class-metabox-property-admin.php:269 -#: inc/agency/class-opalestate-agency-metabox.php:63 -#: inc/widgets/search-properties.php:148 -#: inc/submission/class-metabox-property-submission.php:354 -#: inc/submission/class-metabox-property-submission.php:434 -#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:235 -#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:249 -#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:273 -#: inc/vendors/opalmembership/free-package.php:34 -msgid "Yes" -msgstr "" - -#: inc/class-no-captcha-recaptcha.php:114 -msgid "Google Captcha page Settings" -msgstr "" - -#: inc/class-no-captcha-recaptcha.php:121 -msgid "Site Key" -msgstr "" - -#: inc/class-no-captcha-recaptcha.php:122 -msgid "Used for displaying the CAPTCHA." -msgstr "" - -#: inc/class-no-captcha-recaptcha.php:128 -msgid "Secret key" -msgstr "" - -#: inc/class-no-captcha-recaptcha.php:129 -msgid "Used for communication between your site and Google. Grab it." -msgstr "" - -#: inc/class-no-captcha-recaptcha.php:135 -msgid "Theme" -msgstr "" - -#: inc/class-no-captcha-recaptcha.php:136 -msgid "Display captcha box with color style." -msgstr "" - -#: inc/class-no-captcha-recaptcha.php:140 -msgid "Light" -msgstr "" - -#: inc/class-no-captcha-recaptcha.php:141 inc/admin/settings/3rd_party.php:73 -msgid "Dark" -msgstr "" - -#: inc/class-no-captcha-recaptcha.php:154 -msgid "Google Captcha" -msgstr "" - -#: inc/template-hook-functions.php:216 inc/template-hook-functions.php:271 -msgid "Request Viewing" -msgstr "" - -#: inc/template-hook-functions.php:268 -msgid "" -"Physical Arrange viewings is always been attractive to property clients. " -"Fill out the form to arrange visualizations around our properties." -msgstr "" - -#: inc/template-hook-functions.php:298 -msgid "User Management" -msgstr "" - -#: inc/template-hook-functions.php:299 -msgid "Opalestate Fullwidth" -msgstr "" - -#: inc/ajax-functions.php:99 inc/taxonomies/class-taxonomy-state.php:129 -#: inc/taxonomies/class-taxonomy-state.php:146 -msgid "Select State" -msgstr "" - -#: inc/ajax-functions.php:141 inc/taxonomies/class-taxonomy-city.php:140 -msgid "Select City" -msgstr "" - -#: inc/ajax-functions.php:215 inc/ajax-functions.php:220 -msgid "Could not set this as featured" -msgstr "" - -#: inc/ajax-functions.php:318 -msgid "Description is missing." -msgstr "" - -#: inc/ajax-functions.php:321 -msgid "User is missing." -msgstr "" - -#: inc/ajax-functions.php:324 -msgid "Permissions is missing." -msgstr "" - -#: inc/ajax-functions.php:335 -msgid "You do not have permission to assign API Keys to the selected user." -msgstr "" - -#: inc/ajax-functions.php:361 -msgid "API Key updated successfully." -msgstr "" - -#: inc/ajax-functions.php:392 -msgid "" -"API Key generated successfully. Make sure to copy your new keys now as the " -"secret key will be hidden once you leave this page." -msgstr "" - -#: inc/ajax-functions.php:394 inc/api/html-keys-edit.php:118 -msgid "Revoke key" -msgstr "" - -#: inc/class-opalestate-html.php:42 -msgid "Enter username" -msgstr "" - -#: inc/class-opalestate-html.php:57 -msgid "Cancel" -msgstr "" - -#: inc/class-opalestate-html.php:221 inc/mixes-functions.php:1258 -#: inc/template-functions.php:347 templates/user/my-properties.php:3 -#: templates/search-box/fields/status-bar.php:9 -#: inc/vendors/elementor/widgets/opalestate-property-collection.php:152 -msgid "All" -msgstr "" - -#: inc/class-opalestate-html.php:222 -#: inc/property/class-metabox-property-admin.php:621 -#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:203 -#: inc/vendors/elementor/widgets/opalestate-agent-collection.php:276 -#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:298 -#: inc/vendors/elementor/widgets/opalestate-property-collection.php:309 -#: inc/vendors/elementor/widgets/opalestate-agency-collection.php:276 -msgid "None" +#: inc/function-search-fields.php:143 +#: templates/search-box/search-form-v2.php:47 +#: templates/search-box/search-form-v3.php:64 +msgid "Area" msgstr "" #: inc/mixes-functions.php:207 @@ -539,10 +521,10 @@ msgstr "" #: inc/mixes-functions.php:231 inc/mixes-functions.php:247 #: inc/mixes-functions.php:259 inc/template-functions.php:256 +#: inc/vendors/elementor/widgets/opalestate-agency-collection.php:126 #: inc/vendors/elementor/widgets/opalestate-agent-collection.php:126 #: inc/vendors/elementor/widgets/opalestate-search-agency.php:117 #: inc/vendors/elementor/widgets/opalestate-search-agents.php:117 -#: inc/vendors/elementor/widgets/opalestate-agency-collection.php:126 msgid "Grid" msgstr "" @@ -556,10 +538,10 @@ msgstr "" #: inc/mixes-functions.php:234 inc/mixes-functions.php:248 #: inc/mixes-functions.php:273 inc/template-functions.php:260 +#: inc/vendors/elementor/widgets/opalestate-agency-collection.php:127 #: inc/vendors/elementor/widgets/opalestate-agent-collection.php:127 #: inc/vendors/elementor/widgets/opalestate-search-agency.php:118 #: inc/vendors/elementor/widgets/opalestate-search-agents.php:118 -#: inc/vendors/elementor/widgets/opalestate-agency-collection.php:127 msgid "List" msgstr "" @@ -1367,7 +1349,7 @@ msgstr "" msgid "Mark Picture" msgstr "" -#: inc/template-functions.php:707 inc/admin/settings/3rd_party.php:164 +#: inc/template-functions.php:707 inc/admin/settings/3rd_party.php:172 msgid "miles" msgstr "" @@ -1410,155 +1392,22 @@ msgstr[1] "" msgid "Print" msgstr "" -#: templates/content-single-property-print.php:50 -#: templates/content-single-property-v2.php:91 -#: templates/content-single-property-v3.php:85 -#: templates/content-single-property-v4.php:61 -#: templates/content-single-property-v5.php:94 -#: templates/content-single-property.php:66 -msgid "Property Description" +#: inc/template-hook-functions.php:216 inc/template-hook-functions.php:271 +msgid "Request Viewing" msgstr "" -#: templates/content-single-property-print.php:55 -#: templates/content-single-property-v2.php:99 -#: templates/content-single-property-v3.php:90 -#: templates/content-single-property-v4.php:69 -#: templates/content-single-property-v5.php:102 -#: templates/content-single-property.php:74 -msgid "Property ID: " +#: inc/template-hook-functions.php:268 +msgid "" +"Physical Arrange viewings is always been attractive to property clients. " +"Fill out the form to arrange visualizations around our properties." msgstr "" -#. %s: property date -#: templates/content-single-property-v2.php:46 -#: templates/content-single-property-v3.php:74 -#: templates/content-single-property-v4.php:43 -#: templates/content-single-property-v5.php:83 -#: templates/content-single-property.php:41 -#, php-format -msgid "Posted: %s" +#: inc/template-hook-functions.php:298 +msgid "User Management" msgstr "" -#: templates/content-single-property-v2.php:71 -#: templates/content-single-property-v5.php:16 -#: templates/content-property-list.php:59 -#: templates/content-single-agency.php:23 -#: templates/content-single-agency.php:44 templates/content-single-agent.php:16 -#: inc/rating/class-opalestate-rating-metabox.php:110 -#: inc/api/html-keys-edit.php:21 -#: inc/api/class-opalestate-admin-api-keys-table-list.php:47 -#: inc/submission/class-metabox-property-submission.php:108 -#: templates/single-property/content.php:2 -msgid "Description" -msgstr "" - -#: templates/content-single-property-v2.php:72 -#: inc/property/class-metabox-property-admin.php:60 -#: inc/agency/class-opalestate-agency-metabox.php:141 -#: inc/agency/class-opalestate-agency-metabox.php:268 -#: inc/agent/class-opalestate-agent-metabox.php:100 -#: inc/submission/class-metabox-property-submission.php:64 -#: templates/search-box/search-form-v3.php:51 -#: templates/search-box/search-form-v2.php:34 -msgid "Information" -msgstr "" - -#: templates/content-single-property-v2.php:73 -#: templates/content-single-property-v5.php:33 -#: inc/submission/class-metabox-property-submission.php:508 -#: templates/single-property/floor-plans.php:15 -msgid "Floor Plans" -msgstr "" - -#: templates/content-single-property-v2.php:74 -msgid "Attachment" -msgstr "" - -#: templates/content-single-property-v2.php:134 -#: inc/property/class-metabox-property-admin.php:292 -msgid "Property Information" -msgstr "" - -#: templates/content-single-property-v2.php:145 -msgid "Property Attachments" -msgstr "" - -#: templates/fullwidth-page.php:29 templates/content-single-agent.php:67 -#: templates/single-property/content.php:11 -msgid "Pages:" -msgstr "" - -#: templates/fullwidth-page.php:33 -msgid "Page" -msgstr "" - -#: templates/content-agent-list.php:12 templates/content-agent-grid.php:10 -#: templates/content-agent-grid-v2.php:9 templates/content-user-grid.php:42 -#: templates/single-agent/author-box.php:16 -msgid "Featured Agent" -msgstr "" - -#: templates/content-agent-list.php:14 templates/content-agent-grid.php:12 -#: templates/content-agent-grid-v2.php:11 templates/content-user-grid.php:44 -#: templates/content-agency-grid.php:14 templates/content-agency-list.php:15 -#: inc/property/class-metabox-property-admin.php:176 -#: templates/single-agent/author-box.php:18 -#: templates/single-agency/author-box.php:24 -#: templates/parts/featured-label.php:9 -#: inc/admin/property/class-property.php:100 -msgid "Featured" -msgstr "" - -#: templates/content-agent-list.php:26 templates/content-agent-list.php:27 -#: templates/content-agent-grid.php:17 templates/content-agent-grid.php:17 -#: templates/content-agent-grid-v2.php:17 -#: templates/content-agent-grid-v2.php:17 templates/content-user-grid.php:49 -#: templates/content-user-grid.php:49 templates/content-agency-grid.php:20 -#: templates/content-agency-grid.php:20 templates/content-agency-list.php:28 -#: templates/content-agency-list.php:29 -#: templates/single-agent/author-box.php:24 -#: templates/single-agent/author-box.php:25 -#: templates/single-agency/author-box.php:30 -#: templates/single-agency/author-box.php:30 -#: templates/single-property/user/author-member-box.php:28 -#: templates/single-property/user/author-member-box.php:28 -#: templates/single-property/user/author-user-box.php:49 -#: templates/single-property/user/author-user-box.php:50 -#: templates/single-property/user/author-user-box-list.php:51 -#: templates/single-property/user/author-user-box-list.php:52 -msgid "Trusted Member" -msgstr "" - -#: templates/content-single-property-v5.php:18 -#: inc/property/class-metabox-property-admin.php:220 -#: inc/submission/class-metabox-property-submission.php:205 -#: templates/single-property/video.php:16 -msgid "Video" -msgstr "" - -#: templates/content-single-property-v5.php:21 -#: templates/single-property/map.php:25 templates/single-property/map-v2.php:21 -#: templates/single-property/preview/tabs.php:17 -msgid "Map" -msgstr "" - -#: templates/content-single-property-v5.php:24 -msgid "Scores" -msgstr "" - -#: templates/content-single-property-v5.php:27 -msgid "Statistics" -msgstr "" - -#: templates/content-single-property-v5.php:30 -#: inc/property/class-metabox-property-admin.php:82 -#: inc/submission/class-metabox-property-submission.php:67 -#: inc/submission/class-metabox-property-submission.php:429 -#: templates/single-property/apartments.php:14 -msgid "Apartments" -msgstr "" - -#: templates/content-single-property-v5.php:35 inc/user/functions.php:213 -msgid "Reviews" +#: inc/template-hook-functions.php:299 +msgid "Opalestate Fullwidth" msgstr "" #: templates/archive-opalestate_agency.php:12 @@ -1577,16 +1426,6 @@ msgstr "" msgid "Found %s Agency" msgstr "" -#: templates/content-no-results.php:3 -msgid "Nothing Found" -msgstr "" - -#: templates/content-no-results.php:6 -msgid "" -"It seems we can’t find what you’re looking for. Perhaps " -"searching can help." -msgstr "" - #: templates/archive-opalestate_agent.php:11 msgid "Find The Best Real Estate Agent For Your" msgstr "" @@ -1604,32 +1443,70 @@ msgstr "" msgid "Found %s Agents" msgstr "" -#: templates/user-management.php:40 -#, php-format -msgid "Howdy, %s" -msgstr "" - -#: templates/user-management.php:44 -#: inc/vendors/elementor/widgets/opalestate-account-button.php:475 -msgid "Avatar image" -msgstr "" - -#: templates/user-management.php:141 -msgid "Login to your account" -msgstr "" - -#: templates/user-management.php:142 -msgid "" -"Logining in allows you to edit your property or submit a property, save " -"favorite real estate." -msgstr "" - #: templates/content-agency-grid.php:13 templates/content-agency-list.php:14 #: templates/single-agency/author-box.php:22 #: templates/single-agency/author-box.php:23 msgid "Featured Agency" msgstr "" +#: templates/content-agency-grid.php:14 templates/content-agency-list.php:15 +#: templates/content-agent-grid-v2.php:11 templates/content-agent-grid.php:12 +#: templates/content-agent-list.php:14 templates/content-user-grid.php:44 +#: inc/property/class-metabox-property-admin.php:176 +#: templates/parts/featured-label.php:9 +#: templates/single-agency/author-box.php:24 +#: templates/single-agent/author-box.php:18 +#: inc/admin/property/class-property.php:100 +msgid "Featured" +msgstr "" + +#: templates/content-agency-grid.php:20 templates/content-agency-list.php:28 +#: templates/content-agency-list.php:29 templates/content-agent-grid-v2.php:17 +#: templates/content-agent-grid-v2.php:17 templates/content-agent-grid.php:17 +#: templates/content-agent-grid.php:17 templates/content-agent-list.php:26 +#: templates/content-agent-list.php:27 templates/content-user-grid.php:49 +#: templates/content-user-grid.php:49 templates/single-agency/author-box.php:30 +#: templates/single-agency/author-box.php:30 +#: templates/single-agent/author-box.php:24 +#: templates/single-agent/author-box.php:25 +#: templates/single-property/user/author-member-box.php:28 +#: templates/single-property/user/author-member-box.php:28 +#: templates/single-property/user/author-user-box-list.php:51 +#: templates/single-property/user/author-user-box-list.php:52 +#: templates/single-property/user/author-user-box.php:49 +#: templates/single-property/user/author-user-box.php:50 +msgid "Trusted Member" +msgstr "" + +#: templates/content-agent-grid-v2.php:9 templates/content-agent-grid.php:10 +#: templates/content-agent-list.php:12 templates/content-user-grid.php:42 +#: templates/single-agent/author-box.php:16 +msgid "Featured Agent" +msgstr "" + +#: templates/content-no-results.php:3 +msgid "Nothing Found" +msgstr "" + +#: templates/content-no-results.php:6 +msgid "" +"It seems we can’t find what you’re looking for. Perhaps " +"searching can help." +msgstr "" + +#: templates/content-property-list.php:59 +#: templates/content-single-agency.php:23 +#: templates/content-single-agency.php:44 templates/content-single-agent.php:16 +#: templates/content-single-property-v2.php:71 +#: templates/content-single-property-v5.php:16 +#: inc/api/class-opalestate-admin-api-keys-table-list.php:47 +#: inc/api/html-keys-edit.php:21 +#: inc/rating/class-opalestate-rating-metabox.php:110 +#: inc/submission/class-metabox-property-submission.php:108 +#: templates/single-property/content.php:2 +msgid "Description" +msgstr "" + #: templates/content-single-agency.php:24 #: templates/content-single-agency.php:66 #: inc/classes/class-opalestate-metabox-user.php:106 @@ -1665,9 +1542,9 @@ msgstr "" #: templates/content-single-agency.php:110 #: templates/content-single-agent.php:22 -#: inc/property/class-opalestate-shortcodes.php:50 #: inc/property/class-opalestate-posttype.php:42 #: inc/property/class-opalestate-posttype.php:54 +#: inc/property/class-opalestate-shortcodes.php:50 #: templates/single-agency/tabs.php:6 msgid "Properties" msgstr "" @@ -1690,6 +1567,11 @@ msgstr "" msgid "About the Agent" msgstr "" +#: templates/content-single-agent.php:67 templates/fullwidth-page.php:29 +#: templates/single-property/content.php:11 +msgid "Pages:" +msgstr "" + #: templates/content-single-agent.php:79 msgid "My Address" msgstr "" @@ -1698,982 +1580,569 @@ msgstr "" msgid "Address:" msgstr "" -#: inc/rating/class-opalestate-rating-init.php:96 -msgid "Please rate all features." +#: templates/content-single-property-print.php:50 +#: templates/content-single-property-v2.php:91 +#: templates/content-single-property-v3.php:85 +#: templates/content-single-property-v4.php:61 +#: templates/content-single-property-v5.php:94 +#: templates/content-single-property.php:66 +msgid "Property Description" msgstr "" -#: inc/rating/class-opalestate-rating-init.php:102 -msgid "Please rate." +#: templates/content-single-property-print.php:55 +#: templates/content-single-property-v2.php:99 +#: templates/content-single-property-v3.php:90 +#: templates/content-single-property-v4.php:69 +#: templates/content-single-property-v5.php:102 +#: templates/content-single-property.php:74 +msgid "Property ID: " msgstr "" -#: inc/rating/class-opalestate-rating-features-posttype.php:52 -msgctxt "Feature plural name" -msgid "Rating Features" +#. %s: property date +#: templates/content-single-property-v2.php:46 +#: templates/content-single-property-v3.php:74 +#: templates/content-single-property-v4.php:43 +#: templates/content-single-property-v5.php:83 +#: templates/content-single-property.php:41 +#, php-format +msgid "Posted: %s" msgstr "" -#: inc/rating/class-opalestate-rating-features-posttype.php:53 -msgctxt "Feature singular name" -msgid "Rating Feature" +#: templates/content-single-property-v2.php:72 +#: inc/agency/class-opalestate-agency-metabox.php:141 +#: inc/agency/class-opalestate-agency-metabox.php:268 +#: inc/agent/class-opalestate-agent-metabox.php:100 +#: inc/property/class-metabox-property-admin.php:60 +#: inc/submission/class-metabox-property-submission.php:64 +#: templates/search-box/search-form-v2.php:34 +#: templates/search-box/search-form-v3.php:51 +msgid "Information" msgstr "" -#: inc/rating/class-opalestate-rating-features-posttype.php:54 -msgctxt "Admin menu name" -msgid "Rating Features" +#: templates/content-single-property-v2.php:73 +#: templates/content-single-property-v5.php:33 +#: inc/submission/class-metabox-property-submission.php:508 +#: templates/single-property/floor-plans.php:15 +msgid "Floor Plans" msgstr "" -#: inc/rating/class-opalestate-rating-features-posttype.php:55 -msgid "Add rating feature" +#: templates/content-single-property-v2.php:74 +msgid "Attachment" msgstr "" -#: inc/rating/class-opalestate-rating-features-posttype.php:56 -msgid "Add new rating feature" +#: templates/content-single-property-v2.php:134 +#: inc/property/class-metabox-property-admin.php:292 +msgid "Property Information" msgstr "" -#: inc/rating/class-opalestate-rating-features-posttype.php:57 -#: templates/user/content-property.php:80 -#: inc/vendors/opalmembership/membership.php:586 -msgid "Edit" +#: templates/content-single-property-v2.php:145 +msgid "Property Attachments" msgstr "" -#: inc/rating/class-opalestate-rating-features-posttype.php:58 -msgid "Edit rating feature" +#: templates/content-single-property-v5.php:18 +#: inc/property/class-metabox-property-admin.php:220 +#: inc/submission/class-metabox-property-submission.php:205 +#: templates/single-property/video.php:16 +msgid "Video" msgstr "" -#: inc/rating/class-opalestate-rating-features-posttype.php:59 -msgid "New rating feature" +#: templates/content-single-property-v5.php:21 +#: templates/single-property/map-v2.php:21 templates/single-property/map.php:25 +#: templates/single-property/preview/tabs.php:17 +msgid "Map" msgstr "" -#: inc/rating/class-opalestate-rating-features-posttype.php:60 -msgid "View rating feature" +#: templates/content-single-property-v5.php:24 +msgid "Scores" msgstr "" -#: inc/rating/class-opalestate-rating-features-posttype.php:61 -msgid "Query rating features" +#: templates/content-single-property-v5.php:27 +msgid "Statistics" msgstr "" -#: inc/rating/class-opalestate-rating-features-posttype.php:62 -msgid "No rating features found" +#: templates/content-single-property-v5.php:30 +#: inc/property/class-metabox-property-admin.php:82 +#: inc/submission/class-metabox-property-submission.php:67 +#: inc/submission/class-metabox-property-submission.php:429 +#: templates/single-property/apartments.php:14 +msgid "Apartments" msgstr "" -#: inc/rating/class-opalestate-rating-features-posttype.php:63 -msgid "No rating features found in trash" +#: templates/content-single-property-v5.php:35 inc/user/functions.php:213 +msgid "Reviews" msgstr "" -#: inc/rating/class-opalestate-rating-features-posttype.php:64 -msgid "Parent rating features" +#: templates/fullwidth-page.php:33 +msgid "Page" msgstr "" -#: inc/rating/class-opalestate-rating-features-posttype.php:65 -msgid "Filter rating features" +#: templates/user-management.php:40 +#, php-format +msgid "Howdy, %s" msgstr "" -#: inc/rating/class-opalestate-rating-features-posttype.php:66 -msgid "Rating Features navigation" +#: templates/user-management.php:44 +#: inc/vendors/elementor/widgets/opalestate-account-button.php:475 +msgid "Avatar image" msgstr "" -#: inc/rating/class-opalestate-rating-features-posttype.php:67 -msgid "Rating Features List" +#: templates/user-management.php:141 +msgid "Login to your account" msgstr "" -#: inc/rating/class-opalestate-rating-features-posttype.php:69 -msgid "This is where store rating features are stored." +#: templates/user-management.php:142 +msgid "" +"Logining in allows you to edit your property or submit a property, save " +"favorite real estate." msgstr "" -#: inc/rating/class-opalestate-rating-metabox.php:57 -msgid "Rating features" +#: inc/admin/class-admin.php:61 +msgid "Copying to clipboard failed. Please press Ctrl/Cmd+C to copy." msgstr "" -#: inc/rating/class-opalestate-rating-metabox.php:57 -msgid "Rating" -msgstr "" - -#: inc/rating/class-opalestate-rating-metabox.php:105 -msgid "Data" -msgstr "" - -#: inc/rating/class-opalestate-rating-metabox.php:116 -#: inc/taxonomies/class-taxonomy-status.php:99 -#: inc/vendors/elementor/widgets/opalestate-agent-collection.php:223 -#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:202 -#: inc/vendors/elementor/widgets/opalestate-property-collection.php:213 -#: inc/vendors/elementor/widgets/opalestate-category-list.php:193 -#: inc/vendors/elementor/widgets/opalestate-city-list.php:193 -#: inc/vendors/elementor/widgets/opalestate-agency-collection.php:223 -msgid "Order" -msgstr "" - -#: inc/rating/class-opalestate-rating-metabox.php:117 -#: inc/taxonomies/class-taxonomy-status.php:100 -msgid "Set a priority to display" -msgstr "" - -#: inc/classes/class-opalestate-yelp.php:145 -msgid "Active Life" -msgstr "" - -#: inc/classes/class-opalestate-yelp.php:149 -msgid "Arts & Entertainment" -msgstr "" - -#: inc/classes/class-opalestate-yelp.php:153 -msgid "Automotive" -msgstr "" - -#: inc/classes/class-opalestate-yelp.php:157 -msgid "Beauty & Spas" -msgstr "" - -#: inc/classes/class-opalestate-yelp.php:161 -msgid "Education" -msgstr "" - -#: inc/classes/class-opalestate-yelp.php:165 -msgid "Event Planning & Services" -msgstr "" - -#: inc/classes/class-opalestate-yelp.php:169 -msgid "Financial Services" -msgstr "" - -#: inc/classes/class-opalestate-yelp.php:173 -msgid "Food" -msgstr "" - -#: inc/classes/class-opalestate-yelp.php:177 -msgid "Health & Medical" -msgstr "" - -#: inc/classes/class-opalestate-yelp.php:181 -msgid "Home Services " -msgstr "" - -#: inc/classes/class-opalestate-yelp.php:185 -msgid "Hotels & Travel" -msgstr "" - -#: inc/classes/class-opalestate-yelp.php:189 -msgid "Local Flavor" -msgstr "" - -#: inc/classes/class-opalestate-yelp.php:193 -msgid "Local Services" -msgstr "" - -#: inc/classes/class-opalestate-yelp.php:197 -msgid "Mass Media" -msgstr "" - -#: inc/classes/class-opalestate-yelp.php:201 -msgid "Nightlife" -msgstr "" - -#: inc/classes/class-opalestate-yelp.php:205 -msgid "Pets" -msgstr "" - -#: inc/classes/class-opalestate-yelp.php:209 -msgid "Professional Services" -msgstr "" - -#: inc/classes/class-opalestate-yelp.php:213 -msgid "Public Services & Government" -msgstr "" - -#: inc/classes/class-opalestate-yelp.php:217 -msgid "Real Estate" -msgstr "" - -#: inc/classes/class-opalestate-yelp.php:221 -msgid "Religious Organizations" -msgstr "" - -#: inc/classes/class-opalestate-yelp.php:225 -msgid "Restaurants" -msgstr "" - -#: inc/classes/class-opalestate-yelp.php:229 -#: templates/single-property/map.php:73 templates/single-property/map-v2.php:75 -#: templates/single-property/preview/tabs.php:69 -#: templates/single-property/preview/map.php:43 -msgid "Shopping" -msgstr "" - -#: inc/classes/class-opalestate-yelp.php:233 -msgid "Transportation" -msgstr "" - -#: inc/classes/class-opalestate-cache.php:150 +#: inc/admin/class-user.php:47 #, php-format msgid "" -"In order for database caching to work with Give you must " -"add %1$s to the \"Ignored query stems\" option in W3 Total " -"Cache settings." +"This user has role Opal Estate Agency and click here to update Agency profile" msgstr "" -#: inc/classes/class-opalestate-cache.php:170 -msgid "Do not pass empty action to generate cache key." -msgstr "" - -#: inc/classes/class-opalestate-cache.php:203 -msgid "Do not pass invalid empty cache key" -msgstr "" - -#: inc/classes/class-opalestate-cache.php:205 -#: inc/classes/class-opalestate-cache.php:246 -#: inc/classes/class-opalestate-cache.php:295 -msgid "Cache key format should be opalestate_cache_*" -msgstr "" - -#: inc/classes/class-opalestate-metabox-user.php:23 -#: inc/classes/class-opalestate-metabox-user.php:31 -#: inc/classes/class-opalestate-metabox-user.php:69 -#: inc/classes/class-opalestate-metabox-user.php:196 -#: inc/agency/class-opalestate-agency-metabox.php:100 -#: inc/agency/class-opalestate-agency-metabox.php:310 -#: inc/agency/class-opalestate-agency-metabox.php:320 -#: inc/agent/class-opalestate-agent-metabox.php:157 -#: inc/agent/class-opalestate-agent-metabox.php:167 -msgid "Avatar Picture" -msgstr "" - -#: inc/classes/class-opalestate-metabox-user.php:24 -#: inc/classes/class-opalestate-metabox-user.php:32 -#: inc/classes/class-opalestate-metabox-user.php:70 -#: inc/classes/class-opalestate-metabox-user.php:197 -#: inc/agency/class-opalestate-agency-metabox.php:101 -#: inc/agency/class-opalestate-agency-metabox.php:311 -#: inc/agency/class-opalestate-agency-metabox.php:321 -#: inc/agent/class-opalestate-agent-metabox.php:158 -#: inc/agent/class-opalestate-agent-metabox.php:168 -msgid "This image will display in user detail and profile box information" -msgstr "" - -#: inc/classes/class-opalestate-metabox-user.php:40 -#: inc/agency/class-opalestate-agency-metabox.php:111 -msgid "First Name" -msgstr "" - -#: inc/classes/class-opalestate-metabox-user.php:48 -#: inc/agency/class-opalestate-agency-metabox.php:121 -msgid "Last Name" -msgstr "" - -#: inc/classes/class-opalestate-metabox-user.php:56 -#: inc/agency/class-opalestate-agency-metabox.php:130 -msgid "Biographical Info" -msgstr "" - -#: inc/classes/class-opalestate-metabox-user.php:58 -#: inc/agency/class-opalestate-agency-metabox.php:132 +#: inc/admin/class-user.php:57 +#, php-format msgid "" -"Share a little biographical information to fill out your profile. This may " -"be shown publicly." +"This user has role Opal Estate Agent and click here to update Agent profile" msgstr "" -#: inc/classes/class-opalestate-metabox-user.php:82 -#: inc/property/class-metabox-property-admin.php:193 -#: inc/submission/class-metabox-property-submission.php:63 -#: templates/search-box/search-form-v3.php:28 inc/api/v1/property.php:602 -#: templates/search-box/fields/search-city-text.php:23 -#: templates/search-box/fields/location.php:1 -#: templates/search-box/fields/location.php:2 -msgid "Location" +#: inc/admin/class-user.php:99 inc/admin/agency/class-agency.php:122 +#: inc/admin/agent/class-agent.php:95 +msgid "Metabox" +msgstr "" + +#: inc/admin/class-user.php:116 inc/admin/register-settings.php:123 +#: inc/property/class-metabox-property-admin.php:46 +#: inc/submission/class-metabox-property-submission.php:61 +#: inc/admin/agency/class-agency.php:141 inc/admin/agent/class-agent.php:113 +#: inc/admin/settings/property.php:21 +#: inc/vendors/elementor/widgets/opalestate-account-button.php:212 +msgid "General" +msgstr "" + +#: inc/admin/class-user.php:123 inc/admin/agency/class-agency.php:148 +#: inc/admin/agent/class-agent.php:120 +msgid "Socials" +msgstr "" + +#: inc/admin/class-user.php:180 +msgid "Block Submssion" +msgstr "" + +#: inc/admin/class-user.php:182 +msgid "Disable Submssion Functions to not allow submit property" +msgstr "" + +#: inc/admin/class-user.php:188 +msgid "Block Submssion Message" +msgstr "" + +#: inc/admin/class-user.php:190 +msgid "Show message for disabled user" +msgstr "" + +#: inc/admin/functions.php:198 +msgid "Global Default" +msgstr "" + +#: inc/admin/functions.php:288 +msgid "Save Settings" +msgstr "" + +#: inc/admin/functions.php:327 +msgid "Deactivate License" +msgstr "" + +#: inc/admin/functions.php:540 +msgid "No users found" +msgstr "" + +#: inc/admin/functions.php:563 +msgid "We could find this user" +msgstr "" + +#: inc/admin/functions.php:567 +msgid "We could not find this user" +msgstr "" + +#: inc/admin/register-settings.php:79 +msgid "Opalestate Settings" +msgstr "" + +#: inc/admin/register-settings.php:80 +msgid "Settings" +msgstr "" + +#: inc/admin/register-settings.php:92 +msgid "Opalestate Addons" +msgstr "" + +#: inc/admin/register-settings.php:93 +msgid "Addons" +msgstr "" + +#: inc/admin/register-settings.php:124 +#: inc/agency/class-opalestate-agency-posttype.php:44 +#: inc/agent/class-opalestate-agent-posttype.php:37 +#: inc/property/class-opalestate-posttype.php:43 +msgid "Property" +msgstr "" + +#: inc/admin/register-settings.php:125 inc/admin/settings/pages.php:28 +msgid "Pages" +msgstr "" + +#: inc/admin/register-settings.php:126 +msgid "3rd Party" +msgstr "" + +#: inc/admin/register-settings.php:127 inc/admin/settings/api_keys.php:28 +#: inc/admin/settings/api_keys.php:34 +msgid "API" +msgstr "" + +#: inc/admin/register-settings.php:130 +msgid "Add-ons" +msgstr "" + +#: inc/admin/register-settings.php:134 +msgid "Licenses" +msgstr "" + +#: inc/admin/register-settings.php:294 +msgid "Settings updated." +msgstr "" + +#: inc/agency/class-opalestate-agency-front.php:84 +msgid "Agency Profile" +msgstr "" + +#: inc/agency/class-opalestate-agency-front.php:90 +#: templates/user/agency/agency-team.php:28 +msgid "Agency Team" +msgstr "" + +#: inc/agency/class-opalestate-agency-front.php:289 +#: inc/agent/class-opalestate-agent-front.php:209 +#: inc/user/class-opalestate-user.php:372 +msgid "The data updated successful, please wait for redirecting" +msgstr "" + +#: inc/agency/class-opalestate-agency-front.php:291 +#: inc/agency/class-opalestate-agency-front.php:298 +#: inc/agent/class-opalestate-agent-front.php:211 +#: inc/agent/class-opalestate-agent-front.php:219 +#: inc/user/class-opalestate-user.php:374 +msgid "Update Information" +msgstr "" + +#: inc/agency/class-opalestate-agency-front.php:297 +#: inc/agent/class-opalestate-agent-front.php:218 +msgid "Currently, The data could not save!" +msgstr "" + +#: inc/agency/class-opalestate-agency-front.php:308 +msgid "Search Agencies" +msgstr "" + +#: inc/agency/class-opalestate-agency-front.php:309 +msgid "Agency Carousel" +msgstr "" + +#: inc/agency/class-opalestate-agency-front.php:368 +#: inc/agent/class-opalestate-agent-front.php:106 +msgid "You need to enter some required information to publish your account." +msgstr "" + +#: inc/agency/class-opalestate-agency-front.php:481 +#: inc/agent/class-opalestate-agent-front.php:490 +#, php-format +msgid "User ID: %s" +msgstr "" + +#: inc/agency/class-opalestate-agency-metabox.php:30 +msgid "Link To User ID" +msgstr "" + +#: inc/agency/class-opalestate-agency-metabox.php:32 +msgid "" +"Set relationship to existed user, allow user can edit Agency profile in " +"front-end and show account info in each property." +msgstr "" + +#: inc/agency/class-opalestate-agency-metabox.php:36 +msgid "Agent Team" msgstr "" -#: inc/classes/class-opalestate-metabox-user.php:83 #: inc/agency/class-opalestate-agency-metabox.php:37 #: inc/agency/class-opalestate-agency-metabox.php:279 #: inc/agency/class-opalestate-agency-metabox.php:331 #: inc/agent/class-opalestate-agent-metabox.php:65 #: inc/agent/class-opalestate-agent-metabox.php:111 +#: inc/classes/class-opalestate-metabox-user.php:83 #: inc/admin/agency/class-agency.php:85 msgid "Select one, to add new you create in location of estate panel" msgstr "" -#: inc/classes/class-opalestate-metabox-user.php:91 -#: inc/taxonomies/class-taxonomy-city.php:104 -msgid "State / Province" -msgstr "" - -#: inc/classes/class-opalestate-metabox-user.php:92 -msgid "Select one, to add new you create in state of estate panel" -msgstr "" - -#: inc/classes/class-opalestate-metabox-user.php:98 -#: inc/submission/class-metabox-property-submission.php:328 -msgid "City / Town" -msgstr "" - -#: inc/classes/class-opalestate-metabox-user.php:99 -msgid "Select one, to add new you create in city of estate panel" -msgstr "" - -#: inc/classes/class-opalestate-metabox-user.php:112 -msgid "Map Location" -msgstr "" - -#: inc/classes/class-opalestate-metabox-user.php:123 -msgid "Job" -msgstr "" - -#: inc/classes/class-opalestate-metabox-user.php:129 -msgid "Company" -msgstr "" - -#: inc/classes/class-opalestate-metabox-user.php:150 -#: inc/classes/class-opalestate-metabox-user.php:210 -#: inc/agency/class-opalestate-agency-metabox.php:343 -#: inc/agent/class-opalestate-agent-metabox.php:183 -msgid "Website" -msgstr "" - -#: inc/classes/class-opalestate-metabox-user.php:155 -#: inc/classes/class-opalestate-metabox-user.php:215 -#: inc/agency/class-opalestate-agency-metabox.php:158 -#: inc/agency/class-opalestate-agency-metabox.php:348 -#: inc/message/class-opalestate-message.php:546 -#: inc/message/class-opalestate-message.php:648 -#: inc/message/class-opalestate-message.php:719 -#: inc/agent/class-opalestate-agent-metabox.php:188 -msgid "Phone" -msgstr "" - -#: inc/classes/class-opalestate-metabox-user.php:160 -#: inc/classes/class-opalestate-metabox-user.php:221 -#: inc/agency/class-opalestate-agency-metabox.php:354 -#: inc/agent/class-opalestate-agent-metabox.php:194 -msgid "Mobile" -msgstr "" - -#: inc/classes/class-opalestate-metabox-user.php:165 -#: inc/classes/class-opalestate-metabox-user.php:226 -#: inc/agency/class-opalestate-agency-metabox.php:360 -#: inc/agent/class-opalestate-agent-metabox.php:200 -msgid "Fax" -msgstr "" - -#: inc/classes/class-opalestate-metabox-user.php:177 #: inc/agency/class-opalestate-agency-metabox.php:58 +#: inc/classes/class-opalestate-metabox-user.php:177 msgid "Is Featured" msgstr "" -#: inc/classes/class-opalestate-metabox-user.php:179 -msgid "Set member as featured" +#: inc/agency/class-opalestate-agency-metabox.php:60 +msgid "Set this agent as featured" msgstr "" -#: inc/classes/class-opalestate-metabox-user.php:187 -msgid "Trusted" +#: inc/agency/class-opalestate-agency-metabox.php:83 +#: inc/submission/class-metabox-property-submission.php:45 +#: inc/user/class-opalestate-user.php:596 +#: inc/user/class-opalestate-user.php:609 +msgid "Name and Description" msgstr "" -#: inc/classes/class-opalestate-metabox-user.php:189 -msgid "Set this member as Trusted Member" +#: inc/agency/class-opalestate-agency-metabox.php:100 +#: inc/agency/class-opalestate-agency-metabox.php:310 +#: inc/agency/class-opalestate-agency-metabox.php:320 +#: inc/agent/class-opalestate-agent-metabox.php:157 +#: inc/agent/class-opalestate-agent-metabox.php:167 +#: inc/classes/class-opalestate-metabox-user.php:23 +#: inc/classes/class-opalestate-metabox-user.php:31 +#: inc/classes/class-opalestate-metabox-user.php:69 +#: inc/classes/class-opalestate-metabox-user.php:196 +msgid "Avatar Picture" msgstr "" -#: inc/classes/class-opalestate-metabox-user.php:237 -msgid "Twitter" +#: inc/agency/class-opalestate-agency-metabox.php:101 +#: inc/agency/class-opalestate-agency-metabox.php:311 +#: inc/agency/class-opalestate-agency-metabox.php:321 +#: inc/agent/class-opalestate-agent-metabox.php:158 +#: inc/agent/class-opalestate-agent-metabox.php:168 +#: inc/classes/class-opalestate-metabox-user.php:24 +#: inc/classes/class-opalestate-metabox-user.php:32 +#: inc/classes/class-opalestate-metabox-user.php:70 +#: inc/classes/class-opalestate-metabox-user.php:197 +msgid "This image will display in user detail and profile box information" +msgstr "" + +#: inc/agency/class-opalestate-agency-metabox.php:111 +#: inc/classes/class-opalestate-metabox-user.php:40 +msgid "First Name" +msgstr "" + +#: inc/agency/class-opalestate-agency-metabox.php:121 +#: inc/classes/class-opalestate-metabox-user.php:48 +msgid "Last Name" +msgstr "" + +#: inc/agency/class-opalestate-agency-metabox.php:130 +#: inc/classes/class-opalestate-metabox-user.php:56 +msgid "Biographical Info" +msgstr "" + +#: inc/agency/class-opalestate-agency-metabox.php:132 +#: inc/classes/class-opalestate-metabox-user.php:58 +msgid "" +"Share a little biographical information to fill out your profile. This may " +"be shown publicly." +msgstr "" + +#: inc/agency/class-opalestate-agency-metabox.php:138 +msgid "Title/Job" +msgstr "" + +#: inc/agency/class-opalestate-agency-metabox.php:140 +msgid "Please enter position or job in your company." +msgstr "" + +#: inc/agency/class-opalestate-agency-metabox.php:146 +msgid "company" +msgstr "" + +#: inc/agency/class-opalestate-agency-metabox.php:148 +msgid "Please enter company name." +msgstr "" + +#: inc/agency/class-opalestate-agency-metabox.php:152 +msgid "Contact email" +msgstr "" + +#: inc/agency/class-opalestate-agency-metabox.php:154 +msgid "" +"Enter contact name that allow user contact you via the contact form of " +"website." +msgstr "" + +#: inc/agency/class-opalestate-agency-metabox.php:158 +#: inc/agency/class-opalestate-agency-metabox.php:348 +#: inc/agent/class-opalestate-agent-metabox.php:188 +#: inc/classes/class-opalestate-metabox-user.php:155 +#: inc/classes/class-opalestate-metabox-user.php:215 +#: inc/message/class-opalestate-message.php:546 +#: inc/message/class-opalestate-message.php:648 +#: inc/message/class-opalestate-message.php:719 +msgid "Phone" +msgstr "" + +#: inc/agency/class-opalestate-agency-metabox.php:160 +msgid "Enter your home phone." +msgstr "" + +#: inc/agency/class-opalestate-agency-metabox.php:165 +msgid "Skype" +msgstr "" + +#: inc/agency/class-opalestate-agency-metabox.php:167 +msgid "Input for skype account." +msgstr "" + +#: inc/agency/class-opalestate-agency-metabox.php:172 +msgid "Website URL" +msgstr "" + +#: inc/agency/class-opalestate-agency-metabox.php:174 +msgid "Link to your website" msgstr "" -#: inc/classes/class-opalestate-metabox-user.php:244 #: inc/agency/class-opalestate-agency-metabox.php:180 +#: inc/classes/class-opalestate-metabox-user.php:244 #: inc/vendors/social-login/class-opalestate-social-login.php:93 #: templates/user/social-login/facebook-button.php:19 msgid "Facebook" msgstr "" -#: inc/classes/class-opalestate-metabox-user.php:250 -#: inc/vendors/social-login/class-opalestate-social-login.php:57 -#: templates/user/social-login/google-button.php:19 -msgid "Google" +#: inc/agency/class-opalestate-agency-metabox.php:182 +msgid "Enter your facebook profile or facebook newfeed" msgstr "" -#: inc/classes/class-opalestate-metabox-user.php:256 -msgid "LinkedIn" +#: inc/agency/class-opalestate-agency-metabox.php:183 +msgid "Social" msgstr "" -#: inc/classes/class-opalestate-metabox-user.php:262 -msgid "Pinterest" +#: inc/agency/class-opalestate-agency-metabox.php:188 +msgid "Linkedin URL" msgstr "" -#: inc/classes/class-opalestate-metabox-user.php:267 -msgid "Instagram" +#: inc/agency/class-opalestate-agency-metabox.php:190 +msgid "Input for linked in profile." msgstr "" -#: inc/property/class-opalestate-shortcodes.php:49 -msgid "Search Properties Form" +#: inc/agency/class-opalestate-agency-metabox.php:194 +msgid "Instagram URL" msgstr "" -#: inc/property/class-opalestate-shortcodes.php:51 -msgid "Search Properties Result" +#: inc/agency/class-opalestate-agency-metabox.php:196 +msgid "Input for instagram profile." msgstr "" -#: inc/property/class-opalestate-shortcodes.php:52 -#: inc/widgets/search-properties.php:57 -msgid "Search Properties" +#: inc/agency/class-opalestate-agency-metabox.php:200 +msgid "Pinterest Url" msgstr "" -#: inc/property/class-opalestate-shortcodes.php:53 -msgid "Search Split Maps" +#: inc/agency/class-opalestate-agency-metabox.php:202 +msgid "Input for pinterest feed" msgstr "" -#: inc/property/class-opalestate-shortcodes.php:55 -msgid "Show Map + Search Box and Properties" +#: inc/agency/class-opalestate-agency-metabox.php:207 +msgid "Google Plus Url" msgstr "" -#: inc/property/class-opalestate-shortcodes.php:56 -msgid "Ajax Search Map Properties And Horizontal Search" +#: inc/agency/class-opalestate-agency-metabox.php:209 +msgid "Input for goolge plus profile or your newfeed." msgstr "" -#: inc/property/class-opalestate-shortcodes.php:58 -msgid "Register User Form" +#: inc/agency/class-opalestate-agency-metabox.php:214 +msgid "Youtube Url" msgstr "" -#: inc/property/class-opalestate-shortcodes.php:59 -msgid "Login Form" +#: inc/agency/class-opalestate-agency-metabox.php:216 +msgid "Input for your channel youtube." msgstr "" -#: inc/property/class-opalestate-property.php:741 -msgid "ago" +#: inc/agency/class-opalestate-agency-metabox.php:221 +msgid "Vimeo Url" msgstr "" -#: inc/property/class-opalestate-search.php:431 -msgid "Bed Rooms" +#: inc/agency/class-opalestate-agency-metabox.php:223 +msgid "Input for your channel Vimeo" msgstr "" -#: inc/property/class-opalestate-search.php:432 -#: inc/property/class-metabox-property-admin.php:296 -#: inc/submission/class-metabox-property-submission.php:248 -msgid "Parking" +#: inc/agency/class-opalestate-agency-metabox.php:254 +msgid "Title / Name" msgstr "" -#: inc/property/class-opalestate-search.php:433 -msgid "Bath Rooms" +#: inc/agency/class-opalestate-agency-metabox.php:263 +#: inc/admin/agency/class-agency.php:91 +msgid "Slogan" msgstr "" -#: inc/property/class-metabox-property-admin.php:28 -msgid "Property Metabox" +#: inc/agency/class-opalestate-agency-metabox.php:278 +#: inc/agent/class-opalestate-agent-metabox.php:64 +#: inc/agent/class-opalestate-agent-metabox.php:110 +#: inc/submission/class-metabox-property-submission.php:158 +#: inc/taxonomies/class-taxonomy-types.php:82 +#: inc/taxonomies/class-taxonomy-types.php:92 +#: templates/search-box/search-form-v2.php:29 +#: templates/search-box/search-form-v3.php:46 inc/api/v1/property.php:634 +#: inc/vendors/elementor/widgets/opalestate-property-collection.php:254 +#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:243 +msgid "Types" msgstr "" -#: inc/property/class-metabox-property-admin.php:46 -#: inc/admin/register-settings.php:123 inc/admin/class-user.php:116 -#: inc/submission/class-metabox-property-submission.php:61 -#: inc/admin/settings/property.php:21 inc/admin/agency/class-agency.php:141 -#: inc/admin/agent/class-agent.php:113 -#: inc/vendors/elementor/widgets/opalestate-account-button.php:212 -msgid "General" +#: inc/agency/class-opalestate-agency-metabox.php:301 +#: inc/agent/class-opalestate-agent-metabox.php:148 +msgid "Banner" msgstr "" -#: inc/property/class-metabox-property-admin.php:53 -msgid "Prices" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:67 -msgid "Facility" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:75 -msgid "Floor Plan" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:90 -#: inc/agency/class-opalestate-agency-metabox.php:330 -#: templates/single-agency/gallery.php:10 inc/admin/agency/class-agency.php:84 -#: templates/single-property/preview/tabs.php:15 -msgid "Gallery" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:94 -#: inc/submission/class-metabox-property-submission.php:197 -msgid "Images Gallery" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:96 -#: inc/property/class-metabox-property-admin.php:110 #: inc/agency/class-opalestate-agency-metabox.php:306 #: inc/agent/class-opalestate-agent-metabox.php:153 +#: inc/property/class-metabox-property-admin.php:96 +#: inc/property/class-metabox-property-admin.php:110 #: inc/submission/class-metabox-property-submission.php:190 #: inc/submission/class-metabox-property-submission.php:199 msgid "Select one or more images to show as gallery" msgstr "" -#: inc/property/class-metabox-property-admin.php:103 -msgid "Virtual Tour 360" +#: inc/agency/class-opalestate-agency-metabox.php:330 +#: inc/property/class-metabox-property-admin.php:90 +#: templates/single-agency/gallery.php:10 inc/admin/agency/class-agency.php:84 +#: templates/single-property/preview/tabs.php:15 +msgid "Gallery" msgstr "" -#: inc/property/class-metabox-property-admin.php:108 -msgid "Manual Images 360 " +#: inc/agency/class-opalestate-agency-metabox.php:343 +#: inc/agent/class-opalestate-agent-metabox.php:183 +#: inc/classes/class-opalestate-metabox-user.php:150 +#: inc/classes/class-opalestate-metabox-user.php:210 +msgid "Website" msgstr "" -#: inc/property/class-metabox-property-admin.php:114 -msgid "Or 360° Virtual Tour" +#: inc/agency/class-opalestate-agency-metabox.php:354 +#: inc/agent/class-opalestate-agent-metabox.php:194 +#: inc/classes/class-opalestate-metabox-user.php:160 +#: inc/classes/class-opalestate-metabox-user.php:221 +msgid "Mobile" msgstr "" -#: inc/property/class-metabox-property-admin.php:116 -#: inc/property/class-metabox-property-admin.php:562 -#: inc/submission/class-metabox-property-submission.php:214 -#: inc/submission/class-metabox-property-submission.php:564 -msgid "Input iframe to show 360° Virtual Tour." +#: inc/agency/class-opalestate-agency-metabox.php:360 +#: inc/agent/class-opalestate-agent-metabox.php:200 +#: inc/classes/class-opalestate-metabox-user.php:165 +#: inc/classes/class-opalestate-metabox-user.php:226 +msgid "Fax" msgstr "" -#: inc/property/class-metabox-property-admin.php:125 -#: inc/property/class-metabox-property-admin.php:129 -#: inc/submission/class-metabox-property-submission.php:219 -#: templates/single-property/attachments.php:12 -msgid "Attachments" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:134 -#: inc/submission/class-metabox-property-submission.php:227 -msgid "Select one or more files to allow download" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:142 -msgid "Contact Member" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:149 -msgid "User Assignment" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:155 -#: inc/widgets/search-properties.php:74 -#: inc/vendors/elementor/widgets/opalestate-searchbox.php:97 -msgid "Layout" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:186 -msgid "Property SKU" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:189 -msgid "Please Enter Your Property SKU" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:199 -#: inc/submission/class-metabox-property-submission.php:334 -msgid "Postal Code / Zip" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:205 -#: inc/submission/class-metabox-property-submission.php:349 -msgid "Google Map View" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:222 -#: inc/submission/class-metabox-property-submission.php:208 -msgid "" -"Input for videos, audios from Youtube, Vimeo and all supported sites by " -"WordPress. It has preview feature." -msgstr "" - -#: inc/property/class-metabox-property-admin.php:240 -#: inc/submission/class-metabox-property-submission.php:122 -msgid "Regular Price" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:242 -#: inc/property/class-metabox-property-admin.php:249 -#: inc/submission/class-metabox-property-submission.php:124 -#: inc/submission/class-metabox-property-submission.php:132 -msgid "Enter amount without currency" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:243 -#: inc/property/class-metabox-property-admin.php:526 -#: inc/submission/class-metabox-property-submission.php:526 -#: templates/search-box/search-form-v3.php:57 -#: templates/search-box/search-form-v2.php:40 -#: templates/search-box/fields/price.php:25 -msgid "Price" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:247 -#: inc/submission/class-metabox-property-submission.php:130 -#: templates/parts/mortgage-calculator.php:152 -msgid "Sale Price" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:253 -#: inc/submission/class-metabox-property-submission.php:136 -msgid "Before Price Label (optional)" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:255 -#: inc/submission/class-metabox-property-submission.php:138 -msgid "Before Price Label (e.g. \"from\")" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:259 -#: inc/submission/class-metabox-property-submission.php:142 -msgid "After Price Label (optional)" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:261 -#: inc/submission/class-metabox-property-submission.php:144 -msgid "After Price Label (e.g. \"per month\")" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:265 -msgid "Is Price On Call" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:288 -#: inc/submission/class-metabox-property-submission.php:241 -msgid "Built year" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:291 -#: inc/submission/class-metabox-property-submission.php:244 -msgid "Enter built year" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:299 -#: inc/submission/class-metabox-property-submission.php:251 -msgid "Enter number of Parking" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:302 -#: inc/submission/class-metabox-property-submission.php:254 -msgid "Bedrooms" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:305 -#: inc/submission/class-metabox-property-submission.php:257 -msgid "Enter number of bedrooms" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:308 -#: inc/submission/class-metabox-property-submission.php:260 -msgid "Bathrooms" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:311 -#: inc/submission/class-metabox-property-submission.php:263 -msgid "Enter number of bathrooms" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:314 -#: inc/submission/class-metabox-property-submission.php:266 -msgid "Plot Size" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:317 -#: inc/submission/class-metabox-property-submission.php:269 -msgid "Enter size of Plot as 20x30, 20x30x40, 20x30x40x50" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:320 -#: inc/submission/class-metabox-property-submission.php:272 -msgid "Area Size" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:323 -#: inc/submission/class-metabox-property-submission.php:275 -msgid "Enter size of area in sqft" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:326 -#: inc/submission/class-metabox-property-submission.php:278 -msgid "Orientation" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:329 -#: inc/submission/class-metabox-property-submission.php:281 -msgid "Enter Orientation of property" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:332 -#: inc/submission/class-metabox-property-submission.php:284 -msgid "Living Rooms" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:335 -#: inc/submission/class-metabox-property-submission.php:287 -msgid "Enter Number of Living Rooms" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:338 -#: inc/submission/class-metabox-property-submission.php:291 -msgid "Kitchens" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:341 -#: inc/submission/class-metabox-property-submission.php:294 -msgid "Enter Number of Kitchens" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:344 -#: inc/property/class-metabox-property-admin.php:537 -#: inc/submission/class-metabox-property-submission.php:298 -#: inc/submission/class-metabox-property-submission.php:537 -msgid "Rooms" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:347 -#: inc/submission/class-metabox-property-submission.php:301 -msgid "Enter Number of Amount Rooms" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:367 -#: inc/taxonomies/class-taxonomy-labels.php:44 -#: inc/taxonomies/class-taxonomy-labels.php:54 -#: inc/submission/class-metabox-property-submission.php:403 -#: inc/vendors/elementor/widgets/opalestate-searchbox.php:169 -#: inc/vendors/elementor/widgets/opalestate-account-button.php:249 -msgid "Label" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:372 -#: inc/property/class-metabox-property-admin.php:548 -#: inc/submission/class-metabox-property-submission.php:408 -#: inc/submission/class-metabox-property-submission.php:548 -msgid "Content" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:377 -#: inc/submission/class-metabox-property-submission.php:413 -msgid "Facility {#}" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:378 -#: inc/property/class-metabox-property-admin.php:567 -#: inc/property/class-metabox-property-admin.php:636 -#: inc/submission/class-metabox-property-submission.php:414 -#: inc/submission/class-metabox-property-submission.php:493 -#: inc/submission/class-metabox-property-submission.php:569 -msgid "Add more" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:379 -#: inc/property/class-metabox-property-admin.php:568 -#: inc/property/class-metabox-property-admin.php:637 -#: inc/submission/class-metabox-property-submission.php:415 -#: inc/submission/class-metabox-property-submission.php:494 -#: inc/submission/class-metabox-property-submission.php:570 -#: templates/user/agency/agency-team.php:68 -#: inc/vendors/cmb2-plugins/custom-fields/user/user.php:59 -#: inc/vendors/cmb2-plugins/custom-fields/user/user.php:72 -msgid "Remove" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:397 -msgid "Hide Author Information" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:398 -msgid "User Author Information" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:399 -msgid "Agent Information" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:400 #: inc/agency/class-opalestate-agency-metabox.php:377 +#: inc/property/class-metabox-property-admin.php:400 msgid "Agency Information" msgstr "" -#: inc/property/class-metabox-property-admin.php:426 -msgid "Author Information" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:433 -#: inc/user/class-opalestate-user.php:319 -msgid "Agent" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:439 -#: inc/user/class-opalestate-user.php:320 -#: templates/parts/search-agency-form.php:20 -msgid "Agency" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:458 -msgid "Default User" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:469 -#: inc/api/html-keys-edit.php:31 -#: inc/api/class-opalestate-admin-api-keys-table-list.php:49 -msgid "User" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:472 -msgid "" -"Change to new owner of this property, which be listed in That user dashboard" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:490 -msgid "Layout Display" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:494 -#: inc/property/class-metabox-property-admin.php:501 -msgid "Select a layout to display full information of this property" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:497 -msgid "Preview Display" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:520 -#: inc/message/class-opalestate-message.php:528 -#: inc/message/class-opalestate-message.php:631 -#: inc/submission/class-metabox-property-submission.php:520 -#: templates/rating/opalestate-ratings.php:240 -#: templates/user/share-search-form.php:35 -#: templates/user-search/content-savedsearch.php:12 -#: templates/user-search/render-form.php:29 -#: templates/user/agency/agency-team.php:17 -#: inc/vendors/elementor/widgets/opalestate-category-list.php:184 -#: inc/vendors/elementor/widgets/opalestate-city-list.php:184 -msgid "Name" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:532 -#: inc/submission/class-metabox-property-submission.php:532 -#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:372 -#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:434 -msgid "Size" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:542 -#: inc/submission/class-metabox-property-submission.php:542 -msgid "Baths" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:553 -#: inc/submission/class-metabox-property-submission.php:553 -msgid "Image Preview" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:566 -#: inc/submission/class-metabox-property-submission.php:568 -msgid "Floor {#}" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:590 -#: inc/submission/class-metabox-property-submission.php:446 -#: templates/single-property/apartments.php:22 -msgid "Plot" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:597 -#: inc/submission/class-metabox-property-submission.php:454 -#: templates/single-property/apartments.php:23 -msgid "Beds" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:602 -#: inc/submission/class-metabox-property-submission.php:459 -msgid "Price from" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:607 -#: inc/submission/class-metabox-property-submission.php:464 -#: templates/single-property/apartments.php:25 -msgid "Floor" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:613 -#: inc/submission/class-metabox-property-submission.php:470 -#: templates/single-property/apartments.php:26 -msgid "Building / Address" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:618 -#: inc/taxonomies/class-taxonomy-status.php:45 -#: inc/taxonomies/class-taxonomy-status.php:55 -#: inc/taxonomies/class-taxonomy-status.php:165 -#: inc/submission/class-metabox-property-submission.php:475 -#: templates/single-property/apartments.php:27 inc/api/v1/property.php:642 -#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:263 -#: inc/vendors/elementor/widgets/opalestate-property-collection.php:274 -msgid "Status" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:622 -#: inc/submission/class-metabox-property-submission.php:478 -msgid "Available" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:623 -#: inc/submission/class-metabox-property-submission.php:479 -msgid "Unavailable" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:629 -#: inc/submission/class-metabox-property-submission.php:485 -msgid "Link" -msgstr "" - -#: inc/property/class-metabox-property-admin.php:635 -#: inc/submission/class-metabox-property-submission.php:492 -msgid "Apartment {#}" -msgstr "" - -#: inc/property/class-opalestate-posttype.php:43 -#: inc/agency/class-opalestate-agency-posttype.php:44 -#: inc/admin/register-settings.php:124 -#: inc/agent/class-opalestate-agent-posttype.php:37 -msgid "Property" -msgstr "" - -#: inc/property/class-opalestate-posttype.php:44 -#: inc/property/class-opalestate-posttype.php:45 -#: templates/shortcodes/submission-form.php:30 -#: templates/submission/submission-form.php:16 -msgid "Add New Property" -msgstr "" - -#: inc/property/class-opalestate-posttype.php:46 -#: templates/shortcodes/submission-form.php:32 -#: templates/submission/submission-form.php:19 -msgid "Edit Property" -msgstr "" - -#: inc/property/class-opalestate-posttype.php:47 -msgid "New Property" -msgstr "" - -#: inc/property/class-opalestate-posttype.php:48 -msgid "All Properties" -msgstr "" - -#: inc/property/class-opalestate-posttype.php:49 -#: templates/user/dashboard.php:134 templates/user/property-ratings.php:91 -msgid "View Property" -msgstr "" - -#: inc/property/class-opalestate-posttype.php:50 -msgid "Search Property" -msgstr "" - -#: inc/property/class-opalestate-posttype.php:51 -msgid "No Properties found" -msgstr "" - -#: inc/property/class-opalestate-posttype.php:52 -msgid "No Properties found in Trash" -msgstr "" - -#: inc/property/class-opalestate-posttype.php:74 -msgctxt "property slug" -msgid "property" -msgstr "" - -#: inc/property/class-opalestate-posttype.php:84 -msgctxt "Expired status" -msgid "Expired" -msgstr "" - -#. %s: number of orders -#: inc/property/class-opalestate-posttype.php:90 -#, php-format -msgid "Expired (%s)" -msgid_plural "Expired (%s)" -msgstr[0] "" -msgstr[1] "" - #: inc/agency/class-opalestate-agency-posttype.php:43 #: inc/agency/class-opalestate-agency-posttype.php:55 msgid "Agencies" @@ -2765,580 +2234,17 @@ msgctxt "agency category slug" msgid "agency-category" msgstr "" -#: inc/agency/class-opalestate-agency-front.php:84 -msgid "Agency Profile" +#: inc/agent/class-opalestate-agent-front.php:82 +#: inc/agent/class-opalestate-agent-front.php:315 +msgid "Agent Profile" msgstr "" -#: inc/agency/class-opalestate-agency-front.php:90 -#: templates/user/agency/agency-team.php:28 -msgid "Agency Team" +#: inc/agent/class-opalestate-agent-front.php:316 +msgid "Search Agents" msgstr "" -#: inc/agency/class-opalestate-agency-front.php:289 -#: inc/user/class-opalestate-user.php:372 -#: inc/agent/class-opalestate-agent-front.php:209 -msgid "The data updated successful, please wait for redirecting" -msgstr "" - -#: inc/agency/class-opalestate-agency-front.php:291 -#: inc/agency/class-opalestate-agency-front.php:298 -#: inc/user/class-opalestate-user.php:374 -#: inc/agent/class-opalestate-agent-front.php:211 -#: inc/agent/class-opalestate-agent-front.php:219 -msgid "Update Information" -msgstr "" - -#: inc/agency/class-opalestate-agency-front.php:297 -#: inc/agent/class-opalestate-agent-front.php:218 -msgid "Currently, The data could not save!" -msgstr "" - -#: inc/agency/class-opalestate-agency-front.php:308 -msgid "Search Agencies" -msgstr "" - -#: inc/agency/class-opalestate-agency-front.php:309 -msgid "Agency Carousel" -msgstr "" - -#: inc/agency/class-opalestate-agency-front.php:368 -#: inc/agent/class-opalestate-agent-front.php:106 -msgid "You need to enter some required information to publish your account." -msgstr "" - -#: inc/agency/class-opalestate-agency-front.php:481 -#: inc/agent/class-opalestate-agent-front.php:490 -#, php-format -msgid "User ID: %s" -msgstr "" - -#: inc/agency/class-opalestate-agency-metabox.php:30 -msgid "Link To User ID" -msgstr "" - -#: inc/agency/class-opalestate-agency-metabox.php:32 -msgid "" -"Set relationship to existed user, allow user can edit Agency profile in " -"front-end and show account info in each property." -msgstr "" - -#: inc/agency/class-opalestate-agency-metabox.php:36 -msgid "Agent Team" -msgstr "" - -#: inc/agency/class-opalestate-agency-metabox.php:60 -msgid "Set this agent as featured" -msgstr "" - -#: inc/agency/class-opalestate-agency-metabox.php:83 -#: inc/user/class-opalestate-user.php:596 -#: inc/user/class-opalestate-user.php:609 -#: inc/submission/class-metabox-property-submission.php:45 -msgid "Name and Description" -msgstr "" - -#: inc/agency/class-opalestate-agency-metabox.php:138 -msgid "Title/Job" -msgstr "" - -#: inc/agency/class-opalestate-agency-metabox.php:140 -msgid "Please enter position or job in your company." -msgstr "" - -#: inc/agency/class-opalestate-agency-metabox.php:146 -msgid "company" -msgstr "" - -#: inc/agency/class-opalestate-agency-metabox.php:148 -msgid "Please enter company name." -msgstr "" - -#: inc/agency/class-opalestate-agency-metabox.php:152 -msgid "Contact email" -msgstr "" - -#: inc/agency/class-opalestate-agency-metabox.php:154 -msgid "" -"Enter contact name that allow user contact you via the contact form of " -"website." -msgstr "" - -#: inc/agency/class-opalestate-agency-metabox.php:160 -msgid "Enter your home phone." -msgstr "" - -#: inc/agency/class-opalestate-agency-metabox.php:165 -msgid "Skype" -msgstr "" - -#: inc/agency/class-opalestate-agency-metabox.php:167 -msgid "Input for skype account." -msgstr "" - -#: inc/agency/class-opalestate-agency-metabox.php:172 -msgid "Website URL" -msgstr "" - -#: inc/agency/class-opalestate-agency-metabox.php:174 -msgid "Link to your website" -msgstr "" - -#: inc/agency/class-opalestate-agency-metabox.php:182 -msgid "Enter your facebook profile or facebook newfeed" -msgstr "" - -#: inc/agency/class-opalestate-agency-metabox.php:183 -msgid "Social" -msgstr "" - -#: inc/agency/class-opalestate-agency-metabox.php:188 -msgid "Linkedin URL" -msgstr "" - -#: inc/agency/class-opalestate-agency-metabox.php:190 -msgid "Input for linked in profile." -msgstr "" - -#: inc/agency/class-opalestate-agency-metabox.php:194 -msgid "Instagram URL" -msgstr "" - -#: inc/agency/class-opalestate-agency-metabox.php:196 -msgid "Input for instagram profile." -msgstr "" - -#: inc/agency/class-opalestate-agency-metabox.php:200 -msgid "Pinterest Url" -msgstr "" - -#: inc/agency/class-opalestate-agency-metabox.php:202 -msgid "Input for pinterest feed" -msgstr "" - -#: inc/agency/class-opalestate-agency-metabox.php:207 -msgid "Google Plus Url" -msgstr "" - -#: inc/agency/class-opalestate-agency-metabox.php:209 -msgid "Input for goolge plus profile or your newfeed." -msgstr "" - -#: inc/agency/class-opalestate-agency-metabox.php:214 -msgid "Youtube Url" -msgstr "" - -#: inc/agency/class-opalestate-agency-metabox.php:216 -msgid "Input for your channel youtube." -msgstr "" - -#: inc/agency/class-opalestate-agency-metabox.php:221 -msgid "Vimeo Url" -msgstr "" - -#: inc/agency/class-opalestate-agency-metabox.php:223 -msgid "Input for your channel Vimeo" -msgstr "" - -#: inc/agency/class-opalestate-agency-metabox.php:254 -msgid "Title / Name" -msgstr "" - -#: inc/agency/class-opalestate-agency-metabox.php:263 -#: inc/admin/agency/class-agency.php:91 -msgid "Slogan" -msgstr "" - -#: inc/agency/class-opalestate-agency-metabox.php:278 -#: inc/agent/class-opalestate-agent-metabox.php:64 -#: inc/agent/class-opalestate-agent-metabox.php:110 -#: inc/taxonomies/class-taxonomy-types.php:82 -#: inc/taxonomies/class-taxonomy-types.php:92 -#: inc/submission/class-metabox-property-submission.php:158 -#: templates/search-box/search-form-v3.php:46 -#: templates/search-box/search-form-v2.php:29 inc/api/v1/property.php:634 -#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:243 -#: inc/vendors/elementor/widgets/opalestate-property-collection.php:254 -msgid "Types" -msgstr "" - -#: inc/agency/class-opalestate-agency-metabox.php:301 -#: inc/agent/class-opalestate-agent-metabox.php:148 -msgid "Banner" -msgstr "" - -#: inc/admin/functions.php:198 -msgid "Global Default" -msgstr "" - -#: inc/admin/functions.php:288 -msgid "Save Settings" -msgstr "" - -#: inc/admin/functions.php:327 -msgid "Deactivate License" -msgstr "" - -#: inc/admin/functions.php:540 -msgid "No users found" -msgstr "" - -#: inc/admin/functions.php:563 -msgid "We could find this user" -msgstr "" - -#: inc/admin/functions.php:567 -msgid "We could not find this user" -msgstr "" - -#: inc/admin/register-settings.php:79 -msgid "Opalestate Settings" -msgstr "" - -#: inc/admin/register-settings.php:80 -msgid "Settings" -msgstr "" - -#: inc/admin/register-settings.php:92 -msgid "Opalestate Addons" -msgstr "" - -#: inc/admin/register-settings.php:93 -msgid "Addons" -msgstr "" - -#: inc/admin/register-settings.php:125 inc/admin/settings/pages.php:28 -msgid "Pages" -msgstr "" - -#: inc/admin/register-settings.php:126 -msgid "3rd Party" -msgstr "" - -#: inc/admin/register-settings.php:127 inc/admin/settings/api_keys.php:28 -#: inc/admin/settings/api_keys.php:34 -msgid "API" -msgstr "" - -#: inc/admin/register-settings.php:130 -msgid "Add-ons" -msgstr "" - -#: inc/admin/register-settings.php:134 -msgid "Licenses" -msgstr "" - -#: inc/admin/register-settings.php:294 -msgid "Settings updated." -msgstr "" - -#: inc/admin/class-admin.php:61 -msgid "Copying to clipboard failed. Please press Ctrl/Cmd+C to copy." -msgstr "" - -#: inc/admin/class-user.php:47 -#, php-format -msgid "" -"This user has role Opal Estate Agency and click here to update Agency profile" -msgstr "" - -#: inc/admin/class-user.php:57 -#, php-format -msgid "" -"This user has role Opal Estate Agent and click here to update Agent profile" -msgstr "" - -#: inc/admin/class-user.php:99 inc/admin/agency/class-agency.php:122 -#: inc/admin/agent/class-agent.php:95 -msgid "Metabox" -msgstr "" - -#: inc/admin/class-user.php:123 inc/admin/agency/class-agency.php:148 -#: inc/admin/agent/class-agent.php:120 -msgid "Socials" -msgstr "" - -#: inc/admin/class-user.php:180 -msgid "Block Submssion" -msgstr "" - -#: inc/admin/class-user.php:182 -msgid "Disable Submssion Functions to not allow submit property" -msgstr "" - -#: inc/admin/class-user.php:188 -msgid "Block Submssion Message" -msgstr "" - -#: inc/admin/class-user.php:190 -msgid "Show message for disabled user" -msgstr "" - -#: inc/message/class-opalestate-message.php:182 -#: inc/email/class-opalestate-email-notifycation.php:36 -msgid "You got a message contact" -msgstr "" - -#: inc/message/class-opalestate-message.php:246 -msgid "Email Sent successful" -msgstr "" - -#: inc/message/class-opalestate-message.php:247 -#: inc/message/class-opalestate-message.php:251 -msgid "Sending Message" -msgstr "" - -#: inc/message/class-opalestate-message.php:505 -#: inc/message/class-opalestate-message.php:571 -#: inc/message/class-opalestate-message.php:610 -#: inc/message/class-opalestate-message.php:688 -#: inc/taxonomies/class-taxonomy-types.php:144 -#: templates/user/register-form.php:70 -msgid "Type" -msgstr "" - -#: inc/message/class-opalestate-message.php:512 -#: inc/message/class-opalestate-message.php:617 -#: inc/message/class-opalestate-message.php:694 -msgid "Property ID" -msgstr "" - -#: inc/message/class-opalestate-message.php:520 -#: inc/message/class-opalestate-message.php:624 -#: inc/message/class-opalestate-message.php:700 -#: templates/user/agency/agency-team.php:12 -msgid "Sender ID" -msgstr "" - -#: inc/message/class-opalestate-message.php:554 -#: inc/message/class-opalestate-message.php:578 -#: inc/message/class-opalestate-message.php:656 -#: inc/message/class-opalestate-message.php:725 -#: templates/user/share-search-form.php:45 -msgid "Message" -msgstr "" - -#: inc/message/class-opalestate-message.php:706 -msgid "Schedule" -msgstr "" - -#: inc/message/class-opalestate-message.php:713 -msgid "Time" -msgstr "" - -#: inc/user/functions.php:173 -msgid "Log out" -msgstr "" - -#: inc/user/functions.php:187 -#: inc/vendors/elementor/widgets/opalestate-account-button.php:551 -msgid "Dashboard" -msgstr "" - -#: inc/user/functions.php:195 -msgid "Personal Information" -msgstr "" - -#: inc/user/functions.php:204 -msgid "Favorite" -msgstr "" - -#: inc/user/functions.php:222 templates/user/read-messages.php:7 -msgid "Messages" -msgstr "" - -#: inc/user/functions.php:231 -msgid "Submit Property" -msgstr "" - -#: inc/user/functions.php:242 inc/submission/class-opalestate-submission.php:97 -#: templates/single-agent/properties.php:10 -#: templates/single-agency/properties.php:15 -msgid "My Properties" -msgstr "" - -#: inc/user/functions.php:270 -msgid "An account is already registered with your email address. Please login." -msgstr "" - -#: inc/user/functions.php:275 -msgid "Please enter a valid account username." -msgstr "" - -#: inc/user/functions.php:279 -msgid "Username is already exists." -msgstr "" - -#: inc/user/functions.php:284 -msgid "Password is requried." -msgstr "" - -#: inc/user/class-opalestate-user.php:57 -msgid "User Profile" -msgstr "" - -#: inc/user/class-opalestate-user.php:200 -#, php-format -msgid "" -"This user has role Opal Estate Agency and click here to update Agency profile" -msgstr "" - -#: inc/user/class-opalestate-user.php:211 -#, php-format -msgid "" -"This user has role Opal Estate Agent and click here to update Agent profile" -msgstr "" - -#: inc/user/class-opalestate-user.php:293 -msgid "" -"Your account was blocked to use the submission form, so you could not submit " -"any property." -msgstr "" - -#: inc/user/class-opalestate-user.php:305 -msgid "Your account is blocked, you could not complete this action" -msgstr "" - -#: inc/user/class-opalestate-user.php:318 -msgid "Subscriber" -msgstr "" - -#: inc/user/class-opalestate-user.php:524 -msgid "Found a problem while updating" -msgstr "" - -#: inc/user/class-opalestate-user.php:535 -msgid "Passwords fields are not empty" -msgstr "" - -#: inc/user/class-opalestate-user.php:541 -msgid "New password is not same confirm password" -msgstr "" - -#: inc/user/class-opalestate-user.php:551 -msgid "Password Updated" -msgstr "" - -#: inc/user/class-opalestate-user.php:553 -msgid "Old password is not correct" -msgstr "" - -#: inc/user/class-opalestate-user.php:618 -msgid "Old Password" -msgstr "" - -#: inc/user/class-opalestate-user.php:623 -msgid "Please enter your old password" -msgstr "" - -#: inc/user/class-opalestate-user.php:627 -msgid "New Password" -msgstr "" - -#: inc/user/class-opalestate-user.php:632 -msgid "Please enter your new password." -msgstr "" - -#: inc/user/class-opalestate-user.php:636 -msgid "Confirm Password" -msgstr "" - -#: inc/user/class-opalestate-user.php:641 -msgid "Please enter your confirm password." -msgstr "" - -#: inc/user/class-opalestate-user-search.php:144 -msgid "Saved this search successful." -msgstr "" - -#: inc/user/class-opalestate-user-search.php:146 -msgid "You saved this search" -msgstr "" - -#: inc/user/class-opalestate-user-search.php:149 -msgid "Please sign in to save this search." -msgstr "" - -#: inc/user/class-opalestate-user-search.php:195 -msgid "Saved Search" -msgstr "" - -#: inc/user/class-opalestate-user-form-handler.php:51 -#: inc/user/class-opalestate-user-form-handler.php:56 -#: inc/user/class-opalestate-user-form-handler.php:65 -#: inc/user/class-opalestate-user-form-handler.php:76 -#: inc/user/class-opalestate-user-form-handler.php:168 -#: inc/user/class-opalestate-user-form-handler.php:173 -#: inc/user/class-opalestate-user-form-handler.php:180 -#: inc/user/class-opalestate-user-form-handler.php:187 -#: inc/user/class-opalestate-user-form-handler.php:190 -#: inc/user/class-opalestate-user-form-handler.php:199 -msgid "ERROR" -msgstr "" - -#: inc/user/class-opalestate-user-form-handler.php:56 -#: inc/user/class-opalestate-user-form-handler.php:173 -msgid "Username is required." -msgstr "" - -#: inc/user/class-opalestate-user-form-handler.php:65 -msgid "A user could not be found with this email address." -msgstr "" - -#: inc/user/class-opalestate-user-form-handler.php:76 -#: inc/user/class-opalestate-user-form-handler.php:187 -msgid "Password is required." -msgstr "" - -#: inc/user/class-opalestate-user-form-handler.php:102 -msgid "Logged successfully, welcome back!" -msgstr "" - -#: inc/user/class-opalestate-user-form-handler.php:180 -msgid "Email is required." -msgstr "" - -#: inc/user/class-opalestate-user-form-handler.php:190 -msgid "Re-Password is not match." -msgstr "" - -#: inc/user/class-opalestate-user-form-handler.php:258 -msgid "Enter an username or e-mail address." -msgstr "" - -#: inc/user/class-opalestate-user-form-handler.php:264 -msgid "There is no user registered with that email address." -msgstr "" - -#: inc/user/class-opalestate-user-form-handler.php:270 -msgid "There is no user registered with that username." -msgstr "" - -#: inc/user/class-opalestate-user-form-handler.php:273 -msgid "Invalid username or e-mail address." -msgstr "" - -#: inc/user/class-opalestate-user-form-handler.php:297 -msgid "Your new password" -msgstr "" - -#: inc/user/class-opalestate-user-form-handler.php:300 -msgid "Your new password is: " -msgstr "" - -#: inc/user/class-opalestate-user-form-handler.php:309 -msgid "Check your email address for you new password." -msgstr "" - -#: inc/user/class-opalestate-user-form-handler.php:311 -msgid "System is unable to send you mail containg your new password." -msgstr "" - -#: inc/user/class-opalestate-user-form-handler.php:314 -msgid "Oops! Something went wrong while updating your account." +#: inc/agent/class-opalestate-agent-front.php:317 +msgid "Agent Carousel" msgstr "" #: inc/agent/class-opalestate-agent-metabox.php:45 @@ -3377,19 +2283,6 @@ msgstr "" msgid "Agent Information" msgstr "" -#: inc/agent/class-opalestate-agent-front.php:82 -#: inc/agent/class-opalestate-agent-front.php:315 -msgid "Agent Profile" -msgstr "" - -#: inc/agent/class-opalestate-agent-front.php:316 -msgid "Search Agents" -msgstr "" - -#: inc/agent/class-opalestate-agent-front.php:317 -msgid "Agent Carousel" -msgstr "" - #: inc/agent/class-opalestate-agent-posttype.php:36 #: inc/agent/class-opalestate-agent-posttype.php:48 msgid "Agents" @@ -3479,6 +2372,122 @@ msgctxt "agent level slug" msgid "agent-level" msgstr "" +#: inc/api/class-opalestate-admin-api-keys-table-list.php:36 +msgid "No keys found." +msgstr "" + +#: inc/api/class-opalestate-admin-api-keys-table-list.php:48 +#: inc/api/html-keys-edit.php:78 +msgid "Consumer key ending in" +msgstr "" + +#: inc/api/class-opalestate-admin-api-keys-table-list.php:49 +#: inc/api/html-keys-edit.php:31 +#: inc/property/class-metabox-property-admin.php:469 +msgid "User" +msgstr "" + +#: inc/api/class-opalestate-admin-api-keys-table-list.php:50 +#: inc/api/html-keys-edit.php:55 +msgid "Permissions" +msgstr "" + +#: inc/api/class-opalestate-admin-api-keys-table-list.php:51 +#: inc/api/html-keys-edit.php:86 +msgid "Last access" +msgstr "" + +#: inc/api/class-opalestate-admin-api-keys-table-list.php:83 +#: inc/admin/settings/3rd_party.php:57 +msgid "API key" +msgstr "" + +#. %s: API key ID. +#: inc/api/class-opalestate-admin-api-keys-table-list.php:95 +#, php-format +msgid "ID: %d" +msgstr "" + +#: inc/api/class-opalestate-admin-api-keys-table-list.php:99 +msgid "View/Edit" +msgstr "" + +#: inc/api/class-opalestate-admin-api-keys-table-list.php:100 +msgid "Revoke API key" +msgstr "" + +#: inc/api/class-opalestate-admin-api-keys-table-list.php:108 +#: inc/api/class-opalestate-admin-api-keys-table-list.php:202 +msgid "Revoke" +msgstr "" + +#: inc/api/class-opalestate-admin-api-keys-table-list.php:161 +#: inc/api/html-keys-edit.php:62 +msgid "Read" +msgstr "" + +#: inc/api/class-opalestate-admin-api-keys-table-list.php:162 +#: inc/api/html-keys-edit.php:63 +msgid "Write" +msgstr "" + +#: inc/api/class-opalestate-admin-api-keys-table-list.php:163 +#: inc/api/html-keys-edit.php:64 +msgid "Read/Write" +msgstr "" + +#. 1: last access date 2: last access time +#: inc/api/class-opalestate-admin-api-keys-table-list.php:182 +#: inc/api/html-keys-edit.php:93 +#, php-format +msgid "%1$s at %2$s" +msgstr "" + +#: inc/api/class-opalestate-admin-api-keys-table-list.php:188 +#: inc/api/html-keys-edit.php:98 +msgid "Unknown" +msgstr "" + +#: inc/api/class-opalestate-admin-api-keys.php:60 +msgid "You do not have permission to edit this API Key" +msgstr "" + +#: inc/api/class-opalestate-admin-api-keys.php:102 +msgid "REST API" +msgstr "" + +#: inc/api/class-opalestate-admin-api-keys.php:104 +msgid "Add key" +msgstr "" + +#: inc/api/class-opalestate-admin-api-keys.php:117 +msgid "Search key" +msgstr "" + +#: inc/api/class-opalestate-admin-api-keys.php:124 +#, php-format +msgid "" +"API keys allow users to use the Opalestate REST API to " +"retrieve donation data in JSON or XML for external applications or devices, " +"such as Zapi_keyser." +msgstr "" + +#: inc/api/class-opalestate-admin-api-keys.php:132 +msgid "Create an API key" +msgstr "" + +#: inc/api/class-opalestate-admin-api-keys.php:223 +msgid "You do not have permission to revoke this API Key" +msgstr "" + +#: inc/api/class-opalestate-admin-api-keys.php:238 +msgid "You do not have permission to edit API Keys" +msgstr "" + +#: inc/api/class-opalestate-admin-api-keys.php:258 +msgid "You do not have permission to revoke API Keys" +msgstr "" + #. %s: Class method name. #: inc/api/class-opalestate-base-api.php:146 #, php-format @@ -3525,46 +2534,6 @@ msgstr "" msgid "Maximum number of items to be returned in result set." msgstr "" -#: inc/api/class-opalestate-admin-api-keys.php:60 -msgid "You do not have permission to edit this API Key" -msgstr "" - -#: inc/api/class-opalestate-admin-api-keys.php:102 -msgid "REST API" -msgstr "" - -#: inc/api/class-opalestate-admin-api-keys.php:104 -msgid "Add key" -msgstr "" - -#: inc/api/class-opalestate-admin-api-keys.php:117 -msgid "Search key" -msgstr "" - -#: inc/api/class-opalestate-admin-api-keys.php:124 -#, php-format -msgid "" -"API keys allow users to use the Opalestate REST API to " -"retrieve donation data in JSON or XML for external applications or devices, " -"such as Zapi_keyser." -msgstr "" - -#: inc/api/class-opalestate-admin-api-keys.php:132 -msgid "Create an API key" -msgstr "" - -#: inc/api/class-opalestate-admin-api-keys.php:223 -msgid "You do not have permission to revoke this API Key" -msgstr "" - -#: inc/api/class-opalestate-admin-api-keys.php:238 -msgid "You do not have permission to edit API Keys" -msgstr "" - -#: inc/api/class-opalestate-admin-api-keys.php:258 -msgid "You do not have permission to revoke API Keys" -msgstr "" - #: inc/api/class-opalestate-rest-authentication.php:167 msgid "Consumer secret is invalid." msgstr "" @@ -3633,48 +2602,6 @@ msgstr "" msgid "Search for a user…" msgstr "" -#: inc/api/html-keys-edit.php:55 -#: inc/api/class-opalestate-admin-api-keys-table-list.php:50 -msgid "Permissions" -msgstr "" - -#: inc/api/html-keys-edit.php:62 -#: inc/api/class-opalestate-admin-api-keys-table-list.php:161 -msgid "Read" -msgstr "" - -#: inc/api/html-keys-edit.php:63 -#: inc/api/class-opalestate-admin-api-keys-table-list.php:162 -msgid "Write" -msgstr "" - -#: inc/api/html-keys-edit.php:64 -#: inc/api/class-opalestate-admin-api-keys-table-list.php:163 -msgid "Read/Write" -msgstr "" - -#: inc/api/html-keys-edit.php:78 -#: inc/api/class-opalestate-admin-api-keys-table-list.php:48 -msgid "Consumer key ending in" -msgstr "" - -#: inc/api/html-keys-edit.php:86 -#: inc/api/class-opalestate-admin-api-keys-table-list.php:51 -msgid "Last access" -msgstr "" - -#. 1: last access date 2: last access time -#: inc/api/html-keys-edit.php:93 -#: inc/api/class-opalestate-admin-api-keys-table-list.php:182 -#, php-format -msgid "%1$s at %2$s" -msgstr "" - -#: inc/api/html-keys-edit.php:98 -#: inc/api/class-opalestate-admin-api-keys-table-list.php:188 -msgid "Unknown" -msgstr "" - #: inc/api/html-keys-edit.php:112 msgid "Generate API key" msgstr "" @@ -3699,522 +2626,195 @@ msgstr "" msgid "Consumer secret" msgstr "" -#: inc/api/class-opalestate-admin-api-keys-table-list.php:36 -msgid "No keys found." -msgstr "" - -#: inc/api/class-opalestate-admin-api-keys-table-list.php:83 -#: inc/admin/settings/3rd_party.php:57 -msgid "API key" -msgstr "" - -#. %s: API key ID. -#: inc/api/class-opalestate-admin-api-keys-table-list.php:95 +#: inc/classes/class-opalestate-cache.php:150 #, php-format -msgid "ID: %d" +msgid "" +"In order for database caching to work with Give you must " +"add %1$s to the \"Ignored query stems\" option in W3 Total " +"Cache settings." msgstr "" -#: inc/api/class-opalestate-admin-api-keys-table-list.php:99 -msgid "View/Edit" +#: inc/classes/class-opalestate-cache.php:170 +msgid "Do not pass empty action to generate cache key." msgstr "" -#: inc/api/class-opalestate-admin-api-keys-table-list.php:100 -msgid "Revoke API key" +#: inc/classes/class-opalestate-cache.php:203 +msgid "Do not pass invalid empty cache key" msgstr "" -#: inc/api/class-opalestate-admin-api-keys-table-list.php:108 -#: inc/api/class-opalestate-admin-api-keys-table-list.php:202 -msgid "Revoke" +#: inc/classes/class-opalestate-cache.php:205 +#: inc/classes/class-opalestate-cache.php:246 +#: inc/classes/class-opalestate-cache.php:295 +msgid "Cache key format should be opalestate_cache_*" msgstr "" -#: inc/taxonomies/class-taxonomy-locations.php:44 -#: inc/taxonomies/class-taxonomy-locations.php:54 -msgid "Countries" +#: inc/classes/class-opalestate-metabox-user.php:82 +#: inc/property/class-metabox-property-admin.php:193 +#: inc/submission/class-metabox-property-submission.php:63 +#: templates/search-box/search-form-v3.php:28 inc/api/v1/property.php:602 +#: templates/search-box/fields/location.php:1 +#: templates/search-box/fields/location.php:2 +#: templates/search-box/fields/search-city-text.php:23 +msgid "Location" msgstr "" -#: inc/taxonomies/class-taxonomy-locations.php:45 -msgid "Properties By Country" +#: inc/classes/class-opalestate-metabox-user.php:91 +#: inc/taxonomies/class-taxonomy-city.php:104 +msgid "State / Province" msgstr "" -#: inc/taxonomies/class-taxonomy-locations.php:46 -msgid "Search Countries" +#: inc/classes/class-opalestate-metabox-user.php:92 +msgid "Select one, to add new you create in state of estate panel" msgstr "" -#: inc/taxonomies/class-taxonomy-locations.php:47 -msgid "All Countries" +#: inc/classes/class-opalestate-metabox-user.php:98 +#: inc/submission/class-metabox-property-submission.php:328 +msgid "City / Town" msgstr "" -#: inc/taxonomies/class-taxonomy-locations.php:48 -msgid "Parent Country" +#: inc/classes/class-opalestate-metabox-user.php:99 +msgid "Select one, to add new you create in city of estate panel" msgstr "" -#: inc/taxonomies/class-taxonomy-locations.php:49 -msgid "Parent Country:" +#: inc/classes/class-opalestate-metabox-user.php:112 +msgid "Map Location" msgstr "" -#: inc/taxonomies/class-taxonomy-locations.php:50 -msgid "Edit Country" +#: inc/classes/class-opalestate-metabox-user.php:123 +msgid "Job" msgstr "" -#: inc/taxonomies/class-taxonomy-locations.php:51 -msgid "Update Country" +#: inc/classes/class-opalestate-metabox-user.php:129 +msgid "Company" msgstr "" -#: inc/taxonomies/class-taxonomy-locations.php:52 -msgid "Add New Country" +#: inc/classes/class-opalestate-metabox-user.php:179 +msgid "Set member as featured" msgstr "" -#: inc/taxonomies/class-taxonomy-locations.php:53 -msgid "New Country" +#: inc/classes/class-opalestate-metabox-user.php:187 +msgid "Trusted" msgstr "" -#: inc/taxonomies/class-taxonomy-locations.php:61 -msgid "location" +#: inc/classes/class-opalestate-metabox-user.php:189 +msgid "Set this member as Trusted Member" msgstr "" -#: inc/taxonomies/class-taxonomy-locations.php:85 -msgid "Country Metabox" +#: inc/classes/class-opalestate-metabox-user.php:237 +msgid "Twitter" msgstr "" -#: inc/taxonomies/class-taxonomy-locations.php:91 -#: inc/taxonomies/class-taxonomy-categories.php:77 -#: inc/taxonomies/class-taxonomy-state.php:88 -#: inc/taxonomies/class-taxonomy-city.php:85 -#: inc/taxonomies/class-taxonomy-types.php:66 -msgid "Image" +#: inc/classes/class-opalestate-metabox-user.php:250 +#: inc/vendors/social-login/class-opalestate-social-login.php:57 +#: templates/user/social-login/google-button.php:19 +msgid "Google" msgstr "" -#: inc/taxonomies/class-taxonomy-locations.php:92 -msgid "Country image" +#: inc/classes/class-opalestate-metabox-user.php:256 +msgid "LinkedIn" msgstr "" -#: inc/taxonomies/class-taxonomy-locations.php:127 -#: inc/taxonomies/class-taxonomy-locations.php:147 -msgid "Select Country" +#: inc/classes/class-opalestate-metabox-user.php:262 +msgid "Pinterest" msgstr "" -#: inc/taxonomies/class-taxonomy-locations.php:161 -#: inc/taxonomies/class-taxonomy-state.php:99 -#: inc/taxonomies/class-taxonomy-city.php:96 -#: inc/submission/class-metabox-property-submission.php:315 -msgid "Country" +#: inc/classes/class-opalestate-metabox-user.php:267 +msgid "Instagram" msgstr "" -#: inc/taxonomies/class-taxomony-amenities.php:44 -#: inc/taxonomies/class-taxomony-amenities.php:54 -#: inc/submission/class-metabox-property-submission.php:65 -#: inc/submission/class-metabox-property-submission.php:376 -#: templates/single-property/amenities.php:9 inc/api/v1/property.php:650 -msgid "Amenities" +#: inc/classes/class-opalestate-yelp.php:145 +msgid "Active Life" msgstr "" -#: inc/taxonomies/class-taxomony-amenities.php:45 -msgid "Properties By Amenity" +#: inc/classes/class-opalestate-yelp.php:149 +msgid "Arts & Entertainment" msgstr "" -#: inc/taxonomies/class-taxomony-amenities.php:46 -msgid "Search Amenities" +#: inc/classes/class-opalestate-yelp.php:153 +msgid "Automotive" msgstr "" -#: inc/taxonomies/class-taxomony-amenities.php:47 -msgid "All Amenities" +#: inc/classes/class-opalestate-yelp.php:157 +msgid "Beauty & Spas" msgstr "" -#: inc/taxonomies/class-taxomony-amenities.php:48 -msgid "Parent Amenity" +#: inc/classes/class-opalestate-yelp.php:161 +msgid "Education" msgstr "" -#: inc/taxonomies/class-taxomony-amenities.php:49 -msgid "Parent Amenity:" +#: inc/classes/class-opalestate-yelp.php:165 +msgid "Event Planning & Services" msgstr "" -#: inc/taxonomies/class-taxomony-amenities.php:50 -msgid "Edit Amenity" +#: inc/classes/class-opalestate-yelp.php:169 +msgid "Financial Services" msgstr "" -#: inc/taxonomies/class-taxomony-amenities.php:51 -msgid "Update Amenity" +#: inc/classes/class-opalestate-yelp.php:173 +msgid "Food" msgstr "" -#: inc/taxonomies/class-taxomony-amenities.php:52 -msgid "Add New Amenity" +#: inc/classes/class-opalestate-yelp.php:177 +msgid "Health & Medical" msgstr "" -#: inc/taxonomies/class-taxomony-amenities.php:53 -msgid "New Amenity" +#: inc/classes/class-opalestate-yelp.php:181 +msgid "Home Services " msgstr "" -#: inc/taxonomies/class-taxomony-amenities.php:61 -msgctxt "slug" -msgid "amenity" +#: inc/classes/class-opalestate-yelp.php:185 +msgid "Hotels & Travel" msgstr "" -#: inc/taxonomies/class-taxomony-amenities.php:91 -#: inc/taxonomies/class-taxonomy-types.php:49 -msgid "Type Metabox" +#: inc/classes/class-opalestate-yelp.php:189 +msgid "Local Flavor" msgstr "" -#: inc/taxonomies/class-taxomony-amenities.php:97 -#: inc/vendors/elementor/widgets/opalestate-account-button.php:284 -msgid "Icon" +#: inc/classes/class-opalestate-yelp.php:193 +msgid "Local Services" msgstr "" -#: inc/taxonomies/class-taxomony-amenities.php:98 -msgid "Select an icon." +#: inc/classes/class-opalestate-yelp.php:197 +msgid "Mass Media" msgstr "" -#: inc/taxonomies/class-taxomony-amenities.php:104 -msgid "Image Icon" +#: inc/classes/class-opalestate-yelp.php:201 +msgid "Nightlife" msgstr "" -#: inc/taxonomies/class-taxomony-amenities.php:105 -msgid "Select an image icon (SVG, PNG or JPEG)." +#: inc/classes/class-opalestate-yelp.php:205 +msgid "Pets" msgstr "" -#: inc/taxonomies/class-taxonomy-categories.php:43 inc/api/v1/property.php:626 -#: inc/vendors/elementor/widgets/opalestate-agent-collection.php:236 -#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:215 -#: inc/vendors/elementor/widgets/opalestate-property-collection.php:226 -#: inc/vendors/elementor/widgets/opalestate-category-list.php:206 -#: inc/vendors/elementor/widgets/opalestate-agency-collection.php:236 -msgid "Categories" +#: inc/classes/class-opalestate-yelp.php:209 +msgid "Professional Services" msgstr "" -#: inc/taxonomies/class-taxonomy-categories.php:45 -msgid "New Category" +#: inc/classes/class-opalestate-yelp.php:213 +msgid "Public Services & Government" msgstr "" -#: inc/taxonomies/class-taxonomy-categories.php:54 -msgctxt "slug" -msgid "property-category" +#: inc/classes/class-opalestate-yelp.php:217 +msgid "Real Estate" msgstr "" -#: inc/taxonomies/class-taxonomy-categories.php:71 -#: inc/taxonomies/class-taxonomy-labels.php:82 -#: inc/taxonomies/class-taxonomy-status.php:79 -msgid "Category Metabox" +#: inc/classes/class-opalestate-yelp.php:221 +msgid "Religious Organizations" msgstr "" -#: inc/taxonomies/class-taxonomy-categories.php:78 -msgid "Category image" +#: inc/classes/class-opalestate-yelp.php:225 +msgid "Restaurants" msgstr "" -#: inc/taxonomies/class-taxonomy-categories.php:107 -msgid "Select Category" +#: inc/classes/class-opalestate-yelp.php:229 +#: templates/single-property/map-v2.php:75 templates/single-property/map.php:73 +#: templates/single-property/preview/map.php:43 +#: templates/single-property/preview/tabs.php:69 +msgid "Shopping" msgstr "" -#: inc/taxonomies/class-taxonomy-state.php:44 -#: inc/taxonomies/class-taxonomy-state.php:54 -msgid "States / Provinces" -msgstr "" - -#: inc/taxonomies/class-taxonomy-state.php:45 -msgid "Properties By State" -msgstr "" - -#: inc/taxonomies/class-taxonomy-state.php:46 -msgid "Search States" -msgstr "" - -#: inc/taxonomies/class-taxonomy-state.php:47 -msgid "All States / Province" -msgstr "" - -#: inc/taxonomies/class-taxonomy-state.php:48 -msgid "Parent State" -msgstr "" - -#: inc/taxonomies/class-taxonomy-state.php:49 -msgid "Parent State:" -msgstr "" - -#: inc/taxonomies/class-taxonomy-state.php:50 -msgid "Edit State" -msgstr "" - -#: inc/taxonomies/class-taxonomy-state.php:51 -msgid "Update State" -msgstr "" - -#: inc/taxonomies/class-taxonomy-state.php:52 -msgid "Add New State" -msgstr "" - -#: inc/taxonomies/class-taxonomy-state.php:53 -msgid "New State" -msgstr "" - -#: inc/taxonomies/class-taxonomy-state.php:61 -msgid "state" -msgstr "" - -#: inc/taxonomies/class-taxonomy-state.php:82 -msgid "State Metabox" -msgstr "" - -#: inc/taxonomies/class-taxonomy-state.php:89 -msgid "State image" -msgstr "" - -#: inc/taxonomies/class-taxonomy-state.php:100 -#: inc/taxonomies/class-taxonomy-city.php:97 -msgid "Select one, to add new you create in countries of estate panel" -msgstr "" - -#: inc/taxonomies/class-taxonomy-state.php:160 inc/api/v1/property.php:610 -msgid "State" -msgstr "" - -#: inc/taxonomies/class-taxonomy-labels.php:45 -msgid "Properties By Label" -msgstr "" - -#: inc/taxonomies/class-taxonomy-labels.php:46 -msgid "Search Label" -msgstr "" - -#: inc/taxonomies/class-taxonomy-labels.php:47 -msgid "All Label" -msgstr "" - -#: inc/taxonomies/class-taxonomy-labels.php:48 -msgid "Parent Label" -msgstr "" - -#: inc/taxonomies/class-taxonomy-labels.php:49 -msgid "Parent Label:" -msgstr "" - -#: inc/taxonomies/class-taxonomy-labels.php:50 -msgid "Edit Label" -msgstr "" - -#: inc/taxonomies/class-taxonomy-labels.php:51 -msgid "Update Label" -msgstr "" - -#: inc/taxonomies/class-taxonomy-labels.php:52 -msgid "Add New Label" -msgstr "" - -#: inc/taxonomies/class-taxonomy-labels.php:53 -msgid "New Label" -msgstr "" - -#: inc/taxonomies/class-taxonomy-labels.php:61 -msgid "property-label" -msgstr "" - -#: inc/taxonomies/class-taxonomy-labels.php:87 -#: inc/taxonomies/class-taxonomy-status.php:85 -msgid "Background" -msgstr "" - -#: inc/taxonomies/class-taxonomy-labels.php:88 -#: inc/taxonomies/class-taxonomy-status.php:86 -msgid "Set background of label" -msgstr "" - -#: inc/taxonomies/class-taxonomy-labels.php:93 -#: inc/taxonomies/class-taxonomy-status.php:92 -#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:392 -#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:454 -#: inc/vendors/elementor/widgets/opalestate-searchbox.php:186 -#: inc/vendors/elementor/widgets/opalestate-searchbox.php:215 -#: inc/vendors/elementor/widgets/opalestate-searchbox.php:241 -#: inc/vendors/elementor/widgets/opalestate-searchbox.php:306 -#: inc/vendors/elementor/widgets/opalestate-searchbox.php:347 -#: inc/vendors/elementor/widgets/opalestate-account-button.php:257 -msgid "Color" -msgstr "" - -#: inc/taxonomies/class-taxonomy-labels.php:94 -msgid "Set color of text" -msgstr "" - -#: inc/taxonomies/class-taxonomy-labels.php:100 -msgid "Image Logo" -msgstr "" - -#: inc/taxonomies/class-taxonomy-labels.php:101 -msgid "Or Using Image Logo without using text" -msgstr "" - -#: inc/taxonomies/class-taxonomy-labels.php:140 -msgid "Select Label" -msgstr "" - -#: inc/taxonomies/class-taxonomy-city.php:45 -#: inc/taxonomies/class-taxonomy-city.php:55 -msgid "Cities / Towns" -msgstr "" - -#: inc/taxonomies/class-taxonomy-city.php:46 -msgid "Properties By City" -msgstr "" - -#: inc/taxonomies/class-taxonomy-city.php:47 -msgid "Search Cities / Towns" -msgstr "" - -#: inc/taxonomies/class-taxonomy-city.php:48 -msgid "All Cities / Town" -msgstr "" - -#: inc/taxonomies/class-taxonomy-city.php:49 -msgid "Parent City" -msgstr "" - -#: inc/taxonomies/class-taxonomy-city.php:50 -msgid "Parent City:" -msgstr "" - -#: inc/taxonomies/class-taxonomy-city.php:51 -msgid "Edit City" -msgstr "" - -#: inc/taxonomies/class-taxonomy-city.php:52 -msgid "Update City" -msgstr "" - -#: inc/taxonomies/class-taxonomy-city.php:53 -msgid "Add New City" -msgstr "" - -#: inc/taxonomies/class-taxonomy-city.php:54 -msgid "New City" -msgstr "" - -#: inc/taxonomies/class-taxonomy-city.php:62 -msgid "city" -msgstr "" - -#: inc/taxonomies/class-taxonomy-city.php:79 -msgid "City Metabox" -msgstr "" - -#: inc/taxonomies/class-taxonomy-city.php:86 -msgid "City image" -msgstr "" - -#: inc/taxonomies/class-taxonomy-city.php:105 -msgid "Select one, to add new you create in City/Town of estate panel" -msgstr "" - -#: inc/taxonomies/class-taxonomy-city.php:154 inc/api/v1/property.php:618 -msgid "City" -msgstr "" - -#: inc/taxonomies/class-taxonomy-types.php:55 -msgid "Custom Icon Marker" -msgstr "" - -#: inc/taxonomies/class-taxonomy-types.php:56 -msgid "This image will display in google map" -msgstr "" - -#: inc/taxonomies/class-taxonomy-types.php:67 -msgid "Type image" -msgstr "" - -#: inc/taxonomies/class-taxonomy-types.php:83 -msgid "Properties By Type" -msgstr "" - -#: inc/taxonomies/class-taxonomy-types.php:84 -msgid "Search Types" -msgstr "" - -#: inc/taxonomies/class-taxonomy-types.php:85 -msgid "All Types" -msgstr "" - -#: inc/taxonomies/class-taxonomy-types.php:86 -msgid "Parent Type" -msgstr "" - -#: inc/taxonomies/class-taxonomy-types.php:87 -msgid "Parent Type:" -msgstr "" - -#: inc/taxonomies/class-taxonomy-types.php:88 -msgid "Edit Type" -msgstr "" - -#: inc/taxonomies/class-taxonomy-types.php:89 -msgid "Update Type" -msgstr "" - -#: inc/taxonomies/class-taxonomy-types.php:90 -msgid "Add New Type" -msgstr "" - -#: inc/taxonomies/class-taxonomy-types.php:91 -msgid "New Type" -msgstr "" - -#: inc/taxonomies/class-taxonomy-types.php:99 -msgid "type" -msgstr "" - -#: inc/taxonomies/class-taxonomy-types.php:132 -msgid "Select Type" -msgstr "" - -#: inc/taxonomies/class-taxonomy-status.php:46 -msgid "Properties By Status" -msgstr "" - -#: inc/taxonomies/class-taxonomy-status.php:47 -msgid "Search Status" -msgstr "" - -#: inc/taxonomies/class-taxonomy-status.php:48 -msgid "All Status" -msgstr "" - -#: inc/taxonomies/class-taxonomy-status.php:49 -msgid "Parent Status" -msgstr "" - -#: inc/taxonomies/class-taxonomy-status.php:50 -msgid "Parent Status:" -msgstr "" - -#: inc/taxonomies/class-taxonomy-status.php:51 -msgid "Edit Status" -msgstr "" - -#: inc/taxonomies/class-taxonomy-status.php:52 -msgid "Update Status" -msgstr "" - -#: inc/taxonomies/class-taxonomy-status.php:53 -msgid "Add New Status" -msgstr "" - -#: inc/taxonomies/class-taxonomy-status.php:54 -msgid "New Status" -msgstr "" - -#: inc/taxonomies/class-taxonomy-status.php:61 -msgid "status" -msgstr "" - -#: inc/taxonomies/class-taxonomy-status.php:93 -msgid "Set background of text" -msgstr "" - -#: inc/taxonomies/class-taxonomy-status.php:153 -msgid "Select Status" -msgstr "" - -#: inc/email/class-opalestate-approve.php:17 -msgid "The Property Listing Approved: {property_name}" -msgstr "" - -#: inc/email/class-opalestate-email-notifycation.php:29 -msgid "You got a message enquiry" +#: inc/classes/class-opalestate-yelp.php:233 +msgid "Transportation" msgstr "" #: inc/email/class-opalestate-abs-email-template.php:30 @@ -4225,127 +2825,806 @@ msgstr "" msgid "Send notices to the site administrator before a job listing expires." msgstr "" -#. Widget name will appear in UI -#: inc/widgets/featured-properties.php:22 -msgid "Estate: Featured Properties" +#: inc/email/class-opalestate-approve.php:17 +msgid "The Property Listing Approved: {property_name}" msgstr "" -#: inc/widgets/featured-properties.php:24 -msgid "Featured Properties widget." +#: inc/email/class-opalestate-email-notifycation.php:29 +msgid "You got a message enquiry" msgstr "" -#: inc/widgets/featured-properties.php:52 -#: templates/single-agent/featured-properties.php:19 -msgid "Featured Properties" +#: inc/email/class-opalestate-email-notifycation.php:36 +#: inc/message/class-opalestate-message.php:182 +msgid "You got a message contact" msgstr "" -#: inc/widgets/featured-properties.php:57 -#: inc/widgets/sameprice-properties.php:58 -#: inc/widgets/similar-properties.php:56 inc/widgets/profile-info.php:80 -#: inc/widgets/search-properties.php:68 inc/widgets/mortgage-calculator.php:53 -msgid "Title:" +#: inc/message/class-opalestate-message.php:246 +msgid "Email Sent successful" msgstr "" -#: inc/widgets/featured-properties.php:62 -#: inc/widgets/sameprice-properties.php:63 -#: inc/widgets/similar-properties.php:61 -msgid "Limit:" +#: inc/message/class-opalestate-message.php:247 +#: inc/message/class-opalestate-message.php:251 +msgid "Sending Message" msgstr "" -#. Widget name will appear in UI -#: inc/widgets/sameprice-properties.php:22 -msgid "Estate: Same Price" +#: inc/message/class-opalestate-message.php:505 +#: inc/message/class-opalestate-message.php:571 +#: inc/message/class-opalestate-message.php:610 +#: inc/message/class-opalestate-message.php:688 +#: inc/taxonomies/class-taxonomy-types.php:144 +#: templates/user/register-form.php:70 +msgid "Type" msgstr "" -#: inc/widgets/sameprice-properties.php:24 -msgid "Similar Properties By Same Price with configured range and Status" +#: inc/message/class-opalestate-message.php:512 +#: inc/message/class-opalestate-message.php:617 +#: inc/message/class-opalestate-message.php:694 +msgid "Property ID" msgstr "" -#: inc/widgets/sameprice-properties.php:52 -msgid "Same Price" +#: inc/message/class-opalestate-message.php:520 +#: inc/message/class-opalestate-message.php:624 +#: inc/message/class-opalestate-message.php:700 +#: templates/user/agency/agency-team.php:12 +msgid "Sender ID" msgstr "" -#: inc/widgets/sameprice-properties.php:69 -msgid "Range Price:" +#: inc/message/class-opalestate-message.php:528 +#: inc/message/class-opalestate-message.php:631 +#: inc/property/class-metabox-property-admin.php:520 +#: inc/submission/class-metabox-property-submission.php:520 +#: templates/rating/opalestate-ratings.php:240 +#: templates/user/share-search-form.php:35 +#: templates/user-search/content-savedsearch.php:12 +#: templates/user-search/render-form.php:29 +#: templates/user/agency/agency-team.php:17 +#: inc/vendors/elementor/widgets/opalestate-category-list.php:184 +#: inc/vendors/elementor/widgets/opalestate-city-list.php:184 +msgid "Name" msgstr "" -#. Widget name will appear in UI -#: inc/widgets/similar-properties.php:22 -msgid "Estate: Similar Properties" +#: inc/message/class-opalestate-message.php:554 +#: inc/message/class-opalestate-message.php:578 +#: inc/message/class-opalestate-message.php:656 +#: inc/message/class-opalestate-message.php:725 +#: templates/user/share-search-form.php:45 +msgid "Message" msgstr "" -#: inc/widgets/similar-properties.php:24 -msgid "Similar Properties By Same Types and Status Of the post" +#: inc/message/class-opalestate-message.php:706 +msgid "Schedule" msgstr "" -#: inc/widgets/similar-properties.php:51 -msgid "Similar Properties" +#: inc/message/class-opalestate-message.php:713 +msgid "Time" msgstr "" -#. Widget name will appear in UI -#: inc/widgets/profile-info.php:22 -msgid "Estate: User Menu Profile" +#: inc/property/class-metabox-property-admin.php:28 +msgid "Property Metabox" msgstr "" -#: inc/widgets/profile-info.php:24 -msgid "Display Profile information in box and menu." +#: inc/property/class-metabox-property-admin.php:53 +msgid "Prices" msgstr "" -#: inc/widgets/profile-info.php:76 -msgid "My Profile" +#: inc/property/class-metabox-property-admin.php:67 +msgid "Facility" msgstr "" -#. Widget name will appear in UI -#: inc/widgets/search-properties.php:23 -msgid "Estate: Search Properties" +#: inc/property/class-metabox-property-admin.php:75 +msgid "Floor Plan" msgstr "" -#: inc/widgets/search-properties.php:25 -msgid "Search Properties widget." +#: inc/property/class-metabox-property-admin.php:94 +#: inc/submission/class-metabox-property-submission.php:197 +msgid "Images Gallery" msgstr "" -#: inc/widgets/search-properties.php:83 -#: inc/vendors/elementor/widgets/opalestate-searchbox.php:107 -msgid "Disable Labels" +#: inc/property/class-metabox-property-admin.php:103 +msgid "Virtual Tour 360" msgstr "" -#: inc/widgets/search-properties.php:92 -#: inc/vendors/elementor/widgets/opalestate-searchbox.php:116 -msgid "Disable Search button" +#: inc/property/class-metabox-property-admin.php:108 +msgid "Manual Images 360 " msgstr "" -#: inc/widgets/search-properties.php:101 -#: inc/vendors/elementor/widgets/opalestate-searchbox.php:124 -msgid "Display Country select" +#: inc/property/class-metabox-property-admin.php:114 +msgid "Or 360° Virtual Tour" msgstr "" -#: inc/widgets/search-properties.php:110 -#: inc/vendors/elementor/widgets/opalestate-searchbox.php:136 -msgid "Display State select" +#: inc/property/class-metabox-property-admin.php:116 +#: inc/property/class-metabox-property-admin.php:562 +#: inc/submission/class-metabox-property-submission.php:214 +#: inc/submission/class-metabox-property-submission.php:564 +msgid "Input iframe to show 360° Virtual Tour." msgstr "" -#: inc/widgets/search-properties.php:119 -#: inc/vendors/elementor/widgets/opalestate-searchbox.php:147 -msgid "Display City select" +#: inc/property/class-metabox-property-admin.php:125 +#: inc/property/class-metabox-property-admin.php:129 +#: inc/submission/class-metabox-property-submission.php:219 +#: templates/single-property/attachments.php:12 +msgid "Attachments" msgstr "" -#. Widget name will appear in UI -#: inc/widgets/mortgage-calculator.php:25 -msgid "Estate: Mortgage Calculator" +#: inc/property/class-metabox-property-admin.php:134 +#: inc/submission/class-metabox-property-submission.php:227 +msgid "Select one or more files to allow download" msgstr "" -#: inc/widgets/mortgage-calculator.php:27 -msgid "Mortgage Calculator widget." +#: inc/property/class-metabox-property-admin.php:142 +msgid "Contact Member" msgstr "" -#: inc/widgets/mortgage-calculator.php:49 -msgid "Mortgage Calculator" +#: inc/property/class-metabox-property-admin.php:149 +msgid "User Assignment" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:155 +#: inc/widgets/search-properties.php:74 +#: inc/vendors/elementor/widgets/opalestate-searchbox.php:97 +msgid "Layout" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:186 +msgid "Property SKU" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:189 +msgid "Please Enter Your Property SKU" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:199 +#: inc/submission/class-metabox-property-submission.php:334 +msgid "Postal Code / Zip" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:205 +#: inc/submission/class-metabox-property-submission.php:349 +msgid "Google Map View" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:222 +#: inc/submission/class-metabox-property-submission.php:208 +msgid "" +"Input for videos, audios from Youtube, Vimeo and all supported sites by " +"WordPress. It has preview feature." +msgstr "" + +#: inc/property/class-metabox-property-admin.php:240 +#: inc/submission/class-metabox-property-submission.php:122 +msgid "Regular Price" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:242 +#: inc/property/class-metabox-property-admin.php:249 +#: inc/submission/class-metabox-property-submission.php:124 +#: inc/submission/class-metabox-property-submission.php:132 +msgid "Enter amount without currency" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:243 +#: inc/property/class-metabox-property-admin.php:526 +#: inc/submission/class-metabox-property-submission.php:526 +#: templates/search-box/search-form-v2.php:40 +#: templates/search-box/search-form-v3.php:57 +#: templates/search-box/fields/price-input.php:1 +#: templates/search-box/fields/price.php:27 +msgid "Price" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:247 +#: inc/submission/class-metabox-property-submission.php:130 +#: templates/parts/mortgage-calculator.php:156 +msgid "Sale Price" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:253 +#: inc/submission/class-metabox-property-submission.php:136 +msgid "Before Price Label (optional)" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:255 +#: inc/submission/class-metabox-property-submission.php:138 +msgid "Before Price Label (e.g. \"from\")" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:259 +#: inc/submission/class-metabox-property-submission.php:142 +msgid "After Price Label (optional)" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:261 +#: inc/submission/class-metabox-property-submission.php:144 +msgid "After Price Label (e.g. \"per month\")" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:265 +msgid "Is Price On Call" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:288 +#: inc/submission/class-metabox-property-submission.php:241 +msgid "Built year" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:291 +#: inc/submission/class-metabox-property-submission.php:244 +msgid "Enter built year" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:296 +#: inc/property/class-opalestate-search.php:432 +#: inc/submission/class-metabox-property-submission.php:248 +msgid "Parking" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:299 +#: inc/submission/class-metabox-property-submission.php:251 +msgid "Enter number of Parking" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:302 +#: inc/submission/class-metabox-property-submission.php:254 +msgid "Bedrooms" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:305 +#: inc/submission/class-metabox-property-submission.php:257 +msgid "Enter number of bedrooms" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:308 +#: inc/submission/class-metabox-property-submission.php:260 +msgid "Bathrooms" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:311 +#: inc/submission/class-metabox-property-submission.php:263 +msgid "Enter number of bathrooms" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:314 +#: inc/submission/class-metabox-property-submission.php:266 +msgid "Plot Size" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:317 +#: inc/submission/class-metabox-property-submission.php:269 +msgid "Enter size of Plot as 20x30, 20x30x40, 20x30x40x50" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:320 +#: inc/submission/class-metabox-property-submission.php:272 +msgid "Area Size" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:323 +#: inc/submission/class-metabox-property-submission.php:275 +msgid "Enter size of area in sqft" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:326 +#: inc/submission/class-metabox-property-submission.php:278 +msgid "Orientation" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:329 +#: inc/submission/class-metabox-property-submission.php:281 +msgid "Enter Orientation of property" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:332 +#: inc/submission/class-metabox-property-submission.php:284 +msgid "Living Rooms" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:335 +#: inc/submission/class-metabox-property-submission.php:287 +msgid "Enter Number of Living Rooms" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:338 +#: inc/submission/class-metabox-property-submission.php:291 +msgid "Kitchens" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:341 +#: inc/submission/class-metabox-property-submission.php:294 +msgid "Enter Number of Kitchens" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:344 +#: inc/property/class-metabox-property-admin.php:537 +#: inc/submission/class-metabox-property-submission.php:298 +#: inc/submission/class-metabox-property-submission.php:537 +msgid "Rooms" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:347 +#: inc/submission/class-metabox-property-submission.php:301 +msgid "Enter Number of Amount Rooms" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:367 +#: inc/submission/class-metabox-property-submission.php:403 +#: inc/taxonomies/class-taxonomy-labels.php:44 +#: inc/taxonomies/class-taxonomy-labels.php:54 +#: inc/vendors/elementor/widgets/opalestate-account-button.php:249 +#: inc/vendors/elementor/widgets/opalestate-searchbox.php:169 +msgid "Label" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:372 +#: inc/property/class-metabox-property-admin.php:548 +#: inc/submission/class-metabox-property-submission.php:408 +#: inc/submission/class-metabox-property-submission.php:548 +msgid "Content" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:377 +#: inc/submission/class-metabox-property-submission.php:413 +msgid "Facility {#}" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:378 +#: inc/property/class-metabox-property-admin.php:567 +#: inc/property/class-metabox-property-admin.php:636 +#: inc/submission/class-metabox-property-submission.php:414 +#: inc/submission/class-metabox-property-submission.php:493 +#: inc/submission/class-metabox-property-submission.php:569 +msgid "Add more" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:379 +#: inc/property/class-metabox-property-admin.php:568 +#: inc/property/class-metabox-property-admin.php:637 +#: inc/submission/class-metabox-property-submission.php:415 +#: inc/submission/class-metabox-property-submission.php:494 +#: inc/submission/class-metabox-property-submission.php:570 +#: templates/user/agency/agency-team.php:68 +#: inc/vendors/cmb2-plugins/custom-fields/user/user.php:59 +#: inc/vendors/cmb2-plugins/custom-fields/user/user.php:72 +msgid "Remove" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:397 +msgid "Hide Author Information" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:398 +msgid "User Author Information" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:399 +msgid "Agent Information" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:426 +msgid "Author Information" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:433 +#: inc/user/class-opalestate-user.php:319 +msgid "Agent" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:439 +#: inc/user/class-opalestate-user.php:320 +#: templates/parts/search-agency-form.php:20 +msgid "Agency" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:458 +msgid "Default User" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:472 +msgid "" +"Change to new owner of this property, which be listed in That user dashboard" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:490 +msgid "Layout Display" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:494 +#: inc/property/class-metabox-property-admin.php:501 +msgid "Select a layout to display full information of this property" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:497 +msgid "Preview Display" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:532 +#: inc/submission/class-metabox-property-submission.php:532 +#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:372 +#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:434 +msgid "Size" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:542 +#: inc/submission/class-metabox-property-submission.php:542 +msgid "Baths" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:553 +#: inc/submission/class-metabox-property-submission.php:553 +msgid "Image Preview" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:566 +#: inc/submission/class-metabox-property-submission.php:568 +msgid "Floor {#}" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:590 +#: inc/submission/class-metabox-property-submission.php:446 +#: templates/single-property/apartments.php:22 +msgid "Plot" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:597 +#: inc/submission/class-metabox-property-submission.php:454 +#: templates/single-property/apartments.php:23 +msgid "Beds" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:602 +#: inc/submission/class-metabox-property-submission.php:459 +msgid "Price from" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:607 +#: inc/submission/class-metabox-property-submission.php:464 +#: templates/single-property/apartments.php:25 +msgid "Floor" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:613 +#: inc/submission/class-metabox-property-submission.php:470 +#: templates/single-property/apartments.php:26 +msgid "Building / Address" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:618 +#: inc/submission/class-metabox-property-submission.php:475 +#: inc/taxonomies/class-taxonomy-status.php:45 +#: inc/taxonomies/class-taxonomy-status.php:55 +#: inc/taxonomies/class-taxonomy-status.php:165 +#: templates/single-property/apartments.php:27 inc/api/v1/property.php:642 +#: inc/vendors/elementor/widgets/opalestate-property-collection.php:274 +#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:263 +msgid "Status" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:622 +#: inc/submission/class-metabox-property-submission.php:478 +msgid "Available" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:623 +#: inc/submission/class-metabox-property-submission.php:479 +msgid "Unavailable" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:629 +#: inc/submission/class-metabox-property-submission.php:485 +msgid "Link" +msgstr "" + +#: inc/property/class-metabox-property-admin.php:635 +#: inc/submission/class-metabox-property-submission.php:492 +msgid "Apartment {#}" +msgstr "" + +#: inc/property/class-opalestate-posttype.php:44 +#: inc/property/class-opalestate-posttype.php:45 +#: templates/shortcodes/submission-form.php:30 +#: templates/submission/submission-form.php:16 +msgid "Add New Property" +msgstr "" + +#: inc/property/class-opalestate-posttype.php:46 +#: templates/shortcodes/submission-form.php:32 +#: templates/submission/submission-form.php:19 +msgid "Edit Property" +msgstr "" + +#: inc/property/class-opalestate-posttype.php:47 +msgid "New Property" +msgstr "" + +#: inc/property/class-opalestate-posttype.php:48 +msgid "All Properties" +msgstr "" + +#: inc/property/class-opalestate-posttype.php:49 +#: templates/user/dashboard.php:134 templates/user/property-ratings.php:91 +msgid "View Property" +msgstr "" + +#: inc/property/class-opalestate-posttype.php:50 +msgid "Search Property" +msgstr "" + +#: inc/property/class-opalestate-posttype.php:51 +msgid "No Properties found" +msgstr "" + +#: inc/property/class-opalestate-posttype.php:52 +msgid "No Properties found in Trash" +msgstr "" + +#: inc/property/class-opalestate-posttype.php:74 +msgctxt "property slug" +msgid "property" +msgstr "" + +#: inc/property/class-opalestate-posttype.php:84 +msgctxt "Expired status" +msgid "Expired" +msgstr "" + +#. %s: number of orders +#: inc/property/class-opalestate-posttype.php:90 +#, php-format +msgid "Expired (%s)" +msgid_plural "Expired (%s)" +msgstr[0] "" +msgstr[1] "" + +#: inc/property/class-opalestate-property.php:741 +msgid "ago" +msgstr "" + +#: inc/property/class-opalestate-search.php:431 +msgid "Bed Rooms" +msgstr "" + +#: inc/property/class-opalestate-search.php:433 +msgid "Bath Rooms" +msgstr "" + +#: inc/property/class-opalestate-shortcodes.php:49 +msgid "Search Properties Form" +msgstr "" + +#: inc/property/class-opalestate-shortcodes.php:51 +msgid "Search Properties Result" +msgstr "" + +#: inc/property/class-opalestate-shortcodes.php:52 +#: inc/widgets/search-properties.php:57 +msgid "Search Properties" +msgstr "" + +#: inc/property/class-opalestate-shortcodes.php:53 +msgid "Search Split Maps" +msgstr "" + +#: inc/property/class-opalestate-shortcodes.php:55 +msgid "Show Map + Search Box and Properties" +msgstr "" + +#: inc/property/class-opalestate-shortcodes.php:56 +msgid "Ajax Search Map Properties And Horizontal Search" +msgstr "" + +#: inc/property/class-opalestate-shortcodes.php:58 +msgid "Register User Form" +msgstr "" + +#: inc/property/class-opalestate-shortcodes.php:59 +msgid "Login Form" +msgstr "" + +#: inc/rating/class-opalestate-rating-features-posttype.php:52 +msgctxt "Feature plural name" +msgid "Rating Features" +msgstr "" + +#: inc/rating/class-opalestate-rating-features-posttype.php:53 +msgctxt "Feature singular name" +msgid "Rating Feature" +msgstr "" + +#: inc/rating/class-opalestate-rating-features-posttype.php:54 +msgctxt "Admin menu name" +msgid "Rating Features" +msgstr "" + +#: inc/rating/class-opalestate-rating-features-posttype.php:55 +msgid "Add rating feature" +msgstr "" + +#: inc/rating/class-opalestate-rating-features-posttype.php:56 +msgid "Add new rating feature" +msgstr "" + +#: inc/rating/class-opalestate-rating-features-posttype.php:57 +#: templates/user/content-property.php:105 +#: inc/vendors/opalmembership/membership.php:586 +msgid "Edit" +msgstr "" + +#: inc/rating/class-opalestate-rating-features-posttype.php:58 +msgid "Edit rating feature" +msgstr "" + +#: inc/rating/class-opalestate-rating-features-posttype.php:59 +msgid "New rating feature" +msgstr "" + +#: inc/rating/class-opalestate-rating-features-posttype.php:60 +msgid "View rating feature" +msgstr "" + +#: inc/rating/class-opalestate-rating-features-posttype.php:61 +msgid "Query rating features" +msgstr "" + +#: inc/rating/class-opalestate-rating-features-posttype.php:62 +msgid "No rating features found" +msgstr "" + +#: inc/rating/class-opalestate-rating-features-posttype.php:63 +msgid "No rating features found in trash" +msgstr "" + +#: inc/rating/class-opalestate-rating-features-posttype.php:64 +msgid "Parent rating features" +msgstr "" + +#: inc/rating/class-opalestate-rating-features-posttype.php:65 +msgid "Filter rating features" +msgstr "" + +#: inc/rating/class-opalestate-rating-features-posttype.php:66 +msgid "Rating Features navigation" +msgstr "" + +#: inc/rating/class-opalestate-rating-features-posttype.php:67 +msgid "Rating Features List" +msgstr "" + +#: inc/rating/class-opalestate-rating-features-posttype.php:69 +msgid "This is where store rating features are stored." +msgstr "" + +#: inc/rating/class-opalestate-rating-init.php:96 +msgid "Please rate all features." +msgstr "" + +#: inc/rating/class-opalestate-rating-init.php:102 +msgid "Please rate." +msgstr "" + +#: inc/rating/class-opalestate-rating-metabox.php:57 +msgid "Rating features" +msgstr "" + +#: inc/rating/class-opalestate-rating-metabox.php:57 +msgid "Rating" +msgstr "" + +#: inc/rating/class-opalestate-rating-metabox.php:105 +msgid "Data" +msgstr "" + +#: inc/rating/class-opalestate-rating-metabox.php:116 +#: inc/taxonomies/class-taxonomy-status.php:99 +#: inc/vendors/elementor/widgets/opalestate-agency-collection.php:223 +#: inc/vendors/elementor/widgets/opalestate-agent-collection.php:223 +#: inc/vendors/elementor/widgets/opalestate-category-list.php:193 +#: inc/vendors/elementor/widgets/opalestate-city-list.php:193 +#: inc/vendors/elementor/widgets/opalestate-property-collection.php:213 +#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:202 +msgid "Order" +msgstr "" + +#: inc/rating/class-opalestate-rating-metabox.php:117 +#: inc/taxonomies/class-taxonomy-status.php:100 +msgid "Set a priority to display" +msgstr "" + +#: inc/submission/class-metabox-property-submission.php:62 +msgid "Media" +msgstr "" + +#: inc/submission/class-metabox-property-submission.php:65 +#: inc/submission/class-metabox-property-submission.php:376 +#: inc/taxonomies/class-taxomony-amenities.php:44 +#: inc/taxonomies/class-taxomony-amenities.php:54 +#: templates/single-property/amenities.php:9 inc/api/v1/property.php:650 +msgid "Amenities" +msgstr "" + +#: inc/submission/class-metabox-property-submission.php:66 +msgid "Facilities" +msgstr "" + +#: inc/submission/class-metabox-property-submission.php:68 +msgid "Floor plans" +msgstr "" + +#: inc/submission/class-metabox-property-submission.php:98 +#: inc/vendors/elementor/widgets/opalestate-agency-collection.php:213 +#: inc/vendors/elementor/widgets/opalestate-agent-collection.php:213 +#: inc/vendors/elementor/widgets/opalestate-form-builder.php:87 +#: inc/vendors/elementor/widgets/opalestate-property-collection.php:203 +#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:192 +msgid "Title" +msgstr "" + +#: inc/submission/class-metabox-property-submission.php:147 +msgid "Statuses" +msgstr "" + +#: inc/submission/class-metabox-property-submission.php:166 +#: inc/submission/class-metabox-property-submission.php:229 +#: inc/submission/class-metabox-property-submission.php:303 +#: inc/submission/class-metabox-property-submission.php:365 +#: inc/submission/class-metabox-property-submission.php:381 +#: inc/submission/class-metabox-property-submission.php:399 +#: inc/submission/class-metabox-property-submission.php:442 +#: inc/submission/class-metabox-property-submission.php:634 +msgid "Next Step" +msgstr "" + +#: inc/submission/class-metabox-property-submission.php:186 +msgid "Featured Image" +msgstr "" + +#: inc/submission/class-metabox-property-submission.php:212 +#: templates/single-property/virtualtour.php:16 +msgid "360° Virtual Tour" +msgstr "" + +#: inc/submission/class-metabox-property-submission.php:228 +msgid "Previous Step " +msgstr "" + +#: inc/submission/class-metabox-property-submission.php:302 +#: inc/submission/class-metabox-property-submission.php:364 +#: inc/submission/class-metabox-property-submission.php:380 +#: inc/submission/class-metabox-property-submission.php:398 +#: inc/submission/class-metabox-property-submission.php:441 +#: inc/submission/class-metabox-property-submission.php:516 +#: inc/submission/class-metabox-property-submission.php:633 +msgid "Previous Step" +msgstr "" + +#: inc/submission/class-metabox-property-submission.php:315 +#: inc/taxonomies/class-taxonomy-city.php:96 +#: inc/taxonomies/class-taxonomy-locations.php:161 +#: inc/taxonomies/class-taxonomy-state.php:99 +msgid "Country" +msgstr "" + +#: inc/submission/class-metabox-property-submission.php:322 +msgid "States / Province" +msgstr "" + +#: inc/submission/class-metabox-property-submission.php:356 +msgid "Enable Google Map" +msgstr "" + +#: inc/submission/class-metabox-property-submission.php:360 +#: inc/admin/settings/3rd_party.php:26 +msgid "Google Map" msgstr "" #: inc/submission/class-opalestate-submission.php:93 msgid "Submission Form" msgstr "" +#: inc/submission/class-opalestate-submission.php:97 inc/user/functions.php:242 +#: templates/single-agency/properties.php:15 +#: templates/single-agent/properties.php:10 +msgid "My Properties" +msgstr "" + #: inc/submission/class-opalestate-submission.php:110 msgid "Submission" msgstr "" @@ -4452,123 +3731,879 @@ msgstr "" msgid "A metabox with the specified 'metabox_id' doesn't exist." msgstr "" -#: inc/submission/class-opalestate-submission.php:472 +#: inc/submission/class-opalestate-submission.php:469 msgid "Please enter data for all require fields before submitting" msgstr "" -#: inc/submission/class-opalestate-submission.php:474 -#: inc/submission/class-opalestate-submission.php:547 -#: inc/submission/class-opalestate-submission.php:554 -#: inc/submission/class-opalestate-submission.php:561 +#: inc/submission/class-opalestate-submission.php:471 +#: inc/submission/class-opalestate-submission.php:544 +#: inc/submission/class-opalestate-submission.php:551 +#: inc/submission/class-opalestate-submission.php:558 #: inc/vendors/opalmembership/membership.php:502 msgid "Submission Information" msgstr "" -#: inc/submission/class-opalestate-submission.php:523 +#: inc/submission/class-opalestate-submission.php:520 msgid "Property has been successfully updated." msgstr "" -#: inc/submission/class-opalestate-submission.php:529 +#: inc/submission/class-opalestate-submission.php:526 msgid "The property has updated completed with new information" msgstr "" -#: inc/submission/class-opalestate-submission.php:533 +#: inc/submission/class-opalestate-submission.php:530 msgid "You have submitted the property successful" msgstr "" -#: inc/submission/class-opalestate-submission.php:553 +#: inc/submission/class-opalestate-submission.php:550 msgid "" "Currently, your account was blocked, please keep contact admin to resolve " "this!." msgstr "" -#: inc/submission/class-opalestate-submission.php:560 +#: inc/submission/class-opalestate-submission.php:557 msgid "Sorry! Your submitted datcould not save a at this time" msgstr "" -#: inc/submission/class-opalestate-submission.php:697 +#: inc/submission/class-opalestate-submission.php:690 msgid "Property has been successfully removed." msgstr "" -#: inc/submission/class-opalestate-submission.php:699 +#: inc/submission/class-opalestate-submission.php:692 msgid "An error occured when removing an item." msgstr "" -#: inc/submission/class-metabox-property-submission.php:62 -msgid "Media" +#: inc/taxonomies/class-taxomony-amenities.php:45 +msgid "Properties By Amenity" msgstr "" -#: inc/submission/class-metabox-property-submission.php:66 -msgid "Facilities" +#: inc/taxonomies/class-taxomony-amenities.php:46 +msgid "Search Amenities" msgstr "" -#: inc/submission/class-metabox-property-submission.php:68 -msgid "Floor plans" +#: inc/taxonomies/class-taxomony-amenities.php:47 +msgid "All Amenities" msgstr "" -#: inc/submission/class-metabox-property-submission.php:98 -#: inc/vendors/elementor/widgets/opalestate-form-builder.php:87 -#: inc/vendors/elementor/widgets/opalestate-agent-collection.php:213 -#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:192 -#: inc/vendors/elementor/widgets/opalestate-property-collection.php:203 -#: inc/vendors/elementor/widgets/opalestate-agency-collection.php:213 -msgid "Title" +#: inc/taxonomies/class-taxomony-amenities.php:48 +msgid "Parent Amenity" msgstr "" -#: inc/submission/class-metabox-property-submission.php:147 -msgid "Statuses" +#: inc/taxonomies/class-taxomony-amenities.php:49 +msgid "Parent Amenity:" msgstr "" -#: inc/submission/class-metabox-property-submission.php:166 -#: inc/submission/class-metabox-property-submission.php:229 -#: inc/submission/class-metabox-property-submission.php:303 -#: inc/submission/class-metabox-property-submission.php:365 -#: inc/submission/class-metabox-property-submission.php:381 -#: inc/submission/class-metabox-property-submission.php:399 -#: inc/submission/class-metabox-property-submission.php:442 -#: inc/submission/class-metabox-property-submission.php:634 -msgid "Next Step" +#: inc/taxonomies/class-taxomony-amenities.php:50 +msgid "Edit Amenity" msgstr "" -#: inc/submission/class-metabox-property-submission.php:186 -msgid "Featured Image" +#: inc/taxonomies/class-taxomony-amenities.php:51 +msgid "Update Amenity" msgstr "" -#: inc/submission/class-metabox-property-submission.php:212 -#: templates/single-property/virtualtour.php:16 -msgid "360° Virtual Tour" +#: inc/taxonomies/class-taxomony-amenities.php:52 +msgid "Add New Amenity" msgstr "" -#: inc/submission/class-metabox-property-submission.php:228 -msgid "Previous Step " +#: inc/taxonomies/class-taxomony-amenities.php:53 +msgid "New Amenity" msgstr "" -#: inc/submission/class-metabox-property-submission.php:302 -#: inc/submission/class-metabox-property-submission.php:364 -#: inc/submission/class-metabox-property-submission.php:380 -#: inc/submission/class-metabox-property-submission.php:398 -#: inc/submission/class-metabox-property-submission.php:441 -#: inc/submission/class-metabox-property-submission.php:516 -#: inc/submission/class-metabox-property-submission.php:633 -msgid "Previous Step" +#: inc/taxonomies/class-taxomony-amenities.php:61 +msgctxt "slug" +msgid "amenity" msgstr "" -#: inc/submission/class-metabox-property-submission.php:322 -msgid "States / Province" +#: inc/taxonomies/class-taxomony-amenities.php:91 +#: inc/taxonomies/class-taxonomy-types.php:49 +msgid "Type Metabox" msgstr "" -#: inc/submission/class-metabox-property-submission.php:356 -msgid "Enable Google Map" +#: inc/taxonomies/class-taxomony-amenities.php:97 +#: inc/vendors/elementor/widgets/opalestate-account-button.php:284 +msgid "Icon" msgstr "" -#: inc/submission/class-metabox-property-submission.php:360 -#: inc/admin/settings/3rd_party.php:26 -msgid "Google Map" +#: inc/taxonomies/class-taxomony-amenities.php:98 +msgid "Select an icon." msgstr "" -#: templates/messages/request-reviewing-form.php:10 -#: templates/messages/request-reviewing-form.php:11 -msgid "Send now" +#: inc/taxonomies/class-taxomony-amenities.php:104 +msgid "Image Icon" +msgstr "" + +#: inc/taxonomies/class-taxomony-amenities.php:105 +msgid "Select an image icon (SVG, PNG or JPEG)." +msgstr "" + +#: inc/taxonomies/class-taxonomy-categories.php:43 inc/api/v1/property.php:626 +#: inc/vendors/elementor/widgets/opalestate-agency-collection.php:236 +#: inc/vendors/elementor/widgets/opalestate-agent-collection.php:236 +#: inc/vendors/elementor/widgets/opalestate-category-list.php:206 +#: inc/vendors/elementor/widgets/opalestate-property-collection.php:226 +#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:215 +msgid "Categories" +msgstr "" + +#: inc/taxonomies/class-taxonomy-categories.php:45 +msgid "New Category" +msgstr "" + +#: inc/taxonomies/class-taxonomy-categories.php:54 +msgctxt "slug" +msgid "property-category" +msgstr "" + +#: inc/taxonomies/class-taxonomy-categories.php:71 +#: inc/taxonomies/class-taxonomy-labels.php:82 +#: inc/taxonomies/class-taxonomy-status.php:79 +msgid "Category Metabox" +msgstr "" + +#: inc/taxonomies/class-taxonomy-categories.php:77 +#: inc/taxonomies/class-taxonomy-city.php:85 +#: inc/taxonomies/class-taxonomy-locations.php:91 +#: inc/taxonomies/class-taxonomy-state.php:88 +#: inc/taxonomies/class-taxonomy-types.php:66 +msgid "Image" +msgstr "" + +#: inc/taxonomies/class-taxonomy-categories.php:78 +msgid "Category image" +msgstr "" + +#: inc/taxonomies/class-taxonomy-categories.php:107 +msgid "Select Category" +msgstr "" + +#: inc/taxonomies/class-taxonomy-city.php:45 +#: inc/taxonomies/class-taxonomy-city.php:55 +msgid "Cities / Towns" +msgstr "" + +#: inc/taxonomies/class-taxonomy-city.php:46 +msgid "Properties By City" +msgstr "" + +#: inc/taxonomies/class-taxonomy-city.php:47 +msgid "Search Cities / Towns" +msgstr "" + +#: inc/taxonomies/class-taxonomy-city.php:48 +msgid "All Cities / Town" +msgstr "" + +#: inc/taxonomies/class-taxonomy-city.php:49 +msgid "Parent City" +msgstr "" + +#: inc/taxonomies/class-taxonomy-city.php:50 +msgid "Parent City:" +msgstr "" + +#: inc/taxonomies/class-taxonomy-city.php:51 +msgid "Edit City" +msgstr "" + +#: inc/taxonomies/class-taxonomy-city.php:52 +msgid "Update City" +msgstr "" + +#: inc/taxonomies/class-taxonomy-city.php:53 +msgid "Add New City" +msgstr "" + +#: inc/taxonomies/class-taxonomy-city.php:54 +msgid "New City" +msgstr "" + +#: inc/taxonomies/class-taxonomy-city.php:62 +msgid "city" +msgstr "" + +#: inc/taxonomies/class-taxonomy-city.php:79 +msgid "City Metabox" +msgstr "" + +#: inc/taxonomies/class-taxonomy-city.php:86 +msgid "City image" +msgstr "" + +#: inc/taxonomies/class-taxonomy-city.php:97 +#: inc/taxonomies/class-taxonomy-state.php:100 +msgid "Select one, to add new you create in countries of estate panel" +msgstr "" + +#: inc/taxonomies/class-taxonomy-city.php:105 +msgid "Select one, to add new you create in City/Town of estate panel" +msgstr "" + +#: inc/taxonomies/class-taxonomy-city.php:154 inc/api/v1/property.php:618 +msgid "City" +msgstr "" + +#: inc/taxonomies/class-taxonomy-labels.php:45 +msgid "Properties By Label" +msgstr "" + +#: inc/taxonomies/class-taxonomy-labels.php:46 +msgid "Search Label" +msgstr "" + +#: inc/taxonomies/class-taxonomy-labels.php:47 +msgid "All Label" +msgstr "" + +#: inc/taxonomies/class-taxonomy-labels.php:48 +msgid "Parent Label" +msgstr "" + +#: inc/taxonomies/class-taxonomy-labels.php:49 +msgid "Parent Label:" +msgstr "" + +#: inc/taxonomies/class-taxonomy-labels.php:50 +msgid "Edit Label" +msgstr "" + +#: inc/taxonomies/class-taxonomy-labels.php:51 +msgid "Update Label" +msgstr "" + +#: inc/taxonomies/class-taxonomy-labels.php:52 +msgid "Add New Label" +msgstr "" + +#: inc/taxonomies/class-taxonomy-labels.php:53 +msgid "New Label" +msgstr "" + +#: inc/taxonomies/class-taxonomy-labels.php:61 +msgid "property-label" +msgstr "" + +#: inc/taxonomies/class-taxonomy-labels.php:87 +#: inc/taxonomies/class-taxonomy-status.php:85 +msgid "Background" +msgstr "" + +#: inc/taxonomies/class-taxonomy-labels.php:88 +#: inc/taxonomies/class-taxonomy-status.php:86 +msgid "Set background of label" +msgstr "" + +#: inc/taxonomies/class-taxonomy-labels.php:93 +#: inc/taxonomies/class-taxonomy-status.php:92 +#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:392 +#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:454 +#: inc/vendors/elementor/widgets/opalestate-account-button.php:257 +#: inc/vendors/elementor/widgets/opalestate-searchbox.php:186 +#: inc/vendors/elementor/widgets/opalestate-searchbox.php:215 +#: inc/vendors/elementor/widgets/opalestate-searchbox.php:241 +#: inc/vendors/elementor/widgets/opalestate-searchbox.php:306 +#: inc/vendors/elementor/widgets/opalestate-searchbox.php:347 +msgid "Color" +msgstr "" + +#: inc/taxonomies/class-taxonomy-labels.php:94 +msgid "Set color of text" +msgstr "" + +#: inc/taxonomies/class-taxonomy-labels.php:100 +msgid "Image Logo" +msgstr "" + +#: inc/taxonomies/class-taxonomy-labels.php:101 +msgid "Or Using Image Logo without using text" +msgstr "" + +#: inc/taxonomies/class-taxonomy-labels.php:140 +msgid "Select Label" +msgstr "" + +#: inc/taxonomies/class-taxonomy-locations.php:44 +#: inc/taxonomies/class-taxonomy-locations.php:54 +msgid "Countries" +msgstr "" + +#: inc/taxonomies/class-taxonomy-locations.php:45 +msgid "Properties By Country" +msgstr "" + +#: inc/taxonomies/class-taxonomy-locations.php:46 +msgid "Search Countries" +msgstr "" + +#: inc/taxonomies/class-taxonomy-locations.php:47 +msgid "All Countries" +msgstr "" + +#: inc/taxonomies/class-taxonomy-locations.php:48 +msgid "Parent Country" +msgstr "" + +#: inc/taxonomies/class-taxonomy-locations.php:49 +msgid "Parent Country:" +msgstr "" + +#: inc/taxonomies/class-taxonomy-locations.php:50 +msgid "Edit Country" +msgstr "" + +#: inc/taxonomies/class-taxonomy-locations.php:51 +msgid "Update Country" +msgstr "" + +#: inc/taxonomies/class-taxonomy-locations.php:52 +msgid "Add New Country" +msgstr "" + +#: inc/taxonomies/class-taxonomy-locations.php:53 +msgid "New Country" +msgstr "" + +#: inc/taxonomies/class-taxonomy-locations.php:61 +msgid "location" +msgstr "" + +#: inc/taxonomies/class-taxonomy-locations.php:85 +msgid "Country Metabox" +msgstr "" + +#: inc/taxonomies/class-taxonomy-locations.php:92 +msgid "Country image" +msgstr "" + +#: inc/taxonomies/class-taxonomy-locations.php:127 +#: inc/taxonomies/class-taxonomy-locations.php:147 +msgid "Select Country" +msgstr "" + +#: inc/taxonomies/class-taxonomy-state.php:44 +#: inc/taxonomies/class-taxonomy-state.php:54 +msgid "States / Provinces" +msgstr "" + +#: inc/taxonomies/class-taxonomy-state.php:45 +msgid "Properties By State" +msgstr "" + +#: inc/taxonomies/class-taxonomy-state.php:46 +msgid "Search States" +msgstr "" + +#: inc/taxonomies/class-taxonomy-state.php:47 +msgid "All States / Province" +msgstr "" + +#: inc/taxonomies/class-taxonomy-state.php:48 +msgid "Parent State" +msgstr "" + +#: inc/taxonomies/class-taxonomy-state.php:49 +msgid "Parent State:" +msgstr "" + +#: inc/taxonomies/class-taxonomy-state.php:50 +msgid "Edit State" +msgstr "" + +#: inc/taxonomies/class-taxonomy-state.php:51 +msgid "Update State" +msgstr "" + +#: inc/taxonomies/class-taxonomy-state.php:52 +msgid "Add New State" +msgstr "" + +#: inc/taxonomies/class-taxonomy-state.php:53 +msgid "New State" +msgstr "" + +#: inc/taxonomies/class-taxonomy-state.php:61 +msgid "state" +msgstr "" + +#: inc/taxonomies/class-taxonomy-state.php:82 +msgid "State Metabox" +msgstr "" + +#: inc/taxonomies/class-taxonomy-state.php:89 +msgid "State image" +msgstr "" + +#: inc/taxonomies/class-taxonomy-state.php:160 inc/api/v1/property.php:610 +msgid "State" +msgstr "" + +#: inc/taxonomies/class-taxonomy-status.php:46 +msgid "Properties By Status" +msgstr "" + +#: inc/taxonomies/class-taxonomy-status.php:47 +msgid "Search Status" +msgstr "" + +#: inc/taxonomies/class-taxonomy-status.php:48 +msgid "All Status" +msgstr "" + +#: inc/taxonomies/class-taxonomy-status.php:49 +msgid "Parent Status" +msgstr "" + +#: inc/taxonomies/class-taxonomy-status.php:50 +msgid "Parent Status:" +msgstr "" + +#: inc/taxonomies/class-taxonomy-status.php:51 +msgid "Edit Status" +msgstr "" + +#: inc/taxonomies/class-taxonomy-status.php:52 +msgid "Update Status" +msgstr "" + +#: inc/taxonomies/class-taxonomy-status.php:53 +msgid "Add New Status" +msgstr "" + +#: inc/taxonomies/class-taxonomy-status.php:54 +msgid "New Status" +msgstr "" + +#: inc/taxonomies/class-taxonomy-status.php:61 +msgid "status" +msgstr "" + +#: inc/taxonomies/class-taxonomy-status.php:93 +msgid "Set background of text" +msgstr "" + +#: inc/taxonomies/class-taxonomy-status.php:153 +msgid "Select Status" +msgstr "" + +#: inc/taxonomies/class-taxonomy-types.php:55 +msgid "Custom Icon Marker" +msgstr "" + +#: inc/taxonomies/class-taxonomy-types.php:56 +msgid "This image will display in google map" +msgstr "" + +#: inc/taxonomies/class-taxonomy-types.php:67 +msgid "Type image" +msgstr "" + +#: inc/taxonomies/class-taxonomy-types.php:83 +msgid "Properties By Type" +msgstr "" + +#: inc/taxonomies/class-taxonomy-types.php:84 +msgid "Search Types" +msgstr "" + +#: inc/taxonomies/class-taxonomy-types.php:85 +msgid "All Types" +msgstr "" + +#: inc/taxonomies/class-taxonomy-types.php:86 +msgid "Parent Type" +msgstr "" + +#: inc/taxonomies/class-taxonomy-types.php:87 +msgid "Parent Type:" +msgstr "" + +#: inc/taxonomies/class-taxonomy-types.php:88 +msgid "Edit Type" +msgstr "" + +#: inc/taxonomies/class-taxonomy-types.php:89 +msgid "Update Type" +msgstr "" + +#: inc/taxonomies/class-taxonomy-types.php:90 +msgid "Add New Type" +msgstr "" + +#: inc/taxonomies/class-taxonomy-types.php:91 +msgid "New Type" +msgstr "" + +#: inc/taxonomies/class-taxonomy-types.php:99 +msgid "type" +msgstr "" + +#: inc/taxonomies/class-taxonomy-types.php:132 +msgid "Select Type" +msgstr "" + +#: inc/user/class-opalestate-user-form-handler.php:51 +#: inc/user/class-opalestate-user-form-handler.php:56 +#: inc/user/class-opalestate-user-form-handler.php:65 +#: inc/user/class-opalestate-user-form-handler.php:76 +#: inc/user/class-opalestate-user-form-handler.php:168 +#: inc/user/class-opalestate-user-form-handler.php:173 +#: inc/user/class-opalestate-user-form-handler.php:180 +#: inc/user/class-opalestate-user-form-handler.php:187 +#: inc/user/class-opalestate-user-form-handler.php:190 +#: inc/user/class-opalestate-user-form-handler.php:199 +msgid "ERROR" +msgstr "" + +#: inc/user/class-opalestate-user-form-handler.php:56 +#: inc/user/class-opalestate-user-form-handler.php:173 +msgid "Username is required." +msgstr "" + +#: inc/user/class-opalestate-user-form-handler.php:65 +msgid "A user could not be found with this email address." +msgstr "" + +#: inc/user/class-opalestate-user-form-handler.php:76 +#: inc/user/class-opalestate-user-form-handler.php:187 +msgid "Password is required." +msgstr "" + +#: inc/user/class-opalestate-user-form-handler.php:102 +msgid "Logged successfully, welcome back!" +msgstr "" + +#: inc/user/class-opalestate-user-form-handler.php:180 +msgid "Email is required." +msgstr "" + +#: inc/user/class-opalestate-user-form-handler.php:190 +msgid "Re-Password is not match." +msgstr "" + +#: inc/user/class-opalestate-user-form-handler.php:258 +msgid "Enter an username or e-mail address." +msgstr "" + +#: inc/user/class-opalestate-user-form-handler.php:264 +msgid "There is no user registered with that email address." +msgstr "" + +#: inc/user/class-opalestate-user-form-handler.php:270 +msgid "There is no user registered with that username." +msgstr "" + +#: inc/user/class-opalestate-user-form-handler.php:273 +msgid "Invalid username or e-mail address." +msgstr "" + +#: inc/user/class-opalestate-user-form-handler.php:297 +msgid "Your new password" +msgstr "" + +#: inc/user/class-opalestate-user-form-handler.php:300 +msgid "Your new password is: " +msgstr "" + +#: inc/user/class-opalestate-user-form-handler.php:309 +msgid "Check your email address for you new password." +msgstr "" + +#: inc/user/class-opalestate-user-form-handler.php:311 +msgid "System is unable to send you mail containg your new password." +msgstr "" + +#: inc/user/class-opalestate-user-form-handler.php:314 +msgid "Oops! Something went wrong while updating your account." +msgstr "" + +#: inc/user/class-opalestate-user-search.php:144 +msgid "Saved this search successful." +msgstr "" + +#: inc/user/class-opalestate-user-search.php:146 +msgid "You saved this search" +msgstr "" + +#: inc/user/class-opalestate-user-search.php:149 +msgid "Please sign in to save this search." +msgstr "" + +#: inc/user/class-opalestate-user-search.php:195 +msgid "Saved Search" +msgstr "" + +#: inc/user/class-opalestate-user.php:57 +msgid "User Profile" +msgstr "" + +#: inc/user/class-opalestate-user.php:200 +#, php-format +msgid "" +"This user has role Opal Estate Agency and click here to update Agency profile" +msgstr "" + +#: inc/user/class-opalestate-user.php:211 +#, php-format +msgid "" +"This user has role Opal Estate Agent and click here to update Agent profile" +msgstr "" + +#: inc/user/class-opalestate-user.php:293 +msgid "" +"Your account was blocked to use the submission form, so you could not submit " +"any property." +msgstr "" + +#: inc/user/class-opalestate-user.php:305 +msgid "Your account is blocked, you could not complete this action" +msgstr "" + +#: inc/user/class-opalestate-user.php:318 +msgid "Subscriber" +msgstr "" + +#: inc/user/class-opalestate-user.php:524 +msgid "Found a problem while updating" +msgstr "" + +#: inc/user/class-opalestate-user.php:535 +msgid "Passwords fields are not empty" +msgstr "" + +#: inc/user/class-opalestate-user.php:541 +msgid "New password is not same confirm password" +msgstr "" + +#: inc/user/class-opalestate-user.php:551 +msgid "Password Updated" +msgstr "" + +#: inc/user/class-opalestate-user.php:553 +msgid "Old password is not correct" +msgstr "" + +#: inc/user/class-opalestate-user.php:618 +msgid "Old Password" +msgstr "" + +#: inc/user/class-opalestate-user.php:623 +msgid "Please enter your old password" +msgstr "" + +#: inc/user/class-opalestate-user.php:627 +msgid "New Password" +msgstr "" + +#: inc/user/class-opalestate-user.php:632 +msgid "Please enter your new password." +msgstr "" + +#: inc/user/class-opalestate-user.php:636 +msgid "Confirm Password" +msgstr "" + +#: inc/user/class-opalestate-user.php:641 +msgid "Please enter your confirm password." +msgstr "" + +#: inc/user/functions.php:173 +msgid "Log out" +msgstr "" + +#: inc/user/functions.php:187 +#: inc/vendors/elementor/widgets/opalestate-account-button.php:551 +msgid "Dashboard" +msgstr "" + +#: inc/user/functions.php:195 +msgid "Personal Information" +msgstr "" + +#: inc/user/functions.php:204 +msgid "Favorite" +msgstr "" + +#: inc/user/functions.php:222 templates/user/read-messages.php:7 +msgid "Messages" +msgstr "" + +#: inc/user/functions.php:231 +msgid "Submit Property" +msgstr "" + +#: inc/user/functions.php:270 +msgid "An account is already registered with your email address. Please login." +msgstr "" + +#: inc/user/functions.php:275 +msgid "Please enter a valid account username." +msgstr "" + +#: inc/user/functions.php:279 +msgid "Username is already exists." +msgstr "" + +#: inc/user/functions.php:284 +msgid "Password is requried." +msgstr "" + +#. Widget name will appear in UI +#: inc/widgets/featured-properties.php:22 +msgid "Estate: Featured Properties" +msgstr "" + +#: inc/widgets/featured-properties.php:24 +msgid "Featured Properties widget." +msgstr "" + +#: inc/widgets/featured-properties.php:52 +#: templates/single-agent/featured-properties.php:19 +msgid "Featured Properties" +msgstr "" + +#: inc/widgets/featured-properties.php:57 +#: inc/widgets/mortgage-calculator.php:53 inc/widgets/profile-info.php:80 +#: inc/widgets/sameprice-properties.php:58 inc/widgets/search-properties.php:68 +#: inc/widgets/similar-properties.php:56 +msgid "Title:" +msgstr "" + +#: inc/widgets/featured-properties.php:62 +#: inc/widgets/sameprice-properties.php:63 +#: inc/widgets/similar-properties.php:61 +msgid "Limit:" +msgstr "" + +#. Widget name will appear in UI +#: inc/widgets/mortgage-calculator.php:25 +msgid "Estate: Mortgage Calculator" +msgstr "" + +#: inc/widgets/mortgage-calculator.php:27 +msgid "Mortgage Calculator widget." +msgstr "" + +#: inc/widgets/mortgage-calculator.php:49 +msgid "Mortgage Calculator" +msgstr "" + +#. Widget name will appear in UI +#: inc/widgets/profile-info.php:22 +msgid "Estate: User Menu Profile" +msgstr "" + +#: inc/widgets/profile-info.php:24 +msgid "Display Profile information in box and menu." +msgstr "" + +#: inc/widgets/profile-info.php:76 +msgid "My Profile" +msgstr "" + +#. Widget name will appear in UI +#: inc/widgets/sameprice-properties.php:22 +msgid "Estate: Same Price" +msgstr "" + +#: inc/widgets/sameprice-properties.php:24 +msgid "Similar Properties By Same Price with configured range and Status" +msgstr "" + +#: inc/widgets/sameprice-properties.php:52 +msgid "Same Price" +msgstr "" + +#: inc/widgets/sameprice-properties.php:69 +msgid "Range Price:" +msgstr "" + +#. Widget name will appear in UI +#: inc/widgets/search-properties.php:23 +msgid "Estate: Search Properties" +msgstr "" + +#: inc/widgets/search-properties.php:25 +msgid "Search Properties widget." +msgstr "" + +#: inc/widgets/search-properties.php:83 +#: inc/vendors/elementor/widgets/opalestate-searchbox.php:107 +msgid "Disable Labels" +msgstr "" + +#: inc/widgets/search-properties.php:92 +#: inc/vendors/elementor/widgets/opalestate-searchbox.php:116 +msgid "Disable Search button" +msgstr "" + +#: inc/widgets/search-properties.php:101 +#: inc/vendors/elementor/widgets/opalestate-searchbox.php:124 +msgid "Display Country select" +msgstr "" + +#: inc/widgets/search-properties.php:110 +#: inc/vendors/elementor/widgets/opalestate-searchbox.php:136 +msgid "Display State select" +msgstr "" + +#: inc/widgets/search-properties.php:119 +#: inc/vendors/elementor/widgets/opalestate-searchbox.php:147 +msgid "Display City select" +msgstr "" + +#. Widget name will appear in UI +#: inc/widgets/similar-properties.php:22 +msgid "Estate: Similar Properties" +msgstr "" + +#: inc/widgets/similar-properties.php:24 +msgid "Similar Properties By Same Types and Status Of the post" +msgstr "" + +#: inc/widgets/similar-properties.php:51 +msgid "Similar Properties" +msgstr "" + +#. 1: number of properties +#: templates/elementor-templates/opalestate-category-list.php:50 +#: templates/elementor-templates/opalestate-city-list.php:50 +#, php-format +msgctxt "count properties" +msgid "%1$s Property" +msgid_plural "%1$s Properties" +msgstr[0] "" +msgstr[1] "" + +#: templates/elementor-templates/opalestate-office-agent-search.php:14 +msgid "Find An Agent" +msgstr "" + +#: templates/elementor-templates/opalestate-office-agent-search.php:19 +msgid "Find An Agency" +msgstr "" + +#: templates/emails/publish_property.php:14 +msgid "URL" +msgstr "" + +#: templates/messages/contact-form.php:13 +msgid "Contact Me" +msgstr "" + +#: templates/messages/contact-form.php:37 +#: templates/messages/enquiry-form.php:27 +#: templates/messages/enquiry-form.php:43 +#: templates/user/share-search-form.php:50 +#: templates/user-search/render-form.php:33 +msgid " Processing" +msgstr "" + +#: templates/messages/contact-form.php:37 +#: templates/messages/enquiry-form.php:28 +#: templates/messages/enquiry-form.php:44 +#: templates/user/share-search-form.php:50 +msgid "Send message" msgstr "" #: templates/messages/enquiry-form.php:8 @@ -4580,23 +4615,148 @@ msgstr "" msgid "Enquire about property" msgstr "" -#: templates/messages/enquiry-form.php:27 -#: templates/messages/enquiry-form.php:43 -#: templates/messages/contact-form.php:37 -#: templates/user/share-search-form.php:50 -#: templates/user-search/render-form.php:33 -msgid " Processing" +#: templates/messages/request-reviewing-form.php:10 +#: templates/messages/request-reviewing-form.php:11 +msgid "Send now" msgstr "" -#: templates/messages/enquiry-form.php:28 -#: templates/messages/enquiry-form.php:44 -#: templates/messages/contact-form.php:37 -#: templates/user/share-search-form.php:50 -msgid "Send message" +#: templates/parts/archive-simple-bars.php:6 +#: templates/shortcodes/ajax-map-search-result.php:22 +#: templates/shortcodes/search-properties-result.php:28 +#, php-format +msgid "Found %s Properties" msgstr "" -#: templates/messages/contact-form.php:13 -msgid "Contact Me" +#: templates/parts/has-warning.php:3 +msgid "" +"Hi! you could not edit/create a property at this time, you have not " +"permission to do." +msgstr "" + +#: templates/parts/membership-pricing-info.php:12 +#: templates/parts/membership-pricing-info.php:14 +msgid " Listings" +msgstr "" + +#: templates/parts/membership-pricing-info.php:14 +#: templates/parts/membership-pricing-info.php:23 +#: inc/vendors/opalmembership/membership.php:571 +#: inc/vendors/opalmembership/membership.php:572 +msgid "Unlimited" +msgstr "" + +#: templates/parts/membership-pricing-info.php:21 +#: templates/parts/membership-pricing-info.php:23 +msgid " Featured" +msgstr "" + +#: templates/parts/membership-warning.php:3 +msgid "" +"Your package has 0 left listing, you could not add any more. Please upgrade " +"now" +msgstr "" + +#: templates/parts/membership-warning.php:4 +msgid "Click to this link to see plans" +msgstr "" + +#: templates/parts/mortgage-calculator.php:107 +msgid "Mortgage Payment Calculator" +msgstr "" + +#: templates/parts/mortgage-calculator.php:129 +msgid "Your payment" +msgstr "" + +#: templates/parts/mortgage-calculator.php:133 +msgid "month" +msgstr "" + +#: templates/parts/mortgage-calculator.php:136 +msgid "Loan Amount" +msgstr "" + +#: templates/parts/mortgage-calculator.php:143 +msgid "Your price" +msgstr "" + +#: templates/parts/mortgage-calculator.php:144 +msgid "Your deposit" +msgstr "" + +#: templates/parts/mortgage-calculator.php:145 +msgid "Your interest" +msgstr "" + +#: templates/parts/mortgage-calculator.php:161 +msgid "Deposit" +msgstr "" + +#: templates/parts/mortgage-calculator.php:167 +msgid "Annual Interest" +msgstr "" + +#: templates/parts/mortgage-calculator.php:173 +msgid "Years" +msgstr "" + +#: templates/parts/mortgage-calculator.php:178 +msgid "" +"All calculation are based on tentative and estimated figure and shall not " +"replace any financial advice" +msgstr "" + +#: templates/parts/not-allowed.php:8 +msgid "You are not allowed to access this page." +msgstr "" + +#: templates/parts/property-categories.php:7 +msgid "Categories:" +msgstr "" + +#: templates/parts/property-loop-price.php:15 +msgid "Call to Price" +msgstr "" + +#: templates/parts/property-loop-price.php:34 +msgid "Contact Property" +msgstr "" + +#: templates/parts/property-types.php:7 +msgid "Types:" +msgstr "" + +#: templates/parts/search-agency-form-address.php:16 +#: templates/parts/search-agents-form-address.php:16 +#: templates/parts/search-agents-form.php:20 +msgid "Find an experienced agent with:" +msgstr "" + +#: templates/parts/search-agency-form-address.php:19 +#: templates/parts/search-agents-form-address.php:19 +#: templates/parts/search-agents-form.php:23 +msgid "Who sale between:" +msgstr "" + +#: templates/parts/search-agency-form-address.php:37 +#: templates/parts/search-agency-form.php:28 +#: templates/parts/search-agents-form-address.php:36 +#: templates/parts/search-agents-form.php:55 +#: templates/shortcodes/ajax-map-quick-search.php:23 +#: inc/admin/settings/property.php:22 +#: templates/search-box/fields/submit-button.php:2 +msgid "Search" +msgstr "" + +#: templates/parts/search-agency-form.php:21 +msgid "Enter Agency Name" +msgstr "" + +#: templates/parts/search-agents-form.php:46 +#: templates/shortcodes/ajax-map-search.php:63 +#: templates/single-property/floor-plans.php:42 +#: templates/single-property/meta.php:13 templates/single-property/price.php:9 +msgid "Price:" msgstr "" #: templates/rating/opalestate-ratings.php:67 @@ -4706,227 +4866,6 @@ msgstr "" msgid "Your review is awaiting approval" msgstr "" -#: templates/single-agent/author-box.php:34 -msgid "Agent details" -msgstr "" - -#: templates/single-agent/author-box.php:129 -msgid "View Profile" -msgstr "" - -#: templates/emails/publish_property.php:14 -msgid "URL" -msgstr "" - -#. 1: number of properties -#: templates/elementor-templates/opalestate-category-list.php:50 -#: templates/elementor-templates/opalestate-city-list.php:50 -#, php-format -msgctxt "count properties" -msgid "%1$s Property" -msgid_plural "%1$s Properties" -msgstr[0] "" -msgstr[1] "" - -#: templates/elementor-templates/opalestate-office-agent-search.php:14 -msgid "Find An Agent" -msgstr "" - -#: templates/elementor-templates/opalestate-office-agent-search.php:19 -msgid "Find An Agency" -msgstr "" - -#: templates/user/share-search-form.php:8 -#: templates/user-search/render-form.php:8 -#, php-format -msgid "" -"Hey there! I saved this search on %s, please check out these homes that are " -"listed. Remember to save this search to be first to catch any new listings." -msgstr "" - -#: templates/user/share-search-form.php:14 -msgid "Share this Search" -msgstr "" - -#: templates/user/share-search-form.php:23 -msgid "Are you searching with anyone? Share this search." -msgstr "" - -#: templates/user/share-search-form.php:31 -msgid "Friend Email" -msgstr "" - -#: templates/user/share-search-form.php:40 -msgid "E-mail" -msgstr "" - -#: templates/user/dashboard.php:12 -msgid "Published Listings" -msgstr "" - -#: templates/user/dashboard.php:19 -msgid "Pending Properties" -msgstr "" - -#: templates/user/dashboard.php:26 -msgid "Featured Listings" -msgstr "" - -#: templates/user/dashboard.php:56 -msgid "View All" -msgstr "" - -#: templates/user/dashboard.php:61 templates/user/property-ratings.php:11 -msgid "You have not written any reviews yet." -msgstr "" - -#: templates/user/content-property.php:74 -msgid "Set Featured" -msgstr "" - -#: templates/user/content-property.php:90 -msgid "Are you sure you wish to delete?" -msgstr "" - -#: templates/user/content-property.php:91 -msgid "Delete Property" -msgstr "" - -#: templates/user/my-account-popup.php:4 templates/user/my-account.php:4 -#: templates/user/login-form.php:16 templates/user/login-form.php:51 -#: templates/single-property/author-v3.php:60 -#: templates/single-property/author-v2.php:69 -#: templates/single-property/author.php:62 -#: inc/vendors/elementor/widgets/opalestate-account-button.php:533 -#: inc/vendors/elementor/widgets/opalestate-account-button.php:534 -msgid "Login" -msgstr "" - -#: templates/user/my-account-popup.php:5 templates/user/register-form.php:32 -#: templates/user/register-form.php:94 templates/user/my-account.php:5 -#: inc/vendors/elementor/widgets/opalestate-account-button.php:506 -msgid "Register" -msgstr "" - -#: templates/user/favorite-properties.php:24 -msgid "You have not added any property as favorite." -msgstr "" - -#: templates/user/favorite-button.php:12 -msgid "Add To Favorite" -msgstr "" - -#: templates/user/read-messages.php:16 templates/user/read-messages.php:29 -#: templates/user/messages.php:16 -msgid "User Avatar" -msgstr "" - -#: templates/user/read-messages.php:46 -msgid "Reply" -msgstr "" - -#: templates/user/register-form.php:22 templates/user/login-form.php:7 -msgid "You are currently logged in." -msgstr "" - -#: templates/user/register-form.php:44 -#: inc/vendors/elementor/widgets/opalestate-account-button.php:514 -msgid "Username" -msgstr "" - -#: templates/user/register-form.php:51 -msgid "Email address" -msgstr "" - -#: templates/user/register-form.php:58 templates/user/login-form.php:34 -#: inc/vendors/elementor/widgets/opalestate-account-button.php:518 -#: inc/vendors/elementor/widgets/opalestate-account-button.php:519 -msgid "Password" -msgstr "" - -#: templates/user/register-form.php:63 -msgid "Repeat-Password" -msgstr "" - -#: templates/user/register-form.php:81 -msgid "I agree with" -msgstr "" - -#: templates/user/register-form.php:82 -msgid "terms & conditions" -msgstr "" - -#: templates/user/error.php:2 -msgid "" -"You need a higher level of permission or this page is denied with your user " -"role." -msgstr "" - -#: templates/user/error.php:3 -msgid "Sorry, you are not allowed to this page." -msgstr "" - -#: templates/user/profile.php:36 -msgid "Edit User Profile" -msgstr "" - -#: templates/user/profile.php:45 templates/user/profile.php:68 -#: templates/user/agency/profile-agency.php:31 -#: templates/user/agent/profile-agent.php:13 -msgid "Save Change" -msgstr "" - -#: templates/user/profile.php:58 -msgid "Change Password" -msgstr "" - -#: templates/user/my-properties.php:44 -msgid "You have not submited any property." -msgstr "" - -#: templates/user/messages.php:9 -msgid "Messages for you" -msgstr "" - -#: templates/user/login-form.php:27 -msgid "Username or email address" -msgstr "" - -#: templates/user/login-form.php:42 -#: inc/vendors/elementor/widgets/opalestate-account-button.php:525 -msgid "Remember me" -msgstr "" - -#: templates/user/login-form.php:52 -#: inc/vendors/elementor/widgets/opalestate-account-button.php:544 -#: inc/vendors/elementor/widgets/opalestate-account-button.php:544 -msgid "Lost your password?" -msgstr "" - -#: templates/user/login-form.php:56 -msgid "Register now!" -msgstr "" - -#: templates/shortcodes/ajax-map-quick-search.php:23 -#: templates/parts/search-agents-form-address.php:36 -#: templates/parts/search-agents-form.php:55 -#: templates/parts/search-agency-form-address.php:37 -#: templates/parts/search-agency-form.php:28 inc/admin/settings/property.php:22 -#: templates/search-box/fields/submit-button.php:2 -msgid "Search" -msgstr "" - -#: templates/shortcodes/search-properties-result.php:28 -#: templates/shortcodes/ajax-map-search-result.php:22 -#: templates/parts/archive-simple-bars.php:6 -#, php-format -msgid "Found %s Properties" -msgstr "" - -#: templates/shortcodes/search-split-maps.php:7 -msgid "Loading map..." -msgstr "" - #: templates/shortcodes/ajax-map-search.php:35 msgid "More" msgstr "" @@ -4935,23 +4874,152 @@ msgstr "" msgid "Any" msgstr "" -#: templates/shortcodes/ajax-map-search.php:63 -#: templates/single-property/meta.php:13 templates/single-property/price.php:9 -#: templates/single-property/floor-plans.php:42 -#: templates/parts/search-agents-form.php:46 -msgid "Price:" -msgstr "" - #: templates/shortcodes/ajax-map-search.php:76 msgid "Apply" msgstr "" +#: templates/shortcodes/search-split-maps.php:7 +msgid "Loading map..." +msgstr "" + #: templates/shortcodes/submission-form.php:52 #: templates/submission/submission-form.php:39 #: templates/submission/submission-form.php:40 msgid "Save property" msgstr "" +#: templates/single-agency/author-box.php:41 +msgid "Agency avatar" +msgstr "" + +#: templates/single-agency/properties.php:33 +msgid "The agency has not any property yet." +msgstr "" + +#: templates/single-agent/author-box.php:34 +msgid "Agent details" +msgstr "" + +#: templates/single-agent/author-box.php:129 +msgid "View Profile" +msgstr "" + +#: templates/single-property/apartments.php:24 +msgid "Price From" +msgstr "" + +#: templates/single-property/apartments.php:43 +msgid "view" +msgstr "" + +#: templates/single-property/attachments.php:21 +msgid "Download" +msgstr "" + +#: templates/single-property/author-v2.php:67 +#: templates/single-property/author-v3.php:58 +#: templates/single-property/author.php:60 +msgid "You need to login to see host information." +msgstr "" + +#: templates/single-property/author-v2.php:69 +#: templates/single-property/author-v3.php:60 +#: templates/single-property/author.php:62 templates/user/login-form.php:16 +#: templates/user/login-form.php:51 templates/user/my-account-popup.php:4 +#: templates/user/my-account.php:4 +#: inc/vendors/elementor/widgets/opalestate-account-button.php:533 +#: inc/vendors/elementor/widgets/opalestate-account-button.php:534 +msgid "Login" +msgstr "" + +#. %s: Name of current post +#: templates/single-property/content.php:6 +#, php-format +msgid "Continue reading %s " +msgstr "" + +#: templates/single-property/floor-plans.php:22 +#: templates/single-property/floor-plans.php:34 +#, php-format +msgid "Plan %s" +msgstr "" + +#: templates/single-property/floor-plans.php:49 +msgid "Size:" +msgstr "" + +#: templates/single-property/floor-plans.php:56 +msgid "Rooms:" +msgstr "" + +#: templates/single-property/floor-plans.php:63 +msgid "Baths:" +msgstr "" + +#: templates/single-property/information.php:13 +msgid "Quick Information" +msgstr "" + +#: templates/single-property/information.php:19 +msgid "Type:" +msgstr "" + +#: templates/single-property/map-v2.php:20 +msgid "Picture" +msgstr "" + +#: templates/single-property/map-v2.php:25 templates/single-property/map.php:28 +#: templates/single-property/preview/tabs.php:20 +msgid "Street View" +msgstr "" + +#: templates/single-property/map-v2.php:49 templates/single-property/map.php:47 +#: templates/single-property/preview/map.php:17 +#: templates/single-property/preview/tabs.php:43 +msgid "Hospital" +msgstr "" + +#: templates/single-property/map-v2.php:55 templates/single-property/map.php:53 +#: templates/single-property/preview/map.php:23 +#: templates/single-property/preview/tabs.php:49 +msgid "Library" +msgstr "" + +#: templates/single-property/map-v2.php:61 templates/single-property/map.php:59 +#: templates/single-property/preview/map.php:29 +#: templates/single-property/preview/tabs.php:55 +msgid "Pharmacy" +msgstr "" + +#: templates/single-property/map-v2.php:68 templates/single-property/map.php:66 +#: templates/single-property/preview/map.php:36 +#: templates/single-property/preview/tabs.php:62 +msgid "School" +msgstr "" + +#: templates/single-property/map-v2.php:81 templates/single-property/map.php:79 +#: templates/single-property/preview/map.php:49 +#: templates/single-property/preview/tabs.php:75 +msgid "Trainstation" +msgstr "" + +#: templates/single-property/map.php:16 +msgid "Property on Map" +msgstr "" + +#: templates/single-property/nearby.php:31 +msgid "What's nearby" +msgstr "" + +#: templates/single-property/price.php:12 +msgid "Sale Price:" +msgstr "" + +#: templates/single-property/sameagent.php:8 +#, php-format +msgid "Properties by %s" +msgstr "" + #: templates/single-property/sharebox.php:28 msgid "Share on facebook" msgstr "" @@ -4980,80 +5048,9 @@ msgstr "" msgid "Email to a Friend" msgstr "" -#: templates/single-property/map.php:16 -msgid "Property on Map" -msgstr "" - -#: templates/single-property/map.php:28 templates/single-property/map-v2.php:25 -#: templates/single-property/preview/tabs.php:20 -msgid "Street View" -msgstr "" - -#: templates/single-property/map.php:47 templates/single-property/map-v2.php:49 -#: templates/single-property/preview/tabs.php:43 -#: templates/single-property/preview/map.php:17 -msgid "Hospital" -msgstr "" - -#: templates/single-property/map.php:53 templates/single-property/map-v2.php:55 -#: templates/single-property/preview/tabs.php:49 -#: templates/single-property/preview/map.php:23 -msgid "Library" -msgstr "" - -#: templates/single-property/map.php:59 templates/single-property/map-v2.php:61 -#: templates/single-property/preview/tabs.php:55 -#: templates/single-property/preview/map.php:29 -msgid "Pharmacy" -msgstr "" - -#: templates/single-property/map.php:66 templates/single-property/map-v2.php:68 -#: templates/single-property/preview/tabs.php:62 -#: templates/single-property/preview/map.php:36 -msgid "School" -msgstr "" - -#: templates/single-property/map.php:79 templates/single-property/map-v2.php:81 -#: templates/single-property/preview/tabs.php:75 -#: templates/single-property/preview/map.php:49 -msgid "Trainstation" -msgstr "" - -#: templates/single-property/attachments.php:21 -msgid "Download" -msgstr "" - -#: templates/single-property/author-v3.php:58 -#: templates/single-property/author-v2.php:67 -#: templates/single-property/author.php:60 -msgid "You need to login to see host information." -msgstr "" - -#. %s: Name of current post -#: templates/single-property/content.php:6 -#, php-format -msgid "Continue reading %s " -msgstr "" - -#: templates/single-property/sameagent.php:8 -#, php-format -msgid "Properties by %s" -msgstr "" - -#: templates/single-property/information.php:13 -msgid "Quick Information" -msgstr "" - -#: templates/single-property/information.php:19 -msgid "Type:" -msgstr "" - -#: templates/single-property/price.php:12 -msgid "Sale Price:" -msgstr "" - -#: templates/single-property/map-v2.php:20 -msgid "Picture" +#: templates/single-property/views-statistics.php:17 +#: templates/single-property/views-statistics.php:29 +msgid "Page Views Statistics" msgstr "" #: templates/single-property/walkscore.php:12 @@ -5078,39 +5075,202 @@ msgstr "" msgid "More details here" msgstr "" -#: templates/single-property/floor-plans.php:22 -#: templates/single-property/floor-plans.php:34 +#: templates/submission/completed.php:11 +msgid "Thanks for your submission, your property is published." +msgstr "" + +#: templates/submission/completed.php:13 +msgid "Thanks for your submission, it takes some time to review the property." +msgstr "" + +#: templates/submission/completed.php:16 templates/submission/completed.php:24 #, php-format -msgid "Plan %s" +msgid "Click %s here %s to view your listing or %s edit %s this." msgstr "" -#: templates/single-property/floor-plans.php:49 -msgid "Size:" +#: templates/submission/completed.php:23 +msgid "Your property is completed success." msgstr "" -#: templates/single-property/floor-plans.php:56 -msgid "Rooms:" +#: templates/submission/require-login.php:8 +#: templates/submission/submission-completed.php:8 +msgid "" +"Login in allowing you to edit your property or submit a property, save " +"favorite real estate." msgstr "" -#: templates/single-property/floor-plans.php:63 -msgid "Baths:" +#: templates/submission/require-login.php:9 +#: templates/submission/submission-completed.php:9 +msgid "Login Now" msgstr "" -#: templates/single-property/views-statistics.php:17 -#: templates/single-property/views-statistics.php:29 -msgid "Page Views Statistics" +#: templates/user/content-property.php:99 +msgid "Set Featured" msgstr "" -#: templates/single-property/nearby.php:31 -msgid "What's nearby" +#: templates/user/content-property.php:115 +msgid "Are you sure you wish to delete?" msgstr "" -#: templates/single-property/apartments.php:24 -msgid "Price From" +#: templates/user/content-property.php:116 +msgid "Delete Property" msgstr "" -#: templates/single-property/apartments.php:43 -msgid "view" +#: templates/user/dashboard.php:12 +msgid "Published Listings" +msgstr "" + +#: templates/user/dashboard.php:19 +msgid "Pending Properties" +msgstr "" + +#: templates/user/dashboard.php:26 +msgid "Featured Listings" +msgstr "" + +#: templates/user/dashboard.php:55 +msgid "Latest review" +msgstr "" + +#: templates/user/dashboard.php:56 +msgid "View All" +msgstr "" + +#: templates/user/dashboard.php:61 templates/user/property-ratings.php:11 +msgid "You have not written any reviews yet." +msgstr "" + +#: templates/user/error.php:2 +msgid "" +"You need a higher level of permission or this page is denied with your user " +"role." +msgstr "" + +#: templates/user/error.php:3 +msgid "Sorry, you are not allowed to this page." +msgstr "" + +#: templates/user/favorite-button.php:12 +msgid "Add To Favorite" +msgstr "" + +#: templates/user/favorite-properties.php:23 +msgid "No item in your favorite" +msgstr "" + +#: templates/user/favorite-properties.php:24 +msgid "You have not added any property as favorite." +msgstr "" + +#: templates/user/login-form.php:7 templates/user/register-form.php:22 +msgid "You are currently logged in." +msgstr "" + +#: templates/user/login-form.php:27 +msgid "Username or email address" +msgstr "" + +#: templates/user/login-form.php:34 templates/user/register-form.php:58 +#: inc/vendors/elementor/widgets/opalestate-account-button.php:518 +#: inc/vendors/elementor/widgets/opalestate-account-button.php:519 +msgid "Password" +msgstr "" + +#: templates/user/login-form.php:42 +#: inc/vendors/elementor/widgets/opalestate-account-button.php:525 +msgid "Remember me" +msgstr "" + +#: templates/user/login-form.php:52 +#: inc/vendors/elementor/widgets/opalestate-account-button.php:544 +#: inc/vendors/elementor/widgets/opalestate-account-button.php:544 +msgid "Lost your password?" +msgstr "" + +#: templates/user/login-form.php:56 +msgid "Register now!" +msgstr "" + +#: templates/user/messages.php:9 +msgid "Messages for you" +msgstr "" + +#: templates/user/messages.php:16 templates/user/read-messages.php:16 +#: templates/user/read-messages.php:29 +msgid "User Avatar" +msgstr "" + +#: templates/user/my-account-popup.php:5 templates/user/my-account.php:5 +#: templates/user/register-form.php:32 templates/user/register-form.php:94 +#: inc/vendors/elementor/widgets/opalestate-account-button.php:506 +msgid "Register" +msgstr "" + +#: templates/user/my-properties.php:44 +msgid "You have not submited any property." +msgstr "" + +#: templates/user/profile.php:36 +msgid "Edit User Profile" +msgstr "" + +#: templates/user/profile.php:45 templates/user/profile.php:68 +#: templates/user/agency/profile-agency.php:31 +#: templates/user/agent/profile-agent.php:13 +msgid "Save Change" +msgstr "" + +#: templates/user/profile.php:58 +msgid "Change Password" +msgstr "" + +#: templates/user/read-messages.php:46 +msgid "Reply" +msgstr "" + +#: templates/user/register-form.php:44 +#: inc/vendors/elementor/widgets/opalestate-account-button.php:514 +msgid "Username" +msgstr "" + +#: templates/user/register-form.php:51 +msgid "Email address" +msgstr "" + +#: templates/user/register-form.php:63 +msgid "Repeat-Password" +msgstr "" + +#: templates/user/register-form.php:81 +msgid "I agree with" +msgstr "" + +#: templates/user/register-form.php:82 +msgid "terms & conditions" +msgstr "" + +#: templates/user/share-search-form.php:8 +#: templates/user-search/render-form.php:8 +#, php-format +msgid "" +"Hey there! I saved this search on %s, please check out these homes that are " +"listed. Remember to save this search to be first to catch any new listings." +msgstr "" + +#: templates/user/share-search-form.php:14 +msgid "Share this Search" +msgstr "" + +#: templates/user/share-search-form.php:23 +msgid "Are you searching with anyone? Share this search." +msgstr "" + +#: templates/user/share-search-form.php:31 +msgid "Friend Email" +msgstr "" + +#: templates/user/share-search-form.php:40 +msgid "E-mail" msgstr "" #: templates/user-search/content-savedsearch.php:9 @@ -5150,483 +5310,194 @@ msgstr "" msgid "Save" msgstr "" -#: templates/single-agency/properties.php:29 -msgid "Load More" +#: inc/admin/agent/class-agent.php:127 +msgid "Target Search" msgstr "" -#: templates/single-agency/properties.php:37 -msgid "My Agency has not any property yet." +#: inc/admin/property/class-property.php:101 +msgid "Sku" msgstr "" -#: templates/single-agency/author-box.php:41 -msgid "Agency avatar" +#: inc/admin/property/class-property.php:104 +msgid "Author" msgstr "" -#: templates/parts/membership-pricing-info.php:12 -#: templates/parts/membership-pricing-info.php:14 -msgid " Listings" +#: inc/admin/property/class-property.php:105 +#: inc/vendors/elementor/widgets/opalestate-agency-collection.php:212 +#: inc/vendors/elementor/widgets/opalestate-agent-collection.php:212 +#: inc/vendors/elementor/widgets/opalestate-property-collection.php:202 +#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:191 +msgid "Date" msgstr "" -#: templates/parts/membership-pricing-info.php:14 -#: templates/parts/membership-pricing-info.php:23 -#: inc/vendors/opalmembership/membership.php:571 -#: inc/vendors/opalmembership/membership.php:572 -msgid "Unlimited" +#: inc/admin/property/class-property.php:106 +msgid "Expiry Date" msgstr "" -#: templates/parts/membership-pricing-info.php:21 -#: templates/parts/membership-pricing-info.php:23 -msgid " Featured" +#: inc/admin/property/class-property.php:155 +msgid "Y/m/d g:i:s a" msgstr "" -#: templates/parts/not-allowed.php:8 -msgid "You are not allowed to access this page." +#: inc/admin/property/class-property.php:157 +msgctxt "expired property" +msgid "---" msgstr "" -#: templates/parts/search-agents-form-address.php:16 -#: templates/parts/search-agents-form.php:20 -#: templates/parts/search-agency-form-address.php:16 -msgid "Find an experienced agent with:" +#: inc/admin/rating/class-rating.php:54 inc/admin/rating/class-rating.php:58 +msgid "Review Settings" msgstr "" -#: templates/parts/search-agents-form-address.php:19 -#: templates/parts/search-agents-form.php:23 -#: templates/parts/search-agency-form-address.php:19 -msgid "Who sale between:" +#: inc/admin/rating/class-rating.php:64 inc/admin/rating/class-rating.php:65 +msgid "Enable property reviews" msgstr "" -#: templates/parts/membership-warning.php:3 +#: inc/admin/rating/class-rating.php:74 inc/admin/rating/class-rating.php:75 +msgid "Enable agency reviews" +msgstr "" + +#: inc/admin/rating/class-rating.php:84 inc/admin/rating/class-rating.php:85 +msgid "Enable agent reviews" +msgstr "" + +#: inc/admin/settings/3rd_party.php:27 inc/admin/settings/3rd_party.php:120 +msgid "Yelp" +msgstr "" + +#: inc/admin/settings/3rd_party.php:28 +msgid "Walkcore" +msgstr "" + +#: inc/admin/settings/3rd_party.php:48 +msgid "3rd Party Settings" +msgstr "" + +#: inc/admin/settings/3rd_party.php:58 msgid "" -"Your package has 0 left listing, you could not add any more. Please upgrade " -"now" +"You need to register Google API " +"Key, then put the key in this setting." msgstr "" -#: templates/parts/membership-warning.php:4 -msgid "Click to this link to see plans" +#: inc/admin/settings/3rd_party.php:65 +msgid "Style" msgstr "" -#: templates/parts/property-loop-price.php:15 -msgid "Call to Price" +#: inc/admin/settings/3rd_party.php:66 +msgid "Select a style" msgstr "" -#: templates/parts/property-loop-price.php:34 -msgid "Contact Property" +#: inc/admin/settings/3rd_party.php:70 +msgid "Standard" msgstr "" -#: templates/parts/property-types.php:7 -msgid "Types:" +#: inc/admin/settings/3rd_party.php:71 +msgid "Silver" msgstr "" -#: templates/parts/has-warning.php:3 +#: inc/admin/settings/3rd_party.php:72 +msgid "Retro" +msgstr "" + +#: inc/admin/settings/3rd_party.php:74 +msgid "Night" +msgstr "" + +#: inc/admin/settings/3rd_party.php:75 +msgid "Aubergine" +msgstr "" + +#: inc/admin/settings/3rd_party.php:76 +msgid "Custom" +msgstr "" + +#: inc/admin/settings/3rd_party.php:81 +msgid "Custom Style" +msgstr "" + +#: inc/admin/settings/3rd_party.php:82 msgid "" -"Hi! you could not edit/create a property at this time, you have not " -"permission to do." +"You can visit " +"Google Maps Platform Styling Wizard, then paste JSON into this setting." msgstr "" -#: templates/parts/mortgage-calculator.php:103 -msgid "Mortgage Payment Calculator" +#: inc/admin/settings/3rd_party.php:88 +msgid "Autocomplete Restrictions" msgstr "" -#: templates/parts/mortgage-calculator.php:125 -msgid "Your payment" -msgstr "" - -#: templates/parts/mortgage-calculator.php:129 -msgid "month" -msgstr "" - -#: templates/parts/mortgage-calculator.php:132 -msgid "Loan Amount" -msgstr "" - -#: templates/parts/mortgage-calculator.php:139 -msgid "Your price" -msgstr "" - -#: templates/parts/mortgage-calculator.php:140 -msgid "Your deposit" -msgstr "" - -#: templates/parts/mortgage-calculator.php:141 -msgid "Your interest" -msgstr "" - -#: templates/parts/mortgage-calculator.php:157 -msgid "Deposit" -msgstr "" - -#: templates/parts/mortgage-calculator.php:163 -msgid "Annual Interest" -msgstr "" - -#: templates/parts/mortgage-calculator.php:169 -msgid "Years" -msgstr "" - -#: templates/parts/mortgage-calculator.php:174 +#: inc/admin/settings/3rd_party.php:89 msgid "" -"All calculation are based on tentative and estimated figure and shall not " -"replace any financial advice" +"Enter one or more country codes ALPHA-2 separator by \",\". Example: \"us\" " +"for USA. " +"See list country codes." msgstr "" -#: templates/parts/property-categories.php:7 -msgid "Categories:" +#: inc/admin/settings/3rd_party.php:101 +msgid "Walk Score" msgstr "" -#: templates/parts/search-agency-form.php:21 -msgid "Enter Agency Name" +#: inc/admin/settings/3rd_party.php:109 +msgid "Walk Score APi Key" msgstr "" -#: templates/submission/submission-completed.php:8 -#: templates/submission/require-login.php:8 +#: inc/admin/settings/3rd_party.php:110 msgid "" -"Login in allowing you to edit your property or submit a property, save " -"favorite real estate." +"Add Walk Score API key. To get your Walk Score API key, go to your Walk " +"Score Account." msgstr "" -#: templates/submission/submission-completed.php:9 -#: templates/submission/require-login.php:9 -msgid "Login Now" +#: inc/admin/settings/3rd_party.php:128 +msgid "Yelp API Client ID" msgstr "" -#: templates/submission/completed.php:11 -msgid "Thanks for your submission, your property is published." -msgstr "" - -#: templates/submission/completed.php:13 -msgid "Thanks for your submission, it takes some time to review the property." -msgstr "" - -#: templates/submission/completed.php:16 templates/submission/completed.php:24 -#, php-format -msgid "Click %s here %s to view your listing or %s edit %s this." -msgstr "" - -#: templates/submission/completed.php:23 -msgid "Your property is completed success." -msgstr "" - -#: inc/vendors/social-login/class-opalestate-social-login.php:49 -msgid "Social Login" -msgstr "" - -#: inc/vendors/social-login/class-opalestate-social-login.php:64 -#: inc/vendors/social-login/class-opalestate-social-login.php:65 -msgid "Enable Google login" -msgstr "" - -#: inc/vendors/social-login/class-opalestate-social-login.php:75 -msgid "Google Client ID" -msgstr "" - -#: inc/vendors/social-login/class-opalestate-social-login.php:76 -msgid "Google Client ID is required for Google Login." -msgstr "" - -#: inc/vendors/social-login/class-opalestate-social-login.php:81 -msgid "Google Client Secret" -msgstr "" - -#: inc/vendors/social-login/class-opalestate-social-login.php:82 -msgid "Google Client Secret is required for Google Login." -msgstr "" - -#: inc/vendors/social-login/class-opalestate-social-login.php:87 -msgid "Google API key" -msgstr "" - -#: inc/vendors/social-login/class-opalestate-social-login.php:88 -msgid "Google API key is required for Google Login." -msgstr "" - -#: inc/vendors/social-login/class-opalestate-social-login.php:101 -#: inc/vendors/social-login/class-opalestate-social-login.php:102 -msgid "Enable Facebook login" -msgstr "" - -#: inc/vendors/social-login/class-opalestate-social-login.php:112 -msgid "Facebook Application ID" -msgstr "" - -#: inc/vendors/social-login/class-opalestate-social-login.php:113 -msgid "Facebook Application ID is required for Facebook login." -msgstr "" - -#: inc/vendors/social-login/class-opalestate-social-login.php:118 -msgid "Facebook Secret" -msgstr "" - -#: inc/vendors/social-login/class-opalestate-social-login.php:119 -msgid "Facebook Secret is required for Facebook login." -msgstr "" - -#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:155 -msgid "Carousel Options" -msgstr "" - -#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:168 -msgid "Slides to Show" -msgstr "" - -#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:171 -#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:359 -msgid "Default" -msgstr "" - -#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:180 -msgid "Slides to Scroll" -msgstr "" - -#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:182 -msgid "Set how many slides are scrolled per swipe." -msgstr "" - -#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:196 -#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:334 -msgid "Navigation" -msgstr "" - -#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:200 -msgid "Arrows and Dots" -msgstr "" - -#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:201 -#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:343 -msgid "Arrows" -msgstr "" - -#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:202 -#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:406 -msgid "Dots" -msgstr "" - -#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:223 -msgid "Carousel Additional Options" -msgstr "" - -#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:231 -msgid "Pause on Hover" -msgstr "" - -#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:245 -msgid "Autoplay" -msgstr "" - -#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:259 -msgid "Autoplay Speed" -msgstr "" - -#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:269 -msgid "Infinite Loop" -msgstr "" - -#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:283 -msgid "Effect" -msgstr "" - -#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:287 -msgid "Slide" -msgstr "" - -#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:288 -msgid "Fade" -msgstr "" - -#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:300 -msgid "Animation Speed" -msgstr "" - -#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:310 -msgid "Direction" -msgstr "" - -#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:314 -#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:367 -#: inc/vendors/elementor/widgets/opalestate-account-button.php:224 -msgid "Left" -msgstr "" - -#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:315 -#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:375 -#: inc/vendors/elementor/widgets/opalestate-account-button.php:232 -msgid "Right" -msgstr "" - -#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:355 -#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:418 -msgid "Position" -msgstr "" - -#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:360 -#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:423 -msgid "Inside" -msgstr "" - -#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:361 -#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:422 -msgid "Outside" -msgstr "" - -#: inc/vendors/elementor/class-opalestate-elementor-extended.php:78 -msgid "Opal Estate" -msgstr "" - -#: inc/vendors/opalmembership/membership.php:182 -msgid "Could not allow uploading image" -msgstr "" - -#: inc/vendors/opalmembership/membership.php:216 -msgid "Limited listings?" -msgstr "" - -#: inc/vendors/opalmembership/membership.php:220 +#: inc/admin/settings/3rd_party.php:129 msgid "" -"Check if set limited listings. Default: Unlimited listings. Notice: Enter " -"Number Of Properties when set limited listings." +"Add Yelp client ID. To get your Yelp Api Client ID, go to your Yelp Account. " +"Register here" msgstr "" -#: inc/vendors/opalmembership/membership.php:224 -#: inc/vendors/opalmembership/membership.php:647 -msgid "Number Of Properties" +#: inc/admin/settings/3rd_party.php:135 +msgid "Yelp API Secret" msgstr "" -#: inc/vendors/opalmembership/membership.php:233 -#: inc/vendors/opalmembership/membership.php:656 +#: inc/admin/settings/3rd_party.php:136 msgid "" -"Number of properties with this package. If not set it will be unlimited." +"Add Yelp API Secret. Register here" msgstr "" -#: inc/vendors/opalmembership/membership.php:237 -#: inc/vendors/opalmembership/membership.php:660 -msgid "Number Of Featured Properties" +#: inc/admin/settings/3rd_party.php:142 +msgid "Yelp App key" msgstr "" -#: inc/vendors/opalmembership/membership.php:246 -#: inc/vendors/opalmembership/membership.php:669 -msgid "Number of properties can make featured with this package." -msgstr "" - -#: inc/vendors/opalmembership/membership.php:250 -msgid "Accumulated listings?" -msgstr "" - -#: inc/vendors/opalmembership/membership.php:253 +#: inc/admin/settings/3rd_party.php:143 msgid "" -"Increase Number Of Properties and Number Of Featured Properties from current " -"remaining values when upgrading this package." +"You can find it in your Yelp Application Dashboard. Register here" msgstr "" -#: inc/vendors/opalmembership/membership.php:257 -msgid "Enable Expired for properties " +#: inc/admin/settings/3rd_party.php:149 +msgid "Yelp Categories" msgstr "" -#: inc/vendors/opalmembership/membership.php:260 -msgid "Do you want enable expired date for properties?" +#: inc/admin/settings/3rd_party.php:150 +msgid "Yelp Categories to show on front page" msgstr "" -#: inc/vendors/opalmembership/membership.php:264 -msgid "Expired Property In" +#: inc/admin/settings/3rd_party.php:156 +msgid "Yelp - Number of results" msgstr "" -#: inc/vendors/opalmembership/membership.php:273 -msgid "Expired a property in. Enter expired number. Example 1, 2, 3" +#: inc/admin/settings/3rd_party.php:157 +msgid "Number of results to show on listing page for each category." msgstr "" -#: inc/vendors/opalmembership/membership.php:277 -msgid "Expired property Date Type" +#: inc/admin/settings/3rd_party.php:167 inc/admin/settings/3rd_party.php:168 +msgid "Yelp Distance Measurement Unit" msgstr "" -#: inc/vendors/opalmembership/membership.php:281 -msgid "Enter expired date type. Example Day(s), Week(s), Month(s), Year(s)" -msgstr "" - -#: inc/vendors/opalmembership/membership.php:298 -msgid "My Membership" -msgstr "" - -#: inc/vendors/opalmembership/membership.php:307 -msgid "My Invoices" -msgstr "" - -#: inc/vendors/opalmembership/membership.php:316 -msgid "Renew membership" -msgstr "" - -#: inc/vendors/opalmembership/membership.php:500 -msgid "" -"Your membership package is expired or Your package has 0 left listing, " -"please upgrade now." -msgstr "" - -#: inc/vendors/opalmembership/membership.php:571 -#: inc/vendors/opalmembership/membership.php:575 -msgid "(Package) Listings Included:" -msgstr "" - -#: inc/vendors/opalmembership/membership.php:572 -#: inc/vendors/opalmembership/membership.php:576 -msgid "(Package) Featured Included:" -msgstr "" - -#: inc/vendors/opalmembership/membership.php:578 -msgid "Listings Remaining:" -msgstr "" - -#: inc/vendors/opalmembership/membership.php:579 -msgid "Featured Remaining:" -msgstr "" - -#: inc/vendors/opalmembership/membership.php:625 -msgid "Membership Package" -msgstr "" - -#: inc/vendors/opalmembership/membership.php:632 -msgid "Package" -msgstr "" - -#: inc/vendors/opalmembership/membership.php:641 -msgid "Set package ID with -1 as free package." -msgstr "" - -#: inc/vendors/opalmembership/membership.php:642 -msgid "Membership Information" -msgstr "" - -#: inc/vendors/opalmembership/membership.php:678 -#: inc/vendors/opalmembership/membership.php:686 -msgid "Show expired time in double format." -msgstr "" - -#: inc/vendors/opalmembership/free-package.php:22 -msgid "Free Submission" -msgstr "" - -#: inc/vendors/opalmembership/free-package.php:29 -msgid "Enable Free Submission" -msgstr "" - -#: inc/vendors/opalmembership/free-package.php:30 -msgid "Allow set automatic a free package." -msgstr "" - -#: inc/vendors/opalmembership/free-package.php:39 -msgid "Number Free Listing" -msgstr "" - -#: inc/vendors/opalmembership/free-package.php:40 -msgid "Maximum number of Free Listing that users can submit." -msgstr "" - -#: inc/vendors/opalmembership/free-package.php:49 -msgid "Number Free Featured" -msgstr "" - -#: inc/vendors/opalmembership/free-package.php:50 -msgid "Maximum number of Free Featured that users can set." -msgstr "" - -#: inc/vendors/opalmembership/free-package.php:90 -msgid "Free membership" +#: inc/admin/settings/3rd_party.php:173 +msgid "kilometers" msgstr "" #: inc/admin/settings/email.php:28 inc/admin/settings/general.php:28 @@ -5634,347 +5505,6 @@ msgstr "" msgid "General Settings" msgstr "" -#: inc/admin/settings/property.php:23 -msgid "Single Page" -msgstr "" - -#: inc/admin/settings/property.php:50 -msgid "Property Settings" -msgstr "" - -#: inc/admin/settings/property.php:60 -msgid "Enable User Submission" -msgstr "" - -#: inc/admin/settings/property.php:61 -msgid "Enable to allow user post/submit properties in front-end" -msgstr "" - -#: inc/admin/settings/property.php:82 -msgid "Show Meta Information in property collection." -msgstr "" - -#: inc/admin/settings/property.php:89 -msgid "Default Display mode" -msgstr "" - -#: inc/admin/settings/property.php:96 -msgid "Archive Grid layout" -msgstr "" - -#: inc/admin/settings/property.php:103 -msgid "Archive List layout" -msgstr "" - -#: inc/admin/settings/property.php:125 -msgid "User Share Search" -msgstr "" - -#: inc/admin/settings/property.php:126 -msgid "Display Share Search Link Management" -msgstr "" - -#: inc/admin/settings/property.php:136 -msgid "User Saved Search" -msgstr "" - -#: inc/admin/settings/property.php:137 -msgid "Display Save Search Link Management" -msgstr "" - -#: inc/admin/settings/property.php:148 -msgid "Search Properties Page" -msgstr "" - -#: inc/admin/settings/property.php:149 -msgid "" -"This is page to display result of properties after user searching via form." -msgstr "" - -#: inc/admin/settings/property.php:161 -msgid "Properties Per Page" -msgstr "" - -#: inc/admin/settings/property.php:162 -msgid "Enter min of properties display in search page" -msgstr "" - -#: inc/admin/settings/property.php:173 -msgid "Show Featured First" -msgstr "" - -#: inc/admin/settings/property.php:175 -msgid "Show featured first in page result, as default Newest is showed" -msgstr "" - -#: inc/admin/settings/property.php:184 -msgid "Minimum of Search Price" -msgstr "" - -#: inc/admin/settings/property.php:185 -msgid "Enter minimum of price for starting search" -msgstr "" - -#: inc/admin/settings/property.php:194 -msgid "Maximum of Search Price" -msgstr "" - -#: inc/admin/settings/property.php:195 -msgid "Enter maximum of price for starting search" -msgstr "" - -#: inc/admin/settings/property.php:206 -msgid "Minimum of Search Aea" -msgstr "" - -#: inc/admin/settings/property.php:207 -msgid "Enter minimum of area for starting search" -msgstr "" - -#: inc/admin/settings/property.php:216 -msgid "Maximum of Search Aea" -msgstr "" - -#: inc/admin/settings/property.php:217 -msgid "Enter maximum of area for starting search" -msgstr "" - -#: inc/admin/settings/property.php:227 -msgid "Search Grid layout" -msgstr "" - -#: inc/admin/settings/property.php:234 -msgid "Search List layout" -msgstr "" - -#: inc/admin/settings/property.php:241 -msgid "Horizontal Search Fields" -msgstr "" - -#: inc/admin/settings/property.php:242 -msgid "Disable or enable fields appearing in search form" -msgstr "" - -#: inc/admin/settings/property.php:250 -msgid "Show Price" -msgstr "" - -#: inc/admin/settings/property.php:272 inc/admin/settings/property.php:273 -msgid "Setting type fields search" -msgstr "" - -#: inc/admin/settings/property.php:298 -msgid "Field type" -msgstr "" - -#: inc/admin/settings/property.php:300 -msgid "Select" -msgstr "" - -#: inc/admin/settings/property.php:301 -msgid "Range" -msgstr "" - -#: inc/admin/settings/property.php:302 -msgid "Text" -msgstr "" - -#: inc/admin/settings/property.php:310 -msgid "Options" -msgstr "" - -#: inc/admin/settings/property.php:311 -msgid "Options value select. Use \",\" to separate values." -msgstr "" - -#: inc/admin/settings/property.php:318 inc/admin/settings/property.php:319 -msgid "Min range" -msgstr "" - -#: inc/admin/settings/property.php:326 inc/admin/settings/property.php:327 -msgid "Max range" -msgstr "" - -#: inc/admin/settings/property.php:334 inc/admin/settings/property.php:335 -msgid "Unit thousand" -msgstr "" - -#: inc/admin/settings/property.php:341 -msgid "Default text" -msgstr "" - -#: inc/admin/settings/property.php:342 -msgid "Default text value" -msgstr "" - -#: inc/admin/settings/property.php:360 -msgid "Enable Request Viewing" -msgstr "" - -#: inc/admin/settings/property.php:361 -msgid "Enable Request Viewing feature in the single property page." -msgstr "" - -#: inc/admin/settings/property.php:372 -msgid "Request Viewing Time Range (minute)" -msgstr "" - -#: inc/admin/settings/property.php:373 -msgid "Time range from 1-60 minutes." -msgstr "" - -#: inc/admin/settings/property.php:386 -msgid "Show Amenities tab" -msgstr "" - -#: inc/admin/settings/property.php:387 -msgid "Show Amenities tab in the single property page." -msgstr "" - -#: inc/admin/settings/property.php:397 -msgid "Hide Unset amenities" -msgstr "" - -#: inc/admin/settings/property.php:398 -msgid "Hide unset amenities. Default: Show unset amenities with disable icons." -msgstr "" - -#: inc/admin/settings/property.php:409 -msgid "Show Facilities tab" -msgstr "" - -#: inc/admin/settings/property.php:410 -msgid "Show Facilities tab in the single property page." -msgstr "" - -#: inc/admin/settings/property.php:421 -msgid "Show Attachments tab" -msgstr "" - -#: inc/admin/settings/property.php:422 -msgid "Show Attachments tab in the single property page." -msgstr "" - -#: inc/admin/settings/property.php:433 -msgid "Show Video tab" -msgstr "" - -#: inc/admin/settings/property.php:434 -msgid "Show Video tab in the single property page." -msgstr "" - -#: inc/admin/settings/property.php:445 -msgid "Show Virtual Tour tab" -msgstr "" - -#: inc/admin/settings/property.php:446 -msgid "Show Virtual Tour tab in the single property page." -msgstr "" - -#: inc/admin/settings/property.php:457 -msgid "Show Map tab" -msgstr "" - -#: inc/admin/settings/property.php:458 -msgid "Show Map tab in the single property page." -msgstr "" - -#: inc/admin/settings/property.php:469 -msgid "Show Nearby tab" -msgstr "" - -#: inc/admin/settings/property.php:470 -msgid "Show Nearby tab in the single property page." -msgstr "" - -#: inc/admin/settings/property.php:481 -msgid "Show Walk Scores tab" -msgstr "" - -#: inc/admin/settings/property.php:482 -msgid "Show Walk Scores tab in the single property page." -msgstr "" - -#: inc/admin/settings/property.php:493 -msgid "Show Apartments tab" -msgstr "" - -#: inc/admin/settings/property.php:494 -msgid "Show Apartments tab in the single property page." -msgstr "" - -#: inc/admin/settings/property.php:505 -msgid "Show Floor Plans tab" -msgstr "" - -#: inc/admin/settings/property.php:506 -msgid "Show Floor Plans tab in the single property page." -msgstr "" - -#: inc/admin/settings/property.php:517 -msgid "Show Views Statistics tab" -msgstr "" - -#: inc/admin/settings/property.php:518 -msgid "Show Views Statistics tab in the single property page." -msgstr "" - -#: inc/admin/settings/property.php:528 -msgid "Views Statistics time limit (days)" -msgstr "" - -#: inc/admin/settings/property.php:529 -msgid "The number of days will be saved to the database." -msgstr "" - -#: inc/admin/settings/property.php:542 -msgid "Show Author box" -msgstr "" - -#: inc/admin/settings/property.php:543 -msgid "Show Author box in the single property page." -msgstr "" - -#: inc/admin/settings/property.php:553 -msgid "Login to show Author box" -msgstr "" - -#: inc/admin/settings/property.php:554 -msgid "Require users login to show Author box" -msgstr "" - -#: inc/admin/settings/property.php:565 -msgid "Show Enquire form" -msgstr "" - -#: inc/admin/settings/property.php:566 -msgid "Show Enquire form in the single property page." -msgstr "" - -#: inc/admin/settings/property.php:577 -msgid "Show Mortgage Calculator" -msgstr "" - -#: inc/admin/settings/property.php:578 -msgid "Show Mortgage Calculator in the single property page." -msgstr "" - -#: inc/admin/settings/property.php:589 -msgid "Related properties layout" -msgstr "" - -#: inc/admin/settings/property.php:590 -msgid "Select a layout for related properties." -msgstr "" - -#: inc/admin/settings/property.php:598 -msgid "Nearby properties layout" -msgstr "" - -#: inc/admin/settings/property.php:599 -msgid "Select a layout for nearby properties." -msgstr "" - #: inc/admin/settings/general.php:45 msgid "Login and Redirect to Dashboard page" msgstr "" @@ -6135,136 +5665,6 @@ msgstr "" msgid "Select a time format." msgstr "" -#: inc/admin/settings/3rd_party.php:27 inc/admin/settings/3rd_party.php:112 -msgid "Yelp" -msgstr "" - -#: inc/admin/settings/3rd_party.php:28 -msgid "Walkcore" -msgstr "" - -#: inc/admin/settings/3rd_party.php:48 -msgid "3rd Party Settings" -msgstr "" - -#: inc/admin/settings/3rd_party.php:58 -msgid "" -"You need to register Google API " -"Key, then put the key in this setting." -msgstr "" - -#: inc/admin/settings/3rd_party.php:65 -msgid "Style" -msgstr "" - -#: inc/admin/settings/3rd_party.php:66 -msgid "Select a style" -msgstr "" - -#: inc/admin/settings/3rd_party.php:70 -msgid "Standard" -msgstr "" - -#: inc/admin/settings/3rd_party.php:71 -msgid "Silver" -msgstr "" - -#: inc/admin/settings/3rd_party.php:72 -msgid "Retro" -msgstr "" - -#: inc/admin/settings/3rd_party.php:74 -msgid "Night" -msgstr "" - -#: inc/admin/settings/3rd_party.php:75 -msgid "Aubergine" -msgstr "" - -#: inc/admin/settings/3rd_party.php:76 -msgid "Custom" -msgstr "" - -#: inc/admin/settings/3rd_party.php:81 -msgid "Custom Style" -msgstr "" - -#: inc/admin/settings/3rd_party.php:82 -msgid "" -"You can visit " -"Google Maps Platform Styling Wizard, then paste JSON into this setting." -msgstr "" - -#: inc/admin/settings/3rd_party.php:93 -msgid "Walk Score" -msgstr "" - -#: inc/admin/settings/3rd_party.php:101 -msgid "Walk Score APi Key" -msgstr "" - -#: inc/admin/settings/3rd_party.php:102 -msgid "" -"Add Walk Score API key. To get your Walk Score API key, go to your Walk " -"Score Account." -msgstr "" - -#: inc/admin/settings/3rd_party.php:120 -msgid "Yelp API Client ID" -msgstr "" - -#: inc/admin/settings/3rd_party.php:121 -msgid "" -"Add Yelp client ID. To get your Yelp Api Client ID, go to your Yelp Account. " -"Register here" -msgstr "" - -#: inc/admin/settings/3rd_party.php:127 -msgid "Yelp API Secret" -msgstr "" - -#: inc/admin/settings/3rd_party.php:128 -msgid "" -"Add Yelp API Secret. Register here" -msgstr "" - -#: inc/admin/settings/3rd_party.php:134 -msgid "Yelp App key" -msgstr "" - -#: inc/admin/settings/3rd_party.php:135 -msgid "" -"You can find it in your Yelp Application Dashboard. Register here" -msgstr "" - -#: inc/admin/settings/3rd_party.php:141 -msgid "Yelp Categories" -msgstr "" - -#: inc/admin/settings/3rd_party.php:142 -msgid "Yelp Categories to show on front page" -msgstr "" - -#: inc/admin/settings/3rd_party.php:148 -msgid "Yelp - Number of results" -msgstr "" - -#: inc/admin/settings/3rd_party.php:149 -msgid "Number of results to show on listing page for each category." -msgstr "" - -#: inc/admin/settings/3rd_party.php:159 inc/admin/settings/3rd_party.php:160 -msgid "Yelp Distance Measurement Unit" -msgstr "" - -#: inc/admin/settings/3rd_party.php:165 -msgid "kilometers" -msgstr "" - #: inc/admin/settings/pages.php:42 msgid "Pages Settings" msgstr "" @@ -6385,123 +5785,386 @@ msgstr "" msgid "Show Saved Search menu page." msgstr "" -#: inc/admin/rating/class-rating.php:54 inc/admin/rating/class-rating.php:58 -msgid "Review Settings" +#: inc/admin/settings/property.php:23 +msgid "Single Page" msgstr "" -#: inc/admin/rating/class-rating.php:64 inc/admin/rating/class-rating.php:65 -msgid "Enable property reviews" +#: inc/admin/settings/property.php:50 +msgid "Property Settings" msgstr "" -#: inc/admin/rating/class-rating.php:74 inc/admin/rating/class-rating.php:75 -msgid "Enable agency reviews" +#: inc/admin/settings/property.php:60 +msgid "Enable User Submission" msgstr "" -#: inc/admin/rating/class-rating.php:84 inc/admin/rating/class-rating.php:85 -msgid "Enable agent reviews" +#: inc/admin/settings/property.php:61 +msgid "Enable to allow user post/submit properties in front-end" msgstr "" -#: inc/admin/property/class-property.php:101 -msgid "Sku" +#: inc/admin/settings/property.php:82 +msgid "Show Meta Information in property collection." msgstr "" -#: inc/admin/property/class-property.php:104 -msgid "Author" +#: inc/admin/settings/property.php:89 +msgid "Default Display mode" msgstr "" -#: inc/admin/property/class-property.php:105 -#: inc/vendors/elementor/widgets/opalestate-agent-collection.php:212 -#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:191 -#: inc/vendors/elementor/widgets/opalestate-property-collection.php:202 -#: inc/vendors/elementor/widgets/opalestate-agency-collection.php:212 -msgid "Date" +#: inc/admin/settings/property.php:96 +msgid "Archive Grid layout" msgstr "" -#: inc/admin/property/class-property.php:106 -msgid "Expiry Date" +#: inc/admin/settings/property.php:103 +msgid "Archive List layout" msgstr "" -#: inc/admin/property/class-property.php:155 -msgid "Y/m/d g:i:s a" +#: inc/admin/settings/property.php:125 +msgid "User Share Search" msgstr "" -#: inc/admin/property/class-property.php:157 -msgctxt "expired property" -msgid "---" +#: inc/admin/settings/property.php:126 +msgid "Display Share Search Link Management" msgstr "" -#: inc/admin/agent/class-agent.php:127 -msgid "Target Search" +#: inc/admin/settings/property.php:136 +msgid "User Saved Search" msgstr "" -#: inc/api/v1/agent.php:65 inc/api/v1/agent.php:88 inc/api/v1/user.php:57 -#: inc/api/v1/user.php:80 inc/api/v1/agency.php:60 inc/api/v1/agency.php:83 -#: inc/api/v1/property.php:64 +#: inc/admin/settings/property.php:137 +msgid "Display Save Search Link Management" +msgstr "" + +#: inc/admin/settings/property.php:148 +msgid "Search Properties Page" +msgstr "" + +#: inc/admin/settings/property.php:149 +msgid "" +"This is page to display result of properties after user searching via form." +msgstr "" + +#: inc/admin/settings/property.php:161 +msgid "Properties Per Page" +msgstr "" + +#: inc/admin/settings/property.php:162 +msgid "Enter min of properties display in search page" +msgstr "" + +#: inc/admin/settings/property.php:173 +msgid "Show Featured First" +msgstr "" + +#: inc/admin/settings/property.php:175 +msgid "Show featured first in page result, as default Newest is showed" +msgstr "" + +#: inc/admin/settings/property.php:184 +msgid "Minimum of Search Price" +msgstr "" + +#: inc/admin/settings/property.php:185 +msgid "Enter minimum of price for starting search" +msgstr "" + +#: inc/admin/settings/property.php:194 +msgid "Maximum of Search Price" +msgstr "" + +#: inc/admin/settings/property.php:195 +msgid "Enter maximum of price for starting search" +msgstr "" + +#: inc/admin/settings/property.php:206 +msgid "Minimum of Search Aea" +msgstr "" + +#: inc/admin/settings/property.php:207 +msgid "Enter minimum of area for starting search" +msgstr "" + +#: inc/admin/settings/property.php:216 +msgid "Maximum of Search Aea" +msgstr "" + +#: inc/admin/settings/property.php:217 +msgid "Enter maximum of area for starting search" +msgstr "" + +#: inc/admin/settings/property.php:227 +msgid "Search Grid layout" +msgstr "" + +#: inc/admin/settings/property.php:234 +msgid "Search List layout" +msgstr "" + +#: inc/admin/settings/property.php:241 +msgid "Horizontal Search Fields" +msgstr "" + +#: inc/admin/settings/property.php:242 +msgid "Disable or enable fields appearing in search form" +msgstr "" + +#: inc/admin/settings/property.php:250 +msgid "Show Price" +msgstr "" + +#: inc/admin/settings/property.php:260 +msgid "Price input type" +msgstr "" + +#: inc/admin/settings/property.php:262 +msgid "Range slider" +msgstr "" + +#: inc/admin/settings/property.php:263 +#: inc/vendors/elementor/widgets/opalestate-searchbox.php:233 +msgid "Input" +msgstr "" + +#: inc/admin/settings/property.php:283 inc/admin/settings/property.php:284 +msgid "Setting type fields search" +msgstr "" + +#: inc/admin/settings/property.php:309 +msgid "Field type" +msgstr "" + +#: inc/admin/settings/property.php:311 +msgid "Select" +msgstr "" + +#: inc/admin/settings/property.php:312 +msgid "Range" +msgstr "" + +#: inc/admin/settings/property.php:313 +msgid "Text" +msgstr "" + +#: inc/admin/settings/property.php:321 +msgid "Options" +msgstr "" + +#: inc/admin/settings/property.php:322 +msgid "Options value select. Use \",\" to separate values." +msgstr "" + +#: inc/admin/settings/property.php:329 inc/admin/settings/property.php:330 +msgid "Min range" +msgstr "" + +#: inc/admin/settings/property.php:337 inc/admin/settings/property.php:338 +msgid "Max range" +msgstr "" + +#: inc/admin/settings/property.php:345 inc/admin/settings/property.php:346 +msgid "Unit thousand" +msgstr "" + +#: inc/admin/settings/property.php:352 +msgid "Default text" +msgstr "" + +#: inc/admin/settings/property.php:353 +msgid "Default text value" +msgstr "" + +#: inc/admin/settings/property.php:371 +msgid "Enable Request Viewing" +msgstr "" + +#: inc/admin/settings/property.php:372 +msgid "Enable Request Viewing feature in the single property page." +msgstr "" + +#: inc/admin/settings/property.php:383 +msgid "Request Viewing Time Range (minute)" +msgstr "" + +#: inc/admin/settings/property.php:384 +msgid "Time range from 1-60 minutes." +msgstr "" + +#: inc/admin/settings/property.php:397 +msgid "Show Amenities tab" +msgstr "" + +#: inc/admin/settings/property.php:398 +msgid "Show Amenities tab in the single property page." +msgstr "" + +#: inc/admin/settings/property.php:408 +msgid "Hide Unset amenities" +msgstr "" + +#: inc/admin/settings/property.php:409 +msgid "Hide unset amenities. Default: Show unset amenities with disable icons." +msgstr "" + +#: inc/admin/settings/property.php:420 +msgid "Show Facilities tab" +msgstr "" + +#: inc/admin/settings/property.php:421 +msgid "Show Facilities tab in the single property page." +msgstr "" + +#: inc/admin/settings/property.php:432 +msgid "Show Attachments tab" +msgstr "" + +#: inc/admin/settings/property.php:433 +msgid "Show Attachments tab in the single property page." +msgstr "" + +#: inc/admin/settings/property.php:444 +msgid "Show Video tab" +msgstr "" + +#: inc/admin/settings/property.php:445 +msgid "Show Video tab in the single property page." +msgstr "" + +#: inc/admin/settings/property.php:456 +msgid "Show Virtual Tour tab" +msgstr "" + +#: inc/admin/settings/property.php:457 +msgid "Show Virtual Tour tab in the single property page." +msgstr "" + +#: inc/admin/settings/property.php:468 +msgid "Show Map tab" +msgstr "" + +#: inc/admin/settings/property.php:469 +msgid "Show Map tab in the single property page." +msgstr "" + +#: inc/admin/settings/property.php:480 +msgid "Show Nearby tab" +msgstr "" + +#: inc/admin/settings/property.php:481 +msgid "Show Nearby tab in the single property page." +msgstr "" + +#: inc/admin/settings/property.php:492 +msgid "Show Walk Scores tab" +msgstr "" + +#: inc/admin/settings/property.php:493 +msgid "Show Walk Scores tab in the single property page." +msgstr "" + +#: inc/admin/settings/property.php:504 +msgid "Show Apartments tab" +msgstr "" + +#: inc/admin/settings/property.php:505 +msgid "Show Apartments tab in the single property page." +msgstr "" + +#: inc/admin/settings/property.php:516 +msgid "Show Floor Plans tab" +msgstr "" + +#: inc/admin/settings/property.php:517 +msgid "Show Floor Plans tab in the single property page." +msgstr "" + +#: inc/admin/settings/property.php:528 +msgid "Show Views Statistics tab" +msgstr "" + +#: inc/admin/settings/property.php:529 +msgid "Show Views Statistics tab in the single property page." +msgstr "" + +#: inc/admin/settings/property.php:539 +msgid "Views Statistics time limit (days)" +msgstr "" + +#: inc/admin/settings/property.php:540 +msgid "The number of days will be saved to the database." +msgstr "" + +#: inc/admin/settings/property.php:553 +msgid "Show Author box" +msgstr "" + +#: inc/admin/settings/property.php:554 +msgid "Show Author box in the single property page." +msgstr "" + +#: inc/admin/settings/property.php:564 +msgid "Login to show Author box" +msgstr "" + +#: inc/admin/settings/property.php:565 +msgid "Require users login to show Author box" +msgstr "" + +#: inc/admin/settings/property.php:576 +msgid "Show Enquire form" +msgstr "" + +#: inc/admin/settings/property.php:577 +msgid "Show Enquire form in the single property page." +msgstr "" + +#: inc/admin/settings/property.php:588 +msgid "Show Mortgage Calculator" +msgstr "" + +#: inc/admin/settings/property.php:589 +msgid "Show Mortgage Calculator in the single property page." +msgstr "" + +#: inc/admin/settings/property.php:600 +msgid "Related properties layout" +msgstr "" + +#: inc/admin/settings/property.php:601 +msgid "Select a layout for related properties." +msgstr "" + +#: inc/admin/settings/property.php:609 +msgid "Nearby properties layout" +msgstr "" + +#: inc/admin/settings/property.php:610 +msgid "Select a layout for nearby properties." +msgstr "" + +#: inc/api/v1/agency.php:60 inc/api/v1/agency.php:83 inc/api/v1/agent.php:65 +#: inc/api/v1/agent.php:88 inc/api/v1/property.php:64 inc/api/v1/user.php:57 +#: inc/api/v1/user.php:80 msgid "Unique identifier for the resource." msgstr "" -#: inc/api/v1/agent.php:130 inc/api/v1/terms.php:75 inc/api/v1/user.php:672 -#: inc/api/v1/agency.php:134 inc/api/v1/property.php:147 +#: inc/api/v1/agency.php:134 inc/api/v1/agent.php:130 +#: inc/api/v1/property.php:147 inc/api/v1/terms.php:75 inc/api/v1/user.php:672 msgid "Not found!" msgstr "" -#: inc/api/v1/agent.php:157 inc/api/v1/agent.php:215 -#, php-format -msgid "Agent ID: %s does not exist!" -msgstr "" - -#: inc/api/v1/agent.php:161 inc/api/v1/agent.php:219 inc/api/v1/agency.php:163 -#: inc/api/v1/agency.php:277 inc/api/v1/property.php:175 -msgid "Invalid ID." -msgstr "" - -#: inc/api/v1/user.php:166 -msgid "Sorry, you are not allowed to delete this resource." -msgstr "" - -#: inc/api/v1/user.php:283 inc/api/v1/user.php:576 inc/api/v1/user.php:651 -msgid "Invalid resource ID." -msgstr "" - -#. %s: post type -#: inc/api/v1/user.php:620 inc/api/v1/property.php:261 -#, php-format -msgid "Cannot create existing %s." -msgstr "" - -#: inc/api/v1/user.php:691 -msgid "Ensure result set excludes specific IDs." -msgstr "" - -#: inc/api/v1/user.php:700 -msgid "Limit result set to specific IDs." -msgstr "" - -#: inc/api/v1/user.php:709 -msgid "Offset the result set by a specific number of items." -msgstr "" - -#: inc/api/v1/user.php:716 -msgid "Order sort attribute ascending or descending." -msgstr "" - -#: inc/api/v1/user.php:724 -msgid "Sort collection by object attribute." -msgstr "" - -#: inc/api/v1/user.php:736 -msgid "Limit result set to resources with a specific email." -msgstr "" - -#: inc/api/v1/user.php:742 -msgid "Limit result set to resources with a specific role." -msgstr "" - #: inc/api/v1/agency.php:159 inc/api/v1/agency.php:273 #, php-format msgid "Agency ID: %s does not exist!" msgstr "" +#: inc/api/v1/agency.php:163 inc/api/v1/agency.php:277 inc/api/v1/agent.php:161 +#: inc/api/v1/agent.php:219 inc/api/v1/property.php:175 +msgid "Invalid ID." +msgstr "" + +#: inc/api/v1/agent.php:157 inc/api/v1/agent.php:215 +#, php-format +msgid "Agent ID: %s does not exist!" +msgstr "" + #: inc/api/v1/property.php:171 inc/api/v1/property.php:193 #, php-format msgid "Property ID: %s does not exist!" @@ -6511,6 +6174,12 @@ msgstr "" msgid "Not found" msgstr "" +#. %s: post type +#: inc/api/v1/property.php:261 inc/api/v1/user.php:620 +#, php-format +msgid "Cannot create existing %s." +msgstr "" + #: inc/api/v1/property.php:538 inc/api/v1/property.php:546 msgid "Min price" msgstr "" @@ -6539,12 +6208,408 @@ msgstr "" msgid "Geo lat" msgstr "" -#: templates/user/social-login/google-button.php:20 -msgid "Connect with Google" +#: inc/api/v1/user.php:166 +msgid "Sorry, you are not allowed to delete this resource." msgstr "" -#: templates/user/social-login/facebook-button.php:20 -msgid "Connect with Facebook" +#: inc/api/v1/user.php:283 inc/api/v1/user.php:576 inc/api/v1/user.php:651 +msgid "Invalid resource ID." +msgstr "" + +#: inc/api/v1/user.php:691 +msgid "Ensure result set excludes specific IDs." +msgstr "" + +#: inc/api/v1/user.php:700 +msgid "Limit result set to specific IDs." +msgstr "" + +#: inc/api/v1/user.php:709 +msgid "Offset the result set by a specific number of items." +msgstr "" + +#: inc/api/v1/user.php:716 +msgid "Order sort attribute ascending or descending." +msgstr "" + +#: inc/api/v1/user.php:724 +msgid "Sort collection by object attribute." +msgstr "" + +#: inc/api/v1/user.php:736 +msgid "Limit result set to resources with a specific email." +msgstr "" + +#: inc/api/v1/user.php:742 +msgid "Limit result set to resources with a specific role." +msgstr "" + +#: inc/vendors/elementor/class-opalestate-elementor-extended.php:78 +msgid "Opal Estate" +msgstr "" + +#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:155 +msgid "Carousel Options" +msgstr "" + +#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:168 +msgid "Slides to Show" +msgstr "" + +#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:171 +#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:359 +msgid "Default" +msgstr "" + +#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:180 +msgid "Slides to Scroll" +msgstr "" + +#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:182 +msgid "Set how many slides are scrolled per swipe." +msgstr "" + +#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:196 +#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:334 +msgid "Navigation" +msgstr "" + +#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:200 +msgid "Arrows and Dots" +msgstr "" + +#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:201 +#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:343 +msgid "Arrows" +msgstr "" + +#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:202 +#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:406 +msgid "Dots" +msgstr "" + +#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:223 +msgid "Carousel Additional Options" +msgstr "" + +#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:231 +msgid "Pause on Hover" +msgstr "" + +#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:245 +msgid "Autoplay" +msgstr "" + +#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:259 +msgid "Autoplay Speed" +msgstr "" + +#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:269 +msgid "Infinite Loop" +msgstr "" + +#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:283 +msgid "Effect" +msgstr "" + +#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:287 +msgid "Slide" +msgstr "" + +#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:288 +msgid "Fade" +msgstr "" + +#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:300 +msgid "Animation Speed" +msgstr "" + +#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:310 +msgid "Direction" +msgstr "" + +#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:314 +#: inc/vendors/elementor/widgets/opalestate-account-button.php:224 +#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:367 +msgid "Left" +msgstr "" + +#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:315 +#: inc/vendors/elementor/widgets/opalestate-account-button.php:232 +#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:375 +msgid "Right" +msgstr "" + +#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:355 +#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:418 +msgid "Position" +msgstr "" + +#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:360 +#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:423 +msgid "Inside" +msgstr "" + +#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:361 +#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:422 +msgid "Outside" +msgstr "" + +#: inc/vendors/opalmembership/free-package.php:22 +msgid "Free Submission" +msgstr "" + +#: inc/vendors/opalmembership/free-package.php:29 +msgid "Enable Free Submission" +msgstr "" + +#: inc/vendors/opalmembership/free-package.php:30 +msgid "Allow set automatic a free package." +msgstr "" + +#: inc/vendors/opalmembership/free-package.php:39 +msgid "Number Free Listing" +msgstr "" + +#: inc/vendors/opalmembership/free-package.php:40 +msgid "Maximum number of Free Listing that users can submit." +msgstr "" + +#: inc/vendors/opalmembership/free-package.php:49 +msgid "Number Free Featured" +msgstr "" + +#: inc/vendors/opalmembership/free-package.php:50 +msgid "Maximum number of Free Featured that users can set." +msgstr "" + +#: inc/vendors/opalmembership/free-package.php:90 +msgid "Free membership" +msgstr "" + +#: inc/vendors/opalmembership/membership.php:182 +msgid "Could not allow uploading image" +msgstr "" + +#: inc/vendors/opalmembership/membership.php:216 +msgid "Limited listings?" +msgstr "" + +#: inc/vendors/opalmembership/membership.php:220 +msgid "" +"Check if set limited listings. Default: Unlimited listings. Notice: Enter " +"Number Of Properties when set limited listings." +msgstr "" + +#: inc/vendors/opalmembership/membership.php:224 +#: inc/vendors/opalmembership/membership.php:647 +msgid "Number Of Properties" +msgstr "" + +#: inc/vendors/opalmembership/membership.php:233 +#: inc/vendors/opalmembership/membership.php:656 +msgid "" +"Number of properties with this package. If not set it will be unlimited." +msgstr "" + +#: inc/vendors/opalmembership/membership.php:237 +#: inc/vendors/opalmembership/membership.php:660 +msgid "Number Of Featured Properties" +msgstr "" + +#: inc/vendors/opalmembership/membership.php:246 +#: inc/vendors/opalmembership/membership.php:669 +msgid "Number of properties can make featured with this package." +msgstr "" + +#: inc/vendors/opalmembership/membership.php:250 +msgid "Accumulated listings?" +msgstr "" + +#: inc/vendors/opalmembership/membership.php:253 +msgid "" +"Increase Number Of Properties and Number Of Featured Properties from current " +"remaining values when upgrading this package." +msgstr "" + +#: inc/vendors/opalmembership/membership.php:257 +msgid "Enable Expired for properties " +msgstr "" + +#: inc/vendors/opalmembership/membership.php:260 +msgid "Do you want enable expired date for properties?" +msgstr "" + +#: inc/vendors/opalmembership/membership.php:264 +msgid "Expired Property In" +msgstr "" + +#: inc/vendors/opalmembership/membership.php:273 +msgid "Expired a property in. Enter expired number. Example 1, 2, 3" +msgstr "" + +#: inc/vendors/opalmembership/membership.php:277 +msgid "Expired property Date Type" +msgstr "" + +#: inc/vendors/opalmembership/membership.php:281 +msgid "Enter expired date type. Example Day(s), Week(s), Month(s), Year(s)" +msgstr "" + +#: inc/vendors/opalmembership/membership.php:298 +msgid "My Membership" +msgstr "" + +#: inc/vendors/opalmembership/membership.php:307 +msgid "My Invoices" +msgstr "" + +#: inc/vendors/opalmembership/membership.php:316 +msgid "Renew membership" +msgstr "" + +#: inc/vendors/opalmembership/membership.php:500 +msgid "" +"Your membership package is expired or Your package has 0 left listing, " +"please upgrade now." +msgstr "" + +#: inc/vendors/opalmembership/membership.php:571 +#: inc/vendors/opalmembership/membership.php:575 +msgid "(Package) Listings Included:" +msgstr "" + +#: inc/vendors/opalmembership/membership.php:572 +#: inc/vendors/opalmembership/membership.php:576 +msgid "(Package) Featured Included:" +msgstr "" + +#: inc/vendors/opalmembership/membership.php:578 +msgid "Listings Remaining:" +msgstr "" + +#: inc/vendors/opalmembership/membership.php:579 +msgid "Featured Remaining:" +msgstr "" + +#: inc/vendors/opalmembership/membership.php:625 +msgid "Membership Package" +msgstr "" + +#: inc/vendors/opalmembership/membership.php:632 +msgid "Package" +msgstr "" + +#: inc/vendors/opalmembership/membership.php:641 +msgid "Set package ID with -1 as free package." +msgstr "" + +#: inc/vendors/opalmembership/membership.php:642 +msgid "Membership Information" +msgstr "" + +#: inc/vendors/opalmembership/membership.php:678 +#: inc/vendors/opalmembership/membership.php:686 +msgid "Show expired time in double format." +msgstr "" + +#: inc/vendors/social-login/class-opalestate-social-login.php:49 +msgid "Social Login" +msgstr "" + +#: inc/vendors/social-login/class-opalestate-social-login.php:64 +#: inc/vendors/social-login/class-opalestate-social-login.php:65 +msgid "Enable Google login" +msgstr "" + +#: inc/vendors/social-login/class-opalestate-social-login.php:75 +msgid "Google Client ID" +msgstr "" + +#: inc/vendors/social-login/class-opalestate-social-login.php:76 +msgid "Google Client ID is required for Google Login." +msgstr "" + +#: inc/vendors/social-login/class-opalestate-social-login.php:81 +msgid "Google Client Secret" +msgstr "" + +#: inc/vendors/social-login/class-opalestate-social-login.php:82 +msgid "Google Client Secret is required for Google Login." +msgstr "" + +#: inc/vendors/social-login/class-opalestate-social-login.php:87 +msgid "Google API key" +msgstr "" + +#: inc/vendors/social-login/class-opalestate-social-login.php:88 +msgid "Google API key is required for Google Login." +msgstr "" + +#: inc/vendors/social-login/class-opalestate-social-login.php:101 +#: inc/vendors/social-login/class-opalestate-social-login.php:102 +msgid "Enable Facebook login" +msgstr "" + +#: inc/vendors/social-login/class-opalestate-social-login.php:112 +msgid "Facebook Application ID" +msgstr "" + +#: inc/vendors/social-login/class-opalestate-social-login.php:113 +msgid "Facebook Application ID is required for Facebook login." +msgstr "" + +#: inc/vendors/social-login/class-opalestate-social-login.php:118 +msgid "Facebook Secret" +msgstr "" + +#: inc/vendors/social-login/class-opalestate-social-login.php:119 +msgid "Facebook Secret is required for Facebook login." +msgstr "" + +#: templates/search-box/fields/more-options.php:19 +msgid "More Search Options" +msgstr "" + +#: templates/search-box/fields/price-input.php:4 +msgid "Min Price" +msgstr "" + +#: templates/search-box/fields/price-input.php:9 +msgctxt "price input separator" +msgid "-" +msgstr "" + +#: templates/search-box/fields/price-input.php:13 +msgid "Max Price" +msgstr "" + +#: templates/search-box/fields/radius.php:14 +msgid "Radius:" +msgstr "" + +#: templates/search-box/fields/search-city-text.php:24 +msgid "Type City or Area" +msgstr "" + +#: templates/search-box/fields/search-city-text.php:39 +msgid "Show with in" +msgstr "" + +#: templates/search-box/fields/search-city-text.php:41 +msgid "Radius" +msgstr "" + +#: templates/search-box/fields/search-city-text.php:42 +msgid "Of My Location" +msgstr "" + +#: templates/search-box/fields/search-text.php:1 +msgid "Keyword" +msgstr "" + +#: templates/search-box/fields/search-text.php:2 +msgid "Type keyword" msgstr "" #: templates/user/agency/agency-team.php:33 @@ -6586,493 +6651,35 @@ msgstr "" msgid "Agent edit profile form is not avariable" msgstr "" -#: templates/search-box/fields/search-text.php:1 -msgid "Keyword" +#: templates/user/social-login/facebook-button.php:20 +msgid "Connect with Facebook" msgstr "" -#: templates/search-box/fields/search-text.php:2 -msgid "Type keyword" +#: templates/user/social-login/google-button.php:20 +msgid "Connect with Google" msgstr "" -#: templates/search-box/fields/more-options.php:19 -msgid "More Search Options" +#: inc/admin/views/addons/list.php:2 +msgid "Opal Estate Add-ons" msgstr "" -#: templates/search-box/fields/radius.php:14 -msgid "Radius:" +#: inc/admin/views/addons/list.php:4 +msgid "The following Add-ons extend the functionality of Opal Estate." msgstr "" -#: templates/search-box/fields/search-city-text.php:24 -msgid "Type City or Area" -msgstr "" - -#: templates/search-box/fields/search-city-text.php:39 -msgid "Show with in" -msgstr "" - -#: templates/search-box/fields/search-city-text.php:41 -msgid "Radius" -msgstr "" - -#: templates/search-box/fields/search-city-text.php:42 -msgid "Of My Location" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-form-builder.php:40 -msgid "Search: Form Builder" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-form-builder.php:80 -msgid "Agency/Agent Tab Form Search" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-form-builder.php:95 -msgid "Brand Items" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-form-builder.php:100 -msgid "Field" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-form-builder.php:108 -msgid "Column" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-agent-collection.php:54 -msgid "Block: Agents Collection" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-agent-collection.php:94 -msgid "Agents Search Collection" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-agent-collection.php:114 -#: inc/vendors/elementor/widgets/opalestate-agency-collection.php:114 -msgid "Enable Sortable Bar" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-agent-collection.php:122 -#: inc/vendors/elementor/widgets/opalestate-search-agency.php:113 -#: inc/vendors/elementor/widgets/opalestate-search-agents.php:113 -#: inc/vendors/elementor/widgets/opalestate-agency-collection.php:122 -msgid "Item Layout" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-agent-collection.php:134 -#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:116 -#: inc/vendors/elementor/widgets/opalestate-property-collection.php:111 -#: inc/vendors/elementor/widgets/opalestate-category-list.php:114 -#: inc/vendors/elementor/widgets/opalestate-search-agency.php:125 -#: inc/vendors/elementor/widgets/opalestate-city-list.php:114 -#: inc/vendors/elementor/widgets/opalestate-search-agents.php:125 -#: inc/vendors/elementor/widgets/opalestate-split-maps-search.php:97 -#: inc/vendors/elementor/widgets/opalestate-agency-collection.php:134 -msgid "Columns" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-agent-collection.php:150 -#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:127 -#: inc/vendors/elementor/widgets/opalestate-property-collection.php:125 -#: inc/vendors/elementor/widgets/opalestate-category-list.php:130 -#: inc/vendors/elementor/widgets/opalestate-search-agency.php:141 -#: inc/vendors/elementor/widgets/opalestate-city-list.php:130 -#: inc/vendors/elementor/widgets/opalestate-search-agents.php:141 -#: inc/vendors/elementor/widgets/opalestate-split-maps-search.php:112 -#: inc/vendors/elementor/widgets/opalestate-agency-collection.php:150 -msgid "Columns Gap" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-agent-collection.php:171 -#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:148 -#: inc/vendors/elementor/widgets/opalestate-property-collection.php:159 -#: inc/vendors/elementor/widgets/opalestate-category-list.php:152 -#: inc/vendors/elementor/widgets/opalestate-city-list.php:152 -#: inc/vendors/elementor/widgets/opalestate-agency-collection.php:171 -msgid "Enable Carousel" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-agent-collection.php:182 -#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:161 -#: inc/vendors/elementor/widgets/opalestate-property-collection.php:172 -#: inc/vendors/elementor/widgets/opalestate-category-list.php:163 -#: inc/vendors/elementor/widgets/opalestate-city-list.php:163 -#: inc/vendors/elementor/widgets/opalestate-agency-collection.php:182 -msgid "Query" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-agent-collection.php:190 -#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:169 -#: inc/vendors/elementor/widgets/opalestate-property-collection.php:180 -#: inc/vendors/elementor/widgets/opalestate-agency-collection.php:190 -msgid "Posts Per Page" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-agent-collection.php:200 -#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:179 -#: inc/vendors/elementor/widgets/opalestate-property-collection.php:190 -#: inc/vendors/elementor/widgets/opalestate-category-list.php:171 -#: inc/vendors/elementor/widgets/opalestate-city-list.php:171 -#: inc/vendors/elementor/widgets/opalestate-agency-collection.php:200 -msgid "Advanced" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-agent-collection.php:208 -#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:187 -#: inc/vendors/elementor/widgets/opalestate-property-collection.php:198 -#: inc/vendors/elementor/widgets/opalestate-category-list.php:179 -#: inc/vendors/elementor/widgets/opalestate-city-list.php:179 -#: inc/vendors/elementor/widgets/opalestate-agency-collection.php:208 -msgid "Order By" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-agent-collection.php:214 -#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:193 -#: inc/vendors/elementor/widgets/opalestate-property-collection.php:204 -#: inc/vendors/elementor/widgets/opalestate-agency-collection.php:214 -msgid "Menu Order" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-agent-collection.php:215 -#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:194 -#: inc/vendors/elementor/widgets/opalestate-property-collection.php:205 -#: inc/vendors/elementor/widgets/opalestate-agency-collection.php:215 -msgid "Random" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-agent-collection.php:227 -#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:206 -#: inc/vendors/elementor/widgets/opalestate-property-collection.php:217 -#: inc/vendors/elementor/widgets/opalestate-category-list.php:197 -#: inc/vendors/elementor/widgets/opalestate-city-list.php:197 -#: inc/vendors/elementor/widgets/opalestate-agency-collection.php:227 -msgid "ASC" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-agent-collection.php:228 -#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:207 -#: inc/vendors/elementor/widgets/opalestate-property-collection.php:218 -#: inc/vendors/elementor/widgets/opalestate-category-list.php:198 -#: inc/vendors/elementor/widgets/opalestate-city-list.php:198 -#: inc/vendors/elementor/widgets/opalestate-agency-collection.php:228 -msgid "DESC" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-agent-collection.php:246 -#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:225 -#: inc/vendors/elementor/widgets/opalestate-property-collection.php:236 -#: inc/vendors/elementor/widgets/opalestate-agency-collection.php:246 -msgid "Category Operator" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-agent-collection.php:250 -#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:229 -#: inc/vendors/elementor/widgets/opalestate-property-collection.php:240 -#: inc/vendors/elementor/widgets/opalestate-agency-collection.php:250 -msgid "AND" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-agent-collection.php:251 -#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:230 -#: inc/vendors/elementor/widgets/opalestate-property-collection.php:241 -#: inc/vendors/elementor/widgets/opalestate-agency-collection.php:251 -msgid "IN" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-agent-collection.php:252 -#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:231 -#: inc/vendors/elementor/widgets/opalestate-property-collection.php:242 -#: inc/vendors/elementor/widgets/opalestate-agency-collection.php:252 -msgid "NOT IN" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-agent-collection.php:265 -#: inc/vendors/elementor/widgets/opalestate-agent-collection.php:272 -#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:287 -#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:294 -#: inc/vendors/elementor/widgets/opalestate-property-collection.php:298 -#: inc/vendors/elementor/widgets/opalestate-property-collection.php:305 -#: inc/vendors/elementor/widgets/opalestate-agency-collection.php:265 -#: inc/vendors/elementor/widgets/opalestate-agency-collection.php:272 -msgid "Pagination" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-agent-collection.php:277 -#: inc/vendors/elementor/widgets/opalestate-property-collection.php:146 -#: inc/vendors/elementor/widgets/opalestate-property-collection.php:310 -#: inc/vendors/elementor/widgets/opalestate-agency-collection.php:277 -msgid "Show" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-agent-collection.php:285 -#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:309 -#: inc/vendors/elementor/widgets/opalestate-property-collection.php:318 -#: inc/vendors/elementor/widgets/opalestate-agency-collection.php:285 -msgid "Page Limit" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:40 -msgid "Search: Property Results" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:80 -msgid "Show Collection as Default Results" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:87 +#: inc/admin/views/addons/list.php:345 msgid "" -"This is often used for building seach page, it combines with block => Search:" -" Property Form, Search:Map Preview." +"There was an error retrieving the Opalestate Add-ons list from the server. " +"Please try again later." msgstr "" -#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:96 -msgid "Style Grid Layout" +#: inc/vendors/cmb2-plugins/uploader/uploader.php:129 +msgid "Upload" msgstr "" -#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:106 -msgid "Style List Layout" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:253 -#: inc/vendors/elementor/widgets/opalestate-property-collection.php:264 -msgid "Lables" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:273 -#: inc/vendors/elementor/widgets/opalestate-property-collection.php:284 -#: inc/vendors/elementor/widgets/opalestate-city-list.php:206 -msgid "Cities" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:299 -#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:301 -msgid "Numbers" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:300 -#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:301 -msgid "Previous/Next" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:320 -msgid "Shorten" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:335 -msgid "Previous Label" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:336 -msgid "« Previous" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:349 -msgid "Next Label" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:350 -msgid "Next »" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:363 -#: inc/vendors/elementor/widgets/opalestate-account-button.php:220 -msgid "Alignment" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:371 -#: inc/vendors/elementor/widgets/opalestate-account-button.php:228 -msgid "Center" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-property-collection.php:53 -msgid "Block: Property Collection" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-property-collection.php:93 -msgid "Property Collection" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-property-collection.php:101 -msgid "Style Item Layout" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-property-collection.php:150 -msgid "Featured only" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-property-collection.php:151 -msgid "Without Featured" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-searchbox.php:41 -msgid "Search: Property Form " -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-searchbox.php:81 -msgid "Property Search Form" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-searchbox.php:88 -msgid "" -"This is often used for building seach page, it combines with block => Search:" -" Map Preview, Search: Property Results." -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-searchbox.php:158 -msgid "Display More Options" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-searchbox.php:179 -#: inc/vendors/elementor/widgets/opalestate-searchbox.php:299 -#: inc/vendors/elementor/widgets/opalestate-account-button.php:293 -msgid "Normal" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-searchbox.php:208 -#: inc/vendors/elementor/widgets/opalestate-searchbox.php:340 -#: inc/vendors/elementor/widgets/opalestate-account-button.php:383 -msgid "Hover" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-searchbox.php:233 -msgid "Input" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-searchbox.php:253 -#: inc/vendors/elementor/widgets/opalestate-searchbox.php:318 -#: inc/vendors/elementor/widgets/opalestate-searchbox.php:359 -msgid "Background color" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-searchbox.php:265 -msgid "Border color" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-searchbox.php:289 -msgid "Button" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-category-list.php:54 -msgid "Block: Category Listing" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-category-list.php:94 -msgid "Category Collection" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-category-list.php:101 -#: inc/vendors/elementor/widgets/opalestate-search-agency.php:87 -#: inc/vendors/elementor/widgets/opalestate-city-list.php:101 -#: inc/vendors/elementor/widgets/opalestate-search-agents.php:87 -#: inc/vendors/elementor/widgets/opalestate-split-maps-search.php:80 -#: inc/vendors/elementor/widgets/opalestate-split-maps-search.php:87 -msgid "Search Form" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-category-list.php:105 -#: inc/vendors/elementor/widgets/opalestate-search-agency.php:91 -#: inc/vendors/elementor/widgets/opalestate-city-list.php:105 -#: inc/vendors/elementor/widgets/opalestate-search-agents.php:91 -msgid "Advanded" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-category-list.php:106 -#: inc/vendors/elementor/widgets/opalestate-search-agency.php:92 -#: inc/vendors/elementor/widgets/opalestate-city-list.php:106 -#: inc/vendors/elementor/widgets/opalestate-search-agents.php:92 -msgid "Search By Address" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-category-list.php:183 -#: inc/vendors/elementor/widgets/opalestate-city-list.php:183 -msgid "ID" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-category-list.php:185 -#: inc/vendors/elementor/widgets/opalestate-city-list.php:185 -msgid "Count" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-category-list.php:216 -#: inc/vendors/elementor/widgets/opalestate-city-list.php:216 -msgid "Limit" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-category-list.php:217 -#: inc/vendors/elementor/widgets/opalestate-city-list.php:217 -msgid "Maximum number of terms to return." -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-search-agency.php:40 -msgid "Block: Agency - Search Form" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-search-agency.php:80 -msgid "Agency Search Form" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-search-agency.php:100 -#: inc/vendors/elementor/widgets/opalestate-search-agents.php:100 -msgid "Target Submit Page" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-search-agency.php:104 -#: inc/vendors/elementor/widgets/opalestate-search-agents.php:104 -msgid "Current Page" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-search-agency.php:105 -#: inc/vendors/elementor/widgets/opalestate-search-agents.php:105 -msgid "Global Agent Search Page" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-map-top-search.php:40 -msgid "Search: Maps Preview" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-map-top-search.php:80 -msgid "Map Preview Form" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-map-top-search.php:89 -msgid "" -"This is often used for building seach page, it combines with block => Search:" -" Property Form, Search: Property Results." -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-map-top-search.php:99 -msgid "Enable Static Map" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-map-top-search.php:108 -msgid "Map On Right?" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-map-top-search.php:121 -msgid "Map Width %" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-map-top-search.php:144 -msgid "Map Height" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-city-list.php:54 -msgid "Block: City Listing" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-city-list.php:94 -msgid "City Collection" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-search-agents.php:40 -msgid "Block: Agents - Search Form" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-search-agents.php:80 -msgid "Agents Search Form" -msgstr "" - -#: inc/vendors/elementor/widgets/opalestate-split-maps-search.php:40 -msgid "Block: Split Maps Property Search" +#: inc/vendors/cmb2-plugins/uploader/uploader.php:139 +#, php-format +msgid "Allow upload file have size < %s MB and maximum number of files: %s" msgstr "" #: inc/vendors/elementor/widgets/opalestate-account-button.php:44 @@ -7130,6 +6737,22 @@ msgid "" "menus." msgstr "" +#: inc/vendors/elementor/widgets/opalestate-account-button.php:220 +#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:363 +msgid "Alignment" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-account-button.php:228 +#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:371 +msgid "Center" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-account-button.php:293 +#: inc/vendors/elementor/widgets/opalestate-searchbox.php:179 +#: inc/vendors/elementor/widgets/opalestate-searchbox.php:299 +msgid "Normal" +msgstr "" + #: inc/vendors/elementor/widgets/opalestate-account-button.php:300 #: inc/vendors/elementor/widgets/opalestate-account-button.php:390 msgid "Icon Color" @@ -7152,6 +6775,12 @@ msgstr "" msgid "Padding" msgstr "" +#: inc/vendors/elementor/widgets/opalestate-account-button.php:383 +#: inc/vendors/elementor/widgets/opalestate-searchbox.php:208 +#: inc/vendors/elementor/widgets/opalestate-searchbox.php:340 +msgid "Hover" +msgstr "" + #: inc/vendors/elementor/widgets/opalestate-account-button.php:503 msgid "Sign in" msgstr "" @@ -7172,32 +6801,435 @@ msgstr "" msgid "Agencies Search/Collection" msgstr "" -#: inc/vendors/cmb2-plugins/uploader/uploader.php:154 -#, php-format -msgid "Allow upload file have size < %s MB and maximum number of files: %s" +#: inc/vendors/elementor/widgets/opalestate-agency-collection.php:114 +#: inc/vendors/elementor/widgets/opalestate-agent-collection.php:114 +msgid "Enable Sortable Bar" msgstr "" -#: inc/admin/views/addons/list.php:2 -msgid "Opal Estate Add-ons" +#: inc/vendors/elementor/widgets/opalestate-agency-collection.php:122 +#: inc/vendors/elementor/widgets/opalestate-agent-collection.php:122 +#: inc/vendors/elementor/widgets/opalestate-search-agency.php:113 +#: inc/vendors/elementor/widgets/opalestate-search-agents.php:113 +msgid "Item Layout" msgstr "" -#: inc/admin/views/addons/list.php:4 -msgid "The following Add-ons extend the functionality of Opal Estate." +#: inc/vendors/elementor/widgets/opalestate-agency-collection.php:134 +#: inc/vendors/elementor/widgets/opalestate-agent-collection.php:134 +#: inc/vendors/elementor/widgets/opalestate-category-list.php:114 +#: inc/vendors/elementor/widgets/opalestate-city-list.php:114 +#: inc/vendors/elementor/widgets/opalestate-property-collection.php:111 +#: inc/vendors/elementor/widgets/opalestate-search-agency.php:125 +#: inc/vendors/elementor/widgets/opalestate-search-agents.php:125 +#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:116 +#: inc/vendors/elementor/widgets/opalestate-split-maps-search.php:97 +msgid "Columns" msgstr "" -#: inc/admin/views/addons/list.php:345 +#: inc/vendors/elementor/widgets/opalestate-agency-collection.php:150 +#: inc/vendors/elementor/widgets/opalestate-agent-collection.php:150 +#: inc/vendors/elementor/widgets/opalestate-category-list.php:130 +#: inc/vendors/elementor/widgets/opalestate-city-list.php:130 +#: inc/vendors/elementor/widgets/opalestate-property-collection.php:125 +#: inc/vendors/elementor/widgets/opalestate-search-agency.php:141 +#: inc/vendors/elementor/widgets/opalestate-search-agents.php:141 +#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:127 +#: inc/vendors/elementor/widgets/opalestate-split-maps-search.php:112 +msgid "Columns Gap" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-agency-collection.php:171 +#: inc/vendors/elementor/widgets/opalestate-agent-collection.php:171 +#: inc/vendors/elementor/widgets/opalestate-category-list.php:152 +#: inc/vendors/elementor/widgets/opalestate-city-list.php:152 +#: inc/vendors/elementor/widgets/opalestate-property-collection.php:159 +#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:148 +msgid "Enable Carousel" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-agency-collection.php:182 +#: inc/vendors/elementor/widgets/opalestate-agent-collection.php:182 +#: inc/vendors/elementor/widgets/opalestate-category-list.php:163 +#: inc/vendors/elementor/widgets/opalestate-city-list.php:163 +#: inc/vendors/elementor/widgets/opalestate-property-collection.php:172 +#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:161 +msgid "Query" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-agency-collection.php:190 +#: inc/vendors/elementor/widgets/opalestate-agent-collection.php:190 +#: inc/vendors/elementor/widgets/opalestate-property-collection.php:180 +#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:169 +msgid "Posts Per Page" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-agency-collection.php:200 +#: inc/vendors/elementor/widgets/opalestate-agent-collection.php:200 +#: inc/vendors/elementor/widgets/opalestate-category-list.php:171 +#: inc/vendors/elementor/widgets/opalestate-city-list.php:171 +#: inc/vendors/elementor/widgets/opalestate-property-collection.php:190 +#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:179 +msgid "Advanced" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-agency-collection.php:208 +#: inc/vendors/elementor/widgets/opalestate-agent-collection.php:208 +#: inc/vendors/elementor/widgets/opalestate-category-list.php:179 +#: inc/vendors/elementor/widgets/opalestate-city-list.php:179 +#: inc/vendors/elementor/widgets/opalestate-property-collection.php:198 +#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:187 +msgid "Order By" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-agency-collection.php:214 +#: inc/vendors/elementor/widgets/opalestate-agent-collection.php:214 +#: inc/vendors/elementor/widgets/opalestate-property-collection.php:204 +#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:193 +msgid "Menu Order" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-agency-collection.php:215 +#: inc/vendors/elementor/widgets/opalestate-agent-collection.php:215 +#: inc/vendors/elementor/widgets/opalestate-property-collection.php:205 +#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:194 +msgid "Random" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-agency-collection.php:227 +#: inc/vendors/elementor/widgets/opalestate-agent-collection.php:227 +#: inc/vendors/elementor/widgets/opalestate-category-list.php:197 +#: inc/vendors/elementor/widgets/opalestate-city-list.php:197 +#: inc/vendors/elementor/widgets/opalestate-property-collection.php:217 +#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:206 +msgid "ASC" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-agency-collection.php:228 +#: inc/vendors/elementor/widgets/opalestate-agent-collection.php:228 +#: inc/vendors/elementor/widgets/opalestate-category-list.php:198 +#: inc/vendors/elementor/widgets/opalestate-city-list.php:198 +#: inc/vendors/elementor/widgets/opalestate-property-collection.php:218 +#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:207 +msgid "DESC" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-agency-collection.php:246 +#: inc/vendors/elementor/widgets/opalestate-agent-collection.php:246 +#: inc/vendors/elementor/widgets/opalestate-property-collection.php:236 +#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:225 +msgid "Category Operator" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-agency-collection.php:250 +#: inc/vendors/elementor/widgets/opalestate-agent-collection.php:250 +#: inc/vendors/elementor/widgets/opalestate-property-collection.php:240 +#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:229 +msgid "AND" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-agency-collection.php:251 +#: inc/vendors/elementor/widgets/opalestate-agent-collection.php:251 +#: inc/vendors/elementor/widgets/opalestate-property-collection.php:241 +#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:230 +msgid "IN" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-agency-collection.php:252 +#: inc/vendors/elementor/widgets/opalestate-agent-collection.php:252 +#: inc/vendors/elementor/widgets/opalestate-property-collection.php:242 +#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:231 +msgid "NOT IN" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-agency-collection.php:265 +#: inc/vendors/elementor/widgets/opalestate-agency-collection.php:272 +#: inc/vendors/elementor/widgets/opalestate-agent-collection.php:265 +#: inc/vendors/elementor/widgets/opalestate-agent-collection.php:272 +#: inc/vendors/elementor/widgets/opalestate-property-collection.php:298 +#: inc/vendors/elementor/widgets/opalestate-property-collection.php:305 +#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:287 +#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:294 +msgid "Pagination" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-agency-collection.php:277 +#: inc/vendors/elementor/widgets/opalestate-agent-collection.php:277 +#: inc/vendors/elementor/widgets/opalestate-property-collection.php:146 +#: inc/vendors/elementor/widgets/opalestate-property-collection.php:310 +msgid "Show" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-agency-collection.php:285 +#: inc/vendors/elementor/widgets/opalestate-agent-collection.php:285 +#: inc/vendors/elementor/widgets/opalestate-property-collection.php:318 +#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:309 +msgid "Page Limit" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-agent-collection.php:54 +msgid "Block: Agents Collection" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-agent-collection.php:94 +msgid "Agents Search Collection" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-category-list.php:54 +msgid "Block: Category Listing" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-category-list.php:94 +msgid "Category Collection" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-category-list.php:101 +#: inc/vendors/elementor/widgets/opalestate-city-list.php:101 +#: inc/vendors/elementor/widgets/opalestate-search-agency.php:87 +#: inc/vendors/elementor/widgets/opalestate-search-agents.php:87 +#: inc/vendors/elementor/widgets/opalestate-split-maps-search.php:80 +#: inc/vendors/elementor/widgets/opalestate-split-maps-search.php:87 +msgid "Search Form" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-category-list.php:105 +#: inc/vendors/elementor/widgets/opalestate-city-list.php:105 +#: inc/vendors/elementor/widgets/opalestate-search-agency.php:91 +#: inc/vendors/elementor/widgets/opalestate-search-agents.php:91 +msgid "Advanded" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-category-list.php:106 +#: inc/vendors/elementor/widgets/opalestate-city-list.php:106 +#: inc/vendors/elementor/widgets/opalestate-search-agency.php:92 +#: inc/vendors/elementor/widgets/opalestate-search-agents.php:92 +msgid "Search By Address" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-category-list.php:183 +#: inc/vendors/elementor/widgets/opalestate-city-list.php:183 +msgid "ID" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-category-list.php:185 +#: inc/vendors/elementor/widgets/opalestate-city-list.php:185 +msgid "Count" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-category-list.php:216 +#: inc/vendors/elementor/widgets/opalestate-city-list.php:216 +msgid "Limit" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-category-list.php:217 +#: inc/vendors/elementor/widgets/opalestate-city-list.php:217 +msgid "Maximum number of terms to return." +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-city-list.php:54 +msgid "Block: City Listing" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-city-list.php:94 +msgid "City Collection" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-city-list.php:206 +#: inc/vendors/elementor/widgets/opalestate-property-collection.php:284 +#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:273 +msgid "Cities" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-form-builder.php:40 +msgid "Search: Form Builder" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-form-builder.php:80 +msgid "Agency/Agent Tab Form Search" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-form-builder.php:95 +msgid "Brand Items" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-form-builder.php:100 +msgid "Field" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-form-builder.php:108 +msgid "Column" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-map-top-search.php:40 +msgid "Search: Maps Preview" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-map-top-search.php:80 +msgid "Map Preview Form" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-map-top-search.php:89 msgid "" -"There was an error retrieving the Opalestate Add-ons list from the server. " -"Please try again later." +"This is often used for building seach page, it combines with block => Search:" +" Property Form, Search: Property Results." msgstr "" -#: inc/vendors/cmb2-plugins/custom-fields/user/user.php:45 -msgid "add" +#: inc/vendors/elementor/widgets/opalestate-map-top-search.php:99 +msgid "Enable Static Map" msgstr "" -#: inc/vendors/cmb2-plugins/custom-fields/user/user.php:59 -#: inc/vendors/cmb2-plugins/custom-fields/user/user.php:72 -msgid "Are you sure to delete this" +#: inc/vendors/elementor/widgets/opalestate-map-top-search.php:108 +msgid "Map On Right?" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-map-top-search.php:121 +msgid "Map Width %" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-map-top-search.php:144 +msgid "Map Height" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-property-collection.php:53 +msgid "Block: Property Collection" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-property-collection.php:93 +msgid "Property Collection" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-property-collection.php:101 +msgid "Style Item Layout" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-property-collection.php:150 +msgid "Featured only" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-property-collection.php:151 +msgid "Without Featured" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-property-collection.php:264 +#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:253 +msgid "Lables" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-search-agency.php:40 +msgid "Block: Agency - Search Form" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-search-agency.php:80 +msgid "Agency Search Form" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-search-agency.php:100 +#: inc/vendors/elementor/widgets/opalestate-search-agents.php:100 +msgid "Target Submit Page" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-search-agency.php:104 +#: inc/vendors/elementor/widgets/opalestate-search-agents.php:104 +msgid "Current Page" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-search-agency.php:105 +#: inc/vendors/elementor/widgets/opalestate-search-agents.php:105 +msgid "Global Agent Search Page" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-search-agents.php:40 +msgid "Block: Agents - Search Form" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-search-agents.php:80 +msgid "Agents Search Form" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:40 +msgid "Search: Property Results" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:80 +msgid "Show Collection as Default Results" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:87 +msgid "" +"This is often used for building seach page, it combines with block => Search:" +" Property Form, Search:Map Preview." +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:96 +msgid "Style Grid Layout" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:106 +msgid "Style List Layout" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:299 +#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:301 +msgid "Numbers" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:300 +#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:301 +msgid "Previous/Next" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:320 +msgid "Shorten" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:335 +msgid "Previous Label" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:336 +msgid "« Previous" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:349 +msgid "Next Label" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:350 +msgid "Next »" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-searchbox.php:41 +msgid "Search: Property Form " +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-searchbox.php:81 +msgid "Property Search Form" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-searchbox.php:88 +msgid "" +"This is often used for building seach page, it combines with block => Search:" +" Map Preview, Search: Property Results." +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-searchbox.php:158 +msgid "Display More Options" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-searchbox.php:253 +#: inc/vendors/elementor/widgets/opalestate-searchbox.php:318 +#: inc/vendors/elementor/widgets/opalestate-searchbox.php:359 +msgid "Background color" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-searchbox.php:265 +msgid "Border color" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-searchbox.php:289 +msgid "Button" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-split-maps-search.php:40 +msgid "Block: Split Maps Property Search" msgstr "" #: inc/vendors/cmb2-plugins/custom-fields/map/map.php:46 @@ -7219,6 +7251,15 @@ msgid "" "Key, then put the key in plugin setting." msgstr "" +#: inc/vendors/cmb2-plugins/custom-fields/user/user.php:45 +msgid "add" +msgstr "" + +#: inc/vendors/cmb2-plugins/custom-fields/user/user.php:59 +#: inc/vendors/cmb2-plugins/custom-fields/user/user.php:72 +msgid "Are you sure to delete this" +msgstr "" + #. Name of the plugin msgid "Opal Estate Pro" msgstr "" diff --git a/opal-estate-pro.php b/opal-estate-pro.php index da3b90c8..4289ab12 100755 --- a/opal-estate-pro.php +++ b/opal-estate-pro.php @@ -3,7 +3,7 @@ * Plugin Name: Opal Estate Pro * Plugin URI: https://wpdocs.gitbook.io/opal-estate/ * Description: Opal Real Estate Plugin is an ideal solution and brilliant choice for you to set up a professional estate website. - * Version: 1.4.1 + * Version: 1.4.6 * Author: WPOPAL * Author URI: http://www.wpopal.com * Requires at least: 4.9 @@ -150,7 +150,7 @@ if ( ! class_exists( 'OpalEstate' ) ) { */ public function __clone() { // Cloning instances of the class is forbidden - _doing_it_wrong( __FUNCTION__, esc_html__( 'Cheatin’ huh?', 'opalestate-pro' ), '1.3.8' ); + _doing_it_wrong( __FUNCTION__, esc_html__( 'Cheatin’ huh?', 'opalestate-pro' ), '1.4.6' ); } /** @@ -159,7 +159,7 @@ if ( ! class_exists( 'OpalEstate' ) ) { public function setup_constants() { // Plugin version if ( ! defined( 'OPALESTATE_VERSION' ) ) { - define( 'OPALESTATE_VERSION', '1.3.8' ); + define( 'OPALESTATE_VERSION', '1.4.6' ); } // Plugin Folder Path @@ -264,7 +264,7 @@ if ( ! class_exists( 'OpalEstate' ) ) { ] ); - // agent + // agent $this->includes( [ 'agent/class-opalestate-agent-posttype.php', @@ -275,7 +275,7 @@ if ( ! class_exists( 'OpalEstate' ) ) { ] ); - // agent + // agent $this->includes( [ 'agency/class-opalestate-agency-posttype.php', @@ -341,7 +341,7 @@ if ( ! class_exists( 'OpalEstate' ) ) { ] ); - //// enable or disable submission //// + //// enable or disable submission //// if ( opalestate_options( 'enable_submission', 'on' ) == 'on' ) { $this->includes( [ diff --git a/readme.txt b/readme.txt index 2c46868b..83b0a60d 100755 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Donate link: https://wpdocs.gitbook.io/opal-estate/ Tags: estate, property, opalestate, house for rent, agency for lease, estate submission, agents estate property, property marketplace Requires at least: 4.9 Tested up to: 5.3.2 -Stable tag: 1.4.1 +Stable tag: 1.4.3.1 License: GPLv3 License URI: http://www.gnu.org/licenses/gpl-3.0.html @@ -81,7 +81,7 @@ The plugin will not make you disappointed with ease of use, friendly & flexible = More Features = * Search properties: Properties List, List Sidebar, Grid, Grid Sidebar, Search result, Category, Location, Type, Submit Properties.. -* Support Membership Packages: There are many different packages with specific features suitable for users to choose the best one for their business goal. +* Support Membership Packages: There are many different packages with specific features suitable for users to choose the best one for their business goal. * Search Agents: This plugin supports filter function for selecting location, type and price of experienced agents conveniently * Quick Search: Users can quickly search properties or agents based on filter location, type, packing,bathroom, bedroom.. * Search Google Map @@ -118,7 +118,7 @@ The plugin will not make you disappointed with ease of use, friendly & flexible * Account Button = WHAT IS NEW IN PRO VERSION = -* Suport API use to develop great web app and mobile app . +* Suport API use to develop great web app and mobile app . * Agency Agency and allow edit profile with user having Opal Estate Agency Role. Display Properties and members of agency * Implement Google Map with custom styles. * Implement Google Capcha for all Email Form @@ -147,7 +147,7 @@ This section describes how to install the plugin and get it working. 3. Use the Properties->Settings screen to configure the plugin -== Frequently Asked Questions == +== Frequently Asked Questions == * Detailed guide to install and customize: [documentation](https://wpopal-2.gitbook.io/opal-estate/ "Visit the Plugin docs") * Video guide and tutorials how to set up @@ -156,6 +156,30 @@ This section describes how to install the plugin and get it working. * System tickets support 24/7 available : [free support](https://wpopal.ticksy.com/ "Visit the Plugin support Page") == Changelog == += 1.4.6 - 2020-04-22 = +* Fixes - Search queries. +* Removed - Sticky single property sidebar. + += 1.4.5 - 2020-04-20 = +* Fixes - Templates. + += 1.4.4 - 2020-04-17 = +* Fixes - Feature properties in submission. +* Added - Mortgage hooks. + += 1.4.3.1 - 2020-04-10 = +* Fixes - Translate strings. + += 1.4.3 - 2020-04-08 = +* Fixes - Google style in Single property page. +* Added - Autocomplete Restrictions setting. + += 1.4.2.1 - 2020-03-31 = +* Fixes - Sanitize data + += 1.4.2 - 2020-03-31 = +* Fixes - Upload images in submission page + = 1.4.1 - 2020-03-25 = * Fixes - Split map AJAX diff --git a/templates/content-agent-grid.php b/templates/content-agent-grid.php index e4dd7d23..ecf9b00c 100755 --- a/templates/content-agent-grid.php +++ b/templates/content-agent-grid.php @@ -66,7 +66,7 @@ $agent = new OpalEstate_Agent(); get_meta( 'fax' ); ?>
- +
@@ -117,4 +117,4 @@ $agent = new OpalEstate_Agent();
- + diff --git a/templates/content-user-grid.php b/templates/content-user-grid.php index 74f2cda3..5523f474 100755 --- a/templates/content-user-grid.php +++ b/templates/content-user-grid.php @@ -74,7 +74,7 @@ if ( $agent_id ) { @@ -84,7 +84,7 @@ if ( $agent_id ) { @@ -94,7 +94,7 @@ if ( $agent_id ) { @@ -102,7 +102,7 @@ if ( $agent_id ) { get_meta( 'fax' ); ?>
- +
@@ -111,7 +111,7 @@ if ( $agent_id ) { @@ -145,4 +145,4 @@ if ( $agent_id ) {
- + diff --git a/templates/parts/mortgage-calculator.php b/templates/parts/mortgage-calculator.php index 13c535ce..8737be3e 100755 --- a/templates/parts/mortgage-calculator.php +++ b/templates/parts/mortgage-calculator.php @@ -26,19 +26,17 @@ wp_localize_script( 'opalestate-scripts', 'opalestate_mortgage', ] ); -$max_price = intval( $property && $property->get_price() ) ? $property->get_price() : opalestate_options( 'search_max_price', 10000000 ); -$max_price = str_replace( ",", "", $max_price ); -$max_price = str_replace( ".", "", $max_price ); +$max_price = (int) ( $property && $property->get_price() ) ? $property->get_price() : opalestate_options( 'search_max_price', 10000000 ); +$max_price = str_replace( [ ",", "." ], "", $max_price ); $start_price = $max_price; -$max_price = $max_price + ( $max_price * 20 / 100 ); +$max_price = apply_filters( 'opalestate_mortgage_max_price', $max_price + ( $max_price * 20 / 100 ) ); - -$rate_start = 10; +$rate_start = apply_filters( 'opalestate_mortgage_rate_start', 10 ); $interest_rate_start = $rate_start / 100; -$years_start = 2; -$deposit_start = $max_price / 2; +$years_start = apply_filters( 'opalestate_mortgage_years_start', 2 ); +$deposit_start = apply_filters( 'opalestate_mortgage_deposit_start', $max_price / 2 ); $loan_amount = $max_price - $deposit_start; $interest_rate_month = $interest_rate_start / 12; $number_of_payments_month = $years_start * 12; @@ -97,7 +95,7 @@ $data_years = [ 'step' => 0.5, ]; -if ( opalestate_options( 'currency_position', 'before' ) == 'before' ) { +if ( opalestate_options( 'currency_position', 'before' ) === 'before' ) { $data_sale_price['unit_position'] = 'prefix'; $data_deposit['unit_position'] = 'prefix'; } diff --git a/templates/single-agency/author-box.php b/templates/single-agency/author-box.php index e8b833ee..195ff1a0 100755 --- a/templates/single-agency/author-box.php +++ b/templates/single-agency/author-box.php @@ -106,7 +106,7 @@ $address = $agency->get_meta( 'address' ); ?>
- +
diff --git a/templates/single-agent/author-box.php b/templates/single-agent/author-box.php index c3a6d2e5..55a85dd7 100755 --- a/templates/single-agent/author-box.php +++ b/templates/single-agent/author-box.php @@ -62,7 +62,7 @@ $agent = new OpalEstate_Agent();
- +
diff --git a/templates/single-property/user/author-member-box.php b/templates/single-property/user/author-member-box.php index 441fff31..3cc6ad5a 100755 --- a/templates/single-property/user/author-member-box.php +++ b/templates/single-property/user/author-member-box.php @@ -1,4 +1,4 @@ -
- + @@ -29,13 +29,13 @@ - +
-
- + +

@@ -50,7 +50,7 @@ @@ -59,21 +59,21 @@
- +
- +
- +
@@ -82,7 +82,7 @@ diff --git a/templates/user/dashboard.php b/templates/user/dashboard.php index 78b5f3ed..5130972f 100755 --- a/templates/user/dashboard.php +++ b/templates/user/dashboard.php @@ -3,7 +3,7 @@
-
+
diff --git a/templates/user/favorite-properties.php b/templates/user/favorite-properties.php index 77c77f6d..366b4d4c 100755 --- a/templates/user/favorite-properties.php +++ b/templates/user/favorite-properties.php @@ -1,29 +1,29 @@ have_posts() ): ?>
- -
+ +
have_posts() ) : $loop->the_post(); global $post; ?> - +
- +
-
+
max_num_pages ); ?> -
+
-
+
-

No Item In Favorite

+

-
-
+
+
- \ No newline at end of file +