From 8851716ddcec99d778002c5f816b442cf4592ce0 Mon Sep 17 00:00:00 2001 From: Chung Pham Date: Thu, 20 Aug 2020 17:31:10 +0700 Subject: [PATCH] update --- Gulpfile.js | 1 - gruntfile.js | 41 + inc/admin/class-user.php | 2 +- inc/admin/views/addons/list.php | 66 +- .../cmb2-plugins/cmb2/includes/CMB2.php | 4 +- .../cmb2-plugins/cmb2/includes/CMB2_Ajax.php | 6 +- .../cmb2-plugins/cmb2/includes/CMB2_Base.php | 12 +- .../cmb2-plugins/cmb2/includes/CMB2_Field.php | 10 +- .../cmb2/includes/CMB2_Field_Display.php | 2 +- .../cmb2/includes/CMB2_Hookup_Base.php | 4 +- .../cmb2-plugins/cmb2/includes/CMB2_JS.php | 60 +- .../cmb2/includes/CMB2_Options.php | 2 +- .../cmb2/includes/CMB2_Options_Hookup.php | 6 +- .../cmb2-plugins/cmb2/includes/CMB2_Types.php | 6 +- .../cmb2/includes/CMB2_hookup.php | 6 +- .../cmb2/includes/helper-functions.php | 4 +- .../rest-api/CMB2_REST_Controller.php | 12 +- .../rest-api/CMB2_REST_Controller_Boxes.php | 6 +- .../rest-api/CMB2_REST_Controller_Fields.php | 18 +- .../cmb2/includes/shim/WP_REST_Controller.php | 34 +- .../cmb2/includes/types/CMB2_Type_Base.php | 4 +- .../cmb2/includes/types/CMB2_Type_File.php | 2 +- .../includes/types/CMB2_Type_File_Base.php | 8 +- .../includes/types/CMB2_Type_File_List.php | 2 +- .../types/CMB2_Type_Taxonomy_Base.php | 2 +- languages/opalestate-pro.pot | 9902 +++++++++-------- opal-estate-pro.php | 6 +- readme.txt | 5 +- templates/parts/membership-warning.php | 4 +- templates/parts/pagination.php | 4 +- templates/single-property/sharebox.php | 2 +- templates/submission/submission-form.php | 5 +- templates/user/messages.php | 4 +- test.txt | 246 - 34 files changed, 5463 insertions(+), 5035 deletions(-) create mode 100755 gruntfile.js mode change 100755 => 100644 languages/opalestate-pro.pot delete mode 100755 test.txt diff --git a/Gulpfile.js b/Gulpfile.js index 9b912c8e..12a5fc02 100755 --- a/Gulpfile.js +++ b/Gulpfile.js @@ -105,7 +105,6 @@ gulp.task('babel-admin-opaljob', function () { }); - // Deleting any file inside the /dist folder gulp.task( 'clean-dist', function() { // return del( [paths.dist + '/**'] ); diff --git a/gruntfile.js b/gruntfile.js new file mode 100755 index 00000000..1a00d91a --- /dev/null +++ b/gruntfile.js @@ -0,0 +1,41 @@ +/** + * Created by chung Pham on 08/18/20. + */ +'use strict'; + +const folderPlugin = ''; +const textdomainPlugin = 'opalestate-pro'; +const path = require('path'); + +module.exports = function (grunt) { + var deploy = { + // pkg: grunt.file.readJSON('package.json'), + addtextdomain: { + plugin: { + options: { + textdomain: textdomainPlugin, + updateDomains: true, + }, + src: [path.join(folderPlugin, '**/*.php')] + } + }, + makepot: { + plugin: { + options: { + cwd: folderPlugin, + domainPath : 'languages', + potFilename: 'opalestate-pro.pot', + type : 'wp-plugin', + processPot: function (pot, options) { + pot.headers['language-team'] = 'Themelexus Team '; + return pot; + }, + } + }, + } + } + + grunt.initConfig(deploy); + + grunt.loadNpmTasks('grunt-wp-i18n'); +}; diff --git a/inc/admin/class-user.php b/inc/admin/class-user.php index 5c44bdf9..675f05fc 100755 --- a/inc/admin/class-user.php +++ b/inc/admin/class-user.php @@ -137,7 +137,7 @@ class OpalEstate_Admin_User { */ $cmb_user = new_cmb2_box( [ 'id' => $prefix . 'edit', - 'title' => esc_html__( 'User Profile Metabox', 'cmb2' ), // Doesn't output for user boxes + 'title' => esc_html__( 'User Profile Metabox', 'opalestate-pro' ), // Doesn't output for user boxes 'object_types' => [ 'user' ], // Tells CMB2 to use user_meta vs post_meta 'show_names' => true, 'new_user_section' => 'add-new-user', // where form will show on new user page. 'add-existing-user' is only other valid option. diff --git a/inc/admin/views/addons/list.php b/inc/admin/views/addons/list.php index ca41b666..06f17751 100755 --- a/inc/admin/views/addons/list.php +++ b/inc/admin/views/addons/list.php @@ -36,9 +36,9 @@ ]; $plugins_group_titles = [ - 'Performance' => _x( 'Performance', 'Plugin installer group title' ), - 'Social' => _x( 'Social', 'Plugin installer group title' ), - 'Tools' => _x( 'Tools', 'Plugin installer group title' ), + 'Performance' => _x( 'Performance', 'Plugin installer group title', 'opalestate-pro' ), + 'Social' => _x( 'Social', 'Plugin installer group title', 'opalestate-pro' ), + 'Tools' => _x( 'Tools', 'Plugin installer group title', 'opalestate-pro' ), ]; $group = null; ?> @@ -82,7 +82,7 @@ $author = wp_kses( $plugin['author'], $plugins_allowedtags ); if ( ! empty( $author ) ) { - $author = ' ' . sprintf( __( 'By %s' ), $author ) . ''; + $author = ' ' . sprintf( __( 'By %s', 'opalestate-pro' ), $author ) . ''; } $requires_php = isset( $plugin['requires_php'] ) ? $plugin['requires_php'] : null; @@ -106,14 +106,14 @@ esc_attr( $plugin['slug'] ), esc_url( $status['url'] ), /* translators: %s: plugin name and version */ - esc_attr( sprintf( __( 'Install %s now' ), $name ) ), + esc_attr( sprintf( __( 'Install %s now', 'opalestate-pro' ), $name ) ), esc_attr( $name ), - __( 'Install Now' ) + __( 'Install Now', 'opalestate-pro' ) ); } else { $action_links[] = sprintf( '', - _x( 'Cannot Install', 'plugin' ) + _x( 'Cannot Install', 'plugin', 'opalestate-pro' ) ); } } @@ -128,14 +128,14 @@ esc_attr( $plugin['slug'] ), esc_url( $status['url'] ), /* translators: %s: plugin name and version */ - esc_attr( sprintf( __( 'Update %s now' ), $name ) ), + esc_attr( sprintf( __( 'Update %s now', 'opalestate-pro' ), $name ) ), esc_attr( $name ), - __( 'Update Now' ) + __( 'Update Now', 'opalestate-pro' ) ); } else { $action_links[] = sprintf( '', - _x( 'Cannot Update', 'plugin' ) + _x( 'Cannot Update', 'plugin', 'opalestate-pro' ) ); } } @@ -146,12 +146,12 @@ if ( is_plugin_active( $status['file'] ) ) { $action_links[] = sprintf( '', - _x( 'Active', 'plugin' ) + _x( 'Active', 'plugin', 'opalestate-pro' ) ); } elseif ( current_user_can( 'activate_plugin', $status['file'] ) ) { - $button_text = __( 'Activate' ); + $button_text = __( 'Activate', 'opalestate-pro' ); /* translators: %s: plugin name */ - $button_label = _x( 'Activate %s', 'plugin' ); + $button_label = _x( 'Activate %s', 'plugin', 'opalestate-pro' ); $activate_url = add_query_arg( [ '_wpnonce' => wp_create_nonce( 'activate-plugin_' . $status['file'] ), @@ -162,9 +162,9 @@ ); if ( is_network_admin() ) { - $button_text = __( 'Network Activate' ); + $button_text = __( 'Network Activate', 'opalestate-pro' ); /* translators: %s: plugin name */ - $button_label = _x( 'Network Activate %s', 'plugin' ); + $button_label = _x( 'Network Activate %s', 'plugin', 'opalestate-pro' ); $activate_url = add_query_arg( [ 'networkwide' => 1 ], $activate_url ); } @@ -177,7 +177,7 @@ } else { $action_links[] = sprintf( '', - _x( 'Installed', 'plugin' ) + _x( 'Installed', 'plugin', 'opalestate-pro' ) ); } break; @@ -193,9 +193,9 @@ '%s', esc_url( $details_link ), /* translators: %s: plugin name and version */ - esc_attr( sprintf( __( 'More information about %s' ), $name ) ), + esc_attr( sprintf( __( 'More information about %s', 'opalestate-pro' ), $name ) ), esc_attr( $name ), - __( 'More Details' ) + __( 'More Details', 'opalestate-pro' ) ); if ( ! empty( $plugin['icons']['svg'] ) ) { @@ -225,11 +225,11 @@ if ( ! $compatible_php || ! $compatible_wp ) { echo '

'; if ( ! $compatible_php && ! $compatible_wp ) { - _e( 'This plugin doesn’t work with your versions of WordPress and PHP.' ); + _e( 'This plugin doesn’t work with your versions of WordPress and PHP.', 'opalestate-pro' ); if ( current_user_can( 'update_core' ) && current_user_can( 'update_php' ) ) { printf( /* translators: 1: "Update WordPress" screen URL, 2: "Update PHP" page URL */ - ' ' . __( 'Please update WordPress, and then learn more about updating PHP.' ), + ' ' . __( 'Please update WordPress, and then learn more about updating PHP.', 'opalestate-pro' ), self_admin_url( 'update-core.php' ), esc_url( wp_get_update_php_url() ) ); @@ -237,32 +237,32 @@ } elseif ( current_user_can( 'update_core' ) ) { printf( /* translators: %s: "Update WordPress" screen URL */ - ' ' . __( 'Please update WordPress.' ), + ' ' . __( 'Please update WordPress.', 'opalestate-pro' ), self_admin_url( 'update-core.php' ) ); } elseif ( current_user_can( 'update_php' ) ) { printf( /* translators: %s: "Update PHP" page URL */ - ' ' . __( 'Learn more about updating PHP.' ), + ' ' . __( 'Learn more about updating PHP.', 'opalestate-pro' ), esc_url( wp_get_update_php_url() ) ); wp_update_php_annotation( '

', '' ); } } elseif ( ! $compatible_wp ) { - _e( 'This plugin doesn’t work with your version of WordPress.' ); + _e( 'This plugin doesn’t work with your version of WordPress.', 'opalestate-pro' ); if ( current_user_can( 'update_core' ) ) { printf( /* translators: %s: "Update WordPress" screen URL */ - ' ' . __( 'Please update WordPress.' ), + ' ' . __( 'Please update WordPress.', 'opalestate-pro' ), self_admin_url( 'update-core.php' ) ); } } elseif ( ! $compatible_php ) { - _e( 'This plugin doesn’t work with your version of PHP.' ); + _e( 'This plugin doesn’t work with your version of PHP.', 'opalestate-pro' ); if ( current_user_can( 'update_php' ) ) { printf( /* translators: %s: "Update PHP" page URL */ - ' ' . __( 'Learn more about updating PHP.' ), + ' ' . __( 'Learn more about updating PHP.', 'opalestate-pro' ), esc_url( wp_get_update_php_url() ) ); wp_update_php_annotation( '

', '' ); @@ -306,32 +306,32 @@

- +
= 1000000 ) { $active_installs_millions = floor( $plugin['active_installs'] / 1000000 ); $active_installs_text = sprintf( - _nx( '%s+ Million', '%s+ Million', $active_installs_millions, 'Active plugin installations' ), + _nx( '%s+ Million', '%s+ Million', $active_installs_millions, 'Active plugin installations', 'opalestate-pro' ), number_format_i18n( $active_installs_millions ) ); } elseif ( 0 == $plugin['active_installs'] ) { - $active_installs_text = _x( 'Less Than 10', 'Active plugin installations' ); + $active_installs_text = _x( 'Less Than 10', 'Active plugin installations', 'opalestate-pro' ); } else { $active_installs_text = number_format_i18n( $plugin['active_installs'] ) . '+'; } - printf( __( '%s Active Installations' ), $active_installs_text ); + printf( __( '%s Active Installations', 'opalestate-pro' ), $active_installs_text ); ?>
' . __( 'Untested with your version of WordPress' ) . ''; + echo '' . __( 'Untested with your version of WordPress', 'opalestate-pro' ) . ''; } elseif ( ! $compatible_wp ) { - echo '' . __( 'Incompatible with your version of WordPress' ) . ''; + echo '' . __( 'Incompatible with your version of WordPress', 'opalestate-pro' ) . ''; } else { - echo '' . __( 'Compatible with your version of WordPress' ) . ''; + echo '' . __( 'Compatible with your version of WordPress', 'opalestate-pro' ) . ''; } ?>
diff --git a/inc/vendors/cmb2-plugins/cmb2/includes/CMB2.php b/inc/vendors/cmb2-plugins/cmb2/includes/CMB2.php index 3ad14e57..e6710777 100755 --- a/inc/vendors/cmb2-plugins/cmb2/includes/CMB2.php +++ b/inc/vendors/cmb2-plugins/cmb2/includes/CMB2.php @@ -196,7 +196,7 @@ class CMB2 extends CMB2_Base { public function __construct( $config, $object_id = 0 ) { if ( empty( $config['id'] ) ) { - wp_die( esc_html__( 'Metabox configuration is required to have an ID parameter.', 'cmb2' ) ); + wp_die( esc_html__( 'Metabox configuration is required to have an ID parameter.', 'opalestate-pro' ) ); } $this->cmb_id = $config['id']; @@ -600,7 +600,7 @@ class CMB2 extends CMB2_Base { } echo ' -

+

', $field_group->replace_hash( $field_group->options( 'group_title' ) ), '

'; diff --git a/inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Ajax.php b/inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Ajax.php index 17c3f2cb..ba26c753 100755 --- a/inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Ajax.php +++ b/inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Ajax.php @@ -72,7 +72,7 @@ class CMB2_Ajax { // Send back error if empty. if ( empty( $oembed_string ) ) { - wp_send_json_error( '

' . esc_html__( 'Please Try Again', 'cmb2' ) . '

' ); + wp_send_json_error( '

' . esc_html__( 'Please Try Again', 'opalestate-pro' ) . '

' ); } // Set width of embed. @@ -178,7 +178,7 @@ class CMB2_Ajax { // Send back our embed. if ( $oembed['embed'] && $oembed['embed'] != $oembed['fallback'] ) { - return ''; + return ''; } // Otherwise, send back error info that no oEmbeds were found. @@ -186,7 +186,7 @@ class CMB2_Ajax { '

%s

', sprintf( /* translators: 1: results for. 2: link to codex.wordpress.org/Embeds */ - esc_html__( 'No oEmbed Results Found for %1$s. View more info at %2$s.', 'cmb2' ), + esc_html__( 'No oEmbed Results Found for %1$s. View more info at %2$s.', 'opalestate-pro' ), $oembed['fallback'], 'codex.wordpress.org/Embeds' ) diff --git a/inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Base.php b/inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Base.php index e84ce4b0..2f085d9e 100755 --- a/inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Base.php +++ b/inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Base.php @@ -419,11 +419,11 @@ abstract class CMB2_Base { switch ( $message ) { case self::DEPRECATED_PARAM: - $message = sprintf( esc_html__( 'The "%1$s" field parameter has been deprecated in favor of the "%2$s" parameter.', 'cmb2' ), $args[3], $args[4] ); + $message = sprintf( esc_html__( 'The "%1$s" field parameter has been deprecated in favor of the "%2$s" parameter.', 'opalestate-pro' ), $args[3], $args[4] ); break; case self::DEPRECATED_CB_PARAM: - $message = sprintf( esc_html__( 'Using the "%1$s" field parameter as a callback has been deprecated in favor of the "%2$s" parameter.', 'cmb2' ), $args[3], $args[4] ); + $message = sprintf( esc_html__( 'Using the "%1$s" field parameter as a callback has been deprecated in favor of the "%2$s" parameter.', 'opalestate-pro' ), $args[3], $args[4] ); break; default: @@ -453,9 +453,9 @@ abstract class CMB2_Base { if ( defined( 'WP_DEBUG' ) && WP_DEBUG && apply_filters( 'deprecated_argument_trigger_error', true ) ) { if ( function_exists( '__' ) ) { if ( ! is_null( $message ) ) { - trigger_error( sprintf( esc_html__( '%1$s was called with a parameter that is deprecated since version %2$s! %3$s', 'cmb2' ), $function, $version, $message ) ); + trigger_error( sprintf( esc_html__( '%1$s was called with a parameter that is deprecated since version %2$s! %3$s', 'opalestate-pro' ), $function, $version, $message ) ); } else { - trigger_error( sprintf( esc_html__( '%1$s was called with a parameter that is deprecated since version %2$s with no alternative available.', 'cmb2' ), $function, $version ) ); + trigger_error( sprintf( esc_html__( '%1$s was called with a parameter that is deprecated since version %2$s with no alternative available.', 'opalestate-pro' ), $function, $version ) ); } } else { if ( ! is_null( $message ) ) { @@ -488,7 +488,7 @@ abstract class CMB2_Base { case 'object_type': return $this->{$field}; default: - throw new Exception( sprintf( esc_html__( 'Invalid %1$s property: %2$s', 'cmb2' ), __CLASS__, $field ) ); + throw new Exception( sprintf( esc_html__( 'Invalid %1$s property: %2$s', 'opalestate-pro' ), __CLASS__, $field ) ); } } @@ -506,7 +506,7 @@ abstract class CMB2_Base { $object_class = strtolower( get_class( $this ) ); if ( ! has_filter( "{$object_class}_inherit_{$method}" ) ) { - throw new Exception( sprintf( esc_html__( 'Invalid %1$s method: %2$s', 'cmb2' ), get_class( $this ), $method ) ); + throw new Exception( sprintf( esc_html__( 'Invalid %1$s method: %2$s', 'opalestate-pro' ), get_class( $this ), $method ) ); } array_unshift( $args, $this ); diff --git a/inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Field.php b/inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Field.php index 273592b4..635ea676 100755 --- a/inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Field.php +++ b/inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Field.php @@ -1412,8 +1412,8 @@ class CMB2_Field extends CMB2_Base { */ protected function set_field_defaults_group( $args ) { $args['options'] = wp_parse_args( $args['options'], array( - 'add_button' => esc_html__( 'Add Group', 'cmb2' ), - 'remove_button' => esc_html__( 'Remove Group', 'cmb2' ), + 'add_button' => esc_html__( 'Add Group', 'opalestate-pro' ), + 'remove_button' => esc_html__( 'Remove Group', 'opalestate-pro' ), 'remove_confirm' => '', ) ); @@ -1445,11 +1445,11 @@ class CMB2_Field extends CMB2_Base { */ protected function set_field_defaults_all_or_nothing_types( $args ) { $args['show_option_none'] = isset( $args['show_option_none'] ) ? $args['show_option_none'] : null; - $args['show_option_none'] = true === $args['show_option_none'] ? esc_html__( 'None', 'cmb2' ) : $args['show_option_none']; + $args['show_option_none'] = true === $args['show_option_none'] ? esc_html__( 'None', 'opalestate-pro' ) : $args['show_option_none']; if ( null === $args['show_option_none'] ) { $off_by_default = in_array( $args['type'], array( 'select', 'radio', 'radio_inline' ), true ); - $args['show_option_none'] = $off_by_default ? false : esc_html__( 'None', 'cmb2' ); + $args['show_option_none'] = $off_by_default ? false : esc_html__( 'None', 'opalestate-pro' ); } return $args; @@ -1560,7 +1560,7 @@ class CMB2_Field extends CMB2_Base { */ public function get_cmb() { if ( ! $this->cmb_id ) { - return new WP_Error( 'no_cmb_id', esc_html__( 'Sorry, this field does not have a cmb_id specified.', 'cmb2' ) ); + return new WP_Error( 'no_cmb_id', esc_html__( 'Sorry, this field does not have a cmb_id specified.', 'opalestate-pro' ) ); } return cmb2_get_metabox( $this->cmb_id, $this->object_id, $this->object_type ); diff --git a/inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Field_Display.php b/inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Field_Display.php index 442e9518..dae6cdeb 100755 --- a/inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Field_Display.php +++ b/inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Field_Display.php @@ -429,7 +429,7 @@ class CMB2_Display_File extends CMB2_Field_Display { } else { printf( '
%1$s %3$s
', - esc_html( $field_type->_text( 'file_text', esc_html__( 'File:', 'cmb2' ) ) ), + esc_html( $field_type->_text( 'file_text', esc_html__( 'File:', 'opalestate-pro' ) ) ), $url_value, CMB2_Utils::get_file_name_from_path( $url_value ) ); diff --git a/inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Hookup_Base.php b/inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Hookup_Base.php index 7a847819..1936a163 100755 --- a/inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Hookup_Base.php +++ b/inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Hookup_Base.php @@ -41,7 +41,7 @@ abstract class CMB2_Hookup_Base { * @param CMB2 $cmb The CMB2 object to hookup. */ public static function maybe_init_and_hookup( CMB2 $cmb ) { - throw new Exception( sprintf( esc_html__( '%1$s should be implemented by the extended class.', 'cmb2' ), __FUNCTION__ ) ); + throw new Exception( sprintf( esc_html__( '%1$s should be implemented by the extended class.', 'opalestate-pro' ), __FUNCTION__ ) ); } /** @@ -99,7 +99,7 @@ abstract class CMB2_Hookup_Base { case 'cmb': return $this->{$field}; default: - throw new Exception( sprintf( esc_html__( 'Invalid %1$s property: %2$s', 'cmb2' ), __CLASS__, $field ) ); + throw new Exception( sprintf( esc_html__( 'Invalid %1$s property: %2$s', 'opalestate-pro' ), __CLASS__, $field ) ); } } } diff --git a/inc/vendors/cmb2-plugins/cmb2/includes/CMB2_JS.php b/inc/vendors/cmb2-plugins/cmb2/includes/CMB2_JS.php index ff4e2eea..9b6c2fe5 100755 --- a/inc/vendors/cmb2-plugins/cmb2/includes/CMB2_JS.php +++ b/inc/vendors/cmb2-plugins/cmb2/includes/CMB2_JS.php @@ -162,10 +162,10 @@ class CMB2_JS { wp_register_script( 'iris', admin_url( 'js/iris.min.js' ), array( 'jquery-ui-draggable', 'jquery-ui-slider', 'jquery-touch-punch' ), CMB2_VERSION ); wp_register_script( 'wp-color-picker', admin_url( 'js/color-picker.min.js' ), array( 'iris' ), CMB2_VERSION ); wp_localize_script( 'wp-color-picker', 'wpColorPickerL10n', array( - 'clear' => esc_html__( 'Clear', 'cmb2' ), - 'defaultString' => esc_html__( 'Default', 'cmb2' ), - 'pick' => esc_html__( 'Select Color', 'cmb2' ), - 'current' => esc_html__( 'Current Color', 'cmb2' ), + 'clear' => esc_html__( 'Clear', 'opalestate-pro' ), + 'defaultString' => esc_html__( 'Default', 'opalestate-pro' ), + 'pick' => esc_html__( 'Select Color', 'opalestate-pro' ), + 'current' => esc_html__( 'Current Color', 'opalestate-pro' ), ) ); } @@ -197,39 +197,39 @@ class CMB2_JS { 'date_picker' => array( 'changeMonth' => true, 'changeYear' => true, - 'dateFormat' => _x( 'mm/dd/yy', 'Valid formatDate string for jquery-ui datepicker', 'cmb2' ), - 'dayNames' => explode( ',', esc_html__( 'Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday', 'cmb2' ) ), - 'dayNamesMin' => explode( ',', esc_html__( 'Su, Mo, Tu, We, Th, Fr, Sa', 'cmb2' ) ), - 'dayNamesShort' => explode( ',', esc_html__( 'Sun, Mon, Tue, Wed, Thu, Fri, Sat', 'cmb2' ) ), - 'monthNames' => explode( ',', esc_html__( 'January, February, March, April, May, June, July, August, September, October, November, December', 'cmb2' ) ), - 'monthNamesShort' => explode( ',', esc_html__( 'Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec', 'cmb2' ) ), - 'nextText' => esc_html__( 'Next', 'cmb2' ), - 'prevText' => esc_html__( 'Prev', 'cmb2' ), - 'currentText' => esc_html__( 'Today', 'cmb2' ), - 'closeText' => esc_html__( 'Done', 'cmb2' ), - 'clearText' => esc_html__( 'Clear', 'cmb2' ), + 'dateFormat' => _x( 'mm/dd/yy', 'Valid formatDate string for jquery-ui datepicker', 'opalestate-pro' ), + 'dayNames' => explode( ',', esc_html__( 'Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday', 'opalestate-pro' ) ), + 'dayNamesMin' => explode( ',', esc_html__( 'Su, Mo, Tu, We, Th, Fr, Sa', 'opalestate-pro' ) ), + 'dayNamesShort' => explode( ',', esc_html__( 'Sun, Mon, Tue, Wed, Thu, Fri, Sat', 'opalestate-pro' ) ), + 'monthNames' => explode( ',', esc_html__( 'January, February, March, April, May, June, July, August, September, October, November, December', 'opalestate-pro' ) ), + 'monthNamesShort' => explode( ',', esc_html__( 'Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec', 'opalestate-pro' ) ), + 'nextText' => esc_html__( 'Next', 'opalestate-pro' ), + 'prevText' => esc_html__( 'Prev', 'opalestate-pro' ), + 'currentText' => esc_html__( 'Today', 'opalestate-pro' ), + 'closeText' => esc_html__( 'Done', 'opalestate-pro' ), + 'clearText' => esc_html__( 'Clear', 'opalestate-pro' ), ), 'time_picker' => array( - 'timeOnlyTitle' => esc_html__( 'Choose Time', 'cmb2' ), - 'timeText' => esc_html__( 'Time', 'cmb2' ), - 'hourText' => esc_html__( 'Hour', 'cmb2' ), - 'minuteText' => esc_html__( 'Minute', 'cmb2' ), - 'secondText' => esc_html__( 'Second', 'cmb2' ), - 'currentText' => esc_html__( 'Now', 'cmb2' ), - 'closeText' => esc_html__( 'Done', 'cmb2' ), - 'timeFormat' => _x( 'hh:mm TT', 'Valid formatting string, as per http://trentrichardson.com/examples/timepicker/', 'cmb2' ), + 'timeOnlyTitle' => esc_html__( 'Choose Time', 'opalestate-pro' ), + 'timeText' => esc_html__( 'Time', 'opalestate-pro' ), + 'hourText' => esc_html__( 'Hour', 'opalestate-pro' ), + 'minuteText' => esc_html__( 'Minute', 'opalestate-pro' ), + 'secondText' => esc_html__( 'Second', 'opalestate-pro' ), + 'currentText' => esc_html__( 'Now', 'opalestate-pro' ), + 'closeText' => esc_html__( 'Done', 'opalestate-pro' ), + 'timeFormat' => _x( 'hh:mm TT', 'Valid formatting string, as per http://trentrichardson.com/examples/timepicker/', 'opalestate-pro' ), 'controlType' => 'select', 'stepMinute' => 5, ), ), 'strings' => array( - 'upload_file' => esc_html__( 'Use this file', 'cmb2' ), - 'upload_files' => esc_html__( 'Use these files', 'cmb2' ), - 'remove_image' => esc_html__( 'Remove Image', 'cmb2' ), - 'remove_file' => esc_html__( 'Remove', 'cmb2' ), - 'file' => esc_html__( 'File:', 'cmb2' ), - 'download' => esc_html__( 'Download', 'cmb2' ), - 'check_toggle' => esc_html__( 'Select / Deselect All', 'cmb2' ), + 'upload_file' => esc_html__( 'Use this file', 'opalestate-pro' ), + 'upload_files' => esc_html__( 'Use these files', 'opalestate-pro' ), + 'remove_image' => esc_html__( 'Remove Image', 'opalestate-pro' ), + 'remove_file' => esc_html__( 'Remove', 'opalestate-pro' ), + 'file' => esc_html__( 'File:', 'opalestate-pro' ), + 'download' => esc_html__( 'Download', 'opalestate-pro' ), + 'check_toggle' => esc_html__( 'Select / Deselect All', 'opalestate-pro' ), ), ); diff --git a/inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Options.php b/inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Options.php index 3aa18ce2..f2488f8f 100755 --- a/inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Options.php +++ b/inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Options.php @@ -244,7 +244,7 @@ class CMB2_Option { case 'key': return $this->{$field}; default: - throw new Exception( sprintf( esc_html__( 'Invalid %1$s property: %2$s', 'cmb2' ), __CLASS__, $field ) ); + throw new Exception( sprintf( esc_html__( 'Invalid %1$s property: %2$s', 'opalestate-pro' ), __CLASS__, $field ) ); } } } diff --git a/inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Options_Hookup.php b/inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Options_Hookup.php index 8eacca31..d607e925 100755 --- a/inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Options_Hookup.php +++ b/inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Options_Hookup.php @@ -136,11 +136,11 @@ class CMB2_Options_Hookup extends CMB2_hookup { $is_updated = $should_notify && 'true' === $_GET['settings-updated']; $setting = "{$this->option_key}-notices"; $code = ''; - $message = esc_html__( 'Nothing to update.', 'cmb2' ); + $message = esc_html__( 'Nothing to update.', 'opalestate-pro' ); $type = 'notice-warning'; if ( $is_updated ) { - $message = esc_html__( 'Settings updated.', 'cmb2' ); + $message = esc_html__( 'Settings updated.', 'opalestate-pro' ); $type = 'updated'; } @@ -354,7 +354,7 @@ class CMB2_Options_Hookup extends CMB2_hookup { case 'cmb': return $this->{$field}; default: - throw new Exception( sprintf( esc_html__( 'Invalid %1$s property: %2$s', 'cmb2' ), __CLASS__, $field ) ); + throw new Exception( sprintf( esc_html__( 'Invalid %1$s property: %2$s', 'opalestate-pro' ), __CLASS__, $field ) ); } } } diff --git a/inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Types.php b/inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Types.php index aaeed6e8..f126864f 100755 --- a/inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Types.php +++ b/inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Types.php @@ -223,7 +223,7 @@ class CMB2_Types { $this->type = new $render_class_name( $this, $args ); if ( ! ( $this->type instanceof CMB2_Type_Base ) ) { - throw new Exception( esc_html__( 'Custom CMB2 field type classes must extend CMB2_Type_Base.', 'cmb2' ) ); + throw new Exception( esc_html__( 'Custom CMB2 field type classes must extend CMB2_Type_Base.', 'opalestate-pro' ) ); } return $this->type; @@ -341,7 +341,7 @@ class CMB2_Types {

- +

_render(); ?>
- +
diff --git a/inc/vendors/cmb2-plugins/cmb2/includes/CMB2_hookup.php b/inc/vendors/cmb2-plugins/cmb2/includes/CMB2_hookup.php index 51a9be66..e33e3016 100755 --- a/inc/vendors/cmb2-plugins/cmb2/includes/CMB2_hookup.php +++ b/inc/vendors/cmb2-plugins/cmb2/includes/CMB2_hookup.php @@ -179,11 +179,11 @@ class CMB2_hookup extends CMB2_Hookup_Base { public function term_hooks() { if ( ! function_exists( 'get_term_meta' ) ) { - wp_die( esc_html__( 'Term Metadata is a WordPress 4.4+ feature. Please upgrade your WordPress install.', 'cmb2' ) ); + wp_die( esc_html__( 'Term Metadata is a WordPress 4.4+ feature. Please upgrade your WordPress install.', 'opalestate-pro' ) ); } if ( ! $this->cmb->prop( 'taxonomies' ) ) { - wp_die( esc_html__( 'Term metaboxes configuration requires a "taxonomies" parameter.', 'cmb2' ) ); + wp_die( esc_html__( 'Term metaboxes configuration requires a "taxonomies" parameter.', 'opalestate-pro' ) ); } $this->taxonomies = (array) $this->cmb->prop( 'taxonomies' ); @@ -463,7 +463,7 @@ class CMB2_hookup extends CMB2_Hookup_Base { if ( $add_handle ) { echo ''; diff --git a/inc/vendors/cmb2-plugins/cmb2/includes/helper-functions.php b/inc/vendors/cmb2-plugins/cmb2/includes/helper-functions.php index d0a87760..9dc43ebe 100755 --- a/inc/vendors/cmb2-plugins/cmb2/includes/helper-functions.php +++ b/inc/vendors/cmb2-plugins/cmb2/includes/helper-functions.php @@ -104,7 +104,7 @@ function cmb2_get_oembed( $args = array() ) { $error = sprintf( /* translators: 1: results for. 2: link to codex.wordpress.org/Embeds */ - esc_html__( 'No oEmbed Results Found for %1$s. View more info at %2$s.', 'cmb2' ), + esc_html__( 'No oEmbed Results Found for %1$s. View more info at %2$s.', 'opalestate-pro' ), $oembed['fallback'], 'codex.wordpress.org/Embeds' ); @@ -304,7 +304,7 @@ function cmb2_print_metabox_form( $meta_box, $object_id = 0, $args = array() ) { $args = wp_parse_args( $args, array( 'form_format' => '
%3$s
', - 'save_button' => esc_html__( 'Save', 'cmb2' ), + 'save_button' => esc_html__( 'Save', 'opalestate-pro' ), 'object_type' => $cmb->mb_object_type(), 'cmb_styles' => $cmb->prop( 'cmb_styles' ), 'enqueue_js' => $cmb->prop( 'enqueue_js' ), diff --git a/inc/vendors/cmb2-plugins/cmb2/includes/rest-api/CMB2_REST_Controller.php b/inc/vendors/cmb2-plugins/cmb2/includes/rest-api/CMB2_REST_Controller.php index 6f201702..71b19de1 100755 --- a/inc/vendors/cmb2-plugins/cmb2/includes/rest-api/CMB2_REST_Controller.php +++ b/inc/vendors/cmb2-plugins/cmb2/includes/rest-api/CMB2_REST_Controller.php @@ -254,7 +254,7 @@ abstract class CMB2_REST_Controller extends WP_REST_Controller { $this->initiate_rest_box( $request, $request_type ); if ( ! is_wp_error( $this->rest_box ) && ! $this->rest_box->rest_read ) { - $this->rest_box = new WP_Error( 'cmb2_rest_no_read_error', esc_html__( 'This box does not have read permissions.', 'cmb2' ), array( + $this->rest_box = new WP_Error( 'cmb2_rest_no_read_error', esc_html__( 'This box does not have read permissions.', 'opalestate-pro' ), array( 'status' => 403, ) ); } @@ -274,7 +274,7 @@ abstract class CMB2_REST_Controller extends WP_REST_Controller { $this->initiate_rest_box( $request, $request_type ); if ( ! is_wp_error( $this->rest_box ) && ! $this->rest_box->rest_edit ) { - $this->rest_box = new WP_Error( 'cmb2_rest_no_write_error', esc_html__( 'This box does not have write permissions.', 'cmb2' ), array( + $this->rest_box = new WP_Error( 'cmb2_rest_no_write_error', esc_html__( 'This box does not have write permissions.', 'opalestate-pro' ), array( 'status' => 403, ) ); } @@ -297,7 +297,7 @@ abstract class CMB2_REST_Controller extends WP_REST_Controller { if ( ! $this->rest_box ) { - $this->rest_box = new WP_Error( 'cmb2_rest_box_not_found_error', esc_html__( 'No box found by that id. A box needs to be registered with the "show_in_rest" parameter configured.', 'cmb2' ), array( + $this->rest_box = new WP_Error( 'cmb2_rest_box_not_found_error', esc_html__( 'No box found by that id. A box needs to be registered with the "show_in_rest" parameter configured.', 'opalestate-pro' ), array( 'status' => 403, ) ); @@ -375,21 +375,21 @@ abstract class CMB2_REST_Controller extends WP_REST_Controller { 'type' => 'object', 'properties' => array( 'description' => array( - 'description' => esc_html__( 'A human-readable description of the object.', 'cmb2' ), + 'description' => esc_html__( 'A human-readable description of the object.', 'opalestate-pro' ), 'type' => 'string', 'context' => array( 'view', ), ), 'name' => array( - 'description' => esc_html__( 'The id for the object.', 'cmb2' ), + 'description' => esc_html__( 'The id for the object.', 'opalestate-pro' ), 'type' => 'integer', 'context' => array( 'view', ), ), 'name' => array( - 'description' => esc_html__( 'The title for the object.', 'cmb2' ), + 'description' => esc_html__( 'The title for the object.', 'opalestate-pro' ), 'type' => 'string', 'context' => array( 'view', diff --git a/inc/vendors/cmb2-plugins/cmb2/includes/rest-api/CMB2_REST_Controller_Boxes.php b/inc/vendors/cmb2-plugins/cmb2/includes/rest-api/CMB2_REST_Controller_Boxes.php index d568fc27..10b6c8e5 100755 --- a/inc/vendors/cmb2-plugins/cmb2/includes/rest-api/CMB2_REST_Controller_Boxes.php +++ b/inc/vendors/cmb2-plugins/cmb2/includes/rest-api/CMB2_REST_Controller_Boxes.php @@ -48,7 +48,7 @@ class CMB2_REST_Controller_Boxes extends CMB2_REST_Controller { public function register_routes() { $args = array( '_embed' => array( - 'description' => esc_html__( 'Includes the registered fields for the box in the response.', 'cmb2' ), + 'description' => esc_html__( 'Includes the registered fields for the box in the response.', 'opalestate-pro' ), ), ); @@ -69,7 +69,7 @@ class CMB2_REST_Controller_Boxes extends CMB2_REST_Controller { ) ); $args['_rendered'] = array( - 'description' => esc_html__( 'Includes the fully rendered attributes, \'form_open\', \'form_close\', as well as the enqueued \'js_dependencies\' script handles, and \'css_dependencies\' stylesheet handles.', 'cmb2' ), + 'description' => esc_html__( 'Includes the fully rendered attributes, \'form_open\', \'form_close\', as well as the enqueued \'js_dependencies\' script handles, and \'css_dependencies\' stylesheet handles.', 'opalestate-pro' ), ); // Returns specific box's data. @@ -119,7 +119,7 @@ class CMB2_REST_Controller_Boxes extends CMB2_REST_Controller { $boxes = CMB2_REST::get_all(); if ( empty( $boxes ) ) { - return new WP_Error( 'cmb2_rest_no_boxes', esc_html__( 'No boxes found.', 'cmb2' ), array( + return new WP_Error( 'cmb2_rest_no_boxes', esc_html__( 'No boxes found.', 'opalestate-pro' ), array( 'status' => 403, ) ); } diff --git a/inc/vendors/cmb2-plugins/cmb2/includes/rest-api/CMB2_REST_Controller_Fields.php b/inc/vendors/cmb2-plugins/cmb2/includes/rest-api/CMB2_REST_Controller_Fields.php index 6e52b542..49123153 100755 --- a/inc/vendors/cmb2-plugins/cmb2/includes/rest-api/CMB2_REST_Controller_Fields.php +++ b/inc/vendors/cmb2-plugins/cmb2/includes/rest-api/CMB2_REST_Controller_Fields.php @@ -24,16 +24,16 @@ class CMB2_REST_Controller_Fields extends CMB2_REST_Controller_Boxes { public function register_routes() { $args = array( '_embed' => array( - 'description' => esc_html__( 'Includes the box object which the fields are registered to in the response.', 'cmb2' ), + 'description' => esc_html__( 'Includes the box object which the fields are registered to in the response.', 'opalestate-pro' ), ), '_rendered' => array( - 'description' => esc_html__( 'When the \'_rendered\' argument is passed, the renderable field attributes will be returned fully rendered. By default, the names of the callback handers for the renderable attributes will be returned.', 'cmb2' ), + 'description' => esc_html__( 'When the \'_rendered\' argument is passed, the renderable field attributes will be returned fully rendered. By default, the names of the callback handers for the renderable attributes will be returned.', 'opalestate-pro' ), ), 'object_id' => array( - 'description' => esc_html__( 'To view or modify the field\'s value, the \'object_id\' and \'object_type\' arguments are required.', 'cmb2' ), + 'description' => esc_html__( 'To view or modify the field\'s value, the \'object_id\' and \'object_type\' arguments are required.', 'opalestate-pro' ), ), 'object_type' => array( - 'description' => esc_html__( 'To view or modify the field\'s value, the \'object_id\' and \'object_type\' arguments are required.', 'cmb2' ), + 'description' => esc_html__( 'To view or modify the field\'s value, the \'object_id\' and \'object_type\' arguments are required.', 'opalestate-pro' ), ), ); @@ -233,7 +233,7 @@ class CMB2_REST_Controller_Fields extends CMB2_REST_Controller_Boxes { $this->initiate_rest_read_box( $request, 'field_value_update' ); if ( ! $this->request['value'] ) { - return new WP_Error( 'cmb2_rest_update_field_error', esc_html__( 'CMB2 Field value cannot be updated without the value parameter specified.', 'cmb2' ), array( + return new WP_Error( 'cmb2_rest_update_field_error', esc_html__( 'CMB2 Field value cannot be updated without the value parameter specified.', 'opalestate-pro' ), array( 'status' => 400, ) ); } @@ -294,7 +294,7 @@ class CMB2_REST_Controller_Fields extends CMB2_REST_Controller_Boxes { public function modify_field_value( $activity ) { if ( ! $this->request['object_id'] || ! $this->request['object_type'] ) { - return new WP_Error( 'cmb2_rest_modify_field_value_error', esc_html__( 'CMB2 Field value cannot be modified without the object_id and object_type parameters specified.', 'cmb2' ), array( + return new WP_Error( 'cmb2_rest_modify_field_value_error', esc_html__( 'CMB2 Field value cannot be modified without the object_id and object_type parameters specified.', 'opalestate-pro' ), array( 'status' => 400, ) ); } @@ -309,7 +309,7 @@ class CMB2_REST_Controller_Fields extends CMB2_REST_Controller_Boxes { ); if ( ! $this->field ) { - return new WP_Error( 'cmb2_rest_no_field_by_id_error', esc_html__( 'No field found by that id.', 'cmb2' ), array( + return new WP_Error( 'cmb2_rest_no_field_by_id_error', esc_html__( 'No field found by that id.', 'opalestate-pro' ), array( 'status' => 403, ) ); } @@ -338,7 +338,7 @@ class CMB2_REST_Controller_Fields extends CMB2_REST_Controller_Boxes { $this->field = $this->rest_box->field_can_read( $field, true ); if ( ! $this->field ) { - return new WP_Error( 'cmb2_rest_no_field_by_id_error', esc_html__( 'No field found by that id.', 'cmb2' ), array( + return new WP_Error( 'cmb2_rest_no_field_by_id_error', esc_html__( 'No field found by that id.', 'opalestate-pro' ), array( 'status' => 403, ) ); } @@ -412,7 +412,7 @@ class CMB2_REST_Controller_Fields extends CMB2_REST_Controller_Boxes { if ( empty( $value ) || is_scalar( $value ) || is_array( $value ) ) { $field_data[ $key ] = $value; } else { - $field_data[ $key ] = sprintf( esc_html__( 'Value Error for %s', 'cmb2' ), $key ); + $field_data[ $key ] = sprintf( esc_html__( 'Value Error for %s', 'opalestate-pro' ), $key ); } } diff --git a/inc/vendors/cmb2-plugins/cmb2/includes/shim/WP_REST_Controller.php b/inc/vendors/cmb2-plugins/cmb2/includes/shim/WP_REST_Controller.php index e278235a..59e920a0 100755 --- a/inc/vendors/cmb2-plugins/cmb2/includes/shim/WP_REST_Controller.php +++ b/inc/vendors/cmb2-plugins/cmb2/includes/shim/WP_REST_Controller.php @@ -22,7 +22,7 @@ abstract class WP_REST_Controller { */ public function register_routes() { /* translators: %s: register_routes() */ - _doing_it_wrong( 'WP_REST_Controller::register_routes', sprintf( esc_html__( "Method '%s' must be overridden." ), __METHOD__ ), '4.7' ); + _doing_it_wrong( 'WP_REST_Controller::register_routes', sprintf( esc_html__( "Method '%s' must be overridden.", 'opalestate-pro' ), __METHOD__ ), '4.7' ); } /** @@ -32,7 +32,7 @@ abstract class WP_REST_Controller { * @return WP_Error|boolean */ public function get_items_permissions_check( $request ) { - return new WP_Error( 'invalid-method', sprintf( esc_html__( "Method '%s' not implemented. Must be overridden in subclass." ), __METHOD__ ), array( + return new WP_Error( 'invalid-method', sprintf( esc_html__( "Method '%s' not implemented. Must be overridden in subclass.", 'opalestate-pro' ), __METHOD__ ), array( 'status' => 405, ) ); } @@ -44,7 +44,7 @@ abstract class WP_REST_Controller { * @return WP_Error|WP_REST_Response */ public function get_items( $request ) { - return new WP_Error( 'invalid-method', sprintf( esc_html__( "Method '%s' not implemented. Must be overridden in subclass." ), __METHOD__ ), array( + return new WP_Error( 'invalid-method', sprintf( esc_html__( "Method '%s' not implemented. Must be overridden in subclass.", 'opalestate-pro' ), __METHOD__ ), array( 'status' => 405, ) ); } @@ -56,7 +56,7 @@ abstract class WP_REST_Controller { * @return WP_Error|boolean */ public function get_item_permissions_check( $request ) { - return new WP_Error( 'invalid-method', sprintf( esc_html__( "Method '%s' not implemented. Must be overridden in subclass." ), __METHOD__ ), array( + return new WP_Error( 'invalid-method', sprintf( esc_html__( "Method '%s' not implemented. Must be overridden in subclass.", 'opalestate-pro' ), __METHOD__ ), array( 'status' => 405, ) ); } @@ -68,7 +68,7 @@ abstract class WP_REST_Controller { * @return WP_Error|WP_REST_Response */ public function get_item( $request ) { - return new WP_Error( 'invalid-method', sprintf( esc_html__( "Method '%s' not implemented. Must be overridden in subclass." ), __METHOD__ ), array( + return new WP_Error( 'invalid-method', sprintf( esc_html__( "Method '%s' not implemented. Must be overridden in subclass.", 'opalestate-pro' ), __METHOD__ ), array( 'status' => 405, ) ); } @@ -80,7 +80,7 @@ abstract class WP_REST_Controller { * @return WP_Error|boolean */ public function create_item_permissions_check( $request ) { - return new WP_Error( 'invalid-method', sprintf( esc_html__( "Method '%s' not implemented. Must be overridden in subclass." ), __METHOD__ ), array( + return new WP_Error( 'invalid-method', sprintf( esc_html__( "Method '%s' not implemented. Must be overridden in subclass.", 'opalestate-pro' ), __METHOD__ ), array( 'status' => 405, ) ); } @@ -92,7 +92,7 @@ abstract class WP_REST_Controller { * @return WP_Error|WP_REST_Response */ public function create_item( $request ) { - return new WP_Error( 'invalid-method', sprintf( esc_html__( "Method '%s' not implemented. Must be overridden in subclass." ), __METHOD__ ), array( + return new WP_Error( 'invalid-method', sprintf( esc_html__( "Method '%s' not implemented. Must be overridden in subclass.", 'opalestate-pro' ), __METHOD__ ), array( 'status' => 405, ) ); } @@ -104,7 +104,7 @@ abstract class WP_REST_Controller { * @return WP_Error|boolean */ public function update_item_permissions_check( $request ) { - return new WP_Error( 'invalid-method', sprintf( esc_html__( "Method '%s' not implemented. Must be overridden in subclass." ), __METHOD__ ), array( + return new WP_Error( 'invalid-method', sprintf( esc_html__( "Method '%s' not implemented. Must be overridden in subclass.", 'opalestate-pro' ), __METHOD__ ), array( 'status' => 405, ) ); } @@ -116,7 +116,7 @@ abstract class WP_REST_Controller { * @return WP_Error|WP_REST_Response */ public function update_item( $request ) { - return new WP_Error( 'invalid-method', sprintf( esc_html__( "Method '%s' not implemented. Must be overridden in subclass." ), __METHOD__ ), array( + return new WP_Error( 'invalid-method', sprintf( esc_html__( "Method '%s' not implemented. Must be overridden in subclass.", 'opalestate-pro' ), __METHOD__ ), array( 'status' => 405, ) ); } @@ -128,7 +128,7 @@ abstract class WP_REST_Controller { * @return WP_Error|boolean */ public function delete_item_permissions_check( $request ) { - return new WP_Error( 'invalid-method', sprintf( esc_html__( "Method '%s' not implemented. Must be overridden in subclass." ), __METHOD__ ), array( + return new WP_Error( 'invalid-method', sprintf( esc_html__( "Method '%s' not implemented. Must be overridden in subclass.", 'opalestate-pro' ), __METHOD__ ), array( 'status' => 405, ) ); } @@ -140,7 +140,7 @@ abstract class WP_REST_Controller { * @return WP_Error|WP_REST_Response */ public function delete_item( $request ) { - return new WP_Error( 'invalid-method', sprintf( esc_html__( "Method '%s' not implemented. Must be overridden in subclass." ), __METHOD__ ), array( + return new WP_Error( 'invalid-method', sprintf( esc_html__( "Method '%s' not implemented. Must be overridden in subclass.", 'opalestate-pro' ), __METHOD__ ), array( 'status' => 405, ) ); } @@ -152,7 +152,7 @@ abstract class WP_REST_Controller { * @return WP_Error|object $prepared_item */ protected function prepare_item_for_database( $request ) { - return new WP_Error( 'invalid-method', sprintf( esc_html__( "Method '%s' not implemented. Must be overridden in subclass." ), __METHOD__ ), array( + return new WP_Error( 'invalid-method', sprintf( esc_html__( "Method '%s' not implemented. Must be overridden in subclass.", 'opalestate-pro' ), __METHOD__ ), array( 'status' => 405, ) ); } @@ -165,7 +165,7 @@ abstract class WP_REST_Controller { * @return WP_REST_Response $response */ public function prepare_item_for_response( $item, $request ) { - return new WP_Error( 'invalid-method', sprintf( esc_html__( "Method '%s' not implemented. Must be overridden in subclass." ), __METHOD__ ), array( + return new WP_Error( 'invalid-method', sprintf( esc_html__( "Method '%s' not implemented. Must be overridden in subclass.", 'opalestate-pro' ), __METHOD__ ), array( 'status' => 405, ) ); } @@ -270,7 +270,7 @@ abstract class WP_REST_Controller { return array( 'context' => $this->get_context_param(), 'page' => array( - 'description' => esc_html__( 'Current page of the collection.' ), + 'description' => esc_html__( 'Current page of the collection.', 'opalestate-pro' ), 'type' => 'integer', 'default' => 1, 'sanitize_callback' => 'absint', @@ -278,7 +278,7 @@ abstract class WP_REST_Controller { 'minimum' => 1, ), 'per_page' => array( - 'description' => esc_html__( 'Maximum number of items to be returned in result set.' ), + 'description' => esc_html__( 'Maximum number of items to be returned in result set.', 'opalestate-pro' ), 'type' => 'integer', 'default' => 10, 'minimum' => 1, @@ -287,7 +287,7 @@ abstract class WP_REST_Controller { 'validate_callback' => 'rest_validate_request_arg', ), 'search' => array( - 'description' => esc_html__( 'Limit results to those matching a string.' ), + 'description' => esc_html__( 'Limit results to those matching a string.', 'opalestate-pro' ), 'type' => 'string', 'sanitize_callback' => 'sanitize_text_field', 'validate_callback' => 'rest_validate_request_arg', @@ -305,7 +305,7 @@ abstract class WP_REST_Controller { */ public function get_context_param( $args = array() ) { $param_details = array( - 'description' => esc_html__( 'Scope under which the request is made; determines fields present in response.' ), + 'description' => esc_html__( 'Scope under which the request is made; determines fields present in response.', 'opalestate-pro' ), 'type' => 'string', 'sanitize_callback' => 'sanitize_key', 'validate_callback' => 'rest_validate_request_arg', diff --git a/inc/vendors/cmb2-plugins/cmb2/includes/types/CMB2_Type_Base.php b/inc/vendors/cmb2-plugins/cmb2/includes/types/CMB2_Type_Base.php index c79d51a8..aefe61ce 100755 --- a/inc/vendors/cmb2-plugins/cmb2/includes/types/CMB2_Type_Base.php +++ b/inc/vendors/cmb2-plugins/cmb2/includes/types/CMB2_Type_Base.php @@ -154,7 +154,7 @@ abstract class CMB2_Type_Base { case 'concat_attrs': return call_user_func_array( array( $this->types, $method ), $arguments ); default: - throw new Exception( sprintf( esc_html__( 'Invalid %1$s method: %2$s', 'cmb2' ), __CLASS__, $method ) ); + throw new Exception( sprintf( esc_html__( 'Invalid %1$s method: %2$s', 'opalestate-pro' ), __CLASS__, $method ) ); } } @@ -170,7 +170,7 @@ abstract class CMB2_Type_Base { case 'field': return $this->types->field; default: - throw new Exception( sprintf( esc_html__( 'Invalid %1$s property: %2$s', 'cmb2' ), __CLASS__, $field ) ); + throw new Exception( sprintf( esc_html__( 'Invalid %1$s property: %2$s', 'opalestate-pro' ), __CLASS__, $field ) ); } } diff --git a/inc/vendors/cmb2-plugins/cmb2/includes/types/CMB2_Type_File.php b/inc/vendors/cmb2-plugins/cmb2/includes/types/CMB2_Type_File.php index c17ff908..e0f57c10 100755 --- a/inc/vendors/cmb2-plugins/cmb2/includes/types/CMB2_Type_File.php +++ b/inc/vendors/cmb2-plugins/cmb2/includes/types/CMB2_Type_File.php @@ -73,7 +73,7 @@ class CMB2_Type_File extends CMB2_Type_File_Base { $output .= sprintf( '', - esc_attr( $this->_text( 'add_upload_file_text', esc_html__( 'Add or Upload File', 'cmb2' ) ) ) + esc_attr( $this->_text( 'add_upload_file_text', esc_html__( 'Add or Upload File', 'opalestate-pro' ) ) ) ); $output .= $a['desc']; diff --git a/inc/vendors/cmb2-plugins/cmb2/includes/types/CMB2_Type_File_Base.php b/inc/vendors/cmb2-plugins/cmb2/includes/types/CMB2_Type_File_Base.php index 5edbb21a..d30b3292 100755 --- a/inc/vendors/cmb2-plugins/cmb2/includes/types/CMB2_Type_File_Base.php +++ b/inc/vendors/cmb2-plugins/cmb2/includes/types/CMB2_Type_File_Base.php @@ -61,7 +61,7 @@ class CMB2_Type_File_Base extends CMB2_Type_Text { $args['tag'], $args['image'], isset( $args['cached_id'] ) ? ' rel="' . $args['cached_id'] . '"' : '', - esc_html( $this->_text( 'remove_image_text', esc_html__( 'Remove Image', 'cmb2' ) ) ), + esc_html( $this->_text( 'remove_image_text', esc_html__( 'Remove Image', 'opalestate-pro' ) ) ), isset( $args['id_input'] ) ? $args['id_input'] : '' ); } @@ -76,12 +76,12 @@ class CMB2_Type_File_Base extends CMB2_Type_Text { public function file_status_output( $args ) { return sprintf( '<%1$s class="file-status cmb2-media-item">%2$s %3$s   (%5$s / %7$s)%8$s', $args['tag'], - esc_html( $this->_text( 'file_text', esc_html__( 'File:', 'cmb2' ) ) ), + esc_html( $this->_text( 'file_text', esc_html__( 'File:', 'opalestate-pro' ) ) ), CMB2_Utils::get_file_name_from_path( $args['value'] ), $args['value'], - esc_html( $this->_text( 'file_download_text', esc_html__( 'Download', 'cmb2' ) ) ), + esc_html( $this->_text( 'file_download_text', esc_html__( 'Download', 'opalestate-pro' ) ) ), isset( $args['cached_id'] ) ? ' rel="' . $args['cached_id'] . '"' : '', - esc_html( $this->_text( 'remove_text', esc_html__( 'Remove', 'cmb2' ) ) ), + esc_html( $this->_text( 'remove_text', esc_html__( 'Remove', 'opalestate-pro' ) ) ), isset( $args['id_input'] ) ? $args['id_input'] : '' ); } diff --git a/inc/vendors/cmb2-plugins/cmb2/includes/types/CMB2_Type_File_List.php b/inc/vendors/cmb2-plugins/cmb2/includes/types/CMB2_Type_File_List.php index 4a6b3ef5..657b55eb 100755 --- a/inc/vendors/cmb2-plugins/cmb2/includes/types/CMB2_Type_File_List.php +++ b/inc/vendors/cmb2-plugins/cmb2/includes/types/CMB2_Type_File_List.php @@ -38,7 +38,7 @@ class CMB2_Type_File_List extends CMB2_Type_File_Base { $output .= parent::render( array( 'type' => 'button', 'class' => 'cmb2-upload-button button-secondary cmb2-upload-list', - 'value' => esc_attr( $this->_text( 'add_upload_files_text', esc_html__( 'Add or Upload Files', 'cmb2' ) ) ), + 'value' => esc_attr( $this->_text( 'add_upload_files_text', esc_html__( 'Add or Upload Files', 'opalestate-pro' ) ) ), 'name' => '', 'id' => '', ) ); diff --git a/inc/vendors/cmb2-plugins/cmb2/includes/types/CMB2_Type_Taxonomy_Base.php b/inc/vendors/cmb2-plugins/cmb2/includes/types/CMB2_Type_Taxonomy_Base.php index fa09bd40..4f2e5d13 100755 --- a/inc/vendors/cmb2-plugins/cmb2/includes/types/CMB2_Type_Taxonomy_Base.php +++ b/inc/vendors/cmb2-plugins/cmb2/includes/types/CMB2_Type_Taxonomy_Base.php @@ -112,7 +112,7 @@ abstract class CMB2_Type_Taxonomy_Base extends CMB2_Type_Multi_Base { $message = $error->get_error_message(); $data = 'data-error="' . esc_attr( $error->get_error_code() ) . '"'; } else { - $message = $this->_text( 'no_terms_text', esc_html__( 'No terms', 'cmb2' ) ); + $message = $this->_text( 'no_terms_text', esc_html__( 'No terms', 'opalestate-pro' ) ); $data = ''; } diff --git a/languages/opalestate-pro.pot b/languages/opalestate-pro.pot old mode 100755 new mode 100644 index 66b93ab1..4255f6ff --- a/languages/opalestate-pro.pot +++ b/languages/opalestate-pro.pot @@ -1,22 +1,1884 @@ -#, fuzzy +# Copyright (C) 2020 WPOPAL +# This file is distributed under the same license as the Opal Estate Pro package. msgid "" msgstr "" -"Project-Id-Version: Opal Estate Pro\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2020-04-10 02:14+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: \n" -"Language: \n" -"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" +"Project-Id-Version: Opal Estate Pro 1.6.8\n" +"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/opal-estate-pro\n" +"POT-Creation-Date: 2020-08-20 10:29:06+00:00\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" +"Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Loco https://localise.biz/\n" -"X-Loco-Version: 2.3.0; wp-5.2.2" +"PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Themelexus Team \n" +"X-Generator: grunt-wp-i18n 1.0.3\n" -#: opal-estate-pro.php:153 -msgid "Cheatin’ huh?" +#: inc/admin/agency/class-agency.php:84 +#: inc/agency/class-opalestate-agency-metabox.php:330 +#: inc/property/class-metabox-property-admin.php:90 +#: templates/single-agency/gallery.php:10 +#: templates/single-property/preview/tabs.php:15 +msgid "Gallery" +msgstr "" + +#: inc/admin/agency/class-agency.php:85 +#: 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 +msgid "Select one, to add new you create in location of estate panel" +msgstr "" + +#: inc/admin/agency/class-agency.php:91 +#: inc/agency/class-opalestate-agency-metabox.php:263 +msgid "Slogan" +msgstr "" + +#: inc/admin/agency/class-agency.php:122 inc/admin/agent/class-agent.php:95 +#: inc/admin/class-user.php:99 +msgid "Metabox" +msgstr "" + +#: inc/admin/agency/class-agency.php:141 inc/admin/agent/class-agent.php:113 +#: inc/admin/class-user.php:116 inc/admin/register-settings.php:123 +#: inc/admin/settings/property.php:21 +#: inc/property/class-metabox-property-admin.php:46 +#: inc/submission/class-metabox-property-submission.php:61 +#: inc/vendors/elementor/widgets/opalestate-account-button.php:212 +msgid "General" +msgstr "" + +#: inc/admin/agency/class-agency.php:148 inc/admin/agent/class-agent.php:120 +#: inc/admin/class-user.php:123 +msgid "Socials" +msgstr "" + +#: inc/admin/agency/class-agency.php:156 templates/content-single-agency.php:27 +#: templates/content-single-agency.php:101 templates/single-agency/tabs.php:11 +msgid "Team" +msgstr "" + +#: inc/admin/agent/class-agent.php:127 +msgid "Target Search" +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 +msgid "" +"This user has role Opal Estate Agency and click here to update Agency profile" +msgstr "" + +#: inc/admin/class-user.php:57 +msgid "" +"This user has role Opal Estate Agent and click here to update Agent profile" +msgstr "" + +#: inc/admin/class-user.php:140 +msgid "User Profile Metabox" +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:471 +msgid "No users found" +msgstr "" + +#: inc/admin/functions.php:494 +msgid "We could find this user" +msgstr "" + +#: inc/admin/functions.php:498 +msgid "We could not find this user" +msgstr "" + +#: inc/admin/property/class-property.php:90 +#: inc/property/class-metabox-property-admin.php:176 +#: 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 +#: templates/parts/featured-label.php:9 +#: templates/single-agency/author-box.php:24 +#: templates/single-agent/author-box.php:18 +msgid "Featured" +msgstr "" + +#: inc/admin/property/class-property.php:91 +msgid "Sku" +msgstr "" + +#: inc/admin/property/class-property.php:92 +#: inc/classes/class-opalestate-metabox-user.php:106 +#: inc/property/class-metabox-property-admin.php:214 +#: inc/submission/class-metabox-property-submission.php:357 +#: templates/content-single-agency.php:24 +#: templates/content-single-agency.php:66 +msgid "Address" +msgstr "" + +#: inc/admin/property/class-property.php:94 +msgid "Author" +msgstr "" + +#: inc/admin/property/class-property.php:95 +#: 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 "" + +#: inc/admin/property/class-property.php:96 +msgid "Expiry Date" +msgstr "" + +#: inc/admin/property/class-property.php:145 +msgid "Y/m/d g:i:s a" +msgstr "" + +#: inc/admin/rating/class-rating.php:46 templates/content-single-agent.php:19 +#: templates/single-agency/tabs.php:17 +msgid "Review" +msgstr "" + +#: inc/admin/rating/class-rating.php:54 inc/admin/rating/class-rating.php:58 +msgid "Review Settings" +msgstr "" + +#: inc/admin/rating/class-rating.php:64 inc/admin/rating/class-rating.php:65 +msgid "Enable property reviews" +msgstr "" + +#: 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:169 +#: inc/admin/settings/pages.php:180 inc/admin/settings/pages.php:191 +#: inc/admin/settings/property.php:65 inc/admin/settings/property.php:138 +#: inc/admin/settings/property.php:149 inc/admin/settings/property.php:186 +#: inc/admin/settings/property.php:262 inc/admin/settings/property.php:284 +#: inc/admin/settings/property.php:400 inc/admin/settings/property.php:426 +#: 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:545 +#: inc/admin/settings/property.php:557 inc/admin/settings/property.php:582 +#: inc/admin/settings/property.php:594 inc/admin/settings/property.php:605 +#: inc/admin/settings/property.php:617 inc/admin/settings/property.php:628 +#: inc/admin/settings/property.php:640 inc/admin/settings/property.php:652 +#: inc/admin/settings/property.php:684 inc/class-opalestate-email.php:412 +#: inc/class-opalestate-email.php:417 inc/class-opalestate-email.php:450 +#: inc/class-opalestate-email.php:455 inc/class-opalestate-email.php:490 +#: inc/property/class-metabox-property-admin.php:509 +#: inc/submission/class-opalestate-submission.php:157 +#: inc/submission/class-opalestate-submission.php:175 +#: inc/submission/class-opalestate-submission.php:185 +#: inc/submission/class-opalestate-submission.php:195 +#: inc/submission/class-opalestate-submission.php:205 +#: inc/submission/class-opalestate-submission.php:215 +#: 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:112 +msgid "Enable" +msgstr "" + +#: 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:170 +#: inc/admin/settings/pages.php:181 inc/admin/settings/pages.php:192 +#: inc/admin/settings/property.php:66 inc/admin/settings/property.php:139 +#: inc/admin/settings/property.php:150 inc/admin/settings/property.php:187 +#: inc/admin/settings/property.php:261 inc/admin/settings/property.php:283 +#: inc/admin/settings/property.php:401 inc/admin/settings/property.php:427 +#: 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:546 +#: inc/admin/settings/property.php:558 inc/admin/settings/property.php:583 +#: inc/admin/settings/property.php:595 inc/admin/settings/property.php:606 +#: inc/admin/settings/property.php:618 inc/admin/settings/property.php:629 +#: inc/admin/settings/property.php:641 inc/admin/settings/property.php:653 +#: inc/admin/settings/property.php:685 inc/class-opalestate-email.php:418 +#: inc/class-opalestate-email.php:456 inc/class-opalestate-email.php:491 +#: inc/property/class-metabox-property-admin.php:510 +#: inc/submission/class-opalestate-submission.php:158 +#: inc/submission/class-opalestate-submission.php:176 +#: inc/submission/class-opalestate-submission.php:186 +#: inc/submission/class-opalestate-submission.php:196 +#: inc/submission/class-opalestate-submission.php:206 +#: inc/submission/class-opalestate-submission.php:216 +#: 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:113 +msgid "Disable" +msgstr "" + +#: 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/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 +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Options_Hookup.php:143 +msgid "Settings updated." +msgstr "" + +#: inc/admin/settings/3rd_party.php:26 +#: inc/submission/class-metabox-property-submission.php:376 +msgid "Google Map" +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:57 +#: inc/api/class-opalestate-admin-api-keys-table-list.php:83 +msgid "API key" +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:73 inc/class-no-captcha-recaptcha.php:141 +msgid "Dark" +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:88 +msgid "Autocomplete Restrictions" +msgstr "" + +#: inc/admin/settings/3rd_party.php:89 +msgid "" +"Enter one or more country codes ALPHA-2 separator by \",\". Example: \"us\" " +"for USA. See list country codes." +msgstr "" + +#: inc/admin/settings/3rd_party.php:101 +msgid "Walk Score" +msgstr "" + +#: inc/admin/settings/3rd_party.php:109 +msgid "Walk Score APi Key" +msgstr "" + +#: inc/admin/settings/3rd_party.php:110 +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:128 +msgid "Yelp API Client ID" +msgstr "" + +#: inc/admin/settings/3rd_party.php:129 +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:135 +msgid "Yelp API Secret" +msgstr "" + +#: inc/admin/settings/3rd_party.php:136 +msgid "" +"Add Yelp API Secret. Register here" +msgstr "" + +#: inc/admin/settings/3rd_party.php:142 +msgid "Yelp App key" +msgstr "" + +#: inc/admin/settings/3rd_party.php:143 +msgid "" +"You can find it in your Yelp Application Dashboard. Register here" +msgstr "" + +#: inc/admin/settings/3rd_party.php:149 +msgid "Yelp Categories" +msgstr "" + +#: inc/admin/settings/3rd_party.php:150 +msgid "Yelp Categories to show on front page" +msgstr "" + +#: inc/admin/settings/3rd_party.php:156 +msgid "Yelp - Number of results" +msgstr "" + +#: inc/admin/settings/3rd_party.php:157 +msgid "Number of results to show on listing page for each category." +msgstr "" + +#: inc/admin/settings/3rd_party.php:167 inc/admin/settings/3rd_party.php:168 +msgid "Yelp Distance Measurement Unit" +msgstr "" + +#: inc/admin/settings/3rd_party.php:172 inc/admin/settings/property.php:715 +#: inc/template-functions.php:714 +#: inc/vendors/elementor/widgets/opalestate-searchbox.php:195 +msgid "miles" +msgstr "" + +#: inc/admin/settings/3rd_party.php:173 +msgid "kilometers" +msgstr "" + +#: inc/admin/settings/email.php:28 inc/admin/settings/general.php:28 +#: inc/admin/settings/general.php:37 +msgid "General Settings" +msgstr "" + +#: inc/admin/settings/general.php:45 +msgid "Login and Redirect to Dashboard page" +msgstr "" + +#: inc/admin/settings/general.php:46 +msgid "Redirect to User Management Dashboard page after login." +msgstr "" + +#: inc/admin/settings/general.php:55 +msgid "Register and Redirect to Dashboard page" +msgstr "" + +#: inc/admin/settings/general.php:56 +msgid "Redirect to User Management Dashboard page after register." +msgstr "" + +#: inc/admin/settings/general.php:65 +msgid "Image Settings" +msgstr "" + +#: inc/admin/settings/general.php:73 inc/admin/settings/general.php:84 +msgid "Agent Image Size" +msgstr "" + +#: inc/admin/settings/general.php:74 inc/admin/settings/general.php:85 +msgid "" +"The Loop Image is an Agent that is chosen as the representative Agent in " +"grid and list." +msgstr "" + +#: inc/admin/settings/general.php:94 +msgid "Loop Image Size" +msgstr "" + +#: inc/admin/settings/general.php:95 +msgid "" +"The Loop Image is an image that is chosen as the representative image in " +"grid and list." +msgstr "" + +#: inc/admin/settings/general.php:103 +msgid "Featured Image Size" +msgstr "" + +#: inc/admin/settings/general.php:104 +msgid "" +"The Featured Image is an image that is chosen as the representative image " +"in single page. ." +msgstr "" + +#: inc/admin/settings/general.php:109 +msgid "" +"To generate images with new image sizes, you can use this Force Regenerate " +"Thumbnails" +msgstr "" + +#: inc/admin/settings/general.php:114 +msgid "Currency Settings" +msgstr "" + +#: inc/admin/settings/general.php:122 +msgid "Currency" +msgstr "" + +#: inc/admin/settings/general.php:123 +msgid "" +"Choose your currency. Note that some payment gateways have currency " +"restrictions." +msgstr "" + +#: inc/admin/settings/general.php:130 +msgid "Currency Position" +msgstr "" + +#: inc/admin/settings/general.php:135 +msgid "Before - $10" +msgstr "" + +#: inc/admin/settings/general.php:136 +msgid "After - 10$" +msgstr "" + +#: inc/admin/settings/general.php:141 +msgid "Thousands Separator" +msgstr "" + +#: inc/admin/settings/general.php:142 +msgid "The symbol (typically , or .) to separate thousands" +msgstr "" + +#: inc/admin/settings/general.php:148 +msgid "Decimal Separator" +msgstr "" + +#: inc/admin/settings/general.php:149 +msgid "The symbol (usually , or .) to separate decimal points" +msgstr "" + +#: inc/admin/settings/general.php:155 +msgid "Number of Decimals" +msgstr "" + +#: inc/admin/settings/general.php:156 +msgid "This sets the number of decimal points shown in displayed prices." +msgstr "" + +#: inc/admin/settings/general.php:165 +msgid "Measurement Unit" +msgstr "" + +#: inc/admin/settings/general.php:166 +msgid "Select a measurement unit." +msgstr "" + +#: inc/admin/settings/general.php:173 +msgid "Time Format" +msgstr "" + +#: inc/admin/settings/general.php:174 +msgid "Select a time format." +msgstr "" + +#: inc/admin/settings/general.php:182 +msgid "Others" +msgstr "" + +#: inc/admin/settings/general.php:190 +msgid "Minimum of Target Price For Agent" +msgstr "" + +#: inc/admin/settings/general.php:191 +msgid "Enter minimum of price for starting search agent by target" +msgstr "" + +#: inc/admin/settings/general.php:200 +msgid "Maximum of Target Price For Agent" +msgstr "" + +#: inc/admin/settings/general.php:201 +msgid "Enter maximum of price for starting search agent by target" +msgstr "" + +#: inc/admin/settings/general.php:210 +#: 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/admin/settings/general.php:218 +msgid "Clean Up Interval" +msgstr "" + +#: inc/admin/settings/general.php:219 +msgid "Set a schedule to automatically clean up expired properties and attachments." +msgstr "" + +#: inc/admin/settings/pages.php:42 +msgid "Pages Settings" +msgstr "" + +#: inc/admin/settings/pages.php:50 +msgid "User Management Page" +msgstr "" + +#: inc/admin/settings/pages.php:51 +msgid "" +"This is page use User Management Page using for show content of management " +"page such as profile, my properties" +msgstr "" + +#: inc/admin/settings/pages.php:57 +msgid "Dashboard Logo" +msgstr "" + +#: inc/admin/settings/pages.php:58 +msgid "Upload a logo for user dashboard page." +msgstr "" + +#: inc/admin/settings/pages.php:74 +msgid "My Account Page" +msgstr "" + +#: inc/admin/settings/pages.php:75 +msgid "This is page used for login and register an account, or reset password." +msgstr "" + +#: inc/admin/settings/pages.php:81 +msgid "Terms and Conditions Page" +msgstr "" + +#: inc/admin/settings/pages.php:82 +msgid "This is page used for terms and conditions." +msgstr "" + +#: inc/admin/settings/pages.php:88 +msgid "Dashboard Settings" +msgstr "" + +#: inc/admin/settings/pages.php:92 +msgid "Settings for User Management Dashboard." +msgstr "" + +#: inc/admin/settings/pages.php:97 +msgid "Show Profile" +msgstr "" + +#: inc/admin/settings/pages.php:98 +msgid "Show Profile menu page." +msgstr "" + +#: inc/admin/settings/pages.php:108 +msgid "Show Agent Profile" +msgstr "" + +#: inc/admin/settings/pages.php:109 +msgid "Show Agent Profile menu page." +msgstr "" + +#: inc/admin/settings/pages.php:119 +msgid "Show Agency Profile" +msgstr "" + +#: inc/admin/settings/pages.php:120 +msgid "Show Agency Profile menu page." +msgstr "" + +#: inc/admin/settings/pages.php:130 +msgid "Show Favorite" +msgstr "" + +#: inc/admin/settings/pages.php:131 +msgid "Show Favorite menu page." +msgstr "" + +#: inc/admin/settings/pages.php:141 +msgid "Show Reviews" +msgstr "" + +#: inc/admin/settings/pages.php:142 +msgid "Show Reviews menu page." +msgstr "" + +#: inc/admin/settings/pages.php:152 +msgid "Enable Message Database" +msgstr "" + +#: inc/admin/settings/pages.php:153 +msgid "" +"Allow User send message Contact/Equire via email and saved into database to " +"exchange theirs message direct in User Message Management" +msgstr "" + +#: inc/admin/settings/pages.php:164 +msgid "Show Submission" +msgstr "" + +#: inc/admin/settings/pages.php:165 +msgid "Show Submission menu page." +msgstr "" + +#: inc/admin/settings/pages.php:175 +msgid "Show Properties" +msgstr "" + +#: inc/admin/settings/pages.php:176 +msgid "Show My Properties menu page." +msgstr "" + +#: inc/admin/settings/pages.php:186 +msgid "Show Saved Search" +msgstr "" + +#: inc/admin/settings/pages.php:187 +msgid "Show Saved Search menu page." +msgstr "" + +#: inc/admin/settings/property.php:22 +#: 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/search-box/fields/submit-button.php:2 +#: templates/shortcodes/ajax-map-quick-search.php:23 +msgid "Search" +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 Search form" +msgstr "" + +#: inc/admin/settings/property.php:97 +msgid "Default Display mode" +msgstr "" + +#: inc/admin/settings/property.php:104 +msgid "Archive Grid layout" +msgstr "" + +#: inc/admin/settings/property.php:111 +msgid "Archive List layout" +msgstr "" + +#: inc/admin/settings/property.php:133 +msgid "User Share Search" +msgstr "" + +#: inc/admin/settings/property.php:134 +msgid "Display Share Search Link Management" +msgstr "" + +#: inc/admin/settings/property.php:144 +msgid "User Saved Search" +msgstr "" + +#: inc/admin/settings/property.php:145 +msgid "Display Save Search Link Management" +msgstr "" + +#: inc/admin/settings/property.php:156 +msgid "Search Properties Page" +msgstr "" + +#: inc/admin/settings/property.php:157 +msgid "This is page to display result of properties after user searching via form." +msgstr "" + +#: inc/admin/settings/property.php:169 +msgid "Properties Per Page" +msgstr "" + +#: inc/admin/settings/property.php:170 +msgid "Enter min of properties display in search page" +msgstr "" + +#: inc/admin/settings/property.php:181 +msgid "Show Featured First" +msgstr "" + +#: inc/admin/settings/property.php:183 +msgid "Show featured first in page result, as default Newest is showed" +msgstr "" + +#: inc/admin/settings/property.php:192 +msgid "Minimum of Search Price" +msgstr "" + +#: inc/admin/settings/property.php:193 +msgid "Enter minimum of price for starting search" +msgstr "" + +#: inc/admin/settings/property.php:202 +msgid "Maximum of Search Price" +msgstr "" + +#: inc/admin/settings/property.php:203 +msgid "Enter maximum of price for starting search" +msgstr "" + +#: inc/admin/settings/property.php:214 +msgid "Minimum of Search Aea" +msgstr "" + +#: inc/admin/settings/property.php:215 +msgid "Enter minimum of area for starting search" +msgstr "" + +#: inc/admin/settings/property.php:224 +msgid "Maximum of Search Aea" +msgstr "" + +#: inc/admin/settings/property.php:225 +msgid "Enter maximum of area for starting search" +msgstr "" + +#: inc/admin/settings/property.php:235 +msgid "Search Grid layout" +msgstr "" + +#: inc/admin/settings/property.php:242 +msgid "Search List layout" +msgstr "" + +#: inc/admin/settings/property.php:249 +msgid "Search Fields" +msgstr "" + +#: inc/admin/settings/property.php:253 +msgid "Enable/Disable fields appearing in search properties form." +msgstr "" + +#: inc/admin/settings/property.php:257 +msgid "Show Price" +msgstr "" + +#: inc/admin/settings/property.php:267 +msgid "Price input type" +msgstr "" + +#: inc/admin/settings/property.php:269 +msgid "Range slider" +msgstr "" + +#: inc/admin/settings/property.php:270 +#: inc/vendors/elementor/widgets/opalestate-searchbox.php:285 +msgid "Input" +msgstr "" + +#: inc/admin/settings/property.php:290 +msgid "Search Fields type" +msgstr "" + +#: inc/admin/settings/property.php:294 +msgid "Input type for search fields." +msgstr "" + +#: inc/admin/settings/property.php:315 +msgid "Field type" +msgstr "" + +#: inc/admin/settings/property.php:317 +msgid "Select" +msgstr "" + +#: inc/admin/settings/property.php:318 +msgid "Range" +msgstr "" + +#: inc/admin/settings/property.php:319 +msgid "Text" +msgstr "" + +#: inc/admin/settings/property.php:327 +msgid "Options" +msgstr "" + +#: inc/admin/settings/property.php:328 +msgid "Options value select. Use \",\" to separate values." +msgstr "" + +#: inc/admin/settings/property.php:335 inc/admin/settings/property.php:336 +msgid "Min range" +msgstr "" + +#: inc/admin/settings/property.php:343 inc/admin/settings/property.php:344 +msgid "Max range" +msgstr "" + +#: inc/admin/settings/property.php:351 inc/admin/settings/property.php:352 +msgid "Unit thousand" +msgstr "" + +#: inc/admin/settings/property.php:358 +msgid "Default text" +msgstr "" + +#: inc/admin/settings/property.php:359 +msgid "Default text value" +msgstr "" + +#: inc/admin/settings/property.php:377 +msgid "Single Layout Page" +msgstr "" + +#: inc/admin/settings/property.php:378 +msgid "Choose layout for single property." +msgstr "" + +#: inc/admin/settings/property.php:381 +#: inc/property/class-metabox-property-admin.php:493 +#: inc/property/class-metabox-property-admin.php:508 +#: inc/template-functions.php:479 +msgid "Inherit" +msgstr "" + +#: inc/admin/settings/property.php:386 +msgid "Single Preview Display" +msgstr "" + +#: inc/admin/settings/property.php:387 +msgid "Choose preview layout for single property." +msgstr "" + +#: inc/admin/settings/property.php:395 +msgid "Enable Request Viewing" +msgstr "" + +#: inc/admin/settings/property.php:396 +msgid "Enable Request Viewing feature in the single property page." +msgstr "" + +#: inc/admin/settings/property.php:407 +msgid "Request Viewing Time Range (minute)" +msgstr "" + +#: inc/admin/settings/property.php:408 +msgid "Time range from 1-60 minutes." +msgstr "" + +#: inc/admin/settings/property.php:421 +msgid "Show Amenities tab" +msgstr "" + +#: inc/admin/settings/property.php:422 +msgid "Show Amenities tab in the single property page." +msgstr "" + +#: inc/admin/settings/property.php:432 +msgid "Hide Unset amenities" +msgstr "" + +#: inc/admin/settings/property.php:433 +msgid "Hide unset amenities. Default: Show unset amenities with disable icons." +msgstr "" + +#: inc/admin/settings/property.php:444 +msgid "Show Facilities tab" +msgstr "" + +#: inc/admin/settings/property.php:445 +msgid "Show Facilities tab in the single property page." +msgstr "" + +#: inc/admin/settings/property.php:456 +msgid "Show Attachments tab" +msgstr "" + +#: inc/admin/settings/property.php:457 +msgid "Show Attachments tab in the single property page." +msgstr "" + +#: inc/admin/settings/property.php:468 +msgid "Show Video tab" +msgstr "" + +#: inc/admin/settings/property.php:469 +msgid "Show Video tab in the single property page." +msgstr "" + +#: inc/admin/settings/property.php:480 +msgid "Show Virtual Tour tab" +msgstr "" + +#: inc/admin/settings/property.php:481 +msgid "Show Virtual Tour tab in the single property page." +msgstr "" + +#: inc/admin/settings/property.php:492 +msgid "Show Map tab" +msgstr "" + +#: inc/admin/settings/property.php:493 +msgid "Show Map tab in the single property page." +msgstr "" + +#: inc/admin/settings/property.php:504 +msgid "Show Nearby tab" +msgstr "" + +#: inc/admin/settings/property.php:505 +msgid "Show Nearby tab in the single property page." +msgstr "" + +#: inc/admin/settings/property.php:516 +msgid "Show Walk Scores tab" +msgstr "" + +#: inc/admin/settings/property.php:517 +msgid "Show Walk Scores tab in the single property page." +msgstr "" + +#: inc/admin/settings/property.php:528 +msgid "Show Apartments tab" +msgstr "" + +#: inc/admin/settings/property.php:529 +msgid "Show Apartments tab in the single property page." +msgstr "" + +#: inc/admin/settings/property.php:540 +msgid "Show Floor Plans tab" +msgstr "" + +#: inc/admin/settings/property.php:541 +msgid "Show Floor Plans tab in the single property page." +msgstr "" + +#: inc/admin/settings/property.php:552 +msgid "Show Views Statistics tab" +msgstr "" + +#: inc/admin/settings/property.php:553 +msgid "Show Views Statistics tab in the single property page." +msgstr "" + +#: inc/admin/settings/property.php:563 +msgid "Views Statistics time limit (days)" +msgstr "" + +#: inc/admin/settings/property.php:564 +msgid "The number of days will be saved to the database." +msgstr "" + +#: inc/admin/settings/property.php:577 +msgid "Login to show Price" +msgstr "" + +#: inc/admin/settings/property.php:578 +msgid "Require users login to show Price" +msgstr "" + +#: inc/admin/settings/property.php:589 +msgid "Show Author box" +msgstr "" + +#: inc/admin/settings/property.php:590 +msgid "Show Author box in the single property page." +msgstr "" + +#: inc/admin/settings/property.php:600 +msgid "Login to show Author box" +msgstr "" + +#: inc/admin/settings/property.php:601 +msgid "Require users login to show Author box" +msgstr "" + +#: inc/admin/settings/property.php:612 +msgid "Show Enquire form" +msgstr "" + +#: inc/admin/settings/property.php:613 +msgid "Show Enquire form in the single property page." +msgstr "" + +#: inc/admin/settings/property.php:623 +msgid "Login to show Enquire form" +msgstr "" + +#: inc/admin/settings/property.php:624 +msgid "Require users login to show Enquire form" +msgstr "" + +#: inc/admin/settings/property.php:635 +#: inc/property/class-metabox-property-admin.php:504 +#: inc/property/class-metabox-property-admin.php:512 +msgid "Show Mortgage Calculator" +msgstr "" + +#: inc/admin/settings/property.php:636 +msgid "Show Mortgage Calculator in the single property page." +msgstr "" + +#: inc/admin/settings/property.php:647 +msgid "Show Related properties" +msgstr "" + +#: inc/admin/settings/property.php:648 +msgid "Show Related properties the single property page." +msgstr "" + +#: inc/admin/settings/property.php:659 +msgid "Related properties layout" +msgstr "" + +#: inc/admin/settings/property.php:660 +msgid "Select a layout for related properties." +msgstr "" + +#: inc/admin/settings/property.php:667 inc/admin/settings/property.php:720 +msgid "Number of properties" +msgstr "" + +#: inc/admin/settings/property.php:679 +msgid "Show Nearby properties" +msgstr "" + +#: inc/admin/settings/property.php:680 +msgid "Show Nearby properties in the single property page." +msgstr "" + +#: inc/admin/settings/property.php:691 +msgid "Nearby properties layout" +msgstr "" + +#: inc/admin/settings/property.php:692 +msgid "Select a layout for nearby properties." +msgstr "" + +#: inc/admin/settings/property.php:699 +msgid "Nearby Radius" +msgstr "" + +#: inc/admin/settings/property.php:710 +msgid "Nearby Measure Unit" +msgstr "" + +#: inc/admin/settings/property.php:714 inc/template-functions.php:718 +#: inc/vendors/elementor/widgets/opalestate-searchbox.php:194 +msgid "km" +msgstr "" + +#: inc/admin/views/addons/list.php:2 +msgid "Opal Estate Add-ons" +msgstr "" + +#: inc/admin/views/addons/list.php:4 +msgid "The following Add-ons extend the functionality of Opal Estate." +msgstr "" + +#: inc/admin/views/addons/list.php:85 +msgid "By %s" +msgstr "" + +#: inc/admin/views/addons/list.php:109 +#. translators: %s: plugin name and version +msgid "Install %s now" +msgstr "" + +#: inc/admin/views/addons/list.php:111 +msgid "Install Now" +msgstr "" + +#: inc/admin/views/addons/list.php:131 +#. translators: %s: plugin name and version +msgid "Update %s now" +msgstr "" + +#: inc/admin/views/addons/list.php:133 +msgid "Update Now" +msgstr "" + +#: inc/admin/views/addons/list.php:152 +msgid "Activate" +msgstr "" + +#: inc/admin/views/addons/list.php:165 +msgid "Network Activate" +msgstr "" + +#: inc/admin/views/addons/list.php:196 +#. translators: %s: plugin name and version +msgid "More information about %s" +msgstr "" + +#: inc/admin/views/addons/list.php:198 +msgid "More Details" +msgstr "" + +#: inc/admin/views/addons/list.php:228 +msgid "This plugin doesn’t work with your versions of WordPress and PHP." +msgstr "" + +#: inc/admin/views/addons/list.php:232 +#. translators: 1: "Update WordPress" screen URL, 2: "Update PHP" page URL +msgid "" +"Please update WordPress, and then learn more about updating PHP." +msgstr "" + +#: inc/admin/views/addons/list.php:240 inc/admin/views/addons/list.php:256 +#. translators: %s: "Update WordPress" screen URL +msgid "Please update WordPress." +msgstr "" + +#: inc/admin/views/addons/list.php:246 inc/admin/views/addons/list.php:265 +#. translators: %s: "Update PHP" page URL +msgid "Learn more about updating PHP." +msgstr "" + +#: inc/admin/views/addons/list.php:252 +msgid "This plugin doesn’t work with your version of WordPress." +msgstr "" + +#: inc/admin/views/addons/list.php:261 +msgid "This plugin doesn’t work with your version of PHP." +msgstr "" + +#: inc/admin/views/addons/list.php:309 +msgid "Last Updated:" +msgstr "" + +#: inc/admin/views/addons/list.php:309 +msgid "%s ago" +msgstr "" + +#: inc/admin/views/addons/list.php:324 +msgid "%s Active Installations" +msgstr "" + +#: inc/admin/views/addons/list.php:330 +msgid "Untested with your version of WordPress" +msgstr "" + +#: inc/admin/views/addons/list.php:332 +msgid "Incompatible with your version of WordPress" +msgstr "" + +#: inc/admin/views/addons/list.php:334 +msgid "Compatible with your version of WordPress" +msgstr "" + +#: inc/admin/views/addons/list.php:345 +msgid "" +"There was an error retrieving the Opalestate Add-ons list from the server. " +"Please try again later." +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:376 +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:378 +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 +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:58 +#: inc/classes/class-opalestate-metabox-user.php:177 +msgid "Is Featured" +msgstr "" + +#: inc/agency/class-opalestate-agency-metabox.php:60 +msgid "Set this agent as featured" +msgstr "" + +#: inc/agency/class-opalestate-agency-metabox.php:62 +#: 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/submission/class-metabox-property-submission.php:369 +#: inc/submission/class-metabox-property-submission.php:449 +#: 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 +#: inc/widgets/search-properties.php:170 +msgid "No" +msgstr "" + +#: inc/agency/class-opalestate-agency-metabox.php:63 +#: 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/submission/class-metabox-property-submission.php:370 +#: inc/submission/class-metabox-property-submission.php:450 +#: 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 +#: inc/widgets/search-properties.php:171 +msgid "Yes" +msgstr "" + +#: inc/agency/class-opalestate-agency-metabox.php:83 +#: inc/submission/class-metabox-property-submission.php:45 +#: inc/user/class-opalestate-user.php:600 +#: inc/user/class-opalestate-user.php:613 +msgid "Name and Description" +msgstr "" + +#: 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/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: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/content-single-property-v2.php:72 +#: templates/search-box/search-form-v2.php:38 +#: templates/search-box/search-form-v3.php:53 +msgid "Information" +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:549 +#: inc/message/class-opalestate-message.php:651 +#: inc/message/class-opalestate-message.php:722 +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/agency/class-opalestate-agency-metabox.php:180 +#: inc/classes/class-opalestate-metabox-user.php:244 +#: inc/vendors/social-login/class-opalestate-social-login.php:99 +#: templates/user/social-login/facebook-button.php:19 +msgid "Facebook" +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:278 +#: inc/agent/class-opalestate-agent-metabox.php:64 +#: inc/agent/class-opalestate-agent-metabox.php:110 inc/api/v1/property.php:635 +#: inc/taxonomies/class-taxonomy-types.php:82 +#: inc/taxonomies/class-taxonomy-types.php:92 +#: inc/vendors/elementor/widgets/opalestate-property-collection.php:254 +#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:243 +#: templates/search-box/search-form-v2.php:33 +#: templates/search-box/search-form-v3.php:48 +msgid "Types" +msgstr "" + +#: inc/agency/class-opalestate-agency-metabox.php:301 +#: inc/agent/class-opalestate-agent-metabox.php:148 +msgid "Banner" +msgstr "" + +#: 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:198 +#: inc/submission/class-metabox-property-submission.php:207 +msgid "Select one or more images to show as gallery" +msgstr "" + +#: inc/agency/class-opalestate-agency-metabox.php:337 +#: inc/agent/class-opalestate-agent-metabox.php:177 +#: inc/class-opalestate-email.php:178 +#: inc/classes/class-opalestate-metabox-user.php:144 +#: inc/classes/class-opalestate-metabox-user.php:204 +#: inc/message/class-opalestate-message.php:540 +#: inc/message/class-opalestate-message.php:642 +#: templates/rating/opalestate-ratings.php:242 +msgid "Email" +msgstr "" + +#: 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/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/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/agency/class-opalestate-agency-metabox.php:377 +#: inc/property/class-metabox-property-admin.php:400 +msgid "Agency Information" +msgstr "" + +#: inc/agency/class-opalestate-agency-posttype.php:43 +#: inc/agency/class-opalestate-agency-posttype.php:55 +msgid "Agencies" +msgstr "" + +#: inc/agency/class-opalestate-agency-posttype.php:45 +#: inc/agency/class-opalestate-agency-posttype.php:46 +msgid "Add New Agency" +msgstr "" + +#: inc/agency/class-opalestate-agency-posttype.php:47 +msgid "Edit Agency" +msgstr "" + +#: inc/agency/class-opalestate-agency-posttype.php:48 +msgid "New Agency" +msgstr "" + +#: inc/agency/class-opalestate-agency-posttype.php:49 +msgid "All Agencies" +msgstr "" + +#: inc/agency/class-opalestate-agency-posttype.php:50 +msgid "View Agency" +msgstr "" + +#: inc/agency/class-opalestate-agency-posttype.php:51 +msgid "Search Agency" +msgstr "" + +#: inc/agency/class-opalestate-agency-posttype.php:52 +msgid "No Agencies found" +msgstr "" + +#: inc/agency/class-opalestate-agency-posttype.php:53 +msgid "No Agencies found in Trash" +msgstr "" + +#: inc/agency/class-opalestate-agency-posttype.php:75 +#: inc/agency/class-opalestate-agency-posttype.php:85 +msgid "Agency Categories" +msgstr "" + +#: inc/agency/class-opalestate-agency-posttype.php:76 +#: inc/submission/class-metabox-property-submission.php:162 +#: inc/taxonomies/class-taxonomy-categories.php:119 +msgid "Category" +msgstr "" + +#: inc/agency/class-opalestate-agency-posttype.php:77 +msgid "Search Category" +msgstr "" + +#: inc/agency/class-opalestate-agency-posttype.php:78 +msgid "All Categories" +msgstr "" + +#: inc/agency/class-opalestate-agency-posttype.php:79 +msgid "Parent Category" +msgstr "" + +#: inc/agency/class-opalestate-agency-posttype.php:80 +msgid "Parent Category:" +msgstr "" + +#: inc/agency/class-opalestate-agency-posttype.php:81 +msgid "Edit Category" +msgstr "" + +#: inc/agency/class-opalestate-agency-posttype.php:82 +msgid "Update Category" +msgstr "" + +#: inc/agency/class-opalestate-agency-posttype.php:83 +#: inc/taxonomies/class-taxonomy-categories.php:44 +msgid "Add New Category" +msgstr "" + +#: inc/agency/class-opalestate-agency-posttype.php:84 +msgid "New Category Name" +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-metabox.php:45 +msgid "Link to User" +msgstr "" + +#: inc/agent/class-opalestate-agent-metabox.php:47 +msgid "Enter User ID to show information without using user info" +msgstr "" + +#: inc/agent/class-opalestate-agent-metabox.php:52 +#: inc/agent/class-opalestate-agent-metabox.php:119 +msgid "Target Min Price" +msgstr "" + +#: inc/agent/class-opalestate-agent-metabox.php:54 +#: inc/agent/class-opalestate-agent-metabox.php:121 +msgid "Enter min price of property which is for sale/rent..." +msgstr "" + +#: inc/agent/class-opalestate-agent-metabox.php:59 +#: inc/agent/class-opalestate-agent-metabox.php:126 +msgid "Target Max Price" +msgstr "" + +#: inc/agent/class-opalestate-agent-metabox.php:61 +#: inc/agent/class-opalestate-agent-metabox.php:128 +msgid "Enter max price of property which is for sale/rent..." +msgstr "" + +#: inc/agent/class-opalestate-agent-metabox.php:91 +msgid "Title/Name" +msgstr "" + +#: inc/agent/class-opalestate-agent-metabox.php:215 +msgid "Agent Information" +msgstr "" + +#: inc/agent/class-opalestate-agent-posttype.php:36 +#: inc/agent/class-opalestate-agent-posttype.php:48 +msgid "Agents" +msgstr "" + +#: inc/agent/class-opalestate-agent-posttype.php:38 +#: inc/agent/class-opalestate-agent-posttype.php:39 +msgid "Add New Agent" +msgstr "" + +#: inc/agent/class-opalestate-agent-posttype.php:40 +msgid "Edit Agent" +msgstr "" + +#: inc/agent/class-opalestate-agent-posttype.php:41 +msgid "New Agent" +msgstr "" + +#: inc/agent/class-opalestate-agent-posttype.php:42 +msgid "All Agents" +msgstr "" + +#: inc/agent/class-opalestate-agent-posttype.php:43 +msgid "View Agent" +msgstr "" + +#: inc/agent/class-opalestate-agent-posttype.php:44 +msgid "Search Agent" +msgstr "" + +#: inc/agent/class-opalestate-agent-posttype.php:45 +msgid "No Agents found" +msgstr "" + +#: inc/agent/class-opalestate-agent-posttype.php:46 +msgid "No Agents found in Trash" +msgstr "" + +#: inc/agent/class-opalestate-agent-posttype.php:75 +#: inc/agent/class-opalestate-agent-posttype.php:85 +msgid "Agent Levels" +msgstr "" + +#: inc/agent/class-opalestate-agent-posttype.php:76 +msgid "Level" +msgstr "" + +#: inc/agent/class-opalestate-agent-posttype.php:77 +msgid "Search Level" +msgstr "" + +#: inc/agent/class-opalestate-agent-posttype.php:78 +msgid "All Levels" +msgstr "" + +#: inc/agent/class-opalestate-agent-posttype.php:79 +msgid "Parent Level" +msgstr "" + +#: inc/agent/class-opalestate-agent-posttype.php:80 +msgid "Parent Level:" +msgstr "" + +#: inc/agent/class-opalestate-agent-posttype.php:81 +msgid "Edit Level" +msgstr "" + +#: inc/agent/class-opalestate-agent-posttype.php:82 +msgid "Update Level" +msgstr "" + +#: inc/agent/class-opalestate-agent-posttype.php:83 +msgid "Add New Level" +msgstr "" + +#: inc/agent/class-opalestate-agent-posttype.php:84 +msgid "New Level Name" msgstr "" #: inc/ajax-functions.php:99 inc/taxonomies/class-taxonomy-state.php:129 @@ -62,6 +1924,427 @@ msgstr "" msgid "Revoke key" 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: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/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 +#: templates/single-property/content.php:2 +msgid "Description" +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:95 +#. translators: %s: API key ID. +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 "" + +#: inc/api/class-opalestate-admin-api-keys-table-list.php:182 +#: inc/api/html-keys-edit.php:93 +#. translators: 1: last access date 2: last access time +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 +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 +#. translators: %d: count +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-base-api.php:146 +#: inc/vendors/cmb2-plugins/cmb2/includes/shim/WP_REST_Controller.php:35 +#: inc/vendors/cmb2-plugins/cmb2/includes/shim/WP_REST_Controller.php:47 +#: inc/vendors/cmb2-plugins/cmb2/includes/shim/WP_REST_Controller.php:59 +#: inc/vendors/cmb2-plugins/cmb2/includes/shim/WP_REST_Controller.php:71 +#: inc/vendors/cmb2-plugins/cmb2/includes/shim/WP_REST_Controller.php:83 +#: inc/vendors/cmb2-plugins/cmb2/includes/shim/WP_REST_Controller.php:95 +#: inc/vendors/cmb2-plugins/cmb2/includes/shim/WP_REST_Controller.php:107 +#: inc/vendors/cmb2-plugins/cmb2/includes/shim/WP_REST_Controller.php:119 +#: inc/vendors/cmb2-plugins/cmb2/includes/shim/WP_REST_Controller.php:131 +#: inc/vendors/cmb2-plugins/cmb2/includes/shim/WP_REST_Controller.php:143 +#: inc/vendors/cmb2-plugins/cmb2/includes/shim/WP_REST_Controller.php:155 +#: inc/vendors/cmb2-plugins/cmb2/includes/shim/WP_REST_Controller.php:168 +#. translators: %s: Class method name. +msgid "Method '%s' not implemented. Must be overridden in subclass." +msgstr "" + +#: inc/api/class-opalestate-base-api.php:157 +msgid "You must specify both a token and API key!" +msgstr "" + +#: inc/api/class-opalestate-base-api.php:168 +msgid "Your request could not be authenticated!" +msgstr "" + +#: inc/api/class-opalestate-base-api.php:179 +msgid "Invalid API key!" +msgstr "" + +#: inc/api/class-opalestate-base-api.php:203 inc/api/v1/user.php:101 +msgid "Sorry, you cannot list resources." +msgstr "" + +#: inc/api/class-opalestate-base-api.php:227 +msgid "Sorry, you cannot list resources. Invalid keys!" +msgstr "" + +#: inc/api/class-opalestate-base-api.php:262 inc/api/v1/user.php:132 +msgid "Sorry, you cannot view this resource." +msgstr "" + +#: inc/api/class-opalestate-base-api.php:276 inc/api/v1/user.php:116 +msgid "Sorry, you are not allowed to create resources." +msgstr "" + +#: inc/api/class-opalestate-base-api.php:292 inc/api/v1/user.php:149 +msgid "Sorry, you are not allowed to edit this resource." +msgstr "" + +#: inc/api/class-opalestate-base-api.php:305 +#: inc/vendors/cmb2-plugins/cmb2/includes/shim/WP_REST_Controller.php:273 +msgid "Current page of the collection." +msgstr "" + +#: inc/api/class-opalestate-base-api.php:313 +#: inc/vendors/cmb2-plugins/cmb2/includes/shim/WP_REST_Controller.php:281 +msgid "Maximum number of items to be returned in result set." +msgstr "" + +#: inc/api/class-opalestate-rest-authentication.php:167 +msgid "Consumer secret is invalid." +msgstr "" + +#: inc/api/class-opalestate-rest-authentication.php:280 +#. translators: %s: amount of errors +msgid "Missing OAuth parameter %s" +msgid_plural "Missing OAuth parameters %s" +msgstr[0] "" +msgstr[1] "" + +#: inc/api/class-opalestate-rest-authentication.php:320 +msgid "Consumer key is invalid." +msgstr "" + +#: inc/api/class-opalestate-rest-authentication.php:366 +msgid "Invalid signature - failed to sort parameters." +msgstr "" + +#: inc/api/class-opalestate-rest-authentication.php:375 +msgid "Invalid signature - signature method is invalid." +msgstr "" + +#: inc/api/class-opalestate-rest-authentication.php:383 +msgid "Invalid signature - provided signature does not match." +msgstr "" + +#: inc/api/class-opalestate-rest-authentication.php:459 +msgid "Invalid timestamp." +msgstr "" + +#: inc/api/class-opalestate-rest-authentication.php:469 +msgid "Invalid nonce - nonce has already been used." +msgstr "" + +#: inc/api/class-opalestate-rest-authentication.php:531 +msgid "The API key provided does not have read permissions." +msgstr "" + +#: inc/api/class-opalestate-rest-authentication.php:539 +msgid "The API key provided does not have write permissions." +msgstr "" + +#: inc/api/class-opalestate-rest-authentication.php:546 +msgid "Unknown request method." +msgstr "" + +#: inc/api/class-opalestate-rest-authentication.php:577 +msgid "" +"Opalestate API. Use a consumer key in the username field and a consumer " +"secret in the password field." +msgstr "" + +#: inc/api/html-keys-edit.php:12 +msgid "Key details" +msgstr "" + +#: inc/api/html-keys-edit.php:41 +#. translators: 1: user display name 2: user ID 3: user email +msgid "%1$s (#%2$s – %3$s)" +msgstr "" + +#: inc/api/html-keys-edit.php:47 +msgid "Search for a user…" +msgstr "" + +#: inc/api/html-keys-edit.php:112 +msgid "Generate API key" +msgstr "" + +#: inc/api/html-keys-edit.php:116 +msgid "Save changes" +msgstr "" + +#: inc/api/html-keys-edit.php:132 +msgid "Consumer key" +msgstr "" + +#: inc/api/html-keys-edit.php:136 inc/api/html-keys-edit.php:145 +msgid "Copied!" +msgstr "" + +#: inc/api/html-keys-edit.php:136 inc/api/html-keys-edit.php:146 +msgid "Copy" +msgstr "" + +#: inc/api/html-keys-edit.php:141 +msgid "Consumer secret" +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/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/agency.php:159 inc/api/v1/agency.php:273 +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 +msgid "Agent ID: %s does not exist!" +msgstr "" + +#: inc/api/v1/property.php:171 inc/api/v1/property.php:193 +msgid "Property ID: %s does not exist!" +msgstr "" + +#: inc/api/v1/property.php:233 +msgid "Not found" +msgstr "" + +#: inc/api/v1/property.php:261 inc/api/v1/user.php:620 +#. translators: %s: post type +msgid "Cannot create existing %s." +msgstr "" + +#: inc/api/v1/property.php:539 inc/api/v1/property.php:547 +msgid "Min price" +msgstr "" + +#: inc/api/v1/property.php:555 +msgid "Min area" +msgstr "" + +#: inc/api/v1/property.php:563 +msgid "Max area" +msgstr "" + +#: inc/api/v1/property.php:571 +msgid "Search text" +msgstr "" + +#: inc/api/v1/property.php:579 +msgid "Location text" +msgstr "" + +#: inc/api/v1/property.php:587 +msgid "Geo long" +msgstr "" + +#: inc/api/v1/property.php:595 +msgid "Geo lat" +msgstr "" + +#: inc/api/v1/property.php:603 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/fields/location.php:1 +#: templates/search-box/fields/location.php:2 +#: templates/search-box/fields/search-city-text.php:25 +#: templates/search-box/search-form-v3.php:30 +msgid "Location" +msgstr "" + +#: inc/api/v1/property.php:611 inc/taxonomies/class-taxonomy-state.php:160 +msgid "State" +msgstr "" + +#: inc/api/v1/property.php:619 inc/taxonomies/class-taxonomy-city.php:154 +msgid "City" +msgstr "" + +#: inc/api/v1/property.php:627 inc/taxonomies/class-taxonomy-categories.php:43 +#: 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/api/v1/property.php:643 +#: inc/property/class-metabox-property-admin.php:629 +#: inc/submission/class-metabox-property-submission.php:147 +#: inc/submission/class-metabox-property-submission.php:491 +#: inc/taxonomies/class-taxonomy-status.php:45 +#: inc/taxonomies/class-taxonomy-status.php:55 +#: inc/taxonomies/class-taxonomy-status.php:165 +#: inc/vendors/elementor/widgets/opalestate-property-collection.php:274 +#: inc/vendors/elementor/widgets/opalestate-search-property-results.php:263 +#: templates/single-property/apartments.php:27 +msgid "Status" +msgstr "" + +#: inc/api/v1/property.php:651 +#: inc/submission/class-metabox-property-submission.php:65 +#: inc/submission/class-metabox-property-submission.php:392 +#: inc/taxonomies/class-taxomony-amenities.php:44 +#: inc/taxonomies/class-taxomony-amenities.php:54 +#: templates/single-property/amenities.php:9 +msgid "Amenities" +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 "" + +#: 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/class-no-captcha-recaptcha.php:88 msgid "The captcha is not verified, please try again!" msgstr "" @@ -73,45 +2356,9 @@ 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" +"setting in Google Captcha Tab. Register here: " +"https://www.google.com/recaptcha/admin Version 2" msgstr "" #: inc/class-no-captcha-recaptcha.php:114 @@ -146,10 +2393,6 @@ msgstr "" 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 "" @@ -169,17 +2412,6 @@ msgstr "" 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/message/class-opalestate-message.php:537 -#: inc/message/class-opalestate-message.php:639 -#: templates/rating/opalestate-ratings.php:242 -msgid "Email" -msgstr "" - #: inc/class-opalestate-email.php:371 inc/class-opalestate-email.php:375 #: inc/submission/class-opalestate-submission.php:121 msgid "Email Settings" @@ -213,81 +2445,10 @@ msgstr "" msgid "New Property Submission (Customer)" msgstr "" -#: inc/class-opalestate-email.php:412 inc/class-opalestate-email.php:417 -#: inc/class-opalestate-email.php:450 inc/class-opalestate-email.php:455 -#: inc/class-opalestate-email.php:490 -#: inc/submission/class-opalestate-submission.php:157 -#: inc/submission/class-opalestate-submission.php:175 -#: inc/submission/class-opalestate-submission.php:185 -#: inc/submission/class-opalestate-submission.php:195 -#: inc/submission/class-opalestate-submission.php:205 -#: inc/submission/class-opalestate-submission.php:215 -#: inc/submission/class-opalestate-submission.php:225 -#: inc/submission/class-opalestate-submission.php:235 -#: inc/submission/class-opalestate-submission.php:252 -#: 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/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 "" - #: inc/class-opalestate-email.php:413 msgid "Enable email for customers when they have a submission." msgstr "" -#: inc/class-opalestate-email.php:418 inc/class-opalestate-email.php:456 -#: inc/class-opalestate-email.php:491 -#: inc/submission/class-opalestate-submission.php:158 -#: inc/submission/class-opalestate-submission.php:176 -#: inc/submission/class-opalestate-submission.php:186 -#: inc/submission/class-opalestate-submission.php:196 -#: inc/submission/class-opalestate-submission.php:206 -#: inc/submission/class-opalestate-submission.php:216 -#: inc/submission/class-opalestate-submission.php:226 -#: inc/submission/class-opalestate-submission.php:236 -#: inc/submission/class-opalestate-submission.php:253 -#: 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/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 "" - #: inc/class-opalestate-email.php:424 inc/class-opalestate-email.php:462 #: inc/class-opalestate-email.php:497 inc/class-opalestate-email.php:520 #: inc/class-opalestate-email.php:542 inc/class-opalestate-email.php:564 @@ -395,15 +2556,18 @@ msgstr "" 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/class-opalestate-html.php:221 inc/mixes-functions.php:1245 +#: inc/template-functions.php:345 #: inc/vendors/elementor/widgets/opalestate-property-collection.php:152 +#: templates/search-box/fields/status-bar.php:9 +#: templates/user/my-properties.php:3 msgid "All" msgstr "" #: inc/class-opalestate-html.php:222 -#: inc/property/class-metabox-property-admin.php:621 +#: inc/property/class-metabox-property-admin.php:632 +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Field.php:1448 +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Field.php:1452 #: 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 @@ -412,33 +2576,29 @@ msgstr "" msgid "None" msgstr "" -#: inc/class-opalestate-install.php:149 +#: inc/class-opalestate-install.php:157 msgid "User Dashboard Page" msgstr "" -#: inc/class-opalestate-install.php:167 inc/user/class-opalestate-user.php:58 +#: inc/class-opalestate-install.php:175 inc/user/class-opalestate-user.php:58 msgid "My Account" msgstr "" -#: inc/class-opalestate-install.php:168 +#: inc/class-opalestate-install.php:176 msgid "[opalestate_myaccount]" msgstr "" -#: inc/class-opalestate-install.php:185 +#: inc/class-opalestate-install.php:193 #: inc/submission/class-opalestate-submission.php:131 msgid "Property Submission Page" msgstr "" -#: inc/class-opalestate-install.php:186 +#: inc/class-opalestate-install.php:194 msgid "[opalestate_submission]" msgstr "" -#: inc/class-opalestate-install.php:203 -msgid "Search Map Properties Page" -msgstr "" - -#: inc/class-opalestate-install.php:204 -msgid "[opalestate_search_map_properties]" +#: inc/class-opalestate-install.php:250 +msgid "Opal Estate Pro Clean Up Interval" msgstr "" #: inc/class-opalestate-roles.php:49 @@ -453,2181 +2613,7 @@ msgstr "" msgid "Opal Estate Agency" msgstr "" -#: inc/function-search-fields.php:96 -msgid ": " -msgstr "" - -#: 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 -msgid "Advanced V1" -msgstr "" - -#: inc/mixes-functions.php:208 -msgid "Advanced V2" -msgstr "" - -#: inc/mixes-functions.php:209 -msgid "Advanced V3" -msgstr "" - -#: inc/mixes-functions.php:210 -msgid "Advanced V4" -msgstr "" - -#: inc/mixes-functions.php:211 -msgid "Advanced V5" -msgstr "" - -#: inc/mixes-functions.php:212 -msgid "Advanced V6" -msgstr "" - -#: inc/mixes-functions.php:213 -msgid "Vertical Advanced" -msgstr "" - -#: inc/mixes-functions.php:214 -msgid "Vertical Advanced V2" -msgstr "" - -#: inc/mixes-functions.php:215 -msgid "Vertical Advanced V3" -msgstr "" - -#: inc/mixes-functions.php:216 -msgid "Simple City" -msgstr "" - -#: inc/mixes-functions.php:217 -msgid "Simple Keyword" -msgstr "" - -#: inc/mixes-functions.php:218 -msgid "Collapse City" -msgstr "" - -#: inc/mixes-functions.php:219 -msgid "Collapse Keyword" -msgstr "" - -#: inc/mixes-functions.php:220 -msgid "Collapse Advanced" -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 -msgid "Grid" -msgstr "" - -#: inc/mixes-functions.php:232 inc/mixes-functions.php:260 -msgid "Grid v2" -msgstr "" - -#: inc/mixes-functions.php:233 inc/mixes-functions.php:261 -msgid "Grid v3" -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 -msgid "List" -msgstr "" - -#: inc/mixes-functions.php:235 inc/mixes-functions.php:274 -msgid "List v2" -msgstr "" - -#: inc/mixes-functions.php:236 inc/mixes-functions.php:262 -msgid "Mark hover" -msgstr "" - -#: inc/mixes-functions.php:373 -msgid "Orginal Size" -msgstr "" - -#: inc/mixes-functions.php:464 inc/mixes-functions.php:468 -msgid "Your Location" -msgstr "" - -#: inc/mixes-functions.php:590 -#, php-format -msgid "Placeholder %s" -msgstr "" - -#: inc/mixes-functions.php:632 -msgid "United Arab Emirates dirham" -msgstr "" - -#: inc/mixes-functions.php:633 -msgid "Afghan afghani" -msgstr "" - -#: inc/mixes-functions.php:634 -msgid "Albanian lek" -msgstr "" - -#: inc/mixes-functions.php:635 -msgid "Armenian dram" -msgstr "" - -#: inc/mixes-functions.php:636 -msgid "Netherlands Antillean guilder" -msgstr "" - -#: inc/mixes-functions.php:637 -msgid "Angolan kwanza" -msgstr "" - -#: inc/mixes-functions.php:638 -msgid "Argentine peso" -msgstr "" - -#: inc/mixes-functions.php:639 -msgid "Australian dollar" -msgstr "" - -#: inc/mixes-functions.php:640 -msgid "Aruban florin" -msgstr "" - -#: inc/mixes-functions.php:641 -msgid "Azerbaijani manat" -msgstr "" - -#: inc/mixes-functions.php:642 -msgid "Bosnia and Herzegovina convertible mark" -msgstr "" - -#: inc/mixes-functions.php:643 -msgid "Barbadian dollar" -msgstr "" - -#: inc/mixes-functions.php:644 -msgid "Bangladeshi taka" -msgstr "" - -#: inc/mixes-functions.php:645 -msgid "Bulgarian lev" -msgstr "" - -#: inc/mixes-functions.php:646 -msgid "Bahraini dinar" -msgstr "" - -#: inc/mixes-functions.php:647 -msgid "Burundian franc" -msgstr "" - -#: inc/mixes-functions.php:648 -msgid "Bermudian dollar" -msgstr "" - -#: inc/mixes-functions.php:649 -msgid "Brunei dollar" -msgstr "" - -#: inc/mixes-functions.php:650 -msgid "Bolivian boliviano" -msgstr "" - -#: inc/mixes-functions.php:651 -msgid "Brazilian real" -msgstr "" - -#: inc/mixes-functions.php:652 -msgid "Bahamian dollar" -msgstr "" - -#: inc/mixes-functions.php:653 -msgid "Bitcoin" -msgstr "" - -#: inc/mixes-functions.php:654 -msgid "Bhutanese ngultrum" -msgstr "" - -#: inc/mixes-functions.php:655 -msgid "Botswana pula" -msgstr "" - -#: inc/mixes-functions.php:656 -msgid "Belarusian ruble" -msgstr "" - -#: inc/mixes-functions.php:657 -msgid "Belize dollar" -msgstr "" - -#: inc/mixes-functions.php:658 -msgid "Canadian dollar" -msgstr "" - -#: inc/mixes-functions.php:659 -msgid "Congolese franc" -msgstr "" - -#: inc/mixes-functions.php:660 -msgid "Swiss franc" -msgstr "" - -#: inc/mixes-functions.php:661 -msgid "Chilean peso" -msgstr "" - -#: inc/mixes-functions.php:662 -msgid "Chinese yuan" -msgstr "" - -#: inc/mixes-functions.php:663 -msgid "Colombian peso" -msgstr "" - -#: inc/mixes-functions.php:664 -msgid "Costa Rican colón" -msgstr "" - -#: inc/mixes-functions.php:665 -msgid "Cuban convertible peso" -msgstr "" - -#: inc/mixes-functions.php:666 -msgid "Cuban peso" -msgstr "" - -#: inc/mixes-functions.php:667 -msgid "Cape Verdean escudo" -msgstr "" - -#: inc/mixes-functions.php:668 -msgid "Czech koruna" -msgstr "" - -#: inc/mixes-functions.php:669 -msgid "Djiboutian franc" -msgstr "" - -#: inc/mixes-functions.php:670 -msgid "Danish krone" -msgstr "" - -#: inc/mixes-functions.php:671 -msgid "Dominican peso" -msgstr "" - -#: inc/mixes-functions.php:672 -msgid "Algerian dinar" -msgstr "" - -#: inc/mixes-functions.php:673 -msgid "Egyptian pound" -msgstr "" - -#: inc/mixes-functions.php:674 -msgid "Eritrean nakfa" -msgstr "" - -#: inc/mixes-functions.php:675 -msgid "Ethiopian birr" -msgstr "" - -#: inc/mixes-functions.php:676 -msgid "Euro" -msgstr "" - -#: inc/mixes-functions.php:677 -msgid "Fijian dollar" -msgstr "" - -#: inc/mixes-functions.php:678 -msgid "Falkland Islands pound" -msgstr "" - -#: inc/mixes-functions.php:679 -msgid "Pound sterling" -msgstr "" - -#: inc/mixes-functions.php:680 -msgid "Georgian lari" -msgstr "" - -#: inc/mixes-functions.php:681 -msgid "Guernsey pound" -msgstr "" - -#: inc/mixes-functions.php:682 -msgid "Ghana cedi" -msgstr "" - -#: inc/mixes-functions.php:683 -msgid "Gibraltar pound" -msgstr "" - -#: inc/mixes-functions.php:684 -msgid "Gambian dalasi" -msgstr "" - -#: inc/mixes-functions.php:685 -msgid "Guinean franc" -msgstr "" - -#: inc/mixes-functions.php:686 -msgid "Guatemalan quetzal" -msgstr "" - -#: inc/mixes-functions.php:687 -msgid "Guyanese dollar" -msgstr "" - -#: inc/mixes-functions.php:688 -msgid "Hong Kong dollar" -msgstr "" - -#: inc/mixes-functions.php:689 -msgid "Honduran lempira" -msgstr "" - -#: inc/mixes-functions.php:690 -msgid "Croatian kuna" -msgstr "" - -#: inc/mixes-functions.php:691 -msgid "Haitian gourde" -msgstr "" - -#: inc/mixes-functions.php:692 -msgid "Hungarian forint" -msgstr "" - -#: inc/mixes-functions.php:693 -msgid "Indonesian rupiah" -msgstr "" - -#: inc/mixes-functions.php:694 -msgid "Israeli new shekel" -msgstr "" - -#: inc/mixes-functions.php:695 -msgid "Manx pound" -msgstr "" - -#: inc/mixes-functions.php:696 -msgid "Indian rupee" -msgstr "" - -#: inc/mixes-functions.php:697 -msgid "Iraqi dinar" -msgstr "" - -#: inc/mixes-functions.php:698 -msgid "Iranian rial" -msgstr "" - -#: inc/mixes-functions.php:699 -msgid "Icelandic króna" -msgstr "" - -#: inc/mixes-functions.php:700 -msgid "Jersey pound" -msgstr "" - -#: inc/mixes-functions.php:701 -msgid "Jamaican dollar" -msgstr "" - -#: inc/mixes-functions.php:702 -msgid "Jordanian dinar" -msgstr "" - -#: inc/mixes-functions.php:703 -msgid "Japanese yen" -msgstr "" - -#: inc/mixes-functions.php:704 -msgid "Kenyan shilling" -msgstr "" - -#: inc/mixes-functions.php:705 -msgid "Kyrgyzstani som" -msgstr "" - -#: inc/mixes-functions.php:706 -msgid "Cambodian riel" -msgstr "" - -#: inc/mixes-functions.php:707 -msgid "Comorian franc" -msgstr "" - -#: inc/mixes-functions.php:708 -msgid "North Korean won" -msgstr "" - -#: inc/mixes-functions.php:709 -msgid "South Korean won" -msgstr "" - -#: inc/mixes-functions.php:710 -msgid "Kuwaiti dinar" -msgstr "" - -#: inc/mixes-functions.php:711 -msgid "Cayman Islands dollar" -msgstr "" - -#: inc/mixes-functions.php:712 -msgid "Kazakhstani tenge" -msgstr "" - -#: inc/mixes-functions.php:713 -msgid "Lao kip" -msgstr "" - -#: inc/mixes-functions.php:714 -msgid "Lebanese pound" -msgstr "" - -#: inc/mixes-functions.php:715 -msgid "Sri Lankan rupee" -msgstr "" - -#: inc/mixes-functions.php:716 -msgid "Liberian dollar" -msgstr "" - -#: inc/mixes-functions.php:717 -msgid "Lesotho loti" -msgstr "" - -#: inc/mixes-functions.php:718 -msgid "Libyan dinar" -msgstr "" - -#: inc/mixes-functions.php:719 -msgid "Moroccan dirham" -msgstr "" - -#: inc/mixes-functions.php:720 -msgid "Moldovan leu" -msgstr "" - -#: inc/mixes-functions.php:721 -msgid "Malagasy ariary" -msgstr "" - -#: inc/mixes-functions.php:722 -msgid "Macedonian denar" -msgstr "" - -#: inc/mixes-functions.php:723 -msgid "Burmese kyat" -msgstr "" - -#: inc/mixes-functions.php:724 -msgid "Mongolian tögrög" -msgstr "" - -#: inc/mixes-functions.php:725 -msgid "Macanese pataca" -msgstr "" - -#: inc/mixes-functions.php:726 -msgid "Mauritanian ouguiya" -msgstr "" - -#: inc/mixes-functions.php:727 -msgid "Mauritian rupee" -msgstr "" - -#: inc/mixes-functions.php:728 -msgid "Maldivian rufiyaa" -msgstr "" - -#: inc/mixes-functions.php:729 -msgid "Malawian kwacha" -msgstr "" - -#: inc/mixes-functions.php:730 -msgid "Mexican peso" -msgstr "" - -#: inc/mixes-functions.php:731 -msgid "Malaysian ringgit" -msgstr "" - -#: inc/mixes-functions.php:732 -msgid "Mozambican metical" -msgstr "" - -#: inc/mixes-functions.php:733 -msgid "Namibian dollar" -msgstr "" - -#: inc/mixes-functions.php:734 -msgid "Nigerian naira" -msgstr "" - -#: inc/mixes-functions.php:735 -msgid "Nicaraguan córdoba" -msgstr "" - -#: inc/mixes-functions.php:736 -msgid "Norwegian krone" -msgstr "" - -#: inc/mixes-functions.php:737 -msgid "Nepalese rupee" -msgstr "" - -#: inc/mixes-functions.php:738 -msgid "New Zealand dollar" -msgstr "" - -#: inc/mixes-functions.php:739 -msgid "Omani rial" -msgstr "" - -#: inc/mixes-functions.php:740 -msgid "Panamanian balboa" -msgstr "" - -#: inc/mixes-functions.php:741 -msgid "Peruvian nuevo sol" -msgstr "" - -#: inc/mixes-functions.php:742 -msgid "Papua New Guinean kina" -msgstr "" - -#: inc/mixes-functions.php:743 -msgid "Philippine peso" -msgstr "" - -#: inc/mixes-functions.php:744 -msgid "Pakistani rupee" -msgstr "" - -#: inc/mixes-functions.php:745 -msgid "Polish złoty" -msgstr "" - -#: inc/mixes-functions.php:746 -msgid "Transnistrian ruble" -msgstr "" - -#: inc/mixes-functions.php:747 -msgid "Paraguayan guaraní" -msgstr "" - -#: inc/mixes-functions.php:748 -msgid "Qatari riyal" -msgstr "" - -#: inc/mixes-functions.php:749 -msgid "Romanian leu" -msgstr "" - -#: inc/mixes-functions.php:750 -msgid "Serbian dinar" -msgstr "" - -#: inc/mixes-functions.php:751 -msgid "Russian ruble" -msgstr "" - -#: inc/mixes-functions.php:752 -msgid "Rwandan franc" -msgstr "" - -#: inc/mixes-functions.php:753 -msgid "Saudi riyal" -msgstr "" - -#: inc/mixes-functions.php:754 -msgid "Solomon Islands dollar" -msgstr "" - -#: inc/mixes-functions.php:755 -msgid "Seychellois rupee" -msgstr "" - -#: inc/mixes-functions.php:756 -msgid "Sudanese pound" -msgstr "" - -#: inc/mixes-functions.php:757 -msgid "Swedish krona" -msgstr "" - -#: inc/mixes-functions.php:758 -msgid "Singapore dollar" -msgstr "" - -#: inc/mixes-functions.php:759 -msgid "Saint Helena pound" -msgstr "" - -#: inc/mixes-functions.php:760 -msgid "Sierra Leonean leone" -msgstr "" - -#: inc/mixes-functions.php:761 -msgid "Somali shilling" -msgstr "" - -#: inc/mixes-functions.php:762 -msgid "Surinamese dollar" -msgstr "" - -#: inc/mixes-functions.php:763 -msgid "South Sudanese pound" -msgstr "" - -#: inc/mixes-functions.php:764 -msgid "São Tomé and Príncipe dobra" -msgstr "" - -#: inc/mixes-functions.php:765 -msgid "Syrian pound" -msgstr "" - -#: inc/mixes-functions.php:766 -msgid "Swazi lilangeni" -msgstr "" - -#: inc/mixes-functions.php:767 -msgid "Thai baht" -msgstr "" - -#: inc/mixes-functions.php:768 -msgid "Tajikistani somoni" -msgstr "" - -#: inc/mixes-functions.php:769 -msgid "Turkmenistan manat" -msgstr "" - -#: inc/mixes-functions.php:770 -msgid "Tunisian dinar" -msgstr "" - -#: inc/mixes-functions.php:771 -msgid "Tongan paʻanga" -msgstr "" - -#: inc/mixes-functions.php:772 -msgid "Turkish lira" -msgstr "" - -#: inc/mixes-functions.php:773 -msgid "Trinidad and Tobago dollar" -msgstr "" - -#: inc/mixes-functions.php:774 -msgid "New Taiwan dollar" -msgstr "" - -#: inc/mixes-functions.php:775 -msgid "Tanzanian shilling" -msgstr "" - -#: inc/mixes-functions.php:776 -msgid "Ukrainian hryvnia" -msgstr "" - -#: inc/mixes-functions.php:777 -msgid "Ugandan shilling" -msgstr "" - -#: inc/mixes-functions.php:778 -msgid "United States dollar" -msgstr "" - -#: inc/mixes-functions.php:779 -msgid "Uruguayan peso" -msgstr "" - -#: inc/mixes-functions.php:780 -msgid "Uzbekistani som" -msgstr "" - -#: inc/mixes-functions.php:781 -msgid "Venezuelan bolívar" -msgstr "" - -#: inc/mixes-functions.php:782 -msgid "Vietnamese đồng" -msgstr "" - -#: inc/mixes-functions.php:783 -msgid "Vanuatu vatu" -msgstr "" - -#: inc/mixes-functions.php:784 -msgid "Samoan tālā" -msgstr "" - -#: inc/mixes-functions.php:785 -msgid "Central African CFA franc" -msgstr "" - -#: inc/mixes-functions.php:786 -msgid "East Caribbean dollar" -msgstr "" - -#: inc/mixes-functions.php:787 -msgid "West African CFA franc" -msgstr "" - -#: inc/mixes-functions.php:788 -msgid "CFP franc" -msgstr "" - -#: inc/mixes-functions.php:789 -msgid "Yemeni rial" -msgstr "" - -#: inc/mixes-functions.php:790 -msgid "South African rand" -msgstr "" - -#: inc/mixes-functions.php:791 -msgid "Zambian kwacha" -msgstr "" - -#: inc/mixes-functions.php:1100 -#, php-format -msgctxt "areasize info" -msgid "%1$s %2$s" -msgstr "" - -#: inc/mixes-functions.php:1232 -msgid "sq ft" -msgstr "" - -#: inc/mixes-functions.php:1233 -msgid "sq m" -msgstr "" - -#: inc/mixes-functions.php:1234 -msgid "mq" -msgstr "" - -#: inc/mixes-functions.php:1235 -msgid "m2" -msgstr "" - -#: inc/mixes-functions.php:1246 -msgid "12-hour" -msgstr "" - -#: inc/mixes-functions.php:1247 -msgid "24-hour" -msgstr "" - -#: inc/mixes-functions.php:1259 inc/mixes-functions.php:1260 -#: templates/user/my-properties.php:4 -msgid "Published" -msgstr "" - -#: inc/mixes-functions.php:1261 templates/user/my-properties.php:5 -msgid "Pending" -msgstr "" - -#: inc/mixes-functions.php:1262 templates/user/my-properties.php:6 -#: inc/vendors/opalmembership/membership.php:673 -#: inc/vendors/opalmembership/membership.php:682 -msgid "Expired" -msgstr "" - -#: inc/mixes-functions.php:1388 -msgid "Single Property Sidebar" -msgstr "" - -#: inc/mixes-functions.php:1390 -msgid "Add widgets here to appear in your single property sidebar area." -msgstr "" - -#: inc/template-functions.php:222 -msgid "Featured Desending" -msgstr "" - -#: inc/template-functions.php:223 -msgid "Price Ascending" -msgstr "" - -#: inc/template-functions.php:224 -msgid "Price Desending" -msgstr "" - -#: inc/template-functions.php:225 -msgid "Area Ascending" -msgstr "" - -#: inc/template-functions.php:226 -msgid "Area Desending" -msgstr "" - -#: inc/template-functions.php:230 -msgid "Sort By" -msgstr "" - -#: inc/template-functions.php:307 -msgid "Previous" -msgstr "" - -#: inc/template-functions.php:318 -msgid "Next" -msgstr "" - -#: inc/template-functions.php:439 -msgid "Vesion 2" -msgstr "" - -#: inc/template-functions.php:440 -msgid "Vesion 3" -msgstr "" - -#: inc/template-functions.php:441 -msgid "Vesion 4" -msgstr "" - -#: inc/template-functions.php:442 -msgid "Vesion 5" -msgstr "" - -#: inc/template-functions.php:464 -#: inc/property/class-metabox-property-admin.php:493 -#: inc/admin/settings/general.php:166 -msgid "Inherit" -msgstr "" - -#: inc/template-functions.php:465 -msgid "Gallery Thumb Nav" -msgstr "" - -#: inc/template-functions.php:466 -msgid "Gallery Slider" -msgstr "" - -#: inc/template-functions.php:467 -msgid "Maps" -msgstr "" - -#: inc/template-functions.php:468 -msgid "Tabs - Gallery Active" -msgstr "" - -#: inc/template-functions.php:469 -msgid "Tabs - Map Active" -msgstr "" - -#: inc/template-functions.php:470 -msgid "Tabs - Street Map Active" -msgstr "" - -#: inc/template-functions.php:471 -msgid "Tour 360" -msgstr "" - -#: inc/template-functions.php:472 -msgid "Gallery Metro" -msgstr "" - -#: inc/template-functions.php:473 -msgid "Mark Picture" -msgstr "" - -#: inc/template-functions.php:707 inc/admin/settings/3rd_party.php:172 -msgid "miles" -msgstr "" - -#: inc/template-functions.php:711 -msgid "km" -msgstr "" - -#: inc/template-functions.php:826 -msgid "Similar Properties You May Like" -msgstr "" - -#: inc/template-functions.php:869 -msgid "New Listings Nearby" -msgstr "" - -#. %s: rating -#: inc/template-functions.php:905 inc/template-functions.php:931 -#, php-format -msgid "Rated %s out of 5" -msgstr "" - -#. 1: rating 2: rating count -#: inc/template-functions.php:925 -#, php-format -msgid "Rated %1$s out of 5 based on %2$s customer rating" -msgid_plural "Rated %1$s out of 5 based on %2$s customer ratings" -msgstr[0] "" -msgstr[1] "" - -#. %s number of reviews -#: inc/template-functions.php:1037 templates/rating/opalestate-ratings.php:176 -#, php-format -msgctxt "review numbers" -msgid "%s review" -msgid_plural "%s reviews" -msgstr[0] "" -msgstr[1] "" - -#: inc/template-functions.php:1087 inc/template-functions.php:1089 -msgid "Print" -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 "" - -#: templates/archive-opalestate_agency.php:12 -msgid "Find A Local Real Estate Agencies" -msgstr "" - -#: templates/archive-opalestate_agency.php:13 -msgid "" -"Reality Agencies are local expert who can get you better results for lower " -"fees" -msgstr "" - -#: templates/archive-opalestate_agency.php:38 -#: templates/elementor-templates/opalestate-agency-collection.php:35 -#, php-format -msgid "Found %s Agency" -msgstr "" - -#: templates/archive-opalestate_agent.php:11 -msgid "Find The Best Real Estate Agent For Your" -msgstr "" - -#: templates/archive-opalestate_agent.php:12 -msgid "" -"Browser home sales, rating and review to find the best agent to sell or " -"lease your home" -msgstr "" - -#: templates/archive-opalestate_agent.php:37 -#: templates/elementor-templates/opalestate-agent-collection.php:37 -#: templates/shortcodes/search-agents.php:15 -#, php-format -msgid "Found %s Agents" -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 -#: inc/property/class-metabox-property-admin.php:214 -#: inc/submission/class-metabox-property-submission.php:341 -#: inc/admin/property/class-property.php:102 -msgid "Address" -msgstr "" - -#: templates/content-single-agency.php:26 -msgid "Listing" -msgstr "" - -#: templates/content-single-agency.php:27 -#: templates/content-single-agency.php:101 templates/single-agency/tabs.php:11 -#: inc/admin/agency/class-agency.php:156 -msgid "Team" -msgstr "" - -#. %s: Name of current post -#: templates/content-single-agency.php:50 templates/content-single-agent.php:62 -#, php-format -msgid "Continue reading %s" -msgstr "" - -#: templates/content-single-agency.php:71 -msgid "Head Agency:" -msgstr "" - -#: templates/content-single-agency.php:76 templates/content-single-agent.php:88 -msgid "Location:" -msgstr "" - -#: templates/content-single-agency.php:110 -#: templates/content-single-agent.php:22 -#: 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 "" - -#: templates/content-single-agency.php:142 -msgid "Contact Us" -msgstr "" - -#: templates/content-single-agency.php:143 -#, php-format -msgid "Hi %s. I saw your profile and wanted to see if you could help me." -msgstr "" - -#: templates/content-single-agent.php:19 templates/single-agency/tabs.php:17 -#: inc/admin/rating/class-rating.php:46 -msgid "Review" -msgstr "" - -#: templates/content-single-agent.php:58 -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 "" - -#: templates/content-single-agent.php:83 -msgid "Address:" -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" -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: " -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" -msgstr "" - -#: 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 "" - -#: 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/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-v2.php:21 templates/single-property/map.php:25 -#: 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" -msgstr "" - -#: templates/fullwidth-page.php:33 -msgid "Page" -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 "" - -#: 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: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/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/agency/class-opalestate-agency-metabox.php:58 -#: inc/classes/class-opalestate-metabox-user.php:177 -msgid "Is Featured" -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/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/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/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/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/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/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/agency/class-opalestate-agency-metabox.php:301 -#: inc/agent/class-opalestate-agent-metabox.php:148 -msgid "Banner" -msgstr "" - -#: 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/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/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/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/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/agency/class-opalestate-agency-metabox.php:377 -#: inc/property/class-metabox-property-admin.php:400 -msgid "Agency Information" -msgstr "" - -#: inc/agency/class-opalestate-agency-posttype.php:43 -#: inc/agency/class-opalestate-agency-posttype.php:55 -msgid "Agencies" -msgstr "" - -#: inc/agency/class-opalestate-agency-posttype.php:45 -#: inc/agency/class-opalestate-agency-posttype.php:46 -msgid "Add New Agency" -msgstr "" - -#: inc/agency/class-opalestate-agency-posttype.php:47 -msgid "Edit Agency" -msgstr "" - -#: inc/agency/class-opalestate-agency-posttype.php:48 -msgid "New Agency" -msgstr "" - -#: inc/agency/class-opalestate-agency-posttype.php:49 -msgid "All Agencies" -msgstr "" - -#: inc/agency/class-opalestate-agency-posttype.php:50 -msgid "View Agency" -msgstr "" - -#: inc/agency/class-opalestate-agency-posttype.php:51 -msgid "Search Agency" -msgstr "" - -#: inc/agency/class-opalestate-agency-posttype.php:52 -msgid "No Agencies found" -msgstr "" - -#: inc/agency/class-opalestate-agency-posttype.php:53 -msgid "No Agencies found in Trash" -msgstr "" - -#: inc/agency/class-opalestate-agency-posttype.php:69 -msgctxt "agency slug" -msgid "agency" -msgstr "" - -#: inc/agency/class-opalestate-agency-posttype.php:75 -#: inc/agency/class-opalestate-agency-posttype.php:85 -msgid "Agency Categories" -msgstr "" - -#: inc/agency/class-opalestate-agency-posttype.php:76 -#: inc/taxonomies/class-taxonomy-categories.php:119 -msgid "Category" -msgstr "" - -#: inc/agency/class-opalestate-agency-posttype.php:77 -msgid "Search Category" -msgstr "" - -#: inc/agency/class-opalestate-agency-posttype.php:78 -msgid "All Categories" -msgstr "" - -#: inc/agency/class-opalestate-agency-posttype.php:79 -msgid "Parent Category" -msgstr "" - -#: inc/agency/class-opalestate-agency-posttype.php:80 -msgid "Parent Category:" -msgstr "" - -#: inc/agency/class-opalestate-agency-posttype.php:81 -msgid "Edit Category" -msgstr "" - -#: inc/agency/class-opalestate-agency-posttype.php:82 -msgid "Update Category" -msgstr "" - -#: inc/agency/class-opalestate-agency-posttype.php:83 -#: inc/taxonomies/class-taxonomy-categories.php:44 -msgid "Add New Category" -msgstr "" - -#: inc/agency/class-opalestate-agency-posttype.php:84 -msgid "New Category Name" -msgstr "" - -#: inc/agency/class-opalestate-agency-posttype.php:97 -msgctxt "agency category slug" -msgid "agency-category" -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-metabox.php:45 -msgid "Link to User" -msgstr "" - -#: inc/agent/class-opalestate-agent-metabox.php:47 -msgid "Enter User ID to show information without using user info" -msgstr "" - -#: inc/agent/class-opalestate-agent-metabox.php:52 -#: inc/agent/class-opalestate-agent-metabox.php:119 -msgid "Target Min Price" -msgstr "" - -#: inc/agent/class-opalestate-agent-metabox.php:54 -#: inc/agent/class-opalestate-agent-metabox.php:121 -msgid "Enter min price of property which is for sale/rent..." -msgstr "" - -#: inc/agent/class-opalestate-agent-metabox.php:59 -#: inc/agent/class-opalestate-agent-metabox.php:126 -msgid "Target Max Price" -msgstr "" - -#: inc/agent/class-opalestate-agent-metabox.php:61 -#: inc/agent/class-opalestate-agent-metabox.php:128 -msgid "Enter max price of property which is for sale/rent..." -msgstr "" - -#: inc/agent/class-opalestate-agent-metabox.php:91 -msgid "Title/Name" -msgstr "" - -#: inc/agent/class-opalestate-agent-metabox.php:215 -msgid "Agent Information" -msgstr "" - -#: inc/agent/class-opalestate-agent-posttype.php:36 -#: inc/agent/class-opalestate-agent-posttype.php:48 -msgid "Agents" -msgstr "" - -#: inc/agent/class-opalestate-agent-posttype.php:38 -#: inc/agent/class-opalestate-agent-posttype.php:39 -msgid "Add New Agent" -msgstr "" - -#: inc/agent/class-opalestate-agent-posttype.php:40 -msgid "Edit Agent" -msgstr "" - -#: inc/agent/class-opalestate-agent-posttype.php:41 -msgid "New Agent" -msgstr "" - -#: inc/agent/class-opalestate-agent-posttype.php:42 -msgid "All Agents" -msgstr "" - -#: inc/agent/class-opalestate-agent-posttype.php:43 -msgid "View Agent" -msgstr "" - -#: inc/agent/class-opalestate-agent-posttype.php:44 -msgid "Search Agent" -msgstr "" - -#: inc/agent/class-opalestate-agent-posttype.php:45 -msgid "No Agents found" -msgstr "" - -#: inc/agent/class-opalestate-agent-posttype.php:46 -msgid "No Agents found in Trash" -msgstr "" - -#: inc/agent/class-opalestate-agent-posttype.php:62 -msgctxt "agent slug" -msgid "agent" -msgstr "" - -#: inc/agent/class-opalestate-agent-posttype.php:75 -#: inc/agent/class-opalestate-agent-posttype.php:85 -msgid "Agent Levels" -msgstr "" - -#: inc/agent/class-opalestate-agent-posttype.php:76 -msgid "Level" -msgstr "" - -#: inc/agent/class-opalestate-agent-posttype.php:77 -msgid "Search Level" -msgstr "" - -#: inc/agent/class-opalestate-agent-posttype.php:78 -msgid "All Levels" -msgstr "" - -#: inc/agent/class-opalestate-agent-posttype.php:79 -msgid "Parent Level" -msgstr "" - -#: inc/agent/class-opalestate-agent-posttype.php:80 -msgid "Parent Level:" -msgstr "" - -#: inc/agent/class-opalestate-agent-posttype.php:81 -msgid "Edit Level" -msgstr "" - -#: inc/agent/class-opalestate-agent-posttype.php:82 -msgid "Update Level" -msgstr "" - -#: inc/agent/class-opalestate-agent-posttype.php:83 -msgid "Add New Level" -msgstr "" - -#: inc/agent/class-opalestate-agent-posttype.php:84 -msgid "New Level Name" -msgstr "" - -#: inc/agent/class-opalestate-agent-posttype.php:97 -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 -msgid "Method '%s' not implemented. Must be overridden in subclass." -msgstr "" - -#: inc/api/class-opalestate-base-api.php:157 -msgid "You must specify both a token and API key!" -msgstr "" - -#: inc/api/class-opalestate-base-api.php:168 -msgid "Your request could not be authenticated!" -msgstr "" - -#: inc/api/class-opalestate-base-api.php:179 -msgid "Invalid API key!" -msgstr "" - -#: inc/api/class-opalestate-base-api.php:203 inc/api/v1/user.php:101 -msgid "Sorry, you cannot list resources." -msgstr "" - -#: inc/api/class-opalestate-base-api.php:227 -msgid "Sorry, you cannot list resources. Invalid keys!" -msgstr "" - -#: inc/api/class-opalestate-base-api.php:262 inc/api/v1/user.php:132 -msgid "Sorry, you cannot view this resource." -msgstr "" - -#: inc/api/class-opalestate-base-api.php:276 inc/api/v1/user.php:116 -msgid "Sorry, you are not allowed to create resources." -msgstr "" - -#: inc/api/class-opalestate-base-api.php:292 inc/api/v1/user.php:149 -msgid "Sorry, you are not allowed to edit this resource." -msgstr "" - -#: inc/api/class-opalestate-base-api.php:305 -msgid "Current page of the collection." -msgstr "" - -#: inc/api/class-opalestate-base-api.php:313 -msgid "Maximum number of items to be returned in result set." -msgstr "" - -#: inc/api/class-opalestate-rest-authentication.php:167 -msgid "Consumer secret is invalid." -msgstr "" - -#. %s: amount of errors -#: inc/api/class-opalestate-rest-authentication.php:280 -#, php-format -msgid "Missing OAuth parameter %s" -msgid_plural "Missing OAuth parameters %s" -msgstr[0] "" -msgstr[1] "" - -#: inc/api/class-opalestate-rest-authentication.php:320 -msgid "Consumer key is invalid." -msgstr "" - -#: inc/api/class-opalestate-rest-authentication.php:366 -msgid "Invalid signature - failed to sort parameters." -msgstr "" - -#: inc/api/class-opalestate-rest-authentication.php:375 -msgid "Invalid signature - signature method is invalid." -msgstr "" - -#: inc/api/class-opalestate-rest-authentication.php:383 -msgid "Invalid signature - provided signature does not match." -msgstr "" - -#: inc/api/class-opalestate-rest-authentication.php:459 -msgid "Invalid timestamp." -msgstr "" - -#: inc/api/class-opalestate-rest-authentication.php:469 -msgid "Invalid nonce - nonce has already been used." -msgstr "" - -#: inc/api/class-opalestate-rest-authentication.php:531 -msgid "The API key provided does not have read permissions." -msgstr "" - -#: inc/api/class-opalestate-rest-authentication.php:539 -msgid "The API key provided does not have write permissions." -msgstr "" - -#: inc/api/class-opalestate-rest-authentication.php:546 -msgid "Unknown request method." -msgstr "" - -#: inc/api/class-opalestate-rest-authentication.php:577 -msgid "" -"Opalestate API. Use a consumer key in the username field and a consumer " -"secret in the password field." -msgstr "" - -#: inc/api/html-keys-edit.php:12 -msgid "Key details" -msgstr "" - -#. 1: user display name 2: user ID 3: user email -#: inc/api/html-keys-edit.php:41 -#, php-format -msgid "%1$s (#%2$s – %3$s)" -msgstr "" - -#: inc/api/html-keys-edit.php:47 -msgid "Search for a user…" -msgstr "" - -#: inc/api/html-keys-edit.php:112 -msgid "Generate API key" -msgstr "" - -#: inc/api/html-keys-edit.php:116 -msgid "Save changes" -msgstr "" - -#: inc/api/html-keys-edit.php:132 -msgid "Consumer key" -msgstr "" - -#: inc/api/html-keys-edit.php:136 inc/api/html-keys-edit.php:145 -msgid "Copied!" -msgstr "" - -#: inc/api/html-keys-edit.php:136 inc/api/html-keys-edit.php:146 -msgid "Copy" -msgstr "" - -#: inc/api/html-keys-edit.php:141 -msgid "Consumer secret" -msgstr "" - #: inc/classes/class-opalestate-cache.php:150 -#, 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 " @@ -2648,16 +2634,6 @@ msgstr "" msgid "Cache key format should be opalestate_cache_*" 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/location.php:1 -#: templates/search-box/fields/location.php:2 -#: templates/search-box/fields/search-city-text.php:23 -msgid "Location" -msgstr "" - #: inc/classes/class-opalestate-metabox-user.php:91 #: inc/taxonomies/class-taxonomy-city.php:104 msgid "State / Province" @@ -2668,7 +2644,7 @@ 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 +#: inc/submission/class-metabox-property-submission.php:344 msgid "City / Town" msgstr "" @@ -2838,6 +2814,20 @@ msgstr "" msgid "You got a message contact" msgstr "" +#: inc/function-search-fields.php:146 +#: templates/search-box/search-form-v2.php:51 +#: templates/search-box/search-form-v3.php:66 +msgid "Area" +msgstr "" + +#: inc/hook-functions.php:20 +msgid "Single Property Sidebar" +msgstr "" + +#: inc/hook-functions.php:22 +msgid "Add widgets here to appear in your single property sidebar area." +msgstr "" + #: inc/message/class-opalestate-message.php:246 msgid "Email Sent successful" msgstr "" @@ -2847,58 +2837,869 @@ msgstr "" 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/message/class-opalestate-message.php:508 +#: inc/message/class-opalestate-message.php:574 +#: inc/message/class-opalestate-message.php:613 +#: inc/message/class-opalestate-message.php:691 +#: inc/submission/class-metabox-property-submission.php:169 #: 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 +#: inc/message/class-opalestate-message.php:515 +#: inc/message/class-opalestate-message.php:620 +#: inc/message/class-opalestate-message.php:697 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 +#: inc/message/class-opalestate-message.php:523 +#: inc/message/class-opalestate-message.php:627 +#: inc/message/class-opalestate-message.php:703 #: templates/user/agency/agency-team.php:12 msgid "Sender ID" msgstr "" -#: 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 +#: inc/message/class-opalestate-message.php:531 +#: inc/message/class-opalestate-message.php:634 +#: inc/property/class-metabox-property-admin.php:531 +#: inc/submission/class-metabox-property-submission.php:536 +#: inc/vendors/elementor/widgets/opalestate-category-list.php:184 +#: inc/vendors/elementor/widgets/opalestate-city-list.php:184 #: templates/rating/opalestate-ratings.php:240 +#: templates/user/agency/agency-team.php:17 #: 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/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 +#: inc/message/class-opalestate-message.php:557 +#: inc/message/class-opalestate-message.php:581 +#: inc/message/class-opalestate-message.php:659 +#: inc/message/class-opalestate-message.php:728 #: templates/user/share-search-form.php:45 msgid "Message" msgstr "" -#: inc/message/class-opalestate-message.php:706 +#: inc/message/class-opalestate-message.php:709 msgid "Schedule" msgstr "" -#: inc/message/class-opalestate-message.php:713 +#: inc/message/class-opalestate-message.php:716 +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_JS.php:214 msgid "Time" msgstr "" +#: inc/mixes-functions.php:207 +msgid "Advanced V1" +msgstr "" + +#: inc/mixes-functions.php:208 +msgid "Advanced V2" +msgstr "" + +#: inc/mixes-functions.php:209 +msgid "Advanced V3" +msgstr "" + +#: inc/mixes-functions.php:210 +msgid "Advanced V4" +msgstr "" + +#: inc/mixes-functions.php:211 +msgid "Advanced V5" +msgstr "" + +#: inc/mixes-functions.php:212 +msgid "Advanced V6" +msgstr "" + +#: inc/mixes-functions.php:213 +msgid "Vertical Advanced" +msgstr "" + +#: inc/mixes-functions.php:214 +msgid "Vertical Advanced V2" +msgstr "" + +#: inc/mixes-functions.php:215 +msgid "Vertical Advanced V3" +msgstr "" + +#: inc/mixes-functions.php:216 +msgid "Simple City" +msgstr "" + +#: inc/mixes-functions.php:217 +msgid "Simple Keyword" +msgstr "" + +#: inc/mixes-functions.php:218 +msgid "Collapse City" +msgstr "" + +#: inc/mixes-functions.php:219 +msgid "Collapse Keyword" +msgstr "" + +#: inc/mixes-functions.php:220 +msgid "Collapse Advanced" +msgstr "" + +#: inc/mixes-functions.php:231 inc/mixes-functions.php:247 +#: inc/mixes-functions.php:259 inc/template-functions.php:254 +#: 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 +msgid "Grid" +msgstr "" + +#: inc/mixes-functions.php:232 inc/mixes-functions.php:260 +msgid "Grid v2" +msgstr "" + +#: inc/mixes-functions.php:233 inc/mixes-functions.php:261 +msgid "Grid v3" +msgstr "" + +#: inc/mixes-functions.php:234 inc/mixes-functions.php:248 +#: inc/mixes-functions.php:273 inc/template-functions.php:258 +#: 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 +msgid "List" +msgstr "" + +#: inc/mixes-functions.php:235 inc/mixes-functions.php:274 +msgid "List v2" +msgstr "" + +#: inc/mixes-functions.php:236 inc/mixes-functions.php:262 +msgid "Mark hover" +msgstr "" + +#: inc/mixes-functions.php:373 +msgid "Orginal Size" +msgstr "" + +#: inc/mixes-functions.php:464 inc/mixes-functions.php:468 +msgid "Your Location" +msgstr "" + +#: inc/mixes-functions.php:590 +msgid "Placeholder %s" +msgstr "" + +#: inc/mixes-functions.php:632 +msgid "United Arab Emirates dirham" +msgstr "" + +#: inc/mixes-functions.php:633 +msgid "Afghan afghani" +msgstr "" + +#: inc/mixes-functions.php:634 +msgid "Albanian lek" +msgstr "" + +#: inc/mixes-functions.php:635 +msgid "Armenian dram" +msgstr "" + +#: inc/mixes-functions.php:636 +msgid "Netherlands Antillean guilder" +msgstr "" + +#: inc/mixes-functions.php:637 +msgid "Angolan kwanza" +msgstr "" + +#: inc/mixes-functions.php:638 +msgid "Argentine peso" +msgstr "" + +#: inc/mixes-functions.php:639 +msgid "Australian dollar" +msgstr "" + +#: inc/mixes-functions.php:640 +msgid "Aruban florin" +msgstr "" + +#: inc/mixes-functions.php:641 +msgid "Azerbaijani manat" +msgstr "" + +#: inc/mixes-functions.php:642 +msgid "Bosnia and Herzegovina convertible mark" +msgstr "" + +#: inc/mixes-functions.php:643 +msgid "Barbadian dollar" +msgstr "" + +#: inc/mixes-functions.php:644 +msgid "Bangladeshi taka" +msgstr "" + +#: inc/mixes-functions.php:645 +msgid "Bulgarian lev" +msgstr "" + +#: inc/mixes-functions.php:646 +msgid "Bahraini dinar" +msgstr "" + +#: inc/mixes-functions.php:647 +msgid "Burundian franc" +msgstr "" + +#: inc/mixes-functions.php:648 +msgid "Bermudian dollar" +msgstr "" + +#: inc/mixes-functions.php:649 +msgid "Brunei dollar" +msgstr "" + +#: inc/mixes-functions.php:650 +msgid "Bolivian boliviano" +msgstr "" + +#: inc/mixes-functions.php:651 +msgid "Brazilian real" +msgstr "" + +#: inc/mixes-functions.php:652 +msgid "Bahamian dollar" +msgstr "" + +#: inc/mixes-functions.php:653 +msgid "Bitcoin" +msgstr "" + +#: inc/mixes-functions.php:654 +msgid "Bhutanese ngultrum" +msgstr "" + +#: inc/mixes-functions.php:655 +msgid "Botswana pula" +msgstr "" + +#: inc/mixes-functions.php:656 +msgid "Belarusian ruble" +msgstr "" + +#: inc/mixes-functions.php:657 +msgid "Belize dollar" +msgstr "" + +#: inc/mixes-functions.php:658 +msgid "Canadian dollar" +msgstr "" + +#: inc/mixes-functions.php:659 +msgid "Congolese franc" +msgstr "" + +#: inc/mixes-functions.php:660 +msgid "Swiss franc" +msgstr "" + +#: inc/mixes-functions.php:661 +msgid "Chilean peso" +msgstr "" + +#: inc/mixes-functions.php:662 +msgid "Chinese yuan" +msgstr "" + +#: inc/mixes-functions.php:663 +msgid "Chilean Foment Unity" +msgstr "" + +#: inc/mixes-functions.php:664 +msgid "Colombian peso" +msgstr "" + +#: inc/mixes-functions.php:665 +msgid "Costa Rican colón" +msgstr "" + +#: inc/mixes-functions.php:666 +msgid "Cuban convertible peso" +msgstr "" + +#: inc/mixes-functions.php:667 +msgid "Cuban peso" +msgstr "" + +#: inc/mixes-functions.php:668 +msgid "Cape Verdean escudo" +msgstr "" + +#: inc/mixes-functions.php:669 +msgid "Czech koruna" +msgstr "" + +#: inc/mixes-functions.php:670 +msgid "Djiboutian franc" +msgstr "" + +#: inc/mixes-functions.php:671 +msgid "Danish krone" +msgstr "" + +#: inc/mixes-functions.php:672 +msgid "Dominican peso" +msgstr "" + +#: inc/mixes-functions.php:673 +msgid "Algerian dinar" +msgstr "" + +#: inc/mixes-functions.php:674 +msgid "Egyptian pound" +msgstr "" + +#: inc/mixes-functions.php:675 +msgid "Eritrean nakfa" +msgstr "" + +#: inc/mixes-functions.php:676 +msgid "Ethiopian birr" +msgstr "" + +#: inc/mixes-functions.php:677 +msgid "Euro" +msgstr "" + +#: inc/mixes-functions.php:678 +msgid "Fijian dollar" +msgstr "" + +#: inc/mixes-functions.php:679 +msgid "Falkland Islands pound" +msgstr "" + +#: inc/mixes-functions.php:680 +msgid "Pound sterling" +msgstr "" + +#: inc/mixes-functions.php:681 +msgid "Georgian lari" +msgstr "" + +#: inc/mixes-functions.php:682 +msgid "Guernsey pound" +msgstr "" + +#: inc/mixes-functions.php:683 +msgid "Ghana cedi" +msgstr "" + +#: inc/mixes-functions.php:684 +msgid "Gibraltar pound" +msgstr "" + +#: inc/mixes-functions.php:685 +msgid "Gambian dalasi" +msgstr "" + +#: inc/mixes-functions.php:686 +msgid "Guinean franc" +msgstr "" + +#: inc/mixes-functions.php:687 +msgid "Guatemalan quetzal" +msgstr "" + +#: inc/mixes-functions.php:688 +msgid "Guyanese dollar" +msgstr "" + +#: inc/mixes-functions.php:689 +msgid "Hong Kong dollar" +msgstr "" + +#: inc/mixes-functions.php:690 +msgid "Honduran lempira" +msgstr "" + +#: inc/mixes-functions.php:691 +msgid "Croatian kuna" +msgstr "" + +#: inc/mixes-functions.php:692 +msgid "Haitian gourde" +msgstr "" + +#: inc/mixes-functions.php:693 +msgid "Hungarian forint" +msgstr "" + +#: inc/mixes-functions.php:694 +msgid "Indonesian rupiah" +msgstr "" + +#: inc/mixes-functions.php:695 +msgid "Israeli new shekel" +msgstr "" + +#: inc/mixes-functions.php:696 +msgid "Manx pound" +msgstr "" + +#: inc/mixes-functions.php:697 +msgid "Indian rupee" +msgstr "" + +#: inc/mixes-functions.php:698 +msgid "Iraqi dinar" +msgstr "" + +#: inc/mixes-functions.php:699 +msgid "Iranian rial" +msgstr "" + +#: inc/mixes-functions.php:700 +msgid "Icelandic króna" +msgstr "" + +#: inc/mixes-functions.php:701 +msgid "Jersey pound" +msgstr "" + +#: inc/mixes-functions.php:702 +msgid "Jamaican dollar" +msgstr "" + +#: inc/mixes-functions.php:703 +msgid "Jordanian dinar" +msgstr "" + +#: inc/mixes-functions.php:704 +msgid "Japanese yen" +msgstr "" + +#: inc/mixes-functions.php:705 +msgid "Kenyan shilling" +msgstr "" + +#: inc/mixes-functions.php:706 +msgid "Kyrgyzstani som" +msgstr "" + +#: inc/mixes-functions.php:707 +msgid "Cambodian riel" +msgstr "" + +#: inc/mixes-functions.php:708 +msgid "Comorian franc" +msgstr "" + +#: inc/mixes-functions.php:709 +msgid "North Korean won" +msgstr "" + +#: inc/mixes-functions.php:710 +msgid "South Korean won" +msgstr "" + +#: inc/mixes-functions.php:711 +msgid "Kuwaiti dinar" +msgstr "" + +#: inc/mixes-functions.php:712 +msgid "Cayman Islands dollar" +msgstr "" + +#: inc/mixes-functions.php:713 +msgid "Kazakhstani tenge" +msgstr "" + +#: inc/mixes-functions.php:714 +msgid "Lao kip" +msgstr "" + +#: inc/mixes-functions.php:715 +msgid "Lebanese pound" +msgstr "" + +#: inc/mixes-functions.php:716 +msgid "Sri Lankan rupee" +msgstr "" + +#: inc/mixes-functions.php:717 +msgid "Liberian dollar" +msgstr "" + +#: inc/mixes-functions.php:718 +msgid "Lesotho loti" +msgstr "" + +#: inc/mixes-functions.php:719 +msgid "Libyan dinar" +msgstr "" + +#: inc/mixes-functions.php:720 +msgid "Moroccan dirham" +msgstr "" + +#: inc/mixes-functions.php:721 +msgid "Moldovan leu" +msgstr "" + +#: inc/mixes-functions.php:722 +msgid "Malagasy ariary" +msgstr "" + +#: inc/mixes-functions.php:723 +msgid "Macedonian denar" +msgstr "" + +#: inc/mixes-functions.php:724 +msgid "Burmese kyat" +msgstr "" + +#: inc/mixes-functions.php:725 +msgid "Mongolian tögrög" +msgstr "" + +#: inc/mixes-functions.php:726 +msgid "Macanese pataca" +msgstr "" + +#: inc/mixes-functions.php:727 +msgid "Mauritanian ouguiya" +msgstr "" + +#: inc/mixes-functions.php:728 +msgid "Mauritian rupee" +msgstr "" + +#: inc/mixes-functions.php:729 +msgid "Maldivian rufiyaa" +msgstr "" + +#: inc/mixes-functions.php:730 +msgid "Malawian kwacha" +msgstr "" + +#: inc/mixes-functions.php:731 +msgid "Mexican peso" +msgstr "" + +#: inc/mixes-functions.php:732 +msgid "Malaysian ringgit" +msgstr "" + +#: inc/mixes-functions.php:733 +msgid "Mozambican metical" +msgstr "" + +#: inc/mixes-functions.php:734 +msgid "Namibian dollar" +msgstr "" + +#: inc/mixes-functions.php:735 +msgid "Nigerian naira" +msgstr "" + +#: inc/mixes-functions.php:736 +msgid "Nicaraguan córdoba" +msgstr "" + +#: inc/mixes-functions.php:737 +msgid "Norwegian krone" +msgstr "" + +#: inc/mixes-functions.php:738 +msgid "Nepalese rupee" +msgstr "" + +#: inc/mixes-functions.php:739 +msgid "New Zealand dollar" +msgstr "" + +#: inc/mixes-functions.php:740 +msgid "Omani rial" +msgstr "" + +#: inc/mixes-functions.php:741 +msgid "Panamanian balboa" +msgstr "" + +#: inc/mixes-functions.php:742 +msgid "Peruvian nuevo sol" +msgstr "" + +#: inc/mixes-functions.php:743 +msgid "Papua New Guinean kina" +msgstr "" + +#: inc/mixes-functions.php:744 +msgid "Philippine peso" +msgstr "" + +#: inc/mixes-functions.php:745 +msgid "Pakistani rupee" +msgstr "" + +#: inc/mixes-functions.php:746 +msgid "Polish złoty" +msgstr "" + +#: inc/mixes-functions.php:747 +msgid "Transnistrian ruble" +msgstr "" + +#: inc/mixes-functions.php:748 +msgid "Paraguayan guaraní" +msgstr "" + +#: inc/mixes-functions.php:749 +msgid "Qatari riyal" +msgstr "" + +#: inc/mixes-functions.php:750 +msgid "Romanian leu" +msgstr "" + +#: inc/mixes-functions.php:751 +msgid "Serbian dinar" +msgstr "" + +#: inc/mixes-functions.php:752 +msgid "Russian ruble" +msgstr "" + +#: inc/mixes-functions.php:753 +msgid "Rwandan franc" +msgstr "" + +#: inc/mixes-functions.php:754 +msgid "Saudi riyal" +msgstr "" + +#: inc/mixes-functions.php:755 +msgid "Solomon Islands dollar" +msgstr "" + +#: inc/mixes-functions.php:756 +msgid "Seychellois rupee" +msgstr "" + +#: inc/mixes-functions.php:757 +msgid "Sudanese pound" +msgstr "" + +#: inc/mixes-functions.php:758 +msgid "Swedish krona" +msgstr "" + +#: inc/mixes-functions.php:759 +msgid "Singapore dollar" +msgstr "" + +#: inc/mixes-functions.php:760 +msgid "Saint Helena pound" +msgstr "" + +#: inc/mixes-functions.php:761 +msgid "Sierra Leonean leone" +msgstr "" + +#: inc/mixes-functions.php:762 +msgid "Somali shilling" +msgstr "" + +#: inc/mixes-functions.php:763 +msgid "Surinamese dollar" +msgstr "" + +#: inc/mixes-functions.php:764 +msgid "South Sudanese pound" +msgstr "" + +#: inc/mixes-functions.php:765 +msgid "São Tomé and Príncipe dobra" +msgstr "" + +#: inc/mixes-functions.php:766 +msgid "Syrian pound" +msgstr "" + +#: inc/mixes-functions.php:767 +msgid "Swazi lilangeni" +msgstr "" + +#: inc/mixes-functions.php:768 +msgid "Thai baht" +msgstr "" + +#: inc/mixes-functions.php:769 +msgid "Tajikistani somoni" +msgstr "" + +#: inc/mixes-functions.php:770 +msgid "Turkmenistan manat" +msgstr "" + +#: inc/mixes-functions.php:771 +msgid "Tunisian dinar" +msgstr "" + +#: inc/mixes-functions.php:772 +msgid "Tongan paʻanga" +msgstr "" + +#: inc/mixes-functions.php:773 +msgid "Turkish lira" +msgstr "" + +#: inc/mixes-functions.php:774 +msgid "Trinidad and Tobago dollar" +msgstr "" + +#: inc/mixes-functions.php:775 +msgid "New Taiwan dollar" +msgstr "" + +#: inc/mixes-functions.php:776 +msgid "Tanzanian shilling" +msgstr "" + +#: inc/mixes-functions.php:777 +msgid "Ukrainian hryvnia" +msgstr "" + +#: inc/mixes-functions.php:778 +msgid "Ugandan shilling" +msgstr "" + +#: inc/mixes-functions.php:779 +msgid "United States dollar" +msgstr "" + +#: inc/mixes-functions.php:780 +msgid "Uruguayan peso" +msgstr "" + +#: inc/mixes-functions.php:781 +msgid "Uzbekistani som" +msgstr "" + +#: inc/mixes-functions.php:782 +msgid "Venezuelan bolívar" +msgstr "" + +#: inc/mixes-functions.php:783 +msgid "Vietnamese đồng" +msgstr "" + +#: inc/mixes-functions.php:784 +msgid "Vanuatu vatu" +msgstr "" + +#: inc/mixes-functions.php:785 +msgid "Samoan tālā" +msgstr "" + +#: inc/mixes-functions.php:786 +msgid "Central African CFA franc" +msgstr "" + +#: inc/mixes-functions.php:787 +msgid "East Caribbean dollar" +msgstr "" + +#: inc/mixes-functions.php:788 +msgid "West African CFA franc" +msgstr "" + +#: inc/mixes-functions.php:789 +msgid "CFP franc" +msgstr "" + +#: inc/mixes-functions.php:790 +msgid "Yemeni rial" +msgstr "" + +#: inc/mixes-functions.php:791 +msgid "South African rand" +msgstr "" + +#: inc/mixes-functions.php:792 +msgid "Zambian kwacha" +msgstr "" + +#: inc/mixes-functions.php:1219 +msgid "sq ft" +msgstr "" + +#: inc/mixes-functions.php:1220 +msgid "sq m" +msgstr "" + +#: inc/mixes-functions.php:1221 +msgid "mq" +msgstr "" + +#: inc/mixes-functions.php:1222 +msgid "m2" +msgstr "" + +#: inc/mixes-functions.php:1233 +msgid "12-hour" +msgstr "" + +#: inc/mixes-functions.php:1234 +msgid "24-hour" +msgstr "" + +#: inc/mixes-functions.php:1246 inc/mixes-functions.php:1247 +#: templates/user/my-properties.php:4 +msgid "Published" +msgstr "" + +#: inc/mixes-functions.php:1248 templates/user/my-properties.php:5 +msgid "Pending" +msgstr "" + +#: inc/mixes-functions.php:1249 inc/vendors/opalmembership/membership.php:673 +#: inc/vendors/opalmembership/membership.php:682 +#: templates/user/my-properties.php:6 +msgid "Expired" +msgstr "" + +#: inc/mixes-functions.php:1459 +msgid "Never" +msgstr "" + +#: inc/mixes-functions.php:1460 +msgid "1 Week" +msgstr "" + +#: inc/mixes-functions.php:1461 +msgid "24 Hours" +msgstr "" + +#: inc/mixes-functions.php:1462 +msgid "12 Hours" +msgstr "" + +#: inc/mixes-functions.php:1463 +msgid "6 Hours" +msgstr "" + +#: inc/mixes-functions.php:1464 +msgid "1 Hours" +msgstr "" + #: inc/property/class-metabox-property-admin.php:28 msgid "Property Metabox" msgstr "" @@ -2915,8 +3716,16 @@ msgstr "" msgid "Floor Plan" msgstr "" +#: inc/property/class-metabox-property-admin.php:82 +#: inc/submission/class-metabox-property-submission.php:67 +#: inc/submission/class-metabox-property-submission.php:445 +#: templates/content-single-property-v5.php:30 +#: templates/single-property/apartments.php:14 +msgid "Apartments" +msgstr "" + #: inc/property/class-metabox-property-admin.php:94 -#: inc/submission/class-metabox-property-submission.php:197 +#: inc/submission/class-metabox-property-submission.php:205 msgid "Images Gallery" msgstr "" @@ -2933,21 +3742,21 @@ msgid "Or 360° Virtual Tour" 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 +#: inc/property/class-metabox-property-admin.php:573 +#: inc/submission/class-metabox-property-submission.php:222 +#: inc/submission/class-metabox-property-submission.php:580 msgid "Input iframe to show 360° Virtual Tour." 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 +#: inc/submission/class-metabox-property-submission.php:227 #: 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 +#: inc/submission/class-metabox-property-submission.php:235 msgid "Select one or more files to allow download" msgstr "" @@ -2960,8 +3769,8 @@ 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 +#: inc/widgets/search-properties.php:77 msgid "Layout" msgstr "" @@ -2974,17 +3783,24 @@ msgid "Please Enter Your Property SKU" msgstr "" #: inc/property/class-metabox-property-admin.php:199 -#: inc/submission/class-metabox-property-submission.php:334 +#: inc/submission/class-metabox-property-submission.php:350 msgid "Postal Code / Zip" msgstr "" #: inc/property/class-metabox-property-admin.php:205 -#: inc/submission/class-metabox-property-submission.php:349 +#: inc/submission/class-metabox-property-submission.php:365 msgid "Google Map View" msgstr "" +#: inc/property/class-metabox-property-admin.php:220 +#: inc/submission/class-metabox-property-submission.php:213 +#: templates/content-single-property-v5.php:18 +#: templates/single-property/video.php:16 +msgid "Video" +msgstr "" + #: inc/property/class-metabox-property-admin.php:222 -#: inc/submission/class-metabox-property-submission.php:208 +#: inc/submission/class-metabox-property-submission.php:216 msgid "" "Input for videos, audios from Youtube, Vimeo and all supported sites by " "WordPress. It has preview feature." @@ -3003,18 +3819,18 @@ 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 +#: inc/property/class-metabox-property-admin.php:537 +#: inc/submission/class-metabox-property-submission.php:542 #: templates/search-box/fields/price-input.php:1 #: templates/search-box/fields/price.php:27 +#: templates/search-box/search-form-v2.php:44 +#: templates/search-box/search-form-v3.php:59 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 +#: templates/parts/mortgage-calculator.php:153 msgid "Sale Price" msgstr "" @@ -3043,147 +3859,156 @@ msgid "Is Price On Call" msgstr "" #: inc/property/class-metabox-property-admin.php:288 -#: inc/submission/class-metabox-property-submission.php:241 +#: inc/submission/class-metabox-property-submission.php:249 msgid "Built year" msgstr "" #: inc/property/class-metabox-property-admin.php:291 -#: inc/submission/class-metabox-property-submission.php:244 +#: inc/submission/class-metabox-property-submission.php:252 msgid "Enter built year" msgstr "" +#: inc/property/class-metabox-property-admin.php:292 +#: templates/content-single-property-v2.php:134 +msgid "Property Information" +msgstr "" + #: inc/property/class-metabox-property-admin.php:296 -#: inc/property/class-opalestate-search.php:432 -#: inc/submission/class-metabox-property-submission.php:248 +#: inc/property/class-opalestate-search.php:492 +#: inc/submission/class-metabox-property-submission.php:256 msgid "Parking" msgstr "" #: inc/property/class-metabox-property-admin.php:299 -#: inc/submission/class-metabox-property-submission.php:251 +#: inc/submission/class-metabox-property-submission.php:259 msgid "Enter number of Parking" msgstr "" #: inc/property/class-metabox-property-admin.php:302 -#: inc/submission/class-metabox-property-submission.php:254 +#: inc/submission/class-metabox-property-submission.php:262 msgid "Bedrooms" msgstr "" #: inc/property/class-metabox-property-admin.php:305 -#: inc/submission/class-metabox-property-submission.php:257 +#: inc/submission/class-metabox-property-submission.php:265 msgid "Enter number of bedrooms" msgstr "" #: inc/property/class-metabox-property-admin.php:308 -#: inc/submission/class-metabox-property-submission.php:260 +#: inc/submission/class-metabox-property-submission.php:268 msgid "Bathrooms" msgstr "" #: inc/property/class-metabox-property-admin.php:311 -#: inc/submission/class-metabox-property-submission.php:263 +#: inc/submission/class-metabox-property-submission.php:271 msgid "Enter number of bathrooms" msgstr "" #: inc/property/class-metabox-property-admin.php:314 -#: inc/submission/class-metabox-property-submission.php:266 +#: inc/submission/class-metabox-property-submission.php:274 msgid "Plot Size" msgstr "" #: inc/property/class-metabox-property-admin.php:317 -#: inc/submission/class-metabox-property-submission.php:269 +#: inc/submission/class-metabox-property-submission.php:277 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 +#: inc/submission/class-metabox-property-submission.php:280 msgid "Area Size" msgstr "" #: inc/property/class-metabox-property-admin.php:323 -#: inc/submission/class-metabox-property-submission.php:275 +#: inc/submission/class-metabox-property-submission.php:283 msgid "Enter size of area in sqft" msgstr "" #: inc/property/class-metabox-property-admin.php:326 -#: inc/submission/class-metabox-property-submission.php:278 +#: inc/submission/class-metabox-property-submission.php:286 msgid "Orientation" msgstr "" #: inc/property/class-metabox-property-admin.php:329 -#: inc/submission/class-metabox-property-submission.php:281 +#: inc/submission/class-metabox-property-submission.php:289 msgid "Enter Orientation of property" msgstr "" #: inc/property/class-metabox-property-admin.php:332 -#: inc/submission/class-metabox-property-submission.php:284 +#: inc/submission/class-metabox-property-submission.php:292 msgid "Living Rooms" msgstr "" #: inc/property/class-metabox-property-admin.php:335 -#: inc/submission/class-metabox-property-submission.php:287 +#: inc/submission/class-metabox-property-submission.php:295 msgid "Enter Number of Living Rooms" msgstr "" #: inc/property/class-metabox-property-admin.php:338 -#: inc/submission/class-metabox-property-submission.php:291 +#: inc/submission/class-metabox-property-submission.php:299 msgid "Kitchens" msgstr "" #: inc/property/class-metabox-property-admin.php:341 -#: inc/submission/class-metabox-property-submission.php:294 +#: inc/submission/class-metabox-property-submission.php:302 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 +#: inc/property/class-metabox-property-admin.php:548 +#: inc/submission/class-metabox-property-submission.php:306 +#: inc/submission/class-metabox-property-submission.php:553 msgid "Rooms" msgstr "" #: inc/property/class-metabox-property-admin.php:347 -#: inc/submission/class-metabox-property-submission.php:301 +#: inc/submission/class-metabox-property-submission.php:309 msgid "Enter Number of Amount Rooms" msgstr "" #: inc/property/class-metabox-property-admin.php:367 -#: inc/submission/class-metabox-property-submission.php:403 +#: inc/submission/class-metabox-property-submission.php:155 +#: inc/submission/class-metabox-property-submission.php:419 #: 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 +#: inc/vendors/elementor/widgets/opalestate-searchbox.php:221 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 +#: inc/property/class-metabox-property-admin.php:559 +#: inc/submission/class-metabox-property-submission.php:424 +#: inc/submission/class-metabox-property-submission.php:564 msgid "Content" msgstr "" #: inc/property/class-metabox-property-admin.php:377 -#: inc/submission/class-metabox-property-submission.php:413 +#: inc/submission/class-metabox-property-submission.php:429 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 +#: inc/property/class-metabox-property-admin.php:578 +#: inc/property/class-metabox-property-admin.php:647 +#: inc/submission/class-metabox-property-submission.php:430 +#: inc/submission/class-metabox-property-submission.php:509 +#: inc/submission/class-metabox-property-submission.php:585 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/property/class-metabox-property-admin.php:579 +#: inc/property/class-metabox-property-admin.php:648 +#: inc/submission/class-metabox-property-submission.php:431 +#: inc/submission/class-metabox-property-submission.php:510 +#: inc/submission/class-metabox-property-submission.php:586 +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_JS.php:229 +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Types.php:406 +#: inc/vendors/cmb2-plugins/cmb2/includes/types/CMB2_Type_File_Base.php:84 #: inc/vendors/cmb2-plugins/custom-fields/user/user.php:59 #: inc/vendors/cmb2-plugins/custom-fields/user/user.php:72 +#: templates/user/agency/agency-team.php:68 msgid "Remove" msgstr "" @@ -3204,12 +4029,12 @@ msgid "Author Information" msgstr "" #: inc/property/class-metabox-property-admin.php:433 -#: inc/user/class-opalestate-user.php:319 +#: inc/user/class-opalestate-user.php:323 msgid "Agent" msgstr "" #: inc/property/class-metabox-property-admin.php:439 -#: inc/user/class-opalestate-user.php:320 +#: inc/user/class-opalestate-user.php:324 #: templates/parts/search-agency-form.php:20 msgid "Agency" msgstr "" @@ -3219,8 +4044,7 @@ 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" +msgid "Change to new owner of this property, which be listed in That user dashboard" msgstr "" #: inc/property/class-metabox-property-admin.php:490 @@ -3236,88 +4060,85 @@ msgstr "" msgid "Preview Display" msgstr "" -#: inc/property/class-metabox-property-admin.php:532 -#: inc/submission/class-metabox-property-submission.php:532 +#: inc/property/class-metabox-property-admin.php:543 +#: inc/submission/class-metabox-property-submission.php:548 #: 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 +#: inc/property/class-metabox-property-admin.php:553 +#: inc/submission/class-metabox-property-submission.php:558 msgid "Baths" msgstr "" -#: inc/property/class-metabox-property-admin.php:553 -#: inc/submission/class-metabox-property-submission.php:553 +#: inc/property/class-metabox-property-admin.php:564 +#: inc/submission/class-metabox-property-submission.php:569 msgid "Image Preview" msgstr "" -#: inc/property/class-metabox-property-admin.php:566 -#: inc/submission/class-metabox-property-submission.php:568 +#: inc/property/class-metabox-property-admin.php:577 +#: inc/submission/class-metabox-property-submission.php:584 msgid "Floor {#}" msgstr "" -#: inc/property/class-metabox-property-admin.php:590 -#: inc/submission/class-metabox-property-submission.php:446 +#: inc/property/class-metabox-property-admin.php:601 +#: inc/submission/class-metabox-property-submission.php:462 #: 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 +#: inc/property/class-metabox-property-admin.php:608 +#: inc/submission/class-metabox-property-submission.php:470 #: 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 +#: inc/property/class-metabox-property-admin.php:613 +#: inc/submission/class-metabox-property-submission.php:475 msgid "Price from" msgstr "" -#: inc/property/class-metabox-property-admin.php:607 -#: inc/submission/class-metabox-property-submission.php:464 +#: inc/property/class-metabox-property-admin.php:618 +#: inc/submission/class-metabox-property-submission.php:480 #: 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 +#: inc/property/class-metabox-property-admin.php:624 +#: inc/submission/class-metabox-property-submission.php:486 #: 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 +#: inc/property/class-metabox-property-admin.php:633 +#: inc/submission/class-metabox-property-submission.php:494 msgid "Available" msgstr "" -#: inc/property/class-metabox-property-admin.php:623 -#: inc/submission/class-metabox-property-submission.php:479 +#: inc/property/class-metabox-property-admin.php:634 +#: inc/submission/class-metabox-property-submission.php:495 msgid "Unavailable" msgstr "" -#: inc/property/class-metabox-property-admin.php:629 -#: inc/submission/class-metabox-property-submission.php:485 +#: inc/property/class-metabox-property-admin.php:640 +#: inc/submission/class-metabox-property-submission.php:501 msgid "Link" msgstr "" -#: inc/property/class-metabox-property-admin.php:635 -#: inc/submission/class-metabox-property-submission.php:492 +#: inc/property/class-metabox-property-admin.php:646 +#: inc/submission/class-metabox-property-submission.php:508 msgid "Apartment {#}" msgstr "" +#: inc/property/class-opalestate-posttype.php:42 +#: inc/property/class-opalestate-posttype.php:54 +#: inc/property/class-opalestate-shortcodes.php:48 +#: templates/content-single-agency.php:110 +#: templates/content-single-agent.php:22 templates/single-agency/tabs.php:6 +msgid "Properties" +msgstr "" + #: inc/property/class-opalestate-posttype.php:44 #: inc/property/class-opalestate-posttype.php:45 #: templates/shortcodes/submission-form.php:30 @@ -3356,19 +4177,8 @@ msgstr "" 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 +#. translators: %s: number of orders msgid "Expired (%s)" msgid_plural "Expired (%s)" msgstr[0] "" @@ -3378,62 +4188,47 @@ msgstr[1] "" msgid "ago" msgstr "" -#: inc/property/class-opalestate-search.php:431 +#: inc/property/class-opalestate-search.php:491 msgid "Bed Rooms" msgstr "" -#: inc/property/class-opalestate-search.php:433 +#: inc/property/class-opalestate-search.php:493 msgid "Bath Rooms" msgstr "" -#: inc/property/class-opalestate-shortcodes.php:49 +#: inc/property/class-opalestate-shortcodes.php:47 msgid "Search Properties Form" msgstr "" -#: inc/property/class-opalestate-shortcodes.php:51 +#: inc/property/class-opalestate-shortcodes.php:49 msgid "Search Properties Result" msgstr "" -#: inc/property/class-opalestate-shortcodes.php:52 +#: inc/property/class-opalestate-shortcodes.php:50 #: inc/widgets/search-properties.php:57 msgid "Search Properties" msgstr "" -#: inc/property/class-opalestate-shortcodes.php:53 +#: inc/property/class-opalestate-shortcodes.php:51 msgid "Search Split Maps" msgstr "" -#: inc/property/class-opalestate-shortcodes.php:55 +#: inc/property/class-opalestate-shortcodes.php:52 msgid "Show Map + Search Box and Properties" msgstr "" -#: inc/property/class-opalestate-shortcodes.php:56 +#: inc/property/class-opalestate-shortcodes.php:53 msgid "Ajax Search Map Properties And Horizontal Search" msgstr "" -#: inc/property/class-opalestate-shortcodes.php:58 +#: inc/property/class-opalestate-shortcodes.php:54 msgid "Register User Form" msgstr "" -#: inc/property/class-opalestate-shortcodes.php:59 +#: inc/property/class-opalestate-shortcodes.php:55 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 "" @@ -3443,8 +4238,8 @@ 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 +#: templates/user/content-property.php:105 msgid "Edit" msgstr "" @@ -3532,15 +4327,8 @@ msgstr "" 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 +#: templates/single-property/facilities.php:10 msgid "Facilities" msgstr "" @@ -3557,69 +4345,67 @@ msgstr "" 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:174 +#: inc/submission/class-metabox-property-submission.php:237 +#: inc/submission/class-metabox-property-submission.php:322 #: 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 +#: inc/submission/class-metabox-property-submission.php:397 +#: inc/submission/class-metabox-property-submission.php:415 +#: inc/submission/class-metabox-property-submission.php:458 +#: inc/submission/class-metabox-property-submission.php:650 msgid "Next Step" msgstr "" -#: inc/submission/class-metabox-property-submission.php:186 +#: inc/submission/class-metabox-property-submission.php:194 msgid "Featured Image" msgstr "" -#: inc/submission/class-metabox-property-submission.php:212 +#: inc/submission/class-metabox-property-submission.php:220 #: templates/single-property/virtualtour.php:16 msgid "360° Virtual Tour" msgstr "" -#: inc/submission/class-metabox-property-submission.php:228 +#: inc/submission/class-metabox-property-submission.php:236 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:321 #: 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 +#: inc/submission/class-metabox-property-submission.php:396 +#: inc/submission/class-metabox-property-submission.php:414 +#: inc/submission/class-metabox-property-submission.php:457 +#: inc/submission/class-metabox-property-submission.php:532 +#: inc/submission/class-metabox-property-submission.php:649 msgid "Previous Step" msgstr "" -#: inc/submission/class-metabox-property-submission.php:315 +#: inc/submission/class-metabox-property-submission.php:331 #: 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 +#: inc/submission/class-metabox-property-submission.php:338 msgid "States / Province" msgstr "" -#: inc/submission/class-metabox-property-submission.php:356 +#: inc/submission/class-metabox-property-submission.php:372 msgid "Enable Google Map" msgstr "" -#: inc/submission/class-metabox-property-submission.php:360 -#: inc/admin/settings/3rd_party.php:26 -msgid "Google Map" +#: inc/submission/class-metabox-property-submission.php:524 +#: templates/content-single-property-v2.php:73 +#: templates/content-single-property-v5.php:33 +#: templates/single-property/floor-plans.php:15 +msgid "Floor Plans" msgstr "" #: inc/submission/class-opalestate-submission.php:93 msgid "Submission Form" msgstr "" -#: inc/submission/class-opalestate-submission.php:97 inc/user/functions.php:242 +#: inc/submission/class-opalestate-submission.php:97 inc/user/functions.php:251 #: templates/single-agency/properties.php:15 #: templates/single-agent/properties.php:10 msgid "My Properties" @@ -3644,8 +4430,7 @@ msgid "Show Content when User Not Login" msgstr "" #: inc/submission/class-opalestate-submission.php:142 -msgid "" -"Show Login/Register form and submission form if the user is not logged in." +msgid "Show Login/Register form and submission form if the user is not logged in." msgstr "" #: inc/submission/class-opalestate-submission.php:147 @@ -3723,53 +4508,83 @@ msgstr "" msgid "Use {property_id} to generate the property ID." msgstr "" +#: inc/submission/class-opalestate-submission.php:264 +msgid "Upload Settings" +msgstr "" + +#: inc/submission/class-opalestate-submission.php:271 +msgid "Maximum Upload Image Size" +msgstr "" + +#: inc/submission/class-opalestate-submission.php:272 +#: inc/submission/class-opalestate-submission.php:280 +msgid "Set maximum volumn size having < x MB" +msgstr "" + +#: inc/submission/class-opalestate-submission.php:279 +msgid "Maximum Upload Image Files" +msgstr "" + #: inc/submission/class-opalestate-submission.php:287 +msgid "Maximum Upload Other Size" +msgstr "" + +#: inc/submission/class-opalestate-submission.php:288 +#: inc/submission/class-opalestate-submission.php:296 +msgid "Set maximum volumn size having < x MB for upload docx, pdf..." +msgstr "" + +#: inc/submission/class-opalestate-submission.php:295 +msgid "Maximum Upload Other Files" +msgstr "" + +#: inc/submission/class-opalestate-submission.php:327 msgid "Edit My Property" msgstr "" -#: inc/submission/class-opalestate-submission.php:350 +#: inc/submission/class-opalestate-submission.php:390 msgid "A metabox with the specified 'metabox_id' doesn't exist." msgstr "" -#: inc/submission/class-opalestate-submission.php:469 +#: inc/submission/class-opalestate-submission.php:509 msgid "Please enter data for all require fields before submitting" msgstr "" -#: 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/submission/class-opalestate-submission.php:511 +#: inc/submission/class-opalestate-submission.php:586 +#: inc/submission/class-opalestate-submission.php:593 +#: inc/submission/class-opalestate-submission.php:600 #: inc/vendors/opalmembership/membership.php:502 msgid "Submission Information" msgstr "" -#: inc/submission/class-opalestate-submission.php:520 +#: inc/submission/class-opalestate-submission.php:562 msgid "Property has been successfully updated." msgstr "" -#: inc/submission/class-opalestate-submission.php:526 +#: inc/submission/class-opalestate-submission.php:568 msgid "The property has updated completed with new information" msgstr "" -#: inc/submission/class-opalestate-submission.php:530 +#: inc/submission/class-opalestate-submission.php:572 msgid "You have submitted the property successful" msgstr "" -#: inc/submission/class-opalestate-submission.php:550 +#: inc/submission/class-opalestate-submission.php:592 msgid "" "Currently, your account was blocked, please keep contact admin to resolve " "this!." msgstr "" -#: inc/submission/class-opalestate-submission.php:557 +#: inc/submission/class-opalestate-submission.php:599 msgid "Sorry! Your submitted datcould not save a at this time" msgstr "" -#: inc/submission/class-opalestate-submission.php:690 +#: inc/submission/class-opalestate-submission.php:732 msgid "Property has been successfully removed." msgstr "" -#: inc/submission/class-opalestate-submission.php:692 +#: inc/submission/class-opalestate-submission.php:734 msgid "An error occured when removing an item." msgstr "" @@ -3809,11 +4624,6 @@ msgstr "" msgid "New Amenity" msgstr "" -#: inc/taxonomies/class-taxomony-amenities.php:61 -msgctxt "slug" -msgid "amenity" -msgstr "" - #: inc/taxonomies/class-taxomony-amenities.php:91 #: inc/taxonomies/class-taxonomy-types.php:49 msgid "Type Metabox" @@ -3836,24 +4646,10 @@ msgstr "" 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 @@ -3938,10 +4734,6 @@ msgstr "" 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 "" @@ -3997,11 +4789,11 @@ msgstr "" #: 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 +#: inc/vendors/elementor/widgets/opalestate-searchbox.php:238 +#: inc/vendors/elementor/widgets/opalestate-searchbox.php:267 +#: inc/vendors/elementor/widgets/opalestate-searchbox.php:293 +#: inc/vendors/elementor/widgets/opalestate-searchbox.php:357 +#: inc/vendors/elementor/widgets/opalestate-searchbox.php:398 msgid "Color" msgstr "" @@ -4132,10 +4924,6 @@ msgstr "" 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 "" @@ -4240,6 +5028,133 @@ msgstr "" msgid "Select Type" msgstr "" +#: inc/template-functions.php:220 +msgid "Featured Desending" +msgstr "" + +#: inc/template-functions.php:221 +msgid "Price Ascending" +msgstr "" + +#: inc/template-functions.php:222 +msgid "Price Desending" +msgstr "" + +#: inc/template-functions.php:223 +msgid "Area Ascending" +msgstr "" + +#: inc/template-functions.php:224 +msgid "Area Desending" +msgstr "" + +#: inc/template-functions.php:228 +msgid "Sort By" +msgstr "" + +#: inc/template-functions.php:305 +msgid "Previous" +msgstr "" + +#: inc/template-functions.php:316 +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_JS.php:206 +msgid "Next" +msgstr "" + +#: inc/template-functions.php:437 +msgid "Vesion 2" +msgstr "" + +#: inc/template-functions.php:438 +msgid "Vesion 3" +msgstr "" + +#: inc/template-functions.php:439 +msgid "Vesion 4" +msgstr "" + +#: inc/template-functions.php:440 +msgid "Vesion 5" +msgstr "" + +#: inc/template-functions.php:467 +msgid "Gallery Thumb Nav" +msgstr "" + +#: inc/template-functions.php:468 +msgid "Gallery Slider" +msgstr "" + +#: inc/template-functions.php:469 +msgid "Maps" +msgstr "" + +#: inc/template-functions.php:470 +msgid "Tabs - Gallery Active" +msgstr "" + +#: inc/template-functions.php:471 +msgid "Tabs - Map Active" +msgstr "" + +#: inc/template-functions.php:472 +msgid "Tabs - Street Map Active" +msgstr "" + +#: inc/template-functions.php:473 +msgid "Tour 360" +msgstr "" + +#: inc/template-functions.php:474 +msgid "Gallery Metro" +msgstr "" + +#: inc/template-functions.php:475 +msgid "Mark Picture" +msgstr "" + +#: inc/template-functions.php:835 +msgid "Similar Properties You May Like" +msgstr "" + +#: inc/template-functions.php:883 +msgid "New Listings Nearby" +msgstr "" + +#: inc/template-functions.php:919 inc/template-functions.php:945 +#. translators: %s: rating +msgid "Rated %s out of 5" +msgstr "" + +#: inc/template-functions.php:939 +#. translators: 1: rating 2: rating count +msgid "Rated %1$s out of 5 based on %2$s customer rating" +msgid_plural "Rated %1$s out of 5 based on %2$s customer ratings" +msgstr[0] "" +msgstr[1] "" + +#: inc/template-functions.php:1101 inc/template-functions.php:1103 +msgid "Print" +msgstr "" + +#: inc/template-hook-functions.php:245 inc/template-hook-functions.php:300 +msgid "Request Viewing" +msgstr "" + +#: inc/template-hook-functions.php:297 +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:327 +msgid "User Management" +msgstr "" + +#: inc/template-hook-functions.php:328 +msgid "Opalestate Fullwidth" +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 @@ -4335,1913 +5250,485 @@ msgstr "" msgid "User Profile" msgstr "" -#: inc/user/class-opalestate-user.php:200 -#, php-format +#: inc/user/class-opalestate-user.php:204 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 +#: inc/user/class-opalestate-user.php:215 msgid "" "This user has role Opal Estate Agent and click here to update Agent profile" msgstr "" -#: inc/user/class-opalestate-user.php:293 +#: inc/user/class-opalestate-user.php:297 msgid "" -"Your account was blocked to use the submission form, so you could not submit " -"any property." +"Your account was blocked to use the submission form, so you could not " +"submit any property." msgstr "" -#: inc/user/class-opalestate-user.php:305 +#: inc/user/class-opalestate-user.php:309 msgid "Your account is blocked, you could not complete this action" msgstr "" -#: inc/user/class-opalestate-user.php:318 +#: inc/user/class-opalestate-user.php:322 msgid "Subscriber" msgstr "" -#: inc/user/class-opalestate-user.php:524 +#: inc/user/class-opalestate-user.php:528 msgid "Found a problem while updating" msgstr "" -#: inc/user/class-opalestate-user.php:535 +#: inc/user/class-opalestate-user.php:539 msgid "Passwords fields are not empty" msgstr "" -#: inc/user/class-opalestate-user.php:541 +#: inc/user/class-opalestate-user.php:545 msgid "New password is not same confirm password" msgstr "" -#: inc/user/class-opalestate-user.php:551 +#: inc/user/class-opalestate-user.php:555 msgid "Password Updated" msgstr "" -#: inc/user/class-opalestate-user.php:553 +#: inc/user/class-opalestate-user.php:557 msgid "Old password is not correct" msgstr "" -#: inc/user/class-opalestate-user.php:618 +#: inc/user/class-opalestate-user.php:622 msgid "Old Password" msgstr "" -#: inc/user/class-opalestate-user.php:623 +#: inc/user/class-opalestate-user.php:627 msgid "Please enter your old password" msgstr "" -#: inc/user/class-opalestate-user.php:627 +#: inc/user/class-opalestate-user.php:631 msgid "New Password" msgstr "" -#: inc/user/class-opalestate-user.php:632 +#: inc/user/class-opalestate-user.php:636 msgid "Please enter your new password." msgstr "" -#: inc/user/class-opalestate-user.php:636 +#: inc/user/class-opalestate-user.php:640 msgid "Confirm Password" msgstr "" -#: inc/user/class-opalestate-user.php:641 +#: inc/user/class-opalestate-user.php:645 msgid "Please enter your confirm password." msgstr "" -#: inc/user/functions.php:173 +#: inc/user/functions.php:182 msgid "Log out" msgstr "" -#: inc/user/functions.php:187 +#: inc/user/functions.php:196 #: inc/vendors/elementor/widgets/opalestate-account-button.php:551 msgid "Dashboard" msgstr "" -#: inc/user/functions.php:195 +#: inc/user/functions.php:204 msgid "Personal Information" msgstr "" -#: inc/user/functions.php:204 +#: inc/user/functions.php:213 msgid "Favorite" msgstr "" -#: inc/user/functions.php:222 templates/user/read-messages.php:7 +#: inc/user/functions.php:222 templates/content-single-property-v5.php:35 +msgid "Reviews" +msgstr "" + +#: inc/user/functions.php:231 templates/user/read-messages.php:7 msgid "Messages" msgstr "" -#: inc/user/functions.php:231 +#: inc/user/functions.php:240 msgid "Submit Property" msgstr "" -#: inc/user/functions.php:270 +#: inc/user/functions.php:279 msgid "An account is already registered with your email address. Please login." msgstr "" -#: inc/user/functions.php:275 +#: inc/user/functions.php:284 msgid "Please enter a valid account username." msgstr "" -#: inc/user/functions.php:279 +#: inc/user/functions.php:288 msgid "Username is already exists." msgstr "" -#: inc/user/functions.php:284 +#: inc/user/functions.php:293 msgid "Password is requried." msgstr "" -#. Widget name will appear in UI -#: inc/widgets/featured-properties.php:22 -msgid "Estate: Featured Properties" +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2.php:199 +msgid "Metabox configuration is required to have an ID parameter." msgstr "" -#: inc/widgets/featured-properties.php:24 -msgid "Featured Properties widget." +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2.php:603 +msgid "Click to toggle" msgstr "" -#: inc/widgets/featured-properties.php:52 -#: templates/single-agent/featured-properties.php:19 -msgid "Featured Properties" +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Ajax.php:75 +msgid "Please Try Again" 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:" +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Ajax.php:181 +msgid "Remove Embed" msgstr "" -#: inc/widgets/featured-properties.php:62 -#: inc/widgets/sameprice-properties.php:63 -#: inc/widgets/similar-properties.php:61 -msgid "Limit:" +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Ajax.php:189 +#: inc/vendors/cmb2-plugins/cmb2/includes/helper-functions.php:107 +#. translators: 1: results for. 2: link to codex.wordpress.org/Embeds +msgid "No oEmbed Results Found for %1$s. View more info at %2$s." 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 -#, php-format -msgid "Hi, I am interested in %s (Property ID: %s)" -msgstr "" - -#: templates/messages/enquiry-form.php:11 -msgid "Enquire about property" -msgstr "" - -#: templates/messages/request-reviewing-form.php:10 -#: templates/messages/request-reviewing-form.php:11 -msgid "Send now" -msgstr "" - -#: 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/parts/has-warning.php:3 +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Base.php:422 msgid "" -"Hi! you could not edit/create a property at this time, you have not " -"permission to do." +"The \"%1$s\" field parameter has been deprecated in favor of the \"%2$s\" " +"parameter." 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 +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Base.php:426 msgid "" -"Your package has 0 left listing, you could not add any more. Please upgrade " -"now" +"Using the \"%1$s\" field parameter as a callback has been deprecated in " +"favor of the \"%2$s\" parameter." 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 +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Base.php:456 msgid "" -"All calculation are based on tentative and estimated figure and shall not " -"replace any financial advice" +"%1$s was called with a parameter that is deprecated since " +"version %2$s! %3$s" msgstr "" -#: templates/parts/not-allowed.php:8 -msgid "You are not allowed to access this page." +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Base.php:458 +msgid "" +"%1$s was called with a parameter that is deprecated since " +"version %2$s with no alternative available." msgstr "" -#: templates/parts/property-categories.php:7 -msgid "Categories:" +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Base.php:491 +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Hookup_Base.php:102 +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Options.php:247 +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Options_Hookup.php:357 +#: inc/vendors/cmb2-plugins/cmb2/includes/types/CMB2_Type_Base.php:173 +msgid "Invalid %1$s property: %2$s" msgstr "" -#: templates/parts/property-loop-price.php:15 -msgid "Call to Price" +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Base.php:509 +#: inc/vendors/cmb2-plugins/cmb2/includes/types/CMB2_Type_Base.php:157 +msgid "Invalid %1$s method: %2$s" msgstr "" -#: templates/parts/property-loop-price.php:34 -msgid "Contact Property" +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Field.php:1415 +msgid "Add Group" msgstr "" -#: templates/parts/property-types.php:7 -msgid "Types:" +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Field.php:1416 +msgid "Remove Group" 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:" +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Field.php:1563 +msgid "Sorry, this field does not have a cmb_id specified." 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:" +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Field_Display.php:432 +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_JS.php:230 +#: inc/vendors/cmb2-plugins/cmb2/includes/types/CMB2_Type_File_Base.php:79 +msgid "File:" 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" +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Hookup_Base.php:44 +msgid "%1$s should be implemented by the extended class." msgstr "" -#: templates/parts/search-agency-form.php:21 -msgid "Enter Agency Name" +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_JS.php:165 +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_JS.php:210 +msgid "Clear" 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:" +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_JS.php:166 +#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:171 +#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:359 +msgid "Default" msgstr "" -#: templates/rating/opalestate-ratings.php:67 -msgid "Ratings & Reviews" +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_JS.php:167 +msgid "Select Color" msgstr "" -#: templates/rating/opalestate-ratings.php:82 -msgid "star" +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_JS.php:168 +msgid "Current Color" msgstr "" -#: templates/rating/opalestate-ratings.php:109 -msgid "Overall rating" +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_JS.php:201 +msgid "Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday" msgstr "" -#. %s number of ratings -#: templates/rating/opalestate-ratings.php:121 -#, php-format -msgctxt "rating numbers" -msgid "%s rating" -msgid_plural "%s ratings" -msgstr[0] "" -msgstr[1] "" - -#: templates/rating/opalestate-ratings.php:135 -msgid "based on all ratings" +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_JS.php:202 +msgid "Su, Mo, Tu, We, Th, Fr, Sa" msgstr "" -#: templates/rating/opalestate-ratings.php:210 -msgid "There are no reviews yet." +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_JS.php:203 +msgid "Sun, Mon, Tue, Wed, Thu, Fri, Sat" msgstr "" -#. %s is property title -#: templates/rating/opalestate-ratings.php:233 -msgid "Add a review" +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_JS.php:204 +msgid "" +"January, February, March, April, May, June, July, August, September, " +"October, November, December" msgstr "" -#: templates/rating/opalestate-ratings.php:233 -#, php-format -msgid "Be the first to review “%s”" +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_JS.php:205 +msgid "Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec" msgstr "" -#. %s is property title -#: templates/rating/opalestate-ratings.php:235 -#, php-format -msgid "Leave a Reply to %s" +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_JS.php:207 +msgid "Prev" msgstr "" -#: templates/rating/opalestate-ratings.php:245 -msgid "Submit" +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_JS.php:208 +msgid "Today" msgstr "" -#: templates/rating/opalestate-ratings.php:254 -#: templates/rating/opalestate-ratings.php:266 -msgid "Rate…" +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_JS.php:209 +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_JS.php:219 +msgid "Done" msgstr "" -#: templates/rating/opalestate-ratings.php:255 -#: templates/rating/opalestate-ratings.php:267 -msgid "Perfect" +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_JS.php:213 +msgid "Choose Time" msgstr "" -#: templates/rating/opalestate-ratings.php:256 -#: templates/rating/opalestate-ratings.php:268 -msgid "Good" +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_JS.php:215 +msgid "Hour" msgstr "" -#: templates/rating/opalestate-ratings.php:257 -#: templates/rating/opalestate-ratings.php:269 -msgid "Average" +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_JS.php:216 +msgid "Minute" msgstr "" -#: templates/rating/opalestate-ratings.php:258 -#: templates/rating/opalestate-ratings.php:270 -msgid "Not that bad" +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_JS.php:217 +msgid "Second" msgstr "" -#: templates/rating/opalestate-ratings.php:259 -#: templates/rating/opalestate-ratings.php:271 -msgid "Very poor" +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_JS.php:218 +msgid "Now" msgstr "" -#: templates/rating/opalestate-ratings.php:265 -msgid "Your rating" +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_JS.php:226 +msgid "Use this file" msgstr "" -#: templates/rating/opalestate-ratings.php:275 -msgid "Your review" +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_JS.php:227 +msgid "Use these files" msgstr "" -#: templates/rating/opalestate-ratings.php:283 -msgid "Your review already exists!" +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_JS.php:228 +#: inc/vendors/cmb2-plugins/cmb2/includes/types/CMB2_Type_File_Base.php:64 +msgid "Remove Image" msgstr "" -#: templates/rating/opalestate-ratings.php:286 -msgid "You cannot write review on your own post." -msgstr "" - -#: templates/rating/opalestate-ratings.php:290 -msgid "You must be logged in to review." -msgstr "" - -#: templates/rating/opalestate-ratings.php:291 -msgid "Click here to login" -msgstr "" - -#: templates/rating/review-meta.php:14 -msgid "Your review is awaiting approval" -msgstr "" - -#: templates/shortcodes/ajax-map-search.php:35 -msgid "More" -msgstr "" - -#: templates/shortcodes/ajax-map-search.php:44 -msgid "Any" -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 +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_JS.php:231 +#: inc/vendors/cmb2-plugins/cmb2/includes/types/CMB2_Type_File_Base.php:82 +#: templates/single-property/attachments.php:20 +#: templates/single-property/attachments.php:28 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." +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_JS.php:232 +msgid "Select / Deselect All" 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" +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Options_Hookup.php:139 +msgid "Nothing to update." msgstr "" -#. %s: Name of current post -#: templates/single-property/content.php:6 -#, php-format -msgid "Continue reading %s " +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Types.php:226 +msgid "Custom CMB2 field type classes must extend CMB2_Type_Base." msgstr "" -#: templates/single-property/floor-plans.php:22 -#: templates/single-property/floor-plans.php:34 -#, php-format -msgid "Plan %s" +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Types.php:344 +msgid "Add Row" msgstr "" -#: templates/single-property/floor-plans.php:49 -msgid "Size:" +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_Types.php:406 +msgid "Remove Row" 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 "" - -#: templates/single-property/sharebox.php:35 -msgid "Share on Twitter" -msgstr "" - -#: templates/single-property/sharebox.php:42 -msgid "Share on LinkedIn" -msgstr "" - -#: templates/single-property/sharebox.php:49 -msgid "Share on Tumblr" -msgstr "" - -#: templates/single-property/sharebox.php:57 -msgid "Share on Google plus" -msgstr "" - -#: templates/single-property/sharebox.php:65 -msgid "Share on Pinterest" -msgstr "" - -#: templates/single-property/sharebox.php:72 -msgid "Email to a Friend" -msgstr "" - -#: 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 -#: templates/single-property/walkscore.php:22 -msgid "Walk Scores" -msgstr "" - -#: templates/single-property/walkscore.php:25 -#: templates/single-property/walkscore.php:38 -msgid "more details here" -msgstr "" - -#: templates/single-property/walkscore.php:35 -msgid "Transit Scores" -msgstr "" - -#: templates/single-property/walkscore.php:48 -msgid "Bikeable Scores" -msgstr "" - -#: templates/single-property/walkscore.php:51 -msgid "More details here" -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 "" - -#: templates/submission/require-login.php:8 -#: templates/submission/submission-completed.php:8 +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_hookup.php:182 msgid "" -"Login in allowing you to edit your property or submit a property, save " -"favorite real estate." +"Term Metadata is a WordPress 4.4+ feature. Please upgrade your WordPress " +"install." msgstr "" -#: templates/submission/require-login.php:9 -#: templates/submission/submission-completed.php:9 -msgid "Login Now" +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_hookup.php:186 +msgid "Term metaboxes configuration requires a \"taxonomies\" parameter." msgstr "" -#: templates/user/content-property.php:99 -msgid "Set Featured" -msgstr "" - -#: templates/user/content-property.php:115 -msgid "Are you sure you wish to delete?" -msgstr "" - -#: templates/user/content-property.php:116 -msgid "Delete Property" -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: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 -msgid "My Saved Searches" -msgstr "" - -#: templates/user-search/content-savedsearch.php:12 -#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:212 -msgid "View" -msgstr "" - -#: templates/user-search/content-savedsearch.php:12 -msgid "Delete" -msgstr "" - -#: templates/user-search/content-savedsearch.php:22 -msgid "Are you sure to delete this?" -msgstr "" - -#: templates/user-search/content-savedsearch.php:37 -msgid "No Item In Saved Searches" -msgstr "" - -#: templates/user-search/content-savedsearch.php:38 -msgid "You have not added any search data." -msgstr "" - -#: templates/user-search/render-form.php:12 -msgid "Save search" -msgstr "" - -#: templates/user-search/render-form.php:21 -msgid "Name this search." +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_hookup.php:466 +msgid "Toggle panel: %s" msgstr "" +#: inc/vendors/cmb2-plugins/cmb2/includes/helper-functions.php:307 #: templates/user-search/render-form.php:33 msgid "Save" msgstr "" -#: inc/admin/agent/class-agent.php:127 -msgid "Target Search" +#: inc/vendors/cmb2-plugins/cmb2/includes/rest-api/CMB2_REST_Controller.php:257 +msgid "This box does not have read permissions." msgstr "" -#: inc/admin/property/class-property.php:101 -msgid "Sku" +#: inc/vendors/cmb2-plugins/cmb2/includes/rest-api/CMB2_REST_Controller.php:277 +msgid "This box does not have write permissions." msgstr "" -#: inc/admin/property/class-property.php:104 -msgid "Author" -msgstr "" - -#: 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 "" - -#: inc/admin/property/class-property.php:106 -msgid "Expiry Date" -msgstr "" - -#: inc/admin/property/class-property.php:155 -msgid "Y/m/d g:i:s a" -msgstr "" - -#: inc/admin/property/class-property.php:157 -msgctxt "expired property" -msgid "---" -msgstr "" - -#: inc/admin/rating/class-rating.php:54 inc/admin/rating/class-rating.php:58 -msgid "Review Settings" -msgstr "" - -#: inc/admin/rating/class-rating.php:64 inc/admin/rating/class-rating.php:65 -msgid "Enable property reviews" -msgstr "" - -#: 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 +#: inc/vendors/cmb2-plugins/cmb2/includes/rest-api/CMB2_REST_Controller.php:300 msgid "" -"You need to register Google API " -"Key, then put the key in this setting." +"No box found by that id. A box needs to be registered with the " +"\"show_in_rest\" parameter configured." msgstr "" -#: inc/admin/settings/3rd_party.php:65 -msgid "Style" +#: inc/vendors/cmb2-plugins/cmb2/includes/rest-api/CMB2_REST_Controller.php:378 +msgid "A human-readable description of the object." msgstr "" -#: inc/admin/settings/3rd_party.php:66 -msgid "Select a style" +#: inc/vendors/cmb2-plugins/cmb2/includes/rest-api/CMB2_REST_Controller.php:385 +msgid "The id for the object." msgstr "" -#: inc/admin/settings/3rd_party.php:70 -msgid "Standard" +#: inc/vendors/cmb2-plugins/cmb2/includes/rest-api/CMB2_REST_Controller.php:392 +msgid "The title for the object." msgstr "" -#: inc/admin/settings/3rd_party.php:71 -msgid "Silver" +#: inc/vendors/cmb2-plugins/cmb2/includes/rest-api/CMB2_REST_Controller_Boxes.php:51 +msgid "Includes the registered fields for the box in the response." 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 +#: inc/vendors/cmb2-plugins/cmb2/includes/rest-api/CMB2_REST_Controller_Boxes.php:72 msgid "" -"You can visit " -"Google Maps Platform Styling Wizard, then paste JSON into this setting." +"Includes the fully rendered attributes, 'form_open', 'form_close', as well " +"as the enqueued 'js_dependencies' script handles, and 'css_dependencies' " +"stylesheet handles." msgstr "" -#: inc/admin/settings/3rd_party.php:88 -msgid "Autocomplete Restrictions" +#: inc/vendors/cmb2-plugins/cmb2/includes/rest-api/CMB2_REST_Controller_Boxes.php:122 +msgid "No boxes found." msgstr "" -#: inc/admin/settings/3rd_party.php:89 +#: inc/vendors/cmb2-plugins/cmb2/includes/rest-api/CMB2_REST_Controller_Fields.php:27 +msgid "Includes the box object which the fields are registered to in the response." +msgstr "" + +#: inc/vendors/cmb2-plugins/cmb2/includes/rest-api/CMB2_REST_Controller_Fields.php:30 msgid "" -"Enter one or more country codes ALPHA-2 separator by \",\". Example: \"us\" " -"for USA. " -"See list country codes." +"When the '_rendered' argument is passed, the renderable field attributes " +"will be returned fully rendered. By default, the names of the callback " +"handers for the renderable attributes will be returned." msgstr "" -#: inc/admin/settings/3rd_party.php:101 -msgid "Walk Score" -msgstr "" - -#: inc/admin/settings/3rd_party.php:109 -msgid "Walk Score APi Key" -msgstr "" - -#: inc/admin/settings/3rd_party.php:110 +#: inc/vendors/cmb2-plugins/cmb2/includes/rest-api/CMB2_REST_Controller_Fields.php:33 +#: inc/vendors/cmb2-plugins/cmb2/includes/rest-api/CMB2_REST_Controller_Fields.php:36 msgid "" -"Add Walk Score API key. To get your Walk Score API key, go to your Walk " -"Score Account." +"To view or modify the field's value, the 'object_id' and 'object_type' " +"arguments are required." msgstr "" -#: inc/admin/settings/3rd_party.php:128 -msgid "Yelp API Client ID" +#: inc/vendors/cmb2-plugins/cmb2/includes/rest-api/CMB2_REST_Controller_Fields.php:236 +msgid "CMB2 Field value cannot be updated without the value parameter specified." msgstr "" -#: inc/admin/settings/3rd_party.php:129 +#: inc/vendors/cmb2-plugins/cmb2/includes/rest-api/CMB2_REST_Controller_Fields.php:297 msgid "" -"Add Yelp client ID. To get your Yelp Api Client ID, go to your Yelp Account. " -"Register here" +"CMB2 Field value cannot be modified without the object_id and object_type " +"parameters specified." msgstr "" -#: inc/admin/settings/3rd_party.php:135 -msgid "Yelp API Secret" +#: inc/vendors/cmb2-plugins/cmb2/includes/rest-api/CMB2_REST_Controller_Fields.php:312 +#: inc/vendors/cmb2-plugins/cmb2/includes/rest-api/CMB2_REST_Controller_Fields.php:341 +msgid "No field found by that id." msgstr "" -#: inc/admin/settings/3rd_party.php:136 +#: inc/vendors/cmb2-plugins/cmb2/includes/rest-api/CMB2_REST_Controller_Fields.php:415 +msgid "Value Error for %s" +msgstr "" + +#: inc/vendors/cmb2-plugins/cmb2/includes/shim/WP_REST_Controller.php:25 +#. translators: %s: register_routes() +msgid "Method '%s' must be overridden." +msgstr "" + +#: inc/vendors/cmb2-plugins/cmb2/includes/shim/WP_REST_Controller.php:290 +msgid "Limit results to those matching a string." +msgstr "" + +#: inc/vendors/cmb2-plugins/cmb2/includes/shim/WP_REST_Controller.php:308 msgid "" -"Add Yelp API Secret. Register here" +"Scope under which the request is made; determines fields present in " +"response." msgstr "" -#: inc/admin/settings/3rd_party.php:142 -msgid "Yelp App key" +#: inc/vendors/cmb2-plugins/cmb2/includes/types/CMB2_Type_File.php:76 +msgid "Add or Upload File" msgstr "" -#: inc/admin/settings/3rd_party.php:143 +#: inc/vendors/cmb2-plugins/cmb2/includes/types/CMB2_Type_File_List.php:41 +msgid "Add or Upload Files" +msgstr "" + +#: inc/vendors/cmb2-plugins/cmb2/includes/types/CMB2_Type_Taxonomy_Base.php:115 +msgid "No terms" +msgstr "" + +#: inc/vendors/cmb2-plugins/custom-fields/map/map.php:46 +msgid "Map Address" +msgstr "" + +#: inc/vendors/cmb2-plugins/custom-fields/map/map.php:54 +msgid "Latitude" +msgstr "" + +#: inc/vendors/cmb2-plugins/custom-fields/map/map.php:64 +msgid "Longitude" +msgstr "" + +#: inc/vendors/cmb2-plugins/custom-fields/map/map.php:73 msgid "" -"You can find it in your Yelp Application Dashboard. Register here" +"You need to register Google API Key, then put the key in plugin " +"setting." msgstr "" -#: inc/admin/settings/3rd_party.php:149 -msgid "Yelp Categories" +#: inc/vendors/cmb2-plugins/custom-fields/user/user.php:38 +#: templates/user/agency/agency-team.php:33 +msgid "As an author, you can add other users to your agency." msgstr "" -#: inc/admin/settings/3rd_party.php:150 -msgid "Yelp Categories to show on front page" +#: inc/vendors/cmb2-plugins/custom-fields/user/user.php:40 +#: templates/user/agency/agency-team.php:34 +msgid "Add someone to your agency, please enter extractly username in below input:" msgstr "" -#: inc/admin/settings/3rd_party.php:156 -msgid "Yelp - Number of results" +#: inc/vendors/cmb2-plugins/custom-fields/user/user.php:45 +msgid "add" msgstr "" -#: inc/admin/settings/3rd_party.php:157 -msgid "Number of results to show on listing page for each category." +#: 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 "" -#: inc/admin/settings/3rd_party.php:167 inc/admin/settings/3rd_party.php:168 -msgid "Yelp Distance Measurement Unit" +#: inc/vendors/cmb2-plugins/uploader/uploader.php:129 +msgid "Upload" msgstr "" -#: inc/admin/settings/3rd_party.php:173 -msgid "kilometers" -msgstr "" - -#: inc/admin/settings/email.php:28 inc/admin/settings/general.php:28 -#: inc/admin/settings/general.php:37 -msgid "General Settings" -msgstr "" - -#: inc/admin/settings/general.php:45 -msgid "Login and Redirect to Dashboard page" -msgstr "" - -#: inc/admin/settings/general.php:46 -msgid "Redirect to User Management Dashboard page after login." -msgstr "" - -#: inc/admin/settings/general.php:55 -msgid "Register and Redirect to Dashboard page" -msgstr "" - -#: inc/admin/settings/general.php:56 -msgid "Redirect to User Management Dashboard page after register." -msgstr "" - -#: inc/admin/settings/general.php:65 -msgid "Maximum Upload Image Size" -msgstr "" - -#: inc/admin/settings/general.php:66 inc/admin/settings/general.php:74 -msgid "Set maximum volumn size having < x MB" -msgstr "" - -#: inc/admin/settings/general.php:73 -msgid "Maximum Upload Image Files" -msgstr "" - -#: inc/admin/settings/general.php:81 -msgid "Maximum Upload Other Size" -msgstr "" - -#: inc/admin/settings/general.php:82 inc/admin/settings/general.php:90 -msgid "Set maximum volumn size having < x MB for upload docx, pdf..." -msgstr "" - -#: inc/admin/settings/general.php:89 -msgid "Maximum Upload Other Files" -msgstr "" - -#: inc/admin/settings/general.php:98 inc/admin/settings/general.php:109 -msgid "Agent Image Size" -msgstr "" - -#: inc/admin/settings/general.php:99 inc/admin/settings/general.php:110 -msgid "" -"The Loop Image is an Agent that is chosen as the representative Agent in " -"grid and list." -msgstr "" - -#: inc/admin/settings/general.php:121 -msgid "Loop Image Size" -msgstr "" - -#: inc/admin/settings/general.php:122 -msgid "" -"The Loop Image is an image that is chosen as the representative image in " -"grid and list." -msgstr "" - -#: inc/admin/settings/general.php:132 -msgid "Featured Image Size" -msgstr "" - -#: inc/admin/settings/general.php:133 -msgid "" -"The Featured Image is an image that is chosen as the representative image in " -"single page. ." -msgstr "" - -#: inc/admin/settings/general.php:138 -msgid "" -"To generate images with new image sizes, you can use this Force Regenerate Thumbnails" -msgstr "" - -#: inc/admin/settings/general.php:142 -msgid "Minimum of Target Price For Agent" -msgstr "" - -#: inc/admin/settings/general.php:143 -msgid "Enter minimum of price for starting search agent by target" -msgstr "" - -#: inc/admin/settings/general.php:152 -msgid "Maximum of Target Price For Agent" -msgstr "" - -#: inc/admin/settings/general.php:153 -msgid "Enter maximum of price for starting search agent by target" -msgstr "" - -#: inc/admin/settings/general.php:162 -msgid "Single Layout Page" -msgstr "" - -#: inc/admin/settings/general.php:163 -msgid "Choose layout for single property." -msgstr "" - -#: inc/admin/settings/general.php:171 -msgid "Currency Settings" -msgstr "" - -#: inc/admin/settings/general.php:179 -msgid "Currency" -msgstr "" - -#: inc/admin/settings/general.php:187 -msgid "Currency Position" -msgstr "" - -#: inc/admin/settings/general.php:192 -msgid "Before - $10" -msgstr "" - -#: inc/admin/settings/general.php:193 -msgid "After - 10$" -msgstr "" - -#: inc/admin/settings/general.php:198 -msgid "Thousands Separator" -msgstr "" - -#: inc/admin/settings/general.php:199 -msgid "The symbol (typically , or .) to separate thousands" -msgstr "" - -#: inc/admin/settings/general.php:205 -msgid "Decimal Separator" -msgstr "" - -#: inc/admin/settings/general.php:206 -msgid "The symbol (usually , or .) to separate decimal points" -msgstr "" - -#: inc/admin/settings/general.php:212 -msgid "Number of Decimals" -msgstr "" - -#: inc/admin/settings/general.php:213 -msgid "This sets the number of decimal points shown in displayed prices." -msgstr "" - -#: inc/admin/settings/general.php:222 -msgid "Measurement Unit" -msgstr "" - -#: inc/admin/settings/general.php:223 -msgid "Select a measurement unit." -msgstr "" - -#: inc/admin/settings/general.php:230 -msgid "Time Format" -msgstr "" - -#: inc/admin/settings/general.php:231 -msgid "Select a time format." -msgstr "" - -#: inc/admin/settings/pages.php:42 -msgid "Pages Settings" -msgstr "" - -#: inc/admin/settings/pages.php:50 -msgid "User Management Page" -msgstr "" - -#: inc/admin/settings/pages.php:51 -msgid "" -"This is page use User Management Page using for show content of management " -"page such as profile, my properties" -msgstr "" - -#: inc/admin/settings/pages.php:57 -msgid "Dashboard Logo" -msgstr "" - -#: inc/admin/settings/pages.php:58 -msgid "Upload a logo for user dashboard page." -msgstr "" - -#: inc/admin/settings/pages.php:74 -msgid "My Account Page" -msgstr "" - -#: inc/admin/settings/pages.php:75 -msgid "This is page used for login and register an account, or reset password." -msgstr "" - -#: inc/admin/settings/pages.php:81 -msgid "Terms and Conditions Page" -msgstr "" - -#: inc/admin/settings/pages.php:82 -msgid "This is page used for terms and conditions." -msgstr "" - -#: inc/admin/settings/pages.php:88 -msgid "Dashboard Settings" -msgstr "" - -#: inc/admin/settings/pages.php:92 -msgid "Settings for User Management Dashboard." -msgstr "" - -#: inc/admin/settings/pages.php:97 -msgid "Show Profile" -msgstr "" - -#: inc/admin/settings/pages.php:98 -msgid "Show Profile menu page." -msgstr "" - -#: inc/admin/settings/pages.php:108 -msgid "Show Agent Profile" -msgstr "" - -#: inc/admin/settings/pages.php:109 -msgid "Show Agent Profile menu page." -msgstr "" - -#: inc/admin/settings/pages.php:119 -msgid "Show Agency Profile" -msgstr "" - -#: inc/admin/settings/pages.php:120 -msgid "Show Agency Profile menu page." -msgstr "" - -#: inc/admin/settings/pages.php:130 -msgid "Show Favorite" -msgstr "" - -#: inc/admin/settings/pages.php:131 -msgid "Show Favorite menu page." -msgstr "" - -#: inc/admin/settings/pages.php:141 -msgid "Show Reviews" -msgstr "" - -#: inc/admin/settings/pages.php:142 -msgid "Show Reviews menu page." -msgstr "" - -#: inc/admin/settings/pages.php:152 -msgid "Enable Message Database" -msgstr "" - -#: inc/admin/settings/pages.php:153 -msgid "" -"Allow User send message Contact/Equire via email and saved into database to " -"exchange theirs message direct in User Message Management" -msgstr "" - -#: inc/admin/settings/pages.php:163 -msgid "Show Submission" -msgstr "" - -#: inc/admin/settings/pages.php:164 -msgid "Show Submission menu page." -msgstr "" - -#: inc/admin/settings/pages.php:174 -msgid "Show Properties" -msgstr "" - -#: inc/admin/settings/pages.php:175 -msgid "Show My Properties menu page." -msgstr "" - -#: inc/admin/settings/pages.php:185 -msgid "Show Saved Search" -msgstr "" - -#: inc/admin/settings/pages.php:186 -msgid "Show Saved Search menu page." -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: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/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/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!" -msgstr "" - -#: inc/api/v1/property.php:233 -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 "" - -#: inc/api/v1/property.php:554 -msgid "Min area" -msgstr "" - -#: inc/api/v1/property.php:562 -msgid "Max area" -msgstr "" - -#: inc/api/v1/property.php:570 -msgid "Search text" -msgstr "" - -#: inc/api/v1/property.php:578 -msgid "Location text" -msgstr "" - -#: inc/api/v1/property.php:586 -msgid "Geo long" -msgstr "" - -#: inc/api/v1/property.php:594 -msgid "Geo lat" -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 "" - -#: 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." +#: inc/vendors/cmb2-plugins/uploader/uploader.php:139 +msgid "Allow upload file have size < %s MB and maximum number of files: %s" msgstr "" #: inc/vendors/elementor/class-opalestate-elementor-extended.php:78 @@ -6256,11 +5743,6 @@ msgstr "" 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 "" @@ -6288,6 +5770,11 @@ msgstr "" msgid "Dots" msgstr "" +#: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:212 +#: templates/user-search/content-savedsearch.php:12 +msgid "View" +msgstr "" + #: inc/vendors/elementor/class-opalestate-elementor-widget-base.php:223 msgid "Carousel Additional Options" msgstr "" @@ -6355,333 +5842,6 @@ msgstr "" 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 -#: inc/vendors/cmb2-plugins/custom-fields/user/user.php:38 -msgid "As an author, you can add other users to your agency." -msgstr "" - -#: templates/user/agency/agency-team.php:34 -#: inc/vendors/cmb2-plugins/custom-fields/user/user.php:40 -msgid "" -"Add someone to your agency, please enter extractly username in below input:" -msgstr "" - -#: templates/user/agency/agency-team.php:38 -msgid "Processing" -msgstr "" - -#: templates/user/agency/agency-team.php:39 -msgid "Add" -msgstr "" - -#: templates/user/agency/agency-team.php:48 -msgid "Users in your team" -msgstr "" - -#: templates/user/agency/agency-team.php:49 -msgid "Action" -msgstr "" - -#: templates/user/agency/profile-agency.php:23 -msgid "Edit Agency Profile" -msgstr "" - -#: templates/user/agent/profile-agent.php:4 -msgid "Edit Agent Profile" -msgstr "" - -#: templates/user/agent/profile-agent.php:20 -msgid "Agent edit profile form is not avariable" -msgstr "" - -#: templates/user/social-login/facebook-button.php:20 -msgid "Connect with Facebook" -msgstr "" - -#: templates/user/social-login/google-button.php:20 -msgid "Connect with Google" -msgstr "" - -#: inc/admin/views/addons/list.php:2 -msgid "Opal Estate Add-ons" -msgstr "" - -#: inc/admin/views/addons/list.php:4 -msgid "The following Add-ons extend the functionality of Opal Estate." -msgstr "" - -#: inc/admin/views/addons/list.php:345 -msgid "" -"There was an error retrieving the Opalestate Add-ons list from the server. " -"Please try again later." -msgstr "" - -#: inc/vendors/cmb2-plugins/uploader/uploader.php:129 -msgid "Upload" -msgstr "" - -#: 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 msgid "Block: Account Button" msgstr "" @@ -6731,7 +5891,6 @@ msgid "Menu" msgstr "" #: inc/vendors/elementor/widgets/opalestate-account-button.php:201 -#, php-format msgid "" "Go to the Menus screen to manage your " "menus." @@ -6748,8 +5907,8 @@ 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 +#: inc/vendors/elementor/widgets/opalestate-searchbox.php:231 +#: inc/vendors/elementor/widgets/opalestate-searchbox.php:350 msgid "Normal" msgstr "" @@ -6776,15 +5935,26 @@ 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 +#: inc/vendors/elementor/widgets/opalestate-searchbox.php:260 +#: inc/vendors/elementor/widgets/opalestate-searchbox.php:391 msgid "Hover" msgstr "" +#: inc/vendors/elementor/widgets/opalestate-account-button.php:475 +#: templates/user-management.php:44 +msgid "Avatar image" +msgstr "" + #: inc/vendors/elementor/widgets/opalestate-account-button.php:503 msgid "Sign in" msgstr "" +#: inc/vendors/elementor/widgets/opalestate-account-button.php:506 +#: 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 +msgid "Register" +msgstr "" + #: inc/vendors/elementor/widgets/opalestate-account-button.php:506 msgid "Create an Account" msgstr "" @@ -6793,6 +5963,39 @@ msgstr "" msgid "Username or email" msgstr "" +#: inc/vendors/elementor/widgets/opalestate-account-button.php:514 +#: templates/user/register-form.php:44 +msgid "Username" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-account-button.php:518 +#: inc/vendors/elementor/widgets/opalestate-account-button.php:519 +#: templates/user/login-form.php:34 templates/user/register-form.php:58 +msgid "Password" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-account-button.php:525 +#: templates/user/login-form.php:42 +msgid "Remember me" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-account-button.php:533 +#: inc/vendors/elementor/widgets/opalestate-account-button.php:534 +#: templates/messages/enquiry-form.php:13 +#: templates/parts/property-loop-price.php:15 +#: 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 +msgid "Login" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-account-button.php:544 +#: templates/user/login-form.php:52 +msgid "Lost your password?" +msgstr "" + #: inc/vendors/elementor/widgets/opalestate-agency-collection.php:54 msgid "Block: Agencies Collection" msgstr "" @@ -6862,15 +6065,6 @@ msgstr "" 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 @@ -7043,7 +6237,7 @@ msgid "Search: Form Builder" msgstr "" #: inc/vendors/elementor/widgets/opalestate-form-builder.php:80 -msgid "Agency/Agent Tab Form Search" +msgid "Form Builder" msgstr "" #: inc/vendors/elementor/widgets/opalestate-form-builder.php:95 @@ -7068,8 +6262,8 @@ 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." +"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 @@ -7154,8 +6348,8 @@ 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." +"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 @@ -7206,25 +6400,68 @@ 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." +"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 +#: inc/vendors/elementor/widgets/opalestate-searchbox.php:107 +#: inc/widgets/search-properties.php:86 +msgid "Disable Labels" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-searchbox.php:116 +#: inc/widgets/search-properties.php:95 +msgid "Disable Search button" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-searchbox.php:124 +msgid "Display Category select" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-searchbox.php:136 +#: inc/widgets/search-properties.php:104 +msgid "Display Country select" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-searchbox.php:148 +#: inc/widgets/search-properties.php:113 +msgid "Display State select" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-searchbox.php:159 +#: inc/widgets/search-properties.php:122 +msgid "Display City select" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-searchbox.php:170 +#: inc/widgets/search-properties.php:131 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 +#: inc/vendors/elementor/widgets/opalestate-searchbox.php:179 +#: inc/widgets/search-properties.php:140 +msgid "Information number fields" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-searchbox.php:191 +msgid "Range Unit" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-searchbox.php:207 +msgid "Max Range" +msgstr "" + +#: inc/vendors/elementor/widgets/opalestate-searchbox.php:305 +#: inc/vendors/elementor/widgets/opalestate-searchbox.php:369 +#: inc/vendors/elementor/widgets/opalestate-searchbox.php:410 msgid "Background color" msgstr "" -#: inc/vendors/elementor/widgets/opalestate-searchbox.php:265 +#: inc/vendors/elementor/widgets/opalestate-searchbox.php:317 msgid "Border color" msgstr "" -#: inc/vendors/elementor/widgets/opalestate-searchbox.php:289 +#: inc/vendors/elementor/widgets/opalestate-searchbox.php:340 msgid "Button" msgstr "" @@ -7232,52 +6469,1445 @@ msgstr "" msgid "Block: Split Maps Property Search" msgstr "" -#: inc/vendors/cmb2-plugins/custom-fields/map/map.php:46 -msgid "Map Address" +#: inc/vendors/opalmembership/free-package.php:22 +msgid "Free Submission" msgstr "" -#: inc/vendors/cmb2-plugins/custom-fields/map/map.php:54 -msgid "Latitude" +#: inc/vendors/opalmembership/free-package.php:29 +msgid "Enable Free Submission" msgstr "" -#: inc/vendors/cmb2-plugins/custom-fields/map/map.php:64 -msgid "Longitude" +#: inc/vendors/opalmembership/free-package.php:30 +msgid "Allow set automatic a free package." msgstr "" -#: inc/vendors/cmb2-plugins/custom-fields/map/map.php:73 +#: 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 "" -"You need to register Google API " -"Key, then put the key in plugin setting." +"Check if set limited listings. Default: Unlimited listings. Notice: Enter " +"Number Of Properties when set limited listings." msgstr "" -#: inc/vendors/cmb2-plugins/custom-fields/user/user.php:45 -msgid "add" +#: inc/vendors/opalmembership/membership.php:224 +#: inc/vendors/opalmembership/membership.php:647 +msgid "Number Of Properties" 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/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 "" -#. Name of the plugin +#: 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:571 +#: inc/vendors/opalmembership/membership.php:572 +#: templates/parts/membership-pricing-info.php:14 +#: templates/parts/membership-pricing-info.php:23 +msgid "Unlimited" +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:93 +#: inc/vendors/social-login/class-opalestate-social-login.php:130 +msgid "Redirect URL: %s" +msgstr "" + +#: inc/vendors/social-login/class-opalestate-social-login.php:94 +#: inc/vendors/social-login/class-opalestate-social-login.php:131 +msgid "You need to add this URL when you create API keys." +msgstr "" + +#: inc/vendors/social-login/class-opalestate-social-login.php:107 +#: inc/vendors/social-login/class-opalestate-social-login.php:108 +msgid "Enable Facebook login" +msgstr "" + +#: inc/vendors/social-login/class-opalestate-social-login.php:118 +msgid "Facebook Application ID" +msgstr "" + +#: inc/vendors/social-login/class-opalestate-social-login.php:119 +msgid "Facebook Application ID is required for Facebook login." +msgstr "" + +#: inc/vendors/social-login/class-opalestate-social-login.php:124 +msgid "Facebook Secret" +msgstr "" + +#: inc/vendors/social-login/class-opalestate-social-login.php:125 +msgid "Facebook Secret is required for Facebook login." +msgstr "" + +#: 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:71 +#: 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 "" + +#: 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 "" + +#: 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 "" + +#: 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 "" + +#: inc/widgets/search-properties.php:23 +msgid "Estate: Search Properties" +msgstr "" + +#: inc/widgets/search-properties.php:25 +msgid "Search Properties widget." +msgstr "" + +#: 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 "" + +#: opal-estate-pro.php:157 +msgid "Cheatin’ huh?" +msgstr "" + +#: templates/archive-opalestate_agency.php:12 +msgid "Find A Local Real Estate Agencies" +msgstr "" + +#: templates/archive-opalestate_agency.php:13 +msgid "" +"Reality Agencies are local expert who can get you better results for lower " +"fees" +msgstr "" + +#: templates/archive-opalestate_agency.php:38 +#: templates/elementor-templates/opalestate-agency-collection.php:35 +msgid "Found %s Agency" +msgstr "" + +#: templates/archive-opalestate_agent.php:11 +msgid "Find The Best Real Estate Agent For Your" +msgstr "" + +#: templates/archive-opalestate_agent.php:12 +msgid "" +"Browser home sales, rating and review to find the best agent to sell or " +"lease your home" +msgstr "" + +#: templates/archive-opalestate_agent.php:37 +#: templates/elementor-templates/opalestate-agent-collection.php:37 +#: templates/shortcodes/search-agents.php:15 +msgid "Found %s Agents" +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:20 templates/content-agency-list.php:28 +#: templates/content-agency-list.php:29 templates/content-agent-grid-v2.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/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-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-single-agency.php:26 +msgid "Listing" +msgstr "" + +#: templates/content-single-agency.php:50 templates/content-single-agent.php:62 +#. translators: %s: Name of current post +msgid "Continue reading %s" +msgstr "" + +#: templates/content-single-agency.php:71 +msgid "Head Agency:" +msgstr "" + +#: templates/content-single-agency.php:76 templates/content-single-agent.php:88 +msgid "Location:" +msgstr "" + +#: templates/content-single-agency.php:142 +msgid "Contact Us" +msgstr "" + +#: templates/content-single-agency.php:143 +msgid "Hi %s. I saw your profile and wanted to see if you could help me." +msgstr "" + +#: templates/content-single-agent.php:58 +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 "" + +#: templates/content-single-agent.php:83 +msgid "Address:" +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" +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: " +msgstr "" + +#: 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 +#. translators: %s: property date +msgid "Posted: %s" +msgstr "" + +#: templates/content-single-property-v2.php:74 +msgid "Attachment" +msgstr "" + +#: templates/content-single-property-v2.php:145 +msgid "Property Attachments" +msgstr "" + +#: 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 "" + +#: templates/content-single-property-v5.php:24 +msgid "Scores" +msgstr "" + +#: templates/content-single-property-v5.php:27 +msgid "Statistics" +msgstr "" + +#: 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/fullwidth-page.php:33 +msgid "Page" +msgstr "" + +#: templates/messages/contact-form.php:13 +msgid "Contact Me" +msgstr "" + +#: templates/messages/contact-form.php:37 +#: templates/messages/enquiry-form.php:39 +#: templates/messages/enquiry-form.php:55 +#: 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:40 +#: templates/messages/enquiry-form.php:56 +#: templates/user/share-search-form.php:50 +msgid "Send message" +msgstr "" + +#: templates/messages/enquiry-form.php:11 +msgid "You need to login to contact." +msgstr "" + +#: templates/messages/enquiry-form.php:22 +msgid "Hi, I am interested in %s (Property ID: %s)" +msgstr "" + +#: templates/messages/enquiry-form.php:23 +msgid "Enquire about property" +msgstr "" + +#: templates/messages/request-reviewing-form.php:10 +#: templates/messages/request-reviewing-form.php:11 +msgid "Send now" +msgstr "" + +#: templates/parts/archive-simple-bars.php:6 +#: templates/shortcodes/ajax-map-search-result.php:22 +#: templates/shortcodes/search-properties-result.php:28 +msgid "Found %s Properties" +msgstr "" + +#: 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:21 +#: templates/parts/membership-pricing-info.php:23 +msgid " Featured" +msgstr "" + +#: templates/parts/membership-warning.php:3 +msgid "" +"Your package has 0 listings left, you can't add any more until you upgrade " +"your plan" +msgstr "" + +#: templates/parts/membership-warning.php:4 +msgid "Click this link to see plans" +msgstr "" + +#: templates/parts/mortgage-calculator.php:105 +msgid "Mortgage Payment Calculator" +msgstr "" + +#: templates/parts/mortgage-calculator.php:126 +msgid "Your payment" +msgstr "" + +#: templates/parts/mortgage-calculator.php:130 +msgid "month" +msgstr "" + +#: templates/parts/mortgage-calculator.php:133 +msgid "Loan Amount" +msgstr "" + +#: templates/parts/mortgage-calculator.php:140 +msgid "Your price" +msgstr "" + +#: templates/parts/mortgage-calculator.php:141 +msgid "Your deposit" +msgstr "" + +#: templates/parts/mortgage-calculator.php:142 +msgid "Your interest" +msgstr "" + +#: templates/parts/mortgage-calculator.php:158 +msgid "Deposit" +msgstr "" + +#: templates/parts/mortgage-calculator.php:164 +msgid "Annual Interest" +msgstr "" + +#: templates/parts/mortgage-calculator.php:170 +msgid "Years" +msgstr "" + +#: templates/parts/mortgage-calculator.php:175 +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/pagination.php:12 templates/user/messages.php:45 +msgid "«" +msgstr "" + +#: templates/parts/pagination.php:13 templates/user/messages.php:46 +msgid "»" +msgstr "" + +#: templates/parts/property-categories.php:7 +msgid "Categories:" +msgstr "" + +#: templates/parts/property-loop-price.php:14 +msgid "You need to login to see the price." +msgstr "" + +#: templates/parts/property-loop-price.php:25 +msgid "Call to Price" +msgstr "" + +#: templates/parts/property-loop-price.php:44 +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.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 +msgid "Ratings & Reviews" +msgstr "" + +#: templates/rating/opalestate-ratings.php:82 +msgid "star" +msgstr "" + +#: templates/rating/opalestate-ratings.php:109 +msgid "Overall rating" +msgstr "" + +#: templates/rating/opalestate-ratings.php:135 +msgid "based on all ratings" +msgstr "" + +#: templates/rating/opalestate-ratings.php:210 +msgid "There are no reviews yet." +msgstr "" + +#: templates/rating/opalestate-ratings.php:233 +#. translators: %s is property title +msgid "Add a review" +msgstr "" + +#: templates/rating/opalestate-ratings.php:233 +msgid "Be the first to review “%s”" +msgstr "" + +#: templates/rating/opalestate-ratings.php:235 +#. translators: %s is property title +msgid "Leave a Reply to %s" +msgstr "" + +#: templates/rating/opalestate-ratings.php:245 +msgid "Submit" +msgstr "" + +#: templates/rating/opalestate-ratings.php:254 +#: templates/rating/opalestate-ratings.php:266 +msgid "Rate…" +msgstr "" + +#: templates/rating/opalestate-ratings.php:255 +#: templates/rating/opalestate-ratings.php:267 +msgid "Perfect" +msgstr "" + +#: templates/rating/opalestate-ratings.php:256 +#: templates/rating/opalestate-ratings.php:268 +msgid "Good" +msgstr "" + +#: templates/rating/opalestate-ratings.php:257 +#: templates/rating/opalestate-ratings.php:269 +msgid "Average" +msgstr "" + +#: templates/rating/opalestate-ratings.php:258 +#: templates/rating/opalestate-ratings.php:270 +msgid "Not that bad" +msgstr "" + +#: templates/rating/opalestate-ratings.php:259 +#: templates/rating/opalestate-ratings.php:271 +msgid "Very poor" +msgstr "" + +#: templates/rating/opalestate-ratings.php:265 +msgid "Your rating" +msgstr "" + +#: templates/rating/opalestate-ratings.php:275 +msgid "Your review" +msgstr "" + +#: templates/rating/opalestate-ratings.php:283 +msgid "Your review already exists!" +msgstr "" + +#: templates/rating/opalestate-ratings.php:286 +msgid "You cannot write review on your own post." +msgstr "" + +#: templates/rating/opalestate-ratings.php:290 +msgid "You must be logged in to review." +msgstr "" + +#: templates/rating/opalestate-ratings.php:291 +msgid "Click here to login" +msgstr "" + +#: templates/rating/review-meta.php:14 +msgid "Your review is awaiting approval" +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:13 +msgid "Max Price" +msgstr "" + +#: templates/search-box/fields/radius.php:14 +msgid "Radius:" +msgstr "" + +#: templates/search-box/fields/search-city-text.php:26 +msgid "Type City or Area" +msgstr "" + +#: templates/search-box/fields/search-city-text.php:42 +msgid "Show with in" +msgstr "" + +#: templates/search-box/fields/search-city-text.php:44 +msgid "Radius" +msgstr "" + +#: templates/search-box/fields/search-city-text.php:45 +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/shortcodes/ajax-map-search.php:35 +msgid "More" +msgstr "" + +#: templates/shortcodes/ajax-map-search.php:44 +msgid "Any" +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:40 +#: templates/submission/submission-form.php:41 +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/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/content.php:6 +#. translators: %s: Name of current post +msgid "Continue reading %s " +msgstr "" + +#: templates/single-property/floor-plans.php:22 +#: templates/single-property/floor-plans.php:34 +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 +msgid "Properties by %s" +msgstr "" + +#: templates/single-property/sharebox.php:23 +msgid "Share this:" +msgstr "" + +#: templates/single-property/sharebox.php:28 +msgid "Share on facebook" +msgstr "" + +#: templates/single-property/sharebox.php:35 +msgid "Share on Twitter" +msgstr "" + +#: templates/single-property/sharebox.php:42 +msgid "Share on LinkedIn" +msgstr "" + +#: templates/single-property/sharebox.php:49 +msgid "Share on Tumblr" +msgstr "" + +#: templates/single-property/sharebox.php:57 +msgid "Share on Google plus" +msgstr "" + +#: templates/single-property/sharebox.php:65 +msgid "Share on Pinterest" +msgstr "" + +#: templates/single-property/sharebox.php:72 +msgid "Email to a Friend" +msgstr "" + +#: 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 +#: templates/single-property/walkscore.php:22 +msgid "Walk Scores" +msgstr "" + +#: templates/single-property/walkscore.php:25 +#: templates/single-property/walkscore.php:38 +msgid "more details here" +msgstr "" + +#: templates/single-property/walkscore.php:35 +msgid "Transit Scores" +msgstr "" + +#: templates/single-property/walkscore.php:48 +msgid "Bikeable Scores" +msgstr "" + +#: templates/single-property/walkscore.php:51 +msgid "More details here" +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 +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 "" + +#: 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/submission/require-login.php:9 +#: templates/submission/submission-completed.php:9 +msgid "Login Now" +msgstr "" + +#: templates/submission/submission-form.php:17 +msgid "" +"Adding a property is straight forward, we are broken it down into a few " +"steps." +msgstr "" + +#: templates/submission/submission-form.php:20 +msgid "Edit a property is straight forward, we are broken it down into a few steps." +msgstr "" + +#: templates/user/agency/agency-team.php:38 +msgid "Processing" +msgstr "" + +#: templates/user/agency/agency-team.php:39 +msgid "Add" +msgstr "" + +#: templates/user/agency/agency-team.php:48 +msgid "Users in your team" +msgstr "" + +#: templates/user/agency/agency-team.php:49 +msgid "Action" +msgstr "" + +#: templates/user/agency/profile-agency.php:23 +msgid "Edit Agency Profile" +msgstr "" + +#: templates/user/agency/profile-agency.php:31 +#: templates/user/agent/profile-agent.php:13 templates/user/profile.php:45 +#: templates/user/profile.php:68 +msgid "Save Change" +msgstr "" + +#: templates/user/agent/profile-agent.php:4 +msgid "Edit Agent Profile" +msgstr "" + +#: templates/user/agent/profile-agent.php:20 +msgid "Agent edit profile form is not avariable" +msgstr "" + +#: templates/user/content-property.php:99 +msgid "Set Featured" +msgstr "" + +#: templates/user/content-property.php:115 +msgid "Are you sure you wish to delete?" +msgstr "" + +#: templates/user/content-property.php:116 +msgid "Delete Property" +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: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: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:34 +msgid "User Avatar" +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:58 +msgid "Change Password" +msgstr "" + +#: templates/user/read-messages.php:54 +msgid "Reply" +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 +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/social-login/facebook-button.php:20 +msgid "Connect with Facebook" +msgstr "" + +#: templates/user/social-login/google-button.php:20 +msgid "Connect with Google" +msgstr "" + +#: templates/user-management.php:40 +msgid "Howdy, %s" +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/user-search/content-savedsearch.php:9 +msgid "My Saved Searches" +msgstr "" + +#: templates/user-search/content-savedsearch.php:12 +msgid "Delete" +msgstr "" + +#: templates/user-search/content-savedsearch.php:22 +msgid "Are you sure to delete this?" +msgstr "" + +#: templates/user-search/content-savedsearch.php:37 +msgid "No Item In Saved Searches" +msgstr "" + +#: templates/user-search/content-savedsearch.php:38 +msgid "You have not added any search data." +msgstr "" + +#: templates/user-search/render-form.php:12 +msgid "Save search" +msgstr "" + +#: templates/user-search/render-form.php:21 +msgid "Name this search." +msgstr "" + +#. Plugin Name of the plugin/theme msgid "Opal Estate Pro" msgstr "" -#. Description of the plugin -msgid "" -"Opal Real Estate Plugin is an ideal solution and brilliant choice for you to " -"set up a professional estate website." -msgstr "" - -#. URI of the plugin +#. Plugin URI of the plugin/theme msgid "https://wpdocs.gitbook.io/opal-estate/" msgstr "" -#. Author of the plugin +#. Description of the plugin/theme +msgid "" +"Opal Real Estate Plugin is an ideal solution and brilliant choice for you " +"to set up a professional estate website." +msgstr "" + +#. Author of the plugin/theme msgid "WPOPAL" msgstr "" -#. Author URI of the plugin +#. Author URI of the plugin/theme msgid "http://www.wpopal.com" msgstr "" + +#: inc/admin/property/class-property.php:147 +msgctxt "expired property" +msgid "---" +msgstr "" + +#: inc/admin/property/class-property.php:197 +msgctxt "post status" +msgid "Expired" +msgstr "" + +#: inc/admin/views/addons/list.php:39 +msgctxt "Plugin installer group title" +msgid "Performance" +msgstr "" + +#: inc/admin/views/addons/list.php:40 +msgctxt "Plugin installer group title" +msgid "Social" +msgstr "" + +#: inc/admin/views/addons/list.php:41 +msgctxt "Plugin installer group title" +msgid "Tools" +msgstr "" + +#: inc/admin/views/addons/list.php:116 +msgctxt "plugin" +msgid "Cannot Install" +msgstr "" + +#: inc/admin/views/addons/list.php:138 +msgctxt "plugin" +msgid "Cannot Update" +msgstr "" + +#: inc/admin/views/addons/list.php:149 +msgctxt "plugin" +msgid "Active" +msgstr "" + +#: inc/admin/views/addons/list.php:154 +#. translators: %s: plugin name +msgctxt "plugin" +msgid "Activate %s" +msgstr "" + +#: inc/admin/views/addons/list.php:167 +#. translators: %s: plugin name +msgctxt "plugin" +msgid "Network Activate %s" +msgstr "" + +#: inc/admin/views/addons/list.php:180 +msgctxt "plugin" +msgid "Installed" +msgstr "" + +#: inc/admin/views/addons/list.php:316 +msgctxt "Active plugin installations" +msgid "%s+ Million" +msgid_plural "%s+ Million" +msgstr[0] "" +msgstr[1] "" + +#: inc/admin/views/addons/list.php:320 +msgctxt "Active plugin installations" +msgid "Less Than 10" +msgstr "" + +#: inc/agency/class-opalestate-agency-posttype.php:69 +msgctxt "agency slug" +msgid "agency" +msgstr "" + +#: inc/agency/class-opalestate-agency-posttype.php:97 +msgctxt "agency category slug" +msgid "agency-category" +msgstr "" + +#: inc/agent/class-opalestate-agent-posttype.php:62 +msgctxt "agent slug" +msgid "agent" +msgstr "" + +#: inc/agent/class-opalestate-agent-posttype.php:97 +msgctxt "agent level slug" +msgid "agent-level" +msgstr "" + +#: inc/mixes-functions.php:1101 +msgctxt "areasize info" +msgid "%1$s %2$s" +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 "" + +#: 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/taxonomies/class-taxomony-amenities.php:61 +msgctxt "slug" +msgid "amenity" +msgstr "" + +#: inc/taxonomies/class-taxonomy-categories.php:54 +msgctxt "slug" +msgid "property-category" +msgstr "" + +#: inc/template-functions.php:1051 templates/rating/opalestate-ratings.php:176 +#. translators: %s number of reviews +msgctxt "review numbers" +msgid "%s review" +msgid_plural "%s reviews" +msgstr[0] "" +msgstr[1] "" + +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_JS.php:200 +msgctxt "Valid formatDate string for jquery-ui datepicker" +msgid "mm/dd/yy" +msgstr "" + +#: inc/vendors/cmb2-plugins/cmb2/includes/CMB2_JS.php:220 +msgctxt "" +"Valid formatting string, as per " +"http://trentrichardson.com/examples/timepicker/" +msgid "hh:mm TT" +msgstr "" + +#: templates/elementor-templates/opalestate-category-list.php:50 +#: templates/elementor-templates/opalestate-city-list.php:50 +#. translators: 1: number of properties +msgctxt "count properties" +msgid "%1$s Property" +msgid_plural "%1$s Properties" +msgstr[0] "" +msgstr[1] "" + +#: templates/rating/opalestate-ratings.php:121 +#. translators: %s number of ratings +msgctxt "rating numbers" +msgid "%s rating" +msgid_plural "%s ratings" +msgstr[0] "" +msgstr[1] "" + +#: templates/search-box/fields/price-input.php:9 +msgctxt "price input separator" +msgid "-" +msgstr "" \ No newline at end of file diff --git a/opal-estate-pro.php b/opal-estate-pro.php index cf93ba83..e432206a 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.6.7 + * Version: 1.6.8 * Author: WPOPAL * Author URI: http://www.wpopal.com * Requires at least: 4.9 @@ -154,7 +154,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.6.7' ); + _doing_it_wrong( __FUNCTION__, esc_html__( 'Cheatin’ huh?', 'opalestate-pro' ), '1.6.8' ); } /** @@ -163,7 +163,7 @@ if ( ! class_exists( 'OpalEstate' ) ) { public function setup_constants() { // Plugin version if ( ! defined( 'OPALESTATE_VERSION' ) ) { - define( 'OPALESTATE_VERSION', '1.6.7' ); + define( 'OPALESTATE_VERSION', '1.6.8' ); } // Plugin Folder Path diff --git a/readme.txt b/readme.txt index f68c8d6f..100e3d94 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.6.7 +Stable tag: 1.6.8 License: GPLv3 License URI: http://www.gnu.org/licenses/gpl-3.0.html @@ -150,6 +150,9 @@ This section describes how to install the plugin and get it working. * System tickets support 24/7 available : [free support](https://themelexus.ticksy.com/ "Visit the Plugin support Page") == Changelog == += 1.6.8 - 2020-08-20 = +* Fixes - languages + = 1.6.7 - 2020-08-11 = * Fixes - Carousel buttons for gallery in single page diff --git a/templates/parts/membership-warning.php b/templates/parts/membership-warning.php index d1d9a139..e7b38526 100755 --- a/templates/parts/membership-warning.php +++ b/templates/parts/membership-warning.php @@ -1,6 +1,6 @@
-

-

+

+

diff --git a/templates/parts/pagination.php b/templates/parts/pagination.php index bed4d891..d09bf0c6 100755 --- a/templates/parts/pagination.php +++ b/templates/parts/pagination.php @@ -9,8 +9,8 @@ if ( $wp_query->max_num_pages <= 1 ) { } $args = apply_filters( 'opalestate_pagination_args', [ - 'prev_text' => __( '«' ), - 'next_text' => __( '»' ), + 'prev_text' => __( '«', 'opalestate-pro' ), + 'next_text' => __( '»', 'opalestate-pro' ), 'type' => 'list', ] ); diff --git a/templates/single-property/sharebox.php b/templates/single-property/sharebox.php index 3839042a..aebb8b57 100755 --- a/templates/single-property/sharebox.php +++ b/templates/single-property/sharebox.php @@ -20,7 +20,7 @@ $args = array( 'position' => 'top', 'animation' => 'true' ); ?>
-
+