diff --git a/classes/Tools/Storage/StorageTool.php b/classes/Tools/Storage/StorageTool.php index cc5b8d63..db941a09 100755 --- a/classes/Tools/Storage/StorageTool.php +++ b/classes/Tools/Storage/StorageTool.php @@ -180,7 +180,34 @@ public function __construct( $toolName, $toolInfo, $toolManager ) } } - + + add_filter( + 'do_parse_request', + function ( $do, \WP $wp ) { + + if ( strpos( $_SERVER['REQUEST_URI'], '/__mcloud/attachment' ) === 0 ) { + $postId = sanitize_text_field( arrayPath( $_REQUEST, 'pid', null ) ); + $nonce = sanitize_text_field( arrayPath( $_REQUEST, 'nonce', null ) ); + if ( empty($postId) || empty($nonce) ) { + return $do; + } + if ( !wp_verify_nonce( $nonce, 'mcloud_view_attachment_' . $postId ) ) { + return $do; + } + $url = wp_get_attachment_url( $postId ); + + if ( !empty($url) ) { + wp_redirect( $url, 302 ); + exit; + } + + } + + return $do; + }, + 100, + 2 + ); } //endregion @@ -460,6 +487,18 @@ function ( $filename ) { } return $sizes; } ); + add_filter( + 'wp_video_shortcode', + [ $this, 'filterVideoShortcode' ], + PHP_INT_MAX, + 5 + ); + add_filter( + 'wp_audio_shortcode', + [ $this, 'filterAudioShortcode' ], + PHP_INT_MAX, + 5 + ); $this->hookupUI(); } else { @@ -1396,9 +1435,23 @@ public function prepareAttachmentForJS( $response, $attachment, $meta ) if ( empty($meta) || !isset( $meta['s3'] ) ) { $meta = get_post_meta( $attachment->ID, 'ilab_s3_info', true ); } + if ( isset( $response['filename'] ) && strpos( $response['filename'], '?' ) !== false ) { + $response['filename'] = preg_replace( '/(\\?.*)/', '', $response['filename'] ); + } if ( isset( $meta['s3'] ) ) { $response['s3'] = $meta['s3']; + if ( isset( $response['type'] ) && is_admin() ) { + if ( $this->client()->usesSignedURLs( $response['type'] ) ) { + + if ( empty($_REQUEST['post_id']) ) { + $response['url'] = home_url( '/__mcloud/attachment?pid=' . $attachment->ID . '&nonce=' . wp_create_nonce( 'mcloud_view_attachment_' . $attachment->ID ) ); + } else { + $response['url'] = $this->client()->url( $meta['s3']['key'] ); + } + + } + } if ( !isset( $response['s3']['privacy'] ) ) { $response['s3']['privacy'] = StorageGlobals::privacy( $attachment->post_mime_type ); } @@ -1673,15 +1726,21 @@ private function importStatelessMetadata( $post_id, $meta, $statelessData ) */ private function importOffloadMetadata( $post_id, $meta, $offloadS3Data ) { - $provider = arrayPath( $offloadS3Data, 'provider', null ); + $provider = arrayPath( $offloadS3Data, 'provider', 's3' ); $bucket = arrayPath( $offloadS3Data, 'bucket', null ); $region = arrayPath( $offloadS3Data, 'region', null ); $key = arrayPath( $offloadS3Data, 'key', null ); - if ( empty($provider) || empty($bucket) || empty($key) || !in_array( $provider, [ 'aws', 'do', 'gcp' ] ) ) { + if ( empty($provider) || empty($bucket) || empty($key) || !in_array( $provider, [ + 's3', + 'aws', + 'do', + 'gcp' + ] ) ) { return null; } $providerMap = [ 'aws' => 's3', + 's3' => 's3', 'do' => 'do', 'gcp' => 'google', ]; @@ -2150,6 +2209,132 @@ public function filterContent( $content ) return $content; } + /** + * @param string $output Video shortcode HTML output. + * @param array $atts Array of video shortcode attributes. + * @param string $video Video file. + * @param int $post_id Post ID. + * @param string $library Media library used for the video shortcode. + * @return string + * @throws StorageException + */ + public function filterVideoShortcode( + $output, + $atts, + $video, + $post_id, + $library + ) + { + + if ( isset( $atts['src'] ) ) { + $default_types = wp_get_video_extensions(); + $postId = null; + foreach ( $default_types as $type ) { + + if ( !empty($atts[$type]) ) { + $url = $atts[$type]; + if ( strpos( $url, '?' ) !== false ) { + $url = preg_replace( '/(\\?.*)/', '', $url ); + } + $baseFile = ltrim( parse_url( $url, PHP_URL_PATH ), '/' ); + if ( empty($baseFile) ) { + return $output; + } + global $wpdb ; + $query = $wpdb->prepare( "select post_id from {$wpdb->postmeta} where meta_key='_wp_attached_file' and meta_value = %s", $baseFile ); + $postId = $wpdb->get_var( $query ); + if ( empty($postId) ) { + return $output; + } + break; + } + + } + if ( empty($postId) ) { + return $output; + } + $post = get_post( $postId ); + $meta = wp_get_attachment_metadata( $post->ID ); + $url = $this->getAttachmentURL( null, $post->ID ); + + if ( !empty($url) ) { + $mime = arrayPath( $meta, 'mime_type', $post->post_mime_type ); + $insert = ""; + $insert .= "{$post->post_title}"; + if ( preg_match( '/]*)>((?s).*)<\\/video>/m', $output, $matches ) ) { + $output = str_replace( $matches[1], $insert, $output ); + } + } + + } + + return $output; + } + + /** + * @param string $output Audio shortcode HTML output. + * @param array $atts Array of audio shortcode attributes. + * @param string $audio Audio file. + * @param int $post_id Post ID. + * @param string $library Media library used for the audio shortcode. + * @return string + * @throws StorageException + */ + public function filterAudioShortcode( + $output, + $atts, + $audio, + $post_id, + $library + ) + { + + if ( isset( $atts['src'] ) ) { + $default_types = wp_get_audio_extensions(); + $postId = null; + foreach ( $default_types as $type ) { + + if ( !empty($atts[$type]) ) { + $url = $atts[$type]; + if ( strpos( $url, '?' ) !== false ) { + $url = preg_replace( '/(\\?.*)/', '', $url ); + } + $baseFile = ltrim( parse_url( $url, PHP_URL_PATH ), '/' ); + if ( empty($baseFile) ) { + return $output; + } + global $wpdb ; + $query = $wpdb->prepare( "select post_id from {$wpdb->postmeta} where meta_key='_wp_attached_file' and meta_value = %s", $baseFile ); + $postId = $wpdb->get_var( $query ); + if ( empty($postId) ) { + return $output; + } + break; + } + + } + if ( empty($postId) ) { + return $output; + } + $post = get_post( $postId ); + $meta = wp_get_attachment_metadata( $post->ID ); + $url = $this->getAttachmentURL( null, $post->ID ); + + if ( !empty($url) ) { + $mime = arrayPath( $meta, 'mime_type', $post->post_mime_type ); + $insert = ""; + $insert .= "{$post->post_title}"; + if ( preg_match( '/]*)>((?s).*)<\\/audio>/m', $output, $matches ) ) { + $output = str_replace( $matches[1], $insert, $output ); + } + } + + } + + return $output; + } + private function generateSrcSet( $id, $sizeName ) { if ( $this->allSizes === null ) { diff --git a/classes/Utilities/VideoProbe.php b/classes/Utilities/VideoProbe.php index ceddd454..4f6bb5f0 100755 --- a/classes/Utilities/VideoProbe.php +++ b/classes/Utilities/VideoProbe.php @@ -149,6 +149,7 @@ public function probe($file) { 'length_formatted' => $this->timecode(floatval(arrayPath($data,'format/duration'))), 'dataformat' => arrayPath($data, 'format/format_long_name', "unknown"), 'fileformat' => strtolower($extension), + 'mime_type' => 'video/'.strtolower($extension), 'video' => [ 'codec' => arrayPath($videoStream, 'codec_name', null), 'profile' => arrayPath($videoStream, 'profile', null), diff --git a/external/Freemius/assets/css/admin/account.css b/external/Freemius/assets/css/admin/account.css index 3f47f409..24e84f78 100755 --- a/external/Freemius/assets/css/admin/account.css +++ b/external/Freemius/assets/css/admin/account.css @@ -1 +1 @@ -#fs_account .postbox,#fs_account .widefat{max-width:700px}#fs_account h3{font-size:1.3em;padding:12px 15px;margin:0 0 12px 0;line-height:1.4;border-bottom:1px solid #F1F1F1}#fs_account h3 .dashicons{width:26px;height:26px;font-size:1.3em}#fs_account i.dashicons{font-size:1.2em;height:1.2em;width:1.2em}#fs_account .dashicons{vertical-align:middle}#fs_account .fs-header-actions{position:absolute;top:17px;right:15px;font-size:0.9em}#fs_account .fs-header-actions ul{margin:0}#fs_account .fs-header-actions li{float:left}#fs_account .fs-header-actions li form{display:inline-block}#fs_account .fs-header-actions li a{text-decoration:none}#fs_account_details .button-group{float:right}.rtl #fs_account .fs-header-actions{left:15px;right:auto}.fs-key-value-table{width:100%}.fs-key-value-table form{display:inline-block}.fs-key-value-table tr td:first-child{text-align:right}.fs-key-value-table tr td:first-child nobr{font-weight:bold}.fs-key-value-table tr td:first-child form{display:block}.fs-key-value-table tr td.fs-right{text-align:right}.fs-key-value-table tr.fs-odd{background:#ebebeb}.fs-key-value-table td,.fs-key-value-table th{padding:10px}.fs-key-value-table code{line-height:28px}.fs-key-value-table var,.fs-key-value-table code,.fs-key-value-table input[type="text"]{color:#0073AA;font-size:16px;background:none}.fs-key-value-table input[type="text"]{width:100%;font-weight:bold}label.fs-tag{background:#ffba00;color:#fff;display:inline-block;border-radius:3px;padding:5px;font-size:11px;line-height:11px;vertical-align:baseline}label.fs-tag.fs-warn{background:#ffba00}label.fs-tag.fs-success{background:#46b450}label.fs-tag.fs-error{background:#dc3232}#fs_sites .fs-scrollable-table .fs-table-body{max-height:200px;overflow:auto;border:1px solid #e5e5e5}#fs_sites .fs-scrollable-table .fs-table-body>table.widefat{border:none !important}#fs_sites .fs-scrollable-table .fs-main-column{width:100%}#fs_sites .fs-scrollable-table .fs-site-details td:first-of-type{text-align:right;color:grey;width:1px}#fs_sites .fs-scrollable-table .fs-site-details td:last-of-type{text-align:right}#fs_sites .fs-scrollable-table .fs-install-details table tr td{width:1px;white-space:nowrap}#fs_sites .fs-scrollable-table .fs-install-details table tr td:last-of-type{width:auto}#fs_addons h3{border:none;margin-bottom:0;padding:4px 5px}#fs_addons td{vertical-align:middle}#fs_addons thead{white-space:nowrap}#fs_addons td:first-child,#fs_addons th:first-child{text-align:left;font-weight:bold}#fs_addons td:last-child,#fs_addons th:last-child{text-align:right}#fs_addons th{font-weight:bold}#fs_billing_address{width:100%}#fs_billing_address tr td{width:50%;padding:5px}#fs_billing_address tr:first-of-type td{padding-top:0}#fs_billing_address span{font-weight:bold}#fs_billing_address input,#fs_billing_address select{display:block;width:100%;margin-top:5px}#fs_billing_address input::-moz-placeholder,#fs_billing_address select::-moz-placeholder{color:transparent;opacity:1}#fs_billing_address input:-ms-input-placeholder,#fs_billing_address select:-ms-input-placeholder{color:transparent}#fs_billing_address input::-webkit-input-placeholder,#fs_billing_address select::-webkit-input-placeholder{color:transparent}#fs_billing_address input.fs-read-mode,#fs_billing_address select.fs-read-mode{border-color:transparent;color:#777;border-bottom:1px dashed #ccc;padding-left:0;background:none}#fs_billing_address.fs-read-mode td span{display:none}#fs_billing_address.fs-read-mode input,#fs_billing_address.fs-read-mode select{border-color:transparent;color:#777;border-bottom:1px dashed #ccc;padding-left:0;background:none}#fs_billing_address.fs-read-mode input::-moz-placeholder,#fs_billing_address.fs-read-mode select::-moz-placeholder{color:#ccc;opacity:1}#fs_billing_address.fs-read-mode input:-ms-input-placeholder,#fs_billing_address.fs-read-mode select:-ms-input-placeholder{color:#ccc}#fs_billing_address.fs-read-mode input::-webkit-input-placeholder,#fs_billing_address.fs-read-mode select::-webkit-input-placeholder{color:#ccc}#fs_billing_address button{display:block;width:100%} +label.fs-tag,span.fs-tag{background:#ffba00;color:#fff;display:inline-block;border-radius:3px;padding:5px;font-size:11px;line-height:11px;vertical-align:baseline}label.fs-tag.fs-warn,span.fs-tag.fs-warn{background:#ffba00}label.fs-tag.fs-info,span.fs-tag.fs-info{background:#00a0d2}label.fs-tag.fs-success,span.fs-tag.fs-success{background:#46b450}label.fs-tag.fs-error,span.fs-tag.fs-error{background:#dc3232}#fs_account .postbox,#fs_account .widefat{max-width:700px}#fs_account h3{font-size:1.3em;padding:12px 15px;margin:0 0 12px 0;line-height:1.4;border-bottom:1px solid #F1F1F1}#fs_account h3 .dashicons{width:26px;height:26px;font-size:1.3em}#fs_account i.dashicons{font-size:1.2em;height:1.2em;width:1.2em}#fs_account .dashicons{vertical-align:middle}#fs_account .fs-header-actions{position:absolute;top:17px;right:15px;font-size:0.9em}#fs_account .fs-header-actions ul{margin:0}#fs_account .fs-header-actions li{float:left}#fs_account .fs-header-actions li form{display:inline-block}#fs_account .fs-header-actions li a{text-decoration:none}#fs_account_details .button-group{float:right}.rtl #fs_account .fs-header-actions{left:15px;right:auto}.fs-key-value-table{width:100%}.fs-key-value-table form{display:inline-block}.fs-key-value-table tr td:first-child{text-align:right}.fs-key-value-table tr td:first-child nobr{font-weight:bold}.fs-key-value-table tr td:first-child form{display:block}.fs-key-value-table tr td.fs-right{text-align:right}.fs-key-value-table tr.fs-odd{background:#ebebeb}.fs-key-value-table td,.fs-key-value-table th{padding:10px}.fs-key-value-table code{line-height:28px}.fs-key-value-table var,.fs-key-value-table code,.fs-key-value-table input[type="text"]{color:#0073AA;font-size:16px;background:none}.fs-key-value-table input[type="text"]{width:100%;font-weight:bold}.fs-field-beta_program label{margin-left:7px}label.fs-tag{background:#ffba00;color:#fff;display:inline-block;border-radius:3px;padding:5px;font-size:11px;line-height:11px;vertical-align:baseline}label.fs-tag.fs-warn{background:#ffba00}label.fs-tag.fs-success{background:#46b450}label.fs-tag.fs-error{background:#dc3232}#fs_sites .fs-scrollable-table .fs-table-body{max-height:200px;overflow:auto;border:1px solid #e5e5e5}#fs_sites .fs-scrollable-table .fs-table-body>table.widefat{border:none !important}#fs_sites .fs-scrollable-table .fs-main-column{width:100%}#fs_sites .fs-scrollable-table .fs-site-details td:first-of-type{text-align:right;color:grey;width:1px}#fs_sites .fs-scrollable-table .fs-site-details td:last-of-type{text-align:right}#fs_sites .fs-scrollable-table .fs-install-details table tr td{width:1px;white-space:nowrap}#fs_sites .fs-scrollable-table .fs-install-details table tr td:last-of-type{width:auto}#fs_addons h3{border:none;margin-bottom:0;padding:4px 5px}#fs_addons td{vertical-align:middle}#fs_addons thead{white-space:nowrap}#fs_addons td:first-child,#fs_addons th:first-child{text-align:left;font-weight:bold}#fs_addons td:last-child,#fs_addons th:last-child{text-align:right}#fs_addons th{font-weight:bold}#fs_billing_address{width:100%}#fs_billing_address tr td{width:50%;padding:5px}#fs_billing_address tr:first-of-type td{padding-top:0}#fs_billing_address span{font-weight:bold}#fs_billing_address input,#fs_billing_address select{display:block;width:100%;margin-top:5px}#fs_billing_address input::-moz-placeholder,#fs_billing_address select::-moz-placeholder{color:transparent;opacity:1}#fs_billing_address input:-ms-input-placeholder,#fs_billing_address select:-ms-input-placeholder{color:transparent}#fs_billing_address input::-webkit-input-placeholder,#fs_billing_address select::-webkit-input-placeholder{color:transparent}#fs_billing_address input.fs-read-mode,#fs_billing_address select.fs-read-mode{border-color:transparent;color:#777;border-bottom:1px dashed #ccc;padding-left:0;background:none}#fs_billing_address.fs-read-mode td span{display:none}#fs_billing_address.fs-read-mode input,#fs_billing_address.fs-read-mode select{border-color:transparent;color:#777;border-bottom:1px dashed #ccc;padding-left:0;background:none}#fs_billing_address.fs-read-mode input::-moz-placeholder,#fs_billing_address.fs-read-mode select::-moz-placeholder{color:#ccc;opacity:1}#fs_billing_address.fs-read-mode input:-ms-input-placeholder,#fs_billing_address.fs-read-mode select:-ms-input-placeholder{color:#ccc}#fs_billing_address.fs-read-mode input::-webkit-input-placeholder,#fs_billing_address.fs-read-mode select::-webkit-input-placeholder{color:#ccc}#fs_billing_address button{display:block;width:100%} diff --git a/external/Freemius/assets/css/admin/add-ons.css b/external/Freemius/assets/css/admin/add-ons.css index 0c2df5ab..1a41fe12 100755 --- a/external/Freemius/assets/css/admin/add-ons.css +++ b/external/Freemius/assets/css/admin/add-ons.css @@ -1,2 +1,2 @@ -#fs_addons .fs-cards-list{list-style:none}#fs_addons .fs-cards-list .fs-card{float:left;height:152px;width:310px;padding:0;margin:0 0 30px 30px;font-size:14px;list-style:none;border:1px solid #ddd;cursor:pointer;position:relative}#fs_addons .fs-cards-list .fs-card .fs-overlay{position:absolute;left:0;right:0;bottom:0;top:0;z-index:9}#fs_addons .fs-cards-list .fs-card .fs-inner{background-color:#fff;overflow:hidden;height:100%;position:relative}#fs_addons .fs-cards-list .fs-card .fs-inner ul{-moz-transition:all,0.15s;-o-transition:all,0.15s;-ms-transition:all,0.15s;-webkit-transition:all,0.15s;transition:all,0.15s;left:0;right:0;top:0;position:absolute}#fs_addons .fs-cards-list .fs-card .fs-inner li{list-style:none;line-height:18px;padding:0 15px;width:100%;display:block;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-card-banner{padding:0;margin:0;line-height:0;display:block;height:100px;background-repeat:repeat-x;background-size:100% 100%;-moz-transition:all,0.15s;-o-transition:all,0.15s;-ms-transition:all,0.15s;-webkit-transition:all,0.15s;transition:all,0.15s}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-title{margin:10px 0 0 0;height:18px;overflow:hidden;color:#000;white-space:nowrap;text-overflow:ellipsis;font-weight:bold}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-offer{font-size:0.9em}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-description{background-color:#f9f9f9;padding:10px 15px 100px 15px;border-top:1px solid #eee;margin:0 0 10px 0;color:#777}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-tag{position:absolute;top:10px;right:0px;background:greenyellow;display:block;padding:2px 10px;-moz-box-shadow:1px 1px 1px rgba(0,0,0,0.3);-webkit-box-shadow:1px 1px 1px rgba(0,0,0,0.3);box-shadow:1px 1px 1px rgba(0,0,0,0.3);text-transform:uppercase;font-size:0.9em;font-weight:bold}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-cta .button{position:absolute;top:112px;right:10px}@media screen and (min-width: 960px){#fs_addons .fs-cards-list .fs-card:hover .fs-overlay{border:2px solid #29abe1;margin-left:-1px;margin-top:-1px}#fs_addons .fs-cards-list .fs-card:hover .fs-inner ul{top:-100px}#fs_addons .fs-cards-list .fs-card:hover .fs-inner .fs-title,#fs_addons .fs-cards-list .fs-card:hover .fs-inner .fs-offer{color:#29abe1}} -#TB_window,#TB_window iframe{width:772px !important}#plugin-information #section-description h2,#plugin-information #section-description h3,#plugin-information #section-description p,#plugin-information #section-description b,#plugin-information #section-description i,#plugin-information #section-description blockquote,#plugin-information #section-description li,#plugin-information #section-description ul,#plugin-information #section-description ol{clear:none}#plugin-information #section-description .fs-selling-points{padding-bottom:10px;border-bottom:1px solid #ddd}#plugin-information #section-description .fs-selling-points ul{margin:0}#plugin-information #section-description .fs-selling-points ul li{padding:0;list-style:none outside none}#plugin-information #section-description .fs-selling-points ul li i.dashicons{color:#71ae00;font-size:3em;vertical-align:middle;line-height:30px;float:left;margin:0 0 0 -15px}#plugin-information #section-description .fs-selling-points ul li h3{margin:1em 30px !important}#plugin-information #section-description .fs-screenshots:after{content:"";display:table;clear:both}#plugin-information #section-description .fs-screenshots ul{list-style:none;margin:0}#plugin-information #section-description .fs-screenshots ul li{width:225px;height:225px;float:left;margin-bottom:20px;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}#plugin-information #section-description .fs-screenshots ul li a{display:block;width:100%;height:100%;border:1px solid;-moz-box-shadow:1px 1px 1px rgba(0,0,0,0.2);-webkit-box-shadow:1px 1px 1px rgba(0,0,0,0.2);box-shadow:1px 1px 1px rgba(0,0,0,0.2);background-size:cover}#plugin-information #section-description .fs-screenshots ul li.odd{margin-right:20px}#plugin-information .plugin-information-pricing{margin:-16px;border-bottom:1px solid #ddd}#plugin-information .plugin-information-pricing .fs-plan h3{margin-top:0;padding:20px;font-size:16px}#plugin-information .plugin-information-pricing .fs-plan .nav-tab-wrapper{border-bottom:1px solid #ddd}#plugin-information .plugin-information-pricing .fs-plan .nav-tab-wrapper .nav-tab{cursor:pointer;position:relative;padding:0 10px;font-size:0.9em}#plugin-information .plugin-information-pricing .fs-plan .nav-tab-wrapper .nav-tab label{text-transform:uppercase;color:green;background:greenyellow;position:absolute;left:-1px;right:-1px;bottom:100%;border:1px solid darkgreen;padding:2px;text-align:center;font-size:0.9em;line-height:1em}#plugin-information .plugin-information-pricing .fs-plan .nav-tab-wrapper .nav-tab.nav-tab-active{cursor:default;background:#fffeec;border-bottom-color:#fffeec}#plugin-information .plugin-information-pricing .fs-plan.fs-single-cycle h3{background:#fffeec;margin:0;padding-bottom:0;color:#0073aa}#plugin-information .plugin-information-pricing .fs-plan.fs-single-cycle .nav-tab-wrapper,#plugin-information .plugin-information-pricing .fs-plan.fs-single-cycle .fs-billing-frequency{display:none}#plugin-information .plugin-information-pricing .fs-plan .fs-pricing-body{background:#fffeec;padding:20px}#plugin-information .plugin-information-pricing .fs-plan .button{width:100%;text-align:center;font-weight:bold;text-transform:uppercase;font-size:1.1em}#plugin-information .plugin-information-pricing .fs-plan label{white-space:nowrap}#plugin-information .plugin-information-pricing .fs-plan var{font-style:normal}#plugin-information .plugin-information-pricing .fs-plan .fs-billing-frequency,#plugin-information .plugin-information-pricing .fs-plan .fs-annual-discount{text-align:center;display:block;font-weight:bold;margin-bottom:10px;text-transform:uppercase;background:#F3F3F3;padding:2px;border:1px solid #ccc}#plugin-information .plugin-information-pricing .fs-plan .fs-annual-discount{text-transform:none;color:green;background:greenyellow}#plugin-information .plugin-information-pricing .fs-plan ul.fs-trial-terms{font-size:0.9em}#plugin-information .plugin-information-pricing .fs-plan ul.fs-trial-terms i{float:left;margin:0 0 0 -15px}#plugin-information .plugin-information-pricing .fs-plan ul.fs-trial-terms li{margin:10px 0 0 0}#plugin-information #section-features .fs-features{margin:-20px -26px}#plugin-information #section-features table{width:100%;border-spacing:0;border-collapse:separate}#plugin-information #section-features table thead th{padding:10px 0}#plugin-information #section-features table thead .fs-price{color:#71ae00;font-weight:normal;display:block;text-align:center}#plugin-information #section-features table tbody td{border-top:1px solid #ccc;padding:10px 0;text-align:center;width:100px;color:#71ae00}#plugin-information #section-features table tbody td:first-child{text-align:left;width:auto;color:inherit;padding-left:26px}#plugin-information #section-features table tbody tr.fs-odd td{background:#fefefe}#plugin-information #section-features .dashicons-yes{width:30px;height:30px;font-size:30px}@media screen and (max-width: 961px){#fs_addons .fs-cards-list .fs-card{height:265px}} +.fs-badge{position:absolute;top:10px;right:0;background:#71ae00;color:white;text-transform:uppercase;padding:5px 10px;-moz-border-radius:3px 0 0 3px;-webkit-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px;font-weight:bold;border-right:0;-moz-box-shadow:0 2px 1px -1px rgba(0,0,0,0.3);-webkit-box-shadow:0 2px 1px -1px rgba(0,0,0,0.3);box-shadow:0 2px 1px -1px rgba(0,0,0,0.3)}#fs_addons .fs-cards-list{list-style:none}#fs_addons .fs-cards-list .fs-card{float:left;height:152px;width:310px;padding:0;margin:0 0 30px 30px;font-size:14px;list-style:none;border:1px solid #ddd;cursor:pointer;position:relative}#fs_addons .fs-cards-list .fs-card .fs-overlay{position:absolute;left:0;right:0;bottom:0;top:0;z-index:9}#fs_addons .fs-cards-list .fs-card .fs-inner{background-color:#fff;overflow:hidden;height:100%;position:relative}#fs_addons .fs-cards-list .fs-card .fs-inner>ul{-moz-transition:all,0.15s;-o-transition:all,0.15s;-ms-transition:all,0.15s;-webkit-transition:all,0.15s;transition:all,0.15s;left:0;right:0;top:0;position:absolute}#fs_addons .fs-cards-list .fs-card .fs-inner>ul>li{list-style:none;line-height:18px;padding:0 15px;width:100%;display:block;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-card-banner{padding:0;margin:0;line-height:0;display:block;height:100px;background-repeat:repeat-x;background-size:100% 100%;-moz-transition:all,0.15s;-o-transition:all,0.15s;-ms-transition:all,0.15s;-webkit-transition:all,0.15s;transition:all,0.15s}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-card-banner .fs-badge.fs-installed-addon-badge{font-size:1.02em;line-height:1.3em}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-title{margin:10px 0 0 0;height:18px;overflow:hidden;color:#000;white-space:nowrap;text-overflow:ellipsis;font-weight:bold}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-offer{font-size:0.9em}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-description{background-color:#f9f9f9;padding:10px 15px 100px 15px;border-top:1px solid #eee;margin:0 0 10px 0;color:#777}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-tag{position:absolute;top:10px;right:0px;background:greenyellow;display:block;padding:2px 10px;-moz-box-shadow:1px 1px 1px rgba(0,0,0,0.3);-webkit-box-shadow:1px 1px 1px rgba(0,0,0,0.3);box-shadow:1px 1px 1px rgba(0,0,0,0.3);text-transform:uppercase;font-size:0.9em;font-weight:bold}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-cta .button,#fs_addons .fs-cards-list .fs-card .fs-inner .fs-cta .button-group{position:absolute;top:112px;right:10px}@media screen and (min-width: 960px){#fs_addons .fs-cards-list .fs-card:hover .fs-overlay{border:2px solid #29abe1;margin-left:-1px;margin-top:-1px}#fs_addons .fs-cards-list .fs-card:hover .fs-inner ul{top:-100px}#fs_addons .fs-cards-list .fs-card:hover .fs-inner .fs-title,#fs_addons .fs-cards-list .fs-card:hover .fs-inner .fs-offer{color:#29abe1}} +#TB_window,#TB_window iframe{width:821px !important}#plugin-information .fyi{width:266px !important}#plugin-information #section-holder{margin-right:299px}#plugin-information #section-description h2,#plugin-information #section-description h3,#plugin-information #section-description p,#plugin-information #section-description b,#plugin-information #section-description i,#plugin-information #section-description blockquote,#plugin-information #section-description li,#plugin-information #section-description ul,#plugin-information #section-description ol{clear:none}#plugin-information #section-description .fs-selling-points{padding-bottom:10px;border-bottom:1px solid #ddd}#plugin-information #section-description .fs-selling-points ul{margin:0}#plugin-information #section-description .fs-selling-points ul li{padding:0;list-style:none outside none}#plugin-information #section-description .fs-selling-points ul li i.dashicons{color:#71ae00;font-size:3em;vertical-align:middle;line-height:30px;float:left;margin:0 0 0 -15px}#plugin-information #section-description .fs-selling-points ul li h3{margin:1em 30px !important}#plugin-information #section-description .fs-screenshots:after{content:"";display:table;clear:both}#plugin-information #section-description .fs-screenshots ul{list-style:none;margin:0}#plugin-information #section-description .fs-screenshots ul li{width:225px;height:225px;float:left;margin-bottom:20px;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}#plugin-information #section-description .fs-screenshots ul li a{display:block;width:100%;height:100%;border:1px solid;-moz-box-shadow:1px 1px 1px rgba(0,0,0,0.2);-webkit-box-shadow:1px 1px 1px rgba(0,0,0,0.2);box-shadow:1px 1px 1px rgba(0,0,0,0.2);background-size:cover}#plugin-information #section-description .fs-screenshots ul li.odd{margin-right:20px}#plugin-information .plugin-information-pricing{margin:-16px;border-bottom:1px solid #ddd}#plugin-information .plugin-information-pricing .fs-plan h3{margin-top:0;padding:20px;font-size:16px}#plugin-information .plugin-information-pricing .fs-plan .nav-tab-wrapper{border-bottom:1px solid #ddd}#plugin-information .plugin-information-pricing .fs-plan .nav-tab-wrapper .nav-tab{cursor:pointer;position:relative;padding:0 10px;font-size:0.9em}#plugin-information .plugin-information-pricing .fs-plan .nav-tab-wrapper .nav-tab label{text-transform:uppercase;color:green;background:greenyellow;position:absolute;left:-1px;right:-1px;bottom:100%;border:1px solid darkgreen;padding:2px;text-align:center;font-size:0.9em;line-height:1em}#plugin-information .plugin-information-pricing .fs-plan .nav-tab-wrapper .nav-tab.nav-tab-active{cursor:default;background:#fffeec;border-bottom-color:#fffeec}#plugin-information .plugin-information-pricing .fs-plan.fs-single-cycle h3{background:#fffeec;margin:0;padding-bottom:0;color:#0073aa}#plugin-information .plugin-information-pricing .fs-plan.fs-single-cycle .nav-tab-wrapper,#plugin-information .plugin-information-pricing .fs-plan.fs-single-cycle .fs-billing-frequency{display:none}#plugin-information .plugin-information-pricing .fs-plan .fs-pricing-body{background:#fffeec;padding:20px}#plugin-information .plugin-information-pricing .fs-plan .button{width:100%;text-align:center;font-weight:bold;text-transform:uppercase;font-size:1.1em}#plugin-information .plugin-information-pricing .fs-plan label{white-space:nowrap}#plugin-information .plugin-information-pricing .fs-plan var{font-style:normal}#plugin-information .plugin-information-pricing .fs-plan .fs-billing-frequency,#plugin-information .plugin-information-pricing .fs-plan .fs-annual-discount{text-align:center;display:block;font-weight:bold;margin-bottom:10px;text-transform:uppercase;background:#F3F3F3;padding:2px;border:1px solid #ccc}#plugin-information .plugin-information-pricing .fs-plan .fs-annual-discount{text-transform:none;color:green;background:greenyellow}#plugin-information .plugin-information-pricing .fs-plan ul.fs-trial-terms{font-size:0.9em}#plugin-information .plugin-information-pricing .fs-plan ul.fs-trial-terms i{float:left;margin:0 0 0 -15px}#plugin-information .plugin-information-pricing .fs-plan ul.fs-trial-terms li{margin:10px 0 0 0}#plugin-information #section-features .fs-features{margin:-20px -26px}#plugin-information #section-features table{width:100%;border-spacing:0;border-collapse:separate}#plugin-information #section-features table thead th{padding:10px 0}#plugin-information #section-features table thead .fs-price{color:#71ae00;font-weight:normal;display:block;text-align:center}#plugin-information #section-features table tbody td{border-top:1px solid #ccc;padding:10px 0;text-align:center;width:100px;color:#71ae00}#plugin-information #section-features table tbody td:first-child{text-align:left;width:auto;color:inherit;padding-left:26px}#plugin-information #section-features table tbody tr.fs-odd td{background:#fefefe}#plugin-information #section-features .dashicons-yes{width:30px;height:30px;font-size:30px}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-dropdown .button-group .button,#plugin-information .fs-dropdown .button-group .button{position:relative;width:auto;top:0;right:0}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-dropdown .button-group .button:focus,#plugin-information .fs-dropdown .button-group .button:focus{z-index:10}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-dropdown .button-group .fs-dropdown-arrow,#plugin-information .fs-dropdown .button-group .fs-dropdown-arrow{border-top:6px solid white;border-right:4px solid transparent;border-left:4px solid transparent;top:12px;position:relative}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-dropdown.active:not(.up) .button:not(.fs-dropdown-arrow-button),#plugin-information .fs-dropdown.active:not(.up) .button:not(.fs-dropdown-arrow-button){border-bottom-left-radius:0}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-dropdown.active:not(.up) .fs-dropdown-arrow-button,#plugin-information .fs-dropdown.active:not(.up) .fs-dropdown-arrow-button{border-bottom-right-radius:0}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-dropdown.active.up .button:not(.fs-dropdown-arrow-button),#plugin-information .fs-dropdown.active.up .button:not(.fs-dropdown-arrow-button){border-top-left-radius:0}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-dropdown.active.up .fs-dropdown-arrow-button,#plugin-information .fs-dropdown.active.up .fs-dropdown-arrow-button{border-top-right-radius:0}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-dropdown .fs-dropdown-list,#plugin-information .fs-dropdown .fs-dropdown-list{position:absolute;right:-1px;top:100%;margin-left:auto;padding:3px 0;border:1px solid #bfbfbf;background-color:#fff;z-index:1;width:230px;text-align:left;-moz-box-shadow:0px 2px 4px -1px rgba(0,0,0,0.2),0px 4px 5px 0px rgba(0,0,0,0.14),0px 1px 10px 0px rgba(0,0,0,0.12);-webkit-box-shadow:0px 2px 4px -1px rgba(0,0,0,0.2),0px 4px 5px 0px rgba(0,0,0,0.14),0px 1px 10px 0px rgba(0,0,0,0.12);box-shadow:0px 2px 4px -1px rgba(0,0,0,0.2),0px 4px 5px 0px rgba(0,0,0,0.14),0px 1px 10px 0px rgba(0,0,0,0.12)}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-dropdown .fs-dropdown-list li,#plugin-information .fs-dropdown .fs-dropdown-list li{margin:0}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-dropdown .fs-dropdown-list li a,#plugin-information .fs-dropdown .fs-dropdown-list li a{display:block;padding:5px 10px;text-decoration:none;text-shadow:none}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-dropdown .fs-dropdown-list li:hover,#plugin-information .fs-dropdown .fs-dropdown-list li:hover{background-color:#0074a3;color:#fff}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-dropdown .fs-dropdown-list li:hover a,#plugin-information .fs-dropdown .fs-dropdown-list li:hover a{color:#fff}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-dropdown:not(.up) .fs-dropdown-list,#plugin-information .fs-dropdown:not(.up) .fs-dropdown-list{-moz-border-radius:3px 0 3px 3px;-webkit-border-radius:3px 0 3px 3px;border-radius:3px 0 3px 3px}#fs_addons .fs-cards-list .fs-card .fs-inner .fs-dropdown.up .fs-dropdown-list,#plugin-information .fs-dropdown.up .fs-dropdown-list{-moz-border-radius:3px 3px 0 3px;-webkit-border-radius:3px 3px 0 3px;border-radius:3px 3px 0 3px}#plugin-information .fs-dropdown .button-group{width:100%}#plugin-information .fs-dropdown .button-group .button{float:none;font-size:14px;font-weight:normal;text-transform:none}#plugin-information .fs-dropdown .fs-dropdown-list{margin-top:1px}#plugin-information .fs-dropdown.up .fs-dropdown-list{top:auto;bottom:100%;margin-bottom:2px}#plugin-information.wp-core-ui .fs-pricing-body .fs-dropdown .button-group{text-align:center;display:table}#plugin-information.wp-core-ui .fs-pricing-body .fs-dropdown .button-group .button{display:table-cell}#plugin-information.wp-core-ui .fs-pricing-body .fs-dropdown .button-group .button:not(.fs-dropdown-arrow-button){left:1px;width:100%}#plugin-information-footer>.button,#plugin-information-footer .fs-dropdown{position:relative;top:3px}#plugin-information-footer>.button.left,#plugin-information-footer .fs-dropdown.left{float:left}#plugin-information-footer>.right,#plugin-information-footer .fs-dropdown{float:right}@media screen and (max-width: 961px){#fs_addons .fs-cards-list .fs-card{height:265px}} diff --git a/external/Freemius/assets/css/admin/common.css b/external/Freemius/assets/css/admin/common.css index 555b55d5..846a68df 100755 --- a/external/Freemius/assets/css/admin/common.css +++ b/external/Freemius/assets/css/admin/common.css @@ -1,2 +1,2 @@ -.theme-browser .theme .fs-premium-theme-badge{position:absolute;top:10px;right:0;background:#71ae00;color:#fff;text-transform:uppercase;padding:5px 10px;-moz-border-radius:3px 0 0 3px;-webkit-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px;font-weight:bold;border-right:0;-moz-box-shadow:0 2px 1px -1px rgba(0,0,0,0.3);-webkit-box-shadow:0 2px 1px -1px rgba(0,0,0,0.3);box-shadow:0 2px 1px -1px rgba(0,0,0,0.3);font-size:1.1em}#fs_frame{line-height:0;font-size:0}.fs-full-size-wrapper{margin:40px 0 -65px -20px}@media (max-width: 600px){.fs-full-size-wrapper{margin:0 0 -65px -10px}} +.fs-badge{position:absolute;top:10px;right:0;background:#71ae00;color:white;text-transform:uppercase;padding:5px 10px;-moz-border-radius:3px 0 0 3px;-webkit-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px;font-weight:bold;border-right:0;-moz-box-shadow:0 2px 1px -1px rgba(0,0,0,0.3);-webkit-box-shadow:0 2px 1px -1px rgba(0,0,0,0.3);box-shadow:0 2px 1px -1px rgba(0,0,0,0.3)}.theme-browser .theme .fs-premium-theme-badge-container{position:absolute;right:0;top:0}.theme-browser .theme .fs-premium-theme-badge-container .fs-badge{position:relative;top:0;margin-top:10px;text-align:center}.theme-browser .theme .fs-premium-theme-badge-container .fs-badge.fs-premium-theme-badge{font-size:1.1em}.theme-browser .theme .fs-premium-theme-badge-container .fs-badge.fs-beta-theme-badge{background:#00a0d2}#fs_frame{line-height:0;font-size:0}.fs-full-size-wrapper{margin:40px 0 -65px -20px}@media (max-width: 600px){.fs-full-size-wrapper{margin:0 0 -65px -10px}} .fs-notice{position:relative}.fs-notice.fs-has-title{margin-bottom:30px !important}.fs-notice.success{color:green}.fs-notice.promotion{border-color:#00a0d2 !important;background-color:#f2fcff !important}.fs-notice .fs-notice-body{margin:.5em 0;padding:2px}.fs-notice .fs-close{cursor:pointer;color:#aaa;float:right}.fs-notice .fs-close:hover{color:#666}.fs-notice .fs-close>*{margin-top:7px;display:inline-block}.fs-notice label.fs-plugin-title{background:rgba(0,0,0,0.3);color:#fff;padding:2px 10px;position:absolute;top:100%;bottom:auto;right:auto;-moz-border-radius:0 0 3px 3px;-webkit-border-radius:0 0 3px 3px;border-radius:0 0 3px 3px;left:10px;font-size:12px;font-weight:bold;cursor:auto}div.fs-notice.updated,div.fs-notice.success,div.fs-notice.promotion{display:block !important}.rtl .fs-notice .fs-close{float:left}.fs-secure-notice{position:fixed;top:32px;left:160px;right:0;background:#ebfdeb;padding:10px 20px;color:green;z-index:9999;-moz-box-shadow:0 2px 2px rgba(6,113,6,0.3);-webkit-box-shadow:0 2px 2px rgba(6,113,6,0.3);box-shadow:0 2px 2px rgba(6,113,6,0.3);opacity:0.95;filter:alpha(opacity=95)}.fs-secure-notice:hover{opacity:1;filter:alpha(opacity=100)}.fs-secure-notice a.fs-security-proof{color:green;text-decoration:none}@media screen and (max-width: 960px){.fs-secure-notice{left:36px}}@media screen and (max-width: 600px){.fs-secure-notice{display:none}}@media screen and (max-width: 500px){#fs_promo_tab{display:none}}@media screen and (max-width: 782px){.fs-secure-notice{left:0;top:46px;text-align:center}}span.fs-submenu-item.fs-sub:before{content:'\21B3';padding:0 5px}.rtl span.fs-submenu-item.fs-sub:before{content:'\21B2'}.fs-submenu-item.pricing.upgrade-mode{color:greenyellow}.fs-submenu-item.pricing.trial-mode{color:#83e2ff}#adminmenu .update-plugins.fs-trial{background-color:#00b9eb}.fs-ajax-spinner{border:0;width:20px;height:20px;margin-right:5px;vertical-align:sub;display:inline-block;background:url("/wp-admin/images/wpspin_light-2x.gif");background-size:contain}.wrap.fs-section h2{text-align:left}.plugins p.fs-upgrade-notice{border:0;background-color:#d54e21;padding:10px;color:#f9f9f9;margin-top:10px} diff --git a/external/Freemius/assets/css/admin/connect.css b/external/Freemius/assets/css/admin/connect.css index ec5fea50..176489dc 100755 --- a/external/Freemius/assets/css/admin/connect.css +++ b/external/Freemius/assets/css/admin/connect.css @@ -1 +1 @@ -#fs_connect{width:480px;-moz-box-shadow:0px 1px 2px rgba(0,0,0,0.3);-webkit-box-shadow:0px 1px 2px rgba(0,0,0,0.3);box-shadow:0px 1px 2px rgba(0,0,0,0.3);margin:20px 0}@media screen and (max-width: 479px){#fs_connect{-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none;width:auto;margin:0 0 0 -10px}}#fs_connect .fs-content{background:#fff;padding:15px 20px}#fs_connect .fs-content .fs-error{background:snow;color:#d3135a;border:1px solid #d3135a;-moz-box-shadow:0 1px 1px 0 rgba(0,0,0,0.1);-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,0.1);box-shadow:0 1px 1px 0 rgba(0,0,0,0.1);text-align:center;padding:5px;margin-bottom:10px}#fs_connect .fs-content p{margin:0;padding:0;font-size:1.2em}#fs_connect .fs-license-key-container{position:relative;width:280px;margin:10px auto 0 auto}#fs_connect .fs-license-key-container input{width:100%}#fs_connect .fs-license-key-container .dashicons{position:absolute;top:5px;right:5px}#fs_connect.require-license-key #sites_list_container td{cursor:pointer}#fs_connect #delegate_to_site_admins{margin-right:15px;float:right;height:26px;vertical-align:middle;line-height:37px;font-weight:bold;border-bottom:1px dashed;text-decoration:none}#fs_connect #delegate_to_site_admins.rtl{margin-left:15px;margin-right:0}#fs_connect .fs-actions{padding:10px 20px;background:#C0C7CA}#fs_connect .fs-actions .button{padding:0 10px 1px;line-height:35px;height:37px;font-size:16px;margin-bottom:0}#fs_connect .fs-actions .button .dashicons{font-size:37px;margin-left:-8px;margin-right:12px}#fs_connect .fs-actions .button.button-primary{padding-right:15px;padding-left:15px}#fs_connect .fs-actions .button.button-primary:after{content:' \279C'}#fs_connect .fs-actions .button.button-primary.fs-loading:after{content:''}#fs_connect .fs-actions .button.button-secondary{float:right}#fs_connect.fs-anonymous-disabled .fs-actions .button.button-primary{width:100%}#fs_connect .fs-permissions{padding:10px 20px;background:#FEFEFE;-moz-transition:background 0.5s ease;-o-transition:background 0.5s ease;-ms-transition:background 0.5s ease;-webkit-transition:background 0.5s ease;transition:background 0.5s ease}#fs_connect .fs-permissions .fs-license-sync-disclaimer{text-align:center;margin-top:0}#fs_connect .fs-permissions .fs-trigger{font-size:0.9em;text-decoration:none;text-align:center;display:block}#fs_connect .fs-permissions ul{height:0;overflow:hidden;margin:0}#fs_connect .fs-permissions ul li{margin-bottom:12px}#fs_connect .fs-permissions ul li:last-child{margin-bottom:0}#fs_connect .fs-permissions ul li i.dashicons{float:left;font-size:40px;width:40px;height:40px}#fs_connect .fs-permissions ul li div{margin-left:55px}#fs_connect .fs-permissions ul li div span{font-weight:bold;text-transform:uppercase;color:#23282d}#fs_connect .fs-permissions ul li div p{margin:2px 0 0 0}#fs_connect .fs-permissions.fs-open{background:#fff}#fs_connect .fs-permissions.fs-open ul{height:auto;margin:20px 20px 10px 20px}@media screen and (max-width: 479px){#fs_connect .fs-permissions{background:#fff}#fs_connect .fs-permissions .fs-trigger{display:none}#fs_connect .fs-permissions ul{height:auto;margin:20px}}#fs_connect .fs-freemium-licensing{padding:8px;background:#777;color:#fff}#fs_connect .fs-freemium-licensing p{text-align:center;display:block;margin:0;padding:0}#fs_connect .fs-freemium-licensing a{color:#C2EEFF;text-decoration:underline}#fs_connect .fs-visual{padding:12px;line-height:0;background:#fafafa;height:80px;position:relative}#fs_connect .fs-visual .fs-site-icon{position:absolute;left:20px;top:10px}#fs_connect .fs-visual .fs-connect-logo{position:absolute;right:20px;top:10px}#fs_connect .fs-visual .fs-plugin-icon{position:absolute;top:10px;left:50%;margin-left:-40px}#fs_connect .fs-visual .fs-plugin-icon,#fs_connect .fs-visual .fs-site-icon,#fs_connect .fs-visual img,#fs_connect .fs-visual object{width:80px;height:80px}#fs_connect .fs-visual .dashicons-wordpress{font-size:64px;background:#01749a;color:#fff;width:64px;height:64px;padding:8px}#fs_connect .fs-visual .dashicons-plus{position:absolute;top:50%;font-size:30px;margin-top:-10px;color:#bbb}#fs_connect .fs-visual .dashicons-plus.fs-first{left:28%}#fs_connect .fs-visual .dashicons-plus.fs-second{left:65%}#fs_connect .fs-visual .fs-plugin-icon,#fs_connect .fs-visual .fs-connect-logo,#fs_connect .fs-visual .fs-site-icon{border:1px solid #ccc;padding:1px;background:#fff}#fs_connect .fs-terms{text-align:center;font-size:0.85em;padding:5px;background:rgba(0,0,0,0.05)}#fs_connect .fs-terms,#fs_connect .fs-terms a{color:#999}#fs_connect .fs-terms a{text-decoration:none}#multisite_options_container{margin-top:10px;border:1px solid #ccc;padding:5px}#multisite_options_container a{text-decoration:none}#multisite_options_container a:focus{box-shadow:none}#multisite_options_container a.selected{font-weight:bold}#multisite_options_container.apply-on-all-sites{border:0 none;padding:0}#multisite_options_container.apply-on-all-sites #all_sites_options{border-spacing:0}#multisite_options_container.apply-on-all-sites #all_sites_options td:not(:first-child){display:none}#multisite_options_container #sites_list_container{display:none;overflow:auto}#multisite_options_container #sites_list_container table td{border-top:1px solid #ccc;padding:4px 2px}.fs-tooltip-trigger{position:relative}.fs-tooltip-trigger:not(a){cursor:help}.fs-tooltip-trigger .fs-tooltip{opacity:0;visibility:hidden;-moz-transition:opacity 0.3s ease-in-out;-o-transition:opacity 0.3s ease-in-out;-ms-transition:opacity 0.3s ease-in-out;-webkit-transition:opacity 0.3s ease-in-out;transition:opacity 0.3s ease-in-out;position:absolute;background:rgba(0,0,0,0.8);color:#fff;font-family:'arial', serif;font-size:12px;padding:10px;z-index:999999;bottom:100%;margin-bottom:5px;left:0;right:0;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;-moz-box-shadow:1px 1px 1px rgba(0,0,0,0.2);-webkit-box-shadow:1px 1px 1px rgba(0,0,0,0.2);box-shadow:1px 1px 1px rgba(0,0,0,0.2);line-height:1.3em;font-weight:bold;text-align:left}.rtl .fs-tooltip-trigger .fs-tooltip{text-align:right}.fs-tooltip-trigger .fs-tooltip::after{content:' ';display:block;width:0;height:0;border-style:solid;border-width:5px 5px 0 5px;border-color:rgba(0,0,0,0.8) transparent transparent transparent;position:absolute;top:100%;left:21px}.rtl .fs-tooltip-trigger .fs-tooltip::after{right:21px;left:auto}.fs-tooltip-trigger:hover .fs-tooltip{visibility:visible;opacity:1}#fs_marketing_optin{display:none;margin-top:10px;border:1px solid #ccc;padding:10px;line-height:1.5em}#fs_marketing_optin .fs-message{display:block;margin-bottom:5px;font-size:1.05em;font-weight:600}#fs_marketing_optin.error{border:1px solid #d3135a;background:#fee}#fs_marketing_optin.error .fs-message{color:#d3135a}#fs_marketing_optin .fs-input-container{margin-top:5px}#fs_marketing_optin .fs-input-container label{margin-top:5px;display:block}#fs_marketing_optin .fs-input-container label input{float:left;margin:1px 0 0 0}#fs_marketing_optin .fs-input-container label:first-child{display:block;margin-bottom:2px}#fs_marketing_optin .fs-input-label{display:block;margin-left:20px}#fs_marketing_optin .fs-input-label .underlined{text-decoration:underline}.rtl #fs_marketing_optin .fs-input-container label input{float:right}.rtl #fs_marketing_optin .fs-input-label{margin-left:0;margin-right:20px}.rtl #fs_connect .fs-actions{padding:10px 20px;background:#C0C7CA}.rtl #fs_connect .fs-actions .button .dashicons{font-size:37px;margin-left:-8px;margin-right:12px}.rtl #fs_connect .fs-actions .button.button-primary:after{content:' \000bb'}.rtl #fs_connect .fs-actions .button.button-primary.fs-loading:after{content:''}.rtl #fs_connect .fs-actions .button.button-secondary{float:left}.rtl #fs_connect .fs-permissions ul li div{margin-right:55px;margin-left:0}.rtl #fs_connect .fs-permissions ul li i.dashicons{float:right}.rtl #fs_connect .fs-visual .fs-site-icon{right:20px;left:auto}.rtl #fs_connect .fs-visual .fs-connect-logo{right:auto;left:20px}#fs_theme_connect_wrapper{position:fixed;top:0;height:100%;width:100%;z-index:99990;background:rgba(0,0,0,0.75);text-align:center;overflow-y:auto}#fs_theme_connect_wrapper:before{content:"";display:inline-block;vertical-align:middle;height:100%}#fs_theme_connect_wrapper>button.close{color:white;cursor:pointer;height:40px;width:40px;position:absolute;right:0;border:0;background-color:transparent;top:32px}#fs_theme_connect_wrapper #fs_connect{top:0;text-align:left;display:inline-block;vertical-align:middle;margin-top:52px;margin-bottom:20px}#fs_theme_connect_wrapper #fs_connect .fs-terms{background:rgba(140,140,140,0.64)}#fs_theme_connect_wrapper #fs_connect .fs-terms,#fs_theme_connect_wrapper #fs_connect .fs-terms a{color:#c5c5c5}.wp-pointer-content #fs_connect{margin:0;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}.fs-opt-in-pointer .wp-pointer-content{padding:0}.fs-opt-in-pointer.wp-pointer-top .wp-pointer-arrow{border-bottom-color:#dfdfdf}.fs-opt-in-pointer.wp-pointer-top .wp-pointer-arrow-inner{border-bottom-color:#fafafa}.fs-opt-in-pointer.wp-pointer-bottom .wp-pointer-arrow{border-top-color:#dfdfdf}.fs-opt-in-pointer.wp-pointer-bottom .wp-pointer-arrow-inner{border-top-color:#fafafa}.fs-opt-in-pointer.wp-pointer-left .wp-pointer-arrow{border-right-color:#dfdfdf}.fs-opt-in-pointer.wp-pointer-left .wp-pointer-arrow-inner{border-right-color:#fafafa}.fs-opt-in-pointer.wp-pointer-right .wp-pointer-arrow{border-left-color:#dfdfdf}.fs-opt-in-pointer.wp-pointer-right .wp-pointer-arrow-inner{border-left-color:#fafafa} +#fs_connect{width:480px;-moz-box-shadow:0px 1px 2px rgba(0,0,0,0.3);-webkit-box-shadow:0px 1px 2px rgba(0,0,0,0.3);box-shadow:0px 1px 2px rgba(0,0,0,0.3);margin:20px 0}@media screen and (max-width: 479px){#fs_connect{-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none;width:auto;margin:0 0 0 -10px}}#fs_connect .fs-content{background:#fff;padding:15px 20px}#fs_connect .fs-content .fs-error{background:snow;color:#d3135a;border:1px solid #d3135a;-moz-box-shadow:0 1px 1px 0 rgba(0,0,0,0.1);-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,0.1);box-shadow:0 1px 1px 0 rgba(0,0,0,0.1);text-align:center;padding:5px;margin-bottom:10px}#fs_connect .fs-content p{margin:0;padding:0;font-size:1.2em}#fs_connect .fs-license-key-container{position:relative;width:280px;margin:10px auto 0 auto}#fs_connect .fs-license-key-container input{width:100%}#fs_connect .fs-license-key-container .dashicons{position:absolute;top:5px;right:5px}#fs_connect.require-license-key .fs-sites-list-container td{cursor:pointer}#fs_connect #delegate_to_site_admins{margin-right:15px;float:right;height:26px;vertical-align:middle;line-height:37px;font-weight:bold;border-bottom:1px dashed;text-decoration:none}#fs_connect #delegate_to_site_admins.rtl{margin-left:15px;margin-right:0}#fs_connect .fs-actions{padding:10px 20px;background:#C0C7CA}#fs_connect .fs-actions .button{padding:0 10px 1px;line-height:35px;height:37px;font-size:16px;margin-bottom:0}#fs_connect .fs-actions .button .dashicons{font-size:37px;margin-left:-8px;margin-right:12px}#fs_connect .fs-actions .button.button-primary{padding-right:15px;padding-left:15px}#fs_connect .fs-actions .button.button-primary:after{content:' \279C'}#fs_connect .fs-actions .button.button-primary.fs-loading:after{content:''}#fs_connect .fs-actions .button.button-secondary{float:right}#fs_connect.fs-anonymous-disabled .fs-actions .button.button-primary{width:100%}#fs_connect .fs-permissions{padding:10px 20px;background:#FEFEFE;-moz-transition:background 0.5s ease;-o-transition:background 0.5s ease;-ms-transition:background 0.5s ease;-webkit-transition:background 0.5s ease;transition:background 0.5s ease}#fs_connect .fs-permissions .fs-license-sync-disclaimer{text-align:center;margin-top:0}#fs_connect .fs-permissions .fs-trigger{font-size:0.9em;text-decoration:none;text-align:center;display:block}#fs_connect .fs-permissions ul{height:0;overflow:hidden;margin:0}#fs_connect .fs-permissions ul li{margin-bottom:12px}#fs_connect .fs-permissions ul li:last-child{margin-bottom:0}#fs_connect .fs-permissions ul li i.dashicons{float:left;font-size:40px;width:40px;height:40px}#fs_connect .fs-permissions ul li div{margin-left:55px}#fs_connect .fs-permissions ul li div span{font-weight:bold;text-transform:uppercase;color:#23282d}#fs_connect .fs-permissions ul li div p{margin:2px 0 0 0}#fs_connect .fs-permissions.fs-open{background:#fff}#fs_connect .fs-permissions.fs-open ul{height:auto;margin:20px 20px 10px 20px}@media screen and (max-width: 479px){#fs_connect .fs-permissions{background:#fff}#fs_connect .fs-permissions .fs-trigger{display:none}#fs_connect .fs-permissions ul{height:auto;margin:20px}}#fs_connect .fs-freemium-licensing{padding:8px;background:#777;color:#fff}#fs_connect .fs-freemium-licensing p{text-align:center;display:block;margin:0;padding:0}#fs_connect .fs-freemium-licensing a{color:#C2EEFF;text-decoration:underline}#fs_connect .fs-visual{padding:12px;line-height:0;background:#fafafa;height:80px;position:relative}#fs_connect .fs-visual .fs-site-icon{position:absolute;left:20px;top:10px}#fs_connect .fs-visual .fs-connect-logo{position:absolute;right:20px;top:10px}#fs_connect .fs-visual .fs-plugin-icon{position:absolute;top:10px;left:50%;margin-left:-40px}#fs_connect .fs-visual .fs-plugin-icon,#fs_connect .fs-visual .fs-site-icon,#fs_connect .fs-visual img,#fs_connect .fs-visual object{width:80px;height:80px}#fs_connect .fs-visual .dashicons-wordpress{font-size:64px;background:#01749a;color:#fff;width:64px;height:64px;padding:8px}#fs_connect .fs-visual .dashicons-plus{position:absolute;top:50%;font-size:30px;margin-top:-10px;color:#bbb}#fs_connect .fs-visual .dashicons-plus.fs-first{left:28%}#fs_connect .fs-visual .dashicons-plus.fs-second{left:65%}#fs_connect .fs-visual .fs-plugin-icon,#fs_connect .fs-visual .fs-connect-logo,#fs_connect .fs-visual .fs-site-icon{border:1px solid #ccc;padding:1px;background:#fff}#fs_connect .fs-terms{text-align:center;font-size:0.85em;padding:5px;background:rgba(0,0,0,0.05)}#fs_connect .fs-terms,#fs_connect .fs-terms a{color:#999}#fs_connect .fs-terms a{text-decoration:none}.fs-multisite-options-container{margin-top:10px;border:1px solid #ccc;padding:5px}.fs-multisite-options-container a{text-decoration:none}.fs-multisite-options-container a:focus{box-shadow:none}.fs-multisite-options-container a.selected{font-weight:bold}.fs-multisite-options-container.fs-apply-on-all-sites{border:0 none;padding:0}.fs-multisite-options-container.fs-apply-on-all-sites .fs-all-sites-options{border-spacing:0}.fs-multisite-options-container.fs-apply-on-all-sites .fs-all-sites-options td:not(:first-child){display:none}.fs-multisite-options-container .fs-sites-list-container{display:none;overflow:auto}.fs-multisite-options-container .fs-sites-list-container table td{border-top:1px solid #ccc;padding:4px 2px}.fs-tooltip-trigger{position:relative}.fs-tooltip-trigger:not(a){cursor:help}.fs-tooltip-trigger .fs-tooltip{opacity:0;visibility:hidden;-moz-transition:opacity 0.3s ease-in-out;-o-transition:opacity 0.3s ease-in-out;-ms-transition:opacity 0.3s ease-in-out;-webkit-transition:opacity 0.3s ease-in-out;transition:opacity 0.3s ease-in-out;position:absolute;background:rgba(0,0,0,0.8);color:#fff;font-family:'arial', serif;font-size:12px;padding:10px;z-index:999999;bottom:100%;margin-bottom:5px;left:0;right:0;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;-moz-box-shadow:1px 1px 1px rgba(0,0,0,0.2);-webkit-box-shadow:1px 1px 1px rgba(0,0,0,0.2);box-shadow:1px 1px 1px rgba(0,0,0,0.2);line-height:1.3em;font-weight:bold;text-align:left}.rtl .fs-tooltip-trigger .fs-tooltip{text-align:right}.fs-tooltip-trigger .fs-tooltip::after{content:' ';display:block;width:0;height:0;border-style:solid;border-width:5px 5px 0 5px;border-color:rgba(0,0,0,0.8) transparent transparent transparent;position:absolute;top:100%;left:21px}.rtl .fs-tooltip-trigger .fs-tooltip::after{right:21px;left:auto}.fs-tooltip-trigger:hover .fs-tooltip{visibility:visible;opacity:1}#fs_marketing_optin{display:none;margin-top:10px;border:1px solid #ccc;padding:10px;line-height:1.5em}#fs_marketing_optin .fs-message{display:block;margin-bottom:5px;font-size:1.05em;font-weight:600}#fs_marketing_optin.error{border:1px solid #d3135a;background:#fee}#fs_marketing_optin.error .fs-message{color:#d3135a}#fs_marketing_optin .fs-input-container{margin-top:5px}#fs_marketing_optin .fs-input-container label{margin-top:5px;display:block}#fs_marketing_optin .fs-input-container label input{float:left;margin:1px 0 0 0}#fs_marketing_optin .fs-input-container label:first-child{display:block;margin-bottom:2px}#fs_marketing_optin .fs-input-label{display:block;margin-left:20px}#fs_marketing_optin .fs-input-label .underlined{text-decoration:underline}.rtl #fs_marketing_optin .fs-input-container label input{float:right}.rtl #fs_marketing_optin .fs-input-label{margin-left:0;margin-right:20px}.rtl #fs_connect .fs-actions{padding:10px 20px;background:#C0C7CA}.rtl #fs_connect .fs-actions .button .dashicons{font-size:37px;margin-left:-8px;margin-right:12px}.rtl #fs_connect .fs-actions .button.button-primary:after{content:' \000bb'}.rtl #fs_connect .fs-actions .button.button-primary.fs-loading:after{content:''}.rtl #fs_connect .fs-actions .button.button-secondary{float:left}.rtl #fs_connect .fs-permissions ul li div{margin-right:55px;margin-left:0}.rtl #fs_connect .fs-permissions ul li i.dashicons{float:right}.rtl #fs_connect .fs-visual .fs-site-icon{right:20px;left:auto}.rtl #fs_connect .fs-visual .fs-connect-logo{right:auto;left:20px}#fs_theme_connect_wrapper{position:fixed;top:0;height:100%;width:100%;z-index:99990;background:rgba(0,0,0,0.75);text-align:center;overflow-y:auto}#fs_theme_connect_wrapper:before{content:"";display:inline-block;vertical-align:middle;height:100%}#fs_theme_connect_wrapper>button.close{color:white;cursor:pointer;height:40px;width:40px;position:absolute;right:0;border:0;background-color:transparent;top:32px}#fs_theme_connect_wrapper #fs_connect{top:0;text-align:left;display:inline-block;vertical-align:middle;margin-top:52px;margin-bottom:20px}#fs_theme_connect_wrapper #fs_connect .fs-terms{background:rgba(140,140,140,0.64)}#fs_theme_connect_wrapper #fs_connect .fs-terms,#fs_theme_connect_wrapper #fs_connect .fs-terms a{color:#c5c5c5}.wp-pointer-content #fs_connect{margin:0;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}.fs-opt-in-pointer .wp-pointer-content{padding:0}.fs-opt-in-pointer.wp-pointer-top .wp-pointer-arrow{border-bottom-color:#dfdfdf}.fs-opt-in-pointer.wp-pointer-top .wp-pointer-arrow-inner{border-bottom-color:#fafafa}.fs-opt-in-pointer.wp-pointer-bottom .wp-pointer-arrow{border-top-color:#dfdfdf}.fs-opt-in-pointer.wp-pointer-bottom .wp-pointer-arrow-inner{border-top-color:#fafafa}.fs-opt-in-pointer.wp-pointer-left .wp-pointer-arrow{border-right-color:#dfdfdf}.fs-opt-in-pointer.wp-pointer-left .wp-pointer-arrow-inner{border-right-color:#fafafa}.fs-opt-in-pointer.wp-pointer-right .wp-pointer-arrow{border-left-color:#dfdfdf}.fs-opt-in-pointer.wp-pointer-right .wp-pointer-arrow-inner{border-left-color:#fafafa} diff --git a/external/Freemius/assets/css/admin/dialog-boxes.css b/external/Freemius/assets/css/admin/dialog-boxes.css index f05bacd2..f0fca63e 100755 --- a/external/Freemius/assets/css/admin/dialog-boxes.css +++ b/external/Freemius/assets/css/admin/dialog-boxes.css @@ -1,2 +1,2 @@ -.fs-modal{position:fixed;overflow:auto;height:100%;width:100%;top:0;z-index:100000;display:none;background:rgba(0,0,0,0.6)}.fs-modal .fs-modal-dialog{background:transparent;position:absolute;left:50%;margin-left:-298px;padding-bottom:30px;top:-100%;z-index:100001;width:596px}@media (max-width: 650px){.fs-modal .fs-modal-dialog{margin-left:-50%;box-sizing:border-box;padding-left:10px;padding-right:10px;width:100%}.fs-modal .fs-modal-dialog .fs-modal-panel>h3>strong{font-size:1.3em}}.fs-modal.active{display:block}.fs-modal.active:before{display:block}.fs-modal.active .fs-modal-dialog{top:10%}.fs-modal.fs-success .fs-modal-header{border-bottom-color:#46b450}.fs-modal.fs-success .fs-modal-body{background-color:#f7fff7}.fs-modal.fs-warn .fs-modal-header{border-bottom-color:#ffb900}.fs-modal.fs-warn .fs-modal-body{background-color:#fff8e5}.fs-modal.fs-error .fs-modal-header{border-bottom-color:#dc3232}.fs-modal.fs-error .fs-modal-body{background-color:#ffeaea}.fs-modal .fs-modal-body,.fs-modal .fs-modal-footer{border:0;background:#fefefe;padding:20px}.fs-modal .fs-modal-header{border-bottom:#eeeeee solid 1px;background:#fbfbfb;padding:15px 20px;position:relative;margin-bottom:-10px}.fs-modal .fs-modal-header h4{margin:0;padding:0;text-transform:uppercase;font-size:1.2em;font-weight:bold;color:#cacaca;text-shadow:1px 1px 1px #fff;letter-spacing:0.6px;-webkit-font-smoothing:antialiased}.fs-modal .fs-modal-header .fs-close{position:absolute;right:10px;top:12px;cursor:pointer;color:#bbb;-moz-border-radius:20px;-webkit-border-radius:20px;border-radius:20px;padding:3px;-moz-transition:all 0.2s ease-in-out;-o-transition:all 0.2s ease-in-out;-ms-transition:all 0.2s ease-in-out;-webkit-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out}.fs-modal .fs-modal-header .fs-close:hover{color:#fff;background:#aaa}.fs-modal .fs-modal-header .fs-close .dashicons,.fs-modal .fs-modal-header .fs-close:hover .dashicons{text-decoration:none}.fs-modal .fs-modal-body{border-bottom:0}.fs-modal .fs-modal-body p{font-size:14px}.fs-modal .fs-modal-body h2{font-size:20px;line-height:1.5em}.fs-modal .fs-modal-body>div{margin-top:10px}.fs-modal .fs-modal-body>div h2{font-weight:bold;font-size:20px;margin-top:0}.fs-modal .fs-modal-footer{border-top:#eeeeee solid 1px;text-align:right}.fs-modal .fs-modal-footer>.button{margin:0 7px}.fs-modal .fs-modal-footer>.button:first-child{margin:0}.fs-modal .fs-modal-panel>.notice.inline{margin:0;display:none}.fs-modal .fs-modal-panel:not(.active){display:none}.rtl .fs-modal .fs-modal-header .fs-close{right:auto;left:20px}body.has-fs-modal{overflow:hidden}.fs-modal.fs-modal-deactivation-feedback .reason-input,.fs-modal.fs-modal-deactivation-feedback .internal-message{margin:3px 0 3px 22px}.fs-modal.fs-modal-deactivation-feedback .reason-input input,.fs-modal.fs-modal-deactivation-feedback .reason-input textarea,.fs-modal.fs-modal-deactivation-feedback .internal-message input,.fs-modal.fs-modal-deactivation-feedback .internal-message textarea{width:100%}.fs-modal.fs-modal-deactivation-feedback li.reason.has-internal-message .internal-message{border:1px solid #ccc;padding:7px;display:none}@media (max-width: 650px){.fs-modal.fs-modal-deactivation-feedback li.reason li.reason{margin-bottom:10px}.fs-modal.fs-modal-deactivation-feedback li.reason li.reason .reason-input,.fs-modal.fs-modal-deactivation-feedback li.reason li.reason .internal-message{margin-left:29px}.fs-modal.fs-modal-deactivation-feedback li.reason li.reason label{display:table}.fs-modal.fs-modal-deactivation-feedback li.reason li.reason label>span{display:table-cell;font-size:1.3em}}.fs-modal.fs-modal-deactivation-feedback .anonymous-feedback-label{float:left}.fs-modal.fs-modal-deactivation-feedback .fs-modal-panel{margin-top:0 !important}.fs-modal.fs-modal-deactivation-feedback .fs-modal-panel h3{margin-top:0;line-height:1.5em}#the-list .deactivate>.fs-slug{display:none}.fs-modal.fs-modal-subscription-cancellation .fs-price-increase-warning{color:red;font-weight:bold;padding:0 25px;margin-bottom:0}.fs-modal.fs-modal-subscription-cancellation ul.subscription-actions label input{float:left;top:5px;position:relative}.rtl .fs-modal.fs-modal-subscription-cancellation ul.subscription-actions label input{float:right}.fs-modal.fs-modal-subscription-cancellation ul.subscription-actions label span{display:block;margin-left:24px}.rtl .fs-modal.fs-modal-subscription-cancellation ul.subscription-actions label span{margin-left:0;margin-right:24px}.fs-modal.fs-modal-license-activation .fs-modal-body input.license_key{width:100%}#license_options_container table,#license_options_container table select,#license_options_container table #available_license_key{width:100%}#license_options_container table td:first-child{width:1%}#license_options_container table #other_license_key_container label{position:relative;top:6px;float:left;margin-right:5px}#license_options_container table #other_license_key_container div{overflow:hidden;width:auto;height:30px;display:block;top:2px;position:relative}#license_options_container table #other_license_key_container div input{margin:0}#sites_list_container td{cursor:pointer}#multisite_options_container{margin-top:10px;border:1px solid #ccc;padding:5px}#multisite_options_container a{text-decoration:none}#multisite_options_container a:focus{box-shadow:none}#multisite_options_container a.selected{font-weight:bold}#multisite_options_container.apply-on-all-sites{border:0 none;padding:0}#multisite_options_container.apply-on-all-sites #all_sites_options{border-spacing:0}#multisite_options_container.apply-on-all-sites #all_sites_options td:not(:first-child){display:none}#multisite_options_container #sites_list_container{display:none;overflow:auto}#multisite_options_container #sites_list_container table td{border-top:1px solid #ccc;padding:4px 2px}.fs-modal.fs-modal-license-key-resend .email-address-container{overflow:hidden;padding-right:2px}.fs-modal.fs-modal-license-key-resend.fs-freemium input.email-address{width:300px}.fs-modal.fs-modal-license-key-resend.fs-freemium label{display:block;margin-bottom:10px}.fs-modal.fs-modal-license-key-resend.fs-premium input.email-address{width:100%}.fs-modal.fs-modal-license-key-resend.fs-premium .button-container{float:right;margin-left:7px}@media (max-width: 650px){.fs-modal.fs-modal-license-key-resend.fs-premium .button-container{margin-top:2px}} +.fs-modal{position:fixed;overflow:auto;height:100%;width:100%;top:0;z-index:100000;display:none;background:rgba(0,0,0,0.6)}.fs-modal .fs-modal-dialog{background:transparent;position:absolute;left:50%;margin-left:-298px;padding-bottom:30px;top:-100%;z-index:100001;width:596px}@media (max-width: 650px){.fs-modal .fs-modal-dialog{margin-left:-50%;box-sizing:border-box;padding-left:10px;padding-right:10px;width:100%}.fs-modal .fs-modal-dialog .fs-modal-panel>h3>strong{font-size:1.3em}}.fs-modal.active{display:block}.fs-modal.active:before{display:block}.fs-modal.active .fs-modal-dialog{top:10%}.fs-modal.fs-success .fs-modal-header{border-bottom-color:#46b450}.fs-modal.fs-success .fs-modal-body{background-color:#f7fff7}.fs-modal.fs-warn .fs-modal-header{border-bottom-color:#ffb900}.fs-modal.fs-warn .fs-modal-body{background-color:#fff8e5}.fs-modal.fs-error .fs-modal-header{border-bottom-color:#dc3232}.fs-modal.fs-error .fs-modal-body{background-color:#ffeaea}.fs-modal .fs-modal-body,.fs-modal .fs-modal-footer{border:0;background:#fefefe;padding:20px}.fs-modal .fs-modal-header{border-bottom:#eeeeee solid 1px;background:#fbfbfb;padding:15px 20px;position:relative;margin-bottom:-10px}.fs-modal .fs-modal-header h4{margin:0;padding:0;text-transform:uppercase;font-size:1.2em;font-weight:bold;color:#cacaca;text-shadow:1px 1px 1px #fff;letter-spacing:0.6px;-webkit-font-smoothing:antialiased}.fs-modal .fs-modal-header .fs-close{position:absolute;right:10px;top:12px;cursor:pointer;color:#bbb;-moz-border-radius:20px;-webkit-border-radius:20px;border-radius:20px;padding:3px;-moz-transition:all 0.2s ease-in-out;-o-transition:all 0.2s ease-in-out;-ms-transition:all 0.2s ease-in-out;-webkit-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out}.fs-modal .fs-modal-header .fs-close:hover{color:#fff;background:#aaa}.fs-modal .fs-modal-header .fs-close .dashicons,.fs-modal .fs-modal-header .fs-close:hover .dashicons{text-decoration:none}.fs-modal .fs-modal-body{border-bottom:0}.fs-modal .fs-modal-body p{font-size:14px}.fs-modal .fs-modal-body h2{font-size:20px;line-height:1.5em}.fs-modal .fs-modal-body>div{margin-top:10px}.fs-modal .fs-modal-body>div h2{font-weight:bold;font-size:20px;margin-top:0}.fs-modal .fs-modal-footer{border-top:#eeeeee solid 1px;text-align:right}.fs-modal .fs-modal-footer>.button{margin:0 7px}.fs-modal .fs-modal-footer>.button:first-child{margin:0}.fs-modal .fs-modal-panel>.notice.inline{margin:0;display:none}.fs-modal .fs-modal-panel:not(.active){display:none}.rtl .fs-modal .fs-modal-header .fs-close{right:auto;left:20px}body.has-fs-modal{overflow:hidden}.fs-modal.fs-modal-deactivation-feedback .reason-input,.fs-modal.fs-modal-deactivation-feedback .internal-message{margin:3px 0 3px 22px}.fs-modal.fs-modal-deactivation-feedback .reason-input input,.fs-modal.fs-modal-deactivation-feedback .reason-input textarea,.fs-modal.fs-modal-deactivation-feedback .internal-message input,.fs-modal.fs-modal-deactivation-feedback .internal-message textarea{width:100%}.fs-modal.fs-modal-deactivation-feedback li.reason.has-internal-message .internal-message{border:1px solid #ccc;padding:7px;display:none}@media (max-width: 650px){.fs-modal.fs-modal-deactivation-feedback li.reason li.reason{margin-bottom:10px}.fs-modal.fs-modal-deactivation-feedback li.reason li.reason .reason-input,.fs-modal.fs-modal-deactivation-feedback li.reason li.reason .internal-message{margin-left:29px}.fs-modal.fs-modal-deactivation-feedback li.reason li.reason label{display:table}.fs-modal.fs-modal-deactivation-feedback li.reason li.reason label>span{display:table-cell;font-size:1.3em}}.fs-modal.fs-modal-deactivation-feedback .anonymous-feedback-label{float:left}.fs-modal.fs-modal-deactivation-feedback .fs-modal-panel{margin-top:0 !important}.fs-modal.fs-modal-deactivation-feedback .fs-modal-panel h3{margin-top:0;line-height:1.5em}#the-list .deactivate>.fs-slug{display:none}.fs-modal.fs-modal-subscription-cancellation .fs-price-increase-warning{color:red;font-weight:bold;padding:0 25px;margin-bottom:0}.fs-modal.fs-modal-subscription-cancellation ul.subscription-actions label input{float:left;top:5px;position:relative}.rtl .fs-modal.fs-modal-subscription-cancellation ul.subscription-actions label input{float:right}.fs-modal.fs-modal-subscription-cancellation ul.subscription-actions label span{display:block;margin-left:24px}.rtl .fs-modal.fs-modal-subscription-cancellation ul.subscription-actions label span{margin-left:0;margin-right:24px}.fs-modal.fs-modal-license-activation .fs-modal-body input.fs-license-key{width:100%}.fs-license-options-container table,.fs-license-options-container table select,.fs-license-options-container table .fs-available-license-key{width:100%}.fs-license-options-container table td:first-child{width:1%}.fs-license-options-container table .fs-other-license-key-container label{position:relative;top:6px;float:left;margin-right:5px}.fs-license-options-container table .fs-other-license-key-container div{overflow:hidden;width:auto;height:30px;display:block;top:2px;position:relative}.fs-license-options-container table .fs-other-license-key-container div input{margin:0}.fs-sites-list-container td{cursor:pointer}.fs-modal.fs-modal-developer-license-debug-mode .fs-modal-body input.fs-license-or-user-key{width:100%}.fs-multisite-options-container{margin-top:10px;border:1px solid #ccc;padding:5px}.fs-multisite-options-container a{text-decoration:none}.fs-multisite-options-container a:focus{box-shadow:none}.fs-multisite-options-container a.selected{font-weight:bold}.fs-multisite-options-container.fs-apply-on-all-sites{border:0 none;padding:0}.fs-multisite-options-container.fs-apply-on-all-sites .fs-all-sites-options{border-spacing:0}.fs-multisite-options-container.fs-apply-on-all-sites .fs-all-sites-options td:not(:first-child){display:none}.fs-multisite-options-container .fs-sites-list-container{display:none;overflow:auto}.fs-multisite-options-container .fs-sites-list-container table td{border-top:1px solid #ccc;padding:4px 2px}.fs-modal.fs-modal-license-key-resend .email-address-container{overflow:hidden;padding-right:2px}.fs-modal.fs-modal-license-key-resend.fs-freemium input.email-address{width:300px}.fs-modal.fs-modal-license-key-resend.fs-freemium label{display:block;margin-bottom:10px}.fs-modal.fs-modal-license-key-resend.fs-premium input.email-address{width:100%}.fs-modal.fs-modal-license-key-resend.fs-premium .button-container{float:right;margin-left:7px}@media (max-width: 650px){.fs-modal.fs-modal-license-key-resend.fs-premium .button-container{margin-top:2px}} .rtl .fs-modal.fs-modal-license-key-resend .fs-modal-body .input-container>.email-address-container{padding-left:2px;padding-right:0}.rtl .fs-modal.fs-modal-license-key-resend .fs-modal-body .button-container{float:left;margin-right:7px;margin-left:0}a.show-license-resend-modal{margin-top:4px;display:inline-block}.fs-ajax-loader{position:relative;width:170px;height:20px;margin:auto}.fs-ajax-loader .fs-ajax-loader-bar{position:absolute;top:0;background-color:#0074a3;width:20px;height:20px;-webkit-animation-name:bounce_ajaxLoader;-moz-animation-name:bounce_ajaxLoader;-ms-animation-name:bounce_ajaxLoader;-o-animation-name:bounce_ajaxLoader;animation-name:bounce_ajaxLoader;-webkit-animation-duration:1.5s;-moz-animation-duration:1.5s;-ms-animation-duration:1.5s;-o-animation-duration:1.5s;animation-duration:1.5s;animation-iteration-count:infinite;-o-animation-iteration-count:infinite;-ms-animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite;-moz-animation-iteration-count:infinite;-webkit-animation-direction:normal;-moz-animation-direction:normal;-ms-animation-direction:normal;-o-animation-direction:normal;animation-direction:normal;-moz-transform:0.3;-o-transform:0.3;-ms-transform:0.3;-webkit-transform:0.3;transform:0.3}.fs-ajax-loader .fs-ajax-loader-bar-1{left:0px;animation-delay:0.6s;-o-animation-delay:0.6s;-ms-animation-delay:0.6s;-webkit-animation-delay:0.6s;-moz-animation-delay:0.6s}.fs-ajax-loader .fs-ajax-loader-bar-2{left:19px;animation-delay:0.75s;-o-animation-delay:0.75s;-ms-animation-delay:0.75s;-webkit-animation-delay:0.75s;-moz-animation-delay:0.75s}.fs-ajax-loader .fs-ajax-loader-bar-3{left:38px;animation-delay:0.9s;-o-animation-delay:0.9s;-ms-animation-delay:0.9s;-webkit-animation-delay:0.9s;-moz-animation-delay:0.9s}.fs-ajax-loader .fs-ajax-loader-bar-4{left:57px;animation-delay:1.05s;-o-animation-delay:1.05s;-ms-animation-delay:1.05s;-webkit-animation-delay:1.05s;-moz-animation-delay:1.05s}.fs-ajax-loader .fs-ajax-loader-bar-5{left:76px;animation-delay:1.2s;-o-animation-delay:1.2s;-ms-animation-delay:1.2s;-webkit-animation-delay:1.2s;-moz-animation-delay:1.2s}.fs-ajax-loader .fs-ajax-loader-bar-6{left:95px;animation-delay:1.35s;-o-animation-delay:1.35s;-ms-animation-delay:1.35s;-webkit-animation-delay:1.35s;-moz-animation-delay:1.35s}.fs-ajax-loader .fs-ajax-loader-bar-7{left:114px;animation-delay:1.5s;-o-animation-delay:1.5s;-ms-animation-delay:1.5s;-webkit-animation-delay:1.5s;-moz-animation-delay:1.5s}.fs-ajax-loader .fs-ajax-loader-bar-8{left:133px;animation-delay:1.65s;-o-animation-delay:1.65s;-ms-animation-delay:1.65s;-webkit-animation-delay:1.65s;-moz-animation-delay:1.65s}@-moz-keyframes bounce_ajaxLoader{0%{-moz-transform:scale(1);-o-transform:scale(1);-ms-transform:scale(1);-webkit-transform:scale(1);transform:scale(1);background-color:#0074a3}100%{-moz-transform:scale(0.3);-o-transform:scale(0.3);-ms-transform:scale(0.3);-webkit-transform:scale(0.3);transform:scale(0.3);background-color:#fff}}@-ms-keyframes bounce_ajaxLoader{0%{-moz-transform:scale(1);-o-transform:scale(1);-ms-transform:scale(1);-webkit-transform:scale(1);transform:scale(1);background-color:#0074a3}100%{-moz-transform:scale(0.3);-o-transform:scale(0.3);-ms-transform:scale(0.3);-webkit-transform:scale(0.3);transform:scale(0.3);background-color:#fff}}@-o-keyframes bounce_ajaxLoader{0%{-moz-transform:scale(1);-o-transform:scale(1);-ms-transform:scale(1);-webkit-transform:scale(1);transform:scale(1);background-color:#0074a3}100%{-moz-transform:scale(0.3);-o-transform:scale(0.3);-ms-transform:scale(0.3);-webkit-transform:scale(0.3);transform:scale(0.3);background-color:#fff}}@-webkit-keyframes bounce_ajaxLoader{0%{-moz-transform:scale(1);-o-transform:scale(1);-ms-transform:scale(1);-webkit-transform:scale(1);transform:scale(1);background-color:#0074a3}100%{-moz-transform:scale(0.3);-o-transform:scale(0.3);-ms-transform:scale(0.3);-webkit-transform:scale(0.3);transform:scale(0.3);background-color:#fff}}@keyframes bounce_ajaxLoader{0%{-moz-transform:scale(1);-o-transform:scale(1);-ms-transform:scale(1);-webkit-transform:scale(1);transform:scale(1);background-color:#0074a3}100%{-moz-transform:scale(0.3);-o-transform:scale(0.3);-ms-transform:scale(0.3);-webkit-transform:scale(0.3);transform:scale(0.3);background-color:#fff}}.fs-modal-auto-install #request-filesystem-credentials-form h2,.fs-modal-auto-install #request-filesystem-credentials-form .request-filesystem-credentials-action-buttons{display:none}.fs-modal-auto-install #request-filesystem-credentials-form input[type=password],.fs-modal-auto-install #request-filesystem-credentials-form input[type=email],.fs-modal-auto-install #request-filesystem-credentials-form input[type=text]{-webkit-appearance:none;padding:10px 10px 5px 10px;width:300px;max-width:100%}.fs-modal-auto-install #request-filesystem-credentials-form>div,.fs-modal-auto-install #request-filesystem-credentials-form label,.fs-modal-auto-install #request-filesystem-credentials-form fieldset{width:300px;max-width:100%;margin:0 auto;display:block}.button-primary.warn{box-shadow:0 1px 0 #d2593c;text-shadow:0 -1px 1px #d2593c,1px 0 1px #d2593c,0 1px 1px #d2593c,-1px 0 1px #d2593c;background:#f56a48;border-color:#ec6544 #d2593c #d2593c}.button-primary.warn:hover{background:#fd6d4a;border-color:#d2593c}.button-primary.warn:focus{box-shadow:0 1px 0 #dd6041,0 0 2px 1px #e4a796}.button-primary.warn:active{background:#dd6041;border-color:#d2593c;box-shadow:inset 0 2px 0 #d2593c}.button-primary.warn.disabled{color:#f5b3a1 !important;background:#e76444 !important;border-color:#d85e40 !important;text-shadow:0 -1px 0 rgba(0,0,0,0.1) !important} diff --git a/external/Freemius/assets/css/admin/plugins.css b/external/Freemius/assets/css/admin/plugins.css new file mode 100755 index 00000000..8d76fa3f --- /dev/null +++ b/external/Freemius/assets/css/admin/plugins.css @@ -0,0 +1 @@ +label.fs-tag,span.fs-tag{background:#ffba00;color:#fff;display:inline-block;border-radius:3px;padding:5px;font-size:11px;line-height:11px;vertical-align:baseline}label.fs-tag.fs-warn,span.fs-tag.fs-warn{background:#ffba00}label.fs-tag.fs-info,span.fs-tag.fs-info{background:#00a0d2}label.fs-tag.fs-success,span.fs-tag.fs-success{background:#46b450}label.fs-tag.fs-error,span.fs-tag.fs-error{background:#dc3232}.wp-list-table.plugins .plugin-title span.fs-tag{display:inline-block;margin-left:5px;line-height:10px} diff --git a/external/Freemius/assets/css/customizer.css b/external/Freemius/assets/css/customizer.css index 381bcd1b..75fe403b 100755 --- a/external/Freemius/assets/css/customizer.css +++ b/external/Freemius/assets/css/customizer.css @@ -1 +1 @@ -#fs_customizer_upsell .fs-customizer-plan{padding:10px 20px 20px 20px;border-radius:3px;background:#fff}#fs_customizer_upsell .fs-customizer-plan h2{position:relative;margin:0;line-height:2em;text-transform:uppercase}#fs_customizer_upsell .fs-customizer-plan h2 .button-link{top:-2px}#fs_customizer_upsell .fs-feature{position:relative}#fs_customizer_upsell .dashicons-yes{color:#0085ba;font-size:2em;vertical-align:bottom;margin-left:-7px;margin-right:10px}.rtl #fs_customizer_upsell .dashicons-yes{margin-left:10px;margin-right:-7px}#fs_customizer_upsell .dashicons-editor-help{color:#bbb;cursor:help}#fs_customizer_upsell .dashicons-editor-help .fs-feature-desc{opacity:0;visibility:hidden;-moz-transition:opacity 0.3s ease-in-out;-o-transition:opacity 0.3s ease-in-out;-ms-transition:opacity 0.3s ease-in-out;-webkit-transition:opacity 0.3s ease-in-out;transition:opacity 0.3s ease-in-out;position:absolute;background:#000;color:#fff;font-family:'arial', serif;font-size:12px;padding:10px;z-index:999999;bottom:100%;margin-bottom:5px;left:0;right:0;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;-moz-box-shadow:1px 1px 1px rgba(0,0,0,0.2);-webkit-box-shadow:1px 1px 1px rgba(0,0,0,0.2);box-shadow:1px 1px 1px rgba(0,0,0,0.2);line-height:1.3em;font-weight:bold;text-align:left}.rtl #fs_customizer_upsell .dashicons-editor-help .fs-feature-desc{text-align:right}#fs_customizer_upsell .dashicons-editor-help .fs-feature-desc::after{content:' ';display:block;width:0;height:0;border-style:solid;border-width:5px 5px 0 5px;border-color:#000 transparent transparent transparent;position:absolute;top:100%;left:21px}.rtl #fs_customizer_upsell .dashicons-editor-help .fs-feature-desc::after{right:21px;left:auto}#fs_customizer_upsell .dashicons-editor-help:hover .fs-feature-desc{visibility:visible;opacity:1}#fs_customizer_upsell .button-primary{display:block;text-align:center;margin-top:10px}#fs_customizer_support{display:block !important}#fs_customizer_support .button{float:right}#fs_customizer_support .button-group{width:100%;display:block;margin-top:10px}#fs_customizer_support .button-group .button{float:none;width:50%;text-align:center} +#fs_customizer_upsell .fs-customizer-plan{padding:10px 20px 20px 20px;border-radius:3px;background:#fff}#fs_customizer_upsell .fs-customizer-plan h2{position:relative;margin:0;line-height:2em;text-transform:uppercase}#fs_customizer_upsell .fs-customizer-plan h2 .button-link{top:-2px}#fs_customizer_upsell .fs-feature{position:relative}#fs_customizer_upsell .dashicons-yes{color:#0085ba;font-size:2em;vertical-align:bottom;margin-left:-7px;margin-right:10px}.rtl #fs_customizer_upsell .dashicons-yes{margin-left:10px;margin-right:-7px}#fs_customizer_upsell .dashicons-editor-help{color:#bbb;cursor:help}#fs_customizer_upsell .dashicons-editor-help .fs-feature-desc{opacity:0;visibility:hidden;-moz-transition:opacity 0.3s ease-in-out;-o-transition:opacity 0.3s ease-in-out;-ms-transition:opacity 0.3s ease-in-out;-webkit-transition:opacity 0.3s ease-in-out;transition:opacity 0.3s ease-in-out;position:absolute;background:#000;color:#fff;font-family:'arial', serif;font-size:12px;padding:10px;z-index:999999;bottom:100%;margin-bottom:5px;left:0;right:0;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;-moz-box-shadow:1px 1px 1px rgba(0,0,0,0.2);-webkit-box-shadow:1px 1px 1px rgba(0,0,0,0.2);box-shadow:1px 1px 1px rgba(0,0,0,0.2);line-height:1.3em;font-weight:bold;text-align:left}.rtl #fs_customizer_upsell .dashicons-editor-help .fs-feature-desc{text-align:right}#fs_customizer_upsell .dashicons-editor-help .fs-feature-desc::after{content:' ';display:block;width:0;height:0;border-style:solid;border-width:5px 5px 0 5px;border-color:#000 transparent transparent transparent;position:absolute;top:100%;left:21px}.rtl #fs_customizer_upsell .dashicons-editor-help .fs-feature-desc::after{right:21px;left:auto}#fs_customizer_upsell .dashicons-editor-help:hover .fs-feature-desc{visibility:visible;opacity:1}#fs_customizer_upsell .button-primary{display:block;text-align:center;margin-top:10px}#fs_customizer_support{display:block !important}#fs_customizer_support .button{float:right}#fs_customizer_support .button-group{width:100%;display:block;margin-top:10px}#fs_customizer_support .button-group .button{float:none;width:50%;text-align:center}#customize-theme-controls #accordion-section-freemius_upsell{border-top:1px solid #0085ba !important;border-bottom:1px solid #0085ba !important}#customize-theme-controls #accordion-section-freemius_upsell h3.accordion-section-title{color:#fff;background-color:#0085ba;border-left:4px solid #0085ba;transition:.15s background-color ease-in-out, .15s border-color ease-in-out;outline:none;border-bottom:none !important}#customize-theme-controls #accordion-section-freemius_upsell h3.accordion-section-title:hover{background-color:#008ec2;border-left-color:#0073aa}#customize-theme-controls #accordion-section-freemius_upsell h3.accordion-section-title:after{color:#fff}#customize-theme-controls #accordion-section-freemius_upsell .rtl h3.accordion-section-title{border-left:none;border-right:4px solid #0085ba}#customize-theme-controls #accordion-section-freemius_upsell .rtl h3.accordion-section-title:hover{border-right-color:#0073aa} diff --git a/external/Freemius/assets/scss/_colors.scss b/external/Freemius/assets/scss/_colors.scss deleted file mode 100755 index f41f62a5..00000000 --- a/external/Freemius/assets/scss/_colors.scss +++ /dev/null @@ -1,79 +0,0 @@ -$menu-hover-color: #333; -$darkest-color: #000; -$fms-live-color: #71ae00; -$fms-test-color: #f7941d; -$fms-link-color: #29abe1; -$fms-link-hover-color: darken(#29abe1, 10%); -$body-bkg: #111; -$special-color: #d3135a; -$body-color: #f1f1f1; -$fms-white: #f1f1f1; -$container-bkg: #222; -$container-bkg-odd: #262626; -$container-border-color: #333; -$table-head-bkg: #333; -$table-head-color: #999; -$info-color: #999; -$error-color: #ff0000; - -$fs-logo-blue-color: #29abe1; -$fs-logo-green-color: #71ae00; -$fs-logo-magenta-color: #d3135a; - -// WordPress colors. -$page-header-bkg: #333; -$page-header-color: $fms-white; -$text-dark-color: #333; -$text-light-color: #666; -$text-lightest-color: #999; - -// Notices. -$wp-notice-success-color: #f7fff7; -$wp-notice-success-dark-color: #46b450; -$wp-notice-error-color: #ffeaea; -$wp-notice-error-dark-color: #dc3232; -$wp-notice-warn-color: #fff8e5; -$wp-notice-warn-dark-color: #ffb900; -$fs-notice-promotion-border-color: #00a0d2; -$fs-notice-promotion-bkg: #f2fcff; - -// WP Buttons. -$button-primary-bkg: #6bc406; -$button-primary-color: $fms-white; -$button-secondary-bkg: #333; -$button-secondary-color: $fms-white; -$featured-color: #6bc406; -$wp-selected-color: #0074a3; -$wp-button-alert-border-color: #d2593c; -$wp-button-alert-border-top-color: #ec6544; -$wp-button-alert-shadow-color: #d2593c; -$wp-button-alert-focused-shadow1-color: #dd6041; -$wp-button-alert-focused-shadow2-color: #e4a796; -$wp-button-alert-background-color: #f56a48; -$wp-button-alert-hovered-background-color: #fd6d4a; -$wp-button-alert-active-background-color: #dd6041; -$wp-button-alert-disabled-color: #f5b3a1; -$wp-button-alert-disabled-background-color: #e76444; -$wp-button-alert-disabled-border-color: #d85e40; - -$wordpress_color: #01749A; -$blogger_color: #ff8100; -$wix_color: #fac102; -$shopify_color: #80d100; -$addthis_color: #fe6d4e; -$tumblr_color: #34506b; -$zepo_color: #00baf2; -$jquery_color: #000919; -$javascript_color: #00baf2; -$squarespace_color: #000; - -$blog_color: #ff6600; -$facebook_color: #3b5998; -$twitter_color: #4099ff; -$linkedin_color: #4875b4; -$youtube_color: #ff3333; -$gplus_color: #c63d2d; - -// Tooltip -$tooltip-color: #fff; -$tooltip-bkg-color: rgba(0,0,0,0.8); diff --git a/external/Freemius/assets/scss/_functions.scss b/external/Freemius/assets/scss/_functions.scss deleted file mode 100755 index e69de29b..00000000 diff --git a/external/Freemius/assets/scss/_load.scss b/external/Freemius/assets/scss/_load.scss deleted file mode 100755 index cd587765..00000000 --- a/external/Freemius/assets/scss/_load.scss +++ /dev/null @@ -1,4 +0,0 @@ -@import 'mixins'; -@import "vars"; -@import "functions"; -@import "colors"; diff --git a/external/Freemius/assets/scss/_mixins.scss b/external/Freemius/assets/scss/_mixins.scss deleted file mode 100755 index 1fcea863..00000000 --- a/external/Freemius/assets/scss/_mixins.scss +++ /dev/null @@ -1,270 +0,0 @@ -// ---- CSS3 SASS MIXINS ---- -// https://github.com/madr/css3-sass-mixins -// -// Copyright (C) 2011 by Anders Ytterström -// -// Permission is hereby granted, free of charge, to any person obtaining a copy -// of this software and associated documentation files (the "Software"), to deal -// in the Software without restriction, including without limitation the rights -// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -// copies of the Software, and to permit persons to whom the Software is -// furnished to do so, subject to the following conditions: -// -// The above copyright notice and this permission notice shall be included in -// all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -// THE SOFTWARE. -// - -// ---- LEGACY IE SUPPORT USING FILTERS ---- -// Should IE filters be used or not? -// PROS: gradients, drop shadows etc will be handled by css. -// CONS: will harm the site performance badly, -// especially on sites with heavy rendering and scripting. -$useIEFilters: 0; -// might be 0 or 1. disabled by default. -// ---- /LEGACY IE SUPPORT USING FILTERS ---- - - -@mixin background-size ($value) { - -webkit-background-size: $value; - background-size: $value; -} - -@mixin border-image ($path, $offsets, $repeats) { - -moz-border-image: $path $offsets $repeats; - -o-border-image: $path $offsets $repeats; - -webkit-border-image: $path $offsets $repeats; - border-image: $path $offsets $repeats; -} - -@mixin border-radius ($values...) { - -moz-border-radius: $values; - -webkit-border-radius: $values; - border-radius: $values; - /*-moz-background-clip: padding; - -webkit-background-clip: padding-box; - background-clip: padding-box;*/ -} - -@mixin box-shadow ($values...) { - -moz-box-shadow: $values; - -webkit-box-shadow: $values; - box-shadow: $values; -} - -//@mixin box-shadow ($x, $y, $offset, $hex, $ie: $useIEFilters, $inset: null, $spread:null) { -// -moz-box-shadow: $x $y $offset $spread $hex $inset; -// -webkit-box-shadow: $x $y $offset $spread $hex $inset; -// box-shadow: $x $y $offset $spread $hex $inset; -// -// @if $ie == 1 { -// $iecolor: '#' + red($hex) + green($hex) + blue($hex); -// filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=#{$x}, OffY=#{$y}, Color='#{$iecolor}'); -// -ms-filter: quote(progid:DXImageTransform.Microsoft.dropshadow(OffX=#{$x}, OffY=#{$y}, Color='#{$iecolor}')); -// } -//} - -@mixin box-sizing($value) { - -moz-box-sizing: $value; - -webkit-box-sizing: $value; - box-sizing: $value; -} - -// requires sass 3.2 -@mixin keyframes($name){ - @-moz-keyframes #{$name} { @content; } - @-ms-keyframes #{$name} { @content; } - @-o-keyframes #{$name} { @content; } - @-webkit-keyframes #{$name} { @content; } - @keyframes #{$name} { @content; } -} - -@mixin linear-gradient($from, $to, $ie: $useIEFilters) { - @if $ie != 1 { background-color: $to; } - - background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0, $from),color-stop(1, $to)); - background-image: -webkit-linear-gradient(top, $from, $to); - background-image: -moz-linear-gradient(top, $from, $to); - background-image: -ms-linear-gradient(top, $from, $to); - background-image: -o-linear-gradient(top, $from, $to); - background-image: linear-gradient(top, bottom, $from, $to); - - @if $ie == 1 { - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{$from}', endColorstr='#{$to}'); - } -} - -@mixin horizontal-gradient($startColor: #555, $endColor: #333, $ie: $useIEFilters) { - @if $ie != 1 { background-color: $endColor; } - - background-color: $endColor; - background-image: -webkit-gradient(linear, 0 0, 100% 0, from($startColor), to($endColor)); // Safari 4+, Chrome 2+ - background-image: -webkit-linear-gradient(left, $startColor, $endColor); // Safari 5.1+, Chrome 10+ - background-image: -moz-linear-gradient(left, $startColor, $endColor); // FF 3.6+ - background-image: -o-linear-gradient(left, $startColor, $endColor); // Opera 11.10 - background-image: linear-gradient(to right, $startColor, $endColor); // Standard, IE10 - background-repeat: repeat-x; - @if $ie == 1 { - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{$startColor}', endColorstr='#{$endColor}', GradientType=1); - } -} - -@mixin radial-gradient($from, $to, $ie: $useIEFilters) { - @if $ie != 1 { background-color: $to; } - - background: -moz-radial-gradient(center, circle cover, $from 0%, $to 100%); - background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, $from), color-stop(100%, $to)); - background: -webkit-radial-gradient(center, circle cover, $from 0%, $to 100%); - background: -o-radial-gradient(center, circle cover, $from 0%, $to 100%); - background: -ms-radial-gradient(center, circle cover, $from 0%, $to 100%); - background: radial-gradient(center, circle cover, $from 0%, $to 100%); - background-color: $from; - - @if $ie == 1 { - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#{$from}', endColorstr='#{$to}', GradientType=1); /* IE6-9 fallback on horizontal gradient */ - } -} - -@mixin perspective($perspective) { - -moz-perspective: $perspective; - -ms-perspective: $perspective; - -webkit-perspective: $perspective; - perspective: $perspective; - -moz-transform-style: preserve-3d; - -ms-transform-style: preserve-3d; - -webkit-transform-style: preserve-3d; - transform-style: preserve-3d; -} - -@mixin transform ($transforms) { - -moz-transform: $transforms; - -o-transform: $transforms; - -ms-transform: $transforms; - -webkit-transform: $transforms; - transform: $transforms; -} - - @mixin matrix ($a, $b, $c, $d, $e, $f) { - -moz-transform: matrix($a, $b, $c, $d, #{$e}px, #{$f}px); - -o-transform: matrix($a, $b, $c, $d, $e, $f); - -ms-transform: matrix($a, $b, $c, $d, $e, $f); - -webkit-transform: matrix($a, $b, $c, $d, $e, $f); - transform: matrix($a, $b, $c, $d, $e, $f); - } - - @mixin rotate ($deg) { - @include transform(rotate(#{$deg}deg)); - } - - @mixin scale ($size) { - @include transform(scale(#{$size})); - } - - @mixin translate ($x, $y) { - @include transform(translate($x, $y)); - } - -@mixin transition ($value...) { - -moz-transition: $value; - -o-transition: $value; - -ms-transition: $value; - -webkit-transition: $value; - transition: $value; -} - -@mixin animation($str) { - -webkit-animation: #{$str}; - -moz-animation: #{$str}; - -ms-animation: #{$str}; - -o-animation: #{$str}; - animation: #{$str}; -} - -@mixin animation-name($str) { - -webkit-animation-name: #{$str}; - -moz-animation-name: #{$str}; - -ms-animation-name: #{$str}; - -o-animation-name: #{$str}; - animation-name: #{$str}; -} - -@mixin animation-duration($str) { - -webkit-animation-duration: #{$str}; - -moz-animation-duration: #{$str}; - -ms-animation-duration: #{$str}; - -o-animation-duration: #{$str}; - animation-duration: #{$str}; -} - -@mixin animation-direction($str) { - -webkit-animation-direction: #{$str}; - -moz-animation-direction: #{$str}; - -ms-animation-direction: #{$str}; - -o-animation-direction: #{$str}; - animation-direction: #{$str}; -} - -@mixin animation-delay($str) { - animation-delay:#{$str}; - -o-animation-delay:#{$str}; - -ms-animation-delay:#{$str}; - -webkit-animation-delay:#{$str}; - -moz-animation-delay:#{$str}; -} - -@mixin animation-iteration-count($str) { - animation-iteration-count:#{$str}; - -o-animation-iteration-count:#{$str}; - -ms-animation-iteration-count:#{$str}; - -webkit-animation-iteration-count:#{$str}; - -moz-animation-iteration-count:#{$str}; -} - -@mixin animation-timing-function($str) { - -webkit-animation-timing-function: #{$str}; - -moz-animation-timing-function: #{$str}; - -ms-animation-timing-function: #{$str}; - -o-animation-timing-function: #{$str}; - animation-timing-function: #{$str}; -} - -// ==== /CSS3 SASS MIXINS ==== - -@mixin opacity($opacity) { - opacity: $opacity; - $opacity-ie: $opacity * 100; - filter: alpha(opacity=$opacity-ie); //IE8 -} - -@mixin size($width, $height: $width) -{ - width: $width; - height: $height; -} - -@mixin clearfix -{ - &:after { - content: ""; - display: table; - clear: both; - } -} - -// Placeholder text -@mixin placeholder($color: $input-color-placeholder) { - // Firefox - &::-moz-placeholder { - color: $color; - opacity: 1; // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526 - } - &:-ms-input-placeholder { color: $color; } // Internet Explorer 10+ - &::-webkit-input-placeholder { color: $color; } // Safari and Chrome -} \ No newline at end of file diff --git a/external/Freemius/assets/scss/_start.scss b/external/Freemius/assets/scss/_start.scss deleted file mode 100755 index 6c15ef91..00000000 --- a/external/Freemius/assets/scss/_start.scss +++ /dev/null @@ -1,4 +0,0 @@ -@import "vars"; -@import "colors"; -@import "mixins"; -@import "functions"; \ No newline at end of file diff --git a/external/Freemius/assets/scss/_vars.scss b/external/Freemius/assets/scss/_vars.scss deleted file mode 100755 index 65649725..00000000 --- a/external/Freemius/assets/scss/_vars.scss +++ /dev/null @@ -1,6 +0,0 @@ -$is_production: true; - -$img_common: if($is_production == true, '//img.freemius.com', 'http://img.freemius:8080'); - -$layout_width: 960px; -$admin_mobile_max_width: 782px; \ No newline at end of file diff --git a/external/Freemius/assets/scss/admin/_ajax-loader.scss b/external/Freemius/assets/scss/admin/_ajax-loader.scss deleted file mode 100755 index f748beba..00000000 --- a/external/Freemius/assets/scss/admin/_ajax-loader.scss +++ /dev/null @@ -1,49 +0,0 @@ -$color: $wp-selected-color; -$bkg-color: #fff; -$size: 20; - -.fs-ajax-loader -{ - position: relative; - width: #{8*$size + 10}px; - height: #{$size}px; - margin: auto; - - .fs-ajax-loader-bar - { - position: absolute; - top: 0; - background-color: $color; - width: #{$size}px; - height: #{$size}px; - @include animation-name(bounce_ajaxLoader); - @include animation-duration(1.5s); - @include animation-iteration-count(infinite); - @include animation-direction(normal); - @include transform(.3); - } - - @for $i from 0 through 7 - { - .fs-ajax-loader-bar-#{$i + 1} - { - left: #{$i*($size - 1)}px; - @include animation-delay(#{0.6 + $i*0.15}s); - } - } -} - -@include keyframes(bounce_ajaxLoader) -{ - 0% - { - @include transform(scale(1)); - background-color: $color; - } - - 100% - { - @include transform(scale(.3)); - background-color: $bkg-color; - } -} \ No newline at end of file diff --git a/external/Freemius/assets/scss/admin/_auto-install.scss b/external/Freemius/assets/scss/admin/_auto-install.scss deleted file mode 100755 index b1cac8eb..00000000 --- a/external/Freemius/assets/scss/admin/_auto-install.scss +++ /dev/null @@ -1,33 +0,0 @@ -.fs-modal-auto-install -{ - $max-width: 300px; - - #request-filesystem-credentials-form - { - h2, - .request-filesystem-credentials-action-buttons - { - display: none; - } - - input[type=password], - input[type=email], - input[type=text] - { - -webkit-appearance: none; - padding: 10px 10px 5px 10px; - width: $max-width; - max-width: 100%; - } - - > div, - label, - fieldset - { - width: $max-width; - max-width: 100%; - margin: 0 auto; - display: block; - } - } -} \ No newline at end of file diff --git a/external/Freemius/assets/scss/admin/_buttons.scss b/external/Freemius/assets/scss/admin/_buttons.scss deleted file mode 100755 index a7e02eb1..00000000 --- a/external/Freemius/assets/scss/admin/_buttons.scss +++ /dev/null @@ -1,28 +0,0 @@ -.button-primary.warn { - box-shadow: 0 1px 0 $wp-button-alert-shadow-color; - text-shadow: 0 -1px 1px $wp-button-alert-shadow-color, 1px 0 1px $wp-button-alert-shadow-color, 0 1px 1px $wp-button-alert-shadow-color, -1px 0 1px $wp-button-alert-shadow-color; - background: $wp-button-alert-background-color; - border-color: $wp-button-alert-border-top-color $wp-button-alert-border-color $wp-button-alert-border-color; - - &:hover { - background: $wp-button-alert-hovered-background-color; - border-color: $wp-button-alert-border-color; - } - - &:focus { - box-shadow: 0 1px 0 $wp-button-alert-focused-shadow1-color, 0 0 2px 1px $wp-button-alert-focused-shadow2-color; - } - - &:active { - background: $wp-button-alert-active-background-color; - border-color: $wp-button-alert-border-color; - box-shadow: inset 0 2px 0 $wp-button-alert-shadow-color; - } - - &.disabled { - color: $wp-button-alert-disabled-color !important; - background: $wp-button-alert-disabled-background-color !important; - border-color: $wp-button-alert-disabled-border-color !important; - text-shadow: 0 -1px 0 rgba(0,0,0,.1) !important; - } -} \ No newline at end of file diff --git a/external/Freemius/assets/scss/admin/_deactivation-feedback.scss b/external/Freemius/assets/scss/admin/_deactivation-feedback.scss deleted file mode 100755 index b1672668..00000000 --- a/external/Freemius/assets/scss/admin/_deactivation-feedback.scss +++ /dev/null @@ -1,55 +0,0 @@ -@import "../colors"; - -.fs-modal.fs-modal-deactivation-feedback { - .reason-input, .internal-message { - margin: 3px 0 3px 22px; - - input, textarea { - width: 100%; - } - } - - li.reason { - &.has-internal-message .internal-message { - border: 1px solid lighten($darkest-color, 80%); - padding: 7px; - display: none; - } - - @media (max-width: 650px) { - li.reason { - margin-bottom: 10px; - - .reason-input, .internal-message { - margin-left: 29px; - } - - label { - display: table; - - > span { - display: table-cell; - font-size: 1.3em; - } - } - } - } - } - - .anonymous-feedback-label { - float: left; - } - - .fs-modal-panel { - margin-top: 0 !important; - - h3 { - margin-top: 0; - line-height: 1.5em; - } - } -} - -#the-list .deactivate > .fs-slug { - display: none; -} \ No newline at end of file diff --git a/external/Freemius/assets/scss/admin/_gdpr-consent.scss b/external/Freemius/assets/scss/admin/_gdpr-consent.scss deleted file mode 100755 index 712cc8ad..00000000 --- a/external/Freemius/assets/scss/admin/_gdpr-consent.scss +++ /dev/null @@ -1,81 +0,0 @@ -#fs_marketing_optin -{ - display: none; - margin-top: 10px; - border: 1px solid #ccc; - padding: 10px; - line-height: 1.5em; - - .fs-message - { - display: block; - margin-bottom: 5px; - font-size: 1.05em; - font-weight: 600; - } - - &.error - { - border: 1px solid $fs-logo-magenta-color; - background: #fee; - - .fs-message - { - color: $fs-logo-magenta-color; - } - } - - .fs-input-container - { - margin-top: 5px; - - label - { - margin-top: 5px; - display: block; - - input - { - float: left; - margin: 1px 0 0 0; - } - - &:first-child - { - display: block; - margin-bottom: 2px; - } - } - } - - .fs-input-label - { - display: block; - margin-left: 20px; - - .underlined - { - text-decoration: underline; - } - } -} - -.rtl -{ - #fs_marketing_optin - { - .fs-input-container - { - label input - { - float: right; - } - } - - .fs-input-label - { - margin-left: 0; - margin-right: 20px; - } - } -} \ No newline at end of file diff --git a/external/Freemius/assets/scss/admin/_license-activation.scss b/external/Freemius/assets/scss/admin/_license-activation.scss deleted file mode 100755 index 2c3ddac5..00000000 --- a/external/Freemius/assets/scss/admin/_license-activation.scss +++ /dev/null @@ -1,47 +0,0 @@ -.fs-modal.fs-modal-license-activation { - .fs-modal-body { - input.license_key { - width: 100%; - } - } -} - -#license_options_container { - table { - &, select, #available_license_key { - width: 100%; - } - - td:first-child { - width: 1%; - } - - #other_license_key_container { - label { - position: relative; - top: 6px; - float: left; - margin-right: 5px; - } - - div { - overflow: hidden; - width: auto; - height: 30px; - display: block; - top: 2px; - position: relative; - - input { - margin: 0; - } - } - } - } -} - -#sites_list_container { - td { - cursor: pointer; - } -} \ No newline at end of file diff --git a/external/Freemius/assets/scss/admin/_license-key-resend.scss b/external/Freemius/assets/scss/admin/_license-key-resend.scss deleted file mode 100755 index 6ec9f867..00000000 --- a/external/Freemius/assets/scss/admin/_license-key-resend.scss +++ /dev/null @@ -1,68 +0,0 @@ -.fs-modal.fs-modal-license-key-resend -{ - .email-address-container - { - overflow: hidden; - padding-right: 2px; - } - - &.fs-freemium - { - input.email-address - { - width: 300px; - } - - label - { - display: block; - margin-bottom: 10px; - } - } - - &.fs-premium - { - input.email-address - { - width: 100%; - } - - .button-container - { - float: right; - margin-left: 7px; - - @media (max-width: 650px) { - margin-top: 2px; - } - } - } -} - -.rtl -{ - .fs-modal.fs-modal-license-key-resend - { - .fs-modal-body - { - .input-container > .email-address-container - { - padding-left: 2px; - padding-right: 0; - } - - .button-container - { - float: left; - margin-right: 7px; - margin-left: 0; - } - } - } -} - -a.show-license-resend-modal -{ - margin-top: 4px; - display: inline-block; -} diff --git a/external/Freemius/assets/scss/admin/_modal-common.scss b/external/Freemius/assets/scss/admin/_modal-common.scss deleted file mode 100755 index 3f65617f..00000000 --- a/external/Freemius/assets/scss/admin/_modal-common.scss +++ /dev/null @@ -1,194 +0,0 @@ -@import "../colors"; -@import "../mixins"; - -.fs-modal { - position: fixed; - overflow: auto; - height: 100%; - width: 100%; - top: 0; - z-index: 100000; - display: none; - background: rgba(0, 0, 0, 0.6); - - .fs-modal-dialog { - background: transparent; - position: absolute; - left: 50%; - margin-left: -298px; - padding-bottom: 30px; - top: -100%; - z-index: 100001; - width: 596px; - - @media (max-width: 650px) { - margin-left: -50%; - box-sizing: border-box; - padding-left: 10px; - padding-right: 10px; - width: 100%; - - .fs-modal-panel > h3 > strong { - font-size: 1.3em; - } - } - } - - &.active { - display: block; - - &:before { - display: block; - } - - .fs-modal-dialog { - top: 10%; - } - } - - &.fs-success { - .fs-modal-header { - border-bottom-color: $wp-notice-success-dark-color; - } - - .fs-modal-body { - background-color: $wp-notice-success-color; - } - } - - &.fs-warn { - .fs-modal-header { - border-bottom-color: $wp-notice-warn-dark-color; - } - - .fs-modal-body { - background-color: $wp-notice-warn-color; - } - } - - &.fs-error { - .fs-modal-header { - border-bottom-color: $wp-notice-error-dark-color; - } - - .fs-modal-body { - background-color: $wp-notice-error-color; - } - } - - - .fs-modal-body, - .fs-modal-footer { - border: 0; - background: #fefefe; - padding: 20px; - } - - .fs-modal-header { - border-bottom: #eeeeee solid 1px; - background: #fbfbfb; - padding: 15px 20px; - position: relative; - margin-bottom: -10px; -// z-index: 2; - - h4 { - margin: 0; - padding: 0; - text-transform: uppercase; - font-size: 1.2em; - font-weight: bold; - color: #cacaca; - text-shadow: 1px 1px 1px #fff; - letter-spacing: 0.6px; - -webkit-font-smoothing: antialiased; - } - - .fs-close { - position: absolute; - right: 10px; - top: 12px; - cursor: pointer; - color: #bbb; - @include border-radius(20px); - padding: 3px; - @include transition(all 0.2s ease-in-out); - - &:hover { - color: #fff; - background: #aaa; - } - - &, &:hover - { - .dashicons - { - text-decoration: none; - } - } - } - } - - .fs-modal-body { - border-bottom: 0; - - p { - font-size: 14px; - } - - h2 { - font-size: 20px; - line-height: 1.5em; - } - - > div { - margin-top: 10px; - - h2 { - font-weight: bold; - font-size: 20px; - margin-top: 0; - } - } - } - - .fs-modal-footer { - border-top: #eeeeee solid 1px; - text-align: right; - - > .button { - margin: 0 7px; - - &:first-child { - margin: 0; - } - } - } - - .fs-modal-panel { - > .notice.inline { - margin: 0; - display: none; - } - - &:not(.active) { - display: none; - } - } -} - -.rtl -{ - .fs-modal { - .fs-modal-header { - .fs-close { - right: auto; - left: 20px; - } - } - } -} - -body.has-fs-modal { - overflow: hidden; -} \ No newline at end of file diff --git a/external/Freemius/assets/scss/admin/_multisite-options.scss b/external/Freemius/assets/scss/admin/_multisite-options.scss deleted file mode 100755 index 9f2ab60f..00000000 --- a/external/Freemius/assets/scss/admin/_multisite-options.scss +++ /dev/null @@ -1,40 +0,0 @@ -#multisite_options_container { - margin-top: 10px; - border: 1px solid #ccc; - padding: 5px; - - a { - text-decoration: none; - - &:focus { - box-shadow: none; - } - - &.selected { - font-weight: bold; - } - } - - &.apply-on-all-sites { - border: 0 none; - padding: 0; - - #all_sites_options { - border-spacing: 0; - - td:not(:first-child) { - display: none; - } - } - } - - #sites_list_container { - display: none; - overflow: auto; - - table td { - border-top: 1px solid #ccc; - padding: 4px 2px; - } - } -} \ No newline at end of file diff --git a/external/Freemius/assets/scss/admin/_plugin-upgrade-notice.scss b/external/Freemius/assets/scss/admin/_plugin-upgrade-notice.scss deleted file mode 100755 index ba8862fc..00000000 --- a/external/Freemius/assets/scss/admin/_plugin-upgrade-notice.scss +++ /dev/null @@ -1,8 +0,0 @@ -.plugins p.fs-upgrade-notice -{ - border: 0; - background-color: #d54e21; - padding: 10px; - color: #f9f9f9; - margin-top: 10px; -} \ No newline at end of file diff --git a/external/Freemius/assets/scss/admin/_subscription-cancellation.scss b/external/Freemius/assets/scss/admin/_subscription-cancellation.scss deleted file mode 100755 index c9a86b84..00000000 --- a/external/Freemius/assets/scss/admin/_subscription-cancellation.scss +++ /dev/null @@ -1,30 +0,0 @@ -.fs-modal.fs-modal-subscription-cancellation { - .fs-price-increase-warning { - color: red; - font-weight: bold; - padding: 0 25px; - margin-bottom: 0; - } - - ul.subscription-actions label { - input { - float: left; - top: 5px; - position: relative; - - .rtl & { - float: right; - } - } - - span { - display: block; - margin-left: 24px; - - .rtl & { - margin-left: 0; - margin-right: 24px; - } - } - } -} \ No newline at end of file diff --git a/external/Freemius/assets/scss/admin/_themes.scss b/external/Freemius/assets/scss/admin/_themes.scss deleted file mode 100755 index 7eb40527..00000000 --- a/external/Freemius/assets/scss/admin/_themes.scss +++ /dev/null @@ -1,21 +0,0 @@ -.theme-browser -{ - .theme - { - .fs-premium-theme-badge - { - position: absolute; - top: 10px; - right: 0; - background: $fs-logo-green-color; - color: #fff; - text-transform: uppercase; - padding: 5px 10px; - @include border-radius(3px 0 0 3px); - font-weight: bold; - border-right: 0; - @include box-shadow(0 2px 1px -1px rgba(0, 0, 0, .3)); - font-size: 1.1em; - } - } -} \ No newline at end of file diff --git a/external/Freemius/assets/scss/admin/_tooltip.scss b/external/Freemius/assets/scss/admin/_tooltip.scss deleted file mode 100755 index d48f52dc..00000000 --- a/external/Freemius/assets/scss/admin/_tooltip.scss +++ /dev/null @@ -1,66 +0,0 @@ -.fs-tooltip-trigger -{ - &:not(a) - { - cursor: help; - } - - position: relative; - - .fs-tooltip - { - opacity: 0; - visibility: hidden; - @include transition(opacity 0.3s ease-in-out); - position: absolute; - background: $tooltip-bkg-color; - color: $tooltip-color; - font-family: 'arial', serif; - font-size: 12px; - padding: 10px; - z-index: 999999; - bottom: 100%; - margin-bottom: 5px; - left: 0; - right: 0; - @include border-radius(5px); - @include box-shadow(1px 1px 1px rgba(0, 0, 0, 0.2)); - line-height: 1.3em; - font-weight: bold; - text-align: left; - - .rtl & - { - text-align: right; - } - - &::after - { - content: ' '; - display: block; - width: 0; - height: 0; - border-style: solid; - border-width: 5px 5px 0 5px; - border-color: $tooltip-bkg-color transparent transparent transparent; - position: absolute; - top: 100%; - left: 21px; - - .rtl & - { - right: 21px; - left: auto; - } - } - } - - &:hover - { - .fs-tooltip - { - visibility: visible; - opacity: 1; - } - } -} \ No newline at end of file diff --git a/external/Freemius/assets/scss/admin/account.scss b/external/Freemius/assets/scss/admin/account.scss deleted file mode 100755 index 01e0644d..00000000 --- a/external/Freemius/assets/scss/admin/account.scss +++ /dev/null @@ -1,302 +0,0 @@ -@import "../start"; - -#fs_account -{ - .postbox, - .widefat - { - max-width: 700px; - } - - h3 - { - font-size: 1.3em; - padding: 12px 15px; - margin: 0 0 12px 0; - line-height: 1.4; - border-bottom: 1px solid #F1F1F1; - - .dashicons { - width: 26px; - height: 26px; - font-size: 1.3em; - } - } - - i.dashicons - { - font-size: 1.2em; - height: 1.2em; - width: 1.2em; - } - - .dashicons - { - vertical-align: middle; - } - - .fs-header-actions - { - position: absolute; - top: 17px; - right: 15px; - font-size: 0.9em; - - ul - { - margin: 0; - } - - li - { - form - { - display: inline-block; - } - - float: left; - a - { - text-decoration: none; - } - } - } -} - -#fs_account_details .button-group { - float: right; -} - -.rtl #fs_account .fs-header-actions -{ - left: 15px; - right: auto; -} - -.fs-key-value-table -{ - width: 100%; - - form - { - display: inline-block; - } - - tr - { - td:first-child - { - nobr - { - font-weight: bold; - } - - text-align: right; - - form - { - display: block; - } - } - - td.fs-right - { - text-align: right; - } - - &.fs-odd - { - background: #ebebeb; - } - } - - td, th - { - padding: 10px; - } - - code { - line-height: 28px; - } - - var, code, input[type="text"] - { - color: #0073AA; - font-size: 16px; - background: none; - } - - input[type="text"] { - width: 100%; - font-weight: bold; - } -} - -label.fs-tag -{ - background: #ffba00; - color: #fff; - display: inline-block; - border-radius: 3px; - padding: 5px; - font-size: 11px; - line-height: 11px; - vertical-align: baseline; - - &.fs-warn - { - background: #ffba00; - } - &.fs-success - { - background: #46b450; - } - &.fs-error - { - background: #dc3232; - } -} - -#fs_sites -{ - .fs-scrollable-table - { - .fs-table-body { - max-height: 200px; - overflow: auto; - border: 1px solid #e5e5e5; - - & > table.widefat { - border: none !important; - } - } - - .fs-main-column { - width: 100%; - } - - .fs-site-details - { - td:first-of-type - { - text-align: right; - color: grey; - width: 1px; - } - - td:last-of-type - { - text-align: right; - } - } - - .fs-install-details table - { - tr td - { - width: 1px; - white-space: nowrap; - - &:last-of-type - { - width: auto; - } - } - } - } -} - -#fs_addons -{ - h3 - { - border: none; - margin-bottom: 0; - padding: 4px 5px; - } - - td - { - vertical-align: middle; - } - - thead { - white-space: nowrap; - } - - td:first-child, - th:first-child - { - text-align: left; - font-weight: bold; - } - td:last-child, - th:last-child - { - text-align: right; - } - th - { - font-weight: bold; - } -} - -#fs_billing_address { - width: 100%; - - tr { - td { - width: 50%; - padding: 5px; - } - - &:first-of-type { - td { - padding-top: 0; - } - } - } - - @mixin read-mode { - border-color: transparent; - color: #777; - border-bottom: 1px dashed #ccc; - padding-left: 0; - background: none; - } - - span { - font-weight: bold; - } - - input, select { - @include placeholder(transparent); - - display: block; - width: 100%; - margin-top: 5px; - - &.fs-read-mode { - @include read-mode(); - } - } - - - &.fs-read-mode { - td span { - display: none; - } - - input, select - { - @include read-mode(); - @include placeholder(#ccc); - } - } - - - button { - display: block; - width: 100%; - } -} \ No newline at end of file diff --git a/external/Freemius/assets/scss/admin/add-ons.scss b/external/Freemius/assets/scss/admin/add-ons.scss deleted file mode 100755 index f1636cde..00000000 --- a/external/Freemius/assets/scss/admin/add-ons.scss +++ /dev/null @@ -1,449 +0,0 @@ -@import "../start"; - -#fs_addons -{ - .fs-cards-list - { - list-style: none; - - .fs-card - { - float: left; - // height: 185px; // With reviews/ratings - height: 152px; - width: 310px; - padding: 0; - margin: 0 0 30px 30px; - font-size: 14px; - list-style: none; - border: 1px solid #ddd; - cursor: pointer; - position: relative; - - .fs-overlay - { - position: absolute; - left: 0; - right: 0; - bottom: 0; - top: 0; - z-index: 9; - } - - .fs-inner - { - background-color: #fff; - overflow: hidden; - height: 100%; - position: relative; - - ul - { - @include transition(all, 0.15s); - left: 0; - right: 0; - top: 0; - position: absolute; - } - - li - { - list-style: none; - line-height: 18px; - padding: 0 15px; - width: 100%; - display: block; - @include box-sizing(border-box); - } - - .fs-card-banner - { - padding: 0; - margin: 0; - line-height: 0; - display: block; - height: 100px; - background-repeat: repeat-x; - background-size: 100% 100%; - @include transition(all, 0.15s); - } - - .fs-title - { - margin: 10px 0 0 0; - height: 18px; - overflow: hidden; - color: #000; - white-space: nowrap; - text-overflow: ellipsis; - font-weight: bold; - } - - .fs-offer - { - font-size: 0.9em; - } - - .fs-description - { - background-color: #f9f9f9; - padding: 10px 15px 100px 15px; - border-top: 1px solid #eee; - margin: 0 0 10px 0; - color: #777; - } - - .fs-tag - { - position: absolute; - top: 10px; - right: 0px; - background: greenyellow; - display: block; - padding: 2px 10px; - @include box-shadow(1px 1px 1px rgba(0,0,0,0.3)); - text-transform: uppercase; - font-size: 0.9em; - font-weight: bold; - } - - .fs-cta - { - .button - { - position: absolute; - top: 112px; - right: 10px; - } - } - } - - @media screen and (min-width: 960px) { - &:hover - { - .fs-overlay - { - border: 2px solid $fms-link-color; - margin-left: -1px; - margin-top: -1px; - } - - .fs-inner - { - ul - { - top: -100px; - } - - .fs-card-banner - { - // background-position: 50% -100px; - } - - .fs-title, - .fs-offer - { - color: $fms-link-color; - } - } - } - } - } - } -} - -#TB_window -{ - &, iframe - { - width: 772px !important; - } -} - -#plugin-information -{ - #section-description - { - h2, h3, p, b, i, blockquote, li, ul, ol - { - clear: none; - } - - .fs-selling-points - { - padding-bottom: 10px; - border-bottom: 1px solid #ddd; - - ul - { - margin: 0; - - li - { - padding: 0; - list-style: none outside none; - - i.dashicons - { - color: $fs-logo-green-color; - font-size: 3em; - vertical-align: middle; - line-height: 30px; - float: left; - margin: 0 0 0 -15px; - } - - h3 - { - margin: 1em 30px !important; - } - } - } - } - - .fs-screenshots - { - @include clearfix(); - ul - { - list-style: none; - margin: 0; - - li - { - width: 225px; - height: 225px; - float: left; - margin-bottom: 20px; - @include box-sizing(content-box); - - a - { - display: block; - width: 100%; - height: 100%; - border: 1px solid; - @include box-shadow(1px 1px 1px rgba(0, 0, 0, 0.2)); - background-size: cover; - } - - &.odd - { - margin-right: 20px; - } - } - } - } - } - - .plugin-information-pricing - { - $pricing_color: #FFFEEC; - $borders_color: #DDD; - margin: -16px; - // padding: 20px; - border-bottom: 1px solid $borders_color; - - .fs-plan - { - - h3 - { - margin-top: 0; - padding: 20px; - font-size: 16px; - } - - .nav-tab-wrapper - { - border-bottom: 1px solid $borders_color; - - .nav-tab - { - cursor: pointer; - position: relative; - padding: 0 10px; - font-size: 0.9em; - - label - { - text-transform: uppercase; - color: green; - background: greenyellow; - position: absolute; - left: -1px; - right: -1px; - bottom: 100%; - border: 1px solid darkgreen; - padding: 2px; - text-align: center; - font-size: 0.9em; - line-height: 1em; - } - - &.nav-tab-active - { - cursor: default; - background: $pricing_color; - border-bottom-color: $pricing_color; - } - } - } - - &.fs-single-cycle - { - h3 - { - background: $pricing_color; - margin: 0; - padding-bottom: 0; - color: #0073aa; - } - - .nav-tab-wrapper, - .fs-billing-frequency - { - display: none; - } - } - - .fs-pricing-body - { - background: $pricing_color; - padding: 20px; - } - - .button - { - width: 100%; - text-align: center; - font-weight: bold; - text-transform: uppercase; - font-size: 1.1em; - } - - label - { - white-space: nowrap; - } - - var { - font-style: normal; - } - - .fs-billing-frequency, - .fs-annual-discount - { - text-align: center; - display: block; - font-weight: bold; - margin-bottom: 10px; - text-transform: uppercase; - background: #F3F3F3; - padding: 2px; - border: 1px solid #ccc; - } - - .fs-annual-discount - { - text-transform: none; - color: green; - background: greenyellow; - } - - ul.fs-trial-terms - { - font-size: 0.9em; - - i - { - float: left; - margin: 0 0 0 -15px; - } - - li - { - margin: 10px 0 0 0; - } - } - } - } - - #section-features - { - .fs-features - { - margin: -20px -26px; - } - - table - { - width: 100%; - border-spacing: 0; - border-collapse: separate; - - thead - { - th - { - padding: 10px 0; - } - - .fs-price - { - color: $fs-logo-green-color; - font-weight: normal; - display: block; - text-align: center; - } - } - - tbody - { - td - { - border-top: 1px solid #ccc; - padding: 10px 0; - text-align: center; - width: 100px; - color: $fs-logo-green-color; - - &:first-child - { - text-align: left; - width: auto; - color: inherit; - padding-left: 26px; - } - } - tr.fs-odd - { - td - { - background: #fefefe; - } - } - } - } - - .dashicons-yes - { - width: 30px; - height: 30px; - font-size: 30px; - } - } -} - -@media screen and (max-width: 961px) { - #fs_addons - { - .fs-cards-list - { - .fs-card - { - height: 265px; - } - } - } -} \ No newline at end of file diff --git a/external/Freemius/assets/scss/admin/affiliation.scss b/external/Freemius/assets/scss/admin/affiliation.scss deleted file mode 100755 index 469d24eb..00000000 --- a/external/Freemius/assets/scss/admin/affiliation.scss +++ /dev/null @@ -1,97 +0,0 @@ -@import "../start"; - -#fs_affiliation_content_wrapper { - #messages { - margin-top: 25px; - } - - h3 { - font-size: 24px; - padding: 0; - margin-left: 0; - } - - ul { - li { - @include box-sizing(border-box); - list-style-type: none; - - &:before { - content: '✓'; - margin-right: 10px; - font-weight: bold; - } - } - } - - p:not(.description), li, label { - font-size: 16px !important; - line-height: 26px !important; - } - - .button { - margin-top: 20px; - margin-bottom: 7px; - line-height: 35px; - height: 40px; - font-size: 16px; - - cancel_button { - margin-right: 5px; - } - } - - form { - .input-container { - .input-label { - font-weight: bold; - display: block; - width: 100%; - } - - &.input-container-text { - label, input, textarea { - display: block; - } - } - - margin-bottom: 15px; - - #add_domain, .remove-domain { - text-decoration: none; - display: inline-block; - margin-top: 3px; - - &:focus { - box-shadow: none; - } - - &.disabled { - color: #aaa; - cursor: default; - } - } - } - - #extra_domains_container { - .description { - margin-top: 0; - position: relative; - top: -4px; - } - - .extra-domain-input-container { - margin-bottom: 15px; - - .domain { - display: inline-block; - margin-right: 5px; - - &:last-of-type { - margin-bottom: 0; - } - } - } - } - } -} \ No newline at end of file diff --git a/external/Freemius/assets/scss/admin/checkout.scss b/external/Freemius/assets/scss/admin/checkout.scss deleted file mode 100755 index f60ab4de..00000000 --- a/external/Freemius/assets/scss/admin/checkout.scss +++ /dev/null @@ -1,5 +0,0 @@ -@media screen and (max-width: 782px) { - #wpbody-content { - padding-bottom: 0 !important; - } -} \ No newline at end of file diff --git a/external/Freemius/assets/scss/admin/common.scss b/external/Freemius/assets/scss/admin/common.scss deleted file mode 100755 index 4bbba1fc..00000000 --- a/external/Freemius/assets/scss/admin/common.scss +++ /dev/null @@ -1,220 +0,0 @@ -@import "../start"; -@import "themes"; - -#fs_frame -{ - line-height: 0; - font-size: 0; -} - -.fs-full-size-wrapper -{ - margin: 40px 0 -65px -20px; - - @media (max-width: 600px) { - margin: 0 0 -65px -10px; - } -} - -.fs-notice -{ - position: relative; - - &.fs-has-title - { - margin-bottom: 30px !important; - } - - &.success - { - color: green; - // font-weight: normal; - } - - &.promotion - { - border-color: $fs-notice-promotion-border-color !important; - background-color: $fs-notice-promotion-bkg !important; - } - - .fs-notice-body - { - margin: .5em 0; - padding: 2px; - } - - .fs-close - { - // position: absolute; - // top: 2px; - // bottom: 2px; - // right: 2px; - // min-width: 100px; - // text-align: center; - // padding-right: 2px; - cursor: pointer; - color: #aaa; - float: right; - - &:hover - { - color: #666; - // background: #A9A9A9; - } - - > * - { - margin-top: 7px; - display: inline-block; - } - } - - label.fs-plugin-title - { - background: rgba(0, 0, 0, 0.3); - color: #fff; - padding: 2px 10px; - position: absolute; - top: 100%; - bottom: auto; - right: auto; - @include border-radius(0 0 3px 3px); - left: 10px; - font-size: 12px; - font-weight: bold; - cursor: auto; - } -} - -div.fs-notice -{ - &.updated, - &.success, - &.promotion - { - display: block !important; - } -} - -.rtl .fs-notice -{ - .fs-close - { - // left: 2px; - // right: auto; - // padding-right: 0; - // padding-left: 2px; - float: left; - } -} - -.fs-secure-notice -{ - position: fixed; - top: 32px; - left: 160px; - right: 0; - background: rgb(235, 253, 235); - padding: 10px 20px; - color: green; - z-index: 9999; - @include box-shadow(0 2px 2px rgba(6, 113, 6, 0.3)); - @include opacity(0.95); - - &:hover - { - @include opacity(1); - } - - a.fs-security-proof - { - color: green; - text-decoration: none; - } -} - -@media screen and (max-width: 960px) { - .fs-secure-notice - { - left: 36px; - } -} - -@media screen and (max-width: 600px) { - .fs-secure-notice - { - display: none; - } -} - -@media screen and (max-width: 500px) { - #fs_promo_tab - { - display: none; - } -} - -@media screen and (max-width: 782px) { - .fs-secure-notice - { - left: 0; - top: 46px; - text-align: center; - } -} - -span.fs-submenu-item.fs-sub:before -{ - // Add small arrow. - content: '\21B3'; - padding: 0 5px; -} - -.rtl -{ - span.fs-submenu-item.fs-sub:before - { - // Add small RTL arrow. - content: '\21B2'; - } -} - -.fs-submenu-item -{ - &.pricing - { - &.upgrade-mode - { - color: greenyellow; - } - - &.trial-mode - { - color: #83e2ff; - } - } -} - -#adminmenu .update-plugins.fs-trial -{ - background-color: #00b9eb; -} -.fs-ajax-spinner -{ - border: 0; - width: 20px; - height: 20px; - margin-right: 5px; - vertical-align: sub; - display: inline-block; - background: url('/wp-admin/images/wpspin_light-2x.gif'); - background-size: contain; -} - -.wrap.fs-section { - h2 { - text-align: left; - } -} - -@import "plugin-upgrade-notice"; \ No newline at end of file diff --git a/external/Freemius/assets/scss/admin/connect.scss b/external/Freemius/assets/scss/admin/connect.scss deleted file mode 100755 index c147fb65..00000000 --- a/external/Freemius/assets/scss/admin/connect.scss +++ /dev/null @@ -1,548 +0,0 @@ -@import "../start"; - -$form_width: 480px; - -#fs_connect -{ - width: $form_width; - @include box-shadow(0px 1px 2px rgba(0, 0, 0, 0.3)); - margin: 20px 0; - - @media screen and (max-width: ($form_width - 1)) { - @include box-shadow(none); - width: auto; - margin: 0 0 0 -10px; - } - - .fs-content - { - background: #fff; - padding: 15px 20px; - - .fs-error { - background: snow; - color: $fs-logo-magenta-color; - border: 1px solid $fs-logo-magenta-color; - @include box-shadow(0 1px 1px 0 rgba(0,0,0,.1)); - text-align: center; - padding: 5px; - margin-bottom: 10px; - } - - p - { - margin: 0; - padding: 0; - font-size: 1.2em; - } - } - - .fs-license-key-container { - position: relative; - width: 280px; - margin: 10px auto 0 auto; - - input { - width: 100%; - } - - .dashicons { - position: absolute; - top: 5px; - right: 5px; - } - } - - &.require-license-key { - #sites_list_container { - td { - cursor: pointer; - } - } - } - - #delegate_to_site_admins { - margin-right: 15px; - float: right; - height: 26px; - vertical-align: middle; - line-height: 37px; - font-weight: bold; - border-bottom: 1px dashed; - text-decoration: none; - - &.rtl { - margin-left: 15px; - margin-right: 0; - } - } - - .fs-actions - { - padding: 10px 20px; - background: #C0C7CA; - - .button - { - padding: 0 10px 1px; - line-height: 35px; - height: 37px; - font-size: 16px; - margin-bottom: 0; - - .dashicons - { - font-size: 37px; - margin-left: -8px; - margin-right: 12px; - } - - &.button-primary - { - padding-right: 15px; - padding-left: 15px; - - &:after - { - content: ' \279C'; - } - - &.fs-loading - { - &:after - { - content: ''; - } - } - } - - &.button-secondary - { - float: right; - } - } - - // .fs-skip - // { - // line-height: 38px; - // vertical-align: middle; - // text-decoration: none; - // margin-left: 10px; - // } - } - - &.fs-anonymous-disabled - { - .fs-actions - { - .button.button-primary - { - width: 100%; - } - } - } - - .fs-permissions - { - padding: 10px 20px; - background: #FEFEFE; - // background: #F1F1F1; - @include transition(background 0.5s ease); - - .fs-license-sync-disclaimer { - text-align: center; - margin-top: 0; - } - - .fs-trigger - { - font-size: 0.9em; - text-decoration: none; - text-align: center; - display: block; - } - - ul - { - height: 0; - overflow: hidden; - margin: 0; - - li - { - margin-bottom: 12px; - - &:last-child - { - margin-bottom: 0; - } - - i.dashicons - { - float: left; - font-size: 40px; - width: 40px; - height: 40px; - } - - div - { - margin-left: 55px; - - span - { - font-weight: bold; - text-transform: uppercase; - color: #23282d; - } - - p - { - margin: 2px 0 0 0; - } - } - } - } - - &.fs-open - { - background: #fff; - - ul - { - height: auto; - margin: 20px 20px 10px 20px; - } - } - - @media screen and (max-width: ($form_width - 1)) { - background: #fff; - - .fs-trigger - { - display: none; - } - - ul - { - height: auto; - margin: 20px; - } - } - } - - .fs-freemium-licensing { - padding: 8px; -// background: #0085BA; - background: #777; - color: #fff; - - p { - text-align: center; - display: block; - margin: 0; - padding: 0; - } - - a { - color: #C2EEFF; - text-decoration: underline; - } - } - - $icon_size: 80px; - $wp_logo_padding: $icon_size / 10; - $icons_top: 10px; - - .fs-visual - { - padding: 12px; - line-height: 0; - background: #fafafa; - height: $icon_size; - position: relative; - - .fs-site-icon - { - position: absolute; - left: 20px; - top: $icons_top; - } - - .fs-connect-logo - { - position: absolute; - right: 20px; - top: $icons_top; - } - - .fs-plugin-icon - { - position: absolute; - top: $icons_top; - left: 50%; - margin-left: - ($icon_size / 2); - } - - .fs-plugin-icon, - .fs-site-icon, - img, - object - { - width: $icon_size; - height: $icon_size; - } - - .dashicons-wordpress - { - font-size: $icon_size - ($wp_logo_padding * 2); - background: $wordpress_color; - color: #fff; - width: $icon_size - ($wp_logo_padding * 2); - height: $icon_size - ($wp_logo_padding * 2); - padding: $wp_logo_padding; - } - - .dashicons-plus - { - position: absolute; - top: 50%; - font-size: 30px; - margin-top: -10px; - color: #bbb; - - &.fs-first - { - left: 28%; - } - &.fs-second - { - left: 65%; - } - } - - .fs-plugin-icon, - .fs-connect-logo, - .fs-site-icon - { - border: 1px solid #ccc; - padding: 1px; - background: #fff; - } - } - - .fs-terms - { - text-align: center; - font-size: 0.85em; - padding: 5px; - background: rgba(0, 0, 0, 0.05); - - &, a - { - color: #999; - } - - a - { - text-decoration: none; - } - } -} - -@import "multisite-options"; -@import "tooltip"; -@import "gdpr-consent"; - -.rtl -{ - #fs_connect - { - .fs-actions - { - padding: 10px 20px; - background: #C0C7CA; - - .button - { - .dashicons - { - font-size: 37px; - margin-left: -8px; - margin-right: 12px; - } - - &.button-primary - { - &:after - { - content: ' \000bb'; - } - - &.fs-loading - { - &:after - { - content: ''; - } - } - } - - &.button-secondary - { - float: left; - } - } - } - - .fs-permissions - { - ul - { - li - { - div - { - margin-right: 55px; - margin-left: 0; - } - - i.dashicons - { - float: right; - } - - } - } - } - - .fs-visual - { - .fs-site-icon - { - right: 20px; - left: auto; - } - - .fs-connect-logo - { - right: auto; - left: 20px; - } - } - } -} - -#fs_theme_connect_wrapper { - position: fixed; - top: 0; - height: 100%; - width: 100%; - z-index: 99990; - background: rgba(0, 0, 0, 0.75); - text-align: center; - overflow-y: auto; - - &:before { - content: ""; - display: inline-block; - vertical-align: middle; - height: 100%; - } - - > button.close { - color: white; - cursor: pointer; - height: 40px; - width: 40px; - position: absolute; - right: 0; - border: 0; - background-color: transparent; - top: 32px; - } - - #fs_connect { - top: 0; - text-align: left; - display: inline-block; - vertical-align: middle; - margin-top: 52px; - margin-bottom: 20px; - - .fs-terms - { - background: rgba(140, 140, 140, 0.64); - - &, a - { - color: #c5c5c5; - } - } - } -} - -.wp-pointer-content -{ - #fs_connect - { - margin: 0; - @include box-shadow(none); - } -} - -.fs-opt-in-pointer -{ - .wp-pointer-content - { - padding: 0; - } - - &.wp-pointer-top - { - .wp-pointer-arrow - { - border-bottom-color: #dfdfdf; - } - .wp-pointer-arrow-inner - { - border-bottom-color: #fafafa; - } - } - - &.wp-pointer-bottom - { - .wp-pointer-arrow - { - border-top-color: #dfdfdf; - } - .wp-pointer-arrow-inner - { - border-top-color: #fafafa; - } - } - - &.wp-pointer-left - { - .wp-pointer-arrow - { - border-right-color: #dfdfdf; - } - .wp-pointer-arrow-inner - { - border-right-color: #fafafa; - } - } - - &.wp-pointer-right - { - .wp-pointer-arrow - { - border-left-color: #dfdfdf; - } - .wp-pointer-arrow-inner - { - border-left-color: #fafafa; - } - } -} diff --git a/external/Freemius/assets/scss/admin/debug.scss b/external/Freemius/assets/scss/admin/debug.scss deleted file mode 100755 index c8a81c5b..00000000 --- a/external/Freemius/assets/scss/admin/debug.scss +++ /dev/null @@ -1,135 +0,0 @@ -@import "../start"; - -.switch -{ - position: relative; - display: inline-block; - font-size: 1.6em; - font-weight: bold; - color: #ccc; - text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.8); - height: 18px; - padding: 6px 6px 5px 6px; - border: 1px solid #ccc; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 4px; - background: #ececec; - box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1), inset 0px 1px 3px 0px rgba(0, 0, 0, 0.1); - cursor: pointer; - - span - { - display: inline-block; width: 35px; - text-transform: uppercase; - - &.on - { - color: $button-primary-bkg; - } - } - - .toggle - { - position: absolute; - top: 1px; - width: 37px; - height: 25px; - border: 1px solid #ccc; - border: 1px solid rgba(0, 0, 0, 0.3); - border-radius: 4px; - background: #fff; - background: -moz-linear-gradient(top, #ececec 0%, #fff 100%); - background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ececec), color-stop(100%, #fff)); - background: -webkit-linear-gradient(top, #ececec 0%, #fff 100%); - background: -o-linear-gradient(top, #ececec 0%, #fff 100%); - background: -ms-linear-gradient(top, #ececec 0%, #fff 100%); - background: linear-gradient(top, #ececec 0%, #fff 100%); - box-shadow: inset 0px 1px 0px 0px rgba(255, 255, 255, 0.5); - z-index: 999; - @include transition(all 0.15s ease-in-out); - } - - &.on .toggle - { - left: 2%; - } - &.off .toggle - { - left: 54%; - } - - /* Round switch */ - &.round - { - padding: 0px 20px; - border-radius: 40px; - - .toggle - { - border-radius: 40px; - width: 14px; - height: 14px; - } - - &.on .toggle - { - left: 3%; - background: $button-primary-bkg; - } - &.off .toggle - { - left: 58%; - } - } -} - -.switch-label -{ - font-size: 20px; - line-height: 31px; - margin: 0 5px; -} - -#fs_log_book { - table { - font-family: Consolas,Monaco,monospace; - font-size: 12px; - - th { - color: #ccc; - } - - tr { - background: #232525; - - &.alternate { - background: #2b2b2b; - } - - td { - &.fs-col--logger { - color: #5a7435; - } - &.fs-col--type { - color: #ffc861; - } - &.fs-col--function { - color: #a7b7b1; - font-weight: bold; - } - &.fs-col--message { - &, a - { - color: #9a73ac !important; - } - } - &.fs-col--file { - color: #d07922; - } - &.fs-col--timestamp { - color: #6596be; - } - } - } - } -} \ No newline at end of file diff --git a/external/Freemius/assets/scss/admin/dialog-boxes.scss b/external/Freemius/assets/scss/admin/dialog-boxes.scss deleted file mode 100755 index f4408a3b..00000000 --- a/external/Freemius/assets/scss/admin/dialog-boxes.scss +++ /dev/null @@ -1,10 +0,0 @@ -@import "../start"; -@import "modal-common"; -@import "deactivation-feedback"; -@import "subscription-cancellation"; -@import "license-activation"; -@import "multisite-options"; -@import "license-key-resend"; -@import "ajax-loader"; -@import "auto-install"; -@import "buttons"; \ No newline at end of file diff --git a/external/Freemius/assets/scss/admin/gdpr-optin-notice.scss b/external/Freemius/assets/scss/admin/gdpr-optin-notice.scss deleted file mode 100755 index 8d0e3e41..00000000 --- a/external/Freemius/assets/scss/admin/gdpr-optin-notice.scss +++ /dev/null @@ -1,17 +0,0 @@ -.fs-notice[data-id^="gdpr_optin_actions"] -{ - .underlined { - text-decoration: underline; - } - - ul { - .button, .action-description { - vertical-align: middle; - } - - .action-description { - display: inline-block; - margin-left: 3px; - } - } -} \ No newline at end of file diff --git a/external/Freemius/assets/scss/admin/index.php b/external/Freemius/assets/scss/admin/index.php deleted file mode 100755 index 0316c6a6..00000000 --- a/external/Freemius/assets/scss/admin/index.php +++ /dev/null @@ -1,3 +0,0 @@ -_is_multisite_integrated && // Themes are always network activated, but the ACTUAL activation is per site. $this->is_plugin() && - ( is_plugin_active_for_network( $this->_plugin_basename ) || - // Plugin network level activation or uninstall. - is_plugin_inactive( $this->_plugin_basename ) ) + ( + is_plugin_active_for_network( $this->_plugin_basename ) || + // Plugin network level activation or uninstall. + ( fs_is_network_admin() && is_plugin_inactive( $this->_plugin_basename ) ) + ) ); $this->_storage->set_network_active( @@ -409,6 +428,17 @@ private function __construct( $module_id, $slug = false, $is_init = false ) { $this->is_delegated_connection() ); + if ( ! isset( $this->_storage->is_network_activated ) ) { + $this->_storage->is_network_activated = $this->_is_network_active; + } + + if ( $this->_storage->is_network_activated != $this->_is_network_active ) { + // Update last activation level. + $this->_storage->is_network_activated = $this->_is_network_active; + + $this->maybe_adjust_storage(); + } + #region Migration if ( is_multisite() ) { @@ -471,13 +501,13 @@ private function __construct( $module_id, $slug = false, $is_init = false ) { ); if ( 'true' === fs_request_get( 'fs_clear_api_cache' ) || - 'true' === fs_request_is_action( 'restart_freemius' ) + fs_request_is_action( 'restart_freemius' ) ) { FS_Api::clear_cache(); $this->_cache->clear(); } - $this->_register_hooks(); + $this->register_constructor_hooks(); /** * Starting from version 2.0.0, `FS_Site` entities no longer have the `plan` property and have `plan_id` @@ -493,6 +523,188 @@ private function __construct( $module_id, $slug = false, $is_init = false ) { $this->_version_updates_handler(); } + /** + * @author Leo Fajardo (@leorw) + * @since 2.3.0 + */ + private function maybe_adjust_storage() { + $install_timestamp = null; + $prev_is_premium = null; + + $options_to_update = array(); + + $is_network_admin = fs_is_network_admin(); + + $network_install_timestamp = $this->_storage->get( 'install_timestamp', null, true ); + + if ( ! $is_network_admin ) { + if ( is_null( $network_install_timestamp ) ) { + // Plugin was not network-activated before. + return; + } + + if ( is_null( $this->_storage->get( 'install_timestamp', null, false ) ) ) { + // Set the `install_timestamp` only if it's not yet set. + $install_timestamp = $network_install_timestamp; + } + + $prev_is_premium = $this->_storage->get( 'prev_is_premium', null, true ); + } else { + $current_wp_user = self::_get_current_wp_user(); + $current_fs_user = self::_get_user_by_email( $current_wp_user->user_email ); + $network_user_info = array(); + + $skips_count = 0; + + $sites = self::get_sites(); + $sites_count = count( $sites ); + + $blog_id_2_install_map = array(); + + $is_first_non_ignored_blog = true; + + foreach ( $sites as $site ) { + $blog_id = self::get_site_blog_id( $site ); + + $blog_install_timestamp = $this->_storage->get( 'install_timestamp', null, $blog_id ); + + if ( is_null( $blog_install_timestamp ) ) { + // Plugin has not been installed on this blog. + continue; + } + + $is_earlier_install = ( + ! is_null( $install_timestamp ) && + $blog_install_timestamp < $install_timestamp + ); + + $install = $this->get_install_by_blog_id( $blog_id ); + + $update_network_user_info = false; + + if ( ! is_object( $install ) ) { + if ( ! $this->_storage->get( 'is_anonymous', false, $blog_id ) ) { + // The opt-in decision (whether to skip or opt in) is yet to be made. + continue; + } + + $skips_count ++; + } else { + $blog_id_2_install_map[ $blog_id ] = $install; + + if ( empty( $network_user_info ) ) { + // Set the network user info for the 1st time. Choose any user information whether or not it is for the current WP user. + $update_network_user_info = true; + } + + if ( ! $update_network_user_info && + is_object( $current_fs_user ) && + $network_user_info['user_id'] != $current_fs_user->id && + $install->user_id == $current_fs_user->id + ) { + // If an install that is owned by the current WP user is found, use its user information instead. + $update_network_user_info = true; + } + + if ( ! $update_network_user_info && + $is_earlier_install && + ( ! is_object( $current_fs_user ) || $current_fs_user->id == $install->user_id ) + ) { + // Update to the earliest install info if there's no install found so far that is owned by the current WP user; OR only if the found install is owned by the current WP user. + $update_network_user_info = true; + } + } + + if ( $update_network_user_info ) { + $network_user_info = array( + 'user_id' => $install->user_id, + 'blog_id' => $blog_id + ); + } + + $site_prev_is_premium = $this->_storage->get( 'prev_is_premium', null, $blog_id ); + + if ( $is_first_non_ignored_blog ) { + $prev_is_premium = $site_prev_is_premium; + + if ( is_null( $network_install_timestamp ) ) { + $install_timestamp = $blog_install_timestamp; + } + + $is_first_non_ignored_blog = false; + + continue; + } + + if ( ! is_null( $prev_is_premium ) && $prev_is_premium !== $site_prev_is_premium ) { + // If a different `$site_prev_is_premium` value is found, do not include the option in the collection of options to update. + $prev_is_premium = null; + } + + if ( $is_earlier_install ) { + // If an earlier install timestamp is found. + $install_timestamp = $blog_install_timestamp; + } + } + + $installs_count = count( $blog_id_2_install_map ); + + if ( $sites_count === ( $installs_count + $skips_count ) ) { + if ( ! empty( $network_user_info ) ) { + $options_to_update['network_user_id'] = $network_user_info['user_id']; + $options_to_update['network_install_blog_id'] = $network_user_info['blog_id']; + + foreach ( $blog_id_2_install_map as $blog_id => $install ) { + if ( $install->user_id == $network_user_info['user_id'] ) { + continue; + } + + $this->_storage->store( 'is_delegated_connection', true, $blog_id ); + } + } + + if ( $sites_count === $skips_count ) { + /** + * Assume network-level skipping as the intended action if all actions identified were only + * skipping of the connection (i.e., no opt-ins and delegated connections so far). + */ + $options_to_update['is_anonymous_ms'] = true; + } else if ( $sites_count === $installs_count ) { + /** + * Assume network-level opt-in as the intended action if all actions identified were only opt-ins + * (i.e., no delegation and skipping of the connections so far). + */ + $options_to_update['is_network_connected'] = true; + } + } + } + + if ( ! is_null( $install_timestamp ) ) { + $options_to_update['install_timestamp'] = $install_timestamp; + } + + if ( ! is_null( $prev_is_premium ) ) { + $options_to_update['prev_is_premium'] = $prev_is_premium; + } + + if ( ! empty( $options_to_update ) ) { + $this->adjust_storage( $options_to_update, $is_network_admin ); + } + } + + /** + * @author Leo Fajardo (@leorw) + * @since 2.3.0 + * + * @param array $options + * @param bool $is_network_admin + */ + private function adjust_storage( $options, $is_network_admin ) { + foreach ( $options as $name => $value ) { + $this->_storage->store( $name, $value, $is_network_admin ? true : null ); + } + } + /** * Checks whether this module has a settings menu. * @@ -507,6 +719,52 @@ function has_settings_menu() { $this->_menu->has_menu(); } + /** + * If `true` the opt-in should be shown as a modal dialog box on the themes.php page. WordPress.org themes guidelines prohibit from redirecting the user from the themes.php page after activating a theme. + * + * @author Vova Feldman (@svovaf) + * @since 2.4.5 + * + * @return bool + */ + function show_opt_in_on_themes_page() { + if ( ! $this->is_free_wp_org_theme() ) { + return false; + } + + if ( ! $this->has_settings_menu() ) { + return true; + } + + return $this->show_settings_with_tabs(); + } + + /** + * If `true` the opt-in should be shown on the product's main setting page. + * + * @author Vova Feldman (@svovaf) + * @since 2.4.5 + * + * @return bool + * + * @uses show_opt_in_on_themes_page(); + */ + function show_opt_in_on_setting_page() { + return ! $this->show_opt_in_on_themes_page(); + } + + /** + * If `true` the settings should be shown using tabs. + * + * @author Vova Feldman (@svovaf) + * @since 2.4.5 + * + * @return bool + */ + function show_settings_with_tabs() { + return ( self::NAVIGATION_TABS === $this->_navigation ); + } + /** * Check if the context module is free wp.org theme. * @@ -539,12 +797,11 @@ function is_free_wp_org_theme() { * @since 1.2.2.7 Even if the menu item was specified to be hidden, when it is the context page, then show the submenu item so the user will have the right context page. * * @param string $slug - * @param bool $ignore_free_wp_org_theme_context This is used to decide if the associated tab should be shown - * or hidden. + * @param bool $is_tabs_visibility_check This is used to decide if the associated tab should be shown or hidden. * * @return bool */ - function is_submenu_item_visible( $slug, $ignore_free_wp_org_theme_context = false ) { + function is_submenu_item_visible( $slug, $is_tabs_visibility_check = false ) { if ( $this->is_admin_page( $slug ) ) { /** * It is the current context page, so show the submenu item @@ -559,7 +816,7 @@ function is_submenu_item_visible( $slug, $ignore_free_wp_org_theme_context = fal return false; } - if ( ! $ignore_free_wp_org_theme_context && $this->is_free_wp_org_theme() ) { + if ( ! $is_tabs_visibility_check && $this->show_settings_with_tabs() ) { /** * wp.org themes are limited to a single submenu item, and * sub-submenu items are most likely not allowed (never verified). @@ -785,7 +1042,7 @@ private function migrate_to_subscriptions_collection() { } if ( isset( $this->_storage->subscription ) && is_object( $this->_storage->subscription ) ) { - $this->_storage->subscriptions = array( $this->_storage->subscription ); + $this->_storage->subscriptions = array( fs_get_entity( $this->_storage->subscription, FS_Subscription::get_class_name() ) ); } } @@ -1258,11 +1515,11 @@ static function _open_support_forum_in_new_page() { * @author Vova Feldman (@svovaf) * @since 1.0.9 */ - private function _register_hooks() { + private function register_constructor_hooks() { $this->_logger->entrance(); if ( is_admin() ) { - add_action( 'plugins_loaded', array( &$this, '_hook_action_links_and_register_account_hooks' ) ); + add_action( 'admin_init', array( &$this, '_hook_action_links_and_register_account_hooks' ) ); if ( $this->is_plugin() ) { if ( self::is_plugin_install_page() && true !== fs_request_get_bool( 'fs_allow_updater_and_dialog' ) ) { @@ -1275,9 +1532,7 @@ private function _register_hooks() { add_filter( 'site_transient_update_plugins', array( 'Freemius', '_remove_fs_updates_from_plugin_install_page' ), 10, 2 ); } else if ( self::is_plugins_page() || self::is_updates_page() ) { /** - * On the "Plugins" and "Updates" admin pages, if there are premium or non–org-compliant - * plugins, modify their details dialog URLs (add a Freemius-specific param) so that the SDK can - * determine if the plugin information dialog should show information from Freemius. + * On the "Plugins" and "Updates" admin pages, if there are premium or non–org-compliant plugins, modify their details dialog URLs (add a Freemius-specific param) so that the SDK can determine if the plugin information dialog should show information from Freemius. * * @author Leo Fajardo (@leorw) * @since 2.2.3 @@ -1305,34 +1560,6 @@ private function _register_hooks() { } else { add_action( 'after_switch_theme', array( &$this, '_activate_theme_event_hook' ), 10, 2 ); - /** - * Include the required hooks to capture the theme settings' page tabs - * and cache them. - * - * @author Vova Feldman (@svovaf) - * @since 1.2.2.7 - */ - if ( ! $this->_cache->has_valid( 'tabs' ) ) { - add_action( 'admin_footer', array( &$this, '_tabs_capture' ) ); - // Add license activation AJAX callback. - $this->add_ajax_action( 'store_tabs', array( &$this, '_store_tabs_ajax_action' ) ); - - add_action( 'admin_enqueue_scripts', array( &$this, '_store_tabs_styles' ), 9999999 ); - } - - add_action( - 'admin_footer', - array( &$this, '_add_freemius_tabs' ), - /** - * The tabs JS code must be executed after the tabs capture logic (_tabs_capture()). - * That's why the priority is 11 while the tabs capture logic is added - * with priority 10. - * - * @author Vova Feldman (@svovaf) - */ - 11 - ); - add_action( 'admin_footer', array( &$this, '_style_premium_theme' ) ); } @@ -1352,7 +1579,10 @@ private function _register_hooks() { * * @author Vova Feldman (@svovaf) */ - if ( $this->is_plugin() && $this->is_activation_mode( false ) ) { + if ( $this->is_plugin() && + $this->is_activation_mode( false ) && + 0 == did_action( 'plugins_loaded' ) + ) { add_action( 'plugins_loaded', array( &$this, '_plugins_loaded' ) ); } else { // If was activated before, then it was already loaded before. @@ -1408,9 +1638,11 @@ private function _register_hooks() { add_action( 'admin_init', array( &$this, '_add_license_activation' ) ); add_action( 'admin_init', array( &$this, '_add_premium_version_upgrade_selection' ) ); + add_action( 'admin_init', array( &$this, '_add_beta_mode_update_handler' ) ); $this->add_ajax_action( 'update_billing', array( &$this, '_update_billing_ajax_action' ) ); $this->add_ajax_action( 'start_trial', array( &$this, '_start_trial_ajax_action' ) ); + $this->add_ajax_action( 'set_data_debug_mode', array( &$this, '_set_data_debug_mode' ) ); if ( $this->_is_network_active && fs_is_network_admin() ) { $this->add_ajax_action( 'network_activate', array( &$this, '_network_activate_ajax_action' ) ); @@ -1452,6 +1684,65 @@ private function _register_hooks() { } } + /** + * Register the required hooks right after the settings parse is completed. + * + * @author Vova Feldman (@svovaf) + * @since 2.3.1 + */ + private function register_after_settings_parse_hooks() { + if ( is_admin() && + $this->is_theme() && + $this->is_premium() && + ! $this->has_active_valid_license() + ) { + $this->add_ajax_action( + 'delete_theme_update_data', + array( &$this, '_delete_theme_update_data_action' ) + ); + } + + if ( $this->show_settings_with_tabs() ) { + /** + * Include the required hooks to capture the theme settings' page tabs + * and cache them. + * + * @author Vova Feldman (@svovaf) + * @since 1.2.2.7 + */ + if ( ! $this->_cache->has_valid( 'tabs' ) ) { + add_action( 'admin_footer', array( &$this, '_tabs_capture' ) ); + // Add license activation AJAX callback. + $this->add_ajax_action( 'store_tabs', array( &$this, '_store_tabs_ajax_action' ) ); + + add_action( 'admin_enqueue_scripts', array( &$this, '_store_tabs_styles' ), 9999999 ); + } + + add_action( + 'admin_footer', + array( &$this, '_add_freemius_tabs' ), + /** + * The tabs JS code must be executed after the tabs capture logic (_tabs_capture()). + * That's why the priority is 11 while the tabs capture logic is added + * with priority 10. + * + * @author Vova Feldman (@svovaf) + */ + 11 + ); + } + + if ( ! self::is_ajax() ) { + if ( ! $this->is_addon() || $this->is_only_premium() ) { + add_action( + ( $this->_is_network_active && fs_is_network_admin() ? 'network_' : '' ) . 'admin_menu', + array( &$this, '_prepare_admin_menu' ), + WP_FS__LOWEST_PRIORITY + ); + } + } + } + /** * Makes Freemius-related updates unavailable on the "Add Plugins" admin page (/plugin-install.php) so that * they won't interfere with the .org plugins' functionalities on that page (e.g. updating of a .org plugin). @@ -1467,7 +1758,7 @@ private function _register_hooks() { static function _remove_fs_updates_from_plugin_install_page( $updates, $transient = null ) { if ( is_object( $updates ) && isset( $updates->response ) ) { foreach ( $updates->response as $file => $plugin ) { - if ( false !== strpos( $plugin->package, 'api.freemius' ) ) { + if ( isset( $plugin->package ) && false !== strpos( $plugin->package, 'api.freemius' ) ) { unset( $updates->response[ $file ] ); } } @@ -1530,6 +1821,122 @@ static function _prepend_fs_allow_updater_and_dialog_flag_url_param() { is_beta() ) { + $has_any_beta_version = true; + break; + } + } + + if ( $has_any_beta_version ) { + fs_enqueue_local_style( 'fs_plugins', '/admin/plugins.css' ); + } + } + + /** + * @author Leo Fajardo (@leorw) + * @since 2.3.0 + */ + static function _maybe_add_beta_label_to_plugins_and_handle_confirmation() { + $beta_data = array(); + + foreach ( self::$_instances as $instance ) { + if ( ! $instance->is_premium() ) { + continue; + } + + /** + * If there's an available beta version update, a confirmation message will be shown when the + * "Update now" link on the "Plugins" or "Themes" page is clicked. + */ + $has_beta_update = $instance->has_beta_update(); + + $is_beta = ( + // The "Beta" label is added separately for themes. + $instance->is_plugin() && + $instance->is_beta() + ); + + if ( ! $is_beta && ! $has_beta_update ) { + continue; + } + + $beta_data[ $instance->get_plugin_basename() ] = array( 'is_installed_version_beta' => $is_beta ); + + if ( ! $has_beta_update ) { + continue; + } + + $beta_data[ $instance->get_plugin_basename() ]['beta_version_update_confirmation_message'] = sprintf( + '%s %s', + sprintf( + fs_esc_attr_inline( + 'An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned.', + 'beta-version-update-caution', + $instance->get_slug() + ), + $instance->get_plugin_title() + ), + fs_esc_attr_inline( 'Would you like to proceed with the update?', 'update-confirmation', $instance->get_slug() ) + ); + } + + if ( empty( $beta_data ) ) { + return; + } + ?> + + _add_tracking_links(); if ( self::is_plugins_page() && $this->is_plugin() ) { $this->hook_plugin_action_links(); @@ -1655,7 +2062,7 @@ private function _find_caller_plugin_file( $is_init = false ) { // Try to load the cached value of the file path. if ( isset( $this->_storage->plugin_main_file ) ) { $plugin_main_file = $this->_storage->plugin_main_file; - if ( isset( $plugin_main_file->path ) ) { + if ( ! empty( $plugin_main_file->path ) ) { $absolute_path = $this->get_absolute_path( $plugin_main_file->path ); if ( file_exists( $absolute_path ) ) { return $absolute_path; @@ -1676,7 +2083,7 @@ private function _find_caller_plugin_file( $is_init = false ) { if ( ! $is_init ) { // Fetch prev path cache. if ( isset( $this->_storage->plugin_main_file ) && - isset( $this->_storage->plugin_main_file->prev_path ) + ! empty( $this->_storage->plugin_main_file->prev_path ) ) { $absolute_path = $this->get_absolute_path( $this->_storage->plugin_main_file->prev_path ); if ( file_exists( $absolute_path ) ) { @@ -1780,7 +2187,7 @@ private function store_id_slug_type_path_map( $module_id, $slug ) { $store_option = true; } - if ( ! isset( $id_slug_type_path_map[ $module_id ]['path'] ) || + if ( empty( $id_slug_type_path_map[ $module_id ]['path'] ) || /** * This verification is for cases when suddenly the same module * is installed but with a different folder name. @@ -1844,6 +2251,7 @@ private function get_caller_main_file_and_type() { $caller_map = array(); $module_type = WP_FS__MODULE_TYPE_PLUGIN; $themes_dir = fs_normalize_path( get_theme_root( get_stylesheet() ) ); + $plugin_dir_to_skip = false; for ( $i = 1, $bt = debug_backtrace(), $len = count( $bt ); $i < $len; $i ++ ) { if ( empty( $bt[ $i ]['file'] ) ) { @@ -1869,12 +2277,46 @@ private function get_caller_main_file_and_type() { 'activate_plugin' ) ) ) { - // Ignore call stack hooks and files inclusion. - continue; - } - + if ( 'activate_plugin' === $bt[ $i ]['function'] ) { + /** + * Store the directory of the activator plugin so that any other file that starts with it + * cannot be mistakenly chosen as a candidate caller file. + * + * @author Leo Fajardo + * + * @since 2.3.0 + */ + $caller_file_path = fs_normalize_path( $bt[ $i ]['file'] ); + + foreach ( $all_plugins_paths as $plugin_path ) { + $plugin_dir = fs_normalize_path( dirname( $plugin_path ) . '/' ); + if ( false !== strpos( $caller_file_path, $plugin_dir ) ) { + $plugin_dir_to_skip = $plugin_dir; + + break; + } + } + } + + // Ignore call stack hooks and files inclusion. + continue; + } + $caller_file_path = fs_normalize_path( $bt[ $i ]['file'] ); + if ( ! empty( $plugin_dir_to_skip ) ) { + /** + * Skip if it's an activator plugin file to avoid mistakenly choosing it as a candidate caller file. + * + * @author Leo Fajardo + * + * @since 2.3.0 + */ + if ( 0 === strpos( $caller_file_path, $plugin_dir_to_skip ) ) { + continue; + } + } + if ( 'functions.php' === basename( $caller_file_path ) ) { /** * 1. Assumes that theme's starting execution file is functions.php. @@ -1905,6 +2347,10 @@ private function get_caller_main_file_and_type() { if ( ! isset( $caller_map[ $caller_file_hash ] ) ) { foreach ( $all_plugins_paths as $plugin_path ) { + if ( empty( $plugin_path ) ) { + continue; + } + if ( false !== strpos( $caller_file_path, fs_normalize_path( dirname( $plugin_path ) . '/' ) ) ) { $caller_map[ $caller_file_hash ] = fs_normalize_path( $plugin_path ); break; @@ -1934,50 +2380,84 @@ private function get_caller_main_file_and_type() { * * @author Vova Feldman (@svovaf) * @author Leo Fajardo (@leorw) + * * @since 1.1.2 */ function _add_deactivation_feedback_dialog_box() { - /* Check the type of user: - * 1. Long-term (long-term) - * 2. Non-registered and non-anonymous short-term (non-registered-and-non-anonymous-short-term). - * 3. Short-term (short-term) - */ - $is_long_term_user = true; - - // Check if the site is at least 2 days old. - $time_installed = $this->_storage->install_timestamp; + $subscription_cancellation_dialog_box_template_params = $this->apply_filters( 'show_deactivation_subscription_cancellation', true ) ? + $this->_get_subscription_cancellation_dialog_box_template_params() : + array(); - // Difference in seconds. - $date_diff = time() - $time_installed; + /** + * @since 2.3.0 Developers can optionally hide the deactivation feedback form using the 'show_deactivation_feedback_form' filter. + */ + $show_deactivation_feedback_form = true; + if ( $this->has_filter( 'show_deactivation_feedback_form' ) ) { + $show_deactivation_feedback_form = $this->apply_filters( 'show_deactivation_feedback_form', true ); + } else if ( $this->is_addon() ) { + /** + * If the add-on's 'show_deactivation_feedback_form' is not set, try to inherit the value from the parent. + */ + $show_deactivation_feedback_form = $this->get_parent_instance()->apply_filters( 'show_deactivation_feedback_form', true ); + } - // Convert seconds to days. - $date_diff_days = floor( $date_diff / ( 60 * 60 * 24 ) ); + $uninstall_confirmation_message = $this->apply_filters( 'uninstall_confirmation_message', '' ); - if ( $date_diff_days < 2 ) { - $is_long_term_user = false; + if ( + empty( $subscription_cancellation_dialog_box_template_params ) && + ! $show_deactivation_feedback_form && + empty( $uninstall_confirmation_message ) + ) { + return; } - $is_long_term_user = $this->apply_filters( 'is_long_term_user', $is_long_term_user ); + $vars = array( 'id' => $this->_module_id ); - if ( $is_long_term_user ) { - $user_type = 'long-term'; - } else { - if ( ! $this->is_registered() && ! $this->is_anonymous() ) { - $user_type = 'non-registered-and-non-anonymous-short-term'; + if ( $show_deactivation_feedback_form ) { + /* Check the type of user: + * 1. Long-term (long-term) + * 2. Non-registered and non-anonymous short-term (non-registered-and-non-anonymous-short-term). + * 3. Short-term (short-term) + */ + $is_long_term_user = true; + + // Check if the site is at least 2 days old. + $time_installed = $this->_storage->install_timestamp; + + // Difference in seconds. + $date_diff = time() - $time_installed; + + // Convert seconds to days. + $date_diff_days = floor( $date_diff / ( 60 * 60 * 24 ) ); + + if ( $date_diff_days < 2 ) { + $is_long_term_user = false; + } + + $is_long_term_user = $this->apply_filters( 'is_long_term_user', $is_long_term_user ); + + if ( $is_long_term_user ) { + $user_type = 'long-term'; } else { - $user_type = 'short-term'; + if ( ! $this->is_registered() && ! $this->is_anonymous() ) { + $user_type = 'non-registered-and-non-anonymous-short-term'; + } else { + $user_type = 'short-term'; + } } - } - $uninstall_reasons = $this->_get_uninstall_reasons( $user_type ); + $uninstall_reasons = $this->_get_uninstall_reasons( $user_type ); - // Load the HTML template for the deactivation feedback dialog box. - $vars = array( - 'reasons' => $uninstall_reasons, - 'id' => $this->_module_id - ); + $vars['reasons'] = $uninstall_reasons; + } + + $vars['subscription_cancellation_dialog_box_template_params'] = &$subscription_cancellation_dialog_box_template_params; + $vars['show_deactivation_feedback_form'] = $show_deactivation_feedback_form; + $vars['uninstall_confirmation_message'] = $uninstall_confirmation_message; /** + * Load the HTML template for the deactivation feedback dialog box. + * * @todo Deactivation form core functions should be loaded only once! Otherwise, when there are multiple Freemius powered plugins the same code is loaded multiple times. The only thing that should be loaded differently is the various deactivation reasons object based on the state of the plugin. */ fs_require_template( 'forms/deactivation/form.php', $vars ); @@ -2484,12 +2964,14 @@ function is_activation_mode( $and_on = true ) { function is_site_activation_mode( $and_on = true ) { return ( ( $this->is_on() || ! $and_on ) && - ( $this->is_premium() && true === $this->_storage->require_license_activation ) || ( - ( ! $this->is_registered() || - ( $this->is_only_premium() && ! $this->has_features_enabled_license() ) ) && - ( ! $this->is_enable_anonymous() || - ( ! $this->is_anonymous() && ! $this->is_pending_activation() ) ) + ( $this->is_premium() && true === $this->_storage->require_license_activation ) || + ( + ( ! $this->is_registered() || + ( $this->is_only_premium() && ! $this->has_features_enabled_license() ) ) && + ( ! $this->is_enable_anonymous() || + ( ! $this->is_anonymous() && ! $this->is_pending_activation() ) ) + ) ) ); } @@ -2547,7 +3029,7 @@ private function is_network_activation_mode( $and_on = true ) { * @return bool */ function is_activation_page() { - if ( $this->_menu->is_main_settings_page() ) { + if ( $this->_menu->is_activation_page( $this->show_opt_in_on_themes_page() ) ) { return true; } @@ -2621,17 +3103,47 @@ private static function get_active_plugins_basenames( $blog_id = 0 ) { $active_basenames = get_option( 'active_plugins' ); } + if ( ! is_array( $active_basenames ) ) { + $active_basenames = array(); + } + if ( is_multisite() ) { $network_active_basenames = get_site_option( 'active_sitewide_plugins' ); if ( is_array( $network_active_basenames ) && ! empty( $network_active_basenames ) ) { - $active_basenames = array_merge( $active_basenames, $network_active_basenames ); + $active_basenames = array_merge( $active_basenames, array_keys( $network_active_basenames ) ); } } return $active_basenames; } + /** + * @author Leo Fajardo (@leorw) + * @since 2.3.0 + * + * @param int $blog_id + * + * @return array + */ + static function get_active_plugins_directories_map( $blog_id = 0 ) { + $active_basenames = self::get_active_plugins_basenames( $blog_id ); + + $map = array(); + + foreach ( $active_basenames as $active_basename ) { + $active_basename = fs_normalize_path( $active_basename ); + + if ( false === strpos( $active_basename, '/' ) ) { + continue; + } + + $map[ dirname( $active_basename ) ] = true; + } + + return $map; + } + /** * Get collection of all active plugins. Including network activated plugins. * @@ -2879,6 +3391,18 @@ private static function _load_required_static() { add_action( 'admin_footer', array( 'Freemius', '_enrich_ajax_url' ) ); add_action( 'admin_footer', array( 'Freemius', '_open_support_forum_in_new_page' ) ); + if ( self::is_plugins_page() || self::is_themes_page() ) { + add_action( 'admin_print_footer_scripts', array( 'Freemius', '_maybe_add_beta_label_styles' ), 9 ); + + /** + * Specifically use this hook so that the JS event handlers will work properly on the "Themes" + * page. + * + * @author Leo Fajardo (@leorw) + * @since 2.3.0 + */ + add_action( 'admin_footer-' . self::get_current_page(), array( 'Freemius', '_maybe_add_beta_label_to_plugins_and_handle_confirmation') ); + } self::$_statics_loaded = true; } @@ -3475,7 +3999,10 @@ function get_anonymous_id( $blog_id = null ) { $key = fs_strip_url_protocol( get_site_url( $blog_id ) ); $secure_auth = SECURE_AUTH_KEY; - if ( empty( $secure_auth ) || false !== strpos( $secure_auth, ' ' ) ) { + if ( empty( $secure_auth ) || + false !== strpos( $secure_auth, ' ' ) || + 'put your unique phrase here' === $secure_auth + ) { // Protect against default auth key. $secure_auth = md5( microtime() ); } @@ -4204,22 +4731,7 @@ function dynamic_init( array $plugin_info ) { $this->parse_settings( $plugin_info ); - if ( is_admin() && $this->is_theme() && $this->is_premium() && ! $this->has_active_valid_license() ) { - $this->add_ajax_action( - 'delete_theme_update_data', - array( &$this, '_delete_theme_update_data_action' ) - ); - } - - if ( ! self::is_ajax() ) { - if ( ! $this->is_addon() || $this->is_only_premium() ) { - add_action( - ( $this->_is_network_active && fs_is_network_admin() ? 'network_' : '' ) . 'admin_menu', - array( &$this, '_prepare_admin_menu' ), - WP_FS__LOWEST_PRIORITY - ); - } - } + $this->register_after_settings_parse_hooks(); if ( $this->should_stop_execution() ) { return; @@ -4372,9 +4884,32 @@ function dynamic_init( array $plugin_info ) { return; } else { - if ( $this->_parent->is_registered() && ! $this->is_registered() ) { + $is_network_admin = fs_is_network_admin(); + + if ( + $this->_parent->is_registered() && + ! $this->is_registered() && + $this->has_free_plan() && + /** + * If not registered for add-on and the following conditions for the add-on are met, activate add-on account. + * * Network active and in network admin - network activate add-on account. + * * Network active and not in network admin - activate add-on account for the current blog. + * * Not network active and not in network admin - activate add-on account for the current blog. + * + * If not registered for add-on, not network active, and in network admin, do not handle the add-on activation. + * + * @author Leo Fajardo (@leorw) + * @since 2.3.0 + */ + ( $this->is_network_active() || ! $is_network_admin ) + ) { // If parent plugin activated, automatically install add-on for the user. - $this->_activate_addon_account( $this->_parent ); + $this->_activate_addon_account( + $this->_parent, + ( $this->is_network_active() && $is_network_admin ) ? + true : + get_current_blog_id() + ); } else if ( ! $this->_parent->is_registered() && $this->is_registered() ) { // If add-on activated and parent not, automatically install parent for the user. $this->activate_parent_account( $this->_parent ); @@ -4480,14 +5015,18 @@ function dynamic_init( array $plugin_info ) { private function should_use_freemius_updater_and_dialog() { return ( /** - * Unless the `fs_allow_updater_and_dialog` URL param exists and its value is `true`, disallow updater - * and dialog on the "Add Plugins" admin page (/plugin-install.php) so that they won't interfere with - * the .org plugins' functionalities on that page (e.g. installation and viewing plugin details from - * .org). + * Allow updater and dialog when the `fs_allow_updater_and_dialog` URL query param exists and has `true` + * value, or when the current page is not the "Add Plugins" page (/plugin-install.php) and the `action` + * URL query param doesn't exist or its value is not `install-plugin` so that there will be no conflicts + * with the .org plugins' functionalities (e.g. installation from the "Add Plugins" page and viewing + * plugin details from .org). */ - ( ! self::is_plugin_install_page() || true === fs_request_get_bool( 'fs_allow_updater_and_dialog' ) ) && - // Disallow updater and dialog when installing a plugin, otherwise .org "add-on" plugins will be affected. - ( 'install-plugin' !== fs_request_get( 'action' ) ) + ( true === fs_request_get_bool( 'fs_allow_updater_and_dialog' ) ) || + ( + ! self::is_plugin_install_page() && + // Disallow updater and dialog when installing a plugin, otherwise .org "add-on" plugins will be affected. + ( 'install-plugin' !== fs_request_get( 'action' ) ) + ) ); } @@ -4943,6 +5482,8 @@ private function parse_settings( &$plugin_info ) { 'premium_suffix' => $premium_suffix, 'is_live' => $this->get_bool_option( $plugin_info, 'is_live', true ), 'affiliate_moderation' => $this->get_option( $plugin_info, 'has_affiliation' ), + 'bundle_id' => $this->get_option( $plugin_info, 'bundle_id', null ), + 'bundle_public_key' => $this->get_option( $plugin_info, 'bundle_public_key', null ), ) ); if ( $plugin->is_updated() ) { @@ -4952,6 +5493,21 @@ private function parse_settings( &$plugin_info ) { // Set the secret key after storing the plugin, we don't want to store the key in the storage. $this->_plugin->secret_key = $secret_key; + /** + * If the product is network integrated and activated and the current view is in the network level Admin dashboard, if the product's network-level menu located differently from the sub-site level, then use the network menu details (when set). + * + * @author Vova Feldman + * @since 2.4.5 + */ + if ( $this->is_network_active() && fs_is_network_admin() ) { + if ( isset( $plugin_info['menu_network'] ) && + is_array( $plugin_info['menu_network'] ) && + ! empty( $plugin_info['menu_network'] ) + ) { + $plugin_info['menu'] = $plugin_info['menu_network']; + } + } + if ( ! isset( $plugin_info['menu'] ) ) { $plugin_info['menu'] = array(); @@ -4999,6 +5555,14 @@ private function parse_settings( &$plugin_info ) { $this->_is_trial_require_payment = $this->get_bool_option( $plugin_info['trial'], 'is_require_payment', false ); } + + $this->_navigation = $this->get_option( + $plugin_info, + 'navigation', + $this->is_free_wp_org_theme() ? + self::NAVIGATION_TABS : + self::NAVIGATION_MENU + ); } /** @@ -6066,7 +6630,7 @@ private function execute_cron( $name, $callable ) { } if ( is_multisite() ) { - $this->switch_to_blog( $current_blog_id ); + $this->switch_to_blog( $current_blog_id, fs_is_network_admin() ? $this->get_network_install() : null ); $this->do_action( "after_{$name}_cron_multisite" ); } @@ -6146,6 +6710,8 @@ function _sync_cron() { */ function _sync_cron_method( array $blog_ids, $current_blog_id = null ) { if ( $this->is_registered() ) { + $this->sync_user_beta_mode(); + if ( $this->has_paid_plan() ) { // Initiate background plan sync. $this->_sync_license( true, false, $current_blog_id ); @@ -6467,8 +7033,7 @@ function _admin_init_action() { $this->_add_upgrade_action_link(); - if ( ! $this->is_addon() && - ! ( ! $this->_is_network_active && fs_is_network_admin() ) && + if ( ! ( ! $this->_is_network_active && fs_is_network_admin() ) && ( ( true === $this->_storage->require_license_activation ) || // Not registered nor anonymous. @@ -6478,7 +7043,7 @@ function _admin_init_action() { ) ) { if ( ! $this->is_pending_activation() ) { - if ( ! $this->_menu->is_main_settings_page() ) { + if ( ! $this->_menu->is_activation_page( $this->show_opt_in_on_themes_page() ) ) { /** * If a user visits any other admin page before activating the premium-only theme with a valid * license, reactivate the previous theme. @@ -6486,10 +7051,10 @@ function _admin_init_action() { * @author Leo Fajardo (@leorw) * @since 1.2.2 */ - if ( $this->is_theme() - && ! $this->has_settings_menu() - && ! isset( $_REQUEST['fs_action'] ) - && $this->can_activate_previous_theme() + if ( $this->is_theme() && + ! $this->has_settings_menu() && + ! isset( $_REQUEST['fs_action'] ) && + $this->can_activate_previous_theme() ) { if ( $this->is_only_premium() ) { $this->activate_previous_theme(); @@ -6545,8 +7110,8 @@ function _admin_init_action() { } } - if ( $this->is_theme() && - $this->_menu->is_main_settings_page() + if ( $this->show_opt_in_on_themes_page() && + $this->is_activation_page() ) { $this->_show_theme_activation_optin_dialog(); } @@ -6804,7 +7369,7 @@ private function _delete_plans( $store = true, $keep_associated_plans = true ) { foreach ( $plans_ids_to_keep as $plan_id ) { $plan = self::_get_plan_by_id( $plan_id ); if ( is_object( $plan ) ) { - $plans_to_keep[] = $plan; + $plans_to_keep[] = self::_encrypt_entity( $plan ); } } } @@ -6973,44 +7538,48 @@ function _activate_plugin_event_hook() { // Clear API cache on activation. FS_Api::clear_cache(); - $is_premium_version_activation = ( current_filter() !== ( 'activate_' . $this->_free_plugin_basename ) ); + $is_premium_version_activation = $this->is_plugin() ? + ( current_filter() !== ( 'activate_' . $this->_free_plugin_basename ) ) : + $this->is_premium(); $this->_logger->info( 'Activating ' . ( $is_premium_version_activation ? 'premium' : 'free' ) . ' plugin version.' ); - // 1. If running in the activation of the FREE module, get the basename of the PREMIUM. - // 2. If running in the activation of the PREMIUM module, get the basename of the FREE. - $other_version_basename = $is_premium_version_activation ? - $this->_free_plugin_basename : - $this->premium_plugin_basename(); + if ( $this->is_plugin() ) { + // This logic is relevant only to plugins since both the free and premium versions of a plugin can be active at the same time. + // 1. If running in the activation of the FREE module, get the basename of the PREMIUM. + // 2. If running in the activation of the PREMIUM module, get the basename of the FREE. + $other_version_basename = $is_premium_version_activation ? + $this->_free_plugin_basename : + $this->premium_plugin_basename(); + + if ( ! $this->_is_network_active ) { + /** + * Themes are always network activated, but the ACTUAL activation is per site. + * + * During the activation, the plugin isn't yet active, therefore, + * _is_network_active will be set to false even if it's a network level + * activation. So we need to fix that by looking at the is_network_admin() value. + * + * @author Vova Feldman + */ + $this->_is_network_active = ( + $this->_is_multisite_integrated && + fs_is_network_admin() + ); + } - if ( ! $this->_is_network_active ) { /** - * During the activation, the plugin isn't yet active, therefore, - * _is_network_active will be set to false even if it's a network level - * activation. So we need to fix that by looking at the is_network_admin() value. + * If the other module version is active, deactivate it. * - * @author Vova Feldman + * is_plugin_active() checks if the plugin is active on the site or the network level and + * deactivate_plugins() deactivates the plugin whether it's activated on the site or network level. + * + * @author Leo Fajardo (@leorw) + * @since 1.2.2 */ - $this->_is_network_active = ( - $this->_is_multisite_integrated && - // Themes are always network activated, but the ACTUAL activation is per site. - $this->is_plugin() && - fs_is_network_admin() - ); - } - - /** - * If the other module version is activate, deactivate it. - * - * is_plugin_active() checks if the plugin active on the site or the network level - * and deactivate_plugins() deactivates the plugin whether its activated on the site - * or network level. - * - * @author Leo Fajardo (@leorw) - * @since 1.2.2 - */ - if ( is_plugin_active( $other_version_basename ) ) { - deactivate_plugins( $other_version_basename ); + if ( is_plugin_active( $other_version_basename ) ) { + deactivate_plugins( $other_version_basename ); + } } if ( $this->is_registered() ) { @@ -7060,14 +7629,41 @@ function _activate_plugin_event_hook() { } } + $is_trial_or_has_features_enabled_license = ( $this->is_trial() || $this->has_features_enabled_license() ); + + if ( $this->is_addon() && ! $is_trial_or_has_features_enabled_license ) { + /** + * When activating an add-on, try to also activate a license. + * + * @author Leo Fajardo (@leorw) + * @since 2.3.0 + */ + if ( ! $this->_is_network_active ) { + $this->maybe_activate_addon_license(); + } else { + $this->maybe_network_activate_addon_license(); + } + + /** + * Avoid redirecting to the license activation screen after automatically activating an add-on license. + * + * @author Leo Fajardo (@leorw) + * @since 2.3.0 + */ + $is_trial_or_has_features_enabled_license = ( $this->is_trial() || $this->has_features_enabled_license() ); + + if ( $is_trial_or_has_features_enabled_license && true === $this->_storage->require_license_activation ) { + $this->_storage->require_license_activation = false; + } + } + if ( $is_premium_version_activation && ( ( ! $this->is_registered() && $this->is_anonymous() ) || ( $this->is_registered() && - ! $this->is_trial() && - ! $this->has_features_enabled_license() + ! $is_trial_or_has_features_enabled_license ) ) ) { @@ -7110,71 +7706,260 @@ function _activate_plugin_event_hook() { } /** - * Delete account. - * - * @author Vova Feldman (@svovaf) - * @since 1.0.3 - * - * @param bool $check_user Enforce checking if user have plugins activation privileges. + * @author Leo Fajardo (@leorw) + * @since 2.3.0 */ - function delete_account_event( $check_user = true ) { - $this->_logger->entrance( 'slug = ' . $this->_slug ); + private function maybe_activate_addon_license() { + $parent_fs = $this->get_parent_instance(); - if ( $check_user && ! $this->is_user_admin() ) { + if ( + ! is_object( $parent_fs ) || + ( ! $parent_fs->is_registered() && ! $parent_fs->is_network_registered() ) + ) { + // Try to activate a license only if the parent plugin is active and has a valid `install`. return; } - $this->do_action( 'before_account_delete' ); + $license = $this->get_addon_active_parent_license(); + if ( ! is_object( $license ) ) { + return; + } - // Clear all admin notices. - $this->_admin_notices->clear_all_sticky( false ); + if ( ! $this->is_registered() ) { + // Opt in with a license key. + $this->opt_in( + $parent_fs->get_current_or_network_user()->email, + false, + false, + $license->secret_key + ); + } else { + // Activate the license. + $install = $this->get_api_site_scope()->call( + '/', + 'put', + array( 'license_key' => $this->apply_filters( 'license_key', $license->secret_key ) ) + ); - $this->_delete_site( false ); + if ( ! FS_Api::is_api_error( $install ) ) { + $this->_sync_addon_license( $this->get_id(), true ); + } + } + } - $delete_network_common_data = true; - if ( $this->_is_network_active ) { - $installs = $this->get_blog_install_map(); + /** + * @author Leo Fajardo (@leorw) + * @since 2.3.0 + * + * @param FS_Plugin_License $license + */ + private function maybe_network_activate_addon_license( $license = null ) { + $parent_fs = $this->get_parent_instance(); + if ( ! is_object( $parent_fs ) || ( ! $parent_fs->is_registered() && ! $parent_fs->is_network_registered() ) ) { + // Try to activate a license only if the parent plugin is active and has a valid `install`. + return; + } - // Don't delete common network data unless no other installs left. - $delete_network_common_data = empty( $installs ); + $license = ( ! is_null( $license ) ) ? + $license : + $this->get_addon_active_parent_license(); + + if ( ! is_object( $license ) ) { + return; } - if ( $delete_network_common_data ) { - $this->_delete_plans( false ); + if ( ! $this->is_network_registered() ) { + $sites = $this->get_sites_for_network_level_optin(); - $this->_delete_licenses( false ); + if ( count( $sites ) > $license->left() ) { + // If the add-on is network active, try to activate the license only if it can be activated on all sites. + return; + } - // Delete add-ons related to plugin's account. - $this->_delete_account_addons( false ); - } + // Opt in with a license key. + $this->opt_in( + $parent_fs->get_user()->email, + false, + false, + $license->secret_key, + false, + false, + false, + null, + $sites + ); + } else { + $blog_2_install_map = array(); + $site_ids = array(); - // @todo Delete plans and licenses of add-ons. + $all_sites = Freemius::get_sites(); - self::$_accounts->store(); + foreach ( $all_sites as $site ) { + $blog_id = Freemius::get_site_blog_id( $site ); + $install = $this->get_install_by_blog_id( $blog_id ); - /** - * IMPORTANT: - * Clear crons must be executed before clearing all storage. - * Otherwise, the cron will not be cleared. - */ - if ( $delete_network_common_data ) { - $this->clear_sync_cron(); - } + if ( is_object( $install ) && FS_Plugin_License::is_valid_id( $install->license_id ) ) { + // Skip license activation for installs that are already associated with a license. + continue; + } - $this->clear_install_sync_cron(); + if ( is_object( $install ) ) { + $blog_2_install_map[ $blog_id ] = $install; + } else { + $site_ids[] = $blog_id; + } + } - // Clear all storage data. - $this->_storage->clear_all( true, array( - 'connectivity_test', - 'is_on', - ), false ); + if ( ( count( $blog_2_install_map ) + count( $site_ids ) ) > $license->left() ) { + return; + } - // Send delete event. - $this->get_api_site_scope()->call( '/', 'delete' ); + $user = $this->get_current_or_network_user(); - $this->do_action( 'after_account_delete' ); - } + if ( ! empty( $blog_2_install_map ) ) { + $result = $this->activate_license_on_many_installs( $user, $license->secret_key, $blog_2_install_map ); + + if ( true !== $result ) { + return; + } + } + + if ( ! empty( $site_ids ) ) { + $this->activate_license_on_many_sites( $user, $license->secret_key, $site_ids ); + } + } + } + + /** + * @author Leo Fajardo (@leorw) + * @since 2.3.0 + * + * @return FS_Plugin_License + */ + private function get_addon_active_parent_license() { + $parent_licenses_endpoint = "/plugins/{$this->get_id()}/parent_licenses.json?filter=activatable"; + $parent_instance = $this->get_parent_instance(); + + $foreign_licenses = $parent_instance->get_foreign_licenses_info( + self::get_all_licenses( $this->get_parent_id() ) + ); + + if ( ! empty ( $foreign_licenses ) ) { + $foreign_licenses = array( + // Prefix with `+` to tell the server to include foreign licenses in the licenses collection. + 'ids' => ( urlencode( '+' ) . implode( ',', $foreign_licenses['ids'] ) ), + 'license_keys' => implode( ',', array_map( 'urlencode', $foreign_licenses['license_keys'] ) ) + ); + + $parent_licenses_endpoint = add_query_arg( $foreign_licenses, $parent_licenses_endpoint ); + } + + $result = $parent_instance->get_current_or_network_user_api_scope()->get( $parent_licenses_endpoint, true ); + + if ( + ! $this->is_api_result_object( $result, 'licenses' ) || + ! is_array( $result->licenses ) || + empty( $result->licenses ) + ) { + return null; + } + + $license = new FS_Plugin_License( $result->licenses[ 0 ] ); + + return $license; + } + + /** + * @author Leo Fajardo (@leorw) + * @since 2.3.0 + * + * @return array + */ + function get_sites_for_network_level_optin() { + $sites = array(); + $all_sites = self::get_sites(); + + foreach ( $all_sites as $site ) { + $blog_id = self::get_site_blog_id( $site ); + + if ( ! $this->is_site_delegated_connection( $blog_id ) && + ! $this->is_installed_on_site( $blog_id ) + ) { + $sites[] = $this->get_site_info( $site ); + } + } + + return $sites; + } + + /** + * Delete account. + * + * @author Vova Feldman (@svovaf) + * @since 1.0.3 + * + * @param bool $check_user Enforce checking if user have plugins activation privileges. + */ + function delete_account_event( $check_user = true ) { + $this->_logger->entrance( 'slug = ' . $this->_slug ); + + if ( $check_user && ! $this->is_user_admin() ) { + return; + } + + $this->do_action( 'before_account_delete' ); + + // Clear all admin notices. + $this->_admin_notices->clear_all_sticky( false ); + + $this->_delete_site( false ); + + $delete_network_common_data = true; + + if ( $this->_is_network_active ) { + $installs = $this->get_blog_install_map(); + + // Don't delete common network data unless no other installs left. + $delete_network_common_data = empty( $installs ); + } + + if ( $delete_network_common_data ) { + $this->_delete_plans( false ); + + $this->_delete_licenses( false ); + + // Delete add-ons related to plugin's account. + $this->_delete_account_addons( false ); + } + + // @todo Delete plans and licenses of add-ons. + + self::$_accounts->store(); + + /** + * IMPORTANT: + * Clear crons must be executed before clearing all storage. + * Otherwise, the cron will not be cleared. + */ + if ( $delete_network_common_data ) { + $this->clear_sync_cron(); + } + + $this->clear_install_sync_cron(); + + // Clear all storage data. + $this->_storage->clear_all( true, array( + 'is_delegated_connection', + 'connectivity_test', + 'is_on', + ), false ); + + // Send delete event. + $this->get_api_site_scope()->call( '/', 'delete' ); + + $this->do_action( 'after_account_delete' ); + } /** * Delete network level account. @@ -7521,7 +8306,7 @@ private function reset_anonymous_mode( $network_or_blog_id = 0 ) { get_current_blog_id() == $network_or_blog_id || ( true === $network_or_blog_id && fs_is_network_admin() ) ) { - unset( $this->_is_anonymous ); + $this->_is_anonymous = null; } } @@ -7985,16 +8770,18 @@ private function get_themes_data_for_api() { * @author Vova Feldman (@svovaf) * @since 1.1.2 * - * @param string[] string $override - * @param bool $include_plugins Since 1.1.8 by default include plugin changes. - * @param bool $include_themes Since 1.1.8 by default include plugin changes. + * @param string[] $override + * @param bool $include_plugins Since 1.1.8 by default include plugin changes. + * @param bool $include_themes Since 1.1.8 by default include plugin changes. + * @param bool $include_blog_data Since 2.3.0 by default include the current blog's data (language, charset, title, and URL). * * @return array */ private function get_install_data_for_api( array $override, $include_plugins = true, - $include_themes = true + $include_themes = true, + $include_blog_data = true ) { if ( ! defined( 'WP_FS__TRACK_PLUGINS' ) || false !== WP_FS__TRACK_PLUGINS ) { /** @@ -8022,13 +8809,18 @@ private function get_install_data_for_api( $versions = $this->get_versions(); - return array_merge( $versions, array( + $blog_data = $include_blog_data ? + array( + 'language' => get_bloginfo( 'language' ), + 'charset' => get_bloginfo( 'charset' ), + 'title' => get_bloginfo( 'name' ), + 'url' => get_site_url(), + ) : + array(); + + return array_merge( $versions, $blog_data, array( 'version' => $this->get_plugin_version(), 'is_premium' => $this->is_premium(), - 'language' => get_bloginfo( 'language' ), - 'charset' => get_bloginfo( 'charset' ), - 'title' => get_bloginfo( 'name' ), - 'url' => get_site_url(), // Special params. 'is_active' => true, 'is_disconnected' => $this->is_tracking_prohibited(), @@ -8700,10 +9492,12 @@ private static function require_pluggable_essentials() { * @author Vova Feldman (@svovaf) * @since 1.0.1 * + * @param bool $reparse_plugin_metadata + * * @return array */ - function get_plugin_data() { - if ( ! isset( $this->_plugin_data ) ) { + function get_plugin_data( $reparse_plugin_metadata = false ) { + if ( ! isset( $this->_plugin_data ) || $reparse_plugin_metadata ) { self::require_plugin_essentials(); if ( $this->is_plugin() ) { @@ -8796,6 +9590,30 @@ function get_id() { return $this->_plugin->id; } + /** + * @author Leo Fajardo (@leorw) + * @since 2.2.4 + * + * @return number|null Bundle ID. + */ + function get_bundle_id() { + return ( isset( $this->_plugin->bundle_id ) && FS_Plugin::is_valid_id( $this->_plugin->bundle_id ) ) ? + $this->_plugin->bundle_id : + null; + } + + /** + * @author Vova Feldman (@svovaf) + * @since 2.3.1 + * + * @return string|null Bundle public key. + */ + function get_bundle_public_key() { + return isset( $this->_plugin->bundle_public_key ) ? + $this->_plugin->bundle_public_key : + null; + } + /** * @author Vova Feldman (@svovaf) * @since 1.2.1.5 @@ -8818,6 +9636,32 @@ function get_parent_id() { $this->_plugin->id; } + /** + * @author Vova Feldman (@svovaf) + * @since 2.3.1 + * + * @return string + */ + function get_usage_tracking_terms_url() { + return $this->apply_filters( + 'usage_tracking_terms_url', + "https://freemius.com/wordpress/usage-tracking/{$this->_plugin->id}/{$this->_slug}/" + ); + } + + /** + * @author Vova Feldman (@svovaf) + * @since 2.3.1 + * + * @return string + */ + function get_eula_url() { + return $this->apply_filters( + 'eula_url', + "https://freemius.com/terms/{$this->_plugin->id}/{$this->_slug}/" + ); + } + /** * @author Vova Feldman (@svovaf) * @since 1.0.1 @@ -8917,12 +9761,14 @@ private function set_name( $premium_suffix = '' ) { * @author Vova Feldman (@svovaf) * @since 1.0.0 * + * @param bool $reparse_plugin_metadata + * * @return string */ - function get_plugin_version() { + function get_plugin_version( $reparse_plugin_metadata = false ) { $this->_logger->entrance(); - $plugin_data = $this->get_plugin_data(); + $plugin_data = $this->get_plugin_data( $reparse_plugin_metadata ); $this->_logger->departure( 'Version = ' . $plugin_data['Version'] ); @@ -9047,7 +9893,7 @@ private function store_file_slug_map() { * @return array[number]FS_User */ static function get_all_users() { - $users = self::$_accounts->get_option( 'users', array() ); + $users = self::maybe_get_entities_account_option( 'users', array() ); if ( ! is_array( $users ) ) { $users = array(); @@ -9091,7 +9937,7 @@ private static function get_account_option( $option_name, $module_type = null, $ $option_name = $module_type . '_' . $option_name; } - return self::$_accounts->get_option( $option_name, array(), $network_level_or_blog_id ); + return self::maybe_get_entities_account_option( $option_name, array(), $network_level_or_blog_id ); } /** @@ -9139,6 +9985,54 @@ private static function set_account_option_by_module( self::$_accounts->set_option( $option_name, $option_value, $store, $network_level_or_blog_id ); } + /** + * This method can also return non-entity or non-entities collection option like the `user_id_license_ids_map` option. + * + * @author Leo Fajardo (@leorw) + * @since 2.3.1 + * + * @param string $option_name + * @param mixed $default + * @param null|bool|int $network_level_or_blog_id When an integer, use the given blog storage. When `true` use the multisite storage (if there's a network). When `false`, use the current context blog storage. When `null`, the decision which storage to use (MS vs. Current S) will be handled internally and determined based on the $option (based on self::$_SITE_LEVEL_PARAMS). + * + * @return mixed|FS_Plugin[]|FS_User[]|FS_Site[]|FS_Plugin_License[]|FS_Plugin_Plan[]|FS_Plugin_Tag[] + */ + private static function maybe_get_entities_account_option( $option_name, $default = null, $network_level_or_blog_id = null ) { + $option = self::$_accounts->get_option( $option_name, $default, $network_level_or_blog_id ); + + $class_name = ''; + + switch ( $option_name ) { + case 'plugins': + case 'themes': + case 'addons': + $class_name = FS_Plugin::get_class_name(); + break; + case 'users': + $class_name = FS_User::get_class_name(); + break; + case 'sites': + $class_name = FS_Site::get_class_name(); + break; + case 'licenses': + case 'all_licenses': + $class_name = FS_Plugin_License::get_class_name(); + break; + case 'plans': + $class_name = FS_Plugin_Plan::get_class_name(); + break; + case 'updates': + $class_name = FS_Plugin_Tag::get_class_name(); + break; + } + + if ( empty( $class_name ) ) { + return $option; + } + + return fs_get_entities( $option, $class_name ); + } + /** * @author Vova Feldman (@svovaf) * @since 1.0.6 @@ -9322,7 +10216,7 @@ private static function get_all_plans( $module_type = false ) { * @return FS_Plugin_Tag[] */ private static function get_all_updates() { - $updates = self::$_accounts->get_option( 'updates', array() ); + $updates = self::maybe_get_entities_account_option( 'updates', array() ); if ( ! is_array( $updates ) ) { $updates = array(); @@ -9338,7 +10232,7 @@ private static function get_all_updates() { * @return array|false */ private static function get_all_addons() { - $addons = self::$_accounts->get_option( 'addons', array() ); + $addons = self::maybe_get_entities_account_option( 'addons', array() ); if ( ! is_array( $addons ) ) { $addons = array(); @@ -9351,7 +10245,7 @@ private static function get_all_addons() { * @author Vova Feldman (@svovaf) * @since 1.0.6 * - * @return FS_Plugin[]|false + * @return number[]|false */ private static function get_all_account_addons() { $addons = self::$_accounts->get_option( 'account_addons', array() ); @@ -9452,7 +10346,7 @@ function get_addons( $flush = false ) { * @author Vova Feldman (@svovaf) * @since 1.0.6 * - * @return FS_Plugin[]|false + * @return number[]|false */ function get_account_addons() { $this->_logger->entrance(); @@ -9540,85 +10434,258 @@ function get_addon_by_slug( $slug, $flush = false ) { } /** - * @author Vova Feldman (@svovaf) - * @since 2.0.0 - * - * @param number $user_id - * - * @return FS_User + * @var array { + * @key number Add-on ID. + * @val object[] The add-on's plans and prices object. + * } */ - static function _get_user_by_id( $user_id ) { - self::$_static_logger->entrance( "user_id = {$user_id}" ); - - $users = self::get_all_users(); + private $plans_and_pricing_by_addon_id; - if ( is_array( $users ) ) { - if ( isset( $users[ $user_id ] ) && - $users[ $user_id ] instanceof FS_User && - $user_id == $users[ $user_id ]->id - ) { - return $users[ $user_id ]; - } + /** + * @author Leo Fajardo (@leorw) + * @since 2.3.0 + * + * @return array { + * @key number Add-on ID. + * @val object[] The add-on's plans and prices object. + * } + */ + function _get_addons_plans_and_pricing_map_by_id() { + if ( ! isset( $this->plans_and_pricing_by_addon_id ) ) { + $result = $this->get_api_plugin_scope()->get( $this->add_show_pending( "/addons/pricing.json?type=visible" ) ); - // If user wasn't found by the key, iterate over all the users collection. - foreach ( $users as $user ) { - /** - * @var FS_User $user - */ - if ( $user_id == $user->id ) { - return $user; + $plans_and_pricing_by_addon_id = array(); + if ( $this->is_api_result_object( $result, 'addons' ) ) { + foreach ( $result->addons as $addon ) { + $plans_and_pricing_by_addon_id[ $addon->id ] = $addon->plans; } } + + $this->plans_and_pricing_by_addon_id = $plans_and_pricing_by_addon_id; } - return null; + return $this->plans_and_pricing_by_addon_id; } /** - * Checks if a Freemius user_id is associated with a super-admin. - * - * @author Vova Feldman (@svovaf) - * @since 2.0.0 + * @author Leo Fajardo (@leorw) + * @since 2.3.0 * - * @param number $user_id + * @param number $addon_id + * @param bool $is_installed * - * @return bool + * @return array */ - private static function is_super_admin( $user_id ) { - $is_super_admin = false; + function _get_addon_info( $addon_id, $is_installed ) { + $addon = $this->get_addon( $addon_id ); - $user = self::_get_user_by_id( $user_id ); + if ( ! is_object( $addon ) ) { + // Unexpected call. + return array(); + } - if ( $user instanceof FS_User && ! empty( $user->email ) ) { - self::require_pluggable_essentials(); + $slug = $addon->slug; - $wp_user = get_user_by( 'email', $user->email ); + $addon_storage = FS_Storage::instance( WP_FS__MODULE_TYPE_PLUGIN, $slug ); - if ( $wp_user instanceof WP_User ) { - $super_admins = get_super_admins(); - $is_super_admin = ( is_array( $super_admins ) && in_array( $wp_user->user_login, $super_admins ) ); + if ( ! fs_is_network_admin() ) { + // Get blog-level activated installations. + $sites = self::maybe_get_entities_account_option( 'sites', array() ); + } else { + $sites = null; + + if ( $this->is_addon_activated( $addon_id ) && + $this->get_addon_instance( $addon_id )->is_network_active() + ) { + if ( FS_Site::is_valid_id( $addon_storage->network_install_blog_id ) ) { + // Get network-level activated installations. + $sites = self::maybe_get_entities_account_option( + 'sites', + array(), + $addon_storage->network_install_blog_id + ); + } } } - return $is_super_admin; - } + $addon_info = array( + 'is_connected' => false, + 'slug' => $slug, + 'title' => $addon->title, + 'is_whitelabeled' => $addon_storage->is_whitelabeled + ); - #---------------------------------------------------------------------------------- - #region Plans & Licensing - #---------------------------------------------------------------------------------- + if ( ! $is_installed ) { + $plans_and_pricing_by_addon_id = $this->_get_addons_plans_and_pricing_map_by_id(); - /** - * Check if running premium plugin code. - * - * @author Vova Feldman (@svovaf) - * @since 1.0.5 - * - * @return bool - */ + if ( isset( $plans_and_pricing_by_addon_id[ $addon_id ] ) ) { + $has_paid_plan = false; + $plans = $plans_and_pricing_by_addon_id[ $addon_id ]; + + if ( is_array( $plans ) && count( $plans ) > 0 ) { + foreach ( $plans as $plan ) { + if ( isset( $plan->pricing ) && + is_array( $plan->pricing ) && + count( $plan->pricing ) > 0 + ) { + $has_paid_plan = true; + break; + } + } + } + + $addon_info['has_paid_plan'] = $has_paid_plan; + } + } + + if ( ! is_array( $sites ) || ! isset( $sites[ $slug ] ) ) { + return $addon_info; + } + + $site = $sites[ $slug ]; + + $addon_info['is_connected'] = ( + ( $addon->parent_plugin_id == $this->get_id() ) && + is_object( $site ) && + FS_Site::is_valid_id( $site->id ) && + FS_User::is_valid_id( $site->user_id ) && + FS_Plugin_Plan::is_valid_id( $site->plan_id ) + ); + + if ( $addon_info['is_connected'] && $is_installed ) { + return $addon_info; + } + + $addon_info['site'] = $site; + + $plugins_data = self::maybe_get_entities_account_option( WP_FS__MODULE_TYPE_PLUGIN . 's', array() ); + if ( isset( $plugins_data[ $slug ] ) ) { + $plugin_data = $plugins_data[ $slug ]; + + $addon_info['version'] = $plugin_data->version; + } + + $all_plans = self::maybe_get_entities_account_option( 'plans', array() ); + if ( isset( $all_plans[ $slug ] ) ) { + $plans = $all_plans[ $slug ]; + + foreach ( $plans as $plan ) { + if ( $site->plan_id == Freemius::_decrypt( $plan->id ) ) { + $addon_info['plan_name'] = Freemius::_decrypt( $plan->name ); + $addon_info['plan_title'] = Freemius::_decrypt( $plan->title ); + break; + } + } + } + + $licenses = self::maybe_get_entities_account_option( 'all_licenses', array() ); + if ( is_array( $licenses ) && isset( $licenses[ $addon_id ] ) ) { + foreach ( $licenses[ $addon_id ] as $license ) { + if ( $license->id == $site->license_id ) { + $addon_info['license'] = $license; + break; + } + } + } + + if ( isset( $addon_info['license'] ) ) { + if ( isset( $addon_storage->subscriptions ) && + ! empty( $addon_storage->subscriptions ) + ) { + $addon_subscriptions = fs_get_entities( $addon_storage->subscriptions, FS_Subscription::get_class_name() ); + + foreach ( $addon_subscriptions as $subscription ) { + if ( $subscription->license_id == $site->license_id ) { + $addon_info['subscription'] = $subscription; + break; + } + } + } + } + + return $addon_info; + } + + /** + * @author Vova Feldman (@svovaf) + * @since 2.0.0 + * + * @param number $user_id + * + * @return FS_User + */ + static function _get_user_by_id( $user_id ) { + self::$_static_logger->entrance( "user_id = {$user_id}" ); + + $users = self::get_all_users(); + + if ( is_array( $users ) ) { + if ( isset( $users[ $user_id ] ) && + $users[ $user_id ] instanceof FS_User && + $user_id == $users[ $user_id ]->id + ) { + return $users[ $user_id ]; + } + + // If user wasn't found by the key, iterate over all the users collection. + foreach ( $users as $user ) { + /** + * @var FS_User $user + */ + if ( $user_id == $user->id ) { + return $user; + } + } + } + + return null; + } + + /** + * Checks if a Freemius user_id is associated with a super-admin. + * + * @author Vova Feldman (@svovaf) + * @since 2.0.0 + * + * @param number $user_id + * + * @return bool + */ + private static function is_super_admin( $user_id ) { + $is_super_admin = false; + + $user = self::_get_user_by_id( $user_id ); + + if ( $user instanceof FS_User && ! empty( $user->email ) ) { + self::require_pluggable_essentials(); + + $wp_user = get_user_by( 'email', $user->email ); + + if ( $wp_user instanceof WP_User ) { + $super_admins = get_super_admins(); + $is_super_admin = ( is_array( $super_admins ) && in_array( $wp_user->user_login, $super_admins ) ); + } + } + + return $is_super_admin; + } + + #---------------------------------------------------------------------------------- + #region Plans & Licensing + #---------------------------------------------------------------------------------- + + /** + * Check if running premium plugin code. + * + * @author Vova Feldman (@svovaf) + * @since 1.0.5 + * + * @return bool + */ function is_premium() { /** * `$this->_plugin` will be `false` when `is_activation_mode` calls this method directly from the - * `_register_hooks` method. + * `register_constructor_hooks` method. * * @author Leo Fajardo (@leorw) * @since 2.2.3 @@ -9715,7 +10782,20 @@ function is_paid_trial() { return false; } - return $this->has_active_valid_license() && ( $this->_site->trial_plan_id == $this->_license->plan_id ); + if ( ! $this->has_active_valid_license() ) { + return false; + } + + if ( $this->_site->trial_plan_id != $this->_license->plan_id ) { + return false; + } + + /** + * @var FS_Subscription $subscription + */ + $subscription = $this->_get_subscription( $this->_license->id ); + + return ( is_object( $subscription ) && $subscription->is_active() ); } /** @@ -9850,10 +10930,26 @@ function _has_premium_license() { * @author Vova Feldman (@svovaf) * @since 1.1.7.3 * + * @param bool $including_foreign + * * @return bool */ - function has_any_license() { - return is_array( $this->_licenses ) && ( 0 < count( $this->_licenses ) ); + function has_any_license( $including_foreign = true ) { + if ( ! is_array( $this->_licenses ) || 0 === count( $this->_licenses ) ) { + return false; + } + + if ( $including_foreign ) { + return true; + } + + foreach ( $this->_licenses as $license ) { + if ( $this->_user->id == $license->user_id ) { + return true; + } + } + + return false; } /** @@ -9999,7 +11095,9 @@ private function sync_license_if_not_exist( $license_id, $license_key ) { if ( $license instanceof FS_Plugin_License ) { $this->_licenses[] = $license; - $this->_license = $license; + + $this->set_license( $license ); + $this->_store_licenses(); return $license; @@ -10017,7 +11115,7 @@ private function sync_license_if_not_exist( $license_id, $license_key ) { * @return number[] */ private function get_plans_ids_associated_with_installs() { - if ( ! $this->_is_network_active ) { + if ( ! is_multisite() ) { if ( ! is_object( $this->_site ) || ! FS_Plugin_Plan::is_valid_id( $this->_site->plan_id ) ) { @@ -10152,24 +11250,11 @@ function _sync_licenses( $site_license_id = false, $blog_id = null ) { $all_licenses = $this->get_user_licenses( $this->_user->id ); } - $foreign_licenses = array( - 'ids' => array(), - 'license_keys' => array() - ); + $foreign_licenses = $this->get_foreign_licenses_info( $all_licenses, $site_license_id ); $all_licenses_map = array(); foreach ( $all_licenses as $license ) { $all_licenses_map[ $license->id ] = true; - if ( $license->user_id == $this->_user->id || $license->id == $site_license_id ) { - continue; - } - - $foreign_licenses['ids'][] = $license->id; - $foreign_licenses['license_keys'][] = $license->secret_key; - } - - if ( empty( $foreign_licenses['ids'] ) ) { - $foreign_licenses = array(); } $licenses = $this->_fetch_licenses( false, $site_license_id, $foreign_licenses, $blog_id ); @@ -10237,7 +11322,7 @@ function _sync_licenses( $site_license_id = false, $blog_id = null ) { // Update current license. if ( is_object( $this->_license ) ) { - $this->_license = $this->_get_license_by_id( $this->_license->id ); + $this->set_license( $this->_get_license_by_id( $this->_license->id ) ); } return $this->_licenses; @@ -10577,6 +11662,21 @@ private function activate_license_on_many_installs( return true; } + /** + * Activate a given license on a collection of blogs/sites that are not yet opted-in. + * + * @author Vova Feldman (@svovaf) + * @since 2.3.1 + * + * @param \FS_User $user + * @param string $license_key + * + * @return true|mixed True if successful, otherwise, the API result. + */ + private function activate_license_on_site( FS_User $user, $license_key ) { + return $this->activate_license_on_many_sites( $user, $license_key ); + } + /** * Activate a given license on a collection of blogs/sites that are not yet opted-in. * @@ -10592,7 +11692,7 @@ private function activate_license_on_many_installs( private function activate_license_on_many_sites( FS_User $user, $license_key, - array $site_ids + array $site_ids = array() ) { $sites = array(); foreach ( $site_ids as $site_id ) { @@ -10616,81 +11716,329 @@ private function activate_license_on_many_sites( } $installs = array(); - foreach ( $result->installs as $install ) { - $installs[] = new FS_Site( $install ); + + if ( $this->is_api_result_entity( $result ) ) { + $install = new FS_Site( $result ); + + $this->_user = $user; + + $this->_store_site( true, null, $install ); + + $this->_site = $install; + + $this->reset_anonymous_mode(); + } else { + foreach ( $result->installs as $install ) { + $installs[] = new FS_Site( $install ); + } + + // Map site addresses to their blog IDs. + $address_to_blog_map = $this->get_address_to_blog_map(); + + $first_blog_id = null; + + foreach ( $installs as $install ) { + $address = trailingslashit( fs_strip_url_protocol( $install->url ) ); + $blog_id = $address_to_blog_map[ $address ]; + + $this->_store_site( true, $blog_id, $install ); + + $this->reset_anonymous_mode( $blog_id ); + + if ( is_null( $first_blog_id ) ) { + $first_blog_id = $blog_id; + } + } + + if ( ! FS_Site::is_valid_id( $this->_storage->network_install_blog_id ) ) { + $this->_storage->network_install_blog_id = $first_blog_id; + } + } + + return true; + } + + /** + * Sync site's license with user licenses. + * + * @author Vova Feldman (@svovaf) + * @since 1.0.6 + * + * @param FS_Plugin_License|null $new_license + * + * @return FS_Plugin_License|null + */ + function _update_site_license( $new_license ) { + $this->_logger->entrance(); + + $this->set_license( $new_license ); + + if ( ! is_object( $new_license ) ) { + $this->_site->license_id = null; + $this->_sync_site_subscription( null ); + + return $this->_license; + } + + $this->_site->license_id = $this->_license->id; + + if ( ! is_array( $this->_licenses ) ) { + $this->_licenses = array(); + } + + $is_license_found = false; + for ( $i = 0, $len = count( $this->_licenses ); $i < $len; $i ++ ) { + if ( $new_license->id == $this->_licenses[ $i ]->id ) { + $this->_licenses[ $i ] = $new_license; + + $is_license_found = true; + break; + } + } + + // If new license just append. + if ( ! $is_license_found ) { + $this->_licenses[] = $new_license; + } + + $this->_sync_site_subscription( $new_license ); + + return $this->_license; + } + + /** + * @author Vova Feldman (@svovaf) + * @since 2.3.1 + * + * @param \FS_Plugin_License $license + */ + private function set_license( FS_Plugin_License $license = null ) { + $this->_license = $license; + + $this->maybe_update_whitelabel_flag( $license ); + } + + /** + * @author Leo Fajardo (@leorw) + * @since 2.3.1 + * + * @param FS_Plugin_License $license + */ + private function maybe_update_whitelabel_flag( $license ) { + $is_whitelabeled = isset( $this->_storage->is_whitelabeled ) ? + $this->_storage->is_whitelabeled : + false; + + if ( is_object( $license ) ) { + $license_user = self::_get_user_by_id( $license->user_id ); + + if ( ! is_object( $license_user ) ) { + // If foreign license, do not update the `is_whitelabeled` flag. + return; + } + + if ( $this->is_addon() ) { + /** + * Store the last license data to the parent's storage since it's needed only when showing the + * "Start Debug" dialog which is triggered from the "Account" page. This way, there's no need to + * iterate over the add-ons just to get the last license data. + */ + $this->get_parent_instance()->store_last_activated_license_data( $license, $license_user ); + } else { + $this->store_last_activated_license_data( $license ); + } + + if ( $license->is_whitelabeled ) { + // Activated a developer license, data should be hidden. + $is_whitelabeled = true; + } else if ( $this->is_registered() && $this->_user->id == $license->user_id ) { + // The account owner activated a regular license key, no need to hide the data. + $is_whitelabeled = false; + } + } + + $this->_storage->is_whitelabeled = $is_whitelabeled; + + // Reset the whitelabeled status after update. + $this->is_whitelabeled = null; + if ( $this->is_addon() ) { + $parent_fs = $this->get_parent_instance(); + + if ( is_object( $parent_fs ) ) { + $parent_fs->is_whitelabeled = null; + } + } + } + + /** + * @author Leo Fajardo (@leorw) + * @since 2.3.1 + * + * @param FS_Plugin_License $license + * @param FS_User $license_user + */ + private function store_last_activated_license_data( FS_Plugin_License $license, $license_user = null ) { + if ( ! is_object( $license_user ) ) { + $this->_storage->last_license_key = md5( $license->secret_key ); + $this->_storage->last_license_user_id = null; + } else { + $this->_storage->last_license_user_key = md5( $license_user->secret_key ); + $this->_storage->last_license_user_id = $license_user->id; + } + } + + /** + * @author Leo Fajardo (@leorw) + * @since 2.3.1 + * + * @param bool $ignore_data_debug_mode + * + * @return bool + */ + function is_whitelabeled_by_flag( $ignore_data_debug_mode = false ) { + if ( true !== $this->_storage->is_whitelabeled ) { + return false; + } else if ( $ignore_data_debug_mode ) { + return true; + } + + $fs = $this->is_addon() ? + $this->get_parent_instance() : + $this; + + return ! $fs->is_data_debug_mode(); + } + + /** + * @author Leo Fajardo (@leorw) + * @since 2.3.1 + * + * @return number + */ + function get_last_license_user_id() { + return ( FS_User::is_valid_id( $this->_storage->last_license_user_id ) ) ? + $this->_storage->last_license_user_id : + null; + } + + /** + * @author Leo Fajardo (@leorw) + * @since 2.3.1 + * + * @param int $blog_id + * @param bool $ignore_data_debug_mode + * + * @return bool + */ + function is_whitelabeled( $ignore_data_debug_mode = false, $blog_id = null ) { + if ( ! is_null( $blog_id ) ) { + $this->switch_to_blog( $blog_id ); } - // Map site addresses to their blog IDs. - $address_to_blog_map = $this->get_address_to_blog_map(); + if ( ! is_null( $this->is_whitelabeled ) ) { + $is_whitelabeled = $this->is_whitelabeled; + } else { + $is_whitelabeled = false; - $first_blog_id = null; + $is_whitelabeled_flag = $this->is_whitelabeled_by_flag( true ); - foreach ( $installs as $install ) { - $address = trailingslashit( fs_strip_url_protocol( $install->url ) ); - $blog_id = $address_to_blog_map[ $address ]; + if ( ! $this->has_addons() ) { + $is_whitelabeled = $is_whitelabeled_flag; + } else if ( $is_whitelabeled_flag ) { + $is_whitelabeled = true; + } else { + $addon_ids = $this->get_updated_account_addons(); + $installed_addons = $this->get_installed_addons(); + foreach ( $installed_addons as $fs_addon ) { + $addon_ids[] = $fs_addon->get_id(); + } - $this->_store_site( true, $blog_id, $install ); + if ( ! empty( $addon_ids ) ) { + $addon_ids = array_unique( $addon_ids ); - $this->reset_anonymous_mode( $blog_id ); + $is_network_level = ( + fs_is_network_admin() && + $this->is_network_active() + ); - if ( is_null( $first_blog_id ) ) { - $first_blog_id = $blog_id; - } - } + foreach ( $addon_ids as $addon_id ) { + $addon = $this->get_addon( $addon_id ); - if ( ! FS_Site::is_valid_id( $this->_storage->network_install_blog_id ) ) { - $this->_storage->network_install_blog_id = $first_blog_id; - } + if ( ! is_object( $addon ) ) { + continue; + } - return true; - } + $addon_storage = FS_Storage::instance( WP_FS__MODULE_TYPE_PLUGIN, $addon->slug ); + $fs_addon = $this->is_addon_activated( $addon_id ) ? + self::get_addon_instance( $addon_id ) : + null; - /** - * Sync site's license with user licenses. - * - * @author Vova Feldman (@svovaf) - * @since 1.0.6 - * - * @param FS_Plugin_License|null $new_license - * - * @return FS_Plugin_License|null - */ - function _update_site_license( $new_license ) { - $this->_logger->entrance(); + $was_addon_network_activated = false; - $this->_license = $new_license; + if ( is_object( $fs_addon ) ) { + $was_addon_network_activated = $fs_addon->is_network_active(); + } else if ( $is_network_level ) { + $was_addon_network_activated = $addon_storage->get( 'was_plugin_loaded', false, true ); + } - if ( ! is_object( $new_license ) ) { - $this->_site->license_id = null; - $this->_sync_site_subscription( null ); + $network_delegated_connection = ( + $was_addon_network_activated && + $addon_storage->get( 'is_delegated_connection', false, true ) + ); - return $this->_license; - } + if ( + $is_network_level && + ( ! $was_addon_network_activated || $network_delegated_connection ) + ) { + $sites = self::get_sites(); - $this->_site->license_id = $this->_license->id; + /** + * If in network admin area and the add-on was not network-activated or network-activated + * and network-delegated, find any add-on whose is_whitelabeled flag is true. + */ + foreach ( $sites as $site ) { + $site_info = $this->get_site_info( $site ); - if ( ! is_array( $this->_licenses ) ) { - $this->_licenses = array(); - } + if ( $addon_storage->get( 'is_whitelabeled', false, $site_info['blog_id'] ) ) { + $is_whitelabeled = true; + break; + } + } - $is_license_found = false; - for ( $i = 0, $len = count( $this->_licenses ); $i < $len; $i ++ ) { - if ( $new_license->id == $this->_licenses[ $i ]->id ) { - $this->_licenses[ $i ] = $new_license; + if ( $is_whitelabeled ) { + break; + } + } else { + /** + * This will be executed when any of the following is met: + * 1. Add-on was network-activated, not network-delegated, and in network admin area. + * 2. Add-on was network-activated, network-delegated, and in site admin area. + * 3. Add-on was not network-activated and in site admin area. + */ + if ( true === $addon_storage->is_whitelabeled ) { + $is_whitelabeled = true; + break; + } + } + } + } + } - $is_license_found = true; - break; + $this->is_whitelabeled = $is_whitelabeled; + + if ( ! $is_whitelabeled || ! $this->is_data_debug_mode() ) { + $this->_admin_notices->remove_sticky( 'data_debug_mode_enabled' ); } - } - // If new license just append. - if ( ! $is_license_found ) { - $this->_licenses[] = $new_license; + if ( ! is_null( $blog_id ) ) { + $this->restore_current_blog(); + } } - $this->_sync_site_subscription( $new_license ); - - return $this->_license; + return ( + $is_whitelabeled && + ( $ignore_data_debug_mode || ! $this->is_data_debug_mode() ) + ); } /** @@ -10750,7 +12098,7 @@ function _get_subscription( $license_id ) { return null; } - foreach ( $this->_storage->subscriptions as $subscription ) { + foreach ( fs_get_entities( $this->_storage->subscriptions, FS_Subscription::get_class_name() ) as $subscription ) { if ( $subscription->license_id == $license_id ) { return $subscription; } @@ -10776,7 +12124,7 @@ function store_subscription( FS_Subscription $subscription ) { return; } - $subscriptions = $this->_storage->subscriptions; + $subscriptions = fs_get_entities( $this->_storage->subscriptions, FS_Subscription::get_class_name() ); $updated_subscription = false; foreach ( $subscriptions as $key => $existing_subscription ) { @@ -10889,9 +12237,11 @@ function is_plan( $plan, $exact = false ) { * @author Vova Feldman (@svovaf) * @since 1.2.1.7 * + * @param bool $double_check In some cases developers prefer to release their paid offering as premium-only, even though there is a free version. For those cases, looking at the 'is_premium_only' value isn't enough because the result will return false even when the product has only signle paid plan. + * * @return bool */ - function is_single_plan() { + function is_single_plan( $double_check = false ) { $this->_logger->entrance(); if ( ! $this->is_registered() || @@ -10901,7 +12251,18 @@ function is_single_plan() { return true; } - return ( 1 === count( $this->_plans ) ); + $has_free_plan = $this->has_free_plan(); + + if ( ! $has_free_plan && $double_check ) { + foreach ( $this->_plans as $plan ) { + if ( $plan->is_free() ) { + $has_free_plan = true; + break; + } + } + } + + return ( 1 === ( count( $this->_plans ) - ( $has_free_plan ? 1 : 0 ) ) ); } /** @@ -11015,6 +12376,18 @@ function _add_license_activation_dialog_box() { fs_require_template( 'forms/resend-key.php', $vars ); } + /** + * @author Leo Fajardo (@leorw) + * @since 2.3.1 + */ + function _add_data_debug_mode_dialog_box() { + $vars = array( + 'id' => $this->_module_id, + ); + + fs_require_template( 'forms/data-debug-mode.php', $vars ); + } + /** * Displays a subscription cancellation dialog box when the user clicks on the "Deactivate License" * link on the "Account" page or deactivates a plugin and there's an active subscription that is @@ -11025,11 +12398,17 @@ function _add_license_activation_dialog_box() { * @since 2.2.1 * * @param bool $is_license_deactivation + * + * @return array */ - function _maybe_add_subscription_cancellation_dialog_box( $is_license_deactivation = false ) { + function _get_subscription_cancellation_dialog_box_template_params( $is_license_deactivation = false ) { if ( fs_is_network_admin() ) { // Subscription cancellation dialog box is currently not supported for multisite networks. - return; + return array(); + } + + if ( $this->is_whitelabeled() ) { + return array(); } $license = $this->_get_license(); @@ -11044,7 +12423,7 @@ function _maybe_add_subscription_cancellation_dialog_box( $is_license_deactivati $license->is_lifetime() || ( ! $license->is_single_site() && $license->activated > 1 ) ) { - return; + return array(); } /** @@ -11052,17 +12431,15 @@ function _maybe_add_subscription_cancellation_dialog_box( $is_license_deactivati */ $subscription = $this->_get_subscription( $license->id ); if ( ! is_object( $subscription ) || ! $subscription->is_active() ) { - return; + return array(); } - $vars = array( + return array( 'id' => $this->_module_id, 'license' => $license, 'has_trial' => $this->is_paid_trial(), 'is_license_deactivation' => $is_license_deactivation, ); - - fs_require_template( 'forms/subscription-cancellation.php', $vars ); } /** @@ -11120,17 +12497,24 @@ function _add_license_activation() { return; } - if ( ! $this->is_premium() ) { - // Only add license activation logic to the premium version. + if ( $this->has_premium_version() && ! $this->is_premium() ) { + // Only add license activation logic to the premium version, or in case of a serviceware plugin, also in the free version. return; } // Add license activation link and AJAX request handler. if ( self::is_plugins_page() ) { - /** - * @since 1.2.0 Add license action link only on plugins page. - */ - $this->_add_license_action_link(); + $is_network_admin = fs_is_network_admin(); + + if ( + ( $is_network_admin && $this->is_network_active() && ! $this->is_network_delegated_connection() ) || + ( ! $is_network_admin && ( ! $this->is_network_active() || $this->is_delegated_connection() ) ) + ) { + /** + * @since 1.2.0 Add license action link only on plugins page. + */ + $this->_add_license_action_link(); + } } // Add license activation AJAX callback. @@ -11161,9 +12545,71 @@ function _add_premium_version_upgrade_selection() { /** * @author Leo Fajardo (@leorw) + * @since 2.3.0 + */ + function _add_beta_mode_update_handler() { + if ( ! $this->is_user_admin() ) { + return; + } + + if ( ! $this->is_premium() ) { + return; + } + + $this->add_ajax_action( 'set_beta_mode', array( &$this, '_set_beta_mode_ajax_handler' ) ); + } + + /** + * @author Leo Fajardo (@leorw) + * @since 2.3.0 + */ + function _set_beta_mode_ajax_handler() { + $this->_logger->entrance(); + + $this->check_ajax_referer( 'set_beta_mode' ); + + if ( ! $this->is_user_admin() ) { + // Only for admins. + self::shoot_ajax_failure(); + } + + $is_beta = trim( fs_request_get( 'is_beta', '', 'post' ) ); + + if ( empty( $is_beta ) || ! in_array( $is_beta, array( 'true', 'false' ) ) ) { + self::shoot_ajax_failure(); + } + + $user = $this->get_api_user_scope()->call( + '', + 'put', + array( + 'plugin_id' => $this->get_id(), + 'is_beta' => ( 'true' == $is_beta ), + 'fields' => 'is_beta' + ) + ); + + if ( ! $this->is_api_result_entity( $user ) ) { + self::shoot_ajax_failure( + FS_Api::is_api_error_object( $user ) ? + $user->error->message : + fs_text_inline( "An unknown error has occurred while trying to set the user's beta mode.", 'unknown-error-occurred', $this->get_slug() ) + ); + } + + $this->_user->is_beta = $user->is_beta; + $this->_store_user(); + + self::shoot_ajax_response( array( 'success' => true ) ); + } + + /** + * License activation WP AJAX handler. * + * @author Leo Fajardo (@leorw) * @since 1.1.9 - * @since 2.0.0 When a super-admin that hasn't connected before is network activating a license and excluding some of the sites for the license activation, go over the unselected sites in the network and if a site is not connected, skipped, nor delegated, if it's a freemium product then just skip the connection for the site, if it's a premium only product, delegate the connection and license activation to the site admin (Vova Feldman @svovaf). + * + * @uses Freemius::activate_license() */ function _activate_license_ajax_action() { $this->_logger->entrance(); @@ -11176,22 +12622,119 @@ function _activate_license_ajax_action() { exit; } - $plugin_id = fs_request_get( 'module_id', '', 'post' ); - $fs = ( $plugin_id == $this->_module_id ) ? + $result = $this->activate_license( + $license_key, + fs_is_network_admin() ? + fs_request_get( 'sites', array(), 'post' ) : + array(), + fs_request_get_bool( 'is_marketing_allowed', null ), + fs_request_get( 'blog_id', null ), + fs_request_get( 'module_id', null, 'post' ) + ); + + echo json_encode( $result ); + + exit; + } + + /** + * A helper method to activate migrated licenses. If the product is network activated and integrated, the method will network activate the license. + * + * @author Vova Feldman (@svovaf) + * @since 2.3.0 + * + * @param string $license_key + * @param null|bool $is_marketing_allowed + * @param null|number $plugin_id + * + * @return array { + * @var bool $success + * @var string $error + * @var string $next_page + * } + * + * @uses Freemius::activate_license() + */ + function activate_migrated_license( + $license_key, + $is_marketing_allowed = null, + $plugin_id = null + ) { + $this->_logger->entrance(); + + $result = $this->activate_license( + $license_key, + $this->is_network_active() ? + $this->get_sites_for_network_level_optin() : + array(), + $is_marketing_allowed, + null, + $plugin_id + ); + + // No need to show the sticky after license activation notice after migrating a license. + $this->_admin_notices->remove_sticky( 'plan_upgraded' ); + + return $result; + } + + /** + * The implementation of this method was previously in `_activate_license_ajax_action()`. + * + * @author Vova Feldman (@svovaf) + * @since 2.2.4 + * @since 2.0.0 When a super-admin that hasn't connected before is network activating a license and excluding some of the sites for the license activation, go over the unselected sites in the network and if a site is not connected, skipped, nor delegated, if it's a freemium product then just skip the connection for the site, if it's a premium only product, delegate the connection and license activation to the site admin (Vova Feldman @svovaf). + * @param string $license_key + * @param array $sites + * @param null|bool $is_marketing_allowed + * @param null|int $blog_id + * @param null|number $plugin_id + * + * @return array { + * @var bool $success + * @var string $error + * @var string $next_page + * } + */ + private function activate_license( + $license_key, + $sites = array(), + $is_marketing_allowed = null, + $blog_id = null, + $plugin_id = null + ) { + $this->_logger->entrance(); + + $license_key = trim( $license_key ); + + if ( ! fs_is_network_admin() ) { + // If the license activation is executed outside the context of a network admin, ignore the sites collection. + $sites = array(); + } + + $fs = ( empty($plugin_id) || $plugin_id == $this->_module_id ) ? $this : $this->get_addon_instance( $plugin_id ); $error = false; $next_page = false; - $sites = fs_is_network_admin() ? - fs_request_get( 'sites', array(), 'post' ) : - array(); - - $blog_id = fs_request_get( 'blog_id' ); $has_valid_blog_id = is_numeric( $blog_id ); - if ( $fs->is_registered() ) { + $user = null; + + if ( $fs->is_addon() && $fs->get_parent_instance()->is_registered() ) { + /** + * When activating an add-on's license and the parent is opted-in, activate the license with the parent's opted-in user context. + * + * @author Vova Feldman (@svovaf) + */ + $user = $fs->get_parent_instance()->get_current_or_network_user(); + } else if ( $fs->is_registered() ) { + $user = $fs->get_current_or_network_user(); + } + + if ( is_object( $user ) ) { if ( fs_is_network_admin() && ! $has_valid_blog_id ) { // If no specific blog ID was provided, activate the license for all sites in the network. $blog_2_install_map = array(); @@ -11202,7 +12745,7 @@ function _activate_license_ajax_action() { continue; } - $install = $this->get_install_by_blog_id( $site['blog_id'] ); + $install = $fs->get_install_by_blog_id( $site['blog_id'] ); if ( is_object( $install ) ) { $blog_2_install_map[ $site['blog_id'] ] = $install; @@ -11211,10 +12754,8 @@ function _activate_license_ajax_action() { } } - $user = $this->get_current_or_network_user(); - if ( ! empty( $blog_2_install_map ) ) { - $result = $this->activate_license_on_many_installs( $user, $license_key, $blog_2_install_map ); + $result = $fs->activate_license_on_many_installs( $user, $license_key, $blog_2_install_map ); if ( true !== $result ) { $error = FS_Api::is_api_error_object( $result ) ? @@ -11224,7 +12765,7 @@ function _activate_license_ajax_action() { } if ( empty( $error ) && ! empty( $site_ids ) ) { - $result = $this->activate_license_on_many_sites( $user, $license_key, $site_ids ); + $result = $fs->activate_license_on_many_sites( $user, $license_key, $site_ids ); if ( true !== $result ) { $error = FS_Api::is_api_error_object( $result ) ? @@ -11240,28 +12781,38 @@ function _activate_license_ajax_action() { * * @author Leo Fajardo (@leorw) */ - $this->switch_to_blog( $blog_id ); + $fs->switch_to_blog( $blog_id ); } - $api = $fs->get_api_site_scope(); + if ( $fs->is_registered() ) { + $params = array( + 'license_key' => $fs->apply_filters( 'license_key', $license_key ) + ); - $params = array( - 'license_key' => $fs->apply_filters( 'license_key', $license_key ) - ); + $api = $fs->get_api_site_scope(); - $install = $api->call( $fs->add_show_pending( '/' ), 'put', $params ); + $install = $api->call( $fs->add_show_pending( '/' ), 'put', $params ); - if ( FS_Api::is_api_error( $install ) ) { - $error = FS_Api::is_api_error_object( $install ) ? - $install->error->message : - var_export( $install->error, true ); - } else { - $fs->reconnect_locally( $has_valid_blog_id ); + if ( FS_Api::is_api_error( $install ) ) { + $error = FS_Api::is_api_error_object( $install ) ? + $install->error->message : + var_export( $install->error, true ); + } else { + $fs->reconnect_locally( $has_valid_blog_id ); + } + } else /* ( $fs->is_addon() && $fs->get_parent_instance()->is_registered() ) */ { + $result = $fs->activate_license_on_site( $user, $license_key ); + + if ( true !== $result ) { + $error = FS_Api::is_api_error_object( $result ) ? + $result->error->message : + var_export( $result, true ); + } } } if ( empty( $error ) ) { - $this->network_upgrade_mode_completed(); + $fs->network_upgrade_mode_completed(); $fs->_sync_license( true, $has_valid_blog_id ); @@ -11278,7 +12829,7 @@ function _activate_license_ajax_action() { false, false, false, - fs_request_get_bool( 'is_marketing_allowed', null ), + $is_marketing_allowed, $sites ); @@ -11313,17 +12864,17 @@ function _activate_license_ajax_action() { continue; } - if ( $this->is_installed_on_site( $blog_id ) ) { + if ( $fs->is_installed_on_site( $blog_id ) ) { // Site was already connected before. continue; } - if ( $this->is_site_delegated_connection( $blog_id ) ) { + if ( $fs->is_site_delegated_connection( $blog_id ) ) { // Site's connection was delegated. continue; } - if ( $this->is_anonymous_site( $blog_id ) ) { + if ( $fs->is_anonymous_site( $blog_id ) ) { // Site connection was already skipped. continue; } @@ -11332,18 +12883,18 @@ function _activate_license_ajax_action() { } if ( ! empty( $pending_sites ) ) { - if ( $this->is_freemium() ) { - $this->skip_connection( $pending_sites ); + if ( $fs->is_freemium() && $fs->is_enable_anonymous() ) { + $fs->skip_connection( $pending_sites ); } else { - $this->delegate_connection( $pending_sites ); + $fs->delegate_connection( $pending_sites ); } } } } } - if ( false === $error && true === $this->_storage->require_license_activation ) { - $this->_storage->require_license_activation = false; + if ( false === $error && true === $fs->_storage->require_license_activation ) { + $fs->_storage->require_license_activation = false; } $result = array( @@ -11351,14 +12902,24 @@ function _activate_license_ajax_action() { ); if ( false !== $error ) { - $result['error'] = $error; + $result['error'] = $fs->apply_filters( 'opt_in_error_message', $error ); } else { + if ( $fs->is_addon() || $fs->has_addons() ) { + /** + * Purge the valid user licenses cache so that when the "Account" or the "Add-Ons" page is loaded, + * an updated valid user licenses collection will be fetched from the server which is used to also + * update the account add-ons (add-ons the user has licenses for). + * + * @author Leo Fajardo (@leorw) + * @since 2.2.4 + */ + $fs->purge_valid_user_licenses_cache(); + } + $result['next_page'] = $next_page; } - echo json_encode( $result ); - - exit; + return $result; } /** @@ -11393,8 +12954,12 @@ function _network_activate_ajax_action() { $total_sites_to_delegate = count( $sites_by_action['delegate'] ); $next_page = ''; + + $has_any_install = fs_request_get_bool( 'has_any_install' ); + if ( $total_sites === $total_sites_to_delegate && - ! $this->is_network_upgrade_mode() + ! $this->is_network_upgrade_mode() && + ! $has_any_install ) { $this->delegate_connection(); } else { @@ -11406,7 +12971,19 @@ function _network_activate_ajax_action() { $this->skip_connection( $sites_by_action['skip'] ); } - if ( ! empty( $sites_by_action['allow'] ) ) { + if ( empty( $sites_by_action['allow'] ) ) { + if ( $has_any_install ) { + $first_install = $fs->find_first_install(); + + if ( ! is_null( $first_install ) ) { + $fs->_site = $first_install['install']; + $fs->_storage->network_install_blog_id = $first_install['blog_id']; + + $fs->_user = self::_get_user_by_id( $fs->_site->user_id ); + $fs->_storage->network_user_id = $fs->_user->id; + } + } + } else { if ( ! $fs->is_registered() || ! $this->_is_network_active ) { $next_page = $fs->opt_in( false, @@ -11993,11 +13570,11 @@ function pricing_url( $billing_cycle = WP_FS__PERIOD_ANNUALLY, $is_trial = false $params['trial'] = 'true'; } - if ( $this->is_addon() ) { - return $this->_parent->addon_url( $this->_slug ); - } + $url = $this->is_addon() ? + $this->_parent->addon_url( $this->_slug ) : + $this->_get_admin_page_url( 'pricing', $params ); - return $this->_get_admin_page_url( 'pricing', $params ); + return $this->apply_filters( 'pricing_url', $url ); } /** @@ -12006,16 +13583,18 @@ function pricing_url( $billing_cycle = WP_FS__PERIOD_ANNUALLY, $is_trial = false * @author Vova Feldman (@svovaf) * @since 1.0.6 * - * @param string $billing_cycle Billing cycle - * @param bool $is_trial - * @param array $extra (optional) Extra parameters, override other query params. - * + * @param string $billing_cycle Billing cycle + * @param bool $is_trial + * @param array $extra (optional) Extra parameters, override other query params. + * @param bool|null $network + * * @return string */ function checkout_url( $billing_cycle = WP_FS__PERIOD_ANNUALLY, $is_trial = false, - $extra = array() + $extra = array(), + $network = null ) { $this->_logger->entrance(); @@ -12033,7 +13612,7 @@ function checkout_url( */ $params = array_merge( $params, $extra ); - return $this->_get_admin_page_url( 'pricing', $params ); + return $this->_get_admin_page_url( 'pricing', $params, $network ); } /** @@ -12042,10 +13621,11 @@ function checkout_url( * @author Vova Feldman (@svovaf) * @since 1.1.7 * - * @param number $addon_id - * @param number $pricing_id - * @param string $billing_cycle - * @param bool $is_trial + * @param number $addon_id + * @param number $pricing_id + * @param string $billing_cycle + * @param bool $is_trial + * @param bool|null $network * * @return string */ @@ -12053,12 +13633,13 @@ function addon_checkout_url( $addon_id, $pricing_id, $billing_cycle = WP_FS__PERIOD_ANNUALLY, - $is_trial = false + $is_trial = false, + $network = null ) { return $this->checkout_url( $billing_cycle, $is_trial, array( 'plugin_id' => $addon_id, 'pricing_id' => $pricing_id, - ) ); + ), $network ); } #endregion @@ -12367,9 +13948,8 @@ function _get_admin_page_url( $page = '', $params = array(), $network = null ) { $page_param = $this->_menu->get_slug( $page ); if ( empty( $page ) && - $this->is_theme() && // Show the opt-in as an overlay for free wp.org themes or themes without any settings page. - ( $this->is_free_wp_org_theme() || ! $this->has_settings_menu() ) + $this->show_opt_in_on_themes_page() ) { $params[ $this->get_unique_affix() . '_show_optin' ] = 'true'; @@ -12598,6 +14178,10 @@ function is_active_for_site( $blog_id ) { * @return array Active & public sites collection. */ static function get_sites() { + if ( ! is_multisite() ) { + return array(); + } + /** * For consistency with get_blog_list() which only return active public sites. * @@ -12769,7 +14353,7 @@ private static function get_user_opted_in_module_ids_map( $fs_user_id ) { * 'blog_id' => string The associated blog ID. * } */ - private function find_first_install() { + function find_first_install() { $sites = self::get_sites(); foreach ( $sites as $site ) { @@ -12795,10 +14379,12 @@ private function find_first_install() { * * @param int $blog_id * @param FS_Site $install + * + * @return bool Since 2.3.1 returns if a switch was made. */ function switch_to_blog( $blog_id, FS_Site $install = null ) { if ( $blog_id == $this->_context_is_network_or_blog_id ) { - return; + return false; } switch_to_blog( $blog_id ); @@ -12812,9 +14398,10 @@ function switch_to_blog( $blog_id, FS_Site $install = null ) { $install : $this->get_install_by_blog_id( $blog_id ); - $this->_user = false; - $this->_licenses = false; - $this->_license = null; + $this->_user = false; + $this->_licenses = false; + $this->_license = null; + $this->is_whitelabeled = null; if ( is_object( $this->_site ) ) { // Try to fetch user from install. @@ -12859,6 +14446,8 @@ function switch_to_blog( $blog_id, FS_Site $install = null ) { unset( $this->_site_api ); unset( $this->_user_api ); + + return false; } /** @@ -13304,6 +14893,18 @@ function is_admin_page( $page ) { return ( $this->_menu->get_slug( $page ) === fs_request_get( 'page', '', 'get' ) ); } + /** + * Check if currently in the product's main admin page. + * + * @author Vova Feldman (@svovaf) + * @since 2.3.1 + * + * @return bool + */ + function is_main_admin_page() { + return $this->is_admin_page( '' ); + } + /** * Get module's main admin setting page URL. * @@ -13324,8 +14925,22 @@ function main_menu_url() { * @since 1.2.2.7 * * @return bool + * + * @deprecated Please use is_product_settings_page() instead; */ function is_theme_settings_page() { + return $this->is_product_settings_page(); + } + + /** + * Check if currently on the product's main setting page or on any of the Freemius added pages (via tabs). + * + * @author Vova Feldman (@svovaf) + * @since 1.2.2.7 + * + * @return bool + */ + function is_product_settings_page() { return fs_starts_with( fs_request_get( 'page', '', 'get' ), $this->_menu->get_slug() @@ -13445,6 +15060,18 @@ function addon_url( $slug ) { ) ); } + /** + * Add-ons URL. + * + * @author Vova Feldman (@svovaf) + * @since 2.4.5 + * + * @return string + */ + function get_addons_url() { + return $this->_get_admin_page_url( 'addons' ); + } + /* Logger ------------------------------------------------------------------------------------------------------------------*/ /** @@ -13670,8 +15297,9 @@ private function _load_account() { $this->get_install_by_blog_id(); if ( fs_is_network_admin() && - ! is_object( $site ) && - FS_Site::is_valid_id( $this->_storage->network_install_blog_id ) + $this->is_network_active() && + ! is_object( $site ) && + FS_Site::is_valid_id( $this->_storage->network_install_blog_id ) ) { $first_install = $this->find_first_install(); @@ -13850,6 +15478,47 @@ private function get_versions() { return $versions; } + /** + * @author Leo Fajardo (@leorw) + * @since 2.3.0 + * + * @return bool + */ + function has_beta_update() { + return ( + ! empty( $this->_storage->beta_data ) && + ( true === $this->_storage->beta_data['is_beta'] ) && + version_compare( $this->_storage->beta_data['version'], $this->get_plugin_version(), '>' ) + ); + } + + /** + * @author Leo Fajardo (@leorw) + * @since 2.3.0 + * + * @return bool + */ + function is_beta() { + return ( + ! empty( $this->_storage->beta_data ) && + ( true === $this->_storage->beta_data['is_beta'] ) && + ( $this->get_plugin_version() === $this->_storage->beta_data['version'] ) + ); + } + + /** + * @author Leo Fajardo (@leorw) + * @since 2.3.0 + */ + private function sync_user_beta_mode() { + $user = $this->get_api_user_scope()->get( '/?plugin_id=' . $this->get_id() . '&fields=is_beta' ); + + if ( $this->is_api_result_entity( $user ) ) { + $this->_user->is_beta = $user->is_beta; + $this->_store_user(); + } + } + /** * @author Vova Feldman (@svovaf) * @since 1.1.7.4 @@ -13893,20 +15562,16 @@ function get_opt_in_params( $override_with = array(), $network_level_or_blog_id 'is_uninstalled' => false, ) ); - if ( true === $network_level_or_blog_id ) { - if ( ! isset( $override_with['sites'] ) ) { - $params['sites'] = array(); + if ( $this->is_addon() ) { + $parent_fs = $this->get_parent_instance(); - $sites = self::get_sites(); + $params['parent_plugin_slug'] = $parent_fs->_slug; + $params['parent_plugin_id'] = $parent_fs->get_id(); + } - foreach ( $sites as $site ) { - $blog_id = self::get_site_blog_id( $site ); - if ( ! $this->is_site_delegated_connection( $blog_id ) && - ! $this->is_installed_on_site( $blog_id ) - ) { - $params['sites'][] = $this->get_site_info( $site ); - } - } + if ( true === $network_level_or_blog_id ) { + if ( ! isset( $override_with['sites'] ) ) { + $params['sites'] = $this->get_sites_for_network_level_optin(); } } else { $site = is_numeric( $network_level_or_blog_id ) ? @@ -13999,9 +15664,12 @@ function opt_in( if ( ! $is_uninstall ) { $fs_user = Freemius::_get_user_by_email( $email ); if ( is_object( $fs_user ) && ! $this->is_pending_activation() ) { - return $this->install_with_current_user( + return $this->install_with_user( + $fs_user, false, $trial_plan_id, + true, + true, $sites ); } @@ -14266,74 +15934,13 @@ function setup_network_account( // If Freemius was OFF before, turn it on. $this->turn_on(); - if ( ! $this->_is_network_active || ! $is_network_level_opt_in ) { - $this->_set_account( $user, $first_install ); - - $this->do_action( 'after_account_connection', $user, $first_install ); - } else { - $this->_store_user(); - - // Map site addresses to their blog IDs. - $address_to_blog_map = $this->get_address_to_blog_map(); - - $first_blog_id = null; - $blog_2_install_map = array(); - foreach ( $installs as $install ) { - $address = trailingslashit( fs_strip_url_protocol( $install->url ) ); - $blog_id = $address_to_blog_map[ $address ]; - - $this->_store_site( true, $blog_id, $install ); - - if ( is_null( $first_blog_id ) ) { - $first_blog_id = $blog_id; - } - - $blog_2_install_map[ $blog_id ] = $install; - } - - if ( ! FS_User::is_valid_id( $this->_storage->network_user_id ) || - ! is_object( self::_get_user_by_id( $this->_storage->network_user_id ) ) - ) { - // Store network user. - $this->_storage->network_user_id = $this->_user->id; - } - - if ( ! FS_Site::is_valid_id( $this->_storage->network_install_blog_id ) ) { - $this->_storage->network_install_blog_id = $first_blog_id; - } - - if ( count( $installs ) === count( $address_to_blog_map ) ) { - // Super-admin opted-in for all sites in the network. - $this->_storage->is_network_connected = true; - } - - $this->_store_licenses( false ); - - self::$_accounts->store(); - - // Don't sync the installs data on network upgrade - if ( ! $this->network_upgrade_mode_completed() ) { - $this->send_installs_update(); - } - - // Switch install context back to the first install. - $this->_site = $first_install; - - $current_blog = get_current_blog_id(); - - foreach ( $blog_2_install_map as $blog_id => $install ) { - $this->switch_to_blog( $blog_id ); - - $this->do_action( 'after_account_connection', $user, $install ); - } - - $this->switch_to_blog( $current_blog ); - - $this->do_action( 'after_network_account_connection', $user, $blog_2_install_map ); - } + $this->handle_account_connection( + $installs, + ( ! $this->_is_network_active || ! $is_network_level_opt_in ) + ); if ( is_numeric( $first_install->license_id ) ) { - $this->_license = $this->_get_license_by_id( $first_install->license_id ); + $this->set_license( $this->_get_license_by_id( $first_install->license_id ) ); } $this->_admin_notices->remove_sticky( 'connect_account' ); @@ -14824,7 +16431,7 @@ private function install_with_current_user( * * @return \FS_Site|object|string If redirect is `false`, returns the next page the user should be redirected to, or the API error object if failed to install. If $setup_account is set to `false`, return the newly created install. */ - private function install_with_user( + function install_with_user( FS_User $user, $license_key = false, $trial_plan_id = false, @@ -14913,6 +16520,10 @@ private function create_installs_with_user( if ( ! empty( $license_key ) ) { $extra_install_params['license_key'] = $this->apply_filters( 'license_key', $license_key ); + + if ( $silent ) { + $extra_install_params['ignore_license_owner'] = true; + } } else if ( FS_Plugin_Plan::is_valid_id( $trial_plan_id ) ) { $extra_install_params['trial_plan_id'] = $trial_plan_id; } @@ -14934,7 +16545,7 @@ private function create_installs_with_user( ! $this->is_api_result_object( $result, 'installs' ) ) { if ( ! empty( $args['license_key'] ) ) { - // Pass full the fully entered license key to the failure handler. + // Pass the fully entered license key to the failure handler. $args['license_key'] = $license_key; } @@ -14975,55 +16586,195 @@ private function create_installs_with_user( * @author Vova Feldman (@svovaf) * @since 1.0.6 * - * @param Freemius $parent_fs + * @param Freemius $parent_fs + * @param bool|int|null $network_level_or_blog_id True for network level opt-in and integer for opt-in for specified blog in the network. */ - private function _activate_addon_account( Freemius $parent_fs ) { + private function _activate_addon_account( Freemius $parent_fs, $network_level_or_blog_id = null ) { if ( $this->is_registered() ) { // Already activated. return; } - // Activate add-on with parent plugin credentials. - $addon_install = $parent_fs->get_api_site_scope()->call( - "/addons/{$this->_plugin->id}/installs.json", - 'post', - $this->get_install_data_for_api( array( - 'uid' => $this->get_anonymous_id(), - ), false, false ) - ); + /** + * Do not override the `uid` if network-level opt-in since the call to `get_sites_for_network_level_optin()` + * already returns the data for the current blog. + * + * @author Leo Fajardo (@leorw) + * @since 2.3.0 + */ + $uid_param_to_override = ( true === $network_level_or_blog_id ) ? + array() : + array( 'uid' => $this->get_anonymous_id() ); + + $params = $this->get_install_data_for_api( + $uid_param_to_override, + false, + false, + /** + * Do not include the data for the current blog if network-level opt-in since the call to `get_sites_for_network_level_optin` + * already includes the data for it. + * + * @author Leo Fajardo (@leorw) + * @since 2.3.0 + */ + ( true !== $network_level_or_blog_id ) + ); + + if ( true === $network_level_or_blog_id ) { + $params['sites'] = $this->get_sites_for_network_level_optin(); + + if ( empty( $params['sites'] ) ) { + return; + } + } + + // Activate add-on with parent plugin credentials. + $result = $parent_fs->get_api_site_scope()->call( + "/addons/{$this->_plugin->id}/installs.json", + 'post', + $params + ); + + if ( ! $this->is_api_result_object( $result, 'installs' ) ) { + $error_message = FS_Api::is_api_error_object( $result ) ? + $result->error->message : + $this->get_text_inline( 'An unknown error has occurred.', 'unknown-error' ); + + $this->_admin_notices->add( + sprintf( $this->get_text_inline( 'Couldn\'t activate %s.', 'could-not-activate-x' ), $this->get_plugin_name() ) . ' ' . + $this->get_text_inline( 'Please contact us with the following message:', 'contact-us-with-error-message' ) . ' ' . '' . $error_message . '', + $this->get_text_x_inline( 'Oops', 'exclamation', 'oops' ) . '...', + 'error' + ); + + return; + } + + $addon_installs = $result->installs; + foreach ( $addon_installs as $key => $addon_install ) { + $addon_installs[ $key ] = new FS_Site( $addon_install ); + } + + $first_install = $addon_installs[0]; + + // Get user information based on parent's plugin. + $user = $parent_fs->get_user(); + + // First of all, set site and user info - otherwise we won't + // be able to invoke API calls. + $this->_site = $first_install; + $this->_user = $user; + + // Sync add-on plans. + $this->_sync_plans(); + + $this->handle_account_connection( $addon_installs, ! fs_is_network_admin() ); + + // Get site's current plan. + //$this->_site->plan = $this->_get_plan_by_id( $this->_site->plan->id ); + + // Sync licenses. + $this->_sync_licenses(); + + if ( ! fs_is_network_admin() ) { + // Try to activate premium license. + $this->_activate_license( true ); + } else { + $license_id = fs_request_get( 'license_id' ); + + if ( is_object( $this->_site ) && + FS_Plugin_License::is_valid_id( $license_id ) && + $license_id == $this->_site->license_id + ) { + // License is already activated. + return; + } + + $premium_license = FS_Plugin_License::is_valid_id( $license_id ) ? + $this->_get_license_by_id( $license_id ) : + $this->_get_available_premium_license(); + + if ( is_object( $premium_license ) ) { + $this->maybe_network_activate_addon_license( $premium_license ); + } + } + } + + /** + * @author Leo Fajardo (@leorw) + * @since 2.3.0 + * + * @param FS_Site[] $installs + * @param bool $is_site_level + */ + private function handle_account_connection( $installs, $is_site_level ) { + $first_install = $installs[0]; + + if ( $is_site_level ) { + $this->_set_account( $this->_user, $first_install ); + + $this->do_action( 'after_account_connection', $this->_user, $first_install ); + } else { + $this->_store_user(); + + // Map site addresses to their blog IDs. + $address_to_blog_map = $this->get_address_to_blog_map(); + + $first_blog_id = null; + $blog_2_install_map = array(); + foreach ( $installs as $install ) { + $address = trailingslashit( fs_strip_url_protocol( $install->url ) ); + $blog_id = $address_to_blog_map[ $address ]; + + $this->_store_site( true, $blog_id, $install ); + + if ( is_null( $first_blog_id ) ) { + $first_blog_id = $blog_id; + } + + $blog_2_install_map[ $blog_id ] = $install; + } + + if ( ! FS_User::is_valid_id( $this->_storage->network_user_id ) || + ! is_object( self::_get_user_by_id( $this->_storage->network_user_id ) ) + ) { + // Store network user. + $this->_storage->network_user_id = $this->_user->id; + } + + if ( ! FS_Site::is_valid_id( $this->_storage->network_install_blog_id ) ) { + $this->_storage->network_install_blog_id = $first_blog_id; + } + + if ( count( $installs ) === count( $address_to_blog_map ) ) { + // Super admin opted in for all sites in the network. + $this->_storage->is_network_connected = true; + } - if ( isset( $addon_install->error ) ) { - $this->_admin_notices->add( - sprintf( $this->get_text_inline( 'Couldn\'t activate %s.', 'could-not-activate-x' ), $this->get_plugin_name() ) . ' ' . - $this->get_text_inline( 'Please contact us with the following message:', 'contact-us-with-error-message' ) . ' ' . '' . $addon_install->error->message . '', - $this->get_text_x_inline( 'Oops', 'exclamation', 'oops' ) . '...', - 'error' - ); + $this->_store_licenses( false ); - return; - } + self::$_accounts->store(); - // Get user information based on parent's plugin. - $user = $parent_fs->get_user(); + // Don't sync the installs data on network upgrade + if ( ! $this->network_upgrade_mode_completed() ) { + $this->send_installs_update(); + } - // First of all, set site and user info - otherwise we won't - // be able to invoke API calls. - $this->_site = new FS_Site( $addon_install ); - $this->_user = $user; + // Switch install context back to the first install. + $this->_site = $first_install; - // Sync add-on plans. - $this->_sync_plans(); + $current_blog = get_current_blog_id(); - // Get site's current plan. - //$this->_site->plan = $this->_get_plan_by_id( $this->_site->plan->id ); + foreach ( $blog_2_install_map as $blog_id => $install ) { + $this->switch_to_blog( $blog_id ); - $this->_set_account( $user, $this->_site ); + $this->do_action( 'after_account_connection', $this->_user, $install ); + } - // Sync licenses. - $this->_sync_licenses(); + $this->switch_to_blog( $current_blog ); - // Try to activate premium license. - $this->_activate_license( true ); + $this->do_action( 'after_network_account_connection', $this->_user, $blog_2_install_map ); + } } /** @@ -15140,6 +16891,8 @@ function _prepare_admin_menu() { ! $this->is_registered() ); + $should_hide_site_admin_settings = $this->apply_filters( 'should_hide_site_admin_settings_on_network_activation_mode', $should_hide_site_admin_settings ); + if ( ( ! $this->has_api_connectivity() && ! $this->is_enable_anonymous() ) || $should_hide_site_admin_settings ) { @@ -15169,7 +16922,7 @@ function _prepare_admin_menu() { */ private function add_menu_action() { if ( $this->is_activation_mode() ) { - if ( $this->is_plugin() || ( $this->has_settings_menu() && ! $this->is_free_wp_org_theme() ) ) { + if ( $this->show_opt_in_on_setting_page() ) { $this->override_plugin_menu_with_activation(); } else { /** @@ -15191,7 +16944,7 @@ private function add_menu_action() { } } else if ( fs_request_is_action( 'sync_user' ) && - ( ! $this->has_settings_menu() || $this->is_free_wp_org_theme() ) + ( ! $this->has_settings_menu() || $this->show_opt_in_on_themes_page() ) ) { $this->_handle_account_user_sync(); } @@ -15346,12 +17099,18 @@ private function add_network_menu_when_missing() { } if ( ! $this->_menu->has_menu() || $this->_menu->is_top_level() ) { - $this->_dynamically_added_top_level_page_hook_name = $this->_menu->add_page_and_update( - $this->get_plugin_name(), - $this->get_plugin_name(), - 'manage_options', - $this->_menu->has_menu() ? $this->_menu->get_slug() : $this->_slug - ); + + if ( $this->_menu->has_menu() || + ! $this->is_addon() || + $this->is_activation_mode() + ) { + $this->_dynamically_added_top_level_page_hook_name = $this->_menu->add_page_and_update( + $this->get_plugin_name(), + $this->get_plugin_name(), + 'manage_options', + $this->_menu->has_menu() ? $this->_menu->get_slug() : $this->_slug + ); + } } else { $this->_menu->add_subpage_and_update( $this->_menu->get_parent_slug(), @@ -15433,10 +17192,49 @@ function is_pricing_page_visible() { // Didn't ask to hide the pricing page. $this->is_page_visible( 'pricing' ) && // Don't have a valid active license or has more than one plan. - ( ! $this->is_paying() || ! $this->is_single_plan() ) + ( ! $this->is_paying() || ! $this->is_single_plan( true ) ) ); } + /** + * @author Leo Fajardo (@leorw) + * @since 2.3.0 + * + * @param bool $is_activation_mode + * + * @return bool + */ + private function should_add_submenu_or_action_links( $is_activation_mode ) { + if ( $this->is_addon() ) { + // No submenu items or action links for add-ons. + return false; + } + + if ( $this->show_opt_in_on_themes_page() ) { + if ( ! fs_is_network_admin() ) { + // Also add action links or submenu items when running in a free .org theme so the tabs will be visible. + return true; + } + } else if ( $is_activation_mode ) { + // Don't show submenu-items/tabs in activation mode, unless it's a wp.org theme. + return false; + } + + if ( fs_is_network_admin() ) { + /** + * Add submenu items or action links to network level when plugin was network activated and the super + * admin did NOT delegate the connection of all sites to site admins. + */ + return ( + $this->_is_network_active && + ( WP_FS__SHOW_NETWORK_EVEN_WHEN_DELEGATED || + ! $this->is_network_delegated_connection() ) + ); + } + + return ( ! $this->_is_network_active || $this->is_delegated_connection() ); + } + /** * Add default Freemius menu items. * @@ -15449,28 +17247,7 @@ private function add_submenu_items() { $is_activation_mode = $this->is_activation_mode(); - if ( $this->is_addon() ) { - // No submenu items for add-ons. - $add_submenu_items = false; - } else if ( $this->is_free_wp_org_theme() && ! fs_is_network_admin() ) { - // Also add submenu items when running in a free .org theme so the tabs will be visible. - $add_submenu_items = true; - } else if ( $is_activation_mode && ! $this->is_free_wp_org_theme() ) { - $add_submenu_items = false; - } else if ( fs_is_network_admin() ) { - /** - * Add submenu items to network level when plugin was network - * activated and the super-admin did NOT delegated the connection - * of all sites to site admins. - */ - $add_submenu_items = ( - $this->_is_network_active && - ( WP_FS__SHOW_NETWORK_EVEN_WHEN_DELEGATED || - ! $this->is_network_delegated_connection() ) - ); - } else { - $add_submenu_items = ( ! $this->_is_network_active || $this->is_delegated_connection() ); - } + $add_submenu_items = $this->should_add_submenu_or_action_links( $is_activation_mode ); if ( $add_submenu_items ) { if ( $this->has_affiliate_program() ) { @@ -15519,17 +17296,19 @@ private function add_submenu_items() { } if ( $add_submenu_items ) { - // Add contact page. - $this->add_submenu_item( - $this->get_text_inline( 'Contact Us', 'contact-us' ), - array( &$this, '_contact_page_render' ), - $this->get_plugin_name() . ' – ' . $this->get_text_inline( 'Contact Us', 'contact-us' ), - 'manage_options', - 'contact', - 'Freemius::_clean_admin_content_section', - WP_FS__DEFAULT_PRIORITY, - $this->is_submenu_item_visible( 'contact' ) - ); + if (! WP_FS__DEMO_MODE && ! $this->is_whitelabeled() ) { + // Add contact page. + $this->add_submenu_item( + $this->get_text_inline( 'Contact Us', 'contact-us' ), + array( &$this, '_contact_page_render' ), + $this->get_plugin_name() . ' – ' . $this->get_text_inline( 'Contact Us', 'contact-us' ), + 'manage_options', + 'contact', + 'Freemius::_clean_admin_content_section', + WP_FS__DEFAULT_PRIORITY, + $this->is_submenu_item_visible( 'contact' ) + ); + } if ( $this->has_addons() ) { $this->add_submenu_item( @@ -15548,7 +17327,7 @@ private function add_submenu_items() { if ( $add_submenu_items || ( $is_activation_mode && $this->is_only_premium() && $this->is_admin_page( 'pricing' ) ) ) { - if ( ! WP_FS__DEMO_MODE ) { + if (! WP_FS__DEMO_MODE && ! $this->is_whitelabeled() ) { $show_pricing = ( $this->is_submenu_item_visible( 'pricing' ) && $this->is_pricing_page_visible() @@ -15913,6 +17692,24 @@ function add_submenu_link_item( #endregion ------------------------------------------------------------------ + #-------------------------------------------------------------------------------- + #region Admin Notices + #-------------------------------------------------------------------------------- + + /** + * @author Vova Feldman (@svovaf) + * @since 2.3.1 + * + * @param string|string[] $ids + * @param int|null $network_level_or_blog_id + * + * @uses FS_Admin_Notices::remove_sticky() + */ + function remove_sticky( $ids, $network_level_or_blog_id = null ) { + $this->_admin_notices->remove_sticky( $ids, $network_level_or_blog_id ); + } + + #endregion #-------------------------------------------------------------------------------- #region Actions / Hooks / Filters @@ -16289,21 +18086,24 @@ function override_i18n( $key_value ) { private function _store_site( $store = true, $network_level_or_blog_id = null, FS_Site $site = null ) { $this->_logger->entrance(); - if ( empty( $this->_site->id ) ) { + if ( is_null( $site ) ) { + $site = $this->_site; + } + + if ( !isset( $site ) || !is_object($site) || empty( $site->id ) ) { $this->_logger->error( "Empty install ID, can't store site." ); return; } - $site_clone = is_object( $site ) ? $site : $this->_site; - $encrypted_site = clone $site_clone; + $site_clone = clone $site; $sites = self::get_all_sites( $this->_module_type, $network_level_or_blog_id ); $prev_stored_user_id = $this->_storage->get( 'prev_user_id', false, $network_level_or_blog_id ); if ( empty( $prev_stored_user_id ) && - $this->_user->id != $this->_site->user_id + is_object($this->_user) && $this->_user->id != $site->user_id ) { /** * Store the current user ID as the previous user ID so that the previous user can be used @@ -16319,7 +18119,7 @@ private function _store_site( $store = true, $network_level_or_blog_id = null, F $this->_storage->store( 'prev_user_id', $sites[ $this->_slug ]->user_id, $network_level_or_blog_id ); } - $sites[ $this->_slug ] = $encrypted_site; + $sites[ $this->_slug ] = $site_clone; $this->set_account_option( 'sites', $sites, $store, $network_level_or_blog_id ); } @@ -16438,87 +18238,250 @@ private function _store_user( $store = true ) { } /** - * Update new updates information. + * Update new updates information. + * + * @author Vova Feldman (@svovaf) + * @since 1.0.4 + * + * @param FS_Plugin_Tag|null $update + * @param bool $store Flush to Database if true. + * @param bool|number $plugin_id + */ + private function _store_update( $update, $store = true, $plugin_id = false ) { + $this->_logger->entrance(); + + if ( $update instanceof FS_Plugin_Tag ) { + $update->updated = time(); + } + + if ( ! is_numeric( $plugin_id ) ) { + $plugin_id = $this->_plugin->id; + } + + $updates = self::get_all_updates(); + $updates[ $plugin_id ] = $update; + self::$_accounts->set_option( 'updates', $updates, $store ); + } + + /** + * Update new updates information. + * + * @author Vova Feldman (@svovaf) + * @since 1.0.6 + * + * @param FS_Plugin[] $plugin_addons + * @param bool $store Flush to Database if true. + */ + private function _store_addons( $plugin_addons, $store = true ) { + $this->_logger->entrance(); + + $addons = self::get_all_addons(); + $addons[ $this->_plugin->id ] = $plugin_addons; + self::$_accounts->set_option( 'addons', $addons, $store ); + } + + /** + * Delete plugin's associated add-ons. + * + * @author Vova Feldman (@svovaf) + * @since 1.0.8 + * + * @param bool $store + * + * @return bool + */ + private function _delete_account_addons( $store = true ) { + $all_addons = self::get_all_account_addons(); + + if ( ! isset( $all_addons[ $this->_plugin->id ] ) ) { + return false; + } + + unset( $all_addons[ $this->_plugin->id ] ); + + self::$_accounts->set_option( 'account_addons', $all_addons, $store ); + + return true; + } + + /** + * Update account add-ons list. + * + * @author Vova Feldman (@svovaf) + * @since 1.0.6 + * + * @param FS_Plugin[] $addons + * @param bool $store Flush to Database if true. + */ + private function _store_account_addons( $addons, $store = true ) { + $this->_logger->entrance(); + + $all_addons = self::get_all_account_addons(); + $all_addons[ $this->_plugin->id ] = $addons; + self::$_accounts->set_option( 'account_addons', $all_addons, $store ); + } + + /** + * Purges the cache for the valid user licenses API call so that when the `Account` or `Add-Ons` page is loaded, + * the valid user licenses will be fetched again and the account add-ons may be updated. + * + * @author Leo Fajardo (@leorw) + * @since 2.2.4 + */ + private function purge_valid_user_licenses_cache() { + if ( ! $this->is_registered() ) { + return; + } + + $this->get_api_user_scope()->purge_cache( $this->get_valid_user_licenses_endpoint() ); + } + + /** + * @author Leo Fajardo (@leorw) + * @since 2.3.0 + * + * @param array $all_licenses + * @param number|null $site_license_id + * @param bool $include_parent_licenses + * + * @return array + */ + private function get_foreign_licenses_info( $all_licenses, $site_license_id = null, $include_parent_licenses = false ) { + $foreign_licenses = array( + 'ids' => array(), + 'license_keys' => array() + ); + + $parent_license_ids_map = array(); + + foreach ( $all_licenses as $license ) { + if ( $license->user_id == $this->_user->id || $license->id == $site_license_id ) { + continue; + } + + $foreign_licenses['ids'][] = $license->id; + $foreign_licenses['license_keys'][] = $license->secret_key; + + if ( + $include_parent_licenses && + is_object( $this->_license ) && + FS_Plugin_License::is_valid_id( $this->_license->parent_license_id ) && + ! isset( $parent_license_ids_map[ $this->_license->parent_license_id ] ) + ) { + /** + * Include the parent license's info only if it has not been included before since child licenses + * can have the same parent license. + */ + $foreign_licenses['ids'][] = $this->_license->parent_license_id; + $foreign_licenses['license_keys'][] = $license->secret_key; + + $parent_license_ids_map[ $this->_license->parent_license_id ] = true; + } + } + + if ( empty( $foreign_licenses['ids'] ) ) { + $foreign_licenses = array(); + } + + return $foreign_licenses; + } + + /** + * @author Leo Fajardo (@leorw) + * @since 2.3.0 + * + * @return string + */ + private function get_valid_user_licenses_endpoint() { + $user_licenses_endpoint = '/licenses.json?type=active' . + ( FS_Plugin::is_valid_id( $this->get_bundle_id() ) ? '&is_enriched=true' : '' ); + + $foreign_licenses = $this->get_foreign_licenses_info( self::get_all_licenses( $this->_module_id ), null, true ); + + if ( ! empty ( $foreign_licenses ) ) { + $foreign_licenses = array( + // Prefix with `+` to tell the server to include foreign licenses in the licenses collection. + 'ids' => ( urlencode( '+' ) . implode( ',', $foreign_licenses['ids'] ) ), + 'license_keys' => implode( ',', array_map( 'urlencode', $foreign_licenses['license_keys'] ) ) + ); + + $user_licenses_endpoint = add_query_arg( $foreign_licenses, $user_licenses_endpoint ); + } + + return $user_licenses_endpoint; + } + + /** + * Fetches active licenses that are enriched with product type if there's a context `bundle_id` and bundle + * licenses enriched with product IDs if there are any. From the licenses, the `get_updated_account_addons` + * method filters out non–add-on product IDs and stores the add-on IDs. * - * @author Vova Feldman (@svovaf) - * @since 1.0.4 + * @author Leo Fajardo (@leorw) + * @since 2.2.4 * - * @param FS_Plugin_Tag|null $update - * @param bool $store Flush to Database if true. - * @param bool|number $plugin_id + * @return stdClass[] array */ - private function _store_update( $update, $store = true, $plugin_id = false ) { + private function fetch_valid_user_licenses() { $this->_logger->entrance(); - if ( $update instanceof FS_Plugin_Tag ) { - $update->updated = time(); - } + $result = $this->get_api_user_scope()->get( $this->get_valid_user_licenses_endpoint() ); - if ( ! is_numeric( $plugin_id ) ) { - $plugin_id = $this->_plugin->id; + if ( ! $this->is_api_result_object( $result, 'licenses' ) || + ! is_array( $result->licenses ) + ) { + return array(); } - $updates = self::get_all_updates(); - $updates[ $plugin_id ] = $update; - self::$_accounts->set_option( 'updates', $updates, $store ); + return $result->licenses; } /** - * Update new updates information. - * - * @author Vova Feldman (@svovaf) - * @since 1.0.6 + * @author Leo Fajardo (@leorw) + * @since 2.2.4 * - * @param FS_Plugin[] $plugin_addons - * @param bool $store Flush to Database if true. + * @return number[] Account add-on IDs. */ - private function _store_addons( $plugin_addons, $store = true ) { - $this->_logger->entrance(); + function get_updated_account_addons() { + $addons = $this->get_addons(); + if ( empty( $addons ) ) { + return array(); + } - $addons = self::get_all_addons(); - $addons[ $this->_plugin->id ] = $plugin_addons; - self::$_accounts->set_option( 'addons', $addons, $store ); - } + $account_addons = $this->get_account_addons(); + if ( ! is_array( $account_addons ) ) { + $account_addons = array(); + } - /** - * Delete plugin's associated add-ons. - * - * @author Vova Feldman (@svovaf) - * @since 1.0.8 - * - * @param bool $store - * - * @return bool - */ - private function _delete_account_addons( $store = true ) { - $all_addons = self::get_all_account_addons(); + $user_licenses = $this->is_registered() ? + $this->fetch_valid_user_licenses() : + array(); - if ( ! isset( $all_addons[ $this->_plugin->id ] ) ) { - return false; + if ( empty( $user_licenses ) ) { + return $account_addons; } - unset( $all_addons[ $this->_plugin->id ] ); + $addon_ids = array(); + foreach ( $addons as $addon ) { + $addon_ids[] = $addon->id; + } - self::$_accounts->set_option( 'account_addons', $all_addons, $store ); + $license_product_ids = array(); - return true; - } + foreach ( $user_licenses as $license ) { + if ( isset( $license->plugin_type ) && 'bundle' === $license->plugin_type ) { + $license_product_ids = array_merge( $license_product_ids, $license->products ); + } else { + $license_product_ids[] = $license->plugin_id; + } + } - /** - * Update account add-ons list. - * - * @author Vova Feldman (@svovaf) - * @since 1.0.6 - * - * @param FS_Plugin[] $addons - * @param bool $store Flush to Database if true. - */ - private function _store_account_addons( $addons, $store = true ) { - $this->_logger->entrance(); + // Filter out non–add-on IDs. + $new_account_addons = array_intersect( $addon_ids, $license_product_ids ); + if ( count( $new_account_addons ) !== count( $account_addons ) ) { + $this->_store_account_addons( array_unique( $new_account_addons ) ); + } - $all_addons = self::get_all_account_addons(); - $all_addons[ $this->_plugin->id ] = $addons; - self::$_accounts->set_option( 'account_addons', $all_addons, $store ); + return $new_account_addons; } /** @@ -16615,7 +18578,9 @@ private function _fetch_site_license_subscription( $license_id = false ) { $api = $this->get_api_site_scope(); if ( ! is_numeric( $license_id ) ) { - $license_id = $this->_license->id; + $license_id = FS_Plugin_License::is_valid_id( $this->_license->parent_license_id ) ? + $this->_license->parent_license_id : + $this->_license->id; } $result = $api->get( "/licenses/{$license_id}/subscriptions.json", true ); @@ -16722,7 +18687,7 @@ private function _fetch_licenses( $plugin_id = $this->_plugin->id; } - $user_licenses_endpoint = "/plugins/{$plugin_id}/licenses.json"; + $user_licenses_endpoint = "/plugins/{$plugin_id}/licenses.json?is_enriched=true"; if ( ! empty ( $foreign_licenses ) ) { $foreign_licenses = array( // Prefix with `+` to tell the server to include foreign licenses in the licenses collection. @@ -16771,7 +18736,7 @@ private function _fetch_licenses( if ( is_numeric( $site_license_id ) ) { // Try to retrieve a foreign license that is linked to the install. - $api_result = $api->call( '/licenses.json' ); + $api_result = $api->call( '/licenses.json?is_enriched=true' ); if ( $this->is_api_result_object( $api_result, 'licenses' ) && is_array( $api_result->licenses ) @@ -16784,7 +18749,17 @@ private function _fetch_licenses( } else { $api_errors[] = $api_result; } - } else if ( is_object( $this->_license ) ) { + } else if ( + is_object( $this->_license ) && + /** + * Sync only if the license belongs to the context plugin. `$plugin_id` can be an add-on ID while + * the FS instance that does the syncing is the parent FS instance. + * + * @author Leo Fajardo (@leorw) + * @since 2.3.0 + */ + $this->_license->plugin_id == $plugin_id + ) { $is_license_in_result = false; if ( ! empty( $result ) ) { foreach ( $result as $license ) { @@ -16798,7 +18773,7 @@ private function _fetch_licenses( if ( ! $is_license_in_result ) { // Fetch foreign license by ID and license key. $license = $api->get( "/licenses/{$this->_license->id}.json?license_key=" . - urlencode( $this->_license->secret_key ) ); + urlencode( $this->_license->secret_key ) . '&is_enriched=true' ); if ( $this->is_api_result_entity( $license ) ) { $result[] = new FS_Plugin_License( $license ); @@ -16867,7 +18842,15 @@ function _fetch_payments( $plugin_id = false, $flush = false ) { $plugin_id = $this->_plugin->id; } - $result = $api->get( "/plugins/{$plugin_id}/payments.json?include_addons=true", $flush ); + $include_bundles = ( + is_object( $this->_plugin ) && + FS_Plugin::is_valid_id( $this->_plugin->bundle_id ) + ); + + $result = $api->get( + "/plugins/{$plugin_id}/payments.json?include_addons=true" . ($include_bundles ? '&include_bundles=true' : ''), + $flush + ); if ( ! isset( $result->error ) ) { for ( $i = 0, $len = count( $result->payments ); $i < $len; $i ++ ) { @@ -16937,15 +18920,24 @@ private function _fetch_newer_version( $plugin_id = false, $flush = true, $expir return false; } + $plugin_version = $this->get_plugin_version(); + // Check if version is actually newer. $has_new_version = // If it's an non-installed add-on then always return latest. ( $this->_is_addon_id( $plugin_id ) && ! $this->is_addon_activated( $plugin_id ) ) || // Compare versions. - version_compare( $this->get_plugin_version(), $latest_tag->version, '<' ); + version_compare( $plugin_version, $latest_tag->version, '<' ); $this->_logger->departure( $has_new_version ? 'Found newer plugin version ' . $latest_tag->version : 'No new version' ); + $is_latest_version_beta = ( 'beta' === $latest_tag->release_mode ); + + $this->_storage->beta_data = array( + 'is_beta' => $is_latest_version_beta, + 'version' => $latest_tag->version + ); + return $has_new_version ? $latest_tag : false; } @@ -16999,6 +18991,88 @@ function has_active_valid_license() { return self::is_active_valid_license( $this->_license ); } + /** + * @author Leo Fajardo (@leorw) + * @since 2.3.1 + */ + function is_data_debug_mode() { + if ( is_null( $this->is_whitelabeled ) || ! $this->is_whitelabeled ) { + return false; + } + + $fs = $this->is_addon() ? + $this->get_parent_instance() : + $this; + + if ( $fs->is_network_active() && fs_is_network_admin() ) { + $is_developer_license_debug_mode = get_site_transient( "fs_{$this->get_id()}_data_debug_mode" ); + } else { + $is_developer_license_debug_mode = get_transient( "fs_{$this->get_id()}_data_debug_mode" ); + } + + return ( 'true' === $is_developer_license_debug_mode ); + } + + /** + * @author Leo Fajardo (@leorw) + * @since 2.3.1 + */ + function _set_data_debug_mode() { + if ( ! $this->is_whitelabeled( true ) ) { + return; + } + + $license_or_user_key = fs_request_get( 'license_or_user_key' ); + + $transient_value = ( ! empty( $license_or_user_key ) ) ? + 'true' : + 'false'; + + if ( 'true' === $transient_value ) { + $stored_key = $this->_storage->get( ! FS_User::is_valid_id( $this->_storage->last_license_user_id ) ? + 'last_license_key' : + 'last_license_user_key' + ); + + if ( md5( $license_or_user_key ) !== $stored_key ) { + $this->shoot_ajax_failure( sprintf( + '%s... %s', + $this->get_text_x_inline( 'Oops', 'exclamation', 'oops' ), + $this->get_text_inline( + 'seems like the key you entered doesn\'t match our records.', + 'developer-or-license-not-found' + ) + ) ); + } + } + + if ( $this->is_network_active() && fs_is_network_admin() ) { + set_site_transient( + "fs_{$this->get_id()}_data_debug_mode", + $transient_value, + WP_FS__TIME_24_HOURS_IN_SEC / 24 + ); + } else { + set_transient( + "fs_{$this->get_id()}_data_debug_mode", + $transient_value, + WP_FS__TIME_24_HOURS_IN_SEC / 24 + ); + } + + if ( 'true' === $transient_value ) { + $this->_admin_notices->add_sticky( + $this->get_text_inline( + 'Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the "Stop Debug" link.', + 'data_debug_mode_enabled' + ), + 'data_debug_mode_enabled' + ); + } + + $this->shoot_ajax_success(); + } + /** * Check if a given license is active & valid (not expired). * @@ -17156,9 +19230,19 @@ private function _sync_addon_license( $addon_id, $background ) { if ( $this->is_addon_activated( $addon_id ) ) { // If already installed, use add-on sync. $fs_addon = self::get_instance_by_id( $addon_id ); - $fs_addon->_sync_license( $background ); - return; + if ( + // Add-on is network activated and network integrated. + $fs_addon->is_network_active() || + // Background sync cron. + self::is_cron() || + // Add-on is not network activated or not network integrated. + ! fs_is_network_admin() + ) { + $fs_addon->_sync_license( $background ); + + return; + } } // Validate add-on exists. @@ -17287,9 +19371,12 @@ private function _sync_plugin_license( if ( ! self::$_global_admin_notices->has_sticky( 'api_blocked' ) ) { self::$_global_admin_notices->add( sprintf( - $this->get_text_x_inline( 'Your server is blocking the access to Freemius\' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s', '%1s - plugin title, %2s - API domain', 'server-blocking-access' ), + $this->get_text_inline( 'Your server is blocking the access to Freemius\' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s', 'server-blocking-access' ), $this->get_plugin_name(), - '' . $api->get_url() . '' + '' . implode( ', ', $this->apply_filters( 'api_domains', array( + 'api.freemius.com', + 'wp.freemius.com' + ) ) ) . '' ) . ' ' . $this->get_text_inline( 'Error received from the server:', 'server-error-message' ) . var_export( $result->error, true ), $this->get_text_x_inline( 'Oops', 'exclamation', 'oops' ) . '...', 'error', @@ -17300,7 +19387,7 @@ private function _sync_plugin_license( } else { // Authentication params are broken. $this->_admin_notices->add( - $this->get_text_inline( 'It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again.', 'wrong-authentication-param-message' ), + $this->get_text_inline( 'It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again.', 'wrong-authentication-param-message' ) . ' ' . $this->get_text_inline( 'Error received from the server:', 'server-error-message' ) . var_export( $result->error, true ), $this->get_text_x_inline( 'Oops', 'exclamation', 'oops' ) . '...', 'error' ); @@ -17452,7 +19539,7 @@ private function _sync_plugin_license( $this->_store_licenses(); $plan_change = $is_free ? - 'upgraded' : + ( $this->is_only_premium() ? 'activated' : 'upgraded' ) : ( is_object( $new_license ) ? 'changed' : 'downgraded' ); @@ -17467,12 +19554,32 @@ private function _sync_plugin_license( $this->get_network_install_blog_id() ); } else { - if ( is_object( $this->_license ) && $this->_license->is_expired() ) { - if ( ! $this->has_features_enabled_license() ) { - $this->_deactivate_license(); - $plan_change = 'downgraded'; - } else { - $plan_change = 'expired'; + if ( ! is_object( $this->_license ) ) { + $this->maybe_update_whitelabel_flag( + FS_Plugin_License::is_valid_id( $site->license_id ) ? + $this->get_license_by_id( $site->license_id ) : + null + ); + } else { + $this->maybe_update_whitelabel_flag( $this->_license ); + + if ( $this->_license->is_expired() ) { + if ( ! $this->has_features_enabled_license() ) { + $this->_deactivate_license(); + $plan_change = 'downgraded'; + } else { + $last_time_expired_license_notice_was_shown = $this->_storage->get( 'expired_license_notice_shown', 0 ); + + if ( time() - ( 14 * WP_FS__TIME_24_HOURS_IN_SEC ) >= $last_time_expired_license_notice_was_shown ) { + /** + * Show the expired license notice every 14 days. + * + * @author Leo Fajardo (@leorw) + * @since 2.3.1 + */ + $plan_change = 'expired'; + } + } } } @@ -17480,11 +19587,23 @@ private function _sync_plugin_license( $this->_sync_site_subscription( $this->_license ); } } + + if ( $this->is_addon() || $this->has_addons() ) { + /** + * Purge the valid user licenses cache so that when the "Account" or the "Add-Ons" page is loaded, + * an updated valid user licenses collection will be fetched from the server which is used to also + * update the account add-ons (add-ons the user has licenses for). + * + * @author Leo Fajardo (@leorw) + * @since 2.2.4 + */ + $this->purge_valid_user_licenses_cache(); + } } $hmm_text = $this->get_text_x_inline( 'Hmm', 'something somebody says when they are thinking about what you have just said.', 'hmm' ) . '...'; - if ( $this->has_paid_plan() ) { + if ( $this->apply_filters( 'has_paid_plan_account', $this->has_paid_plan() ) ) { switch ( $plan_change ) { case 'none': if ( ! $background && is_admin() ) { @@ -17513,11 +19632,12 @@ private function _sync_plugin_license( } break; case 'upgraded': + case 'activated': $this->_admin_notices->add_sticky( - sprintf( - $this->get_text_inline( 'Your plan was successfully upgraded.', 'plan-upgraded-message' ), - '' . $this->get_plugin_name() . '' - ) . $this->get_complete_upgrade_instructions(), + ( 'activated' === $plan_change ) ? + $this->get_text_inline( 'Your plan was successfully activated.', 'plan-activated-message' ) : + $this->get_text_inline( 'Your plan was successfully upgraded.', 'plan-upgraded-message' ) . + $this->get_complete_upgrade_instructions(), 'plan_upgraded', $this->get_text_x_inline( 'Yee-haw', 'interjection expressing joy or exuberance', 'yee-haw' ) . '!' ); @@ -17576,6 +19696,9 @@ private function _sync_plugin_license( 'license_expired', $hmm_text ); + + $this->_storage->expired_license_notice_shown = WP_FS__SCRIPT_START_TIME; + $this->_admin_notices->remove_sticky( 'plan_upgraded' ); break; case 'trial_started': @@ -17630,24 +19753,27 @@ public function _open_license_activation_dialog_box() { * @author Vova Feldman (@svovaf) * @since 1.0.5 * - * @param bool $background + * @param bool $background + * @param FS_Plugin_License|null $premium_license */ - protected function _activate_license( $background = false ) { + protected function _activate_license( $background = false, $premium_license = null ) { $this->_logger->entrance(); - $license_id = fs_request_get( 'license_id' ); + if ( is_null( $premium_license ) ) { + $license_id = fs_request_get( 'license_id' ); - if ( is_object( $this->_site ) && - FS_Plugin_License::is_valid_id( $license_id ) && - $license_id == $this->_site->license_id - ) { - // License is already activated. - return; - } + if ( is_object( $this->_site ) && + FS_Plugin_License::is_valid_id( $license_id ) && + $license_id == $this->_site->license_id + ) { + // License is already activated. + return; + } - $premium_license = FS_Plugin_License::is_valid_id( $license_id ) ? - $this->_get_license_by_id( $license_id ) : - $this->_get_available_premium_license(); + $premium_license = FS_Plugin_License::is_valid_id( $license_id ) ? + $this->_get_license_by_id( $license_id ) : + $this->_get_available_premium_license(); + } if ( ! is_object( $premium_license ) ) { return; @@ -17696,7 +19822,7 @@ protected function _activate_license( $background = false ) { } $api = $this->get_api_site_scope(); - $license = $api->call( "/licenses/{$premium_license->id}.json", 'put', $api_request_params ); + $license = $api->call( "/licenses/{$premium_license->id}.json?is_enriched=true", 'put', $api_request_params ); if ( ! $this->is_api_result_entity( $license ) ) { if ( ! $background ) { @@ -17730,6 +19856,18 @@ protected function _activate_license( $background = false ) { $this->_store_account(); + if ( $this->is_addon() || $this->has_addons() ) { + /** + * Purge the valid user licenses cache so that when the "Account" or the "Add-Ons" page is loaded, + * an updated valid user licenses collection will be fetched from the server which is used to also + * update the account add-ons (add-ons the user has licenses for). + * + * @author Leo Fajardo (@leorw) + * @since 2.2.4 + */ + $this->purge_valid_user_licenses_cache(); + } + if ( ! $background ) { $this->_admin_notices->add_sticky( $this->get_text_inline( 'Your license was successfully activated.', 'license-activated-message' ) . @@ -18132,6 +20270,8 @@ private function _get_latest_version_endpoint( $addon_id = false, $type = 'json' if ( $this->has_secret_key() ) { $endpoint = add_query_arg( 'type', 'all', $endpoint ); + } else if ( $this->is_registered() && $this->_user->is_beta() ) { + $endpoint = add_query_arg( 'type', 'beta', $endpoint ); } return $endpoint; @@ -18288,9 +20428,16 @@ private function get_latest_download_api_url( $plugin_id = false ) { function _get_invoice_api_url( $payment_id = false ) { $this->_logger->entrance(); - return $this->get_api_user_scope()->get_signed_url( + $url = $this->get_api_user_scope()->get_signed_url( "/payments/{$payment_id}/invoice.pdf" ); + + if ( ! fs_starts_with( $url, 'https://' ) ) { + // Always use HTTPS for invoices. + $url = 'https' . substr( $url, 4 ); + } + + return $url; } /** @@ -18336,7 +20483,7 @@ function _get_latest_download_local_url( $plugin_id = false ) { $this->get_parent_instance() : $this; - return $fs->get_account_url( 'download_latest', $params ); + return $this->apply_filters( 'download_latest_url', $fs->get_account_url( 'download_latest', $params ) ); } #endregion Download Plugin ------------------------------------------------------------------ @@ -18414,7 +20561,7 @@ private function sync_addons( $flush = false ) { $api = $this->get_api_site_or_plugin_scope(); - $path = $this->add_show_pending( '/addons.json?enriched=true' ); + $path = $this->add_show_pending( '/addons.json?enriched=true&count=50' ); /** * @since 1.2.1 @@ -18425,7 +20572,9 @@ private function sync_addons( $flush = false ) { if ( ! $flush && $api->is_cached( $path ) ) { $addons = self::get_all_addons(); - return $addons[ $this->_plugin->id ]; + return isset( $addons[ $this->_plugin->id ] ) ? + $addons[ $this->_plugin->id ] : + array(); } $result = $api->get( $path, $flush ); @@ -18661,7 +20810,7 @@ private function verify_email() { if ( ! isset( $result->error ) ) { $this->_admin_notices->add( sprintf( $this->get_text_inline( 'Verification mail was just sent to %s. If you can\'t find it after 5 min, please check your spam box.', 'verification-email-sent-message' ), - sprintf( '%2s', esc_url( $this->_user->email ), $this->_user->email ) + sprintf( '%2$s', esc_url( $this->_user->email ), $this->_user->email ) ) ); } else { // handle different error cases. @@ -18719,14 +20868,16 @@ function get_reconnect_url( $params = array() ) { * @return string */ function get_after_activation_url( $filter, $params = array(), $network = null ) { - if ( $this->is_free_wp_org_theme() && + if ( $this->show_opt_in_on_themes_page() && ( fs_request_has( 'pending_activation' ) || // For cases when the first time path is set, even though it's a WP.org theme. fs_request_get_bool( $this->get_unique_affix() . '_show_optin' ) ) ) { $first_time_path = ''; } else { - $first_time_path = $this->_menu->get_first_time_path(); + $first_time_path = $this->_menu->get_first_time_path( + fs_is_network_admin() && $this->_is_network_active + ); } if ( $this->_is_network_active && @@ -19371,7 +21522,8 @@ private function get_api_user_scope_by_user( FS_User $user ) { $user->id, $user->public_key, ! $this->is_live(), - $user->secret_key + $user->secret_key, + $this->get_sdk_version() ); } @@ -19399,7 +21551,8 @@ private function get_current_or_network_user_api_scope( $flush = false ) { $user->id, $user->public_key, ! $this->is_live(), - $user->secret_key + $user->secret_key, + $this->get_sdk_version() ); return $this->_user_api; @@ -19424,7 +21577,8 @@ private function get_api_site_scope( $flush = false ) { $this->_site->id, $this->_site->public_key, ! $this->is_live(), - $this->_site->secret_key + $this->_site->secret_key, + $this->get_sdk_version() ); } @@ -19448,13 +21602,35 @@ function get_api_plugin_scope() { 'plugin', $this->_plugin->id, $this->_plugin->public_key, - ! $this->is_live() + ! $this->is_live(), + false, + $this->get_sdk_version() ); } return $this->_plugin_api; } + /** + * Get bundle public API scope. + * + * @author Vova Feldman (@svovaf) + * @since 2.3.1 + * + * @return FS_Api + */ + function get_api_bundle_scope() { + return FS_Api::instance( + $this->get_bundle_id(), + 'plugin', + $this->get_bundle_id(), + $this->get_bundle_public_key(), + ! $this->is_live(), + false, + $this->get_sdk_version() + ); + } + /** * Get site API scope object (fallback to public plugin scope when not registered). * @@ -19488,6 +21664,10 @@ function _check_for_trial_plans( $plans ) { $plans = array( $plans ); } + if ( ! $this->is_array_instanceof( $plans, 'FS_Plugin_Plan' ) ) { + $plans = array(); + } + $this->_storage->has_trial_plan = FS_Plan_Manager::instance()->has_trial_plan( $plans ); } @@ -19784,7 +21964,7 @@ function _enqueue_common_css() { function _show_theme_activation_optin_dialog() { fs_enqueue_local_style( 'fs_connect', '/admin/connect.css' ); - add_action( 'admin_footer-themes.php', array( &$this, '_add_fs_theme_activation_dialog' ) ); + add_action( 'admin_footer', array( &$this, '_add_fs_theme_activation_dialog' ) ); } /** @@ -19792,6 +21972,12 @@ function _show_theme_activation_optin_dialog() { * @since 1.2.2 */ function _add_fs_theme_activation_dialog() { + global $pagenow; + + if ( 'themes.php' !== $pagenow ) { + return; + } + $vars = array( 'id' => $this->_module_id ); fs_require_once_template( 'connect.php', $vars ); } @@ -19865,7 +22051,33 @@ function add_plugin_action_link( $label, $url, $external = false, $priority = WP function _add_upgrade_action_link() { $this->_logger->entrance(); - if ( ! $this->is_paying() && $this->has_paid_plan() ) { + $is_activation_mode = $this->is_activation_mode(); + + $add_action_links = $this->should_add_submenu_or_action_links( $is_activation_mode ); + + /** + * The following logic is based on the logic in `add_submenu_items()` method that decides when the "Upgrade" + * and "Add-Ons" menus should be added. + * + * @author Leo Fajardo (@leorw) + * @since 2.3.0 + */ + $add_upgrade_link = ( + $add_action_links || + ( $is_activation_mode && $this->is_only_premium() ) + ) && ! WP_FS__DEMO_MODE && ( ! $this->is_whitelabeled() ); + + $add_addons_link = ( $add_action_links && $this->has_addons() ); + + if ( ! $add_upgrade_link && ! $add_addons_link ) { + return; + } + + if ( + $add_upgrade_link && + $this->is_pricing_page_visible() && + $this->is_submenu_item_visible( 'pricing' ) + ) { $this->add_plugin_action_link( $this->get_text_inline( 'Upgrade', 'upgrade' ), $this->get_upgrade_url(), @@ -19875,7 +22087,11 @@ function _add_upgrade_action_link() { ); } - if ( $this->has_addons() ) { + if ( + $add_addons_link && + $this->has_addons() && + $this->is_submenu_item_visible( 'addons' ) + ) { $this->add_plugin_action_link( $this->get_text_inline( 'Add-Ons', 'add-ons' ), $this->_get_admin_page_url( 'addons' ), @@ -19926,7 +22142,7 @@ function _add_premium_version_upgrade_selection_action() { } /** - * Adds "Opt in" or "Opt out" link to the main "Plugins" page link actions collection. + * Adds "Opt In" or "Opt Out" link to the main "Plugins" page link actions collection. * * @author Leo Fajardo (@leorw) * @since 1.2.1.5 @@ -19938,15 +22154,26 @@ function _add_tracking_links() { $this->_logger->entrance(); - /** - * If the activation has been delegated to site admins, no tracking-related actions for now. - * - * @author Leo Fajardo (@leorw) - */ - if ( $this->_is_network_active && $this->is_network_delegated_connection() ) { + if ( $this->is_premium() ) { + // Don't add opt-in/out for premium code base. return; } + if ( fs_is_network_admin() ) { + if ( ! $this->_is_network_active ) { + // Don't add tracking links when browsing the network WP Admin and the plugin is not network active. + return; + } else if ( $this->is_network_delegated_connection() ) { + // Don't add tracking links when browsing the network WP Admin and the activation has been delegated to site admins. + return; + } + } else { + if ( $this->_is_network_active && ! $this->is_delegated_connection() ) { + // Don't add tracking links when browsing the sub-site WP Admin, the plugin is network active, and the connection was not delegated. + return; + } + } + if ( fs_request_is_action_secure( $this->get_unique_affix() . '_reconnect' ) ) { if ( ! $this->is_registered() && $this->is_anonymous() ) { $this->connect_again(); @@ -19962,14 +22189,16 @@ function _add_tracking_links() { return; } - if ( ! $this->is_enable_anonymous() ) { - // Don't allow to opt-out if anonymous mode is disabled. - return; - } + if ( $this->is_registered() && $this->is_tracking_allowed() ) { + if ( ! $this->is_enable_anonymous() ) { + // If opted in and tracking is allowed, don't allow to opt out if anonymous mode is disabled. + return; + } - if ( ! $this->is_free_plan() ) { - // Don't allow to opt-out if running in paid plan. - return; + if ( ! $this->is_free_plan() ) { + // Don't allow to opt out if running in paid plan. + return; + } } if ( $this->add_ajax_action( 'stop_tracking', array( &$this, '_stop_tracking_callback' ) ) ) { @@ -19980,7 +22209,8 @@ function _add_tracking_links() { return; } - $url = '#'; + $link_text_id = ''; + $url = '#'; if ( $this->is_registered() ) { if ( $this->is_tracking_allowed() ) { @@ -19988,9 +22218,10 @@ function _add_tracking_links() { } else { $link_text_id = $this->get_text_inline( 'Opt In', 'opt-in' ); } - - add_action( 'admin_footer', array( &$this, '_add_optout_dialog' ) ); - } else { + } else if ( $this->is_anonymous() || $this->is_activation_mode() ) { + /** + * Show opt-in link only if skipped or in activation mode. + */ $link_text_id = $this->get_text_inline( 'Opt In', 'opt-in' ); $params = ! $this->is_anonymous() ? @@ -20003,7 +22234,9 @@ function _add_tracking_links() { $url = $this->get_activation_url( $params ); } - if ( $this->is_plugin() && self::is_plugins_page() ) { + add_action( 'admin_footer', array( &$this, '_add_optout_dialog' ) ); + + if ( ! empty( $link_text_id ) && $this->is_plugin() && self::is_plugins_page() ) { $this->add_plugin_action_link( $link_text_id, $url, @@ -20026,7 +22259,9 @@ function get_after_plugin_activation_redirect_url() { $url = false; if ( ! $this->is_addon() || ! $this->has_free_plan() ) { - $first_time_path = $this->_menu->get_first_time_path(); + $first_time_path = $this->_menu->get_first_time_path( + fs_is_network_admin() && $this->_is_network_active + ); if ( $this->is_activation_mode() ) { $url = $this->get_activation_url(); @@ -20214,8 +22449,8 @@ private function get_complete_upgrade_instructions( $plan_title = '' ) { $premium_plugin_basename = $this->premium_plugin_basename(); return sprintf( - /* translators: %1s: Product title; %2s: Plan title */ - $this->get_text_inline( ' The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s', 'activate-premium-version' ), + /* translators: %1$s: Product title; %2$s: Plan title */ + $this->get_text_inline( ' The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s', 'activate-premium-version' ), sprintf( '%s', esc_html( $this->get_plugin_title() ) ), $plan_title, sprintf( @@ -20245,7 +22480,7 @@ private function get_complete_upgrade_instructions( $plan_title = '' ) { ) ), $deactivation_step, $this->get_text_inline( 'Upload and activate the downloaded version', 'upload-and-activate' ), - '//bit.ly/upload-wp-' . $this->_module_type . 's', + $this->apply_filters( 'upload_and_install_video_url', '//bit.ly/upload-wp-' . $this->_module_type . 's' ), $this->get_text_inline( 'How to upload and activate?', 'howto-upload-activate' ) ); } @@ -20690,7 +22925,7 @@ function _add_auto_installation_dialog_box() { function _tabs_capture() { $this->_logger->entrance(); - if ( ! $this->is_theme_settings_page() || + if ( ! $this->is_product_settings_page() || ! $this->is_matching_url( $this->main_menu_url() ) ) { return; @@ -20745,7 +22980,7 @@ function _store_tabs_ajax_action() { function _store_tabs_styles() { $this->_logger->entrance(); - if ( ! $this->is_theme_settings_page() || + if ( ! $this->is_product_settings_page() || ! $this->is_matching_url( $this->main_menu_url() ) ) { return; @@ -20819,18 +23054,23 @@ private function should_page_include_tabs() { return false; } - if ( ! $this->is_theme() ) { + if ( self::NAVIGATION_TABS !== $this->_navigation ) { // Only add tabs to themes for now. return false; } - if ( ! $this->has_paid_plan() && ! $this->has_addons() ) { + if ( $this->is_theme() && ! $this->has_paid_plan() && ! $this->has_addons() ) { // Only add tabs to monetizing themes. return false; } - if ( ! $this->is_theme_settings_page() ) { - // Only add tabs if browsing one of the theme's setting pages. + if ( ! $this->is_product_settings_page() ) { + // Only add tabs if browsing one of the product's setting pages. + return false; + } + + if ( $this->is_activation_mode() && $this->is_activation_page() ) { + // Don't include tabs in the activation page. return false; } @@ -21228,7 +23468,9 @@ private function get_gdpr_admin_notice_string( $user_plugins ) { 'plugin', $user_plugin->id, $user_plugin->public_key, - ! $user_plugin->is_live + ! $user_plugin->is_live, + false, + $this->get_sdk_version() ); $addons_result = $plugin_api->get( '/addons.json?enriched=true', true ); @@ -21318,7 +23560,7 @@ private function get_gdpr_admin_notice_string( $user_plugins ) { '%s %s %s', $thank_you, $already_opted_in, - sprintf($this->get_text_inline( 'Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂', 'due-to-gdpr-compliance-requirements' ), '', '') . + sprintf( $this->get_text_inline( 'Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard :-)', 'due-to-gdpr-compliance-requirements' ), '', '' ) . '' . '' . $this->get_text_inline( "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:", 'contact-for-updates' ) . '' . $actions . @@ -21515,8 +23757,8 @@ function _maybe_show_gdpr_admin_notice() { } $modules = array_merge( - array_values( self::$_accounts->get_option( 'plugins', array() ) ), - array_values( self::$_accounts->get_option( 'themes', array() ) ) + array_values( self::maybe_get_entities_account_option( 'plugins', array() ) ), + array_values( self::maybe_get_entities_account_option( 'themes', array() ) ) ); foreach ( $modules as $module ) { @@ -21660,8 +23902,8 @@ function _gdpr_optin_ajax_action() { } $modules = array_merge( - array_values( self::$_accounts->get_option( 'plugins', array() ) ), - array_values( self::$_accounts->get_option( 'themes', array() ) ) + array_values( self::maybe_get_entities_account_option( 'plugins', array() ) ), + array_values( self::maybe_get_entities_account_option( 'themes', array() ) ) ); foreach ( $modules as $key => $module ) { diff --git a/external/Freemius/includes/class-fs-api.php b/external/Freemius/includes/class-fs-api.php index 0727fc07..993b88b6 100755 --- a/external/Freemius/includes/class-fs-api.php +++ b/external/Freemius/includes/class-fs-api.php @@ -56,23 +56,40 @@ class FS_Api { */ private $_logger; - /** + /** + * @author Leo Fajardo (@leorw) + * @since 2.3.0 + * + * @var string + */ + private $_sdk_version; + + /** * @param string $slug * @param string $scope 'app', 'developer', 'user' or 'install'. * @param number $id Element's id. * @param string $public_key Public key. * @param bool $is_sandbox * @param bool|string $secret_key Element's secret key. + * @param null|string $sdk_version * * @return FS_Api */ - static function instance( $slug, $scope, $id, $public_key, $is_sandbox, $secret_key = false ) { + static function instance( + $slug, + $scope, + $id, + $public_key, + $is_sandbox, + $secret_key = false, + $sdk_version = null + ) { $identifier = md5( $slug . $scope . $id . $public_key . ( is_string( $secret_key ) ? $secret_key : '' ) . json_encode( $is_sandbox ) ); if ( ! isset( self::$_instances[ $identifier ] ) ) { self::_init(); - self::$_instances[ $identifier ] = new FS_Api( $slug, $scope, $id, $public_key, $secret_key, $is_sandbox ); + self::$_instances[ $identifier ] = new FS_Api( $slug, $scope, $id, $public_key, $secret_key, $is_sandbox, $sdk_version ); } return self::$_instances[ $identifier ]; @@ -105,12 +122,22 @@ private static function _init() { * @param string $public_key Public key. * @param bool|string $secret_key Element's secret key. * @param bool $is_sandbox + * @param null|string $sdk_version */ - private function __construct( $slug, $scope, $id, $public_key, $secret_key, $is_sandbox ) { + private function __construct( + $slug, + $scope, + $id, + $public_key, + $secret_key, + $is_sandbox, + $sdk_version + ) { $this->_api = new Freemius_Api_WordPress( $scope, $id, $public_key, $secret_key, $is_sandbox ); - $this->_slug = $slug; - $this->_logger = FS_Logger::get_logger( WP_FS__SLUG . '_' . $slug . '_api', WP_FS__DEBUG_SDK, WP_FS__ECHO_DEBUG_SDK ); + $this->_slug = $slug; + $this->_sdk_version = $sdk_version; + $this->_logger = FS_Logger::get_logger( WP_FS__SLUG . '_' . $slug . '_api', WP_FS__DEBUG_SDK, WP_FS__ECHO_DEBUG_SDK ); } /** @@ -154,39 +181,51 @@ private function _sync_clock_diff( $diff = false ) { * @return array|mixed|string|void */ private function _call( $path, $method = 'GET', $params = array(), $retry = false ) { - $this->_logger->entrance( $method . ':' . $path ); - - if ( self::is_temporary_down() ) { - $result = $this->get_temporary_unavailable_error(); - } else { - $result = $this->_api->Api( $path, $method, $params ); - - if ( null !== $result && - isset( $result->error ) && - isset( $result->error->code ) && - 'request_expired' === $result->error->code - ) { - if ( ! $retry ) { - $diff = isset( $result->error->timestamp ) ? - ( time() - strtotime( $result->error->timestamp ) ) : - false; - - // Try to sync clock diff. - if ( false !== $this->_sync_clock_diff( $diff ) ) { - // Retry call with new synced clock. - return $this->_call( $path, $method, $params, true ); - } - } - } - } + $this->_logger->entrance( $method . ':' . $path ); + + if ( self::is_temporary_down() ) { + $result = $this->get_temporary_unavailable_error(); + } else { + /** + * @since 2.3.0 Include the SDK version with all API requests that going through the API manager. IMPORTANT: Only pass the SDK version if the caller didn't include it yet. + */ + if ( ! empty( $this->_sdk_version ) ) { + if ( false === strpos( $path, 'sdk_version=' ) && + ! isset( $params['sdk_version'] ) + ) { + // Always add the sdk_version param in the querystring. DO NOT INCLUDE IT IN THE BODY PARAMS, OTHERWISE, IT MAY LEAD TO AN UNEXPECTED PARAMS PARSING IN CASES WHERE THE $params IS A REGULAR NON-ASSOCIATIVE ARRAY. + $path = add_query_arg( 'sdk_version', $this->_sdk_version, $path ); + } + } + + $result = $this->_api->Api( $path, $method, $params ); + + if ( null !== $result && + isset( $result->error ) && + isset( $result->error->code ) && + 'request_expired' === $result->error->code + ) { + if ( ! $retry ) { + $diff = isset( $result->error->timestamp ) ? + ( time() - strtotime( $result->error->timestamp ) ) : + false; + + // Try to sync clock diff. + if ( false !== $this->_sync_clock_diff( $diff ) ) { + // Retry call with new synced clock. + return $this->_call( $path, $method, $params, true ); + } + } + } + } - if ( $this->_logger->is_on() && self::is_api_error( $result ) ) { - // Log API errors. - $this->_logger->api_error( $result ); - } + if ( $this->_logger->is_on() && self::is_api_error( $result ) ) { + // Log API errors. + $this->_logger->api_error( $result ); + } - return $result; - } + return $result; + } /** * Override API call to wrap it in servers' clock sync method. @@ -253,7 +292,7 @@ function get( $path = '/', $flush = false, $expiration = WP_FS__TIME_24_HOURS_IN * If the response code is 404, cache the result for half of the `$expiration`. * * @author Leo Fajardo (@leorw) - * @since 2.2.3.1 + * @since 2.2.4 */ $expiration /= 2; } else { diff --git a/external/Freemius/includes/class-fs-plugin-updater.php b/external/Freemius/includes/class-fs-plugin-updater.php index bcd416b5..064d8d6d 100755 --- a/external/Freemius/includes/class-fs-plugin-updater.php +++ b/external/Freemius/includes/class-fs-plugin-updater.php @@ -102,7 +102,9 @@ private function filters() { 'edit_and_echo_plugin_update_row' ), 11, 2 ); - add_action( 'admin_head', array( &$this, 'catch_plugin_information_dialog_contents' ) ); + if ( ! $this->_fs->has_any_active_valid_license() ) { + add_action( 'admin_head', array( &$this, 'catch_plugin_information_dialog_contents' ) ); + } if ( ! WP_FS__IS_PRODUCTION_MODE ) { add_filter( 'http_request_host_is_external', array( @@ -164,32 +166,71 @@ function edit_and_echo_plugin_information_dialog_contents( $hook_suffix ) { $contents = ob_get_clean(); - /** - * Replace the plugin information dialog's "Install Update Now" button's text and URL. If there's a license, - * the text will be "Renew license" and will link to the checkout page with the license's billing cycle - * and quota. If there's no license, the text will be "Buy license" and will link to the pricing page. - */ - $contents = preg_replace( - '/(.+\)(.+)(\<\/a.+)/is', - is_object( $license ) ? - sprintf( - '$1$3%s$5%s$7', - $this->_fs->checkout_url( - is_object( $subscription ) ? - ( 1 == $subscription->billing_cycle ? WP_FS__PERIOD_MONTHLY : WP_FS__PERIOD_ANNUALLY ) : - WP_FS__PERIOD_LIFETIME, - false, - array( 'licenses' => $license->quota ) + $update_button_id_attribute_pos = strpos( $contents, 'id="plugin_update_from_iframe"' ); + + if ( false !== $update_button_id_attribute_pos ) { + $update_button_start_pos = strrpos( + substr( $contents, 0, $update_button_id_attribute_pos ), + '', $update_button_id_attribute_pos ) + strlen( '' ) ); + + /** + * The part of the contents without the update button. + * + * @author Leo Fajardo (@leorw) + * @since 2.2.5 + */ + $modified_contents = substr( $contents, 0, $update_button_start_pos ); + + $update_button = substr( $contents, $update_button_start_pos, ( $update_button_end_pos - $update_button_start_pos ) ); + + /** + * Replace the plugin information dialog's "Install Update Now" button's text and URL. If there's a license, + * the text will be "Renew license" and will link to the checkout page with the license's billing cycle + * and quota. If there's no license, the text will be "Buy license" and will link to the pricing page. + */ + $update_button = preg_replace( + '/(\)(.+)(\<\/a>)/is', + is_object( $license ) ? + sprintf( + '$1$3%s$5%s$7', + $this->_fs->checkout_url( + is_object( $subscription ) ? + ( 1 == $subscription->billing_cycle ? WP_FS__PERIOD_MONTHLY : WP_FS__PERIOD_ANNUALLY ) : + WP_FS__PERIOD_LIFETIME, + false, + array( 'licenses' => $license->quota ) + ), + fs_text_inline( 'Renew license', 'renew-license', $this->_fs->get_slug() ) + ) : + sprintf( + '$1$3%s$5%s$7', + $this->_fs->pricing_url(), + fs_text_inline( 'Buy license', 'buy-license', $this->_fs->get_slug() ) ), - fs_text_inline( 'Renew license', 'renew-license', $this->_fs->get_slug() ) - ) : - sprintf( - '$1$3%s$5%s$7', - $this->_fs->pricing_url(), - fs_text_inline( 'Buy license', 'buy-license', $this->_fs->get_slug() ) - ), - $contents - ); + $update_button + ); + + /** + * Append the modified button. + * + * @author Leo Fajardo (@leorw) + * @since 2.2.5 + */ + $modified_contents .= $update_button; + + /** + * Append the remaining part of the contents after the update button. + * + * @author Leo Fajardo (@leorw) + * @since 2.2.5 + */ + $modified_contents .= substr( $contents, $update_button_end_pos ); + + $contents = $modified_contents; + } echo $contents; } @@ -257,7 +298,40 @@ function edit_and_echo_plugin_update_row( $file, $plugin_data ) { $r = $current->response[ $file ]; - if ( ! $this->_fs->has_any_active_valid_license() ) { + $has_beta_update = $this->_fs->has_beta_update(); + + if ( $this->_fs->has_any_active_valid_license() ) { + if ( $has_beta_update ) { + /** + * Turn the "new version" text into "new Beta version". + * + * Sample input: + * There is a new version of Awesome Plugin available. update now. + * Output: + * There is a new Beta version of Awesome Plugin available. update now. + * + * @author Leo Fajardo (@leorw) + * @since 2.3.0 + */ + $plugin_update_row = preg_replace( + '/(\)(.+)(\.+\)/is', + ( + '$1' . + sprintf( + fs_text_inline( 'There is a %s of %s available.', 'new-version-available', $this->_fs->get_slug() ), + $has_beta_update ? + fs_text_inline( 'new Beta version', 'new-beta-version', $this->_fs->get_slug() ) : + fs_text_inline( 'new version', 'new-version', $this->_fs->get_slug() ), + $this->_fs->get_plugin_title() + ) . + ' ' . + '$3' . + '$6' + ), + $plugin_update_row + ); + } + } else { /** * Turn the "new version" text into a link that opens the plugin information dialog when clicked and * make the "View version x details" text link to the checkout page instead of opening the plugin @@ -267,6 +341,8 @@ function edit_and_echo_plugin_update_row( $file, $plugin_data ) { * There is a new version of Awesome Plugin available. update now. * Output: * There is a Buy a license now to access version x.y.z security & feature updates, and support. + * OR + * There is a Buy a license now to access version x.y.z security & feature updates, and support. * * @author Leo Fajardo (@leorw) */ @@ -279,7 +355,9 @@ function edit_and_echo_plugin_update_row( $file, $plugin_data ) { sprintf( '%s', '$5', - fs_text_inline( 'new version', 'new-version', $this->_fs->get_slug() ) + $has_beta_update ? + fs_text_inline( 'new Beta version', 'new-beta-version', $this->_fs->get_slug() ) : + fs_text_inline( 'new version', 'new-version', $this->_fs->get_slug() ) ), $this->_fs->get_plugin_title() ) . @@ -299,7 +377,7 @@ function edit_and_echo_plugin_update_row( $file, $plugin_data ) { $slug = $this->_fs->get_slug(); $upgrade_notice_html = sprintf( - '%3s %4s', + '%3$s %4$s', $slug, $this->_fs->get_module_type(), fs_text_inline( 'Important Upgrade Notice:', 'upgrade_notice', $slug ), @@ -411,18 +489,40 @@ function pre_set_site_transient_update_plugins_filter( $transient_data ) { return $transient_data; } + global $wp_current_filter; + + $current_plugin_version = $this->_fs->get_plugin_version(); + + if ( ! empty( $wp_current_filter ) && 'upgrader_process_complete' === $wp_current_filter[0] ) { + if ( + is_null( $this->_update_details ) || + ( is_object( $this->_update_details ) && $this->_update_details->new_version !== $current_plugin_version ) + ) { + /** + * After an update, clear the stored update details and reparse the plugin's main file in order to get + * the updated version's information and prevent the previous update information from showing up on the + * updates page. + * + * @author Leo Fajardo (@leorw) + * @since 2.3.1 + */ + $this->_update_details = null; + $current_plugin_version = $this->_fs->get_plugin_version( true ); + } + } + if ( ! isset( $this->_update_details ) ) { // Get plugin's newest update. $new_version = $this->_fs->get_update( false, fs_request_get_bool( 'force-check' ), WP_FS__TIME_24_HOURS_IN_SEC / 24, - $this->_fs->get_plugin_version() + $current_plugin_version ); $this->_update_details = false; - if ( is_object( $new_version ) ) { + if ( is_object( $new_version ) && $this->is_new_version_premium( $new_version ) ) { $this->_logger->log( 'Found newer plugin version ' . $new_version->version ); /** @@ -437,10 +537,22 @@ function pre_set_site_transient_update_plugins_filter( $transient_data ) { } if ( is_object( $this->_update_details ) ) { + if ( ! isset( $transient_data->response ) ) { + $transient_data->response = array(); + } + // Add plugin to transient data. - $transient_data->response[ $this->_fs->get_plugin_basename() ] = $this->_fs->is_plugin() ? + $transient_data->response[ $this->_fs->premium_plugin_basename() ] = $this->_fs->is_plugin() ? $this->_update_details : (array) $this->_update_details; + } else if ( isset( $transient_data->response ) ) { + /** + * Ensure that there's no update data for the plugin to prevent upgrading the premium version to the latest free version. + * + * @author Leo Fajardo (@leorw) + * @since 2.3.0 + */ + unset( $transient_data->response[ $this->_fs->premium_plugin_basename() ] ); } $slug = $this->_fs->get_slug(); @@ -532,6 +644,25 @@ function get_update_details( FS_Plugin_Tag $new_version ) { return $update; } + /** + * @author Leo Fajardo (@leorw) + * @since 2.3.0 + * + * @param FS_Plugin_Tag $new_version + * + * @return bool + */ + private function is_new_version_premium( FS_Plugin_Tag $new_version ) { + $query_str = parse_url( $new_version->url, PHP_URL_QUERY ); + if ( empty( $query_str ) ) { + return false; + } + + parse_str( $query_str, $params ); + + return ( isset( $params['is_premium'] ) && 'true' == $params['is_premium'] ); + } + /** * Update the updates transient with the module's update information. * @@ -550,6 +681,10 @@ function get_update_details( FS_Plugin_Tag $new_version ) { function set_update_data( FS_Plugin_Tag $new_version ) { $this->_logger->entrance(); + if ( ! $this->is_new_version_premium( $new_version ) ) { + return; + } + $transient_key = "update_{$this->_fs->get_module_type()}s"; $transient_data = get_site_transient( $transient_key ); @@ -834,8 +969,9 @@ function plugins_api_filter( $data, $action = '', $args = null ) { return $data; } - $addon = false; - $is_addon = false; + $addon = false; + $is_addon = false; + $addon_version = false; if ( $this->_fs->get_slug() !== $args->slug ) { $addon = $this->_fs->get_addon_by_slug( $args->slug ); @@ -844,6 +980,20 @@ function plugins_api_filter( $data, $action = '', $args = null ) { return $data; } + if ( $this->_fs->is_addon_activated( $addon->id ) ) { + $addon_version = $this->_fs->get_addon_instance( $addon->id )->get_plugin_version(); + } else if ( $this->_fs->is_addon_installed( $addon->id ) ) { + $addon_plugin_data = get_plugin_data( + ( WP_PLUGIN_DIR . '/' . $this->_fs->get_addon_basename( $addon->id ) ), + false, + false + ); + + if ( ! empty( $addon_plugin_data ) ) { + $addon_version = $addon_plugin_data['Version']; + } + } + $is_addon = true; } @@ -874,7 +1024,9 @@ function plugins_api_filter( $data, $action = '', $args = null ) { }*/ } - $plugin_version = $this->_fs->get_plugin_version(); + $plugin_version = $is_addon ? + $addon_version : + $this->_fs->get_plugin_version(); // Get plugin's newest update. $new_version = $this->get_latest_download_details( $is_addon ? $addon->id : false, $plugin_version ); @@ -1002,8 +1154,8 @@ function _maybe_update_folder_name( $response, $hook_extra, $result ) { $active_plugins_basenames = get_option( 'active_plugins' ); - for ( $i = 0, $len = count( $active_plugins_basenames ); $i < $len; $i ++ ) { - if ( $basename === $active_plugins_basenames[ $i ] ) { + foreach ( $active_plugins_basenames as $key => $active_plugin_basename ) { + if ( $basename === $active_plugin_basename ) { // Get filename including extension. $filename = basename( $basename ); @@ -1015,7 +1167,7 @@ function _maybe_update_folder_name( $response, $hook_extra, $result ) { // Verify that the expected correct path exists. if ( file_exists( fs_normalize_path( WP_PLUGIN_DIR . '/' . $new_basename ) ) ) { // Override active plugin name. - $active_plugins_basenames[ $i ] = $new_basename; + $active_plugins_basenames[ $key ] = $new_basename; update_option( 'active_plugins', $active_plugins_basenames ); } diff --git a/external/Freemius/includes/class-fs-storage.php b/external/Freemius/includes/class-fs-storage.php index 08492125..17093051 100755 --- a/external/Freemius/includes/class-fs-storage.php +++ b/external/Freemius/includes/class-fs-storage.php @@ -336,55 +336,61 @@ function migrate_to_network() { private static function load_network_options_map() { self::$_NETWORK_OPTIONS_MAP = array( // Network level options. - 'affiliate_application_data' => 0, - 'connectivity_test' => 0, - 'handle_gdpr_admin_notice' => 0, - 'has_trial_plan' => 0, - 'install_sync_timestamp' => 0, - 'install_sync_cron' => 0, - 'is_anonymous_ms' => 0, - 'is_on' => 0, - 'is_plugin_new_install' => 0, - 'network_install_blog_id' => 0, - 'pending_sites_info' => 0, - 'plugin_last_version' => 0, - 'plugin_main_file' => 0, - 'plugin_version' => 0, - 'sdk_downgrade_mode' => 0, - 'sdk_last_version' => 0, - 'sdk_upgrade_mode' => 0, - 'sdk_version' => 0, - 'sticky_optin_added_ms' => 0, - 'subscriptions' => 0, - 'sync_timestamp' => 0, - 'sync_cron' => 0, - 'was_plugin_loaded' => 0, - 'network_user_id' => 0, - 'plugin_upgrade_mode' => 0, - 'plugin_downgrade_mode' => 0, - 'is_network_connected' => 0, + 'affiliate_application_data' => 0, + 'beta_data' => 0, + 'connectivity_test' => 0, + 'handle_gdpr_admin_notice' => 0, + 'has_trial_plan' => 0, + 'install_sync_timestamp' => 0, + 'install_sync_cron' => 0, + 'is_anonymous_ms' => 0, + 'is_network_activated' => 0, + 'is_on' => 0, + 'is_plugin_new_install' => 0, + 'network_install_blog_id' => 0, + 'pending_sites_info' => 0, + 'plugin_last_version' => 0, + 'plugin_main_file' => 0, + 'plugin_version' => 0, + 'sdk_downgrade_mode' => 0, + 'sdk_last_version' => 0, + 'sdk_upgrade_mode' => 0, + 'sdk_version' => 0, + 'sticky_optin_added_ms' => 0, + 'subscriptions' => 0, + 'sync_timestamp' => 0, + 'sync_cron' => 0, + 'was_plugin_loaded' => 0, + 'network_user_id' => 0, + 'plugin_upgrade_mode' => 0, + 'plugin_downgrade_mode' => 0, + 'is_network_connected' => 0, /** * Special flag that is used when a super-admin upgrades to the new version of the SDK that * supports network level integration, when the connection decision wasn't made for all of the * sites in the network. */ - 'is_network_activation' => 0, + 'is_network_activation' => 0, // When network activated, then network level. - 'install_timestamp' => 1, - 'prev_is_premium' => 1, - 'require_license_activation' => 1, + 'install_timestamp' => 1, + 'prev_is_premium' => 1, + 'require_license_activation' => 1, // If not network activated OR delegated, then site level. - 'activation_timestamp' => 2, - 'prev_user_id' => 2, - 'sticky_optin_added' => 2, - 'uninstall_reason' => 2, - 'is_pending_activation' => 2, - 'pending_license_key' => 2, + 'activation_timestamp' => 2, + 'expired_license_notice_shown' => 2, + 'is_whitelabeled' => 2, + 'last_license_key' => 2, + 'last_license_user_id' => 2, + 'prev_user_id' => 2, + 'sticky_optin_added' => 2, + 'uninstall_reason' => 2, + 'is_pending_activation' => 2, + 'pending_license_key' => 2, // Site level options. - 'is_anonymous' => 3, + 'is_anonymous' => 3, ); } diff --git a/external/Freemius/includes/customizer/class-fs-customizer-upsell-control.php b/external/Freemius/includes/customizer/class-fs-customizer-upsell-control.php index 02d78959..94dc430b 100755 --- a/external/Freemius/includes/customizer/class-fs-customizer-upsell-control.php +++ b/external/Freemius/includes/customizer/class-fs-customizer-upsell-control.php @@ -58,8 +58,12 @@ public function to_json() { $this->fs->get_trial_url() : $this->fs->get_upgrade_url(); + $api = FS_Plugin::is_valid_id( $this->fs->get_bundle_id() ) ? + $this->fs->get_api_bundle_scope() : + $this->fs->get_api_plugin_scope(); + // Load features. - $pricing = $this->fs->get_api_plugin_scope()->get( $this->fs->add_show_pending( "pricing.json" ) ); + $pricing = $api->get( $this->fs->add_show_pending( "pricing.json" ) ); if ( $this->fs->is_api_result_object( $pricing, 'plans' ) ) { // Add support features. diff --git a/external/Freemius/includes/entities/class-fs-entity.php b/external/Freemius/includes/entities/class-fs-entity.php index 5d60773f..ce281f45 100755 --- a/external/Freemius/includes/entities/class-fs-entity.php +++ b/external/Freemius/includes/entities/class-fs-entity.php @@ -146,4 +146,14 @@ function is_updated() { static function is_valid_id($id){ return is_numeric($id); } + + /** + * @author Leo Fajardo (@leorw) + * @since 2.3.1 + * + * @return string + */ + public static function get_class_name() { + return get_called_class(); + } } \ No newline at end of file diff --git a/external/Freemius/includes/entities/class-fs-payment.php b/external/Freemius/includes/entities/class-fs-payment.php index dd05c2f5..475267eb 100755 --- a/external/Freemius/includes/entities/class-fs-payment.php +++ b/external/Freemius/includes/entities/class-fs-payment.php @@ -42,6 +42,13 @@ class FS_Payment extends FS_Entity { * @var float */ public $gross; + /** + * @author Leo Fajardo (@leorw) + * @since 2.3.0 + * + * @var string One of the following: `usd`, `gbp`, `eur`. + */ + public $currency; /** * @var number */ @@ -75,6 +82,10 @@ class FS_Payment extends FS_Entity { #endregion Properties + const CURRENCY_USD = 'usd'; + const CURRENCY_GBP = 'gbp'; + const CURRENCY_EUR = 'eur'; + /** * @param object|bool $payment */ @@ -107,4 +118,51 @@ function is_refund() { function is_migrated() { return ( 0 != $this->source ); } + + /** + * Returns the gross in this format: + * `{symbol}{amount | 2 decimal digits} {currency | uppercase}` + * + * Examples: £9.99 GBP, -£9.99 GBP. + * + * @author Leo Fajardo (@leorw) + * @since 2.3.0 + * + * @return string + */ + function formatted_gross() + { + return ( + ( $this->gross < 0 ? '-' : '' ) . + $this->get_symbol() . + number_format( abs( $this->gross ), 2, '.', ',' ) . ' ' . + strtoupper( $this->currency ) + ); + } + + /** + * A map between supported currencies with their symbols. + * + * @var array + */ + static $CURRENCY_2_SYMBOL; + + /** + * @author Leo Fajardo (@leorw) + * @since 2.3.0 + * + * @return string + */ + private function get_symbol() { + if ( ! isset( self::$CURRENCY_2_SYMBOL ) ) { + // Lazy load. + self::$CURRENCY_2_SYMBOL = array( + self::CURRENCY_USD => '$', + self::CURRENCY_GBP => '£', + self::CURRENCY_EUR => '€', + ); + } + + return self::$CURRENCY_2_SYMBOL[ $this->currency ]; + } } \ No newline at end of file diff --git a/external/Freemius/includes/entities/class-fs-plugin-license.php b/external/Freemius/includes/entities/class-fs-plugin-license.php index 9f2ffcd5..62c1b698 100755 --- a/external/Freemius/includes/entities/class-fs-plugin-license.php +++ b/external/Freemius/includes/entities/class-fs-plugin-license.php @@ -29,6 +29,27 @@ class FS_Plugin_License extends FS_Entity { * @var number */ public $plan_id; + /** + * @author Leo Fajardo (@leorw) + * @since 2.3.0 + * + * @var string + */ + public $parent_plan_name; + /** + * @author Leo Fajardo (@leorw) + * @since 2.3.0 + * + * @var string + */ + public $parent_plan_title; + /** + * @author Leo Fajardo (@leorw) + * @since 2.3.0 + * + * @var number + */ + public $parent_license_id; /** * @var number */ @@ -53,6 +74,10 @@ class FS_Plugin_License extends FS_Entity { * @var string */ public $secret_key; + /** + * @var bool + */ + public $is_whitelabeled; /** * @var bool $is_free_localhost Defaults to true. If true, allow unlimited localhost installs with the same * license. @@ -95,7 +120,7 @@ static function get_type() { * @return int */ function left() { - if ( ! $this->is_active() || $this->is_expired() ) { + if ( ! $this->is_features_enabled() ) { return 0; } @@ -266,4 +291,33 @@ function is_first_payment_pending() { function total_activations() { return ( $this->activated + $this->activated_local ); } + + /** + * @author Vova Feldman (@svovaf) + * @since 2.3.1 + * + * @return string + */ + function get_html_escaped_masked_secret_key() { + return self::mask_secret_key_for_html( $this->secret_key ); + } + + /** + * @author Vova Feldman (@svovaf) + * @since 2.3.1 + * + * @param string $secret_key + * + * @return string + */ + static function mask_secret_key_for_html( $secret_key ) { + return ( + // Initial 6 chars - sk_ABC + htmlspecialchars( substr( $secret_key, 0, 6 ) ) . + // Masking + str_pad( '', ( strlen( $secret_key ) - 9 ) * 6, '•' ) . + // Last 3 chars. + htmlspecialchars( substr( $secret_key, - 3 ) ) + ); + } } diff --git a/external/Freemius/includes/entities/class-fs-plugin-tag.php b/external/Freemius/includes/entities/class-fs-plugin-tag.php index 172da23f..739e9c8f 100755 --- a/external/Freemius/includes/entities/class-fs-plugin-tag.php +++ b/external/Freemius/includes/entities/class-fs-plugin-tag.php @@ -36,9 +36,9 @@ class FS_Plugin_Tag extends FS_Entity { */ public $has_premium; /** - * @var bool + * @var string One of the following: `pending`, `beta`, `unreleased`. */ - public $is_released; + public $release_mode; function __construct( $tag = false ) { parent::__construct( $tag ); @@ -47,4 +47,14 @@ function __construct( $tag = false ) { static function get_type() { return 'tag'; } + + /** + * @author Leo Fajardo (@leorw) + * @since 2.3.0 + * + * @return bool + */ + function is_beta() { + return ( 'beta' === $this->release_mode ); + } } \ No newline at end of file diff --git a/external/Freemius/includes/entities/class-fs-plugin.php b/external/Freemius/includes/entities/class-fs-plugin.php index 4623403b..2bc039aa 100755 --- a/external/Freemius/includes/entities/class-fs-plugin.php +++ b/external/Freemius/includes/entities/class-fs-plugin.php @@ -49,6 +49,13 @@ class FS_Plugin extends FS_Scope_Entity { * @var bool Set to true if the free version of the module is hosted on WordPress.org. Defaults to true. */ public $is_wp_org_compliant = true; + /** + * @author Leo Fajardo (@leorw) + * @since 2.2.5 + * + * @var int + */ + public $premium_releases_count; #region Install Specific Properties @@ -87,6 +94,16 @@ class FS_Plugin extends FS_Scope_Entity { * @var bool */ public $is_live; + /** + * @since 2.2.3 + * @var null|number + */ + public $bundle_id; + /** + * @since 2.3.1 + * @var null|string + */ + public $bundle_public_key; const AFFILIATE_MODERATION_CUSTOMERS = 'customers'; diff --git a/external/Freemius/includes/entities/class-fs-pricing.php b/external/Freemius/includes/entities/class-fs-pricing.php index f08b85d5..5404fe5e 100755 --- a/external/Freemius/includes/entities/class-fs-pricing.php +++ b/external/Freemius/includes/entities/class-fs-pricing.php @@ -34,6 +34,13 @@ class FS_Pricing extends FS_Entity { * @var null|float */ public $lifetime_price; + /** + * @author Leo Fajardo (@leorw) + * @since 2.3.1 + * + * @var string One of the following: `usd`, `gbp`, `eur`. + */ + public $currency; #endregion Properties @@ -138,4 +145,13 @@ function annual_savings() { return ( $this->monthly_price * 12 - $this->annual_price ) * ( $this->is_unlimited() ? 1 : $this->licenses ); } + /** + * @author Leo Fajardo (@leorw) + * @since 2.3.1 + * + * @return bool + */ + function is_usd() { + return ( 'usd' === $this->currency ); + } } \ No newline at end of file diff --git a/external/Freemius/includes/entities/class-fs-site.php b/external/Freemius/includes/entities/class-fs-site.php index 1e2c82f8..e8fec7d7 100755 --- a/external/Freemius/includes/entities/class-fs-site.php +++ b/external/Freemius/includes/entities/class-fs-site.php @@ -170,13 +170,16 @@ static function is_localhost_by_address( $url ) { fs_starts_with( $subdomain, 'staging' ) || // WPEngine staging. fs_ends_with( $subdomain, '.staging.wpengine.com' ) || + fs_ends_with( $subdomain, '.dev.wpengine.com' ) || // Pantheon - ( fs_ends_with($subdomain, 'pantheonsite.io') && - (fs_starts_with($subdomain, 'test-') || fs_starts_with($subdomain, 'dev-'))) || + ( fs_ends_with( $subdomain, 'pantheonsite.io' ) && + ( fs_starts_with( $subdomain, 'test-' ) || fs_starts_with( $subdomain, 'dev-' ) ) ) || // Cloudways fs_ends_with( $subdomain, '.cloudwaysapps.com' ) || // Kinsta - (fs_ends_with($subdomain, '.kinsta.com') && fs_starts_with($subdomain, 'staging-')) + ( fs_starts_with( $subdomain, 'staging-' ) && ( fs_ends_with( $subdomain, '.kinsta.com' ) || fs_ends_with( $subdomain, '.kinsta.cloud' ) ) ) || + // DesktopServer + fs_ends_with( $subdomain, '.dev.cc' ) ); } diff --git a/external/Freemius/includes/entities/class-fs-subscription.php b/external/Freemius/includes/entities/class-fs-subscription.php index 8a01402b..3556fbd3 100755 --- a/external/Freemius/includes/entities/class-fs-subscription.php +++ b/external/Freemius/includes/entities/class-fs-subscription.php @@ -1,125 +1,147 @@ next_payment ) && - ( strtotime( $this->next_payment ) > WP_FS__SCRIPT_START_TIME ); - } + /** + * Check if subscription is active. + * + * @author Vova Feldman (@svovaf) + * @since 1.0.9 + * + * @return bool + */ + function is_active() { + if ( $this->is_canceled() ) { + return false; + } - /** - * Subscription considered to be new without any payments - * if the next payment should be made within less than 24 hours - * from the subscription creation. - * - * @author Vova Feldman (@svovaf) - * @since 1.0.9 - * - * @return bool - */ - function is_first_payment_pending() { - return ( WP_FS__TIME_24_HOURS_IN_SEC >= strtotime( $this->next_payment ) - strtotime( $this->created ) ); - } + return ( + ! empty( $this->next_payment ) && + strtotime( $this->next_payment ) > WP_FS__SCRIPT_START_TIME + ); + } - /** - * @author Vova Feldman (@svovaf) - * @since 1.1.7 - */ - function has_trial() { - return ! is_null( $this->trial_ends ); - } - } \ No newline at end of file + /** + * @author Vova Feldman (@svovaf) + * @since 2.3.1 + * + * @return bool + */ + function is_canceled() { + return ! is_null( $this->canceled_at ); + } + + /** + * Subscription considered to be new without any payments + * if the next payment should be made within less than 24 hours + * from the subscription creation. + * + * @author Vova Feldman (@svovaf) + * @since 1.0.9 + * + * @return bool + */ + function is_first_payment_pending() { + return ( WP_FS__TIME_24_HOURS_IN_SEC >= strtotime( $this->next_payment ) - strtotime( $this->created ) ); + } + + /** + * @author Vova Feldman (@svovaf) + * @since 1.1.7 + */ + function has_trial() { + return ! is_null( $this->trial_ends ); + } + } \ No newline at end of file diff --git a/external/Freemius/includes/entities/class-fs-user.php b/external/Freemius/includes/entities/class-fs-user.php index a329e879..6ad4e0e2 100755 --- a/external/Freemius/includes/entities/class-fs-user.php +++ b/external/Freemius/includes/entities/class-fs-user.php @@ -31,6 +31,13 @@ class FS_User extends FS_Scope_Entity { */ public $is_verified; /** + * @author Leo Fajardo (@leorw) + * @since 2.3.0 + * + * @var bool + */ + public $is_beta; + /** * @var string|null */ public $customer_id; @@ -56,6 +63,16 @@ function is_verified() { return ( isset( $this->is_verified ) && true === $this->is_verified ); } + /** + * @author Leo Fajardo (@leorw) + * @since 2.3.0 + * + * @return bool + */ + function is_beta() { + return ( isset( $this->is_beta ) && true === $this->is_beta ); + } + static function get_type() { return 'user'; } diff --git a/external/Freemius/includes/fs-core-functions.php b/external/Freemius/includes/fs-core-functions.php index afa59f39..0001963f 100755 --- a/external/Freemius/includes/fs-core-functions.php +++ b/external/Freemius/includes/fs-core-functions.php @@ -63,63 +63,70 @@ function fs_get_template( $path, &$params = null ) { /* Scripts and styles including. --------------------------------------------------------------------------------------------*/ - /** - * Generates an absolute URL to the given path. This function ensures that the URL will be correct whether the asset - * is inside a plugin's folder or a theme's folder. - * - * Examples: - * 1. "themes" folder - * Path: C:/xampp/htdocs/fswp/wp-content/themes/twentytwelve/freemius/assets/css/admin/common.css - * URL: http://fswp:8080/wp-content/themes/twentytwelve/freemius/assets/css/admin/common.css - * - * 2. "plugins" folder - * Path: C:/xampp/htdocs/fswp/wp-content/plugins/rating-widget-premium/freemius/assets/css/admin/common.css - * URL: http://fswp:8080/wp-content/plugins/rating-widget-premium/freemius/assets/css/admin/common.css - * - * @author Leo Fajardo (@leorw) - * @since 1.2.2 - * - * @param string $asset_abs_path Asset's absolute path. - * - * @return string Asset's URL. - */ - function fs_asset_url( $asset_abs_path ) { - $wp_content_dir = fs_normalize_path( WP_CONTENT_DIR ); - $asset_abs_path = fs_normalize_path( $asset_abs_path ); - - if ( 0 === strpos( $asset_abs_path, $wp_content_dir ) ) { - // Handle both theme and plugin assets located in the standard directories. - $asset_rel_path = str_replace( $wp_content_dir, '', $asset_abs_path ); - $asset_url = content_url( fs_normalize_path( $asset_rel_path ) ); - } else { - $wp_plugins_dir = fs_normalize_path( WP_PLUGIN_DIR ); - if ( 0 === strpos( $asset_abs_path, $wp_plugins_dir ) ) { - // Try to handle plugin assets that may be located in a non-standard plugins directory. - $asset_rel_path = str_replace( $wp_plugins_dir, '', $asset_abs_path ); - $asset_url = plugins_url( fs_normalize_path( $asset_rel_path ) ); + if ( ! function_exists( 'fs_asset_url' ) ) { + /** + * Generates an absolute URL to the given path. This function ensures that the URL will be correct whether the asset + * is inside a plugin's folder or a theme's folder. + * + * Examples: + * 1. "themes" folder + * Path: C:/xampp/htdocs/fswp/wp-content/themes/twentytwelve/freemius/assets/css/admin/common.css + * URL: http://fswp:8080/wp-content/themes/twentytwelve/freemius/assets/css/admin/common.css + * + * 2. "plugins" folder + * Path: C:/xampp/htdocs/fswp/wp-content/plugins/rating-widget-premium/freemius/assets/css/admin/common.css + * URL: http://fswp:8080/wp-content/plugins/rating-widget-premium/freemius/assets/css/admin/common.css + * + * @author Leo Fajardo (@leorw) + * @since 1.2.2 + * + * @param string $asset_abs_path Asset's absolute path. + * + * @return string Asset's URL. + */ + function fs_asset_url( $asset_abs_path ) { + $wp_content_dir = fs_normalize_path( WP_CONTENT_DIR ); + $asset_abs_path = fs_normalize_path( $asset_abs_path ); + + if ( 0 === strpos( $asset_abs_path, $wp_content_dir ) ) { + // Handle both theme and plugin assets located in the standard directories. + $asset_rel_path = str_replace( $wp_content_dir, '', $asset_abs_path ); + $asset_url = content_url( fs_normalize_path( $asset_rel_path ) ); } else { - // Try to handle theme assets that may be located in a non-standard themes directory. - $active_theme_stylesheet = get_stylesheet(); - $wp_themes_dir = fs_normalize_path( trailingslashit( get_theme_root( $active_theme_stylesheet ) ) ); - $asset_rel_path = str_replace( $wp_themes_dir, '', fs_normalize_path( $asset_abs_path ) ); - $asset_url = trailingslashit( get_theme_root_uri( $active_theme_stylesheet ) ) . fs_normalize_path( $asset_rel_path ); + $wp_plugins_dir = fs_normalize_path( WP_PLUGIN_DIR ); + if ( 0 === strpos( $asset_abs_path, $wp_plugins_dir ) ) { + // Try to handle plugin assets that may be located in a non-standard plugins directory. + $asset_rel_path = str_replace( $wp_plugins_dir, '', $asset_abs_path ); + $asset_url = plugins_url( fs_normalize_path( $asset_rel_path ) ); + } else { + // Try to handle theme assets that may be located in a non-standard themes directory. + $active_theme_stylesheet = get_stylesheet(); + $wp_themes_dir = fs_normalize_path( trailingslashit( get_theme_root( $active_theme_stylesheet ) ) ); + $asset_rel_path = str_replace( $wp_themes_dir, '', fs_normalize_path( $asset_abs_path ) ); + $asset_url = trailingslashit( get_theme_root_uri( $active_theme_stylesheet ) ) . fs_normalize_path( $asset_rel_path ); + } } - } - $asset_url = apply_filters('freemius/filter/asset_url', $asset_url); - return $asset_url; + return apply_filters('freemius/filter/asset_url', $asset_url); + } } - function fs_enqueue_local_style( $handle, $path, $deps = array(), $ver = false, $media = 'all' ) { - wp_enqueue_style( $handle, fs_asset_url( WP_FS__DIR_CSS . '/' . trim( $path, '/' ) ), $deps, $ver, $media ); + if ( ! function_exists( 'fs_enqueue_local_style' ) ) { + function fs_enqueue_local_style( $handle, $path, $deps = array(), $ver = false, $media = 'all' ) { + wp_enqueue_style( $handle, fs_asset_url( WP_FS__DIR_CSS . '/' . trim( $path, '/' ) ), $deps, $ver, $media ); + } } - function fs_enqueue_local_script( $handle, $path, $deps = array(), $ver = false, $in_footer = 'all' ) { - wp_enqueue_script( $handle, fs_asset_url( WP_FS__DIR_JS . '/' . trim( $path, '/' ) ), $deps, $ver, $in_footer ); + if ( ! function_exists( 'fs_enqueue_local_script' ) ) { + function fs_enqueue_local_script( $handle, $path, $deps = array(), $ver = false, $in_footer = 'all' ) { + wp_enqueue_script( $handle, fs_asset_url( WP_FS__DIR_JS . '/' . trim( $path, '/' ) ), $deps, $ver, $in_footer ); + } } - function fs_img_url( $path, $img_dir = WP_FS__DIR_IMG ) { - return ( fs_asset_url( $img_dir . '/' . trim( $path, '/' ) ) ); + if ( ! function_exists( 'fs_img_url' ) ) { + function fs_img_url( $path, $img_dir = WP_FS__DIR_IMG ) { + return ( fs_asset_url( $img_dir . '/' . trim( $path, '/' ) ) ); + } } #-------------------------------------------------------------------------------- @@ -128,6 +135,9 @@ function fs_img_url( $path, $img_dir = WP_FS__DIR_IMG ) { if ( ! function_exists( 'fs_request_get' ) ) { /** + * A helper method to fetch GET/POST user input with an optional default value when the input is not set. + * @author Vova Feldman (@svovaf) + * * @param string $key * @param mixed $def * @param string|bool $type Since 1.2.1.7 - when set to 'get' will look for the value passed via querystring, when @@ -141,6 +151,10 @@ function fs_request_get( $key, $def = false, $type = false ) { $type = strtolower( $type ); } + /** + * Note to WordPress.org Reviewers: + * This is a helper method to fetch GET/POST user input with an optional default value when the input is not set. The actual sanitization is done in the scope of the function's usage. + */ switch ( $type ) { case 'post': $value = isset( $_POST[ $key ] ) ? $_POST[ $key ] : $def; @@ -164,17 +178,39 @@ function fs_request_has( $key ) { } if ( ! function_exists( 'fs_request_get_bool' ) ) { + /** + * A helper method to fetch GET/POST user boolean input with an optional default value when the input is not set. + * + * @author Vova Feldman (@svovaf) + * + * @param string $key + * @param bool $def + * + * @return bool|mixed + */ function fs_request_get_bool( $key, $def = false ) { - if ( ! isset( $_REQUEST[ $key ] ) ) { + $val = fs_request_get( $key, null ); + + if ( is_null( $val ) ) { return $def; } - if ( 1 == $_REQUEST[ $key ] || 'true' === strtolower( $_REQUEST[ $key ] ) ) { - return true; - } + if ( is_bool( $val ) ) { + return $val; + } else if ( is_numeric( $val ) ) { + if ( 1 == $val ) { + return true; + } else if ( 0 == $val ) { + return false; + } + } else if ( is_string( $val ) ) { + $val = strtolower( $val ); - if ( 0 == $_REQUEST[ $key ] || 'false' === strtolower( $_REQUEST[ $key ] ) ) { - return false; + if ( 'true' === $val ) { + return true; + } else if ( 'false' === $val ) { + return false; + } } return $def; @@ -287,138 +323,191 @@ function fs_get_raw_referer() { /* Core UI. --------------------------------------------------------------------------------------------*/ - /** - * @param number $module_id - * @param string $page - * @param string $action - * @param string $title - * @param string $button_class - * @param array $params - * @param bool $is_primary - * @param bool $is_small - * @param string|bool $icon_class Optional class for an icon (since 1.1.7). - * @param string|bool $confirmation Optional confirmation message before submit (since 1.1.7). - * @param string $method Since 1.1.7 - * - * @uses fs_ui_get_action_button() - */ - function fs_ui_action_button( - $module_id, - $page, - $action, - $title, - $button_class = '', - $params = array(), - $is_primary = true, - $is_small = false, - $icon_class = false, - $confirmation = false, - $method = 'GET' - ) { - echo fs_ui_get_action_button( + if ( ! function_exists( 'fs_ui_action_button' ) ) { + /** + * @param number $module_id + * @param string $page + * @param string $action + * @param string $title + * @param string $button_class + * @param array $params + * @param bool $is_primary + * @param bool $is_small + * @param string|bool $icon_class Optional class for an icon (since 1.1.7). + * @param string|bool $confirmation Optional confirmation message before submit (since 1.1.7). + * @param string $method Since 1.1.7 + * + * @uses fs_ui_get_action_button() + */ + function fs_ui_action_button( $module_id, $page, $action, $title, - $button_class, - $params, - $is_primary, - $is_small, - $icon_class, - $confirmation, - $method - ); - } - - /** - * @author Vova Feldman (@svovaf) - * @since 1.1.7 - * - * @param number $module_id - * @param string $page - * @param string $action - * @param string $title - * @param string $button_class - * @param array $params - * @param bool $is_primary - * @param bool $is_small - * @param string|bool $icon_class Optional class for an icon. - * @param string|bool $confirmation Optional confirmation message before submit. - * @param string $method - * - * @return string - */ - function fs_ui_get_action_button( - $module_id, - $page, - $action, - $title, - $button_class = '', - $params = array(), - $is_primary = true, - $is_small = false, - $icon_class = false, - $confirmation = false, - $method = 'GET' - ) { - // Prepend icon (if set). - $title = ( is_string( $icon_class ) ? ' ' : '' ) . $title; - - if ( is_string( $confirmation ) ) { - return sprintf( '%s%s', - freemius( $module_id )->_get_admin_page_url( $page, $params ), - $method, + $button_class = '', + $params = array(), + $is_primary = true, + $is_small = false, + $icon_class = false, + $confirmation = false, + $method = 'GET' + ) { + echo fs_ui_get_action_button( + $module_id, + $page, $action, - wp_nonce_field( $action, '_wpnonce', true, false ), - 'button' . ( ! empty( $button_class ) ? ' ' . $button_class : '' ) . ( $is_primary ? ' button-primary' : '' ) . ( $is_small ? ' button-small' : '' ), + $title, + $button_class, + $params, + $is_primary, + $is_small, + $icon_class, $confirmation, - $title - ); - } else if ( 'GET' !== strtoupper( $method ) ) { - return sprintf( '%s%s', - freemius( $module_id )->_get_admin_page_url( $page, $params ), - $method, - $action, - wp_nonce_field( $action, '_wpnonce', true, false ), - 'button' . ( ! empty( $button_class ) ? ' ' . $button_class : '' ) . ( $is_primary ? ' button-primary' : '' ) . ( $is_small ? ' button-small' : '' ), - $title - ); - } else { - return sprintf( '%s', - wp_nonce_url( freemius( $module_id )->_get_admin_page_url( $page, array_merge( $params, array( 'fs_action' => $action ) ) ), $action ), - 'button' . ( ! empty( $button_class ) ? ' ' . $button_class : '' ) . ( $is_primary ? ' button-primary' : '' ) . ( $is_small ? ' button-small' : '' ), - $title + $method ); } } - function fs_ui_action_link( $module_id, $page, $action, $title, $params = array() ) { - ?> ' : '' ) . $title; + + if ( is_string( $confirmation ) ) { + return sprintf( '%s%s', + freemius( $module_id )->_get_admin_page_url( $page, $params ), + $method, + $action, + wp_nonce_field( $action, '_wpnonce', true, false ), + 'button' . ( ! empty( $button_class ) ? ' ' . $button_class : '' ) . ( $is_primary ? ' button-primary' : '' ) . ( $is_small ? ' button-small' : '' ), + $confirmation, + $title + ); + } else if ( 'GET' !== strtoupper( $method ) ) { + return sprintf( '%s%s', + freemius( $module_id )->_get_admin_page_url( $page, $params ), + $method, + $action, + wp_nonce_field( $action, '_wpnonce', true, false ), + 'button' . ( ! empty( $button_class ) ? ' ' . $button_class : '' ) . ( $is_primary ? ' button-primary' : '' ) . ( $is_small ? ' button-small' : '' ), + $title + ); + } else { + return sprintf( '%s', + wp_nonce_url( freemius( $module_id )->_get_admin_page_url( $page, array_merge( $params, array( 'fs_action' => $action ) ) ), $action ), + 'button' . ( ! empty( $button_class ) ? ' ' . $button_class : '' ) . ( $is_primary ? ' button-primary' : '' ) . ( $is_small ? ' button-small' : '' ), + $title + ); + } + } + + function fs_ui_action_link( $module_id, $page, $action, $title, $params = array() ) { + ?> $entities_or_entity ) { + if ( is_array( $entities_or_entity ) ) { + $entities[ $key ] = fs_get_entities( $entities_or_entity, $class_name ); + } else { + $entities[ $key ] = fs_get_entity( $entities_or_entity, $class_name ); + } + } + + return $entities; + } + } if ( ! function_exists( 'fs_nonce_url' ) ) { /** @@ -606,71 +695,75 @@ function fs_urlencode_rfc3986( $input ) { #endregion Url Canonization ------------------------------------------------------------------ - /** - * @author Vova Feldman (@svovaf) - * - * @since 1.2.2 Changed to usage of WP_Filesystem_Direct. - * - * @param string $from URL - * @param string $to File path. - * - * @return bool Is successfully downloaded. - */ - function fs_download_image( $from, $to ) { - $dir = dirname( $to ); + if ( ! function_exists( 'fs_download_image' ) ) { + /** + * @author Vova Feldman (@svovaf) + * + * @since 1.2.2 Changed to usage of WP_Filesystem_Direct. + * + * @param string $from URL + * @param string $to File path. + * + * @return bool Is successfully downloaded. + */ + function fs_download_image( $from, $to ) { + $dir = dirname( $to ); - if ( 'direct' !== get_filesystem_method( array(), $dir ) ) { - return false; - } + if ( 'direct' !== get_filesystem_method( array(), $dir ) ) { + return false; + } - if ( ! class_exists( 'WP_Filesystem_Direct' ) ) { - require_once ABSPATH . 'wp-admin/includes/class-wp-filesystem-base.php'; - require_once ABSPATH . 'wp-admin/includes/class-wp-filesystem-direct.php'; - } + if ( ! class_exists( 'WP_Filesystem_Direct' ) ) { + require_once ABSPATH . 'wp-admin/includes/class-wp-filesystem-base.php'; + require_once ABSPATH . 'wp-admin/includes/class-wp-filesystem-direct.php'; + } - $fs = new WP_Filesystem_Direct( '' ); - $tmpfile = download_url( $from ); + $fs = new WP_Filesystem_Direct( '' ); + $tmpfile = download_url( $from ); - if ( $tmpfile instanceof WP_Error ) { - // Issue downloading the file. - return false; - } + if ( $tmpfile instanceof WP_Error ) { + // Issue downloading the file. + return false; + } - $fs->copy( $tmpfile, $to ); - $fs->delete( $tmpfile ); + $fs->copy( $tmpfile, $to ); + $fs->delete( $tmpfile ); - return true; + return true; + } } /* General Utilities --------------------------------------------------------------------------------------------*/ - /** - * Sorts an array by the value of the priority key. - * - * @author Daniel Iser (@danieliser) - * @since 1.1.7 - * - * @param $a - * @param $b - * - * @return int - */ - function fs_sort_by_priority( $a, $b ) { + if ( ! function_exists( 'fs_sort_by_priority' ) ) { + /** + * Sorts an array by the value of the priority key. + * + * @author Daniel Iser (@danieliser) + * @since 1.1.7 + * + * @param $a + * @param $b + * + * @return int + */ + function fs_sort_by_priority( $a, $b ) { + + // If b has a priority and a does not, b wins. + if ( ! isset( $a['priority'] ) && isset( $b['priority'] ) ) { + return 1; + } // If b has a priority and a does not, b wins. + elseif ( isset( $a['priority'] ) && ! isset( $b['priority'] ) ) { + return - 1; + } // If neither has a priority or both priorities are equal its a tie. + elseif ( ( ! isset( $a['priority'] ) && ! isset( $b['priority'] ) ) || $a['priority'] === $b['priority'] ) { + return 0; + } - // If b has a priority and a does not, b wins. - if ( ! isset( $a['priority'] ) && isset( $b['priority'] ) ) { - return 1; - } // If b has a priority and a does not, b wins. - elseif ( isset( $a['priority'] ) && ! isset( $b['priority'] ) ) { - return - 1; - } // If neither has a priority or both priorities are equal its a tie. - elseif ( ( ! isset( $a['priority'] ) && ! isset( $b['priority'] ) ) || $a['priority'] === $b['priority'] ) { - return 0; + // If both have priority return the winner. + return ( $a['priority'] < $b['priority'] ) ? - 1 : 1; } - - // If both have priority return the winner. - return ( $a['priority'] < $b['priority'] ) ? - 1 : 1; } #-------------------------------------------------------------------------------- diff --git a/external/Freemius/includes/fs-plugin-info-dialog.php b/external/Freemius/includes/fs-plugin-info-dialog.php index 022f8e7a..2ab490e4 100755 --- a/external/Freemius/includes/fs-plugin-info-dialog.php +++ b/external/Freemius/includes/fs-plugin-info-dialog.php @@ -31,6 +31,29 @@ class FS_Plugin_Info_Dialog { */ private $_fs; + /** + * Collection of plugin installation, update, download, activation, and purchase actions. This is used in + * populating the actions dropdown list when there are at least 2 actions. If there's only 1 action, a button + * is used instead. + * + * @author Leo Fajardo (@leorw) + * @since 2.3.0 + * + * @var string[] + */ + private $actions; + + /** + * Contains plugin status information that is used to determine which actions should be part of the actions + * dropdown list. + * + * @author Leo Fajardo (@leorw) + * @since 2.3.0 + * + * @var string[] + */ + private $status; + function __construct( Freemius $fs ) { $this->_fs = $fs; @@ -122,15 +145,36 @@ function _get_addon_info_filter( $data, $action = '', $args = null ) { } if ( is_array( $pricing ) && 0 < count( $pricing ) ) { - $has_paid_plan = true; + $filtered_pricing = array(); - foreach ( $pricing as &$prices ) { + foreach ( $pricing as $prices ) { $prices = new FS_Pricing( $prices ); + + if ( ! $prices->is_usd() ) { + /** + * Skip non-USD pricing. + * + * @author Leo Fajardo (@leorw) + * @since 2.3.1 + */ + continue; + } + + if ( ( $prices->has_monthly() && $prices->monthly_price > 1.0 ) || + ( $prices->has_annual() && $prices->annual_price > 1.0 ) || + ( $prices->has_lifetime() && $prices->lifetime_price > 1.0 ) + ) { + $filtered_pricing[] = $prices; + } } - $plan->pricing = $pricing; + if ( ! empty( $filtered_pricing ) ) { + $has_paid_plan = true; + + $plan->pricing = $filtered_pricing; - $has_pricing = true; + $has_pricing = true; + } } if ( is_array( $features ) && 0 < count( $features ) ) { @@ -170,11 +214,14 @@ function _get_addon_info_filter( $data, $action = '', $args = null ) { $data->fs_missing = ( ! $has_free_plan || $data->wp_org_missing ); } else { - $data->wp_org_missing = false; + $data->has_purchased_license = false; + $data->wp_org_missing = false; + $fs_addon = null; $current_addon_version = false; if ( $this->_fs->is_addon_activated( $selected_addon->id ) ) { - $current_addon_version = $this->_fs->get_addon_instance( $selected_addon->id )->get_plugin_version(); + $fs_addon = $this->_fs->get_addon_instance( $selected_addon->id ); + $current_addon_version = $fs_addon->get_plugin_version(); } else if ( $this->_fs->is_addon_installed( $selected_addon->id ) ) { $addon_plugin_data = get_plugin_data( ( WP_PLUGIN_DIR . '/' . $this->_fs->get_addon_basename( $selected_addon->id ) ), @@ -196,14 +243,45 @@ function _get_addon_info_filter( $data, $action = '', $args = null ) { ); if ( $has_paid_plan ) { - $data->checkout_link = $this->_fs->checkout_url(); + $blog_id = fs_request_get( 'fs_blog_id' ); + $has_valid_blog_id = is_numeric( $blog_id ); + + if ( $has_valid_blog_id ) { + switch_to_blog( $blog_id ); + } + + $data->checkout_link = $this->_fs->checkout_url( + WP_FS__PERIOD_ANNUALLY, + false, + array(), + ( $has_valid_blog_id ? false : null ) + ); + + if ( $has_valid_blog_id ) { + restore_current_blog(); + } + + if ( is_object( $fs_addon ) ) { + $data->has_purchased_license = $fs_addon->has_active_valid_license(); + } else { + $account_addons = $this->_fs->get_account_addons(); + if ( ! empty( $account_addons ) && in_array( $selected_addon->id, $account_addons ) ) { + $data->has_purchased_license = true; + } + } } - if ( $has_free_plan ) { + + if ( $has_free_plan || $data->has_purchased_license ) { $data->download_link = $this->_fs->_get_latest_download_local_url( $selected_addon->id ); } - $data->fs_missing = ( false === $latest ); - + $data->fs_missing = ( + false === $latest && + ( + empty( $selected_addon->premium_releases_count ) || + ! ( $selected_addon->premium_releases_count > 0 ) + ) + ); // Fetch as much as possible info from local files. $plugin_local_data = $this->_fs->get_plugin_data(); @@ -228,6 +306,8 @@ function _get_addon_info_filter( $data, $action = '', $args = null ) { $data->last_updated = $latest->created; $data->requires = $latest->requires_platform_version; $data->tested = $latest->tested_up_to_version; + } else if ( ! empty( $current_addon_version ) ) { + $data->version = $current_addon_version; } else { // Add dummy version. $data->version = '1.0.0'; @@ -267,6 +347,12 @@ function _get_addon_info_filter( $data, $action = '', $args = null ) { $data->has_paid_plan = $has_paid_plan; $data->is_paid = $has_paid_plan; $data->is_wp_org_compliant = $selected_addon->is_wp_org_compliant; + $data->premium_slug = $selected_addon->premium_slug; + $data->addon_id = $selected_addon->id; + + if ( ! isset( $data->has_purchased_license ) ) { + $data->has_purchased_license = false; + } return $data; } @@ -332,6 +418,70 @@ private function get_price_tag( FS_Plugin_Plan $plan, FS_Pricing $pricing ) { return '$' . $price_tag; } + /** + * @author Leo Fajardo (@leorw) + * @since 2.3.0 + * + * @param object $api + * @param FS_Plugin_Plan $plan + * + * @return string + */ + private function get_actions_dropdown( $api, $plan = null ) { + $this->actions = isset( $this->actions ) ? + $this->actions : + $this->get_plugin_actions( $api ); + + $actions = $this->actions; + + $checkout_cta = $this->get_checkout_cta( $api, $plan ); + if ( ! empty( $checkout_cta ) ) { + /** + * If there's no license yet, make the checkout button the main CTA. Otherwise, make it the last item in + * the actions dropdown. + * + * @author Leo Fajardo (@leorw) + * @since 2.3.0 + */ + if ( ! $api->has_purchased_license ) { + array_unshift( $actions, $checkout_cta ); + } else { + $actions[] = $checkout_cta; + } + } + + if ( empty( $actions ) ) { + return ''; + } + + $total_actions = count( $actions ); + if ( 1 === $total_actions ) { + return $actions[0]; + } + + ob_start(); + + ?> + + + + + + + + + + + + + + _fs->addon_checkout_url( + $blog_id = fs_request_get( 'fs_blog_id' ); + $has_valid_blog_id = is_numeric( $blog_id ); + + if ( $has_valid_blog_id ) { + switch_to_blog( $blog_id ); + } + + $addon_checkout_url = $this->_fs->addon_checkout_url( $plan->plugin_id, $plan->pricing[0]->id, $this->get_billing_cycle( $plan ), - $plan->has_trial() - ) . '" target="_parent">' . - ( ! $plan->has_trial() ? - fs_text_x_inline( 'Purchase', 'verb', 'purchase', $api->slug ) : + $plan->has_trial(), + ( $has_valid_blog_id ? false : null ) + ); + + if ( $has_valid_blog_id ) { + restore_current_blog(); + } + + return '' . + esc_html( ! $plan->has_trial() ? + ( + $api->has_purchased_license ? + fs_text_inline( 'Purchase More', 'purchase-more', $api->slug ) : + fs_text_x_inline( 'Purchase', 'verb', 'purchase', $api->slug ) + ) : sprintf( /* translators: %s: N-days trial */ fs_text_inline( 'Start my free %s', 'start-free-x', $api->slug ), @@ -377,92 +545,305 @@ private function get_checkout_cta( $api, $plan = null ) { } /** - * @author Vova Feldman (@svovaf) - * @since 2.0.0 + * @author Leo Fajardo (@leorw) + * @since 2.3.0 * * @param object $api - * @param bool $is_primary * - * @return string + * @return string[] */ - private function get_download_cta( $api, $is_primary = true ) { - if ( empty( $api->download_link ) ) { - return ''; + private function get_plugin_actions( $api ) { + $this->status = isset( $this->status ) ? + $this->status : + install_plugin_install_status( $api ); + + $is_update_available = ( 'update_available' === $this->status['status'] ); + + if ( $is_update_available && empty( $this->status['url'] ) ) { + return array(); } - $status = install_plugin_install_status( $api ); + $blog_id = fs_request_get( 'fs_blog_id' ); + + $active_plugins_directories_map = Freemius::get_active_plugins_directories_map( $blog_id ); + + $actions = array(); + + $is_addon_activated = $this->_fs->is_addon_activated( $api->slug ); + $fs_addon = null; + + $is_free_installed = null; + $is_premium_installed = null; + + $has_installed_version = ( 'install' !== $this->status['status'] ); + + if ( ! $api->has_paid_plan ) { + /** + * Free-only add-on. + * + * @author Leo Fajardo (@leorw) + * @since 2.3.0 + */ + $is_free_installed = $has_installed_version; + $is_premium_installed = false; + } else if ( ! $api->has_free_plan ) { + /** + * Premium-only add-on. + * + * @author Leo Fajardo (@leorw) + * @since 2.3.0 + */ + $is_free_installed = false; + $is_premium_installed = $has_installed_version; + } else { + /** + * Freemium add-on. + * + * @author Leo Fajardo (@leorw) + * @since 2.3.0 + */ + if ( ! $has_installed_version ) { + $is_free_installed = false; + $is_premium_installed = false; + } else { + $fs_addon = $is_addon_activated ? + $this->_fs->get_addon_instance( $api->slug ) : + null; + + if ( is_object( $fs_addon ) ) { + if ( $fs_addon->is_premium() ) { + $is_premium_installed = true; + } else { + $is_free_installed = true; + } + } - $has_paid_version = $api->has_paid_plan; + if ( is_null( $is_free_installed ) ) { + $is_free_installed = file_exists( fs_normalize_path( WP_PLUGIN_DIR . "/{$api->slug}/{$api->slug}.php" ) ); + if ( ! $is_free_installed ) { + /** + * Check if there's a plugin installed in a directory named `$api->slug`. + * + * @author Leo Fajardo (@leorw) + * @since 2.3.0 + */ + $installed_plugins = get_plugins( '/' . $api->slug ); + $is_free_installed = ( ! empty( $installed_plugins ) ); + } + } - // Hosted on WordPress.org. - switch ( $status['status'] ) { - case 'install': - if ( $api->is_wp_org_compliant || - ! $this->_fs->is_org_repo_compliant() || - $this->_fs->is_premium() - ) { - /** - * Allow immediate installation if one of the following: - * 1. WordPress.org add-on. - * 2. The core module is NOT wp.org compliant. - * 3. The core module is running the premium version which is not wp.org compliant. - */ - if ( $status['url'] ) { - return $this->get_cta( - ( $has_paid_version ? - fs_esc_html_inline( 'Install Free Version Now', 'install-free-version-now', $api->slug ) : - fs_esc_html_inline( 'Install Now', 'install-now', $api->slug ) ), - $is_primary, - false, - $status['url'], - '_parent' - ); + if ( is_null( $is_premium_installed ) ) { + $is_premium_installed = file_exists( fs_normalize_path( WP_PLUGIN_DIR . "/{$api->premium_slug}/{$api->slug}.php" ) ); + if ( ! $is_premium_installed ) { + /** + * Check if there's a plugin installed in a directory named `$api->premium_slug`. + * + * @author Leo Fajardo (@leorw) + * @since 2.3.0 + */ + $installed_plugins = get_plugins( '/' . $api->premium_slug ); + $is_premium_installed = ( ! empty( $installed_plugins ) ); } } + } - return $this->get_cta( - ( $has_paid_version ? - fs_esc_html_x_inline( 'Download Latest Free Version', 'as download latest version', 'download-latest-free-version', $api->slug ) : - fs_esc_html_x_inline( 'Download Latest', 'as download latest version', 'download-latest', $api->slug ) ), - $is_primary, - false, - esc_url( $api->download_link ) - ); - break; - case 'update_available': - if ( $status['url'] ) { - return $this->get_cta( - ( $has_paid_version ? - fs_esc_html_inline( 'Install Free Version Update Now', 'install-free-version-update-now', $api->slug ) : - fs_esc_html_inline( 'Install Update Now', 'install-update-now', $api->slug ) ), - $is_primary, - false, - $status['url'], - '_parent' - ); + $has_installed_version = ( $is_free_installed || $is_premium_installed ); + } + + $this->status['is_free_installed'] = $is_free_installed; + $this->status['is_premium_installed'] = $is_premium_installed; + + $can_install_free_version = false; + $can_install_free_version_update = false; + $can_download_free_version = false; + $can_activate_free_version = false; + $can_install_premium_version = false; + $can_install_premium_version_update = false; + $can_download_premium_version = false; + $can_activate_premium_version = false; + + if ( ! $api->has_purchased_license ) { + if ( $api->has_free_plan ) { + if ( $has_installed_version ) { + if ( $is_update_available ) { + $can_install_free_version_update = true; + } else if ( ! $is_premium_installed && ! isset( $active_plugins_directories_map[ dirname( $this->status['file'] ) ] ) ) { + $can_activate_free_version = true; + } + } else { + if ( + $this->_fs->is_premium() || + ! $this->_fs->is_org_repo_compliant() || + $api->is_wp_org_compliant + ) { + $can_install_free_version = true; + } else { + $can_download_free_version = true; + } } - break; - case 'newer_installed': - return $this->get_cta( - ( $has_paid_version ? - esc_html( sprintf( fs_text_inline( 'Newer Free Version (%s) Installed', 'newer-free-installed', $api->slug ), $status['version'] ) ) : - esc_html( sprintf( fs_text_inline( 'Newer Version (%s) Installed', 'newer-installed', $api->slug ), $status['version'] ) ) ), - $is_primary, - true - ); - break; - case 'latest_installed': - return $this->get_cta( - ( $has_paid_version ? - fs_esc_html_inline( 'Latest Free Version Installed', 'latest-free-installed', $api->slug ) : - fs_esc_html_inline( 'Latest Version Installed', 'latest-installed', $api->slug ) ), - $is_primary, - true - ); - break; + } + } else { + if ( ! is_object( $fs_addon ) && $is_addon_activated ) { + $fs_addon = $this->_fs->get_addon_instance( $api->slug ); + } + + $can_download_premium_version = true; + + if ( ! isset( $active_plugins_directories_map[ dirname( $this->status['file'] ) ] ) ) { + if ( $is_premium_installed ) { + $can_activate_premium_version = ( ! $is_addon_activated || ! $fs_addon->is_premium() ); + } else if ( $is_free_installed ) { + $can_activate_free_version = ( ! $is_addon_activated ); + } + } + + if ( $this->_fs->is_premium() || ! $this->_fs->is_org_repo_compliant() ) { + if ( $is_update_available ) { + $can_install_premium_version_update = true; + } else if ( ! $is_premium_installed ) { + $can_install_premium_version = true; + } + } + } + + if ( + $can_install_premium_version || + $can_install_premium_version_update + ) { + if ( is_numeric( $blog_id ) ) { + /** + * Replace the network status URL with a blog admin–based status URL if the `Add-Ons` page is loaded + * from a specific blog admin page (when `fs_blog_id` is valid) in order for plugin installation/update + * to work. + * + * @author Leo Fajardo (@leorw) + * @since 2.3.0 + */ + $this->status['url'] = self::get_blog_status_url( $blog_id, $this->status['url'], $this->status['status'] ); + } + + /** + * Add the `fs_allow_updater_and_dialog` param to the install/update URL so that the add-on can be + * installed/updated. + * + * @author Leo Fajardo (@leorw) + * @since 2.3.0 + */ + $this->status['url'] = str_replace( '?', '?fs_allow_updater_and_dialog=true&', $this->status['url'] ); + } + + if ( $can_install_free_version_update || $can_install_premium_version_update ) { + $actions[] = $this->get_cta( + ( $can_install_free_version_update ? + fs_esc_html_inline( 'Install Free Version Update Now', 'install-free-version-update-now', $api->slug ) : + fs_esc_html_inline( 'Install Update Now', 'install-update-now', $api->slug ) ), + true, + false, + $this->status['url'], + '_parent' + ); + } else if ( $can_install_free_version || $can_install_premium_version ) { + $actions[] = $this->get_cta( + ( $can_install_free_version ? + fs_esc_html_inline( 'Install Free Version Now', 'install-free-version-now', $api->slug ) : + fs_esc_html_inline( 'Install Now', 'install-now', $api->slug ) ), + true, + false, + $this->status['url'], + '_parent' + ); } - return ''; + $download_latest_action = ''; + + if ( + ! empty( $api->download_link ) && + ( $can_download_free_version || $can_download_premium_version ) + ) { + $download_latest_action = $this->get_cta( + ( $can_download_free_version ? + fs_esc_html_x_inline( 'Download Latest Free Version', 'as download latest version', 'download-latest-free-version', $api->slug ) : + fs_esc_html_x_inline( 'Download Latest', 'as download latest version', 'download-latest', $api->slug ) ), + true, + false, + esc_url( $api->download_link ) + ); + } + + if ( ! $can_activate_free_version && ! $can_activate_premium_version ) { + if ( ! empty( $download_latest_action ) ) { + $actions[] = $download_latest_action; + } + } else { + $activate_action = sprintf( + '%s', + wp_nonce_url( ( is_numeric( $blog_id ) ? trailingslashit( get_admin_url( $blog_id ) ) : '' ) . 'plugins.php?action=activate&plugin=' . $this->status['file'], 'activate-plugin_' . $this->status['file'] ), + fs_esc_attr_inline( 'Activate this add-on', 'activate-this-addon', $api->slug ), + $can_activate_free_version ? + fs_text_inline( 'Activate Free Version', 'activate-free', $api->slug ) : + fs_text_inline( 'Activate', 'activate', $api->slug ) + ); + + if ( ! $can_download_premium_version && ! empty( $download_latest_action ) ) { + $actions[] = $download_latest_action; + + $download_latest_action = ''; + } + + if ( $can_install_premium_version || $can_install_premium_version_update ) { + if ( $can_download_premium_version && ! empty( $download_latest_action ) ) { + $actions[] = $download_latest_action; + + $download_latest_action = ''; + } + + $actions[] = $activate_action; + } else { + array_unshift( $actions, $activate_action ); + } + + if ( ! empty ($download_latest_action ) ) { + $actions[] = $download_latest_action; + } + } + + return $actions; + } + + /** + * Rebuilds the status URL based on the admin URL. + * + * @author Leo Fajardo (@leorw) + * @since 2.3.0 + * + * @param int $blog_id + * @param string $network_status_url + * @param string $status + * + * @return string + */ + private static function get_blog_status_url( $blog_id, $network_status_url, $status ) { + if ( ! in_array( $status, array( 'install', 'update_available' ) ) ) { + return $network_status_url; + } + + $action = ( 'install' === $status ) ? + 'install-plugin' : + 'upgrade-plugin'; + + $query = parse_url( $network_status_url, PHP_URL_QUERY ); + if ( empty( $query ) ) { + return $network_status_url; + } + + parse_str( html_entity_decode( $query ), $url_params ); + if ( empty( $url_params ) || ! isset( $url_params['plugin'] ) ) { + return $network_status_url; + } + + $plugin = $url_params['plugin']; + + return wp_nonce_url( get_admin_url( $blog_id,"update.php?action={$action}&plugin={$plugin}"), "{$action}_{$plugin}"); } /** @@ -687,7 +1068,7 @@ function install_plugin_information() { $href = add_query_arg( array( 'tab' => $tab, 'section' => $section_name ) ); $href = esc_url( $href ); $san_section = esc_attr( $section_name ); - echo "\t$title\n"; + echo "\t" . esc_html( $title ) . "\n"; } echo "\n"; @@ -815,7 +1196,7 @@ function install_plugin_information() { }?>; }, _updateCtaUrl = function (plan, pricing, cycle) { - $('.plugin-information-pricing .button, #plugin-information-footer .button.fs-checkout-button').attr('href', _checkoutUrl(plan, pricing, cycle)); + $('.plugin-information-pricing .fs-checkout-button, #plugin-information-footer .fs-checkout-button').attr('href', _checkoutUrl(plan, pricing, cycle)); }; $(document).ready(function () { @@ -902,7 +1283,7 @@ class="fs-annual-discount"> - get_checkout_cta( $api, $plan, false ) ?> + get_actions_dropdown( $api, $plan ) ?> has_trial() ) : ?> get_trial_period( $plan ) ?> @@ -1054,7 +1435,7 @@ class="fs-annual-discount">"> - + @@ -1127,16 +1508,123 @@ class="fs-annual-discount">\n"; // #plugin-information-scrollable echo "\n"; + ?> + + _fs_text( 'That\'s exhausting, please deactivate' ), 'deactivate-plugin-desc' => _fs_text( 'We feel your frustration and sincerely apologize for the inconvenience. Hope to see you again in the future.' ), 'fix-request-sent-message' => _fs_text( 'Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience.' ), - 'server-blocking-access' => _fs_x( 'Your server is blocking the access to Freemius\' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s', - '%1s - plugin title, %2s - API domain' ), + 'server-blocking-access' => _fs_x( 'Your server is blocking the access to Freemius\' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s', + '%1$s - plugin title, %2$s - API domain' ), 'wrong-authentication-param-message' => _fs_text( 'It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again.' ), #endregion Connectivity Issues #region Change Owner diff --git a/external/Freemius/includes/managers/class-fs-admin-menu-manager.php b/external/Freemius/includes/managers/class-fs-admin-menu-manager.php index 439a84a9..98d2e56a 100755 --- a/external/Freemius/includes/managers/class-fs-admin-menu-manager.php +++ b/external/Freemius/includes/managers/class-fs-admin-menu-manager.php @@ -204,9 +204,10 @@ function init( $menu, $is_addon = false ) { // ) ); } - $this->_first_time_path = $this->get_option( $menu, 'first-path', false ); - if ( ! empty( $this->_first_time_path ) && is_string( $this->_first_time_path ) ) { - $this->_first_time_path = admin_url( $this->_first_time_path, 'admin' ); + $first_path = $this->get_option( $menu, 'first-path', false ); + + if ( ! empty( $first_path ) && is_string( $first_path ) ) { + $this->_first_time_path = $first_path; } } } @@ -236,17 +237,27 @@ function is_override_exact() { } - /** - * Get the path of the page the user should be forwarded to after first activation. - * - * @author Vova Feldman (@svovaf) - * @since 1.1.3 - * - * @return string - */ - function get_first_time_path() { - return $this->_first_time_path; - } + /** + * Get the path of the page the user should be forwarded to after first activation. + * + * @author Vova Feldman (@svovaf) + * @since 1.1.3 + * + * @param bool $is_network Since 2.4.5 + * + * @return string + */ + function get_first_time_path( $is_network = false ) { + if ( empty ( $this->_first_time_path ) ) { + return $this->_first_time_path; + } + + if ( $is_network ) { + return network_admin_url( $this->_first_time_path ); + } else { + return admin_url( $this->_first_time_path ); + } + } /** * Check if plugin's menu item is part of a custom top level menu. @@ -419,41 +430,62 @@ function get_top_level_menu_slug() { $this->get_raw_slug(); } - /** - * Is user on plugin's admin activation page. - * - * @author Vova Feldman (@svovaf) - * @since 1.0.8 - * - * @return bool - */ - function is_main_settings_page() { - if ( $this->_menu_exists && - ( fs_is_plugin_page( $this->_menu_slug ) || fs_is_plugin_page( $this->_module_unique_affix ) ) - ) { - /** - * Module has a settings menu and the context page is the main settings page, so assume it's in - * activation (doesn't really check if already opted-in/skipped or not). - * - * @since 1.2.2 - */ - return true; - } + /** + * Is user on plugin's admin activation page. + * + * @author Vova Feldman (@svovaf) + * @since 1.0.8 + * + * @param bool $show_opt_in_on_themes_page Since 2.3.1 + * + * @return bool + * + * @deprecated Please use is_activation_page() instead. + */ + function is_main_settings_page( $show_opt_in_on_themes_page = false ) { + return $this->is_activation_page( $show_opt_in_on_themes_page ); + } - global $pagenow; - if ( ( WP_FS__MODULE_TYPE_THEME === $this->_module_type ) && Freemius::is_themes_page() ) { - /** - * In activation only when show_optin query string param is given. - * - * @since 1.2.2 - */ - return fs_request_get_bool( $this->_module_unique_affix . '_show_optin' ); - } + /** + * Is user on product's admin activation page. + * + * @author Vova Feldman (@svovaf) + * @since 2.3.1 + * + * @param bool $show_opt_in_on_themes_page Since 2.3.1 + * + * @return bool + */ + function is_activation_page( $show_opt_in_on_themes_page = false ) { + if ( $show_opt_in_on_themes_page ) { + /** + * In activation only when show_optin query string param is given. + * + * @since 1.2.2 + */ + return ( + ( WP_FS__MODULE_TYPE_THEME === $this->_module_type ) && + Freemius::is_themes_page() && + fs_request_get_bool( $this->_module_unique_affix . '_show_optin' ) + ); + } - return false; - } + if ( $this->_menu_exists && + ( fs_is_plugin_page( $this->_menu_slug ) || fs_is_plugin_page( $this->_module_unique_affix ) ) + ) { + /** + * Module has a settings menu and the context page is the main settings page, so assume it's in + * activation (doesn't really check if already opted-in/skipped or not). + * + * @since 1.2.2 + */ + return true; + } + + return false; + } - #region Submenu Override + #region Submenu Override /** * Override submenu's action. diff --git a/external/Freemius/includes/managers/class-fs-cache-manager.php b/external/Freemius/includes/managers/class-fs-cache-manager.php index c6cb2826..7f2d850c 100755 --- a/external/Freemius/includes/managers/class-fs-cache-manager.php +++ b/external/Freemius/includes/managers/class-fs-cache-manager.php @@ -37,7 +37,7 @@ private function __construct( $id ) { $this->_logger->entrance(); $this->_logger->log( 'id = ' . $id ); - $this->_options = FS_Option_Manager::get_manager( $id, true, true ); + $this->_options = FS_Option_Manager::get_manager( $id, true, true, false ); } /** diff --git a/external/Freemius/includes/managers/class-fs-option-manager.php b/external/Freemius/includes/managers/class-fs-option-manager.php index abc7c4b3..9d59abf8 100755 --- a/external/Freemius/includes/managers/class-fs-option-manager.php +++ b/external/Freemius/includes/managers/class-fs-option-manager.php @@ -48,6 +48,11 @@ class FS_Option_Manager { */ private $_is_network_storage; + /** + * @var bool|null + */ + private $_autoload; + /** * @var array[string]FS_Option_Manager { * @key string @@ -60,11 +65,17 @@ class FS_Option_Manager { * @author Vova Feldman (@svovaf) * @since 1.0.3 * - * @param string $id - * @param bool $load - * @param bool|int $network_level_or_blog_id Since 2.0.0 + * @param string $id + * @param bool $load + * @param bool|int $network_level_or_blog_id Since 2.0.0 + * @param bool|null $autoload */ - private function __construct( $id, $load = false, $network_level_or_blog_id = false ) { + private function __construct( + $id, + $load = false, + $network_level_or_blog_id = false, + $autoload = null + ) { $id = strtolower( $id ); $this->_logger = FS_Logger::get_logger( WP_FS__SLUG . '_opt_mngr_' . $id, WP_FS__DEBUG_SDK, WP_FS__ECHO_DEBUG_SDK ); @@ -74,6 +85,8 @@ private function __construct( $id, $load = false, $network_level_or_blog_id = fa $this->_id = $id; + $this->_autoload = $autoload; + if ( is_multisite() ) { $this->_is_network_storage = ( true === $network_level_or_blog_id ); @@ -93,13 +106,19 @@ private function __construct( $id, $load = false, $network_level_or_blog_id = fa * @author Vova Feldman (@svovaf) * @since 1.0.3 * - * @param string $id - * @param bool $load - * @param bool|int $network_level_or_blog_id Since 2.0.0 + * @param string $id + * @param bool $load + * @param bool|int $network_level_or_blog_id Since 2.0.0 + * @param bool|null $autoload * - * @return FS_Option_Manager + * @return \FS_Option_Manager */ - static function get_manager( $id, $load = false, $network_level_or_blog_id = false ) { + static function get_manager( + $id, + $load = false, + $network_level_or_blog_id = false, + $autoload = null + ) { $key = strtolower( $id ); if ( is_multisite() ) { @@ -115,7 +134,12 @@ static function get_manager( $id, $load = false, $network_level_or_blog_id = fal } if ( ! isset( self::$_MANAGERS[ $key ] ) ) { - self::$_MANAGERS[ $key ] = new FS_Option_Manager( $id, $load, $network_level_or_blog_id ); + self::$_MANAGERS[ $key ] = new FS_Option_Manager( + $id, + $load, + $network_level_or_blog_id, + $autoload + ); } // If load required but not yet loaded, load. else if ( $load && ! self::$_MANAGERS[ $key ]->is_loaded() ) { self::$_MANAGERS[ $key ]->load(); @@ -143,17 +167,24 @@ function load( $flush = false ) { $cache_group = $this->get_cache_group(); - if ( ! WP_FS__DEBUG_SDK ) { + if ( WP_FS__DEBUG_SDK ) { + + // Don't use cache layer in DEBUG mode. + $load_options = empty( $this->_options ); + + } else { $this->_options = wp_cache_get( $option_name, $cache_group ); + + $load_options = ( false === $this->_options ); } $cached = true; - if ( empty( $this->_options ) ) { + if ( $load_options ) { if ( $this->_is_network_storage ) { $this->_options = get_site_option( $option_name ); } else if ( $this->_blog_id > 0 ) { @@ -403,7 +434,7 @@ function store() { } else if ( $this->_blog_id > 0 ) { update_blog_option( $this->_blog_id, $option_name, $this->_options ); } else { - update_option( $option_name, $this->_options ); + update_option( $option_name, $this->_options, $this->_autoload ); } if ( ! WP_FS__DEBUG_SDK ) { @@ -487,4 +518,4 @@ private function get_cache_group() { } #endregion - } \ No newline at end of file + } diff --git a/external/Freemius/includes/managers/class-fs-plugin-manager.php b/external/Freemius/includes/managers/class-fs-plugin-manager.php index cf88a880..56ee9d6c 100755 --- a/external/Freemius/includes/managers/class-fs-plugin-manager.php +++ b/external/Freemius/includes/managers/class-fs-plugin-manager.php @@ -83,12 +83,12 @@ protected function get_all_modules( $module_type = false ) { $option_manager = $this->get_option_manager(); if ( false !== $module_type ) { - return $option_manager->get_option( $module_type . 's', array() ); + return fs_get_entities( $option_manager->get_option( $module_type . 's', array() ), FS_Plugin::get_class_name() ); } return array( - self::OPTION_NAME_PLUGINS => $option_manager->get_option( self::OPTION_NAME_PLUGINS, array() ), - self::OPTION_NAME_THEMES => $option_manager->get_option( self::OPTION_NAME_THEMES, array() ), + self::OPTION_NAME_PLUGINS => fs_get_entities( $option_manager->get_option( self::OPTION_NAME_PLUGINS, array() ), FS_Plugin::get_class_name() ), + self::OPTION_NAME_THEMES => fs_get_entities( $option_manager->get_option( self::OPTION_NAME_THEMES, array() ), FS_Plugin::get_class_name() ), ); } diff --git a/external/Freemius/languages/freemius-cs_CZ.mo b/external/Freemius/languages/freemius-cs_CZ.mo new file mode 100755 index 00000000..48bbb65d Binary files /dev/null and b/external/Freemius/languages/freemius-cs_CZ.mo differ diff --git a/external/Freemius/languages/freemius-cs_CZ.po b/external/Freemius/languages/freemius-cs_CZ.po new file mode 100755 index 00000000..d74ce90c --- /dev/null +++ b/external/Freemius/languages/freemius-cs_CZ.po @@ -0,0 +1,2760 @@ +# Copyright (C) 2019 freemius +# This file is distributed under the same license as the freemius package. +# Translators: +# Karolína Vyskočilová , 2019 +msgid "" +msgstr "" +"Project-Id-Version: WordPress SDK\n" +"Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" +"POT-Creation-Date: \n" +"PO-Revision-Date: 2019-10-07 15:33+0000\n" +"Last-Translator: Vova Feldman \n" +"Language-Team: Czech (Czech Republic) (http://www.transifex.com/freemius/wordpress-sdk/language/cs_CZ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cs_CZ\n" +"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-KeywordsList: get_text_inline;fs_text_inline;fs_echo_inline;fs_esc_js_inline;fs_esc_attr_inline;fs_esc_attr_echo_inline;fs_esc_html_inline;fs_esc_html_echo_inline;get_text_x_inline:1,2c;fs_text_x_inline:1,2c;fs_echo_x_inline:1,2c;fs_esc_attr_x_inline:1,2c;fs_esc_js_x_inline:1,2c;fs_esc_js_echo_x_inline:1,2c;fs_esc_html_x_inline:1,2c;fs_esc_html_echo_x_inline:1,2c\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Poedit-SourceCharset: UTF-8\n" + +#: includes/class-freemius.php1880, templates/account.php:840 +msgid "" +"An update to a Beta version will replace your installed version of %s with " +"the latest Beta release - use with caution, and not on production sites. You" +" have been warned." +msgstr "Aktualizováním na Beta verzi nahradíte nainstalovanou verzi %s nejnovějším vydáním Beta verze - používejte s opatrností a ne na produkčních webech. Varovali jsme vás." + +#: includes/class-freemius.php:1887 +msgid "Would you like to proceed with the update?" +msgstr "Chcete pokračovat v aktualizaci?" + +#: includes/class-freemius.php:2095 +msgid "" +"Freemius SDK couldn't find the plugin's main file. Please contact " +"sdk@freemius.com with the current error." +msgstr "Freemius SDK nemohlo najít hlavní soubor pluginu. S aktuální chybou se obraťte se na sdk@freemius.com." + +#: includes/class-freemius.php:2097 +msgid "Error" +msgstr "Chyba" + +#: includes/class-freemius.php:2491 +msgid "I found a better %s" +msgstr "Našel jsem lepší %s" + +#: includes/class-freemius.php:2493 +msgid "What's the %s's name?" +msgstr "Jak se %s jmenuje?" + +#: includes/class-freemius.php:2499 +msgid "It's a temporary %s. I'm just debugging an issue." +msgstr "Jen dočasná %s - ladím nějaký problém." + +#: includes/class-freemius.php:2501 +msgid "Deactivation" +msgstr "Deaktivace" + +#: includes/class-freemius.php:2502 +msgid "Theme Switch" +msgstr "Změna šablony" + +#: includes/class-freemius.php2511, templates/forms/resend-key.php:24 +msgid "Other" +msgstr "Jiné" + +#: includes/class-freemius.php:2519 +msgid "I no longer need the %s" +msgstr "Již nepotřebuji %s" + +#: includes/class-freemius.php:2526 +msgid "I only needed the %s for a short period" +msgstr "Potřeboval %s jsem jen krátkou dobu" + +#: includes/class-freemius.php:2532 +msgid "The %s broke my site" +msgstr "%s rozbil můj web" + +#: includes/class-freemius.php:2539 +msgid "The %s suddenly stopped working" +msgstr "%s náhle přestal pracovat" + +#: includes/class-freemius.php:2549 +msgid "I can't pay for it anymore" +msgstr "Už si to nemohu dovolit" + +#: includes/class-freemius.php:2551 +msgid "What price would you feel comfortable paying?" +msgstr "Jakou cenu byste byli ochotni platit?" + +#: includes/class-freemius.php:2557 +msgid "I don't like to share my information with you" +msgstr "Nechci s vámi sdílet své informace" + +#: includes/class-freemius.php:2578 +msgid "The %s didn't work" +msgstr "%s nefungoval" + +#: includes/class-freemius.php:2588 +msgid "I couldn't understand how to make it work" +msgstr "Nedokázal jsem jej zprovoznit" + +#: includes/class-freemius.php:2596 +msgid "The %s is great, but I need specific feature that you don't support" +msgstr "%s je skvělý, ale potřebuji funkci, kterou není podporovaná" + +#: includes/class-freemius.php:2598 +msgid "What feature?" +msgstr "Jaká funkce?" + +#: includes/class-freemius.php:2602 +msgid "The %s is not working" +msgstr "%s nefunguje" + +#: includes/class-freemius.php:2604 +msgid "Kindly share what didn't work so we can fix it for future users..." +msgstr "Dejte nám prosím vědět, co nefungovalo, ať to můžeme opravit pro další uživatele..." + +#: includes/class-freemius.php:2608 +msgid "It's not what I was looking for" +msgstr "Není to to, co jsem hledal" + +#: includes/class-freemius.php:2610 +msgid "What you've been looking for?" +msgstr "Co jste hledali?" + +#: includes/class-freemius.php:2614 +msgid "The %s didn't work as expected" +msgstr "%s nefungoval podle očekávání" + +#: includes/class-freemius.php:2616 +msgid "What did you expect?" +msgstr "Co jste očekávali?" + +#: includes/class-freemius.php3471, templates/debug.php:20 +msgid "Freemius Debug" +msgstr "Freemius Debug" + +#: includes/class-freemius.php:4223 +msgid "I don't know what is cURL or how to install it, help me!" +msgstr "Nevím, co je cURL nebo jak jej nainstalovat, pomozte mi!" + +#: includes/class-freemius.php:4225 +msgid "" +"We'll make sure to contact your hosting company and resolve the issue. You " +"will get a follow-up email to %s once we have an update." +msgstr "Zkontaktujeme vaší hostingovou společnost a zkusíme vyřešit tento problém. Na %s dostanete upozornění, jakmile budeme vědět něco nového." + +#: includes/class-freemius.php:4232 +msgid "" +"Great, please install cURL and enable it in your php.ini file. In addition, " +"search for the 'disable_functions' directive in your php.ini file and remove" +" any disabled methods starting with 'curl_'. To make sure it was " +"successfully activated, use 'phpinfo()'. Once activated, deactivate the %s " +"and reactivate it back again." +msgstr "Výborně, nainstalujte prosím cURL a povolte ji v souboru php.ini. Dále vyhledejte v souboru php.ini direktivu 'disable_functions ' a odeberte všechny zakázané metody začínající na \"curl_\". Chcete-li se ujistit, že byla úspěšně aktivována, použijte 'phpinfo() '. Jakmile je aktivován, deaktivujte %s a znovu jej aktivujte." + +#: includes/class-freemius.php:4337 +msgid "Yes - do your thing" +msgstr "Ano - udělejte, co potřebujete" + +#: includes/class-freemius.php:4342 +msgid "No - just deactivate" +msgstr "Ne - jen deaktivovat" + +#: includes/class-freemius.php4387, includes/class-freemius.php4881, +#: includes/class-freemius.php6032, includes/class-freemius.php13153, +#: includes/class-freemius.php16558, includes/class-freemius.php16646, +#: includes/class-freemius.php16812, includes/class-freemius.php19040, +#: includes/class-freemius.php19381, includes/class-freemius.php19391, +#: includes/class-freemius.php20051, includes/class-freemius.php20924, +#: includes/class-freemius.php21039, includes/class-freemius.php21183, +#: templates/add-ons.php:57 +msgctxt "exclamation" +msgid "Oops" +msgstr "Jejda" + +#: includes/class-freemius.php:4456 +msgid "" +"Thank for giving us the chance to fix it! A message was just sent to our " +"technical staff. We will get back to you as soon as we have an update to %s." +" Appreciate your patience." +msgstr "" + +#: includes/class-freemius.php:4878 +msgctxt "addonX cannot run without pluginY" +msgid "%s cannot run without %s." +msgstr "%s nelze spustit bez %s." + +#: includes/class-freemius.php:4879 +msgctxt "addonX cannot run..." +msgid "%s cannot run without the plugin." +msgstr "%s nelze spustit bez tohoto pluginu." + +#: includes/class-freemius.php5052, includes/class-freemius.php5077, +#: includes/class-freemius.php:20122 +msgid "" +"Unexpected API error. Please contact the %s's author with the following " +"error." +msgstr "" + +#: includes/class-freemius.php:5720 +msgid "Premium %s version was successfully activated." +msgstr "" + +#: includes/class-freemius.php5732, includes/class-freemius.php:7599 +msgctxt "" +"Used to express elation, enthusiasm, or triumph (especially in electronic " +"communication)." +msgid "W00t" +msgstr "" + +#: includes/class-freemius.php:5747 +msgid "You have a %s license." +msgstr "Máte licenci „%s“." + +#: includes/class-freemius.php5751, includes/class-freemius.php15975, +#: includes/class-freemius.php15986, includes/class-freemius.php19292, +#: includes/class-freemius.php19642, includes/class-freemius.php19711, +#: includes/class-freemius.php:19876 +msgctxt "interjection expressing joy or exuberance" +msgid "Yee-haw" +msgstr "" + +#: includes/class-freemius.php:6015 +msgid "" +"%s free trial was successfully cancelled. Since the add-on is premium only " +"it was automatically deactivated. If you like to use it in the future, " +"you'll have to purchase a license." +msgstr "%s bezplatná zkušební verze byla úspěšně zrušena. Jelikož toto rozšíření nenabízí bezplatnou verzi, bylo automaticky deaktivováno. Chcete-li jej v budoucnu používat, budete si muset zakoupit licenci." + +#: includes/class-freemius.php:6019 +msgid "" +"%s is a premium only add-on. You have to purchase a license first before " +"activating the plugin." +msgstr "%s je pouze prémiové rozšíření. Před aktivací pluginu si musíte nejprve zakoupit licenci." + +#: includes/class-freemius.php6028, templates/add-ons.php186, +#: templates/account/partials/addon.php:381 +msgid "More information about %s" +msgstr "Více informací o %s" + +#: includes/class-freemius.php:6029 +msgid "Purchase License" +msgstr "Koupit licenci" + +#: includes/class-freemius.php6964, templates/connect.php:163 +msgid "" +"You should receive an activation email for %s to your mailbox at %s. Please " +"make sure you click the activation button in that email to %s." +msgstr "Aktivační email od %s by měl dorazit do vašeho mailboxu (%s). Ujistěte se, že v emailu kliknete na tlačítko aktivovat, abyste %s." + +#: includes/class-freemius.php:6968 +msgid "start the trial" +msgstr "spustit zkušební verzi" + +#: includes/class-freemius.php6969, templates/connect.php:167 +msgid "complete the install" +msgstr "dokončit installaci" + +#: includes/class-freemius.php:7081 +msgid "You are just one step away - %s" +msgstr "Jste jen na krok od - %s" + +#: includes/class-freemius.php:7084 +msgctxt "%s - plugin name. As complete \"PluginX\" activation now" +msgid "Complete \"%s\" Activation Now" +msgstr "Dokončit aktivaci pluginu „%s“" + +#: includes/class-freemius.php:7162 +msgid "We made a few tweaks to the %s, %s" +msgstr "Udělali jsme několik vylepšení %s, %s" + +#: includes/class-freemius.php:7166 +msgid "Opt in to make \"%s\" better!" +msgstr "Zúčastněte se, aby byl \"%s\" ještě lepší!" + +#: includes/class-freemius.php:7598 +msgid "The upgrade of %s was successfully completed." +msgstr "Aktualizace %s byla úspěšně dokončena." + +#: includes/class-freemius.php9802, includes/class-fs-plugin-updater.php1038, +#: includes/class-fs-plugin-updater.php1233, +#: includes/class-fs-plugin-updater.php1240, +#: templates/auto-installation.php:32 +msgid "Add-On" +msgstr "Doplněk" + +#: includes/class-freemius.php9804, templates/account.php335, +#: templates/account.php343, templates/debug.php360, templates/debug.php:551 +msgid "Plugin" +msgstr "Plugin" + +#: includes/class-freemius.php9805, templates/account.php336, +#: templates/account.php344, templates/debug.php360, templates/debug.php551, +#: templates/forms/deactivation/form.php:71 +msgid "Theme" +msgstr "Šablona" + +#: includes/class-freemius.php:12596 +msgid "" +"An unknown error has occurred while trying to set the user's beta mode." +msgstr "Během nastavování uživatelského beta módu došlo k neočekávané chybě." + +#: includes/class-freemius.php:13020 +msgid "Invalid site details collection." +msgstr "" + +#: includes/class-freemius.php:13140 +msgid "" +"We couldn't find your email address in the system, are you sure it's the " +"right address?" +msgstr "Nemohli jsme najít vaši e-mailovou adresu v systému, jste si jisti, že je to správná adresa?" + +#: includes/class-freemius.php:13142 +msgid "" +"We can't see any active licenses associated with that email address, are you" +" sure it's the right address?" +msgstr "" + +#: includes/class-freemius.php:13416 +msgid "Account is pending activation." +msgstr "Účet čeká na aktivaci." + +#: includes/class-freemius.php13528, +#: templates/forms/premium-versions-upgrade-handler.php:47 +msgid "Buy a license now" +msgstr "Koupit licenci nyní" + +#: includes/class-freemius.php13540, +#: templates/forms/premium-versions-upgrade-handler.php:46 +msgid "Renew your license now" +msgstr "Obnovte svou licenci teď" + +#: includes/class-freemius.php:13544 +msgid "%s to access version %s security & feature updates, and support." +msgstr "%s pro přístup k verzi %s zajišťující podporu a nejen bezpečnostní aktualizace." + +#: includes/class-freemius.php:15957 +msgid "%s activation was successfully completed." +msgstr "Aktivace %s byla úspěšně dokončena." + +#: includes/class-freemius.php:15971 +msgid "Your account was successfully activated with the %s plan." +msgstr "Účet byl úspěšně aktivován s plánem %s." + +#: includes/class-freemius.php15982, includes/class-freemius.php:19707 +msgid "Your trial has been successfully started." +msgstr "Vaše zkušebí verze byla úspěšně spuštěna." + +#: includes/class-freemius.php16556, includes/class-freemius.php16644, +#: includes/class-freemius.php:16810 +msgid "Couldn't activate %s." +msgstr "Nelze aktivovat %s." + +#: includes/class-freemius.php16557, includes/class-freemius.php16645, +#: includes/class-freemius.php:16811 +msgid "Please contact us with the following message:" +msgstr "Kontaktujte nás prosím s následující zprávou:" + +#: includes/class-freemius.php16641, templates/forms/data-debug-mode.php:162 +msgid "An unknown error has occurred." +msgstr "Došlo k neznámé chybě." + +#: includes/class-freemius.php17168, includes/class-freemius.php:22082 +msgid "Upgrade" +msgstr "Upgrade" + +#: includes/class-freemius.php:17174 +msgid "Start Trial" +msgstr "Začít Trial" + +#: includes/class-freemius.php:17176 +msgid "Pricing" +msgstr "Ceník" + +#: includes/class-freemius.php17256, includes/class-freemius.php:17258 +msgid "Affiliation" +msgstr "" + +#: includes/class-freemius.php17286, includes/class-freemius.php17288, +#: templates/account.php183, templates/debug.php:326 +msgid "Account" +msgstr "Účet" + +#: includes/class-freemius.php17302, includes/class-freemius.php17304, +#: includes/customizer/class-fs-customizer-support-section.php:60 +msgid "Contact Us" +msgstr "Support" + +#: includes/class-freemius.php17315, includes/class-freemius.php17317, +#: includes/class-freemius.php22096, templates/account.php111, +#: templates/account/partials/addon.php:44 +msgid "Add-Ons" +msgstr "Doplňky" + +#: includes/class-freemius.php:17351 +msgctxt "ASCII arrow left icon" +msgid "←" +msgstr "←" + +#: includes/class-freemius.php:17351 +msgctxt "ASCII arrow right icon" +msgid "➤" +msgstr "➤" + +#: includes/class-freemius.php17353, templates/pricing.php:103 +msgctxt "noun" +msgid "Pricing" +msgstr "Ceník" + +#: includes/class-freemius.php17566, +#: includes/customizer/class-fs-customizer-support-section.php:67 +msgid "Support Forum" +msgstr "Fórum podpory" + +#: includes/class-freemius.php:18536 +msgid "Your email has been successfully verified - you are AWESOME!" +msgstr "" + +#: includes/class-freemius.php:18537 +msgctxt "a positive response" +msgid "Right on" +msgstr "" + +#: includes/class-freemius.php:19041 +msgid "seems like the key you entered doesn't match our records." +msgstr "" + +#: includes/class-freemius.php:19065 +msgid "" +"Debug mode was successfully enabled and will be automatically disabled in 60" +" min. You can also disable it earlier by clicking the \"Stop Debug\" link." +msgstr "" + +#: includes/class-freemius.php:19283 +msgid "Your %s Add-on plan was successfully upgraded." +msgstr "" + +#: includes/class-freemius.php:19285 +msgid "%s Add-on was successfully purchased." +msgstr "Rozšíření %s bylo úspěšně zakoupeno." + +#: includes/class-freemius.php:19288 +msgid "Download the latest version" +msgstr "Stáhnout nejnovější verzi" + +#: includes/class-freemius.php:19374 +msgid "" +"Your server is blocking the access to Freemius' API, which is crucial for " +"%1$s synchronization. Please contact your host to whitelist %2$s" +msgstr "Váš server blokuje přístup k Freemium API, což je zásadní pro synchronizaci %1s. Obraťte se na svého poskytovatele , aby přidal do svého whitelistu %2s" + +#: includes/class-freemius.php19380, includes/class-freemius.php19390, +#: includes/class-freemius.php19835, includes/class-freemius.php:19924 +msgid "Error received from the server:" +msgstr "Chyba přijatá ze serveru:" + +#: includes/class-freemius.php:19390 +msgid "" +"It seems like one of the authentication parameters is wrong. Update your " +"Public Key, Secret Key & User ID, and try again." +msgstr "" + +#: includes/class-freemius.php19604, includes/class-freemius.php19840, +#: includes/class-freemius.php19895, includes/class-freemius.php:19998 +msgctxt "" +"something somebody says when they are thinking about what you have just " +"said." +msgid "Hmm" +msgstr "Hmm" + +#: includes/class-freemius.php:19617 +msgid "" +"It looks like you are still on the %s plan. If you did upgrade or change " +"your plan, it's probably an issue on our side - sorry." +msgstr "" + +#: includes/class-freemius.php19618, templates/account.php113, +#: templates/add-ons.php250, templates/account/partials/addon.php:46 +msgctxt "trial period" +msgid "Trial" +msgstr "Trial" + +#: includes/class-freemius.php:19623 +msgid "" +"I have upgraded my account but when I try to Sync the License, the plan " +"remains %s." +msgstr "" + +#: includes/class-freemius.php19627, includes/class-freemius.php:19686 +msgid "Please contact us here" +msgstr "Kontaktujte nás prosím zde" + +#: includes/class-freemius.php:19638 +msgid "Your plan was successfully activated." +msgstr "Vaše licence byla úspěšně aktivována." + +#: includes/class-freemius.php:19639 +msgid "Your plan was successfully upgraded." +msgstr "Váš plán byl úspěšně aktualizován." + +#: includes/class-freemius.php:19656 +msgid "Your plan was successfully changed to %s." +msgstr "Váše předplatné bylo úspěšně změněn na %s." + +#: includes/class-freemius.php:19672 +msgid "" +"Your license has expired. You can still continue using the free %s forever." +msgstr "Vaše licence vypršela. Stále však můžete free verzi %s bez omezení." + +#: includes/class-freemius.php:19674 +msgid "" +"Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s " +"without interruptions." +msgstr "Vaše licence vypršela. %1$sObnovte předplatné%2$s, abyste mohli mohli %3$s používat bez omezení." + +#: includes/class-freemius.php:19682 +msgid "" +"Your license has been cancelled. If you think it's a mistake, please contact" +" support." +msgstr "Vaše licence byla zrušena. Pokud si myslíte, že je to chyba, obraťte se na naší podporu." + +#: includes/class-freemius.php:19695 +msgid "" +"Your license has expired. You can still continue using all the %s features, " +"but you'll need to renew your license to continue getting updates and " +"support." +msgstr "Vaše licence vypršela. Stále však můžete používat všechny funkce verze %s, ale pro získání technické podpory a nejnovějších aktualizací budete muset obnovit svou licenci." + +#: includes/class-freemius.php:19721 +msgid "" +"Your free trial has expired. You can still continue using all our free " +"features." +msgstr "" + +#: includes/class-freemius.php:19723 +msgid "" +"Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s " +"without interruptions." +msgstr "" + +#: includes/class-freemius.php:19831 +msgid "It looks like the license could not be activated." +msgstr "Licenci se nepodařilo aktivovat." + +#: includes/class-freemius.php:19873 +msgid "Your license was successfully activated." +msgstr "Vaše licence byla úspěšně aktivována." + +#: includes/class-freemius.php:19899 +msgid "It looks like your site currently doesn't have an active license." +msgstr "" + +#: includes/class-freemius.php:19923 +msgid "It looks like the license deactivation failed." +msgstr "Deaktivace licence pravděpodobně selhala." + +#: includes/class-freemius.php:19951 +msgid "" +"Your license was successfully deactivated, you are back to the %s plan." +msgstr "Vaše licence byla úspěšně deaktivována, jste zpět na plánu %s." + +#: includes/class-freemius.php:19952 +msgid "O.K" +msgstr "OK" + +#: includes/class-freemius.php:20005 +msgid "" +"Seems like we are having some temporary issue with your subscription " +"cancellation. Please try again in few minutes." +msgstr "" + +#: includes/class-freemius.php:20014 +msgid "" +"Your subscription was successfully cancelled. Your %s plan license will " +"expire in %s." +msgstr "Vaše předplatné bylo úspěšně zrušeno. Platnost licence %s vyprší za %s." + +#: includes/class-freemius.php:20056 +msgid "You are already running the %s in a trial mode." +msgstr "" + +#: includes/class-freemius.php:20067 +msgid "You already utilized a trial before." +msgstr "O zkušební licenci nelze žádat dvakrát." + +#: includes/class-freemius.php:20081 +msgid "Plan %s do not exist, therefore, can't start a trial." +msgstr "Plán %s neexistuje, proto nemůžete používt zkušební verzi." + +#: includes/class-freemius.php:20092 +msgid "Plan %s does not support a trial period." +msgstr "Plán %s nepodporuje zkušební období." + +#: includes/class-freemius.php:20103 +msgid "None of the %s's plans supports a trial period." +msgstr "" + +#: includes/class-freemius.php:20153 +msgid "" +"It looks like you are not in trial mode anymore so there's nothing to cancel" +" :)" +msgstr "Zkuušební režim už vám skončil, takže už není co rušit :)" + +#: includes/class-freemius.php:20189 +msgid "" +"Seems like we are having some temporary issue with your trial cancellation. " +"Please try again in few minutes." +msgstr "Omlouváme se, ale měli jsme nějaký dočasný problém se zrušením vaší zkušební licence. Zkuste to znovu za několik minut." + +#: includes/class-freemius.php:20208 +msgid "Your %s free trial was successfully cancelled." +msgstr "" + +#: includes/class-freemius.php:20524 +msgid "Version %s was released." +msgstr "Byla vydána verze %s." + +#: includes/class-freemius.php:20524 +msgid "Please download %s." +msgstr "Stáhněte si prosím %s." + +#: includes/class-freemius.php:20531 +msgid "the latest %s version here" +msgstr "nejnovější %s verze zde" + +#: includes/class-freemius.php:20536 +msgid "New" +msgstr "Nový" + +#: includes/class-freemius.php:20541 +msgid "Seems like you got the latest release." +msgstr "Pravděpodobně máte nejnovější verzi." + +#: includes/class-freemius.php:20542 +msgid "You are all good!" +msgstr "" + +#: includes/class-freemius.php:20812 +msgid "" +"Verification mail was just sent to %s. If you can't find it after 5 min, " +"please check your spam box." +msgstr "Ověřovací zpráva byla právě odeslána na email %s. Pokud ji nenajdete do 5 min, zkontrolujte prosím složku pro spam." + +#: includes/class-freemius.php:20951 +msgid "Site successfully opted in." +msgstr "" + +#: includes/class-freemius.php20952, includes/class-freemius.php:21792 +msgid "Awesome" +msgstr "Úžasný" + +#: includes/class-freemius.php20968, templates/forms/optout.php:32 +msgid "" +"We appreciate your help in making the %s better by letting us track some " +"usage data." +msgstr "Vážíme si vaší pomoci při zlepšování %s tím, že nám umožníte sledovat některá data o jeho používání." + +#: includes/class-freemius.php:20969 +msgid "Thank you!" +msgstr "Děkujeme!" + +#: includes/class-freemius.php:20976 +msgid "We will no longer be sending any usage data of %s on %s to %s." +msgstr "Nebudeme již posílat žádná data o používání %s na %s do %s." + +#: includes/class-freemius.php:21105 +msgid "" +"Please check your mailbox, you should receive an email via %s to confirm the" +" ownership change. From security reasons, you must confirm the change within" +" the next 15 min. If you cannot find the email, please check your spam " +"folder." +msgstr "Zkontrolujte si prosím emailovou schránku, měli byste obdržet zprávu od %s pro potvrzení změny vlastnictví. Z bezpečnostních důvodů je nutné potvrdit tuto změnu během následujících 15 minut. Pokud email nemůžete najít, zkontrolujte složku se spamem." + +#: includes/class-freemius.php:21111 +msgid "" +"Thanks for confirming the ownership change. An email was just sent to %s for" +" final approval." +msgstr "Děkujeme za potvrzení změny vlastnictví. Email byl právě odeslán na adresu %s, ke konečnému schválení." + +#: includes/class-freemius.php:21116 +msgid "%s is the new owner of the account." +msgstr "%s je nový vlastník účtu." + +#: includes/class-freemius.php:21118 +msgctxt "as congratulations" +msgid "Congrats" +msgstr "Gratulujeme" + +#: includes/class-freemius.php:21138 +msgid "" +"Sorry, we could not complete the email update. Another user with the same " +"email is already registered." +msgstr "Omlouváme se, ale aktualizaci emailu jsem nemohli dokončit. Uživatel s vámi zadaným emailem už je registrován." + +#: includes/class-freemius.php:21139 +msgid "" +"If you would like to give up the ownership of the %s's account to %s click " +"the Change Ownership button." +msgstr "" + +#: includes/class-freemius.php:21146 +msgid "Change Ownership" +msgstr "Změnit vlastnictví" + +#: includes/class-freemius.php:21154 +msgid "" +"Your email was successfully updated. You should receive an email with " +"confirmation instructions in few moments." +msgstr "" + +#: includes/class-freemius.php:21166 +msgid "Please provide your full name." +msgstr "Zadejte prosím své celé jméno." + +#: includes/class-freemius.php:21171 +msgid "Your name was successfully updated." +msgstr "Vaše jméno bylo úspěšně aktualizováno." + +#: includes/class-freemius.php:21232 +msgid "You have successfully updated your %s." +msgstr "Úspěšně jste aktualizovali %s." + +#: includes/class-freemius.php:21372 +msgid "" +"Just letting you know that the add-ons information of %s is being pulled " +"from an external server." +msgstr "" + +#: includes/class-freemius.php:21373 +msgctxt "advance notice of something that will need attention." +msgid "Heads up" +msgstr "" + +#: includes/class-freemius.php:21832 +msgctxt "exclamation" +msgid "Hey" +msgstr "Dobrý den" + +#: includes/class-freemius.php:21832 +msgid "" +"How do you like %s so far? Test all our %s premium features with a %d-day " +"free trial." +msgstr "Jak se vám líbí %s? Otestujte všechny naše %s nadstandardní funkce s %d-denní zkušební verze zdarma." + +#: includes/class-freemius.php:21840 +msgid "No commitment for %s days - cancel anytime!" +msgstr "" + +#: includes/class-freemius.php:21841 +msgid "No credit card required" +msgstr "Kreditní karta není vyžadována" + +#: includes/class-freemius.php21848, templates/forms/trial-start.php:53 +msgctxt "call to action" +msgid "Start free trial" +msgstr "" + +#: includes/class-freemius.php:21925 +msgid "" +"Hey there, did you know that %s has an affiliate program? If you like the %s" +" you can become our ambassador and earn some cash!" +msgstr "" + +#: includes/class-freemius.php:21934 +msgid "Learn more" +msgstr "Přečtěte si více" + +#: includes/class-freemius.php22120, templates/account.php499, +#: templates/account.php624, templates/connect.php171, +#: templates/connect.php421, templates/forms/license-activation.php27, +#: templates/account/partials/addon.php:321 +msgid "Activate License" +msgstr "Aktivovat licenci" + +#: includes/class-freemius.php22121, templates/account.php571, +#: templates/account.php623, templates/account/partials/addon.php322, +#: templates/account/partials/site.php:271 +msgid "Change License" +msgstr "Změnit licenci" + +#: includes/class-freemius.php22217, templates/account/partials/site.php:169 +msgid "Opt Out" +msgstr "Odhlásit se" + +#: includes/class-freemius.php22219, includes/class-freemius.php22225, +#: templates/account/partials/site.php49, +#: templates/account/partials/site.php:169 +msgid "Opt In" +msgstr "Zúčastnit se" + +#: includes/class-freemius.php:22453 +msgid "" +" The paid version of %1$s is already installed. Please activate it to start " +"benefiting the %2$s features. %3$s" +msgstr " Placená verze %1s je již nainstalována. Aktivujte jí, abyste mohli těžit z %2s funkcí. %3s" + +#: includes/class-freemius.php:22461 +msgid "Activate %s features" +msgstr "Aktivovat %s funkce" + +#: includes/class-freemius.php:22474 +msgid "Please follow these steps to complete the upgrade" +msgstr "Dokončete upgrade provedením následujících kroků" + +#: includes/class-freemius.php:22478 +msgid "Download the latest %s version" +msgstr "Stáhnout nejnovější verzi %s" + +#: includes/class-freemius.php:22482 +msgid "Upload and activate the downloaded version" +msgstr "Nahrát a aktivovat stáhnutou verzi" + +#: includes/class-freemius.php:22484 +msgid "How to upload and activate?" +msgstr "Jak nahrát a aktivovat?" + +#: includes/class-freemius.php:22618 +msgid "" +"%sClick here%s to choose the sites where you'd like to activate the license " +"on." +msgstr "" + +#: includes/class-freemius.php:22779 +msgid "Auto installation only works for opted-in users." +msgstr "" + +#: includes/class-freemius.php22789, includes/class-freemius.php22822, +#: includes/class-fs-plugin-updater.php1212, +#: includes/class-fs-plugin-updater.php:1226 +msgid "Invalid module ID." +msgstr "" + +#: includes/class-freemius.php22798, includes/class-fs-plugin-updater.php:1248 +msgid "Premium version already active." +msgstr "Prémiová verze je již aktivní." + +#: includes/class-freemius.php:22805 +msgid "You do not have a valid license to access the premium version." +msgstr "" + +#: includes/class-freemius.php:22812 +msgid "" +"Plugin is a \"Serviceware\" which means it does not have a premium code " +"version." +msgstr "" + +#: includes/class-freemius.php22830, includes/class-fs-plugin-updater.php:1247 +msgid "Premium add-on version already installed." +msgstr "" + +#: includes/class-freemius.php:23180 +msgid "View paid features" +msgstr "Zobrazit placené funkce" + +#: includes/class-freemius.php:23502 +msgid "Thank you so much for using %s and its add-ons!" +msgstr "" + +#: includes/class-freemius.php:23503 +msgid "Thank you so much for using %s!" +msgstr "" + +#: includes/class-freemius.php:23509 +msgid "" +"You've already opted-in to our usage-tracking, which helps us keep improving" +" the %s." +msgstr "" + +#: includes/class-freemius.php:23513 +msgid "Thank you so much for using our products!" +msgstr "" + +#: includes/class-freemius.php:23514 +msgid "" +"You've already opted-in to our usage-tracking, which helps us keep improving" +" them." +msgstr "" + +#: includes/class-freemius.php:23533 +msgid "%s and its add-ons" +msgstr "%s a jeho doplňky" + +#: includes/class-freemius.php:23542 +msgid "Products" +msgstr "Produkty" + +#: includes/class-freemius.php23549, templates/connect.php:272 +msgid "Yes" +msgstr "Ano" + +#: includes/class-freemius.php23550, templates/connect.php:273 +msgid "send me security & feature updates, educational content and offers." +msgstr "" + +#: includes/class-freemius.php23551, templates/connect.php:278 +msgid "No" +msgstr "Ne" + +#: includes/class-freemius.php23553, templates/connect.php:280 +msgid "" +"do %sNOT%s send me security & feature updates, educational content and " +"offers." +msgstr "" + +#: includes/class-freemius.php:23563 +msgid "" +"Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance " +"requirements it is required that you provide your explicit consent, again, " +"confirming that you are onboard :-)" +msgstr "" + +#: includes/class-freemius.php23565, templates/connect.php:287 +msgid "" +"Please let us know if you'd like us to contact you for security & feature " +"updates, educational content, and occasional offers:" +msgstr "" + +#: includes/class-freemius.php:23847 +msgid "License key is empty." +msgstr "Licenční klíč je prázdný." + +#: includes/class-fs-plugin-updater.php206, +#: templates/forms/premium-versions-upgrade-handler.php:57 +msgid "Renew license" +msgstr "Obnovit licenci" + +#: includes/class-fs-plugin-updater.php211, +#: templates/forms/premium-versions-upgrade-handler.php:58 +msgid "Buy license" +msgstr "Koupit licenci" + +#: includes/class-fs-plugin-updater.php321, +#: includes/class-fs-plugin-updater.php:354 +msgid "There is a %s of %s available." +msgstr "" + +#: includes/class-fs-plugin-updater.php323, +#: includes/class-fs-plugin-updater.php:359 +msgid "new Beta version" +msgstr "nová Beta verze" + +#: includes/class-fs-plugin-updater.php324, +#: includes/class-fs-plugin-updater.php:360 +msgid "new version" +msgstr "nová verze" + +#: includes/class-fs-plugin-updater.php:383 +msgid "Important Upgrade Notice:" +msgstr "" + +#: includes/class-fs-plugin-updater.php:1277 +msgid "Installing plugin: %s" +msgstr "Instaluji plugin: %s" + +#: includes/class-fs-plugin-updater.php:1318 +msgid "Unable to connect to the filesystem. Please confirm your credentials." +msgstr "Nelze se připojit k systémovému souboru. Potvrďte prosím svá pověření." + +#: includes/class-fs-plugin-updater.php:1500 +msgid "" +"The remote plugin package does not contain a folder with the desired slug " +"and renaming did not work." +msgstr "Balíček remote pluginů neobsahuje složku s žádoucím \"slug\" a přejmenování nefunguje." + +#: includes/fs-plugin-info-dialog.php:535 +msgid "Purchase More" +msgstr "Zakoupit další" + +#: includes/fs-plugin-info-dialog.php536, +#: templates/account/partials/addon.php:385 +msgctxt "verb" +msgid "Purchase" +msgstr "Zakoupit" + +#: includes/fs-plugin-info-dialog.php:540 +msgid "Start my free %s" +msgstr "Začít můj bezplatný %s" + +#: includes/fs-plugin-info-dialog.php:738 +msgid "Install Free Version Update Now" +msgstr "" + +#: includes/fs-plugin-info-dialog.php739, templates/account.php:560 +msgid "Install Update Now" +msgstr "Nainstalovat aktualizaci" + +#: includes/fs-plugin-info-dialog.php:748 +msgid "Install Free Version Now" +msgstr "Nainstalovat verzi zdarma" + +#: includes/fs-plugin-info-dialog.php749, templates/add-ons.php323, +#: templates/auto-installation.php111, +#: templates/account/partials/addon.php365, +#: templates/account/partials/addon.php:418 +msgid "Install Now" +msgstr "Instalovat" + +#: includes/fs-plugin-info-dialog.php:765 +msgctxt "as download latest version" +msgid "Download Latest Free Version" +msgstr "Stáhněte si nejnovější bezplatnou verzi" + +#: includes/fs-plugin-info-dialog.php766, templates/account.php91, +#: templates/add-ons.php37, templates/account/partials/addon.php:25 +msgctxt "as download latest version" +msgid "Download Latest" +msgstr "Stáhněte si nejnovější" + +#: includes/fs-plugin-info-dialog.php781, templates/add-ons.php329, +#: templates/account/partials/addon.php356, +#: templates/account/partials/addon.php:412 +msgid "Activate this add-on" +msgstr "Aktivovat toto rozšíření" + +#: includes/fs-plugin-info-dialog.php783, templates/connect.php:418 +msgid "Activate Free Version" +msgstr "Aktivovat bezplatnou verzi" + +#: includes/fs-plugin-info-dialog.php784, templates/account.php115, +#: templates/add-ons.php330, templates/account/partials/addon.php:48 +msgid "Activate" +msgstr "Aktivovat" + +#: includes/fs-plugin-info-dialog.php:994 +msgctxt "Plugin installer section title" +msgid "Description" +msgstr "Popis" + +#: includes/fs-plugin-info-dialog.php:995 +msgctxt "Plugin installer section title" +msgid "Installation" +msgstr "Instalace" + +#: includes/fs-plugin-info-dialog.php:996 +msgctxt "Plugin installer section title" +msgid "FAQ" +msgstr "FAQ" + +#: includes/fs-plugin-info-dialog.php997, +#: templates/plugin-info/description.php:55 +msgid "Screenshots" +msgstr "Snímky obrazovky" + +#: includes/fs-plugin-info-dialog.php:998 +msgctxt "Plugin installer section title" +msgid "Changelog" +msgstr "Historie změn" + +#: includes/fs-plugin-info-dialog.php:999 +msgctxt "Plugin installer section title" +msgid "Reviews" +msgstr "Vaše hodnocení" + +#: includes/fs-plugin-info-dialog.php:1000 +msgctxt "Plugin installer section title" +msgid "Other Notes" +msgstr "" + +#: includes/fs-plugin-info-dialog.php:1015 +msgctxt "Plugin installer section title" +msgid "Features & Pricing" +msgstr "Vlastnosti a ceník" + +#: includes/fs-plugin-info-dialog.php:1025 +msgid "Plugin Install" +msgstr "Instalace pluginu" + +#: includes/fs-plugin-info-dialog.php:1097 +msgctxt "e.g. Professional Plan" +msgid "%s Plan" +msgstr "%s plán" + +#: includes/fs-plugin-info-dialog.php:1123 +msgctxt "e.g. the best product" +msgid "Best" +msgstr "Nejlepší" + +#: includes/fs-plugin-info-dialog.php1129, +#: includes/fs-plugin-info-dialog.php:1149 +msgctxt "as every month" +msgid "Monthly" +msgstr "Měsíčně" + +#: includes/fs-plugin-info-dialog.php:1132 +msgctxt "as once a year" +msgid "Annual" +msgstr "Ročně" + +#: includes/fs-plugin-info-dialog.php:1135 +msgid "Lifetime" +msgstr "Doživotní" + +#: includes/fs-plugin-info-dialog.php1149, +#: includes/fs-plugin-info-dialog.php1151, +#: includes/fs-plugin-info-dialog.php:1153 +msgctxt "e.g. billed monthly" +msgid "Billed %s" +msgstr "Účtováno %s" + +#: includes/fs-plugin-info-dialog.php:1151 +msgctxt "as once a year" +msgid "Annually" +msgstr "Ročně" + +#: includes/fs-plugin-info-dialog.php:1153 +msgctxt "as once a year" +msgid "Once" +msgstr "Jedenkrát" + +#: includes/fs-plugin-info-dialog.php:1159 +msgid "Single Site License" +msgstr "" + +#: includes/fs-plugin-info-dialog.php:1161 +msgid "Unlimited Licenses" +msgstr "" + +#: includes/fs-plugin-info-dialog.php:1163 +msgid "Up to %s Sites" +msgstr "Až pro %s webů" + +#: includes/fs-plugin-info-dialog.php1173, +#: templates/plugin-info/features.php:82 +msgctxt "as monthly period" +msgid "mo" +msgstr "po" + +#: includes/fs-plugin-info-dialog.php1180, +#: templates/plugin-info/features.php:80 +msgctxt "as annual period" +msgid "year" +msgstr "rok" + +#: includes/fs-plugin-info-dialog.php:1234 +msgctxt "noun" +msgid "Price" +msgstr "Cena" + +#: includes/fs-plugin-info-dialog.php:1282 +msgid "Save %s" +msgstr "Uložit %s" + +#: includes/fs-plugin-info-dialog.php:1292 +msgid "No commitment for %s - cancel anytime" +msgstr "" + +#: includes/fs-plugin-info-dialog.php:1295 +msgid "After your free %s, pay as little as %s" +msgstr "Po bezplatné %s platit jen v %s" + +#: includes/fs-plugin-info-dialog.php:1306 +msgid "Details" +msgstr "Detaily" + +#: includes/fs-plugin-info-dialog.php1310, templates/account.php102, +#: templates/debug.php203, templates/debug.php240, templates/debug.php457, +#: templates/account/partials/addon.php:36 +msgctxt "product version" +msgid "Version" +msgstr "Verze" + +#: includes/fs-plugin-info-dialog.php:1317 +msgctxt "as the plugin author" +msgid "Author" +msgstr "Autor" + +#: includes/fs-plugin-info-dialog.php:1324 +msgid "Last Updated" +msgstr "Poslední aktualizace" + +#: includes/fs-plugin-info-dialog.php1329, templates/account.php:468 +msgctxt "x-ago" +msgid "%s ago" +msgstr "Před %s" + +#: includes/fs-plugin-info-dialog.php:1338 +msgid "Requires WordPress Version" +msgstr "Vyžaduje verzi WordPress" + +#: includes/fs-plugin-info-dialog.php:1339 +msgid "%s or higher" +msgstr "%s nebo vyšší" + +#: includes/fs-plugin-info-dialog.php:1346 +msgid "Compatible up to" +msgstr "Kompatibilní až po" + +#: includes/fs-plugin-info-dialog.php:1354 +msgid "Downloaded" +msgstr "Staženo" + +#: includes/fs-plugin-info-dialog.php:1358 +msgid "%s time" +msgstr "%s krát" + +#: includes/fs-plugin-info-dialog.php:1360 +msgid "%s times" +msgstr "%s krát" + +#: includes/fs-plugin-info-dialog.php:1370 +msgid "WordPress.org Plugin Page" +msgstr "Název pluginu na WordPress.org" + +#: includes/fs-plugin-info-dialog.php:1378 +msgid "Plugin Homepage" +msgstr "Hlavní stránka pluginu" + +#: includes/fs-plugin-info-dialog.php1386, +#: includes/fs-plugin-info-dialog.php:1468 +msgid "Donate to this plugin" +msgstr "Přispějte na tento plugin" + +#: includes/fs-plugin-info-dialog.php:1393 +msgid "Average Rating" +msgstr "Průměrné hodnocení" + +#: includes/fs-plugin-info-dialog.php:1400 +msgid "based on %s" +msgstr "založeno na %s" + +#: includes/fs-plugin-info-dialog.php:1404 +msgid "%s rating" +msgstr "%s hodnocení" + +#: includes/fs-plugin-info-dialog.php:1406 +msgid "%s ratings" +msgstr "%s hodnocení" + +#: includes/fs-plugin-info-dialog.php:1421 +msgid "%s star" +msgstr "%s hvězda" + +#: includes/fs-plugin-info-dialog.php:1423 +msgid "%s stars" +msgstr "%s hvězd" + +#: includes/fs-plugin-info-dialog.php:1434 +msgid "Click to see reviews that provided a rating of %s" +msgstr "" + +#: includes/fs-plugin-info-dialog.php:1447 +msgid "Contributors" +msgstr "Přispěvatelé" + +#: includes/fs-plugin-info-dialog.php1476, +#: includes/fs-plugin-info-dialog.php:1478 +msgid "Warning" +msgstr "Varování" + +#: includes/fs-plugin-info-dialog.php:1476 +msgid "" +"This plugin has not been tested with your current version of WordPress." +msgstr "" + +#: includes/fs-plugin-info-dialog.php:1478 +msgid "" +"This plugin has not been marked as compatible with your version of " +"WordPress." +msgstr "" + +#: includes/fs-plugin-info-dialog.php:1497 +msgid "Paid add-on must be deployed to Freemius." +msgstr "Placený doplněk musí být nasazen na Freemius." + +#: includes/fs-plugin-info-dialog.php:1498 +msgid "Add-on must be deployed to WordPress.org or Freemius." +msgstr "Rozšíření musí být nasazeno na WordPress.org nebo na Freemius." + +#: includes/fs-plugin-info-dialog.php:1519 +msgid "Newer Version (%s) Installed" +msgstr "Novější verze (%s) nainstalována" + +#: includes/fs-plugin-info-dialog.php:1520 +msgid "Newer Free Version (%s) Installed" +msgstr "Novější verze zdarma (%s) nainstalována" + +#: includes/fs-plugin-info-dialog.php:1527 +msgid "Latest Version Installed" +msgstr "Nainstalována nejnovější verze" + +#: includes/fs-plugin-info-dialog.php:1528 +msgid "Latest Free Version Installed" +msgstr "Nainstalována nejnovější verze zdarma" + +#: templates/account.php92, templates/forms/subscription-cancellation.php96, +#: templates/account/partials/addon.php26, +#: templates/account/partials/site.php:311 +msgid "Downgrading your plan" +msgstr "Snižuji vaše předplatné" + +#: templates/account.php93, templates/forms/subscription-cancellation.php97, +#: templates/account/partials/addon.php27, +#: templates/account/partials/site.php:312 +msgid "Cancelling the subscription" +msgstr "Ruším předplatné" + +#. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the +#. subscription' +#: templates/account.php95, templates/forms/subscription-cancellation.php99, +#: templates/account/partials/site.php:314 +msgid "" +"%1$s will immediately stop all future recurring payments and your %2$s plan " +"license will expire in %3$s." +msgstr "%1s okamžitě zastaví všechny budoucí opakující se platby a licence k plánu %s vyprší za %s." + +#: templates/account.php96, templates/forms/subscription-cancellation.php100, +#: templates/account/partials/addon.php30, +#: templates/account/partials/site.php:315 +msgid "" +"Please note that we will not be able to grandfather outdated pricing for " +"renewals/new subscriptions after a cancellation. If you choose to renew the " +"subscription manually in the future, after a price increase, which typically" +" occurs once a year, you will be charged the updated price." +msgstr "" + +#: templates/account.php97, templates/forms/subscription-cancellation.php106, +#: templates/account/partials/addon.php:31 +msgid "" +"Cancelling the trial will immediately block access to all premium features. " +"Are you sure?" +msgstr "Zrušení zkušební verze okamžitě zablokuje přístup ke všem prémiovým funkcím. Opravdu chcete pokračovat?" + +#: templates/account.php98, templates/forms/subscription-cancellation.php101, +#: templates/account/partials/addon.php32, +#: templates/account/partials/site.php:316 +msgid "" +"You can still enjoy all %s features but you will not have access to %s " +"security & feature updates, nor support." +msgstr "" + +#: templates/account.php99, templates/forms/subscription-cancellation.php102, +#: templates/account/partials/addon.php33, +#: templates/account/partials/site.php:317 +msgid "" +"Once your license expires you can still use the Free version but you will " +"NOT have access to the %s features." +msgstr "" + +#. translators: %s: Plan title (e.g. "Professional") +#: templates/account.php101, +#: templates/account/partials/activate-license-button.php31, +#: templates/account/partials/addon.php:35 +msgid "Activate %s Plan" +msgstr "Aktivovat %s plán" + +#. translators: %s: Time period (e.g. Auto renews in "2 months") +#: templates/account.php104, templates/account/partials/addon.php38, +#: templates/account/partials/site.php:291 +msgid "Auto renews in %s" +msgstr "Automaticky se obnoví za %s" + +#. translators: %s: Time period (e.g. Expires in "2 months") +#: templates/account.php106, templates/account/partials/addon.php40, +#: templates/account/partials/site.php:293 +msgid "Expires in %s" +msgstr "Vyprší za %s" + +#: templates/account.php:107 +msgctxt "as synchronize license" +msgid "Sync License" +msgstr "Synchronizovat licence" + +#: templates/account.php108, templates/account/partials/addon.php:41 +msgid "Cancel Trial" +msgstr "Zrušit zkušební verzi" + +#: templates/account.php109, templates/account/partials/addon.php:42 +msgid "Change Plan" +msgstr "Změnit plán" + +#: templates/account.php110, templates/account/partials/addon.php:43 +msgctxt "verb" +msgid "Upgrade" +msgstr "Vylepšit" + +#: templates/account.php112, templates/account/partials/addon.php45, +#: templates/account/partials/site.php:318 +msgctxt "verb" +msgid "Downgrade" +msgstr "Přejít na nižší verzi" + +#: templates/account.php114, templates/add-ons.php246, +#: templates/plugin-info/features.php72, +#: templates/account/partials/addon.php47, +#: templates/account/partials/site.php:33 +msgid "Free" +msgstr "Zdarma" + +#: templates/account.php116, templates/debug.php373, +#: includes/customizer/class-fs-customizer-upsell-control.php110, +#: templates/account/partials/addon.php:49 +msgctxt "as product pricing plan" +msgid "Plan" +msgstr "Druh členství" + +#: templates/account.php:117 +msgid "Bundle Plan" +msgstr "" + +#: templates/account.php:191 +msgid "Free Trial" +msgstr "Zkušební verze zdarma" + +#: templates/account.php:202 +msgid "Account Details" +msgstr "Detaily účtu" + +#: templates/account.php209, templates/forms/data-debug-mode.php:33 +msgid "Start Debug" +msgstr "" + +#: templates/account.php:211 +msgid "Stop Debug" +msgstr "" + +#: templates/account.php:218 +msgid "Billing & Invoices" +msgstr "" + +#: templates/account.php:229 +msgid "" +"Deleting the account will automatically deactivate your %s plan license so " +"you can use it on other sites. If you want to terminate the recurring " +"payments as well, click the \"Cancel\" button, and first \"Downgrade\" your " +"account. Are you sure you would like to continue with the deletion?" +msgstr "" + +#: templates/account.php:231 +msgid "" +"Deletion is not temporary. Only delete if you no longer want to use this %s " +"anymore. Are you sure you would like to continue with the deletion?" +msgstr "" + +#: templates/account.php:234 +msgid "Delete Account" +msgstr "Smazat účet" + +#: templates/account.php246, templates/account/partials/addon.php231, +#: templates/account/partials/deactivate-license-button.php:35 +msgid "Deactivate License" +msgstr "Deaktivovat licenci" + +#: templates/account.php269, templates/forms/subscription-cancellation.php:125 +msgid "Are you sure you want to proceed?" +msgstr "Opravdu chcete pokračovat?" + +#: templates/account.php269, templates/account/partials/addon.php:255 +msgid "Cancel Subscription" +msgstr "Zrušit předplatné" + +#: templates/account.php298, templates/account/partials/addon.php:340 +msgctxt "as synchronize" +msgid "Sync" +msgstr "Synchronizovat" + +#: templates/account.php313, templates/debug.php:507 +msgid "Name" +msgstr "Jméno" + +#: templates/account.php319, templates/debug.php:508 +msgid "Email" +msgstr "Email" + +#: templates/account.php326, templates/debug.php371, templates/debug.php:557 +msgid "User ID" +msgstr "ID uživatele" + +#: templates/account.php344, templates/account.php637, +#: templates/account.php682, templates/debug.php238, templates/debug.php365, +#: templates/debug.php454, templates/debug.php506, templates/debug.php555, +#: templates/debug.php632, templates/account/payments.php35, +#: templates/debug/logger.php:21 +msgid "ID" +msgstr "ID" + +#: templates/account.php:351 +msgid "Site ID" +msgstr "ID stránky" + +#: templates/account.php:354 +msgid "No ID" +msgstr "Žádné ID" + +#: templates/account.php359, templates/debug.php245, templates/debug.php374, +#: templates/debug.php458, templates/debug.php510, +#: templates/account/partials/site.php:227 +msgid "Public Key" +msgstr "Veřejný klíč" + +#: templates/account.php365, templates/debug.php375, templates/debug.php459, +#: templates/debug.php511, templates/account/partials/site.php:239 +msgid "Secret Key" +msgstr "Tajný klíč" + +#: templates/account.php:368 +msgctxt "as secret encryption key missing" +msgid "No Secret" +msgstr "Tajný klíč chybí" + +#: templates/account.php395, templates/account/partials/site.php120, +#: templates/account/partials/site.php:122 +msgid "Trial" +msgstr "Zkouška" + +#: templates/account.php422, templates/debug.php562, +#: templates/account/partials/site.php:260 +msgid "License Key" +msgstr "Licenční klíč" + +#: templates/account.php:453 +msgid "Join the Beta program" +msgstr "" + +#: templates/account.php:459 +msgid "not verified" +msgstr "není ověřeno" + +#: templates/account.php468, templates/account/partials/addon.php:190 +msgid "Expired" +msgstr "Vypršelo" + +#: templates/account.php:528 +msgid "Premium version" +msgstr "Prémiová verze" + +#: templates/account.php:530 +msgid "Free version" +msgstr "Verze zdarma" + +#: templates/account.php:542 +msgid "Verify Email" +msgstr "Ověřit e-mail" + +#: templates/account.php:553 +msgid "Download %s Version" +msgstr "Stáhnout verzi %s" + +#: templates/account.php568, templates/account.php820, +#: templates/account/partials/site.php248, +#: templates/account/partials/site.php:270 +msgctxt "verb" +msgid "Show" +msgstr "Zobrazit" + +#: templates/account.php:583 +msgid "What is your %s?" +msgstr "Jaké je vaše \"%s\"?" + +#: templates/account.php591, templates/account/billing.php:21 +msgctxt "verb" +msgid "Edit" +msgstr "Upravit" + +#: templates/account.php:616 +msgid "Sites" +msgstr "Weby" + +#: templates/account.php:629 +msgid "Search by address" +msgstr "Hledat podle adresy" + +#: templates/account.php638, templates/debug.php:368 +msgid "Address" +msgstr "Adresa" + +#: templates/account.php:639 +msgid "License" +msgstr "Licence" + +#: templates/account.php:640 +msgid "Plan" +msgstr "Druh členství" + +#: templates/account.php:685 +msgctxt "as software license" +msgid "License" +msgstr "Licence" + +#: templates/account.php:814 +msgctxt "verb" +msgid "Hide" +msgstr "Skrýt" + +#: templates/account.php836, templates/forms/data-debug-mode.php:31 +msgid "Processing" +msgstr "" + +#: templates/account.php:839 +msgid "Get updates for bleeding edge Beta versions of %s." +msgstr "" + +#: templates/account.php:897 +msgid "Cancelling %s" +msgstr "Ruším %s" + +#: templates/account.php897, templates/account.php914, +#: templates/forms/subscription-cancellation.php27, +#: templates/forms/deactivation/form.php:133 +msgid "trial" +msgstr "zkušební" + +#: templates/account.php912, templates/forms/deactivation/form.php:150 +msgid "Cancelling %s..." +msgstr "Ruším %s..." + +#: templates/account.php915, templates/forms/subscription-cancellation.php28, +#: templates/forms/deactivation/form.php:134 +msgid "subscription" +msgstr "předplatné" + +#: templates/account.php:929 +msgid "" +"Deactivating your license will block all premium features, but will enable " +"activating the license on another site. Are you sure you want to proceed?" +msgstr "" + +#: templates/add-ons.php:38 +msgid "View details" +msgstr "Zobrazit podrobnosti" + +#: templates/add-ons.php:48 +msgid "Add Ons for %s" +msgstr "Rozšíření pro %s" + +#: templates/add-ons.php:58 +msgid "" +"We couldn't load the add-ons list. It's probably an issue on our side, " +"please try to come back in few minutes." +msgstr "" + +#: templates/add-ons.php:229 +msgctxt "active add-on" +msgid "Active" +msgstr "" + +#: templates/add-ons.php:230 +msgctxt "installed add-on" +msgid "Installed" +msgstr "" + +#: templates/admin-notice.php13, templates/forms/license-activation.php207, +#: templates/forms/resend-key.php:77 +msgctxt "as close a window" +msgid "Dismiss" +msgstr "Skrýt" + +#: templates/auto-installation.php:45 +msgid "%s sec" +msgstr "%s s" + +#: templates/auto-installation.php:83 +msgid "Automatic Installation" +msgstr "" + +#: templates/auto-installation.php:93 +msgid "" +"An automated download and installation of %s (paid version) from %s will " +"start in %s. If you would like to do it manually - click the cancellation " +"button now." +msgstr "" + +#: templates/auto-installation.php:104 +msgid "" +"The installation process has started and may take a few minutes to complete." +" Please wait until it is done - do not refresh this page." +msgstr "Proces instalace byl zahájen a může trvat několik minut. Počkejte prosím na dokončení - neobnovujte tuto stránku." + +#: templates/auto-installation.php:109 +msgid "Cancel Installation" +msgstr "" + +#: templates/checkout.php:180 +msgid "Checkout" +msgstr "Pokladna" + +#: templates/checkout.php:180 +msgid "PCI compliant" +msgstr "Kompatibilní s PCI" + +#. translators: %s: name (e.g. Hey John,) +#: templates/connect.php:112 +msgctxt "greeting" +msgid "Hey %s," +msgstr "Dobrý den %s," + +#: templates/connect.php:154 +msgid "Allow & Continue" +msgstr "Povolit a pokračovat" + +#: templates/connect.php:158 +msgid "Re-send activation email" +msgstr "Znovu poslat aktivační email" + +#: templates/connect.php:162 +msgid "Thanks %s!" +msgstr "Děkujeme %s!" + +#: templates/connect.php172, templates/forms/license-activation.php:46 +msgid "Agree & Activate License" +msgstr "Aktivovat licenci" + +#: templates/connect.php:181 +msgid "" +"Thanks for purchasing %s! To get started, please enter your license key:" +msgstr "Děkujeme za nákup %s! Pro aktivaci zadejte prosím svůj licenční klíč:" + +#: templates/connect.php:188 +msgid "" +"Never miss an important update - opt in to our security & feature updates " +"notifications, educational content, offers, and non-sensitive diagnostic " +"tracking with %4$s." +msgstr "Nezmeškejte žádnou důležitou aktualizaci - dovolte nám sbírat anonymní a obecná diagnostická data s %4$s a nechte se upozornit na nové funkce, výukové materiály, nabídky a bezpečnostní aktualizace." + +#: templates/connect.php:189 +msgid "" +"Never miss an important update - opt in to our security and feature updates " +"notifications, and non-sensitive diagnostic tracking with %4$s." +msgstr "Nezmeškejte žádnou důležitou aktualizaci - dovolte nám sbírat anonymní a obecná diagnostická data s %4$s a nechte se upozornit na nové funkce a bezpečnostní aktualizace." + +#: templates/connect.php:195 +msgid "" +"Never miss an important update - opt in to our security & feature updates " +"notifications, educational content, offers, and non-sensitive diagnostic " +"tracking with %4$s. If you skip this, that's okay! %1$s will still work just" +" fine." +msgstr "Nezmeškejte žádnou důležitou aktualizaci - dovolte nám sbírat anonymní a obecná diagnostická data s %4$s a nechte se upozornit na nové funkce, výukové materiály, nabídky a bezpečnostní aktualizace. Pokud tohle přeskočíte tak se nic neděje. %1$s bude bez problémů dál fungovat." + +#: templates/connect.php:196 +msgid "" +"Never miss an important update - opt in to our security & feature updates " +"notifications, and non-sensitive diagnostic tracking with %4$s. If you skip " +"this, that's okay! %1$s will still work just fine." +msgstr "Nezmeškejte žádnou důležitou aktualizaci - dovolte nám sbírat anonymní a obecná diagnostická data s %4$s a nechte se upozornit na nové funkce a bezpečnostní aktualizace. Pokud tohle přeskočíte tak se nic neděje. %1$s bude bez problémů dál fungovat." + +#: templates/connect.php:230 +msgid "We're excited to introduce the Freemius network-level integration." +msgstr "Jsme rádi, že vám můžeme ukázat integraci Freemiusu i v rámci sítě webů." + +#: templates/connect.php:233 +msgid "" +"During the update process we detected %d site(s) that are still pending " +"license activation." +msgstr "" + +#: templates/connect.php:235 +msgid "" +"If you'd like to use the %s on those sites, please enter your license key " +"below and click the activation button." +msgstr "" + +#: templates/connect.php:237 +msgid "%s's paid features" +msgstr "" + +#: templates/connect.php:242 +msgid "" +"Alternatively, you can skip it for now and activate the license later, in " +"your %s's network-level Account page." +msgstr "" + +#: templates/connect.php:244 +msgid "" +"During the update process we detected %s site(s) in the network that are " +"still pending your attention." +msgstr "" + +#: templates/connect.php253, templates/forms/data-debug-mode.php35, +#: templates/forms/license-activation.php:49 +msgid "License key" +msgstr "Licenční klíč" + +#: templates/connect.php256, templates/forms/license-activation.php:22 +msgid "Can't find your license key?" +msgstr "Nemůžete najít svůj licenční klíč?" + +#: templates/connect.php315, templates/connect.php652, +#: templates/forms/deactivation/retry-skip.php:20 +msgctxt "verb" +msgid "Skip" +msgstr "Přeskočit" + +#: templates/connect.php:318 +msgid "Delegate to Site Admins" +msgstr "" + +#: templates/connect.php:318 +msgid "" +"If you click it, this decision will be delegated to the sites " +"administrators." +msgstr "" + +#: templates/connect.php:346 +msgid "Your Profile Overview" +msgstr "Informace o vašem profilu" + +#: templates/connect.php:347 +msgid "Name and email address" +msgstr "Jméno a emailová adresa" + +#: templates/connect.php:352 +msgid "Your Site Overview" +msgstr "Informace o vaší stránce" + +#: templates/connect.php:353 +msgid "Site URL, WP version, PHP info, plugins & themes" +msgstr "URL webu, verze WP, PHP info, pluginy a šablony" + +#: templates/connect.php:358 +msgid "Admin Notices" +msgstr "Zobrazení oznámení v adminu" + +#: templates/connect.php359, templates/connect.php:375 +msgid "Updates, announcements, marketing, no spam" +msgstr "Aktualizace, oznámení, marketing, žádný spam" + +#: templates/connect.php:364 +msgid "Current %s Events" +msgstr "Informace o událostech pro %s" + +#: templates/connect.php:365 +msgid "Activation, deactivation and uninstall" +msgstr "Aktivace, deaktivace a odinstalace" + +#: templates/connect.php:374 +msgid "Newsletter" +msgstr "Newsletter" + +#: templates/connect.php391, templates/forms/license-activation.php:41 +msgid "" +"The %1$s will be periodically sending data to %2$s to check for security and" +" feature updates, and verify the validity of your license." +msgstr "Pro ověření platnosti vaší licence a automatických aktualizací bude tento %1$s periodicky odesílat data do %2$s." + +#: templates/connect.php:396 +msgid "What permissions are being granted?" +msgstr "Jaká oprávnění budou udělena?" + +#: templates/connect.php:417 +msgid "Don't have a license key?" +msgstr "Nemáte licenční klíč?" + +#: templates/connect.php:420 +msgid "Have a license key?" +msgstr "Máte licenční klíč?" + +#: templates/connect.php:428 +msgid "Privacy Policy" +msgstr "Zásady ochrany osobních údajů" + +#: templates/connect.php:430 +msgid "License Agreement" +msgstr "Licenční smlouva" + +#: templates/connect.php:430 +msgid "Terms of Service" +msgstr "Podmínky služby" + +#: templates/connect.php:805 +msgctxt "as in the process of sending an email" +msgid "Sending email" +msgstr "Probíhá odesílání emailů" + +#: templates/connect.php:806 +msgctxt "as activating plugin" +msgid "Activating" +msgstr "Probíhá aktivace" + +#: templates/contact.php:78 +msgid "Contact" +msgstr "Kontakt" + +#: templates/debug.php:17 +msgctxt "as turned off" +msgid "Off" +msgstr "Vypnuto" + +#: templates/debug.php:18 +msgctxt "as turned on" +msgid "On" +msgstr "Zapnuto" + +#: templates/debug.php:20 +msgid "SDK" +msgstr "SDK" + +#: templates/debug.php:24 +msgctxt "as code debugging" +msgid "Debugging" +msgstr "Debugging" + +#: templates/debug.php54, templates/debug.php250, templates/debug.php376, +#: templates/debug.php:512 +msgid "Actions" +msgstr "Akce objednávky" + +#: templates/debug.php:64 +msgid "Are you sure you want to delete all Freemius data?" +msgstr "Opravdu chcete smazat veškerá Freemius data?" + +#: templates/debug.php:64 +msgid "Delete All Accounts" +msgstr "" + +#: templates/debug.php:71 +msgid "Clear API Cache" +msgstr "Vymazat paměť API" + +#: templates/debug.php:79 +msgid "Clear Updates Transients" +msgstr "" + +#: templates/debug.php:86 +msgid "Sync Data From Server" +msgstr "Synchronizovat data ze serveru" + +#: templates/debug.php:95 +msgid "Migrate Options to Network" +msgstr "" + +#: templates/debug.php:100 +msgid "Load DB Option" +msgstr "" + +#: templates/debug.php:103 +msgid "Set DB Option" +msgstr "" + +#: templates/debug.php:182 +msgid "Key" +msgstr "Klíč" + +#: templates/debug.php:183 +msgid "Value" +msgstr "Hodnota" + +#: templates/debug.php:199 +msgctxt "as software development kit versions" +msgid "SDK Versions" +msgstr "" + +#: templates/debug.php:204 +msgid "SDK Path" +msgstr "Cesta l SDK" + +#: templates/debug.php205, templates/debug.php:244 +msgid "Module Path" +msgstr "Cesta k modulu" + +#: templates/debug.php:206 +msgid "Is Active" +msgstr "Je aktivní" + +#: templates/debug.php234, templates/debug/plugins-themes-sync.php:35 +msgid "Plugins" +msgstr "Pluginy" + +#: templates/debug.php234, templates/debug/plugins-themes-sync.php:56 +msgid "Themes" +msgstr "Šablony" + +#: templates/debug.php239, templates/debug.php370, templates/debug.php456, +#: templates/debug/scheduled-crons.php:80 +msgid "Slug" +msgstr "Zkratka" + +#: templates/debug.php241, templates/debug.php:455 +msgid "Title" +msgstr "Nadpis" + +#: templates/debug.php:242 +msgctxt "as application program interface" +msgid "API" +msgstr "API" + +#: templates/debug.php:243 +msgid "Freemius State" +msgstr "Stav Freemius" + +#: templates/debug.php:247 +msgid "Network Blog" +msgstr "" + +#: templates/debug.php:248 +msgid "Network User" +msgstr "" + +#: templates/debug.php:285 +msgctxt "as connection was successful" +msgid "Connected" +msgstr "Připojeno" + +#: templates/debug.php:286 +msgctxt "as connection blocked" +msgid "Blocked" +msgstr "Zablokováno" + +#: templates/debug.php:322 +msgid "Simulate Trial Promotion" +msgstr "" + +#: templates/debug.php:334 +msgid "Simulate Network Upgrade" +msgstr "" + +#: templates/debug.php:359 +msgid "%s Installs" +msgstr "%s instalací" + +#: templates/debug.php:361 +msgctxt "like websites" +msgid "Sites" +msgstr "Weby" + +#: templates/debug.php367, templates/account/partials/site.php:156 +msgid "Blog ID" +msgstr "Blog ID" + +#: templates/debug.php:372 +msgid "License ID" +msgstr "" + +#: templates/debug.php436, templates/debug.php535, +#: templates/account/partials/addon.php:435 +msgctxt "verb" +msgid "Delete" +msgstr "Smazat" + +#: templates/debug.php:450 +msgid "Add Ons of module %s" +msgstr "" + +#: templates/debug.php:502 +msgid "Users" +msgstr "Uživatelé" + +#: templates/debug.php:509 +msgid "Verified" +msgstr "Ověřeno" + +#: templates/debug.php:551 +msgid "%s Licenses" +msgstr "%s licencí" + +#: templates/debug.php:556 +msgid "Plugin ID" +msgstr "ID pluginu" + +#: templates/debug.php:558 +msgid "Plan ID" +msgstr "ID členství" + +#: templates/debug.php:559 +msgid "Quota" +msgstr "" + +#: templates/debug.php:560 +msgid "Activated" +msgstr "Aktivovaný" + +#: templates/debug.php:561 +msgid "Blocking" +msgstr "Blokování" + +#: templates/debug.php:563 +msgctxt "as expiration date" +msgid "Expiration" +msgstr "Expirace" + +#: templates/debug.php:590 +msgid "Debug Log" +msgstr "Ladící log" + +#: templates/debug.php:594 +msgid "All Types" +msgstr "Všechny typy" + +#: templates/debug.php:601 +msgid "All Requests" +msgstr "" + +#: templates/debug.php606, templates/debug.php635, +#: templates/debug/logger.php:25 +msgid "File" +msgstr "Soubor" + +#: templates/debug.php607, templates/debug.php633, +#: templates/debug/logger.php:23 +msgid "Function" +msgstr "Funkce" + +#: templates/debug.php:608 +msgid "Process ID" +msgstr "" + +#: templates/debug.php:609 +msgid "Logger" +msgstr "Logger" + +#: templates/debug.php610, templates/debug.php634, +#: templates/debug/logger.php:24 +msgid "Message" +msgstr "Zpráva" + +#: templates/debug.php:612 +msgid "Filter" +msgstr "Filtr" + +#: templates/debug.php:620 +msgid "Download" +msgstr "Stáhnout" + +#: templates/debug.php631, templates/debug/logger.php:22 +msgid "Type" +msgstr "Typ" + +#: templates/debug.php636, templates/debug/logger.php:26 +msgid "Timestamp" +msgstr "Datum a čas" + +#: templates/secure-https-header.php:28 +msgid "Secure HTTPS %s page, running from an external domain" +msgstr "Zabezpečená stránka HTTPS %s spuštěná z externí domény" + +#: includes/customizer/class-fs-customizer-support-section.php55, +#: templates/plugin-info/features.php:43 +msgid "Support" +msgstr "Podpora" + +#: includes/debug/class-fs-debug-bar-panel.php48, +#: templates/debug/api-calls.php54, templates/debug/logger.php:62 +msgctxt "milliseconds" +msgid "ms" +msgstr "ms" + +#: includes/debug/debug-bar-start.php:41 +msgid "Freemius API" +msgstr "Freemius API" + +#: includes/debug/debug-bar-start.php:42 +msgid "Requests" +msgstr "Žádosti" + +#: templates/account/billing.php:22 +msgctxt "verb" +msgid "Update" +msgstr "Aktualizovat" + +#: templates/account/billing.php:33 +msgid "Billing" +msgstr "Fakturace" + +#: templates/account/billing.php38, templates/account/billing.php:38 +msgid "Business name" +msgstr "Jméno firmy" + +#: templates/account/billing.php39, templates/account/billing.php:39 +msgid "Tax / VAT ID" +msgstr "" + +#: templates/account/billing.php42, templates/account/billing.php42, +#: templates/account/billing.php43, templates/account/billing.php:43 +msgid "Address Line %d" +msgstr "" + +#: templates/account/billing.php46, templates/account/billing.php:46 +msgid "City" +msgstr "Město" + +#: templates/account/billing.php46, templates/account/billing.php:46 +msgid "Town" +msgstr "Město" + +#: templates/account/billing.php47, templates/account/billing.php:47 +msgid "ZIP / Postal Code" +msgstr "PSČ / směrovací číslo" + +#: templates/account/billing.php:302 +msgid "Country" +msgstr "Země" + +#: templates/account/billing.php:304 +msgid "Select Country" +msgstr "Vyberte zemi" + +#: templates/account/billing.php311, templates/account/billing.php:312 +msgid "State" +msgstr "Kraj" + +#: templates/account/billing.php311, templates/account/billing.php:312 +msgid "Province" +msgstr "Okres" + +#: templates/account/payments.php:29 +msgid "Payments" +msgstr "Platby" + +#: templates/account/payments.php:36 +msgid "Date" +msgstr "Datum" + +#: templates/account/payments.php:37 +msgid "Amount" +msgstr "Částka" + +#: templates/account/payments.php38, templates/account/payments.php:50 +msgid "Invoice" +msgstr "Faktura" + +#: templates/debug/api-calls.php:56 +msgid "API" +msgstr "API" + +#: templates/debug/api-calls.php:68 +msgid "Method" +msgstr "Metoda" + +#: templates/debug/api-calls.php:69 +msgid "Code" +msgstr "Kód" + +#: templates/debug/api-calls.php:70 +msgid "Length" +msgstr "Délka" + +#: templates/debug/api-calls.php:71 +msgctxt "as file/folder path" +msgid "Path" +msgstr "Složka" + +#: templates/debug/api-calls.php:73 +msgid "Body" +msgstr "Tělo" + +#: templates/debug/api-calls.php:75 +msgid "Result" +msgstr "Výsledek" + +#: templates/debug/api-calls.php:76 +msgid "Start" +msgstr "Začátek" + +#: templates/debug/api-calls.php:77 +msgid "End" +msgstr "Konec" + +#: templates/debug/logger.php:15 +msgid "Log" +msgstr "Záznam" + +#. translators: %s: time period (e.g. In "2 hours") +#: templates/debug/plugins-themes-sync.php18, +#: templates/debug/scheduled-crons.php:91 +msgid "In %s" +msgstr "Za %s" + +#. translators: %s: time period (e.g. "2 hours" ago) +#: templates/debug/plugins-themes-sync.php20, +#: templates/debug/scheduled-crons.php:93 +msgid "%s ago" +msgstr "Před %s" + +#: templates/debug/plugins-themes-sync.php21, +#: templates/debug/scheduled-crons.php:74 +msgctxt "seconds" +msgid "sec" +msgstr "s" + +#: templates/debug/plugins-themes-sync.php:23 +msgid "Plugins & Themes Sync" +msgstr "Pluginy a synchronizace šablon" + +#: templates/debug/plugins-themes-sync.php:28 +msgid "Total" +msgstr "Celkem" + +#: templates/debug/plugins-themes-sync.php29, +#: templates/debug/scheduled-crons.php:84 +msgid "Last" +msgstr "Poslední" + +#: templates/debug/scheduled-crons.php:76 +msgid "Scheduled Crons" +msgstr "Plánované crony" + +#: templates/debug/scheduled-crons.php:81 +msgid "Module" +msgstr "Modul" + +#: templates/debug/scheduled-crons.php:82 +msgid "Module Type" +msgstr "Typ modulu" + +#: templates/debug/scheduled-crons.php:83 +msgid "Cron Type" +msgstr "" + +#: templates/debug/scheduled-crons.php:85 +msgid "Next" +msgstr "Následující" + +#: templates/forms/affiliation.php:82 +msgid "Non-expiring" +msgstr "" + +#: templates/forms/affiliation.php:85 +msgid "Apply to become an affiliate" +msgstr "" + +#: templates/forms/affiliation.php:104 +msgid "" +"Your affiliate application for %s has been accepted! Log in to your " +"affiliate area at: %s." +msgstr "" + +#: templates/forms/affiliation.php:119 +msgid "" +"Thank you for applying for our affiliate program, we'll review your details " +"during the next 14 days and will get back to you with further information." +msgstr "" + +#: templates/forms/affiliation.php:122 +msgid "Your affiliation account was temporarily suspended." +msgstr "" + +#: templates/forms/affiliation.php:125 +msgid "" +"Thank you for applying for our affiliate program, unfortunately, we've " +"decided at this point to reject your application. Please try again in 30 " +"days." +msgstr "" + +#: templates/forms/affiliation.php:128 +msgid "" +"Due to violation of our affiliation terms, we decided to temporarily block " +"your affiliation account. If you have any questions, please contact support." +msgstr "" + +#: templates/forms/affiliation.php:141 +msgid "Like the %s? Become our ambassador and earn cash ;-)" +msgstr "" + +#: templates/forms/affiliation.php:142 +msgid "" +"Refer new customers to our %s and earn %s commission on each successful sale" +" you refer!" +msgstr "" + +#: templates/forms/affiliation.php:145 +msgid "Program Summary" +msgstr "" + +#: templates/forms/affiliation.php:147 +msgid "%s commission when a customer purchases a new license." +msgstr "%s provizi, když zákazník zakoupí novou licenci." + +#: templates/forms/affiliation.php:149 +msgid "Get commission for automated subscription renewals." +msgstr "" + +#: templates/forms/affiliation.php:152 +msgid "" +"%s tracking cookie after the first visit to maximize earnings potential." +msgstr "" + +#: templates/forms/affiliation.php:155 +msgid "Unlimited commissions." +msgstr "" + +#: templates/forms/affiliation.php:157 +msgid "%s minimum payout amount." +msgstr "%s minimální částka výplaty." + +#: templates/forms/affiliation.php:158 +msgid "Payouts are in USD and processed monthly via PayPal." +msgstr "" + +#: templates/forms/affiliation.php:159 +msgid "" +"As we reserve 30 days for potential refunds, we only pay commissions that " +"are older than 30 days." +msgstr "" + +#: templates/forms/affiliation.php:162 +msgid "Affiliate" +msgstr "Partner" + +#: templates/forms/affiliation.php165, templates/forms/resend-key.php:23 +msgid "Email address" +msgstr "Emailová adresa" + +#: templates/forms/affiliation.php:169 +msgid "Full name" +msgstr "Celé jméno" + +#: templates/forms/affiliation.php:173 +msgid "PayPal account email address" +msgstr "E-mailová adresa účtu PayPal" + +#: templates/forms/affiliation.php:177 +msgid "Where are you going to promote the %s?" +msgstr "" + +#: templates/forms/affiliation.php:179 +msgid "" +"Enter the domain of your website or other websites from where you plan to " +"promote the %s." +msgstr "" + +#: templates/forms/affiliation.php:181 +msgid "Add another domain" +msgstr "" + +#: templates/forms/affiliation.php:185 +msgid "Extra Domains" +msgstr "Další domény" + +#: templates/forms/affiliation.php:186 +msgid "Extra domains where you will be marketing the product from." +msgstr "" + +#: templates/forms/affiliation.php:196 +msgid "Promotion methods" +msgstr "" + +#: templates/forms/affiliation.php:199 +msgid "Social media (Facebook, Twitter, etc.)" +msgstr "" + +#: templates/forms/affiliation.php:203 +msgid "Mobile apps" +msgstr "" + +#: templates/forms/affiliation.php:207 +msgid "Website, email, and social media statistics (optional)" +msgstr "Statistika o webová stránc, emaiul a sociálních médiích" + +#: templates/forms/affiliation.php:210 +msgid "" +"Please feel free to provide any relevant website or social media statistics," +" e.g. monthly unique site visits, number of email subscribers, followers, " +"etc. (we will keep this information confidential)." +msgstr "" + +#: templates/forms/affiliation.php:214 +msgid "How will you promote us?" +msgstr "Jakým způsobem budete mé produkty propagovat?" + +#: templates/forms/affiliation.php:217 +msgid "" +"Please provide details on how you intend to promote %s (please be as " +"specific as possible)." +msgstr "" + +#: templates/forms/affiliation.php223, templates/forms/resend-key.php:22 +msgid "Cancel" +msgstr "Zrušit" + +#: templates/forms/affiliation.php:225 +msgid "Become an affiliate" +msgstr "Staňte se naším afiliátem" + +#: templates/forms/data-debug-mode.php:25 +msgid "Please enter the license key to enable the debug mode:" +msgstr "" + +#: templates/forms/data-debug-mode.php:27 +msgid "" +"To enter the debug mode, please enter the secret key of the license owner " +"(UserID = %d), which you can find in your \"My Profile\" section of your " +"User Dashboard:" +msgstr "" + +#: templates/forms/data-debug-mode.php:32 +msgid "Submit" +msgstr "" + +#: templates/forms/data-debug-mode.php:36 +msgid "User key" +msgstr "" + +#: templates/forms/license-activation.php:23 +msgid "" +"Please enter the license key that you received in the email right after the " +"purchase:" +msgstr "" + +#: templates/forms/license-activation.php:28 +msgid "Update License" +msgstr "Aktualizovat licenci" + +#: templates/forms/optout.php:30 +msgctxt "verb" +msgid "Opt Out" +msgstr "Odhlásit se" + +#: templates/forms/optout.php:31 +msgctxt "verb" +msgid "Opt In" +msgstr "Zúčastnit se" + +#: templates/forms/optout.php:33 +msgid "" +"Usage tracking is done in the name of making %s better. Making a better user" +" experience, prioritizing new features, and more good things. We'd really " +"appreciate if you'll reconsider letting us continue with the tracking." +msgstr "" + +#: templates/forms/optout.php:35 +msgid "" +"By clicking \"Opt Out\", we will no longer be sending any data from %s to " +"%s." +msgstr "" + +#: templates/forms/premium-versions-upgrade-handler.php:40 +msgid "There is a new version of %s available." +msgstr "Je k dispozici nová verze %s." + +#: templates/forms/premium-versions-upgrade-handler.php:41 +msgid " %s to access version %s security & feature updates, and support." +msgstr " %s pro přístup k verzi %s zajišťující podporu a nejen bezpečnostní aktualizace." + +#: templates/forms/premium-versions-upgrade-handler.php:54 +msgid "New Version Available" +msgstr "Nová verze k dispozici" + +#: templates/forms/premium-versions-upgrade-handler.php:75 +msgctxt "close a window" +msgid "Dismiss" +msgstr "Skrýt" + +#: templates/forms/resend-key.php:21 +msgid "Send License Key" +msgstr "Odeslat licenční klíč" + +#: templates/forms/resend-key.php:57 +msgid "" +"Enter the email address you've used for the upgrade below and we will resend" +" you the license key." +msgstr "Níže zadejte emailovou adresu, kterou jste použili pro koupi pluginu a my vám znovu odešleme váš licenční klíč." + +#: templates/forms/subscription-cancellation.php:37 +msgid "" +"Deactivating or uninstalling the %s will automatically disable the license, " +"which you'll be able to use on another site." +msgstr "" + +#: templates/forms/subscription-cancellation.php:47 +msgid "" +"In case you are NOT planning on using this %s on this site (or any other " +"site) - would you like to cancel the %s as well?" +msgstr "" + +#: templates/forms/subscription-cancellation.php:52 +msgid "license" +msgstr "licence" + +#: templates/forms/subscription-cancellation.php:57 +msgid "" +"Cancel %s - I no longer need any security & feature updates, nor support for" +" %s because I'm not planning to use the %s on this, or any other site." +msgstr "" + +#: templates/forms/subscription-cancellation.php:68 +msgid "" +"Don't cancel %s - I'm still interested in getting security & feature " +"updates, as well as be able to contact support." +msgstr "" + +#: templates/forms/subscription-cancellation.php:103 +msgid "" +"Once your license expires you will no longer be able to use the %s, unless " +"you activate it again with a valid premium license." +msgstr "" + +#: templates/forms/subscription-cancellation.php:136 +msgid "Cancel %s?" +msgstr "" + +#: templates/forms/subscription-cancellation.php:143 +msgid "Proceed" +msgstr "Pokračovat" + +#: templates/forms/subscription-cancellation.php191, +#: templates/forms/deactivation/form.php:171 +msgid "Cancel %s & Proceed" +msgstr "Zrušit %s > pokračovat" + +#: templates/forms/trial-start.php:22 +msgid "" +"You are 1-click away from starting your %1$s-day free trial of the %2$s " +"plan." +msgstr "" + +#: templates/forms/trial-start.php:28 +msgid "" +"For compliance with the WordPress.org guidelines, before we start the trial " +"we ask that you opt in with your user and non-sensitive site information, " +"allowing the %s to periodically send data to %s to check for version updates" +" and to validate your trial." +msgstr "Aby bylo vyhověno WordPress.org pokynům, před zahájením zkušebního období vás žádáme, abyste se rozhodli pro uživatele a necitlivé informace o webu, aby %s umožňoval periodicky odesílat data do %s za účelem kontroly aktualizací verzí a ověření zkušební verze." + +#: templates/js/style-premium-theme.php:39 +msgid "Premium" +msgstr "Prémium" + +#: templates/js/style-premium-theme.php:42 +msgid "Beta" +msgstr "" + +#: templates/partials/network-activation.php:27 +msgid "Activate license on all sites in the network." +msgstr "" + +#: templates/partials/network-activation.php:28 +msgid "Apply on all sites in the network." +msgstr "" + +#: templates/partials/network-activation.php:31 +msgid "Activate license on all pending sites." +msgstr "" + +#: templates/partials/network-activation.php:32 +msgid "Apply on all pending sites." +msgstr "" + +#: templates/partials/network-activation.php40, +#: templates/partials/network-activation.php:74 +msgid "allow" +msgstr "povolit" + +#: templates/partials/network-activation.php43, +#: templates/partials/network-activation.php:77 +msgid "delegate" +msgstr "delegovat" + +#: templates/partials/network-activation.php47, +#: templates/partials/network-activation.php:81 +msgid "skip" +msgstr "přeskočit" + +#: templates/plugin-info/description.php72, +#: templates/plugin-info/screenshots.php:31 +msgid "Click to view full-size screenshot %d" +msgstr "Klikněte pro zobrazení plné velikosti snímku obrazovky %d" + +#: templates/plugin-info/features.php:56 +msgid "Unlimited Updates" +msgstr "Neomezené aktualizace" + +#: templates/account/partials/activate-license-button.php:46 +msgid "Localhost" +msgstr "Localhost" + +#: templates/account/partials/activate-license-button.php:50 +msgctxt "as 5 licenses left" +msgid "%s left" +msgstr "Zbývá %s" + +#: templates/account/partials/activate-license-button.php:51 +msgid "Last license" +msgstr "Poslední licence" + +#. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the +#. subscription' +#: templates/account/partials/addon.php:29 +msgid "" +"%1$s will immediately stop all future recurring payments and your %s plan " +"license will expire in %s." +msgstr "%1$s okamžitě zastaví všechny budoucí opakující se platby a licence k plánu %s vyprší za %s." + +#: templates/account/partials/addon.php:185 +msgid "Cancelled" +msgstr "Zrušena" + +#: templates/account/partials/addon.php:195 +msgid "No expiration" +msgstr "Bez vypršení" + +#: templates/account/partials/site.php:189 +msgid "Owner Name" +msgstr "Jméno vlastníka" + +#: templates/account/partials/site.php:201 +msgid "Owner Email" +msgstr "E-mail vlastníka" + +#: templates/account/partials/site.php:213 +msgid "Owner ID" +msgstr "ID vlastníka" + +#: templates/account/partials/site.php:286 +msgid "Subscription" +msgstr "Předplatné" + +#: templates/forms/deactivation/contact.php:19 +msgid "" +"Sorry for the inconvenience and we are here to help if you give us a chance." +msgstr "Omlouváme se za způsobené nepříjemnosti, ale když se nám dáte šanci, tak se vám ze všech sil pokusíme pomoci." + +#: templates/forms/deactivation/contact.php:22 +msgid "Contact Support" +msgstr "Kontaktovat podporu" + +#: templates/forms/deactivation/form.php:64 +msgid "Anonymous feedback" +msgstr "Anonymní zpětná vazba" + +#: templates/forms/deactivation/form.php:70 +msgid "Deactivate" +msgstr "Deaktivovat" + +#: templates/forms/deactivation/form.php:72 +msgid "Activate %s" +msgstr "Aktivovat %s" + +#: templates/forms/deactivation/form.php:87 +msgid "Quick Feedback" +msgstr "Rychlá zpětná vazba" + +#: templates/forms/deactivation/form.php:91 +msgid "If you have a moment, please let us know why you are %s" +msgstr "Máte-li chvilku, dejte nám vědět, proč %s" + +#: templates/forms/deactivation/form.php:91 +msgid "deactivating" +msgstr "deaktivujete" + +#: templates/forms/deactivation/form.php:91 +msgid "switching" +msgstr "přepínám" + +#: templates/forms/deactivation/form.php:365 +msgid "Submit & %s" +msgstr "Odeslat & %s" + +#: templates/forms/deactivation/form.php:386 +msgid "Kindly tell us the reason so we can improve." +msgstr "Dejte nám prosím vědět z jakého důvodu, ať to můžeme zlepšit." + +#: templates/forms/deactivation/form.php:511 +msgid "Yes - %s" +msgstr "Ano - %s" + +#: templates/forms/deactivation/form.php:518 +msgid "Skip & %s" +msgstr "Přeskočit & %s" + +#: templates/forms/deactivation/retry-skip.php:21 +msgid "Click here to use the plugin anonymously" +msgstr "Klikněte zde pro anonymní používání tohoto pluginu" + +#: templates/forms/deactivation/retry-skip.php:23 +msgid "" +"You might have missed it, but you don't have to share any data and can just " +"%s the opt-in." +msgstr "" diff --git a/external/Freemius/languages/freemius-da_DK.mo b/external/Freemius/languages/freemius-da_DK.mo index c5248c41..cc7e4111 100755 Binary files a/external/Freemius/languages/freemius-da_DK.mo and b/external/Freemius/languages/freemius-da_DK.mo differ diff --git a/external/Freemius/languages/freemius-da_DK.po b/external/Freemius/languages/freemius-da_DK.po index 44eaa8d9..f16d11db 100755 --- a/external/Freemius/languages/freemius-da_DK.po +++ b/external/Freemius/languages/freemius-da_DK.po @@ -1,15 +1,16 @@ # Copyright (C) 2019 freemius # This file is distributed under the same license as the freemius package. # Translators: +# Joachim Jensen, 2019 # Joachim Jensen, 2016-2018 -# Lars Koudal, 2018 +# Lars Koudal, 2018-2019 msgid "" msgstr "" "Project-Id-Version: WordPress SDK\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2018-11-25 07:22+0000\n" -"Last-Translator: Vova Feldman \n" +"PO-Revision-Date: 2019-09-27 13:01+0000\n" +"Last-Translator: Lars Koudal\n" "Language: da_DK\n" "Language-Team: Danish (Denmark) (http://www.transifex.com/freemius/wordpress-sdk/language/da_DK/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,1407 +23,1479 @@ msgstr "" "X-Poedit-SearchPathExcluded-0: *.js\n" "X-Poedit-SourceCharset: UTF-8\n" -#: includes/class-freemius.php:1688 +#: includes/class-freemius.php1871, templates/account.php:769 +msgid "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned." +msgstr "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned." + +#: includes/class-freemius.php:1878 +msgid "Would you like to proceed with the update?" +msgstr "Vil du fortsætte med opdateringen?" + +#: includes/class-freemius.php:2086 msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error." msgstr "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error." -#: includes/class-freemius.php:1690 +#: includes/class-freemius.php:2088 msgid "Error" msgstr "Fejl" -#: includes/class-freemius.php:2011 +#: includes/class-freemius.php:2482 msgid "I found a better %s" msgstr "Jeg fandt et bedre %s" -#: includes/class-freemius.php:2013 +#: includes/class-freemius.php:2484 msgid "What's the %s's name?" msgstr "Hvad er navnet på %s?" -#: includes/class-freemius.php:2019 +#: includes/class-freemius.php:2490 msgid "It's a temporary %s. I'm just debugging an issue." msgstr "Det er en midlertidig %s. Jeg er i gang med fejlrettelser." -#: includes/class-freemius.php:2021 +#: includes/class-freemius.php:2492 msgid "Deactivation" msgstr "Deaktivering" -#: includes/class-freemius.php:2022 +#: includes/class-freemius.php:2493 msgid "Theme Switch" msgstr "Temaskift" -#: includes/class-freemius.php2031, templates/forms/resend-key.php:24 +#: includes/class-freemius.php2502, templates/forms/resend-key.php:24 msgid "Other" msgstr "Andet" -#: includes/class-freemius.php:2039 +#: includes/class-freemius.php:2510 msgid "I no longer need the %s" msgstr "Jeg har ikke længere brug for %s" -#: includes/class-freemius.php:2046 +#: includes/class-freemius.php:2517 msgid "I only needed the %s for a short period" msgstr "Jeg behøvede kun %s i en kort periode" -#: includes/class-freemius.php:2052 +#: includes/class-freemius.php:2523 msgid "The %s broke my site" msgstr "%s ødelagde min webside" -#: includes/class-freemius.php:2059 +#: includes/class-freemius.php:2530 msgid "The %s suddenly stopped working" msgstr "%s stoppede pludseligt med at virke" -#: includes/class-freemius.php:2069 +#: includes/class-freemius.php:2540 msgid "I can't pay for it anymore" msgstr "Jeg kan ikke længere betale for det" -#: includes/class-freemius.php:2071 +#: includes/class-freemius.php:2542 msgid "What price would you feel comfortable paying?" msgstr "Hvilken pris ville du foretrække at betale?" -#: includes/class-freemius.php:2077 +#: includes/class-freemius.php:2548 msgid "I don't like to share my information with you" msgstr "Jeg har ikke lyst til at dele mine informationer med jer" -#: includes/class-freemius.php:2098 +#: includes/class-freemius.php:2569 msgid "The %s didn't work" msgstr "%s virkede ikke" -#: includes/class-freemius.php:2108 +#: includes/class-freemius.php:2579 msgid "I couldn't understand how to make it work" msgstr "Jeg forstod ikke, hvordan jeg skulle få det til at fungere." -#: includes/class-freemius.php:2116 +#: includes/class-freemius.php:2587 msgid "The %s is great, but I need specific feature that you don't support" msgstr "%s er godt, men jeg har brug for en specifik feature, som ikke understøttes" -#: includes/class-freemius.php:2118 +#: includes/class-freemius.php:2589 msgid "What feature?" msgstr "Hvilken feature?" -#: includes/class-freemius.php:2122 +#: includes/class-freemius.php:2593 msgid "The %s is not working" msgstr "%s virker ikke" -#: includes/class-freemius.php:2124 +#: includes/class-freemius.php:2595 msgid "Kindly share what didn't work so we can fix it for future users..." -msgstr "Kindly share what didn't work so we can fix it for future users..." +msgstr "Vær venlig at dele hvad der ikke virkede så vi kan rette det for kommende brugere...." -#: includes/class-freemius.php:2128 +#: includes/class-freemius.php:2599 msgid "It's not what I was looking for" msgstr "Det er ikke, hvad jeg søgte" -#: includes/class-freemius.php:2130 +#: includes/class-freemius.php:2601 msgid "What you've been looking for?" -msgstr "Hvad har du ledt efter?" +msgstr "Hvad ledte du efter?" -#: includes/class-freemius.php:2134 +#: includes/class-freemius.php:2605 msgid "The %s didn't work as expected" msgstr "%s virkede ikke som forventet" -#: includes/class-freemius.php:2136 +#: includes/class-freemius.php:2607 msgid "What did you expect?" msgstr "Hvad forventede du?" -#: includes/class-freemius.php2942, templates/debug.php:20 +#: includes/class-freemius.php3462, templates/debug.php:20 msgid "Freemius Debug" msgstr "Freemius Debug" -#: includes/class-freemius.php:3670 +#: includes/class-freemius.php:4214 msgid "I don't know what is cURL or how to install it, help me!" msgstr "Jeg ved ikke hvad cURL er, eller hvordan jeg installerer det. Hjælp mig!" -#: includes/class-freemius.php:3672 +#: includes/class-freemius.php:4216 msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update." msgstr "Vi vil kontakte din udbyder og løse problemet. Når vi har opdatinger i sagen, vil vi følge op med en email til dig på %s." -#: includes/class-freemius.php:3679 +#: includes/class-freemius.php:4223 msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again." msgstr "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again." -#: includes/class-freemius.php:3784 +#: includes/class-freemius.php:4328 msgid "Yes - do your thing" msgstr "Ja - fortsæt bare" -#: includes/class-freemius.php:3789 +#: includes/class-freemius.php:4333 msgid "No - just deactivate" msgstr "Nej - bare deaktiver" -#: includes/class-freemius.php3834, includes/class-freemius.php4343, -#: includes/class-freemius.php5442, includes/class-freemius.php11545, -#: includes/class-freemius.php14916, includes/class-freemius.php14968, -#: includes/class-freemius.php15030, includes/class-freemius.php17263, -#: includes/class-freemius.php17273, includes/class-freemius.php17882, -#: includes/class-freemius.php18742, includes/class-freemius.php18857, -#: includes/class-freemius.php19001, templates/add-ons.php:43 +#: includes/class-freemius.php4378, includes/class-freemius.php4872, +#: includes/class-freemius.php6023, includes/class-freemius.php12825, +#: includes/class-freemius.php16225, includes/class-freemius.php16313, +#: includes/class-freemius.php16479, includes/class-freemius.php18964, +#: includes/class-freemius.php18974, includes/class-freemius.php19623, +#: includes/class-freemius.php20496, includes/class-freemius.php20611, +#: includes/class-freemius.php20755, templates/add-ons.php:54 msgctxt "exclamation" msgid "Oops" msgstr "Ups" -#: includes/class-freemius.php:3903 +#: includes/class-freemius.php:4447 msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience." msgstr "Tak fordi du giver os en chance for at fixe det! En besked er lige blevet sendt til vores tekniske personale. Vi vil vende tilbage, så snart der er nyt om %s. Vi sætter pris på din tålmodighed." -#: includes/class-freemius.php:4340 +#: includes/class-freemius.php:4869 msgctxt "addonX cannot run without pluginY" msgid "%s cannot run without %s." msgstr "%s virker ikke uden %s." -#: includes/class-freemius.php:4341 +#: includes/class-freemius.php:4870 msgctxt "addonX cannot run..." msgid "%s cannot run without the plugin." msgstr "%s virker ikke uden pluginnet." -#: includes/class-freemius.php4487, includes/class-freemius.php4512, -#: includes/class-freemius.php:17953 +#: includes/class-freemius.php5043, includes/class-freemius.php5068, +#: includes/class-freemius.php:19694 msgid "Unexpected API error. Please contact the %s's author with the following error." -msgstr "Unexpected API error. Please contact the %s's author with the following error." +msgstr "Uventet API-fejl. Kontakt %s's forfatter med følgende fejl." -#: includes/class-freemius.php:5130 +#: includes/class-freemius.php:5711 msgid "Premium %s version was successfully activated." msgstr "Premium-versionen af %s blev aktiveret." -#: includes/class-freemius.php5142, includes/class-freemius.php:7004 +#: includes/class-freemius.php5723, includes/class-freemius.php:7590 msgctxt "" msgid "W00t" msgstr "W00t" -#: includes/class-freemius.php:5157 +#: includes/class-freemius.php:5738 msgid "You have a %s license." msgstr "Du har en %s licens." -#: includes/class-freemius.php5161, includes/class-freemius.php14337, -#: includes/class-freemius.php14348, includes/class-freemius.php17177, -#: includes/class-freemius.php17491, includes/class-freemius.php17557, -#: includes/class-freemius.php:17707 +#: includes/class-freemius.php5742, includes/class-freemius.php15642, +#: includes/class-freemius.php15653, includes/class-freemius.php18875, +#: includes/class-freemius.php19215, includes/class-freemius.php19284, +#: includes/class-freemius.php:19448 msgctxt "interjection expressing joy or exuberance" msgid "Yee-haw" msgstr "Yee-haw" -#: includes/class-freemius.php:5425 +#: includes/class-freemius.php:6006 msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license." msgstr "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license." -#: includes/class-freemius.php:5429 +#: includes/class-freemius.php:6010 msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin." msgstr "%s is a premium only add-on. You have to purchase a license first before activating the plugin." -#: includes/class-freemius.php5438, templates/add-ons.php103, -#: templates/account/partials/addon.php:288 +#: includes/class-freemius.php6019, templates/add-ons.php130, +#: templates/account/partials/addon.php:344 msgid "More information about %s" msgstr "Mere information om %s" -#: includes/class-freemius.php:5439 +#: includes/class-freemius.php:6020 msgid "Purchase License" msgstr "Køb licens" -#: includes/class-freemius.php6372, templates/connect.php:163 +#: includes/class-freemius.php6955, templates/connect.php:163 msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s." msgstr "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s." -#: includes/class-freemius.php:6376 +#: includes/class-freemius.php:6959 msgid "start the trial" msgstr "start prøveperioden" -#: includes/class-freemius.php6377, templates/connect.php:167 +#: includes/class-freemius.php6960, templates/connect.php:167 msgid "complete the install" msgstr "færdiggør installeringen" -#: includes/class-freemius.php:6490 +#: includes/class-freemius.php:7072 msgid "You are just one step away - %s" msgstr "Du mangler kun ét skridt - %s" -#: includes/class-freemius.php:6493 +#: includes/class-freemius.php:7075 msgctxt "%s - plugin name. As complete \"PluginX\" activation now" msgid "Complete \"%s\" Activation Now" msgstr "Færdiggør aktivering af \"%s\" nu" -#: includes/class-freemius.php:6571 +#: includes/class-freemius.php:7153 msgid "We made a few tweaks to the %s, %s" msgstr "Vi har foretaget nogle rettelser til %s, %s" -#: includes/class-freemius.php:6575 +#: includes/class-freemius.php:7157 msgid "Opt in to make \"%s\" better!" -msgstr "Opt in to make \"%s\" better!" +msgstr "Accepter for at gøre \"%s\" bedre!" -#: includes/class-freemius.php:7003 +#: includes/class-freemius.php:7589 msgid "The upgrade of %s was successfully completed." msgstr "Opgraderingen af %s blev fuldendt." -#: includes/class-freemius.php8925, includes/class-fs-plugin-updater.php886, -#: includes/class-fs-plugin-updater.php1081, -#: includes/class-fs-plugin-updater.php1088, +#: includes/class-freemius.php9793, includes/class-fs-plugin-updater.php1038, +#: includes/class-fs-plugin-updater.php1233, +#: includes/class-fs-plugin-updater.php1240, #: templates/auto-installation.php:32 msgid "Add-On" msgstr "Tilføjelse" -#: includes/class-freemius.php8927, templates/debug.php359, -#: templates/debug.php:520 +#: includes/class-freemius.php9795, templates/account.php313, +#: templates/account.php321, templates/debug.php360, templates/debug.php:517 msgid "Plugin" msgstr "Plugin" -#: includes/class-freemius.php8928, templates/debug.php359, -#: templates/debug.php520, templates/forms/deactivation/form.php:67 +#: includes/class-freemius.php9796, templates/account.php314, +#: templates/account.php322, templates/debug.php360, templates/debug.php517, +#: templates/forms/deactivation/form.php:71 msgid "Theme" msgstr "Tema" -#: includes/class-freemius.php:11412 +#: includes/class-freemius.php:12270 +msgid "An unknown error has occurred while trying to set the user's beta mode." +msgstr "An unknown error has occurred while trying to set the user's beta mode." + +#: includes/class-freemius.php:12692 msgid "Invalid site details collection." msgstr "Invalid site details collection." -#: includes/class-freemius.php:11532 +#: includes/class-freemius.php:12812 msgid "We couldn't find your email address in the system, are you sure it's the right address?" msgstr "Vi kunne ikke finde din e-mailadresse i systemet, er du sikker på, det er den rigtige adresse?" -#: includes/class-freemius.php:11534 +#: includes/class-freemius.php:12814 msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?" msgstr "Vi kan ikke finde nogen aktive licenser knyttet til den e-mailadresse, er du sikker på, det er den rigtige adresse?" -#: includes/class-freemius.php:11808 +#: includes/class-freemius.php:13088 msgid "Account is pending activation." msgstr "Konto afventer aktivering." -#: includes/class-freemius.php11920, +#: includes/class-freemius.php13200, #: templates/forms/premium-versions-upgrade-handler.php:47 msgid "Buy a license now" -msgstr "Buy a license now" +msgstr "Køb en licens nu" -#: includes/class-freemius.php11932, +#: includes/class-freemius.php13212, #: templates/forms/premium-versions-upgrade-handler.php:46 msgid "Renew your license now" -msgstr "Renew your license now" +msgstr "Forny din licens nu" -#: includes/class-freemius.php:11936 +#: includes/class-freemius.php:13216 msgid "%s to access version %s security & feature updates, and support." msgstr "%s to access version %s security & feature updates, and support." -#: includes/class-freemius.php:14319 +#: includes/class-freemius.php:15624 msgid "%s activation was successfully completed." msgstr "Aktivering af %s blev gennemført." -#: includes/class-freemius.php:14333 +#: includes/class-freemius.php:15638 msgid "Your account was successfully activated with the %s plan." msgstr "Din konto blev aktiveret med planen %s." -#: includes/class-freemius.php14344, includes/class-freemius.php:17553 +#: includes/class-freemius.php15649, includes/class-freemius.php:19280 msgid "Your trial has been successfully started." msgstr "Din prøveperiode er begyndt." -#: includes/class-freemius.php14914, includes/class-freemius.php14966, -#: includes/class-freemius.php:15028 +#: includes/class-freemius.php16223, includes/class-freemius.php16311, +#: includes/class-freemius.php:16477 msgid "Couldn't activate %s." msgstr "Kunne ikke aktivere %s." -#: includes/class-freemius.php14915, includes/class-freemius.php14967, -#: includes/class-freemius.php:15029 +#: includes/class-freemius.php16224, includes/class-freemius.php16312, +#: includes/class-freemius.php:16478 msgid "Please contact us with the following message:" msgstr "Kontakt os venligst med følgende besked:" -#: includes/class-freemius.php15378, includes/class-freemius.php:19839 +#: includes/class-freemius.php:16308 +msgid "An unknown error has occurred." +msgstr "Der skete en ukendt fejl." + +#: includes/class-freemius.php16835, includes/class-freemius.php:21654 msgid "Upgrade" msgstr "Opgrader" -#: includes/class-freemius.php:15384 +#: includes/class-freemius.php:16841 msgid "Start Trial" msgstr "Start prøveperiode" -#: includes/class-freemius.php:15386 +#: includes/class-freemius.php:16843 msgid "Pricing" msgstr "Priser" -#: includes/class-freemius.php15448, includes/class-freemius.php:15450 +#: includes/class-freemius.php16923, includes/class-freemius.php:16925 msgid "Affiliation" msgstr "Affiliation" -#: includes/class-freemius.php15478, includes/class-freemius.php15480, -#: templates/account.php150, templates/debug.php:324 +#: includes/class-freemius.php16953, includes/class-freemius.php16955, +#: templates/account.php177, templates/debug.php:326 msgid "Account" msgstr "Konto" -#: includes/class-freemius.php15493, includes/class-freemius.php15495, +#: includes/class-freemius.php16968, includes/class-freemius.php16970, #: includes/customizer/class-fs-customizer-support-section.php:60 msgid "Contact Us" msgstr "Kontakt os" -#: includes/class-freemius.php15505, includes/class-freemius.php15507, -#: includes/class-freemius.php19849, templates/account.php100, -#: templates/account/partials/addon.php:41 +#: includes/class-freemius.php16980, includes/class-freemius.php16982, +#: includes/class-freemius.php21668, templates/account.php105, +#: templates/account/partials/addon.php:45 msgid "Add-Ons" msgstr "Tilføjelser" -#: includes/class-freemius.php:15541 +#: includes/class-freemius.php:17016 msgctxt "ASCII arrow left icon" msgid "←" msgstr "←" -#: includes/class-freemius.php:15541 +#: includes/class-freemius.php:17016 msgctxt "ASCII arrow right icon" msgid "➤" msgstr "➤" -#: includes/class-freemius.php15543, templates/pricing.php:97 +#: includes/class-freemius.php17018, templates/pricing.php:103 msgctxt "noun" msgid "Pricing" msgstr "Priser" -#: includes/class-freemius.php15756, +#: includes/class-freemius.php17231, #: includes/customizer/class-fs-customizer-support-section.php:67 msgid "Support Forum" msgstr "Supportforum" -#: includes/class-freemius.php:16542 +#: includes/class-freemius.php:18201 msgid "Your email has been successfully verified - you are AWESOME!" msgstr "Din e-mailadresse er blevet verificeret - du er FOR SEJ!" -#: includes/class-freemius.php:16543 +#: includes/class-freemius.php:18202 msgctxt "a positive response" msgid "Right on" msgstr "Sådan" -#: includes/class-freemius.php:17168 +#: includes/class-freemius.php:18866 msgid "Your %s Add-on plan was successfully upgraded." msgstr "Your %s Add-on plan was successfully upgraded." -#: includes/class-freemius.php:17170 +#: includes/class-freemius.php:18868 msgid "%s Add-on was successfully purchased." msgstr "Betalingen for tilføjelsen %s blev gennemført." -#: includes/class-freemius.php:17173 +#: includes/class-freemius.php:18871 msgid "Download the latest version" msgstr "Download den seneste version" -#: includes/class-freemius.php:17259 -msgctxt "%1s - plugin title, %2s - API domain" -msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s" -msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s" +#: includes/class-freemius.php:18957 +msgid "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s" +msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s" -#: includes/class-freemius.php17262, includes/class-freemius.php17678, -#: includes/class-freemius.php:17755 +#: includes/class-freemius.php18963, includes/class-freemius.php18973, +#: includes/class-freemius.php19407, includes/class-freemius.php:19496 msgid "Error received from the server:" msgstr "Fejl modtager fra serveren:" -#: includes/class-freemius.php:17272 +#: includes/class-freemius.php:18973 msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again." msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again." -#: includes/class-freemius.php17454, includes/class-freemius.php17683, -#: includes/class-freemius.php17726, includes/class-freemius.php:17829 +#: includes/class-freemius.php19177, includes/class-freemius.php19412, +#: includes/class-freemius.php19467, includes/class-freemius.php:19570 msgctxt "" msgid "Hmm" msgstr "Hmm" -#: includes/class-freemius.php:17467 +#: includes/class-freemius.php:19190 msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry." msgstr "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry." -#: includes/class-freemius.php17468, templates/account.php102, -#: templates/add-ons.php134, templates/account/partials/addon.php:43 +#: includes/class-freemius.php19191, templates/account.php107, +#: templates/add-ons.php191, templates/account/partials/addon.php:47 msgctxt "trial period" msgid "Trial" msgstr "Prøveperiode" -#: includes/class-freemius.php:17473 +#: includes/class-freemius.php:19196 msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s." msgstr "Jeg har opgraderet min konto, men når jeg forsøger at synkronisere licensen, forbliver planen %s." -#: includes/class-freemius.php17477, includes/class-freemius.php:17535 +#: includes/class-freemius.php19200, includes/class-freemius.php:19259 msgid "Please contact us here" msgstr "Kontakt os her" -#: includes/class-freemius.php:17487 +#: includes/class-freemius.php:19211 +msgid "Your plan was successfully activated." +msgstr "Din plan er blevet aktiveret." + +#: includes/class-freemius.php:19212 msgid "Your plan was successfully upgraded." msgstr "Din plan er blevet opgraderet." -#: includes/class-freemius.php:17505 +#: includes/class-freemius.php:19229 msgid "Your plan was successfully changed to %s." msgstr "Din plan er blevet ændret til %s." -#: includes/class-freemius.php:17521 +#: includes/class-freemius.php:19245 msgid "Your license has expired. You can still continue using the free %s forever." msgstr "Din licens er udløbet. Du kan stadig fortsætte med at benytte den gratis udgave af %s." -#: includes/class-freemius.php:17523 +#: includes/class-freemius.php:19247 msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." msgstr "Din licens er udløbet. %1$sOpgrader nu%2$s for at fortsætte med at benytte %3$s uden forstyrrelser." -#: includes/class-freemius.php:17531 +#: includes/class-freemius.php:19255 msgid "Your license has been cancelled. If you think it's a mistake, please contact support." msgstr "Din licens er blevet annulleret. Hvis du mener, dette er en fejl, så kontakt venligst support." -#: includes/class-freemius.php:17544 +#: includes/class-freemius.php:19268 msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support." msgstr "Din licens er udløbet. Du kan stadig benytte alle funktionerne i %s, men du bliver nødt til at fornye din licens for at få opdateringer og support." -#: includes/class-freemius.php:17567 +#: includes/class-freemius.php:19294 msgid "Your free trial has expired. You can still continue using all our free features." msgstr "Din gratis prøveperiode er udløbet. Du kan stadig benytte alle de gratis features." -#: includes/class-freemius.php:17569 +#: includes/class-freemius.php:19296 msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." -#: includes/class-freemius.php:17674 +#: includes/class-freemius.php:19403 msgid "It looks like the license could not be activated." msgstr "Det ser ud til, at licensen ikke kunne aktiveres." -#: includes/class-freemius.php:17704 +#: includes/class-freemius.php:19445 msgid "Your license was successfully activated." msgstr "Din licens er blevet aktiveret." -#: includes/class-freemius.php:17730 +#: includes/class-freemius.php:19471 msgid "It looks like your site currently doesn't have an active license." msgstr "Det ser ud til, at dit websted endnu ikke har en aktiv licens." -#: includes/class-freemius.php:17754 +#: includes/class-freemius.php:19495 msgid "It looks like the license deactivation failed." msgstr "Det ser ud til, at licens-deaktiveringen mislykkedes." -#: includes/class-freemius.php:17782 +#: includes/class-freemius.php:19523 msgid "Your license was successfully deactivated, you are back to the %s plan." msgstr "Din licens blev deaktiveret, du er tilbage på planen %s." -#: includes/class-freemius.php:17783 +#: includes/class-freemius.php:19524 msgid "O.K" msgstr "O.K" -#: includes/class-freemius.php:17836 +#: includes/class-freemius.php:19577 msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes." msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes." -#: includes/class-freemius.php:17845 +#: includes/class-freemius.php:19586 msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s." msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s." -#: includes/class-freemius.php:17887 +#: includes/class-freemius.php:19628 msgid "You are already running the %s in a trial mode." msgstr "Du benytter allerede %s under en prøveperiode." -#: includes/class-freemius.php:17898 +#: includes/class-freemius.php:19639 msgid "You already utilized a trial before." msgstr "Du har allerede brugt din prøveperiode." -#: includes/class-freemius.php:17912 +#: includes/class-freemius.php:19653 msgid "Plan %s do not exist, therefore, can't start a trial." msgstr "Plan %s eksisterer ikke og kan derfor ikke starte prøveperiode." -#: includes/class-freemius.php:17923 +#: includes/class-freemius.php:19664 msgid "Plan %s does not support a trial period." msgstr "Plan %s understøtter ikke en prøveperiode." -#: includes/class-freemius.php:17934 +#: includes/class-freemius.php:19675 msgid "None of the %s's plans supports a trial period." -msgstr "None of the %s's plans supports a trial period." +msgstr "Ingen af %s's planer understøtter prøveperiode." -#: includes/class-freemius.php:17984 +#: includes/class-freemius.php:19725 msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)" msgstr "Det lader ikke til du er i en prøveperiode længere, så der er ikke noget at annullere :-)" -#: includes/class-freemius.php:18020 +#: includes/class-freemius.php:19761 msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes." msgstr "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes." -#: includes/class-freemius.php:18039 +#: includes/class-freemius.php:19780 msgid "Your %s free trial was successfully cancelled." msgstr "Din gratis prøveperiode for %s er blevet annulleret." -#: includes/class-freemius.php:18346 +#: includes/class-freemius.php:20096 msgid "Version %s was released." msgstr "Version %s er blevet udgivet." -#: includes/class-freemius.php:18346 +#: includes/class-freemius.php:20096 msgid "Please download %s." msgstr "Download venligst %s." -#: includes/class-freemius.php:18353 +#: includes/class-freemius.php:20103 msgid "the latest %s version here" msgstr "den seneste version af %s her" -#: includes/class-freemius.php:18358 +#: includes/class-freemius.php:20108 msgid "New" msgstr "Ny" -#: includes/class-freemius.php:18363 +#: includes/class-freemius.php:20113 msgid "Seems like you got the latest release." msgstr "Det ser ud til, at du har den seneste udgivelse." -#: includes/class-freemius.php:18364 +#: includes/class-freemius.php:20114 msgid "You are all good!" msgstr "Det var det!" -#: includes/class-freemius.php:18632 +#: includes/class-freemius.php:20384 msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box." msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box." -#: includes/class-freemius.php:18769 +#: includes/class-freemius.php:20523 msgid "Site successfully opted in." msgstr "Websted er tilmeldt." -#: includes/class-freemius.php18770, includes/class-freemius.php:19581 +#: includes/class-freemius.php20524, includes/class-freemius.php:21364 msgid "Awesome" msgstr "Sejt" -#: includes/class-freemius.php18786, templates/forms/optout.php:32 +#: includes/class-freemius.php20540, templates/forms/optout.php:32 msgid "We appreciate your help in making the %s better by letting us track some usage data." msgstr "Vi sætter pris på din hjælp med at forbedre %s ved at lade os indsamle brugsdata." -#: includes/class-freemius.php:18787 +#: includes/class-freemius.php:20541 msgid "Thank you!" msgstr "Mange tak!" -#: includes/class-freemius.php:18794 +#: includes/class-freemius.php:20548 msgid "We will no longer be sending any usage data of %s on %s to %s." msgstr "Vi vil ikke længere indsende brugsdata af %s på %s til %s." -#: includes/class-freemius.php:18923 +#: includes/class-freemius.php:20677 msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder." msgstr "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder." -#: includes/class-freemius.php:18929 +#: includes/class-freemius.php:20683 msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval." -msgstr "Thanks for confirming the ownership change. An email was just sent to %s for final approval." +msgstr "Tak fordi du bekræftede skift af ejerskab. En e-mail er blevet sendt til %s for sidste godkendelse." -#: includes/class-freemius.php:18934 +#: includes/class-freemius.php:20688 msgid "%s is the new owner of the account." msgstr "%s er den nye ejer af kontoen." -#: includes/class-freemius.php:18936 +#: includes/class-freemius.php:20690 msgctxt "as congratulations" msgid "Congrats" msgstr "Tillykke" -#: includes/class-freemius.php:18956 +#: includes/class-freemius.php:20710 msgid "Sorry, we could not complete the email update. Another user with the same email is already registered." -msgstr "Sorry, we could not complete the email update. Another user with the same email is already registered." +msgstr "Beklager, vi kunne ikke opdatere e-mailen. Der er allerede registreret en anden bruger med samme e-mail." -#: includes/class-freemius.php:18957 +#: includes/class-freemius.php:20711 msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button." msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button." -#: includes/class-freemius.php:18964 +#: includes/class-freemius.php:20718 msgid "Change Ownership" msgstr "Skift ejerskab" -#: includes/class-freemius.php:18972 +#: includes/class-freemius.php:20726 msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments." msgstr "Your email was successfully updated. You should receive an email with confirmation instructions in few moments." -#: includes/class-freemius.php:18984 +#: includes/class-freemius.php:20738 msgid "Please provide your full name." msgstr "Indtast venligst dit fulde navn." -#: includes/class-freemius.php:18989 +#: includes/class-freemius.php:20743 msgid "Your name was successfully updated." msgstr "Dit navn er blevet opdateret." -#: includes/class-freemius.php:19050 +#: includes/class-freemius.php:20804 msgid "You have successfully updated your %s." msgstr "Opdatering af %s blev gennemført." -#: includes/class-freemius.php:19190 +#: includes/class-freemius.php:20944 msgid "Just letting you know that the add-ons information of %s is being pulled from an external server." msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server." -#: includes/class-freemius.php:19191 +#: includes/class-freemius.php:20945 msgctxt "advance notice of something that will need attention." msgid "Heads up" msgstr "Se her" -#: includes/class-freemius.php:19621 +#: includes/class-freemius.php:21404 msgctxt "exclamation" msgid "Hey" msgstr "Hey" -#: includes/class-freemius.php:19621 +#: includes/class-freemius.php:21404 msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial." -msgstr "Hvad syntes du om %s indtil videre? Test alle %s premium funktioner med en %d-dags gratis prøveperiode." +msgstr "Hvad synes du om %s indtil videre? Test alle vores premium funktioner i %s med en %d-dags gratis prøveperiode." -#: includes/class-freemius.php:19629 +#: includes/class-freemius.php:21412 msgid "No commitment for %s days - cancel anytime!" msgstr "Ingen bindinger i %s dage - annuller når som helst!" -#: includes/class-freemius.php:19630 +#: includes/class-freemius.php:21413 msgid "No credit card required" msgstr "Betalingskort ikke påkrævet" -#: includes/class-freemius.php19637, templates/forms/trial-start.php:53 +#: includes/class-freemius.php21420, templates/forms/trial-start.php:53 msgctxt "call to action" msgid "Start free trial" msgstr "Start gratis prøveperiode" -#: includes/class-freemius.php:19714 +#: includes/class-freemius.php:21497 msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!" msgstr "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!" -#: includes/class-freemius.php:19723 +#: includes/class-freemius.php:21506 msgid "Learn more" msgstr "Læs mere" -#: includes/class-freemius.php19873, templates/account.php406, -#: templates/account.php509, templates/connect.php171, -#: templates/connect.php421, templates/forms/license-activation.php24, -#: templates/account/partials/addon.php:235 +#: includes/class-freemius.php21692, templates/account.php474, +#: templates/account.php595, templates/connect.php171, +#: templates/connect.php421, templates/forms/license-activation.php27, +#: templates/account/partials/addon.php:287 msgid "Activate License" msgstr "Aktiver licens" -#: includes/class-freemius.php19874, templates/account.php469, -#: templates/account.php508, templates/account/partials/site.php:256 +#: includes/class-freemius.php21693, templates/account.php543, +#: templates/account.php594, templates/account/partials/site.php:256 msgid "Change License" msgstr "Skift licens" -#: includes/class-freemius.php19956, templates/account/partials/site.php:161 +#: includes/class-freemius.php21789, templates/account/partials/site.php:161 msgid "Opt Out" msgstr "Frameld" -#: includes/class-freemius.php19958, includes/class-freemius.php19963, +#: includes/class-freemius.php21791, includes/class-freemius.php21797, #: templates/account/partials/site.php43, #: templates/account/partials/site.php:161 msgid "Opt In" msgstr "Tilmeld" -#: includes/class-freemius.php:20187 -msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s" -msgstr " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s" +#: includes/class-freemius.php:22025 +msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s" +msgstr " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s" -#: includes/class-freemius.php:20195 +#: includes/class-freemius.php:22033 msgid "Activate %s features" -msgstr "Activate %s features" +msgstr "Aktiver funktioner i %s" -#: includes/class-freemius.php:20208 +#: includes/class-freemius.php:22046 msgid "Please follow these steps to complete the upgrade" msgstr "Følg venligst disse trin for at færdiggøre opgraderingen" -#: includes/class-freemius.php:20212 +#: includes/class-freemius.php:22050 msgid "Download the latest %s version" msgstr "Download den seneste version af %s" -#: includes/class-freemius.php:20216 +#: includes/class-freemius.php:22054 msgid "Upload and activate the downloaded version" msgstr "Upload og aktiver den downloadede version" -#: includes/class-freemius.php:20218 +#: includes/class-freemius.php:22056 msgid "How to upload and activate?" msgstr "Upload og aktivering, hvordan?" -#: includes/class-freemius.php:20352 +#: includes/class-freemius.php:22190 msgid "%sClick here%s to choose the sites where you'd like to activate the license on." msgstr "%sClick here%s to choose the sites where you'd like to activate the license on." -#: includes/class-freemius.php:20513 +#: includes/class-freemius.php:22351 msgid "Auto installation only works for opted-in users." msgstr "Auto-installation fungerer kun for tilmeldte brugere." -#: includes/class-freemius.php20523, includes/class-freemius.php20556, -#: includes/class-fs-plugin-updater.php1060, -#: includes/class-fs-plugin-updater.php:1074 +#: includes/class-freemius.php22361, includes/class-freemius.php22394, +#: includes/class-fs-plugin-updater.php1212, +#: includes/class-fs-plugin-updater.php:1226 msgid "Invalid module ID." msgstr "Ugyldigt modul-ID." -#: includes/class-freemius.php20532, includes/class-fs-plugin-updater.php:1096 +#: includes/class-freemius.php22370, includes/class-fs-plugin-updater.php:1248 msgid "Premium version already active." msgstr "Premium version allerede aktiv." -#: includes/class-freemius.php:20539 +#: includes/class-freemius.php:22377 msgid "You do not have a valid license to access the premium version." msgstr "Du har ikke en gyldig licens til at benytte premium-versionen." -#: includes/class-freemius.php:20546 +#: includes/class-freemius.php:22384 msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version." msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version." -#: includes/class-freemius.php20564, includes/class-fs-plugin-updater.php:1095 +#: includes/class-freemius.php22402, includes/class-fs-plugin-updater.php:1247 msgid "Premium add-on version already installed." msgstr "Premium tilføjelse er allerede installeret." -#: includes/class-freemius.php:20909 +#: includes/class-freemius.php:22752 msgid "View paid features" msgstr "Vis betalte features" -#: includes/class-freemius.php:21229 +#: includes/class-freemius.php:23074 msgid "Thank you so much for using %s and its add-ons!" -msgstr "Thank you so much for using %s and its add-ons!" +msgstr "Mange tak for, at du benytter %s og tilhørende add-ons!" -#: includes/class-freemius.php:21230 +#: includes/class-freemius.php:23075 msgid "Thank you so much for using %s!" msgstr "Tak fordi du benytter %s!" -#: includes/class-freemius.php:21236 +#: includes/class-freemius.php:23081 msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s." msgstr "Du er allerede tilmeldt vores brugssporing, hvilket hjælper os med at forbedre %s." -#: includes/class-freemius.php:21240 +#: includes/class-freemius.php:23085 msgid "Thank you so much for using our products!" msgstr "Mange tak for at benytte vores produkter!" -#: includes/class-freemius.php:21241 +#: includes/class-freemius.php:23086 msgid "You've already opted-in to our usage-tracking, which helps us keep improving them." msgstr "Du er allerede tilmeldt vores brugssporing, hvilket hjælper os med at forbedre dem." -#: includes/class-freemius.php:21260 +#: includes/class-freemius.php:23105 msgid "%s and its add-ons" msgstr "%s og tilføjelser" -#: includes/class-freemius.php:21269 +#: includes/class-freemius.php:23114 msgid "Products" msgstr "Produkter" -#: includes/class-freemius.php21276, templates/connect.php:272 +#: includes/class-freemius.php23121, templates/connect.php:272 msgid "Yes" msgstr "Ja" -#: includes/class-freemius.php21277, templates/connect.php:273 +#: includes/class-freemius.php23122, templates/connect.php:273 msgid "send me security & feature updates, educational content and offers." msgstr "send mig sikkerheds- og feature-opdateringer, informativt indhold og tilbud." -#: includes/class-freemius.php21278, templates/connect.php:278 +#: includes/class-freemius.php23123, templates/connect.php:278 msgid "No" msgstr "Nej" -#: includes/class-freemius.php21280, templates/connect.php:280 +#: includes/class-freemius.php23125, templates/connect.php:280 msgid "do %sNOT%s send me security & feature updates, educational content and offers." msgstr "send %sIKKE%s sikkerheds- og feature-opdateringer, informativt indhold og tilbud." -#: includes/class-freemius.php:21290 -msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂" -msgstr "Grundet krav i den nye %sEU General Data Protection Regulation (GDPR)%s, er det nødvendigt at du igen giver dit udtrykkelige samtykke og bekræfter, at du er ombord 🙂" +#: includes/class-freemius.php:23135 +msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard :-)" +msgstr "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard :-)" -#: includes/class-freemius.php21292, templates/connect.php:287 +#: includes/class-freemius.php23137, templates/connect.php:287 msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:" msgstr "Lad os vide, om vi har lov til at kontakte dig med sikkerheds- og feature-opdateringer, informativt indhold og lejlighedsvise tilbud:" -#: includes/class-freemius.php:21574 +#: includes/class-freemius.php:23419 msgid "License key is empty." msgstr "Licensnøglen er tom." -#: includes/class-fs-plugin-updater.php184, +#: includes/class-fs-plugin-updater.php206, #: templates/forms/premium-versions-upgrade-handler.php:57 msgid "Renew license" msgstr "Forny licens" -#: includes/class-fs-plugin-updater.php189, +#: includes/class-fs-plugin-updater.php211, #: templates/forms/premium-versions-upgrade-handler.php:58 msgid "Buy license" -msgstr "Buy license" +msgstr "Køb licens" -#: includes/class-fs-plugin-updater.php:278 +#: includes/class-fs-plugin-updater.php321, +#: includes/class-fs-plugin-updater.php:354 msgid "There is a %s of %s available." msgstr "There is a %s of %s available." -#: includes/class-fs-plugin-updater.php:282 +#: includes/class-fs-plugin-updater.php323, +#: includes/class-fs-plugin-updater.php:359 +msgid "new Beta version" +msgstr "ny Beta-version" + +#: includes/class-fs-plugin-updater.php324, +#: includes/class-fs-plugin-updater.php:360 msgid "new version" -msgstr "new version" +msgstr "ny version" -#: includes/class-fs-plugin-updater.php:305 +#: includes/class-fs-plugin-updater.php:383 msgid "Important Upgrade Notice:" -msgstr "Important Upgrade Notice:" +msgstr "Vigtig meddelelse til opgradering:" -#: includes/class-fs-plugin-updater.php:1125 +#: includes/class-fs-plugin-updater.php:1277 msgid "Installing plugin: %s" msgstr "Installerer plugin: %s" -#: includes/class-fs-plugin-updater.php:1166 +#: includes/class-fs-plugin-updater.php:1318 msgid "Unable to connect to the filesystem. Please confirm your credentials." msgstr "Unable to connect to the filesystem. Please confirm your credentials." -#: includes/class-fs-plugin-updater.php:1348 +#: includes/class-fs-plugin-updater.php:1500 msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work." msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work." -#: includes/fs-plugin-info-dialog.php369, -#: templates/account/partials/addon.php:292 +#: includes/fs-plugin-info-dialog.php:514 +msgid "Purchase More" +msgstr "Køb flere" + +#: includes/fs-plugin-info-dialog.php515, +#: templates/account/partials/addon.php:348 msgctxt "verb" msgid "Purchase" msgstr "Køb" -#: includes/fs-plugin-info-dialog.php:372 +#: includes/fs-plugin-info-dialog.php:519 msgid "Start my free %s" msgstr "Start min gratis %s" -#: includes/fs-plugin-info-dialog.php:413 +#: includes/fs-plugin-info-dialog.php:717 +msgid "Install Free Version Update Now" +msgstr "Installer opdatering til gratis version nu" + +#: includes/fs-plugin-info-dialog.php718, templates/account.php:534 +msgid "Install Update Now" +msgstr "Installer opdatering nu" + +#: includes/fs-plugin-info-dialog.php:727 msgid "Install Free Version Now" msgstr "Installer gratis version nu" -#: includes/fs-plugin-info-dialog.php414, templates/auto-installation.php111, -#: templates/account/partials/addon.php272, -#: templates/account/partials/addon.php:322 +#: includes/fs-plugin-info-dialog.php728, templates/add-ons.php262, +#: templates/auto-installation.php111, +#: templates/account/partials/addon.php328, +#: templates/account/partials/addon.php:380 msgid "Install Now" msgstr "Installer nu" -#: includes/fs-plugin-info-dialog.php:425 +#: includes/fs-plugin-info-dialog.php:744 msgctxt "as download latest version" msgid "Download Latest Free Version" msgstr "Download seneste gratis version" -#: includes/fs-plugin-info-dialog.php426, templates/account.php80, -#: templates/account/partials/addon.php:21 +#: includes/fs-plugin-info-dialog.php745, templates/account.php85, +#: templates/add-ons.php34, templates/account/partials/addon.php:25 msgctxt "as download latest version" msgid "Download Latest" msgstr "Download seneste" -#: includes/fs-plugin-info-dialog.php:436 -msgid "Install Free Version Update Now" -msgstr "Installer opdatering til gratis version nu" - -#: includes/fs-plugin-info-dialog.php437, templates/account.php:460 -msgid "Install Update Now" -msgstr "Installer opdatering nu" - -#: includes/fs-plugin-info-dialog.php:448 -msgid "Newer Free Version (%s) Installed" -msgstr "Nyere gratis version (%s) installeret" - -#: includes/fs-plugin-info-dialog.php:449 -msgid "Newer Version (%s) Installed" -msgstr "Nyere version (%s) installeret" +#: includes/fs-plugin-info-dialog.php760, templates/add-ons.php268, +#: templates/account/partials/addon.php319, +#: templates/account/partials/addon.php:374 +msgid "Activate this add-on" +msgstr "Aktiver denne tilføjelse" -#: includes/fs-plugin-info-dialog.php:457 -msgid "Latest Free Version Installed" -msgstr "Seneste gratis version installeret" +#: includes/fs-plugin-info-dialog.php762, templates/connect.php:418 +msgid "Activate Free Version" +msgstr "Aktiver gratis version" -#: includes/fs-plugin-info-dialog.php:458 -msgid "Latest Version Installed" -msgstr "Seneste version installeret" +#: includes/fs-plugin-info-dialog.php763, templates/account.php109, +#: templates/add-ons.php269, templates/account/partials/addon.php:49 +msgid "Activate" +msgstr "Aktiver" -#: includes/fs-plugin-info-dialog.php:613 +#: includes/fs-plugin-info-dialog.php:973 msgctxt "Plugin installer section title" msgid "Description" msgstr "Beskrivelse" -#: includes/fs-plugin-info-dialog.php:614 +#: includes/fs-plugin-info-dialog.php:974 msgctxt "Plugin installer section title" msgid "Installation" msgstr "Installering" -#: includes/fs-plugin-info-dialog.php:615 +#: includes/fs-plugin-info-dialog.php:975 msgctxt "Plugin installer section title" msgid "FAQ" msgstr "FAQ" -#: includes/fs-plugin-info-dialog.php616, +#: includes/fs-plugin-info-dialog.php976, #: templates/plugin-info/description.php:55 msgid "Screenshots" msgstr "Skærmbilleder" -#: includes/fs-plugin-info-dialog.php:617 +#: includes/fs-plugin-info-dialog.php:977 msgctxt "Plugin installer section title" msgid "Changelog" msgstr "Ændringslog" -#: includes/fs-plugin-info-dialog.php:618 +#: includes/fs-plugin-info-dialog.php:978 msgctxt "Plugin installer section title" msgid "Reviews" msgstr "Anmeldelser" -#: includes/fs-plugin-info-dialog.php:619 +#: includes/fs-plugin-info-dialog.php:979 msgctxt "Plugin installer section title" msgid "Other Notes" msgstr "Andre noter" -#: includes/fs-plugin-info-dialog.php:634 +#: includes/fs-plugin-info-dialog.php:994 msgctxt "Plugin installer section title" msgid "Features & Pricing" msgstr "Funktioner og priser" -#: includes/fs-plugin-info-dialog.php:644 +#: includes/fs-plugin-info-dialog.php:1004 msgid "Plugin Install" msgstr "Plugin-installering" -#: includes/fs-plugin-info-dialog.php:716 +#: includes/fs-plugin-info-dialog.php:1076 msgctxt "e.g. Professional Plan" msgid "%s Plan" msgstr "%s Plan" -#: includes/fs-plugin-info-dialog.php:742 +#: includes/fs-plugin-info-dialog.php:1102 msgctxt "e.g. the best product" msgid "Best" msgstr "Bedste" -#: includes/fs-plugin-info-dialog.php748, -#: includes/fs-plugin-info-dialog.php:768 +#: includes/fs-plugin-info-dialog.php1108, +#: includes/fs-plugin-info-dialog.php:1128 msgctxt "as every month" msgid "Monthly" msgstr "Månedligt" -#: includes/fs-plugin-info-dialog.php:751 +#: includes/fs-plugin-info-dialog.php:1111 msgctxt "as once a year" msgid "Annual" msgstr "Årligt" -#: includes/fs-plugin-info-dialog.php:754 +#: includes/fs-plugin-info-dialog.php:1114 msgid "Lifetime" msgstr "Livstid" -#: includes/fs-plugin-info-dialog.php768, -#: includes/fs-plugin-info-dialog.php770, -#: includes/fs-plugin-info-dialog.php:772 +#: includes/fs-plugin-info-dialog.php1128, +#: includes/fs-plugin-info-dialog.php1130, +#: includes/fs-plugin-info-dialog.php:1132 msgctxt "e.g. billed monthly" msgid "Billed %s" msgstr "Faktureret %s" -#: includes/fs-plugin-info-dialog.php:770 +#: includes/fs-plugin-info-dialog.php:1130 msgctxt "as once a year" msgid "Annually" msgstr "Årligt" -#: includes/fs-plugin-info-dialog.php:772 +#: includes/fs-plugin-info-dialog.php:1132 msgctxt "as once a year" msgid "Once" msgstr "Engangsbeløb" -#: includes/fs-plugin-info-dialog.php:778 +#: includes/fs-plugin-info-dialog.php:1138 msgid "Single Site License" -msgstr "Single Site License" +msgstr "Enkelt site licens" -#: includes/fs-plugin-info-dialog.php:780 +#: includes/fs-plugin-info-dialog.php:1140 msgid "Unlimited Licenses" msgstr "Ubegrænsede licenser" -#: includes/fs-plugin-info-dialog.php:782 +#: includes/fs-plugin-info-dialog.php:1142 msgid "Up to %s Sites" msgstr "Op til %s websteder" -#: includes/fs-plugin-info-dialog.php792, +#: includes/fs-plugin-info-dialog.php1152, #: templates/plugin-info/features.php:82 msgctxt "as monthly period" msgid "mo" msgstr "md" -#: includes/fs-plugin-info-dialog.php799, +#: includes/fs-plugin-info-dialog.php1159, #: templates/plugin-info/features.php:80 msgctxt "as annual period" msgid "year" msgstr "år" -#: includes/fs-plugin-info-dialog.php:853 +#: includes/fs-plugin-info-dialog.php:1213 msgctxt "noun" msgid "Price" msgstr "Pris" -#: includes/fs-plugin-info-dialog.php:901 +#: includes/fs-plugin-info-dialog.php:1261 msgid "Save %s" msgstr "Spar %s" -#: includes/fs-plugin-info-dialog.php:911 +#: includes/fs-plugin-info-dialog.php:1271 msgid "No commitment for %s - cancel anytime" msgstr "Ingen bindinger ved %s - annuller når som helst" -#: includes/fs-plugin-info-dialog.php:914 +#: includes/fs-plugin-info-dialog.php:1274 msgid "After your free %s, pay as little as %s" msgstr "Efter din gratis %s er prisen kun %s" -#: includes/fs-plugin-info-dialog.php:925 +#: includes/fs-plugin-info-dialog.php:1285 msgid "Details" msgstr "Detaljer" -#: includes/fs-plugin-info-dialog.php929, templates/account.php91, -#: templates/debug.php201, templates/debug.php238, templates/debug.php452, -#: templates/account/partials/addon.php:32 +#: includes/fs-plugin-info-dialog.php1289, templates/account.php96, +#: templates/debug.php203, templates/debug.php240, templates/debug.php449, +#: templates/account/partials/addon.php:36 msgctxt "product version" msgid "Version" msgstr "Version" -#: includes/fs-plugin-info-dialog.php:936 +#: includes/fs-plugin-info-dialog.php:1296 msgctxt "as the plugin author" msgid "Author" msgstr "Forfatter" -#: includes/fs-plugin-info-dialog.php:943 +#: includes/fs-plugin-info-dialog.php:1303 msgid "Last Updated" msgstr "Senest opdateret" -#: includes/fs-plugin-info-dialog.php948, templates/account.php:376 +#: includes/fs-plugin-info-dialog.php1308, templates/account.php:444 msgctxt "x-ago" msgid "%s ago" msgstr "%s siden" -#: includes/fs-plugin-info-dialog.php:957 +#: includes/fs-plugin-info-dialog.php:1317 msgid "Requires WordPress Version" msgstr "Kræver WordPress-version" -#: includes/fs-plugin-info-dialog.php:958 +#: includes/fs-plugin-info-dialog.php:1318 msgid "%s or higher" msgstr "%s eller højere" -#: includes/fs-plugin-info-dialog.php:965 +#: includes/fs-plugin-info-dialog.php:1325 msgid "Compatible up to" msgstr "Kompatibel op til" -#: includes/fs-plugin-info-dialog.php:973 +#: includes/fs-plugin-info-dialog.php:1333 msgid "Downloaded" msgstr "Downloadet" -#: includes/fs-plugin-info-dialog.php:977 +#: includes/fs-plugin-info-dialog.php:1337 msgid "%s time" msgstr "%s gang" -#: includes/fs-plugin-info-dialog.php:979 +#: includes/fs-plugin-info-dialog.php:1339 msgid "%s times" msgstr "%s gange" -#: includes/fs-plugin-info-dialog.php:989 +#: includes/fs-plugin-info-dialog.php:1349 msgid "WordPress.org Plugin Page" msgstr "WordPress.org Plugin-side" -#: includes/fs-plugin-info-dialog.php:997 +#: includes/fs-plugin-info-dialog.php:1357 msgid "Plugin Homepage" msgstr "Plugin-websted" -#: includes/fs-plugin-info-dialog.php1005, -#: includes/fs-plugin-info-dialog.php:1087 +#: includes/fs-plugin-info-dialog.php1365, +#: includes/fs-plugin-info-dialog.php:1447 msgid "Donate to this plugin" msgstr "Donér til dette plugin" -#: includes/fs-plugin-info-dialog.php:1012 +#: includes/fs-plugin-info-dialog.php:1372 msgid "Average Rating" msgstr "Gennemsnitlig vurdering" -#: includes/fs-plugin-info-dialog.php:1019 +#: includes/fs-plugin-info-dialog.php:1379 msgid "based on %s" msgstr "baseret på %s" -#: includes/fs-plugin-info-dialog.php:1023 +#: includes/fs-plugin-info-dialog.php:1383 msgid "%s rating" msgstr "%s vurdering" -#: includes/fs-plugin-info-dialog.php:1025 +#: includes/fs-plugin-info-dialog.php:1385 msgid "%s ratings" msgstr "%s vurderinger" -#: includes/fs-plugin-info-dialog.php:1040 +#: includes/fs-plugin-info-dialog.php:1400 msgid "%s star" msgstr "%s stjerne" -#: includes/fs-plugin-info-dialog.php:1042 +#: includes/fs-plugin-info-dialog.php:1402 msgid "%s stars" msgstr "%s stjerner" -#: includes/fs-plugin-info-dialog.php:1053 +#: includes/fs-plugin-info-dialog.php:1413 msgid "Click to see reviews that provided a rating of %s" msgstr "Click to see reviews that provided a rating of %s" -#: includes/fs-plugin-info-dialog.php:1066 +#: includes/fs-plugin-info-dialog.php:1426 msgid "Contributors" msgstr "Bidragsydere" -#: includes/fs-plugin-info-dialog.php1095, -#: includes/fs-plugin-info-dialog.php:1097 +#: includes/fs-plugin-info-dialog.php1455, +#: includes/fs-plugin-info-dialog.php:1457 msgid "Warning" msgstr "Advarsel" -#: includes/fs-plugin-info-dialog.php:1095 +#: includes/fs-plugin-info-dialog.php:1455 msgid "This plugin has not been tested with your current version of WordPress." msgstr "Dette plugin er ikke blevet testet med din nuværende version af WordPress." -#: includes/fs-plugin-info-dialog.php:1097 +#: includes/fs-plugin-info-dialog.php:1457 msgid "This plugin has not been marked as compatible with your version of WordPress." -msgstr "This plugin has not been marked as compatible with your version of WordPress." +msgstr "Dette plugin er ikke markeret som kompatibel med din nuværende version af WordPress." -#: includes/fs-plugin-info-dialog.php:1116 +#: includes/fs-plugin-info-dialog.php:1476 msgid "Paid add-on must be deployed to Freemius." msgstr "Paid add-on must be deployed to Freemius." -#: includes/fs-plugin-info-dialog.php:1117 +#: includes/fs-plugin-info-dialog.php:1477 msgid "Add-on must be deployed to WordPress.org or Freemius." msgstr "Add-on must be deployed to WordPress.org or Freemius." -#: templates/account.php81, templates/forms/subscription-cancellation.php96, -#: templates/account/partials/addon.php22, +#: includes/fs-plugin-info-dialog.php:1498 +msgid "Newer Version (%s) Installed" +msgstr "Nyere version (%s) installeret" + +#: includes/fs-plugin-info-dialog.php:1499 +msgid "Newer Free Version (%s) Installed" +msgstr "Nyere gratis version (%s) installeret" + +#: includes/fs-plugin-info-dialog.php:1506 +msgid "Latest Version Installed" +msgstr "Seneste version installeret" + +#: includes/fs-plugin-info-dialog.php:1507 +msgid "Latest Free Version Installed" +msgstr "Seneste gratis version installeret" + +#: templates/account.php86, templates/forms/subscription-cancellation.php96, +#: templates/account/partials/addon.php26, #: templates/account/partials/site.php:295 msgid "Downgrading your plan" -msgstr "Downgrading your plan" +msgstr "Nedgraderer din plan" -#: templates/account.php82, templates/forms/subscription-cancellation.php97, -#: templates/account/partials/addon.php23, +#: templates/account.php87, templates/forms/subscription-cancellation.php97, +#: templates/account/partials/addon.php27, #: templates/account/partials/site.php:296 msgid "Cancelling the subscription" -msgstr "Cancelling the subscription" +msgstr "Annullerer abonnementet" -#. translators: %1s: Either 'Downgrading your plan' or 'Cancelling the +#. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the #. subscription' -#: templates/account.php84, templates/forms/subscription-cancellation.php99, -#: templates/account/partials/addon.php25, -#: templates/account/partials/site.php:298 -msgid "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s." -msgstr "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s." +#: templates/account.php:89 +msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s." +msgstr "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s." -#: templates/account.php85, templates/forms/subscription-cancellation.php100, -#: templates/account/partials/addon.php26, +#: templates/account.php90, templates/forms/subscription-cancellation.php100, +#: templates/account/partials/addon.php30, #: templates/account/partials/site.php:299 msgid "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price." msgstr "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price." -#: templates/account.php86, templates/forms/subscription-cancellation.php106, -#: templates/account/partials/addon.php:27 +#: templates/account.php91, templates/forms/subscription-cancellation.php106, +#: templates/account/partials/addon.php:31 msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?" msgstr "Cancelling the trial will immediately block access to all premium features. Are you sure?" -#: templates/account.php87, templates/forms/subscription-cancellation.php101, -#: templates/account/partials/addon.php28, +#: templates/account.php92, templates/forms/subscription-cancellation.php101, +#: templates/account/partials/addon.php32, #: templates/account/partials/site.php:300 msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support." msgstr "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support." -#: templates/account.php88, templates/forms/subscription-cancellation.php102, -#: templates/account/partials/addon.php29, +#: templates/account.php93, templates/forms/subscription-cancellation.php102, +#: templates/account/partials/addon.php33, #: templates/account/partials/site.php:301 msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features." msgstr "Once your license expires you can still use the Free version but you will NOT have access to the %s features." #. translators: %s: Plan title (e.g. "Professional") -#: templates/account.php90, +#: templates/account.php95, #: templates/account/partials/activate-license-button.php31, -#: templates/account/partials/addon.php:31 +#: templates/account/partials/addon.php:35 msgid "Activate %s Plan" msgstr "Aktiver %s plan" #. translators: %s: Time period (e.g. Auto renews in "2 months") -#: templates/account.php93, templates/account/partials/addon.php34, +#: templates/account.php98, templates/account/partials/addon.php38, #: templates/account/partials/site.php:275 msgid "Auto renews in %s" msgstr "Auto-fornyer om %s" #. translators: %s: Time period (e.g. Expires in "2 months") -#: templates/account.php95, templates/account/partials/addon.php36, +#: templates/account.php100, templates/account/partials/addon.php40, #: templates/account/partials/site.php:277 msgid "Expires in %s" msgstr "Udløber om %s" -#: templates/account.php96, templates/account/partials/addon.php:37 +#: templates/account.php101, templates/account/partials/addon.php:41 msgctxt "as synchronize license" msgid "Sync License" msgstr "Synkroniser licens" -#: templates/account.php97, templates/account/partials/addon.php:38 +#: templates/account.php102, templates/account/partials/addon.php:42 msgid "Cancel Trial" msgstr "Annuller prøveperiode" -#: templates/account.php98, templates/account/partials/addon.php:39 +#: templates/account.php103, templates/account/partials/addon.php:43 msgid "Change Plan" msgstr "Skift plan" -#: templates/account.php99, templates/account/partials/addon.php:40 +#: templates/account.php104, templates/account/partials/addon.php:44 msgctxt "verb" msgid "Upgrade" msgstr "Opgrader" -#: templates/account.php101, templates/account/partials/addon.php42, +#: templates/account.php106, templates/account/partials/addon.php46, #: templates/account/partials/site.php:302 msgctxt "verb" msgid "Downgrade" msgstr "Nedgrader" -#: templates/account.php103, templates/add-ons.php130, +#: templates/account.php108, templates/add-ons.php187, #: templates/plugin-info/features.php72, -#: templates/account/partials/addon.php44, +#: templates/account/partials/addon.php48, #: templates/account/partials/site.php:31 msgid "Free" msgstr "Gratis" -#: templates/account.php104, templates/account/partials/addon.php:45 -msgid "Activate" -msgstr "Aktiver" - -#: templates/account.php105, templates/debug.php371, -#: includes/customizer/class-fs-customizer-upsell-control.php106, -#: templates/account/partials/addon.php:46 +#: templates/account.php110, templates/debug.php372, +#: includes/customizer/class-fs-customizer-upsell-control.php110, +#: templates/account/partials/addon.php:50 msgctxt "as product pricing plan" msgid "Plan" msgstr "Plan" -#: templates/account.php:158 +#: templates/account.php:111 +msgid "Bundle Plan" +msgstr "Bundle Plan" + +#: templates/account.php:185 msgid "Free Trial" msgstr "Gratis prøveperiode" -#: templates/account.php:169 +#: templates/account.php:196 msgid "Account Details" msgstr "Kontodetaljer" -#: templates/account.php:179 +#: templates/account.php:200 +msgid "Billing & Invoices" +msgstr "Fakturering" + +#: templates/account.php:210 msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?" msgstr "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?" -#: templates/account.php:181 +#: templates/account.php:212 msgid "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?" msgstr "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?" -#: templates/account.php:184 +#: templates/account.php:215 msgid "Delete Account" msgstr "Slet konto" -#: templates/account.php196, templates/account/partials/addon.php159, +#: templates/account.php227, templates/account/partials/addon.php211, #: templates/account/partials/deactivate-license-button.php:35 msgid "Deactivate License" msgstr "Deaktiver licens" -#: templates/account.php219, templates/forms/subscription-cancellation.php:125 +#: templates/account.php250, templates/forms/subscription-cancellation.php:125 msgid "Are you sure you want to proceed?" msgstr "Er du sikker på, du vil fortsætte?" -#: templates/account.php219, templates/account/partials/addon.php:182 +#: templates/account.php250, templates/account/partials/addon.php:234 msgid "Cancel Subscription" msgstr "Annuller abonnement" -#: templates/account.php:247 +#: templates/account.php:278 msgctxt "as synchronize" msgid "Sync" msgstr "Synkroniser" -#: templates/account.php261, templates/debug.php:487 +#: templates/account.php292, templates/debug.php:484 msgid "Name" msgstr "Navn" -#: templates/account.php267, templates/debug.php:488 +#: templates/account.php298, templates/debug.php:485 msgid "Email" msgstr "E-mail" -#: templates/account.php274, templates/debug.php370, templates/debug.php:526 +#: templates/account.php305, templates/debug.php371, templates/debug.php:523 msgid "User ID" msgstr "Bruger-ID" -#: templates/account.php:282 +#: templates/account.php322, templates/account.php608, +#: templates/account.php653, templates/debug.php238, templates/debug.php365, +#: templates/debug.php446, templates/debug.php483, templates/debug.php521, +#: templates/debug.php594, templates/account/payments.php35, +#: templates/debug/logger.php:21 +msgid "ID" +msgstr "ID" + +#: templates/account.php:329 msgid "Site ID" msgstr "Websteds-ID" -#: templates/account.php:285 +#: templates/account.php:332 msgid "No ID" msgstr "Intet ID" -#: templates/account.php290, templates/debug.php243, templates/debug.php372, -#: templates/debug.php453, templates/debug.php490, +#: templates/account.php337, templates/debug.php245, templates/debug.php373, +#: templates/debug.php450, templates/debug.php487, #: templates/account/partials/site.php:219 msgid "Public Key" msgstr "Offentlig nøgle" -#: templates/account.php296, templates/debug.php373, templates/debug.php454, -#: templates/debug.php491, templates/account/partials/site.php:231 +#: templates/account.php343, templates/debug.php374, templates/debug.php451, +#: templates/debug.php488, templates/account/partials/site.php:231 msgid "Secret Key" msgstr "Privat nøgle" -#: templates/account.php:299 +#: templates/account.php:346 msgctxt "as secret encryption key missing" msgid "No Secret" msgstr "Ingen privat nøgle" -#: templates/account.php318, templates/account/partials/site.php112, +#: templates/account.php373, templates/account/partials/site.php112, #: templates/account/partials/site.php:114 msgid "Trial" msgstr "Prøveperiode" -#: templates/account.php337, templates/debug.php531, +#: templates/account.php400, templates/debug.php528, #: templates/account/partials/site.php:248 msgid "License Key" msgstr "Licensnøgle" -#: templates/account.php:367 +#: templates/account.php:429 +msgid "Join the Beta program" +msgstr "Deltag i Beta-programmet" + +#: templates/account.php:435 msgid "not verified" msgstr "ikke verificeret" -#: templates/account.php376, templates/account/partials/addon.php:120 +#: templates/account.php444, templates/account/partials/addon.php:172 msgid "Expired" msgstr "Udløbet" -#: templates/account.php:428 +#: templates/account.php:502 msgid "Premium version" msgstr "Premium version" -#: templates/account.php:430 +#: templates/account.php:504 msgid "Free version" msgstr "Gratis version" -#: templates/account.php:442 +#: templates/account.php:516 msgid "Verify Email" msgstr "Verificer e-mail" -#: templates/account.php:453 +#: templates/account.php:527 msgid "Download %s Version" msgstr "Download 1%s version" -#: templates/account.php467, templates/account.php649, +#: templates/account.php541, templates/account.php749, #: templates/account/partials/site.php237, #: templates/account/partials/site.php:255 msgctxt "verb" msgid "Show" msgstr "Vis" -#: templates/account.php:481 +#: templates/account.php:555 msgid "What is your %s?" msgstr "Angiv venligst %s?" -#: templates/account.php489, templates/account/billing.php:27 +#: templates/account.php563, templates/account/billing.php:21 msgctxt "verb" msgid "Edit" msgstr "Rediger" -#: templates/account.php:502 +#: templates/account.php:588 msgid "Sites" msgstr "Websteder" -#: templates/account.php:513 +#: templates/account.php:599 msgid "Search by address" msgstr "Søg efter adresse" -#: templates/account.php522, templates/account.php570, templates/debug.php236, -#: templates/debug.php364, templates/debug.php449, templates/debug.php486, -#: templates/debug.php524, templates/debug.php597, -#: templates/account/payments.php35, templates/debug/logger.php:21 -msgid "ID" -msgstr "ID" - -#: templates/account.php523, templates/debug.php:367 +#: templates/account.php609, templates/debug.php:368 msgid "Address" msgstr "Adresse" -#: templates/account.php:524 +#: templates/account.php:610 msgid "License" msgstr "Licens" -#: templates/account.php:525 +#: templates/account.php:611 msgid "Plan" msgstr "Plan" -#: templates/account.php:573 +#: templates/account.php:656 msgctxt "as software license" msgid "License" msgstr "Licens" -#: templates/account.php:643 +#: templates/account.php:743 msgctxt "verb" msgid "Hide" msgstr "Skjul" -#: templates/account.php:686 +#: templates/account.php:765 +msgid "Processing" +msgstr "Arbejder" + +#: templates/account.php:768 +msgid "Get updates for bleeding edge Beta versions of %s." +msgstr "Get updates for bleeding edge Beta versions of %s." + +#: templates/account.php:826 msgid "Cancelling %s" -msgstr "Cancelling %s" +msgstr "Annullerer %s" -#: templates/account.php686, templates/account.php703, +#: templates/account.php826, templates/account.php843, #: templates/forms/subscription-cancellation.php27, -#: templates/forms/deactivation/form.php:117 +#: templates/forms/deactivation/form.php:133 msgid "trial" -msgstr "trial" +msgstr "prøveperiode" -#: templates/account.php701, templates/forms/deactivation/form.php:134 +#: templates/account.php841, templates/forms/deactivation/form.php:150 msgid "Cancelling %s..." -msgstr "Cancelling %s..." +msgstr "Annullerer %s..." -#: templates/account.php704, templates/forms/subscription-cancellation.php28, -#: templates/forms/deactivation/form.php:118 +#: templates/account.php844, templates/forms/subscription-cancellation.php28, +#: templates/forms/deactivation/form.php:134 msgid "subscription" -msgstr "subscription" +msgstr "abonnement" -#: templates/account.php:718 +#: templates/account.php:858 msgid "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?" msgstr "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?" -#: templates/add-ons.php:36 +#: templates/add-ons.php:35 +msgid "View details" +msgstr "Vis detaljer" + +#: templates/add-ons.php:45 msgid "Add Ons for %s" msgstr "Tilføjelser til %s" -#: templates/add-ons.php:44 +#: templates/add-ons.php:55 msgid "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." msgstr "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." -#: templates/add-ons.php:139 -msgid "View details" -msgstr "Vis detaljer" +#: templates/add-ons.php:173 +msgctxt "active add-on" +msgid "Active" +msgstr "Aktiv" -#: templates/admin-notice.php13, templates/forms/license-activation.php208, +#: templates/add-ons.php:174 +msgctxt "installed add-on" +msgid "Installed" +msgstr "Installeret" + +#: templates/admin-notice.php13, templates/forms/license-activation.php211, #: templates/forms/resend-key.php:77 msgctxt "as close a window" msgid "Dismiss" @@ -1448,13 +1521,13 @@ msgstr "The installation process has started and may take a few minutes to compl msgid "Cancel Installation" msgstr "Annuller installering" -#: templates/checkout.php:172 +#: templates/checkout.php:180 msgid "Checkout" msgstr "Udtjekning" -#: templates/checkout.php:172 +#: templates/checkout.php:180 msgid "PCI compliant" -msgstr "PCI compliant" +msgstr "PCI-kompatibel" #. translators: %s: name (e.g. Hey John,) #: templates/connect.php:112 @@ -1474,7 +1547,7 @@ msgstr "Gensend e-mail om aktivering" msgid "Thanks %s!" msgstr "Tak %s!" -#: templates/connect.php172, templates/forms/license-activation.php:43 +#: templates/connect.php172, templates/forms/license-activation.php:46 msgid "Agree & Activate License" msgstr "Accepter & aktiver licens" @@ -1484,19 +1557,19 @@ msgstr "Tak for at købe %s! For at komme i gang, venligst indtast din licensnø #: templates/connect.php:188 msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s." -msgstr "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s." +msgstr "Gå aldrig glip af en vigtig opdatering - tilmeld dig vores sikkerheds- og funktionsopdateringsmeddelelser, uddannelsesindhold, tilbud og ikke-følsom diagnosesporing med %4$s. " #: templates/connect.php:189 msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s." -msgstr "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s." +msgstr "Gå aldrig glip af en vigtig opdatering - tilmeld dig vores sikkerheds- og funktionsopdateringsmeddelelser, uddannelsesindhold, tilbud og ikke-følsom diagnosesporing med %%4$s." #: templates/connect.php:195 msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine." -msgstr "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine." +msgstr "Gå aldrig glip af en vigtig opdatering - tilmeld dig vores sikkerheds- og funktionsopdateringsmeddelelser, uddannelsesindhold, tilbud og ikke-følsom diagnosesporing med %4$s. Hvis du springer dette over, er det okay! %1$s fungerer stadig fint." #: templates/connect.php:196 msgid "Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine." -msgstr "Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine." +msgstr "Gå aldrig glip af en vigtig opdatering - tilmeld dig vores sikkerheds- og funktionsopdateringsmeddelelser, uddannelsesindhold, tilbud og ikke-følsom diagnosesporing med %4$s. Hvis du springer dette over, er det okay! %1$s fungerer stadig fint." #: templates/connect.php:230 msgid "We're excited to introduce the Freemius network-level integration." @@ -1512,7 +1585,7 @@ msgstr "If you'd like to use the %s on those sites, please enter your license ke #: templates/connect.php:237 msgid "%s's paid features" -msgstr "%s's paid features" +msgstr "%s's betalte features" #: templates/connect.php:242 msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page." @@ -1522,15 +1595,15 @@ msgstr "Alternatively, you can skip it for now and activate the license later, i msgid "During the update process we detected %s site(s) in the network that are still pending your attention." msgstr "During the update process we detected %s site(s) in the network that are still pending your attention." -#: templates/connect.php253, templates/forms/license-activation.php:46 +#: templates/connect.php253, templates/forms/license-activation.php:49 msgid "License key" msgstr "Licensnøgle" -#: templates/connect.php256, templates/forms/license-activation.php:19 +#: templates/connect.php256, templates/forms/license-activation.php:22 msgid "Can't find your license key?" msgstr "Kan du ikke finde din licensnøgle?" -#: templates/connect.php315, templates/connect.php630, +#: templates/connect.php315, templates/connect.php652, #: templates/forms/deactivation/retry-skip.php:20 msgctxt "verb" msgid "Skip" @@ -1538,7 +1611,7 @@ msgstr "Spring over" #: templates/connect.php:318 msgid "Delegate to Site Admins" -msgstr "Delegate to Site Admins" +msgstr "Uddeleger til webstedsadministratorer" #: templates/connect.php:318 msgid "If you click it, this decision will be delegated to the sites administrators." @@ -1566,7 +1639,7 @@ msgstr "Admin-meddelelser" #: templates/connect.php359, templates/connect.php:375 msgid "Updates, announcements, marketing, no spam" -msgstr "Updates, announcements, marketing, no spam" +msgstr "Opdateringer, annonceringer, marketing, ingen spam" #: templates/connect.php:364 msgid "Current %s Events" @@ -1580,7 +1653,7 @@ msgstr "Aktivering, deaktivering og afinstallering" msgid "Newsletter" msgstr "Nyhedsbrev" -#: templates/connect.php391, templates/forms/license-activation.php:38 +#: templates/connect.php391, templates/forms/license-activation.php:41 msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license." msgstr "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license." @@ -1592,10 +1665,6 @@ msgstr "Hvilke tilladelser bliver givet?" msgid "Don't have a license key?" msgstr "Har du ikke en licensnøgle?" -#: templates/connect.php:418 -msgid "Activate Free Version" -msgstr "Aktiver gratis version" - #: templates/connect.php:420 msgid "Have a license key?" msgstr "Har du en licensnøgle?" @@ -1606,18 +1675,18 @@ msgstr "Privatlivspolitik" #: templates/connect.php:430 msgid "License Agreement" -msgstr "License Agreement" +msgstr "Licensaftale" #: templates/connect.php:430 msgid "Terms of Service" msgstr "Servicevilkår" -#: templates/connect.php:766 +#: templates/connect.php:805 msgctxt "as in the process of sending an email" msgid "Sending email" msgstr "Sender e-mail" -#: templates/connect.php:767 +#: templates/connect.php:806 msgctxt "as activating plugin" msgid "Activating" msgstr "Aktiverer" @@ -1645,8 +1714,8 @@ msgctxt "as code debugging" msgid "Debugging" msgstr "Fejlfinding" -#: templates/debug.php54, templates/debug.php248, templates/debug.php374, -#: templates/debug.php:492 +#: templates/debug.php54, templates/debug.php250, templates/debug.php375, +#: templates/debug.php:489 msgid "Actions" msgstr "Handlinger" @@ -1682,191 +1751,191 @@ msgstr "Hent DB-indstilling" msgid "Set DB Option" msgstr "Sæt DB-indstilling" -#: templates/debug.php:180 +#: templates/debug.php:182 msgid "Key" msgstr "Nøgle" -#: templates/debug.php:181 +#: templates/debug.php:183 msgid "Value" msgstr "Værdi" -#: templates/debug.php:197 +#: templates/debug.php:199 msgctxt "as software development kit versions" msgid "SDK Versions" msgstr "SDK-versioner" -#: templates/debug.php:202 +#: templates/debug.php:204 msgid "SDK Path" msgstr "SDK-sti" -#: templates/debug.php203, templates/debug.php:242 +#: templates/debug.php205, templates/debug.php:244 msgid "Module Path" msgstr "Modul-sti" -#: templates/debug.php:204 +#: templates/debug.php:206 msgid "Is Active" msgstr "Er aktiv" -#: templates/debug.php232, templates/debug/plugins-themes-sync.php:35 +#: templates/debug.php234, templates/debug/plugins-themes-sync.php:35 msgid "Plugins" msgstr "Plugins" -#: templates/debug.php232, templates/debug/plugins-themes-sync.php:56 +#: templates/debug.php234, templates/debug/plugins-themes-sync.php:56 msgid "Themes" msgstr "Temaer" -#: templates/debug.php237, templates/debug.php369, templates/debug.php451, +#: templates/debug.php239, templates/debug.php370, templates/debug.php448, #: templates/debug/scheduled-crons.php:80 msgid "Slug" msgstr "Kortnavn" -#: templates/debug.php239, templates/debug.php:450 +#: templates/debug.php241, templates/debug.php:447 msgid "Title" msgstr "Titel" -#: templates/debug.php:240 +#: templates/debug.php:242 msgctxt "as application program interface" msgid "API" msgstr "API" -#: templates/debug.php:241 +#: templates/debug.php:243 msgid "Freemius State" msgstr "Freemius tilstand" -#: templates/debug.php:245 +#: templates/debug.php:247 msgid "Network Blog" msgstr "Netværksblog" -#: templates/debug.php:246 +#: templates/debug.php:248 msgid "Network User" msgstr "Netværksbruger" -#: templates/debug.php:283 +#: templates/debug.php:285 msgctxt "as connection was successful" msgid "Connected" msgstr "Forbundet" -#: templates/debug.php:284 +#: templates/debug.php:286 msgctxt "as connection blocked" msgid "Blocked" msgstr "Blokeret" -#: templates/debug.php:320 +#: templates/debug.php:322 msgid "Simulate Trial Promotion" msgstr "Simulate Trial Promotion" -#: templates/debug.php:332 +#: templates/debug.php:334 msgid "Simulate Network Upgrade" msgstr "Simuler netværksopgradering" -#: templates/debug.php:358 +#: templates/debug.php:359 msgid "%s Installs" msgstr "%s installeringer" -#: templates/debug.php:360 +#: templates/debug.php:361 msgctxt "like websites" msgid "Sites" msgstr "Websteder" -#: templates/debug.php366, templates/account/partials/site.php:148 +#: templates/debug.php367, templates/account/partials/site.php:148 msgid "Blog ID" msgstr "Blog-ID" -#: templates/debug.php431, templates/debug.php509, -#: templates/account/partials/addon.php:339 +#: templates/debug.php428, templates/debug.php506, +#: templates/account/partials/addon.php:397 msgctxt "verb" msgid "Delete" msgstr "Slet" -#: templates/debug.php:445 +#: templates/debug.php:442 msgid "Add Ons of module %s" msgstr "Tilføjelser til modul %s" -#: templates/debug.php:482 +#: templates/debug.php:479 msgid "Users" msgstr "Brugere" -#: templates/debug.php:489 +#: templates/debug.php:486 msgid "Verified" msgstr "Verificeret" -#: templates/debug.php:520 +#: templates/debug.php:517 msgid "%s Licenses" msgstr "1%s licenser" -#: templates/debug.php:525 +#: templates/debug.php:522 msgid "Plugin ID" msgstr "Plugin-ID" -#: templates/debug.php:527 +#: templates/debug.php:524 msgid "Plan ID" msgstr "Plan-ID" -#: templates/debug.php:528 +#: templates/debug.php:525 msgid "Quota" msgstr "Kvote" -#: templates/debug.php:529 +#: templates/debug.php:526 msgid "Activated" msgstr "Aktiveret" -#: templates/debug.php:530 +#: templates/debug.php:527 msgid "Blocking" msgstr "Blokerer" -#: templates/debug.php:532 +#: templates/debug.php:529 msgctxt "as expiration date" msgid "Expiration" msgstr "Udløber" -#: templates/debug.php:555 +#: templates/debug.php:552 msgid "Debug Log" msgstr "Fejlfindingslog" -#: templates/debug.php:559 +#: templates/debug.php:556 msgid "All Types" msgstr "Alle typer" -#: templates/debug.php:566 +#: templates/debug.php:563 msgid "All Requests" msgstr "Alle forespørgsler" -#: templates/debug.php571, templates/debug.php600, +#: templates/debug.php568, templates/debug.php597, #: templates/debug/logger.php:25 msgid "File" msgstr "Fil" -#: templates/debug.php572, templates/debug.php598, +#: templates/debug.php569, templates/debug.php595, #: templates/debug/logger.php:23 msgid "Function" msgstr "Funktion" -#: templates/debug.php:573 +#: templates/debug.php:570 msgid "Process ID" msgstr "Proces-ID" -#: templates/debug.php:574 +#: templates/debug.php:571 msgid "Logger" msgstr "Logger" -#: templates/debug.php575, templates/debug.php599, +#: templates/debug.php572, templates/debug.php596, #: templates/debug/logger.php:24 msgid "Message" msgstr "Besked" -#: templates/debug.php:577 +#: templates/debug.php:574 msgid "Filter" msgstr "Filter" -#: templates/debug.php:585 +#: templates/debug.php:582 msgid "Download" msgstr "Download" -#: templates/debug.php596, templates/debug/logger.php:22 +#: templates/debug.php593, templates/debug/logger.php:22 msgid "Type" msgstr "Type" -#: templates/debug.php601, templates/debug/logger.php:26 +#: templates/debug.php598, templates/debug/logger.php:26 msgid "Timestamp" msgstr "Tidsstempel" @@ -1891,55 +1960,55 @@ msgstr "Freemius API" #: includes/debug/debug-bar-start.php:42 msgid "Requests" -msgstr "Requests" +msgstr "Forespørgsler" -#: templates/account/billing.php:28 +#: templates/account/billing.php:22 msgctxt "verb" msgid "Update" msgstr "Opdater" -#: templates/account/billing.php:39 +#: templates/account/billing.php:33 msgid "Billing" msgstr "Betaling" -#: templates/account/billing.php44, templates/account/billing.php:44 +#: templates/account/billing.php38, templates/account/billing.php:38 msgid "Business name" msgstr "Firmanavn" -#: templates/account/billing.php45, templates/account/billing.php:45 +#: templates/account/billing.php39, templates/account/billing.php:39 msgid "Tax / VAT ID" msgstr "Moms / VAT ID" -#: templates/account/billing.php48, templates/account/billing.php48, -#: templates/account/billing.php49, templates/account/billing.php:49 +#: templates/account/billing.php42, templates/account/billing.php42, +#: templates/account/billing.php43, templates/account/billing.php:43 msgid "Address Line %d" msgstr "Adresselinje %d" -#: templates/account/billing.php52, templates/account/billing.php:52 +#: templates/account/billing.php46, templates/account/billing.php:46 msgid "City" msgstr "By" -#: templates/account/billing.php52, templates/account/billing.php:52 +#: templates/account/billing.php46, templates/account/billing.php:46 msgid "Town" msgstr "By" -#: templates/account/billing.php53, templates/account/billing.php:53 +#: templates/account/billing.php47, templates/account/billing.php:47 msgid "ZIP / Postal Code" msgstr "ZIP / Postnummer" -#: templates/account/billing.php:308 +#: templates/account/billing.php:302 msgid "Country" msgstr "Land" -#: templates/account/billing.php:310 +#: templates/account/billing.php:304 msgid "Select Country" msgstr "Vælg land" -#: templates/account/billing.php317, templates/account/billing.php:318 +#: templates/account/billing.php311, templates/account/billing.php:312 msgid "State" msgstr "Stat" -#: templates/account/billing.php317, templates/account/billing.php:318 +#: templates/account/billing.php311, templates/account/billing.php:312 msgid "Province" msgstr "Provins" @@ -2057,7 +2126,7 @@ msgstr "Udløber ikke" #: templates/forms/affiliation.php:85 msgid "Apply to become an affiliate" -msgstr "Apply to become an affiliate" +msgstr "Ansøg om at blive en affiliate" #: templates/forms/affiliation.php:104 msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s." @@ -2105,7 +2174,7 @@ msgstr "%s tracking cookie after the first visit to maximize earnings potential. #: templates/forms/affiliation.php:155 msgid "Unlimited commissions." -msgstr "Unlimited commissions." +msgstr "Ubegrænset provision." #: templates/forms/affiliation.php:157 msgid "%s minimum payout amount." @@ -2113,7 +2182,7 @@ msgstr "%s minimum payout amount." #: templates/forms/affiliation.php:158 msgid "Payouts are in USD and processed monthly via PayPal." -msgstr "Payouts are in USD and processed monthly via PayPal." +msgstr "Udbetalinger er i USD og behandles hver måned via PayPal." #: templates/forms/affiliation.php:159 msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days." @@ -2191,11 +2260,11 @@ msgstr "Annuller" msgid "Become an affiliate" msgstr "Bliv en affiliate" -#: templates/forms/license-activation.php:20 +#: templates/forms/license-activation.php:23 msgid "Please enter the license key that you received in the email right after the purchase:" msgstr "Indtast licensnøglen, du modtog i e-mailen lige efter købet:" -#: templates/forms/license-activation.php:25 +#: templates/forms/license-activation.php:28 msgid "Update License" msgstr "Opdater licens" @@ -2252,7 +2321,7 @@ msgstr "In case you are NOT planning on using this %s on this site (or any other #: templates/forms/subscription-cancellation.php:52 msgid "license" -msgstr "license" +msgstr "licens" #: templates/forms/subscription-cancellation.php:57 msgid "Cancel %s - I no longer need any security & feature updates, nor support for %s because I'm not planning to use the %s on this, or any other site." @@ -2262,22 +2331,30 @@ msgstr "Cancel %s - I no longer need any security & feature updates, nor support msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support." msgstr "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support." +#. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the +#. subscription' +#: templates/forms/subscription-cancellation.php99, +#: templates/account/partials/addon.php29, +#: templates/account/partials/site.php:298 +msgid "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s." +msgstr "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s." + #: templates/forms/subscription-cancellation.php:103 msgid "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license." msgstr "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license." #: templates/forms/subscription-cancellation.php:136 msgid "Cancel %s?" -msgstr "Cancel %s?" +msgstr "Annuller %s?" #: templates/forms/subscription-cancellation.php:143 msgid "Proceed" -msgstr "Proceed" +msgstr "Fortsæt" #: templates/forms/subscription-cancellation.php191, -#: templates/forms/deactivation/form.php:150 +#: templates/forms/deactivation/form.php:171 msgid "Cancel %s & Proceed" -msgstr "Cancel %s & Proceed" +msgstr "Annuller %s og fortsæt" #: templates/forms/trial-start.php:22 msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan." @@ -2287,38 +2364,42 @@ msgstr "Du er 1 klik fra at begynde din %1$s dages gratis prøveperiode af plane msgid "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial." msgstr "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial." -#: templates/js/style-premium-theme.php:37 +#: templates/js/style-premium-theme.php:39 msgid "Premium" msgstr "Premium" -#: templates/partials/network-activation.php:23 +#: templates/js/style-premium-theme.php:42 +msgid "Beta" +msgstr "Beta" + +#: templates/partials/network-activation.php:27 msgid "Activate license on all sites in the network." msgstr "Aktiver licens på alle websteder i netværket." -#: templates/partials/network-activation.php:24 +#: templates/partials/network-activation.php:28 msgid "Apply on all sites in the network." msgstr "Anvend på alle websteder i netværket." -#: templates/partials/network-activation.php:27 +#: templates/partials/network-activation.php:31 msgid "Activate license on all pending sites." msgstr "Akiver licens på alle afventende websteder." -#: templates/partials/network-activation.php:28 +#: templates/partials/network-activation.php:32 msgid "Apply on all pending sites." msgstr "Anvend på alle afventende websteder." -#: templates/partials/network-activation.php36, -#: templates/partials/network-activation.php:68 +#: templates/partials/network-activation.php40, +#: templates/partials/network-activation.php:74 msgid "allow" msgstr "tillad" -#: templates/partials/network-activation.php38, -#: templates/partials/network-activation.php:70 +#: templates/partials/network-activation.php43, +#: templates/partials/network-activation.php:77 msgid "delegate" msgstr "delegér" -#: templates/partials/network-activation.php41, -#: templates/partials/network-activation.php:73 +#: templates/partials/network-activation.php47, +#: templates/partials/network-activation.php:81 msgid "skip" msgstr "spring over" @@ -2344,19 +2425,14 @@ msgstr "%s tilbage" msgid "Last license" msgstr "Seneste license" -#: templates/account/partials/addon.php:115 +#: templates/account/partials/addon.php:167 msgid "Cancelled" msgstr "Annulleret" -#: templates/account/partials/addon.php:125 +#: templates/account/partials/addon.php:177 msgid "No expiration" msgstr "Udløber ikke" -#: templates/account/partials/addon.php264, -#: templates/account/partials/addon.php:317 -msgid "Activate this add-on" -msgstr "Aktiver denne tilføjelse" - #: templates/account/partials/site.php:181 msgid "Owner Name" msgstr "Ejer-navn" @@ -2381,47 +2457,47 @@ msgstr "Vi beklager ulejligheden, og vi er her for at hjælpe, hvis du giver os msgid "Contact Support" msgstr "Kontakt support" -#: templates/forms/deactivation/form.php:59 +#: templates/forms/deactivation/form.php:64 msgid "Anonymous feedback" msgstr "Anonym feedback" -#: templates/forms/deactivation/form.php:66 +#: templates/forms/deactivation/form.php:70 msgid "Deactivate" msgstr "Deaktiver" -#: templates/forms/deactivation/form.php:68 +#: templates/forms/deactivation/form.php:72 msgid "Activate %s" msgstr "Aktiver %s" -#: templates/forms/deactivation/form.php:80 +#: templates/forms/deactivation/form.php:87 msgid "Quick Feedback" -msgstr "Quick Feedback" +msgstr "Hurtig feedback" -#: templates/forms/deactivation/form.php:84 +#: templates/forms/deactivation/form.php:91 msgid "If you have a moment, please let us know why you are %s" msgstr "Hvis du har tid, så lad os venligst vide hvorfor du %s" -#: templates/forms/deactivation/form.php:84 +#: templates/forms/deactivation/form.php:91 msgid "deactivating" msgstr "deaktiverer" -#: templates/forms/deactivation/form.php:84 +#: templates/forms/deactivation/form.php:91 msgid "switching" msgstr "skifter" -#: templates/forms/deactivation/form.php:332 +#: templates/forms/deactivation/form.php:365 msgid "Submit & %s" msgstr "Send & %s" -#: templates/forms/deactivation/form.php:353 +#: templates/forms/deactivation/form.php:386 msgid "Kindly tell us the reason so we can improve." msgstr "Fortæl os venligst årsagen, så vi kan forbedre det." -#: templates/forms/deactivation/form.php:478 +#: templates/forms/deactivation/form.php:511 msgid "Yes - %s" msgstr "Ja - %s" -#: templates/forms/deactivation/form.php:485 +#: templates/forms/deactivation/form.php:518 msgid "Skip & %s" msgstr "Spring over & %s" diff --git a/external/Freemius/languages/freemius-en.mo b/external/Freemius/languages/freemius-en.mo index 5e107d99..992b181a 100755 Binary files a/external/Freemius/languages/freemius-en.mo and b/external/Freemius/languages/freemius-en.mo differ diff --git a/external/Freemius/languages/freemius-en.po b/external/Freemius/languages/freemius-en.po index 7d3a40b2..890a5dd6 100755 --- a/external/Freemius/languages/freemius-en.po +++ b/external/Freemius/languages/freemius-en.po @@ -19,1317 +19,1398 @@ msgstr "" "X-Poedit-SearchPathExcluded-0: *.js\n" "X-Poedit-SourceCharset: UTF-8\n" -#: includes/class-freemius.php:1688 +#: includes/class-freemius.php:1880, templates/account.php:840 +msgid "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned." +msgstr "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned." + +#: includes/class-freemius.php:1887 +msgid "Would you like to proceed with the update?" +msgstr "Would you like to proceed with the update?" + +#: includes/class-freemius.php:2095 msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error." msgstr "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error." -#: includes/class-freemius.php:1690 +#: includes/class-freemius.php:2097 msgid "Error" msgstr "Error" -#: includes/class-freemius.php:2011 +#: includes/class-freemius.php:2491 msgid "I found a better %s" msgstr "I found a better %s" -#: includes/class-freemius.php:2013 +#: includes/class-freemius.php:2493 msgid "What's the %s's name?" msgstr "What's the %s's name?" -#: includes/class-freemius.php:2019 +#: includes/class-freemius.php:2499 msgid "It's a temporary %s. I'm just debugging an issue." msgstr "It's a temporary %s. I'm just debugging an issue." -#: includes/class-freemius.php:2021 +#: includes/class-freemius.php:2501 msgid "Deactivation" msgstr "Deactivation" -#: includes/class-freemius.php:2022 +#: includes/class-freemius.php:2502 msgid "Theme Switch" msgstr "Theme Switch" -#: includes/class-freemius.php:2031, templates/forms/resend-key.php:24 +#: includes/class-freemius.php:2511, templates/forms/resend-key.php:24 msgid "Other" msgstr "Other" -#: includes/class-freemius.php:2039 +#: includes/class-freemius.php:2519 msgid "I no longer need the %s" msgstr "I no longer need the %s" -#: includes/class-freemius.php:2046 +#: includes/class-freemius.php:2526 msgid "I only needed the %s for a short period" msgstr "I only needed the %s for a short period" -#: includes/class-freemius.php:2052 +#: includes/class-freemius.php:2532 msgid "The %s broke my site" msgstr "The %s broke my site" -#: includes/class-freemius.php:2059 +#: includes/class-freemius.php:2539 msgid "The %s suddenly stopped working" msgstr "The %s suddenly stopped working" -#: includes/class-freemius.php:2069 +#: includes/class-freemius.php:2549 msgid "I can't pay for it anymore" msgstr "I can't pay for it anymore" -#: includes/class-freemius.php:2071 +#: includes/class-freemius.php:2551 msgid "What price would you feel comfortable paying?" msgstr "What price would you feel comfortable paying?" -#: includes/class-freemius.php:2077 +#: includes/class-freemius.php:2557 msgid "I don't like to share my information with you" msgstr "I don't like to share my information with you" -#: includes/class-freemius.php:2098 +#: includes/class-freemius.php:2578 msgid "The %s didn't work" msgstr "The %s didn't work" -#: includes/class-freemius.php:2108 +#: includes/class-freemius.php:2588 msgid "I couldn't understand how to make it work" msgstr "I couldn't understand how to make it work" -#: includes/class-freemius.php:2116 +#: includes/class-freemius.php:2596 msgid "The %s is great, but I need specific feature that you don't support" msgstr "The %s is great, but I need specific feature that you don't support" -#: includes/class-freemius.php:2118 +#: includes/class-freemius.php:2598 msgid "What feature?" msgstr "What feature?" -#: includes/class-freemius.php:2122 +#: includes/class-freemius.php:2602 msgid "The %s is not working" msgstr "The %s is not working" -#: includes/class-freemius.php:2124 +#: includes/class-freemius.php:2604 msgid "Kindly share what didn't work so we can fix it for future users..." msgstr "Kindly share what didn't work so we can fix it for future users..." -#: includes/class-freemius.php:2128 +#: includes/class-freemius.php:2608 msgid "It's not what I was looking for" msgstr "It's not what I was looking for" -#: includes/class-freemius.php:2130 +#: includes/class-freemius.php:2610 msgid "What you've been looking for?" msgstr "What you've been looking for?" -#: includes/class-freemius.php:2134 +#: includes/class-freemius.php:2614 msgid "The %s didn't work as expected" msgstr "The %s didn't work as expected" -#: includes/class-freemius.php:2136 +#: includes/class-freemius.php:2616 msgid "What did you expect?" msgstr "What did you expect?" -#: includes/class-freemius.php:2942, templates/debug.php:20 +#: includes/class-freemius.php:3471, templates/debug.php:20 msgid "Freemius Debug" msgstr "Freemius Debug" -#: includes/class-freemius.php:3670 +#: includes/class-freemius.php:4223 msgid "I don't know what is cURL or how to install it, help me!" msgstr "I don't know what is cURL or how to install it, help me!" -#: includes/class-freemius.php:3672 +#: includes/class-freemius.php:4225 msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update." msgstr "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update." -#: includes/class-freemius.php:3679 +#: includes/class-freemius.php:4232 msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again." msgstr "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again." -#: includes/class-freemius.php:3784 +#: includes/class-freemius.php:4337 msgid "Yes - do your thing" msgstr "Yes - do your thing" -#: includes/class-freemius.php:3789 +#: includes/class-freemius.php:4342 msgid "No - just deactivate" msgstr "No - just deactivate" -#: includes/class-freemius.php:3834, includes/class-freemius.php:4343, includes/class-freemius.php:5442, includes/class-freemius.php:11545, includes/class-freemius.php:14916, includes/class-freemius.php:14968, includes/class-freemius.php:15030, includes/class-freemius.php:17263, includes/class-freemius.php:17273, includes/class-freemius.php:17882, includes/class-freemius.php:18742, includes/class-freemius.php:18857, includes/class-freemius.php:19001, templates/add-ons.php:43 +#: includes/class-freemius.php:4387, includes/class-freemius.php:4881, includes/class-freemius.php:6032, includes/class-freemius.php:13153, includes/class-freemius.php:16558, includes/class-freemius.php:16646, includes/class-freemius.php:16812, includes/class-freemius.php:19040, includes/class-freemius.php:19381, includes/class-freemius.php:19391, includes/class-freemius.php:20051, includes/class-freemius.php:20924, includes/class-freemius.php:21039, includes/class-freemius.php:21183, templates/add-ons.php:57 msgctxt "exclamation" msgid "Oops" msgstr "Oops" -#: includes/class-freemius.php:3903 +#: includes/class-freemius.php:4456 msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience." msgstr "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience." -#: includes/class-freemius.php:4340 +#: includes/class-freemius.php:4878 msgctxt "addonX cannot run without pluginY" msgid "%s cannot run without %s." msgstr "%s cannot run without %s." -#: includes/class-freemius.php:4341 +#: includes/class-freemius.php:4879 msgctxt "addonX cannot run..." msgid "%s cannot run without the plugin." msgstr "%s cannot run without the plugin." -#: includes/class-freemius.php:4487, includes/class-freemius.php:4512, includes/class-freemius.php:17953 +#: includes/class-freemius.php:5052, includes/class-freemius.php:5077, includes/class-freemius.php:20122 msgid "Unexpected API error. Please contact the %s's author with the following error." msgstr "Unexpected API error. Please contact the %s's author with the following error." -#: includes/class-freemius.php:5130 +#: includes/class-freemius.php:5720 msgid "Premium %s version was successfully activated." msgstr "Premium %s version was successfully activated." -#: includes/class-freemius.php:5142, includes/class-freemius.php:7004 +#: includes/class-freemius.php:5732, includes/class-freemius.php:7599 msgctxt "Used to express elation, enthusiasm, or triumph (especially in electronic communication)." msgid "W00t" msgstr "W00t" -#: includes/class-freemius.php:5157 +#: includes/class-freemius.php:5747 msgid "You have a %s license." msgstr "You have a %s license." -#: includes/class-freemius.php:5161, includes/class-freemius.php:14337, includes/class-freemius.php:14348, includes/class-freemius.php:17177, includes/class-freemius.php:17491, includes/class-freemius.php:17557, includes/class-freemius.php:17707 +#: includes/class-freemius.php:5751, includes/class-freemius.php:15975, includes/class-freemius.php:15986, includes/class-freemius.php:19292, includes/class-freemius.php:19642, includes/class-freemius.php:19711, includes/class-freemius.php:19876 msgctxt "interjection expressing joy or exuberance" msgid "Yee-haw" msgstr "Yee-haw" -#: includes/class-freemius.php:5425 +#: includes/class-freemius.php:6015 msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license." msgstr "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license." -#: includes/class-freemius.php:5429 +#: includes/class-freemius.php:6019 msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin." msgstr "%s is a premium only add-on. You have to purchase a license first before activating the plugin." -#: includes/class-freemius.php:5438, templates/add-ons.php:103, templates/account/partials/addon.php:288 +#: includes/class-freemius.php:6028, templates/add-ons.php:186, templates/account/partials/addon.php:381 msgid "More information about %s" msgstr "More information about %s" -#: includes/class-freemius.php:5439 +#: includes/class-freemius.php:6029 msgid "Purchase License" msgstr "Purchase License" -#: includes/class-freemius.php:6372, templates/connect.php:163 +#: includes/class-freemius.php:6964, templates/connect.php:163 msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s." msgstr "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s." -#: includes/class-freemius.php:6376 +#: includes/class-freemius.php:6968 msgid "start the trial" msgstr "start the trial" -#: includes/class-freemius.php:6377, templates/connect.php:167 +#: includes/class-freemius.php:6969, templates/connect.php:167 msgid "complete the install" msgstr "complete the install" -#: includes/class-freemius.php:6490 +#: includes/class-freemius.php:7081 msgid "You are just one step away - %s" msgstr "You are just one step away - %s" -#: includes/class-freemius.php:6493 +#: includes/class-freemius.php:7084 msgctxt "%s - plugin name. As complete \"PluginX\" activation now" msgid "Complete \"%s\" Activation Now" msgstr "Complete \"%s\" Activation Now" -#: includes/class-freemius.php:6571 +#: includes/class-freemius.php:7162 msgid "We made a few tweaks to the %s, %s" msgstr "We made a few tweaks to the %s, %s" -#: includes/class-freemius.php:6575 +#: includes/class-freemius.php:7166 msgid "Opt in to make \"%s\" better!" msgstr "Opt in to make \"%s\" better!" -#: includes/class-freemius.php:7003 +#: includes/class-freemius.php:7598 msgid "The upgrade of %s was successfully completed." msgstr "The upgrade of %s was successfully completed." -#: includes/class-freemius.php:8925, includes/class-fs-plugin-updater.php:886, includes/class-fs-plugin-updater.php:1081, includes/class-fs-plugin-updater.php:1088, templates/auto-installation.php:32 +#: includes/class-freemius.php:9802, includes/class-fs-plugin-updater.php:1038, includes/class-fs-plugin-updater.php:1233, includes/class-fs-plugin-updater.php:1240, templates/auto-installation.php:32 msgid "Add-On" msgstr "Add-On" -#: includes/class-freemius.php:8927, templates/debug.php:359, templates/debug.php:520 +#: includes/class-freemius.php:9804, templates/account.php:335, templates/account.php:343, templates/debug.php:360, templates/debug.php:551 msgid "Plugin" msgstr "Plugin" -#: includes/class-freemius.php:8928, templates/debug.php:359, templates/debug.php:520, templates/forms/deactivation/form.php:67 +#: includes/class-freemius.php:9805, templates/account.php:336, templates/account.php:344, templates/debug.php:360, templates/debug.php:551, templates/forms/deactivation/form.php:71 msgid "Theme" msgstr "Theme" -#: includes/class-freemius.php:11412 +#: includes/class-freemius.php:12596 +msgid "An unknown error has occurred while trying to set the user's beta mode." +msgstr "An unknown error has occurred while trying to set the user's beta mode." + +#: includes/class-freemius.php:13020 msgid "Invalid site details collection." msgstr "Invalid site details collection." -#: includes/class-freemius.php:11532 +#: includes/class-freemius.php:13140 msgid "We couldn't find your email address in the system, are you sure it's the right address?" msgstr "We couldn't find your email address in the system, are you sure it's the right address?" -#: includes/class-freemius.php:11534 +#: includes/class-freemius.php:13142 msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?" msgstr "We can't see any active licenses associated with that email address, are you sure it's the right address?" -#: includes/class-freemius.php:11808 +#: includes/class-freemius.php:13416 msgid "Account is pending activation." msgstr "Account is pending activation." -#: includes/class-freemius.php:11920, templates/forms/premium-versions-upgrade-handler.php:47 +#: includes/class-freemius.php:13528, templates/forms/premium-versions-upgrade-handler.php:47 msgid "Buy a license now" msgstr "Buy a license now" -#: includes/class-freemius.php:11932, templates/forms/premium-versions-upgrade-handler.php:46 +#: includes/class-freemius.php:13540, templates/forms/premium-versions-upgrade-handler.php:46 msgid "Renew your license now" msgstr "Renew your license now" -#: includes/class-freemius.php:11936 +#: includes/class-freemius.php:13544 msgid "%s to access version %s security & feature updates, and support." msgstr "%s to access version %s security & feature updates, and support." -#: includes/class-freemius.php:14319 +#: includes/class-freemius.php:15957 msgid "%s activation was successfully completed." msgstr "%s activation was successfully completed." -#: includes/class-freemius.php:14333 +#: includes/class-freemius.php:15971 msgid "Your account was successfully activated with the %s plan." msgstr "Your account was successfully activated with the %s plan." -#: includes/class-freemius.php:14344, includes/class-freemius.php:17553 +#: includes/class-freemius.php:15982, includes/class-freemius.php:19707 msgid "Your trial has been successfully started." msgstr "Your trial has been successfully started." -#: includes/class-freemius.php:14914, includes/class-freemius.php:14966, includes/class-freemius.php:15028 +#: includes/class-freemius.php:16556, includes/class-freemius.php:16644, includes/class-freemius.php:16810 msgid "Couldn't activate %s." msgstr "Couldn't activate %s." -#: includes/class-freemius.php:14915, includes/class-freemius.php:14967, includes/class-freemius.php:15029 +#: includes/class-freemius.php:16557, includes/class-freemius.php:16645, includes/class-freemius.php:16811 msgid "Please contact us with the following message:" msgstr "Please contact us with the following message:" -#: includes/class-freemius.php:15378, includes/class-freemius.php:19839 +#: includes/class-freemius.php:16641, templates/forms/data-debug-mode.php:162 +msgid "An unknown error has occurred." +msgstr "An unknown error has occurred." + +#: includes/class-freemius.php:17168, includes/class-freemius.php:22082 msgid "Upgrade" msgstr "Upgrade" -#: includes/class-freemius.php:15384 +#: includes/class-freemius.php:17174 msgid "Start Trial" msgstr "Start Trial" -#: includes/class-freemius.php:15386 +#: includes/class-freemius.php:17176 msgid "Pricing" msgstr "Pricing" -#: includes/class-freemius.php:15448, includes/class-freemius.php:15450 +#: includes/class-freemius.php:17256, includes/class-freemius.php:17258 msgid "Affiliation" msgstr "Affiliation" -#: includes/class-freemius.php:15478, includes/class-freemius.php:15480, templates/account.php:150, templates/debug.php:324 +#: includes/class-freemius.php:17286, includes/class-freemius.php:17288, templates/account.php:183, templates/debug.php:326 msgid "Account" msgstr "Account" -#: includes/class-freemius.php:15493, includes/class-freemius.php:15495, includes/customizer/class-fs-customizer-support-section.php:60 +#: includes/class-freemius.php:17302, includes/class-freemius.php:17304, includes/customizer/class-fs-customizer-support-section.php:60 msgid "Contact Us" msgstr "Contact Us" -#: includes/class-freemius.php:15505, includes/class-freemius.php:15507, includes/class-freemius.php:19849, templates/account.php:100, templates/account/partials/addon.php:41 +#: includes/class-freemius.php:17315, includes/class-freemius.php:17317, includes/class-freemius.php:22096, templates/account.php:111, templates/account/partials/addon.php:44 msgid "Add-Ons" msgstr "Add-Ons" -#: includes/class-freemius.php:15541 +#: includes/class-freemius.php:17351 msgctxt "ASCII arrow left icon" msgid "←" msgstr "←" -#: includes/class-freemius.php:15541 +#: includes/class-freemius.php:17351 msgctxt "ASCII arrow right icon" msgid "➤" msgstr "➤" -#: includes/class-freemius.php:15543, templates/pricing.php:97 +#: includes/class-freemius.php:17353, templates/pricing.php:103 msgctxt "noun" msgid "Pricing" msgstr "Pricing" -#: includes/class-freemius.php:15756, includes/customizer/class-fs-customizer-support-section.php:67 +#: includes/class-freemius.php:17566, includes/customizer/class-fs-customizer-support-section.php:67 msgid "Support Forum" msgstr "Support Forum" -#: includes/class-freemius.php:16542 +#: includes/class-freemius.php:18536 msgid "Your email has been successfully verified - you are AWESOME!" msgstr "Your email has been successfully verified - you are AWESOME!" -#: includes/class-freemius.php:16543 +#: includes/class-freemius.php:18537 msgctxt "a positive response" msgid "Right on" msgstr "Right on" -#: includes/class-freemius.php:17168 +#: includes/class-freemius.php:19041 +msgid "seems like the key you entered doesn't match our records." +msgstr "seems like the key you entered doesn't match our records." + +#: includes/class-freemius.php:19065 +msgid "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." +msgstr "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." + +#: includes/class-freemius.php:19283 msgid "Your %s Add-on plan was successfully upgraded." msgstr "Your %s Add-on plan was successfully upgraded." -#: includes/class-freemius.php:17170 +#: includes/class-freemius.php:19285 msgid "%s Add-on was successfully purchased." msgstr "%s Add-on was successfully purchased." -#: includes/class-freemius.php:17173 +#: includes/class-freemius.php:19288 msgid "Download the latest version" msgstr "Download the latest version" -#: includes/class-freemius.php:17259 -msgctxt "%1s - plugin title, %2s - API domain" -msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s" -msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s" +#: includes/class-freemius.php:19374 +msgid "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s" +msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s" -#: includes/class-freemius.php:17262, includes/class-freemius.php:17678, includes/class-freemius.php:17755 +#: includes/class-freemius.php:19380, includes/class-freemius.php:19390, includes/class-freemius.php:19835, includes/class-freemius.php:19924 msgid "Error received from the server:" msgstr "Error received from the server:" -#: includes/class-freemius.php:17272 +#: includes/class-freemius.php:19390 msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again." msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again." -#: includes/class-freemius.php:17454, includes/class-freemius.php:17683, includes/class-freemius.php:17726, includes/class-freemius.php:17829 +#: includes/class-freemius.php:19604, includes/class-freemius.php:19840, includes/class-freemius.php:19895, includes/class-freemius.php:19998 msgctxt "something somebody says when they are thinking about what you have just said." msgid "Hmm" msgstr "Hmm" -#: includes/class-freemius.php:17467 +#: includes/class-freemius.php:19617 msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry." msgstr "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry." -#: includes/class-freemius.php:17468, templates/account.php:102, templates/add-ons.php:134, templates/account/partials/addon.php:43 +#: includes/class-freemius.php:19618, templates/account.php:113, templates/add-ons.php:250, templates/account/partials/addon.php:46 msgctxt "trial period" msgid "Trial" msgstr "Trial" -#: includes/class-freemius.php:17473 +#: includes/class-freemius.php:19623 msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s." msgstr "I have upgraded my account but when I try to Sync the License, the plan remains %s." -#: includes/class-freemius.php:17477, includes/class-freemius.php:17535 +#: includes/class-freemius.php:19627, includes/class-freemius.php:19686 msgid "Please contact us here" msgstr "Please contact us here" -#: includes/class-freemius.php:17487 +#: includes/class-freemius.php:19638 +msgid "Your plan was successfully activated." +msgstr "Your plan was successfully activated." + +#: includes/class-freemius.php:19639 msgid "Your plan was successfully upgraded." msgstr "Your plan was successfully upgraded." -#: includes/class-freemius.php:17505 +#: includes/class-freemius.php:19656 msgid "Your plan was successfully changed to %s." msgstr "Your plan was successfully changed to %s." -#: includes/class-freemius.php:17521 +#: includes/class-freemius.php:19672 msgid "Your license has expired. You can still continue using the free %s forever." msgstr "Your license has expired. You can still continue using the free %s forever." -#: includes/class-freemius.php:17523 +#: includes/class-freemius.php:19674 msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." msgstr "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." -#: includes/class-freemius.php:17531 +#: includes/class-freemius.php:19682 msgid "Your license has been cancelled. If you think it's a mistake, please contact support." msgstr "Your license has been cancelled. If you think it's a mistake, please contact support." -#: includes/class-freemius.php:17544 +#: includes/class-freemius.php:19695 msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support." msgstr "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support." -#: includes/class-freemius.php:17567 +#: includes/class-freemius.php:19721 msgid "Your free trial has expired. You can still continue using all our free features." msgstr "Your free trial has expired. You can still continue using all our free features." -#: includes/class-freemius.php:17569 +#: includes/class-freemius.php:19723 msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." -#: includes/class-freemius.php:17674 +#: includes/class-freemius.php:19831 msgid "It looks like the license could not be activated." msgstr "It looks like the license could not be activated." -#: includes/class-freemius.php:17704 +#: includes/class-freemius.php:19873 msgid "Your license was successfully activated." msgstr "Your license was successfully activated." -#: includes/class-freemius.php:17730 +#: includes/class-freemius.php:19899 msgid "It looks like your site currently doesn't have an active license." msgstr "It looks like your site currently doesn't have an active license." -#: includes/class-freemius.php:17754 +#: includes/class-freemius.php:19923 msgid "It looks like the license deactivation failed." msgstr "It looks like the license deactivation failed." -#: includes/class-freemius.php:17782 +#: includes/class-freemius.php:19951 msgid "Your license was successfully deactivated, you are back to the %s plan." msgstr "Your license was successfully deactivated, you are back to the %s plan." -#: includes/class-freemius.php:17783 +#: includes/class-freemius.php:19952 msgid "O.K" msgstr "O.K" -#: includes/class-freemius.php:17836 +#: includes/class-freemius.php:20005 msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes." msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes." -#: includes/class-freemius.php:17845 +#: includes/class-freemius.php:20014 msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s." msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s." -#: includes/class-freemius.php:17887 +#: includes/class-freemius.php:20056 msgid "You are already running the %s in a trial mode." msgstr "You are already running the %s in a trial mode." -#: includes/class-freemius.php:17898 +#: includes/class-freemius.php:20067 msgid "You already utilized a trial before." msgstr "You already utilized a trial before." -#: includes/class-freemius.php:17912 +#: includes/class-freemius.php:20081 msgid "Plan %s do not exist, therefore, can't start a trial." msgstr "Plan %s do not exist, therefore, can't start a trial." -#: includes/class-freemius.php:17923 +#: includes/class-freemius.php:20092 msgid "Plan %s does not support a trial period." msgstr "Plan %s does not support a trial period." -#: includes/class-freemius.php:17934 +#: includes/class-freemius.php:20103 msgid "None of the %s's plans supports a trial period." msgstr "None of the %s's plans supports a trial period." -#: includes/class-freemius.php:17984 +#: includes/class-freemius.php:20153 msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)" msgstr "It looks like you are not in trial mode anymore so there's nothing to cancel :)" -#: includes/class-freemius.php:18020 +#: includes/class-freemius.php:20189 msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes." msgstr "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes." -#: includes/class-freemius.php:18039 +#: includes/class-freemius.php:20208 msgid "Your %s free trial was successfully cancelled." msgstr "Your %s free trial was successfully cancelled." -#: includes/class-freemius.php:18346 +#: includes/class-freemius.php:20524 msgid "Version %s was released." msgstr "Version %s was released." -#: includes/class-freemius.php:18346 +#: includes/class-freemius.php:20524 msgid "Please download %s." msgstr "Please download %s." -#: includes/class-freemius.php:18353 +#: includes/class-freemius.php:20531 msgid "the latest %s version here" msgstr "the latest %s version here" -#: includes/class-freemius.php:18358 +#: includes/class-freemius.php:20536 msgid "New" msgstr "New" -#: includes/class-freemius.php:18363 +#: includes/class-freemius.php:20541 msgid "Seems like you got the latest release." msgstr "Seems like you got the latest release." -#: includes/class-freemius.php:18364 +#: includes/class-freemius.php:20542 msgid "You are all good!" msgstr "You are all good!" -#: includes/class-freemius.php:18632 +#: includes/class-freemius.php:20812 msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box." msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box." -#: includes/class-freemius.php:18769 +#: includes/class-freemius.php:20951 msgid "Site successfully opted in." msgstr "Site successfully opted in." -#: includes/class-freemius.php:18770, includes/class-freemius.php:19581 +#: includes/class-freemius.php:20952, includes/class-freemius.php:21792 msgid "Awesome" msgstr "Awesome" -#: includes/class-freemius.php:18786, templates/forms/optout.php:32 +#: includes/class-freemius.php:20968, templates/forms/optout.php:32 msgid "We appreciate your help in making the %s better by letting us track some usage data." msgstr "We appreciate your help in making the %s better by letting us track some usage data." -#: includes/class-freemius.php:18787 +#: includes/class-freemius.php:20969 msgid "Thank you!" msgstr "Thank you!" -#: includes/class-freemius.php:18794 +#: includes/class-freemius.php:20976 msgid "We will no longer be sending any usage data of %s on %s to %s." msgstr "We will no longer be sending any usage data of %s on %s to %s." -#: includes/class-freemius.php:18923 +#: includes/class-freemius.php:21105 msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder." msgstr "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder." -#: includes/class-freemius.php:18929 +#: includes/class-freemius.php:21111 msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval." msgstr "Thanks for confirming the ownership change. An email was just sent to %s for final approval." -#: includes/class-freemius.php:18934 +#: includes/class-freemius.php:21116 msgid "%s is the new owner of the account." msgstr "%s is the new owner of the account." -#: includes/class-freemius.php:18936 +#: includes/class-freemius.php:21118 msgctxt "as congratulations" msgid "Congrats" msgstr "Congrats" -#: includes/class-freemius.php:18956 +#: includes/class-freemius.php:21138 msgid "Sorry, we could not complete the email update. Another user with the same email is already registered." msgstr "Sorry, we could not complete the email update. Another user with the same email is already registered." -#: includes/class-freemius.php:18957 +#: includes/class-freemius.php:21139 msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button." msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button." -#: includes/class-freemius.php:18964 +#: includes/class-freemius.php:21146 msgid "Change Ownership" msgstr "Change Ownership" -#: includes/class-freemius.php:18972 +#: includes/class-freemius.php:21154 msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments." msgstr "Your email was successfully updated. You should receive an email with confirmation instructions in few moments." -#: includes/class-freemius.php:18984 +#: includes/class-freemius.php:21166 msgid "Please provide your full name." msgstr "Please provide your full name." -#: includes/class-freemius.php:18989 +#: includes/class-freemius.php:21171 msgid "Your name was successfully updated." msgstr "Your name was successfully updated." -#: includes/class-freemius.php:19050 +#: includes/class-freemius.php:21232 msgid "You have successfully updated your %s." msgstr "You have successfully updated your %s." -#: includes/class-freemius.php:19190 +#: includes/class-freemius.php:21372 msgid "Just letting you know that the add-ons information of %s is being pulled from an external server." msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server." -#: includes/class-freemius.php:19191 +#: includes/class-freemius.php:21373 msgctxt "advance notice of something that will need attention." msgid "Heads up" msgstr "Heads up" -#: includes/class-freemius.php:19621 +#: includes/class-freemius.php:21832 msgctxt "exclamation" msgid "Hey" msgstr "Hey" -#: includes/class-freemius.php:19621 +#: includes/class-freemius.php:21832 msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial." msgstr "How do you like %s so far? Test all our %s premium features with a %d-day free trial." -#: includes/class-freemius.php:19629 +#: includes/class-freemius.php:21840 msgid "No commitment for %s days - cancel anytime!" msgstr "No commitment for %s days - cancel anytime!" -#: includes/class-freemius.php:19630 +#: includes/class-freemius.php:21841 msgid "No credit card required" msgstr "No credit card required" -#: includes/class-freemius.php:19637, templates/forms/trial-start.php:53 +#: includes/class-freemius.php:21848, templates/forms/trial-start.php:53 msgctxt "call to action" msgid "Start free trial" msgstr "Start free trial" -#: includes/class-freemius.php:19714 +#: includes/class-freemius.php:21925 msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!" msgstr "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!" -#: includes/class-freemius.php:19723 +#: includes/class-freemius.php:21934 msgid "Learn more" msgstr "Learn more" -#: includes/class-freemius.php:19873, templates/account.php:406, templates/account.php:509, templates/connect.php:171, templates/connect.php:421, templates/forms/license-activation.php:24, templates/account/partials/addon.php:235 +#: includes/class-freemius.php:22120, templates/account.php:499, templates/account.php:624, templates/connect.php:171, templates/connect.php:421, templates/forms/license-activation.php:27, templates/account/partials/addon.php:321 msgid "Activate License" msgstr "Activate License" -#: includes/class-freemius.php:19874, templates/account.php:469, templates/account.php:508, templates/account/partials/site.php:256 +#: includes/class-freemius.php:22121, templates/account.php:571, templates/account.php:623, templates/account/partials/addon.php:322, templates/account/partials/site.php:271 msgid "Change License" msgstr "Change License" -#: includes/class-freemius.php:19956, templates/account/partials/site.php:161 +#: includes/class-freemius.php:22217, templates/account/partials/site.php:169 msgid "Opt Out" msgstr "Opt Out" -#: includes/class-freemius.php:19958, includes/class-freemius.php:19963, templates/account/partials/site.php:43, templates/account/partials/site.php:161 +#: includes/class-freemius.php:22219, includes/class-freemius.php:22225, templates/account/partials/site.php:49, templates/account/partials/site.php:169 msgid "Opt In" msgstr "Opt In" -#: includes/class-freemius.php:20187 -msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s" -msgstr " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s" +#: includes/class-freemius.php:22453 +msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s" +msgstr " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s" -#: includes/class-freemius.php:20195 +#: includes/class-freemius.php:22461 msgid "Activate %s features" msgstr "Activate %s features" -#: includes/class-freemius.php:20208 +#: includes/class-freemius.php:22474 msgid "Please follow these steps to complete the upgrade" msgstr "Please follow these steps to complete the upgrade" -#: includes/class-freemius.php:20212 +#: includes/class-freemius.php:22478 msgid "Download the latest %s version" msgstr "Download the latest %s version" -#: includes/class-freemius.php:20216 +#: includes/class-freemius.php:22482 msgid "Upload and activate the downloaded version" msgstr "Upload and activate the downloaded version" -#: includes/class-freemius.php:20218 +#: includes/class-freemius.php:22484 msgid "How to upload and activate?" msgstr "How to upload and activate?" -#: includes/class-freemius.php:20352 +#: includes/class-freemius.php:22618 msgid "%sClick here%s to choose the sites where you'd like to activate the license on." msgstr "%sClick here%s to choose the sites where you'd like to activate the license on." -#: includes/class-freemius.php:20513 +#: includes/class-freemius.php:22779 msgid "Auto installation only works for opted-in users." msgstr "Auto installation only works for opted-in users." -#: includes/class-freemius.php:20523, includes/class-freemius.php:20556, includes/class-fs-plugin-updater.php:1060, includes/class-fs-plugin-updater.php:1074 +#: includes/class-freemius.php:22789, includes/class-freemius.php:22822, includes/class-fs-plugin-updater.php:1212, includes/class-fs-plugin-updater.php:1226 msgid "Invalid module ID." msgstr "Invalid module ID." -#: includes/class-freemius.php:20532, includes/class-fs-plugin-updater.php:1096 +#: includes/class-freemius.php:22798, includes/class-fs-plugin-updater.php:1248 msgid "Premium version already active." msgstr "Premium version already active." -#: includes/class-freemius.php:20539 +#: includes/class-freemius.php:22805 msgid "You do not have a valid license to access the premium version." msgstr "You do not have a valid license to access the premium version." -#: includes/class-freemius.php:20546 +#: includes/class-freemius.php:22812 msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version." msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version." -#: includes/class-freemius.php:20564, includes/class-fs-plugin-updater.php:1095 +#: includes/class-freemius.php:22830, includes/class-fs-plugin-updater.php:1247 msgid "Premium add-on version already installed." msgstr "Premium add-on version already installed." -#: includes/class-freemius.php:20909 +#: includes/class-freemius.php:23180 msgid "View paid features" msgstr "View paid features" -#: includes/class-freemius.php:21229 +#: includes/class-freemius.php:23502 msgid "Thank you so much for using %s and its add-ons!" msgstr "Thank you so much for using %s and its add-ons!" -#: includes/class-freemius.php:21230 +#: includes/class-freemius.php:23503 msgid "Thank you so much for using %s!" msgstr "Thank you so much for using %s!" -#: includes/class-freemius.php:21236 +#: includes/class-freemius.php:23509 msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s." msgstr "You've already opted-in to our usage-tracking, which helps us keep improving the %s." -#: includes/class-freemius.php:21240 +#: includes/class-freemius.php:23513 msgid "Thank you so much for using our products!" msgstr "Thank you so much for using our products!" -#: includes/class-freemius.php:21241 +#: includes/class-freemius.php:23514 msgid "You've already opted-in to our usage-tracking, which helps us keep improving them." msgstr "You've already opted-in to our usage-tracking, which helps us keep improving them." -#: includes/class-freemius.php:21260 +#: includes/class-freemius.php:23533 msgid "%s and its add-ons" msgstr "%s and its add-ons" -#: includes/class-freemius.php:21269 +#: includes/class-freemius.php:23542 msgid "Products" msgstr "Products" -#: includes/class-freemius.php:21276, templates/connect.php:272 +#: includes/class-freemius.php:23549, templates/connect.php:272 msgid "Yes" msgstr "Yes" -#: includes/class-freemius.php:21277, templates/connect.php:273 +#: includes/class-freemius.php:23550, templates/connect.php:273 msgid "send me security & feature updates, educational content and offers." msgstr "send me security & feature updates, educational content and offers." -#: includes/class-freemius.php:21278, templates/connect.php:278 +#: includes/class-freemius.php:23551, templates/connect.php:278 msgid "No" msgstr "No" -#: includes/class-freemius.php:21280, templates/connect.php:280 +#: includes/class-freemius.php:23553, templates/connect.php:280 msgid "do %sNOT%s send me security & feature updates, educational content and offers." msgstr "do %sNOT%s send me security & feature updates, educational content and offers." -#: includes/class-freemius.php:21290 -msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂" -msgstr "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂" +#: includes/class-freemius.php:23563 +msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard :-)" +msgstr "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard :-)" -#: includes/class-freemius.php:21292, templates/connect.php:287 +#: includes/class-freemius.php:23565, templates/connect.php:287 msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:" msgstr "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:" -#: includes/class-freemius.php:21574 +#: includes/class-freemius.php:23847 msgid "License key is empty." msgstr "License key is empty." -#: includes/class-fs-plugin-updater.php:184, templates/forms/premium-versions-upgrade-handler.php:57 +#: includes/class-fs-plugin-updater.php:206, templates/forms/premium-versions-upgrade-handler.php:57 msgid "Renew license" msgstr "Renew license" -#: includes/class-fs-plugin-updater.php:189, templates/forms/premium-versions-upgrade-handler.php:58 +#: includes/class-fs-plugin-updater.php:211, templates/forms/premium-versions-upgrade-handler.php:58 msgid "Buy license" msgstr "Buy license" -#: includes/class-fs-plugin-updater.php:278 +#: includes/class-fs-plugin-updater.php:321, includes/class-fs-plugin-updater.php:354 msgid "There is a %s of %s available." msgstr "There is a %s of %s available." -#: includes/class-fs-plugin-updater.php:282 +#: includes/class-fs-plugin-updater.php:323, includes/class-fs-plugin-updater.php:359 +msgid "new Beta version" +msgstr "new Beta version" + +#: includes/class-fs-plugin-updater.php:324, includes/class-fs-plugin-updater.php:360 msgid "new version" msgstr "new version" -#: includes/class-fs-plugin-updater.php:305 +#: includes/class-fs-plugin-updater.php:383 msgid "Important Upgrade Notice:" msgstr "Important Upgrade Notice:" -#: includes/class-fs-plugin-updater.php:1125 +#: includes/class-fs-plugin-updater.php:1277 msgid "Installing plugin: %s" msgstr "Installing plugin: %s" -#: includes/class-fs-plugin-updater.php:1166 +#: includes/class-fs-plugin-updater.php:1318 msgid "Unable to connect to the filesystem. Please confirm your credentials." msgstr "Unable to connect to the filesystem. Please confirm your credentials." -#: includes/class-fs-plugin-updater.php:1348 +#: includes/class-fs-plugin-updater.php:1500 msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work." msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work." -#: includes/fs-plugin-info-dialog.php:369, templates/account/partials/addon.php:292 +#: includes/fs-plugin-info-dialog.php:535 +msgid "Purchase More" +msgstr "Purchase More" + +#: includes/fs-plugin-info-dialog.php:536, templates/account/partials/addon.php:385 msgctxt "verb" msgid "Purchase" msgstr "Purchase" -#: includes/fs-plugin-info-dialog.php:372 +#: includes/fs-plugin-info-dialog.php:540 msgid "Start my free %s" msgstr "Start my free %s" -#: includes/fs-plugin-info-dialog.php:413 +#: includes/fs-plugin-info-dialog.php:738 +msgid "Install Free Version Update Now" +msgstr "Install Free Version Update Now" + +#: includes/fs-plugin-info-dialog.php:739, templates/account.php:560 +msgid "Install Update Now" +msgstr "Install Update Now" + +#: includes/fs-plugin-info-dialog.php:748 msgid "Install Free Version Now" msgstr "Install Free Version Now" -#: includes/fs-plugin-info-dialog.php:414, templates/auto-installation.php:111, templates/account/partials/addon.php:272, templates/account/partials/addon.php:322 +#: includes/fs-plugin-info-dialog.php:749, templates/add-ons.php:323, templates/auto-installation.php:111, templates/account/partials/addon.php:365, templates/account/partials/addon.php:418 msgid "Install Now" msgstr "Install Now" -#: includes/fs-plugin-info-dialog.php:425 +#: includes/fs-plugin-info-dialog.php:765 msgctxt "as download latest version" msgid "Download Latest Free Version" msgstr "Download Latest Free Version" -#: includes/fs-plugin-info-dialog.php:426, templates/account.php:80, templates/account/partials/addon.php:21 +#: includes/fs-plugin-info-dialog.php:766, templates/account.php:91, templates/add-ons.php:37, templates/account/partials/addon.php:25 msgctxt "as download latest version" msgid "Download Latest" msgstr "Download Latest" -#: includes/fs-plugin-info-dialog.php:436 -msgid "Install Free Version Update Now" -msgstr "Install Free Version Update Now" - -#: includes/fs-plugin-info-dialog.php:437, templates/account.php:460 -msgid "Install Update Now" -msgstr "Install Update Now" - -#: includes/fs-plugin-info-dialog.php:448 -msgid "Newer Free Version (%s) Installed" -msgstr "Newer Free Version (%s) Installed" - -#: includes/fs-plugin-info-dialog.php:449 -msgid "Newer Version (%s) Installed" -msgstr "Newer Version (%s) Installed" +#: includes/fs-plugin-info-dialog.php:781, templates/add-ons.php:329, templates/account/partials/addon.php:356, templates/account/partials/addon.php:412 +msgid "Activate this add-on" +msgstr "Activate this add-on" -#: includes/fs-plugin-info-dialog.php:457 -msgid "Latest Free Version Installed" -msgstr "Latest Free Version Installed" +#: includes/fs-plugin-info-dialog.php:783, templates/connect.php:418 +msgid "Activate Free Version" +msgstr "Activate Free Version" -#: includes/fs-plugin-info-dialog.php:458 -msgid "Latest Version Installed" -msgstr "Latest Version Installed" +#: includes/fs-plugin-info-dialog.php:784, templates/account.php:115, templates/add-ons.php:330, templates/account/partials/addon.php:48 +msgid "Activate" +msgstr "Activate" -#: includes/fs-plugin-info-dialog.php:613 +#: includes/fs-plugin-info-dialog.php:994 msgctxt "Plugin installer section title" msgid "Description" msgstr "Description" -#: includes/fs-plugin-info-dialog.php:614 +#: includes/fs-plugin-info-dialog.php:995 msgctxt "Plugin installer section title" msgid "Installation" msgstr "Installation" -#: includes/fs-plugin-info-dialog.php:615 +#: includes/fs-plugin-info-dialog.php:996 msgctxt "Plugin installer section title" msgid "FAQ" msgstr "FAQ" -#: includes/fs-plugin-info-dialog.php:616, templates/plugin-info/description.php:55 +#: includes/fs-plugin-info-dialog.php:997, templates/plugin-info/description.php:55 msgid "Screenshots" msgstr "Screenshots" -#: includes/fs-plugin-info-dialog.php:617 +#: includes/fs-plugin-info-dialog.php:998 msgctxt "Plugin installer section title" msgid "Changelog" msgstr "Changelog" -#: includes/fs-plugin-info-dialog.php:618 +#: includes/fs-plugin-info-dialog.php:999 msgctxt "Plugin installer section title" msgid "Reviews" msgstr "Reviews" -#: includes/fs-plugin-info-dialog.php:619 +#: includes/fs-plugin-info-dialog.php:1000 msgctxt "Plugin installer section title" msgid "Other Notes" msgstr "Other Notes" -#: includes/fs-plugin-info-dialog.php:634 +#: includes/fs-plugin-info-dialog.php:1015 msgctxt "Plugin installer section title" msgid "Features & Pricing" msgstr "Features & Pricing" -#: includes/fs-plugin-info-dialog.php:644 +#: includes/fs-plugin-info-dialog.php:1025 msgid "Plugin Install" msgstr "Plugin Install" -#: includes/fs-plugin-info-dialog.php:716 +#: includes/fs-plugin-info-dialog.php:1097 msgctxt "e.g. Professional Plan" msgid "%s Plan" msgstr "%s Plan" -#: includes/fs-plugin-info-dialog.php:742 +#: includes/fs-plugin-info-dialog.php:1123 msgctxt "e.g. the best product" msgid "Best" msgstr "Best" -#: includes/fs-plugin-info-dialog.php:748, includes/fs-plugin-info-dialog.php:768 +#: includes/fs-plugin-info-dialog.php:1129, includes/fs-plugin-info-dialog.php:1149 msgctxt "as every month" msgid "Monthly" msgstr "Monthly" -#: includes/fs-plugin-info-dialog.php:751 +#: includes/fs-plugin-info-dialog.php:1132 msgctxt "as once a year" msgid "Annual" msgstr "Annual" -#: includes/fs-plugin-info-dialog.php:754 +#: includes/fs-plugin-info-dialog.php:1135 msgid "Lifetime" msgstr "Lifetime" -#: includes/fs-plugin-info-dialog.php:768, includes/fs-plugin-info-dialog.php:770, includes/fs-plugin-info-dialog.php:772 +#: includes/fs-plugin-info-dialog.php:1149, includes/fs-plugin-info-dialog.php:1151, includes/fs-plugin-info-dialog.php:1153 msgctxt "e.g. billed monthly" msgid "Billed %s" msgstr "Billed %s" -#: includes/fs-plugin-info-dialog.php:770 +#: includes/fs-plugin-info-dialog.php:1151 msgctxt "as once a year" msgid "Annually" msgstr "Annually" -#: includes/fs-plugin-info-dialog.php:772 +#: includes/fs-plugin-info-dialog.php:1153 msgctxt "as once a year" msgid "Once" msgstr "Once" -#: includes/fs-plugin-info-dialog.php:778 +#: includes/fs-plugin-info-dialog.php:1159 msgid "Single Site License" msgstr "Single Site License" -#: includes/fs-plugin-info-dialog.php:780 +#: includes/fs-plugin-info-dialog.php:1161 msgid "Unlimited Licenses" msgstr "Unlimited Licenses" -#: includes/fs-plugin-info-dialog.php:782 +#: includes/fs-plugin-info-dialog.php:1163 msgid "Up to %s Sites" msgstr "Up to %s Sites" -#: includes/fs-plugin-info-dialog.php:792, templates/plugin-info/features.php:82 +#: includes/fs-plugin-info-dialog.php:1173, templates/plugin-info/features.php:82 msgctxt "as monthly period" msgid "mo" msgstr "mo" -#: includes/fs-plugin-info-dialog.php:799, templates/plugin-info/features.php:80 +#: includes/fs-plugin-info-dialog.php:1180, templates/plugin-info/features.php:80 msgctxt "as annual period" msgid "year" msgstr "year" -#: includes/fs-plugin-info-dialog.php:853 +#: includes/fs-plugin-info-dialog.php:1234 msgctxt "noun" msgid "Price" msgstr "Price" -#: includes/fs-plugin-info-dialog.php:901 +#: includes/fs-plugin-info-dialog.php:1282 msgid "Save %s" msgstr "Save %s" -#: includes/fs-plugin-info-dialog.php:911 +#: includes/fs-plugin-info-dialog.php:1292 msgid "No commitment for %s - cancel anytime" msgstr "No commitment for %s - cancel anytime" -#: includes/fs-plugin-info-dialog.php:914 +#: includes/fs-plugin-info-dialog.php:1295 msgid "After your free %s, pay as little as %s" msgstr "After your free %s, pay as little as %s" -#: includes/fs-plugin-info-dialog.php:925 +#: includes/fs-plugin-info-dialog.php:1306 msgid "Details" msgstr "Details" -#: includes/fs-plugin-info-dialog.php:929, templates/account.php:91, templates/debug.php:201, templates/debug.php:238, templates/debug.php:452, templates/account/partials/addon.php:32 +#: includes/fs-plugin-info-dialog.php:1310, templates/account.php:102, templates/debug.php:203, templates/debug.php:240, templates/debug.php:457, templates/account/partials/addon.php:36 msgctxt "product version" msgid "Version" msgstr "Version" -#: includes/fs-plugin-info-dialog.php:936 +#: includes/fs-plugin-info-dialog.php:1317 msgctxt "as the plugin author" msgid "Author" msgstr "Author" -#: includes/fs-plugin-info-dialog.php:943 +#: includes/fs-plugin-info-dialog.php:1324 msgid "Last Updated" msgstr "Last Updated" -#: includes/fs-plugin-info-dialog.php:948, templates/account.php:376 +#: includes/fs-plugin-info-dialog.php:1329, templates/account.php:468 msgctxt "x-ago" msgid "%s ago" msgstr "%s ago" -#: includes/fs-plugin-info-dialog.php:957 +#: includes/fs-plugin-info-dialog.php:1338 msgid "Requires WordPress Version" msgstr "Requires WordPress Version" -#: includes/fs-plugin-info-dialog.php:958 +#: includes/fs-plugin-info-dialog.php:1339 msgid "%s or higher" msgstr "%s or higher" -#: includes/fs-plugin-info-dialog.php:965 +#: includes/fs-plugin-info-dialog.php:1346 msgid "Compatible up to" msgstr "Compatible up to" -#: includes/fs-plugin-info-dialog.php:973 +#: includes/fs-plugin-info-dialog.php:1354 msgid "Downloaded" msgstr "Downloaded" -#: includes/fs-plugin-info-dialog.php:977 +#: includes/fs-plugin-info-dialog.php:1358 msgid "%s time" msgstr "%s time" -#: includes/fs-plugin-info-dialog.php:979 +#: includes/fs-plugin-info-dialog.php:1360 msgid "%s times" msgstr "%s times" -#: includes/fs-plugin-info-dialog.php:989 +#: includes/fs-plugin-info-dialog.php:1370 msgid "WordPress.org Plugin Page" msgstr "WordPress.org Plugin Page" -#: includes/fs-plugin-info-dialog.php:997 +#: includes/fs-plugin-info-dialog.php:1378 msgid "Plugin Homepage" msgstr "Plugin Homepage" -#: includes/fs-plugin-info-dialog.php:1005, includes/fs-plugin-info-dialog.php:1087 +#: includes/fs-plugin-info-dialog.php:1386, includes/fs-plugin-info-dialog.php:1468 msgid "Donate to this plugin" msgstr "Donate to this plugin" -#: includes/fs-plugin-info-dialog.php:1012 +#: includes/fs-plugin-info-dialog.php:1393 msgid "Average Rating" msgstr "Average Rating" -#: includes/fs-plugin-info-dialog.php:1019 +#: includes/fs-plugin-info-dialog.php:1400 msgid "based on %s" msgstr "based on %s" -#: includes/fs-plugin-info-dialog.php:1023 +#: includes/fs-plugin-info-dialog.php:1404 msgid "%s rating" msgstr "%s rating" -#: includes/fs-plugin-info-dialog.php:1025 +#: includes/fs-plugin-info-dialog.php:1406 msgid "%s ratings" msgstr "%s ratings" -#: includes/fs-plugin-info-dialog.php:1040 +#: includes/fs-plugin-info-dialog.php:1421 msgid "%s star" msgstr "%s star" -#: includes/fs-plugin-info-dialog.php:1042 +#: includes/fs-plugin-info-dialog.php:1423 msgid "%s stars" msgstr "%s stars" -#: includes/fs-plugin-info-dialog.php:1053 +#: includes/fs-plugin-info-dialog.php:1434 msgid "Click to see reviews that provided a rating of %s" msgstr "Click to see reviews that provided a rating of %s" -#: includes/fs-plugin-info-dialog.php:1066 +#: includes/fs-plugin-info-dialog.php:1447 msgid "Contributors" msgstr "Contributors" -#: includes/fs-plugin-info-dialog.php:1095, includes/fs-plugin-info-dialog.php:1097 +#: includes/fs-plugin-info-dialog.php:1476, includes/fs-plugin-info-dialog.php:1478 msgid "Warning" msgstr "Warning" -#: includes/fs-plugin-info-dialog.php:1095 +#: includes/fs-plugin-info-dialog.php:1476 msgid "This plugin has not been tested with your current version of WordPress." msgstr "This plugin has not been tested with your current version of WordPress." -#: includes/fs-plugin-info-dialog.php:1097 +#: includes/fs-plugin-info-dialog.php:1478 msgid "This plugin has not been marked as compatible with your version of WordPress." msgstr "This plugin has not been marked as compatible with your version of WordPress." -#: includes/fs-plugin-info-dialog.php:1116 +#: includes/fs-plugin-info-dialog.php:1497 msgid "Paid add-on must be deployed to Freemius." msgstr "Paid add-on must be deployed to Freemius." -#: includes/fs-plugin-info-dialog.php:1117 +#: includes/fs-plugin-info-dialog.php:1498 msgid "Add-on must be deployed to WordPress.org or Freemius." msgstr "Add-on must be deployed to WordPress.org or Freemius." -#: templates/account.php:81, templates/forms/subscription-cancellation.php:96, templates/account/partials/addon.php:22, templates/account/partials/site.php:295 +#: includes/fs-plugin-info-dialog.php:1519 +msgid "Newer Version (%s) Installed" +msgstr "Newer Version (%s) Installed" + +#: includes/fs-plugin-info-dialog.php:1520 +msgid "Newer Free Version (%s) Installed" +msgstr "Newer Free Version (%s) Installed" + +#: includes/fs-plugin-info-dialog.php:1527 +msgid "Latest Version Installed" +msgstr "Latest Version Installed" + +#: includes/fs-plugin-info-dialog.php:1528 +msgid "Latest Free Version Installed" +msgstr "Latest Free Version Installed" + +#: templates/account.php:92, templates/forms/subscription-cancellation.php:96, templates/account/partials/addon.php:26, templates/account/partials/site.php:311 msgid "Downgrading your plan" msgstr "Downgrading your plan" -#: templates/account.php:82, templates/forms/subscription-cancellation.php:97, templates/account/partials/addon.php:23, templates/account/partials/site.php:296 +#: templates/account.php:93, templates/forms/subscription-cancellation.php:97, templates/account/partials/addon.php:27, templates/account/partials/site.php:312 msgid "Cancelling the subscription" msgstr "Cancelling the subscription" -#. translators: %1s: Either 'Downgrading your plan' or 'Cancelling the subscription' -#: templates/account.php:84, templates/forms/subscription-cancellation.php:99, templates/account/partials/addon.php:25, templates/account/partials/site.php:298 -msgid "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s." -msgstr "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s." +#. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the subscription' +#: templates/account.php:95, templates/forms/subscription-cancellation.php:99, templates/account/partials/site.php:314 +msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s." +msgstr "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s." -#: templates/account.php:85, templates/forms/subscription-cancellation.php:100, templates/account/partials/addon.php:26, templates/account/partials/site.php:299 +#: templates/account.php:96, templates/forms/subscription-cancellation.php:100, templates/account/partials/addon.php:30, templates/account/partials/site.php:315 msgid "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price." msgstr "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price." -#: templates/account.php:86, templates/forms/subscription-cancellation.php:106, templates/account/partials/addon.php:27 +#: templates/account.php:97, templates/forms/subscription-cancellation.php:106, templates/account/partials/addon.php:31 msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?" msgstr "Cancelling the trial will immediately block access to all premium features. Are you sure?" -#: templates/account.php:87, templates/forms/subscription-cancellation.php:101, templates/account/partials/addon.php:28, templates/account/partials/site.php:300 +#: templates/account.php:98, templates/forms/subscription-cancellation.php:101, templates/account/partials/addon.php:32, templates/account/partials/site.php:316 msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support." msgstr "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support." -#: templates/account.php:88, templates/forms/subscription-cancellation.php:102, templates/account/partials/addon.php:29, templates/account/partials/site.php:301 +#: templates/account.php:99, templates/forms/subscription-cancellation.php:102, templates/account/partials/addon.php:33, templates/account/partials/site.php:317 msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features." msgstr "Once your license expires you can still use the Free version but you will NOT have access to the %s features." #. translators: %s: Plan title (e.g. "Professional") -#: templates/account.php:90, templates/account/partials/activate-license-button.php:31, templates/account/partials/addon.php:31 +#: templates/account.php:101, templates/account/partials/activate-license-button.php:31, templates/account/partials/addon.php:35 msgid "Activate %s Plan" msgstr "Activate %s Plan" #. translators: %s: Time period (e.g. Auto renews in "2 months") -#: templates/account.php:93, templates/account/partials/addon.php:34, templates/account/partials/site.php:275 +#: templates/account.php:104, templates/account/partials/addon.php:38, templates/account/partials/site.php:291 msgid "Auto renews in %s" msgstr "Auto renews in %s" #. translators: %s: Time period (e.g. Expires in "2 months") -#: templates/account.php:95, templates/account/partials/addon.php:36, templates/account/partials/site.php:277 +#: templates/account.php:106, templates/account/partials/addon.php:40, templates/account/partials/site.php:293 msgid "Expires in %s" msgstr "Expires in %s" -#: templates/account.php:96, templates/account/partials/addon.php:37 +#: templates/account.php:107 msgctxt "as synchronize license" msgid "Sync License" msgstr "Sync License" -#: templates/account.php:97, templates/account/partials/addon.php:38 +#: templates/account.php:108, templates/account/partials/addon.php:41 msgid "Cancel Trial" msgstr "Cancel Trial" -#: templates/account.php:98, templates/account/partials/addon.php:39 +#: templates/account.php:109, templates/account/partials/addon.php:42 msgid "Change Plan" msgstr "Change Plan" -#: templates/account.php:99, templates/account/partials/addon.php:40 +#: templates/account.php:110, templates/account/partials/addon.php:43 msgctxt "verb" msgid "Upgrade" msgstr "Upgrade" -#: templates/account.php:101, templates/account/partials/addon.php:42, templates/account/partials/site.php:302 +#: templates/account.php:112, templates/account/partials/addon.php:45, templates/account/partials/site.php:318 msgctxt "verb" msgid "Downgrade" msgstr "Downgrade" -#: templates/account.php:103, templates/add-ons.php:130, templates/plugin-info/features.php:72, templates/account/partials/addon.php:44, templates/account/partials/site.php:31 +#: templates/account.php:114, templates/add-ons.php:246, templates/plugin-info/features.php:72, templates/account/partials/addon.php:47, templates/account/partials/site.php:33 msgid "Free" msgstr "Free" -#: templates/account.php:104, templates/account/partials/addon.php:45 -msgid "Activate" -msgstr "Activate" - -#: templates/account.php:105, templates/debug.php:371, includes/customizer/class-fs-customizer-upsell-control.php:106, templates/account/partials/addon.php:46 +#: templates/account.php:116, templates/debug.php:373, includes/customizer/class-fs-customizer-upsell-control.php:110, templates/account/partials/addon.php:49 msgctxt "as product pricing plan" msgid "Plan" msgstr "Plan" -#: templates/account.php:158 +#: templates/account.php:117 +msgid "Bundle Plan" +msgstr "Bundle Plan" + +#: templates/account.php:191 msgid "Free Trial" msgstr "Free Trial" -#: templates/account.php:169 +#: templates/account.php:202 msgid "Account Details" msgstr "Account Details" -#: templates/account.php:179 +#: templates/account.php:209, templates/forms/data-debug-mode.php:33 +msgid "Start Debug" +msgstr "Start Debug" + +#: templates/account.php:211 +msgid "Stop Debug" +msgstr "Stop Debug" + +#: templates/account.php:218 +msgid "Billing & Invoices" +msgstr "Billing & Invoices" + +#: templates/account.php:229 msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?" msgstr "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?" -#: templates/account.php:181 +#: templates/account.php:231 msgid "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?" msgstr "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?" -#: templates/account.php:184 +#: templates/account.php:234 msgid "Delete Account" msgstr "Delete Account" -#: templates/account.php:196, templates/account/partials/addon.php:159, templates/account/partials/deactivate-license-button.php:35 +#: templates/account.php:246, templates/account/partials/addon.php:231, templates/account/partials/deactivate-license-button.php:35 msgid "Deactivate License" msgstr "Deactivate License" -#: templates/account.php:219, templates/forms/subscription-cancellation.php:125 +#: templates/account.php:269, templates/forms/subscription-cancellation.php:125 msgid "Are you sure you want to proceed?" msgstr "Are you sure you want to proceed?" -#: templates/account.php:219, templates/account/partials/addon.php:182 +#: templates/account.php:269, templates/account/partials/addon.php:255 msgid "Cancel Subscription" msgstr "Cancel Subscription" -#: templates/account.php:247 +#: templates/account.php:298, templates/account/partials/addon.php:340 msgctxt "as synchronize" msgid "Sync" msgstr "Sync" -#: templates/account.php:261, templates/debug.php:487 +#: templates/account.php:313, templates/debug.php:507 msgid "Name" msgstr "Name" -#: templates/account.php:267, templates/debug.php:488 +#: templates/account.php:319, templates/debug.php:508 msgid "Email" msgstr "Email" -#: templates/account.php:274, templates/debug.php:370, templates/debug.php:526 +#: templates/account.php:326, templates/debug.php:371, templates/debug.php:557 msgid "User ID" msgstr "User ID" -#: templates/account.php:282 +#: templates/account.php:344, templates/account.php:637, templates/account.php:682, templates/debug.php:238, templates/debug.php:365, templates/debug.php:454, templates/debug.php:506, templates/debug.php:555, templates/debug.php:632, templates/account/payments.php:35, templates/debug/logger.php:21 +msgid "ID" +msgstr "ID" + +#: templates/account.php:351 msgid "Site ID" msgstr "Site ID" -#: templates/account.php:285 +#: templates/account.php:354 msgid "No ID" msgstr "No ID" -#: templates/account.php:290, templates/debug.php:243, templates/debug.php:372, templates/debug.php:453, templates/debug.php:490, templates/account/partials/site.php:219 +#: templates/account.php:359, templates/debug.php:245, templates/debug.php:374, templates/debug.php:458, templates/debug.php:510, templates/account/partials/site.php:227 msgid "Public Key" msgstr "Public Key" -#: templates/account.php:296, templates/debug.php:373, templates/debug.php:454, templates/debug.php:491, templates/account/partials/site.php:231 +#: templates/account.php:365, templates/debug.php:375, templates/debug.php:459, templates/debug.php:511, templates/account/partials/site.php:239 msgid "Secret Key" msgstr "Secret Key" -#: templates/account.php:299 +#: templates/account.php:368 msgctxt "as secret encryption key missing" msgid "No Secret" msgstr "No Secret" -#: templates/account.php:318, templates/account/partials/site.php:112, templates/account/partials/site.php:114 +#: templates/account.php:395, templates/account/partials/site.php:120, templates/account/partials/site.php:122 msgid "Trial" msgstr "Trial" -#: templates/account.php:337, templates/debug.php:531, templates/account/partials/site.php:248 +#: templates/account.php:422, templates/debug.php:562, templates/account/partials/site.php:260 msgid "License Key" msgstr "License Key" -#: templates/account.php:367 +#: templates/account.php:453 +msgid "Join the Beta program" +msgstr "Join the Beta program" + +#: templates/account.php:459 msgid "not verified" msgstr "not verified" -#: templates/account.php:376, templates/account/partials/addon.php:120 +#: templates/account.php:468, templates/account/partials/addon.php:190 msgid "Expired" msgstr "Expired" -#: templates/account.php:428 +#: templates/account.php:528 msgid "Premium version" msgstr "Premium version" -#: templates/account.php:430 +#: templates/account.php:530 msgid "Free version" msgstr "Free version" -#: templates/account.php:442 +#: templates/account.php:542 msgid "Verify Email" msgstr "Verify Email" -#: templates/account.php:453 +#: templates/account.php:553 msgid "Download %s Version" msgstr "Download %s Version" -#: templates/account.php:467, templates/account.php:649, templates/account/partials/site.php:237, templates/account/partials/site.php:255 +#: templates/account.php:568, templates/account.php:820, templates/account/partials/site.php:248, templates/account/partials/site.php:270 msgctxt "verb" msgid "Show" msgstr "Show" -#: templates/account.php:481 +#: templates/account.php:583 msgid "What is your %s?" msgstr "What is your %s?" -#: templates/account.php:489, templates/account/billing.php:27 +#: templates/account.php:591, templates/account/billing.php:21 msgctxt "verb" msgid "Edit" msgstr "Edit" -#: templates/account.php:502 +#: templates/account.php:616 msgid "Sites" msgstr "Sites" -#: templates/account.php:513 +#: templates/account.php:629 msgid "Search by address" msgstr "Search by address" -#: templates/account.php:522, templates/account.php:570, templates/debug.php:236, templates/debug.php:364, templates/debug.php:449, templates/debug.php:486, templates/debug.php:524, templates/debug.php:597, templates/account/payments.php:35, templates/debug/logger.php:21 -msgid "ID" -msgstr "ID" - -#: templates/account.php:523, templates/debug.php:367 +#: templates/account.php:638, templates/debug.php:368 msgid "Address" msgstr "Address" -#: templates/account.php:524 +#: templates/account.php:639 msgid "License" msgstr "License" -#: templates/account.php:525 +#: templates/account.php:640 msgid "Plan" msgstr "Plan" -#: templates/account.php:573 +#: templates/account.php:685 msgctxt "as software license" msgid "License" msgstr "License" -#: templates/account.php:643 +#: templates/account.php:814 msgctxt "verb" msgid "Hide" msgstr "Hide" -#: templates/account.php:686 +#: templates/account.php:836, templates/forms/data-debug-mode.php:31 +msgid "Processing" +msgstr "Processing" + +#: templates/account.php:839 +msgid "Get updates for bleeding edge Beta versions of %s." +msgstr "Get updates for bleeding edge Beta versions of %s." + +#: templates/account.php:897 msgid "Cancelling %s" msgstr "Cancelling %s" -#: templates/account.php:686, templates/account.php:703, templates/forms/subscription-cancellation.php:27, templates/forms/deactivation/form.php:117 +#: templates/account.php:897, templates/account.php:914, templates/forms/subscription-cancellation.php:27, templates/forms/deactivation/form.php:133 msgid "trial" msgstr "trial" -#: templates/account.php:701, templates/forms/deactivation/form.php:134 +#: templates/account.php:912, templates/forms/deactivation/form.php:150 msgid "Cancelling %s..." msgstr "Cancelling %s..." -#: templates/account.php:704, templates/forms/subscription-cancellation.php:28, templates/forms/deactivation/form.php:118 +#: templates/account.php:915, templates/forms/subscription-cancellation.php:28, templates/forms/deactivation/form.php:134 msgid "subscription" msgstr "subscription" -#: templates/account.php:718 +#: templates/account.php:929 msgid "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?" msgstr "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?" -#: templates/add-ons.php:36 +#: templates/add-ons.php:38 +msgid "View details" +msgstr "View details" + +#: templates/add-ons.php:48 msgid "Add Ons for %s" msgstr "Add Ons for %s" -#: templates/add-ons.php:44 -msgid "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." -msgstr "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." +#: templates/add-ons.php:58 +msgid "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." +msgstr "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." -#: templates/add-ons.php:139 -msgid "View details" -msgstr "View details" +#: templates/add-ons.php:229 +msgctxt "active add-on" +msgid "Active" +msgstr "Active" + +#: templates/add-ons.php:230 +msgctxt "installed add-on" +msgid "Installed" +msgstr "Installed" -#: templates/admin-notice.php:13, templates/forms/license-activation.php:208, templates/forms/resend-key.php:77 +#: templates/admin-notice.php:13, templates/forms/license-activation.php:207, templates/forms/resend-key.php:77 msgctxt "as close a window" msgid "Dismiss" msgstr "Dismiss" @@ -1354,11 +1435,11 @@ msgstr "The installation process has started and may take a few minutes to compl msgid "Cancel Installation" msgstr "Cancel Installation" -#: templates/checkout.php:172 +#: templates/checkout.php:180 msgid "Checkout" msgstr "Checkout" -#: templates/checkout.php:172 +#: templates/checkout.php:180 msgid "PCI compliant" msgstr "PCI compliant" @@ -1380,7 +1461,7 @@ msgstr "Re-send activation email" msgid "Thanks %s!" msgstr "Thanks %s!" -#: templates/connect.php:172, templates/forms/license-activation.php:43 +#: templates/connect.php:172, templates/forms/license-activation.php:46 msgid "Agree & Activate License" msgstr "Agree & Activate License" @@ -1428,15 +1509,15 @@ msgstr "Alternatively, you can skip it for now and activate the license later, i msgid "During the update process we detected %s site(s) in the network that are still pending your attention." msgstr "During the update process we detected %s site(s) in the network that are still pending your attention." -#: templates/connect.php:253, templates/forms/license-activation.php:46 +#: templates/connect.php:253, templates/forms/data-debug-mode.php:35, templates/forms/license-activation.php:49 msgid "License key" msgstr "License key" -#: templates/connect.php:256, templates/forms/license-activation.php:19 +#: templates/connect.php:256, templates/forms/license-activation.php:22 msgid "Can't find your license key?" msgstr "Can't find your license key?" -#: templates/connect.php:315, templates/connect.php:630, templates/forms/deactivation/retry-skip.php:20 +#: templates/connect.php:315, templates/connect.php:652, templates/forms/deactivation/retry-skip.php:20 msgctxt "verb" msgid "Skip" msgstr "Skip" @@ -1485,7 +1566,7 @@ msgstr "Activation, deactivation and uninstall" msgid "Newsletter" msgstr "Newsletter" -#: templates/connect.php:391, templates/forms/license-activation.php:38 +#: templates/connect.php:391, templates/forms/license-activation.php:41 msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license." msgstr "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license." @@ -1497,10 +1578,6 @@ msgstr "What permissions are being granted?" msgid "Don't have a license key?" msgstr "Don't have a license key?" -#: templates/connect.php:418 -msgid "Activate Free Version" -msgstr "Activate Free Version" - #: templates/connect.php:420 msgid "Have a license key?" msgstr "Have a license key?" @@ -1517,12 +1594,12 @@ msgstr "License Agreement" msgid "Terms of Service" msgstr "Terms of Service" -#: templates/connect.php:766 +#: templates/connect.php:805 msgctxt "as in the process of sending an email" msgid "Sending email" msgstr "Sending email" -#: templates/connect.php:767 +#: templates/connect.php:806 msgctxt "as activating plugin" msgid "Activating" msgstr "Activating" @@ -1550,7 +1627,7 @@ msgctxt "as code debugging" msgid "Debugging" msgstr "Debugging" -#: templates/debug.php:54, templates/debug.php:248, templates/debug.php:374, templates/debug.php:492 +#: templates/debug.php:54, templates/debug.php:250, templates/debug.php:376, templates/debug.php:512 msgid "Actions" msgstr "Actions" @@ -1586,186 +1663,190 @@ msgstr "Load DB Option" msgid "Set DB Option" msgstr "Set DB Option" -#: templates/debug.php:180 +#: templates/debug.php:182 msgid "Key" msgstr "Key" -#: templates/debug.php:181 +#: templates/debug.php:183 msgid "Value" msgstr "Value" -#: templates/debug.php:197 +#: templates/debug.php:199 msgctxt "as software development kit versions" msgid "SDK Versions" msgstr "SDK Versions" -#: templates/debug.php:202 +#: templates/debug.php:204 msgid "SDK Path" msgstr "SDK Path" -#: templates/debug.php:203, templates/debug.php:242 +#: templates/debug.php:205, templates/debug.php:244 msgid "Module Path" msgstr "Module Path" -#: templates/debug.php:204 +#: templates/debug.php:206 msgid "Is Active" msgstr "Is Active" -#: templates/debug.php:232, templates/debug/plugins-themes-sync.php:35 +#: templates/debug.php:234, templates/debug/plugins-themes-sync.php:35 msgid "Plugins" msgstr "Plugins" -#: templates/debug.php:232, templates/debug/plugins-themes-sync.php:56 +#: templates/debug.php:234, templates/debug/plugins-themes-sync.php:56 msgid "Themes" msgstr "Themes" -#: templates/debug.php:237, templates/debug.php:369, templates/debug.php:451, templates/debug/scheduled-crons.php:80 +#: templates/debug.php:239, templates/debug.php:370, templates/debug.php:456, templates/debug/scheduled-crons.php:80 msgid "Slug" msgstr "Slug" -#: templates/debug.php:239, templates/debug.php:450 +#: templates/debug.php:241, templates/debug.php:455 msgid "Title" msgstr "Title" -#: templates/debug.php:240 +#: templates/debug.php:242 msgctxt "as application program interface" msgid "API" msgstr "API" -#: templates/debug.php:241 +#: templates/debug.php:243 msgid "Freemius State" msgstr "Freemius State" -#: templates/debug.php:245 +#: templates/debug.php:247 msgid "Network Blog" msgstr "Network Blog" -#: templates/debug.php:246 +#: templates/debug.php:248 msgid "Network User" msgstr "Network User" -#: templates/debug.php:283 +#: templates/debug.php:285 msgctxt "as connection was successful" msgid "Connected" msgstr "Connected" -#: templates/debug.php:284 +#: templates/debug.php:286 msgctxt "as connection blocked" msgid "Blocked" msgstr "Blocked" -#: templates/debug.php:320 +#: templates/debug.php:322 msgid "Simulate Trial Promotion" msgstr "Simulate Trial Promotion" -#: templates/debug.php:332 +#: templates/debug.php:334 msgid "Simulate Network Upgrade" msgstr "Simulate Network Upgrade" -#: templates/debug.php:358 +#: templates/debug.php:359 msgid "%s Installs" msgstr "%s Installs" -#: templates/debug.php:360 +#: templates/debug.php:361 msgctxt "like websites" msgid "Sites" msgstr "Sites" -#: templates/debug.php:366, templates/account/partials/site.php:148 +#: templates/debug.php:367, templates/account/partials/site.php:156 msgid "Blog ID" msgstr "Blog ID" -#: templates/debug.php:431, templates/debug.php:509, templates/account/partials/addon.php:339 +#: templates/debug.php:372 +msgid "License ID" +msgstr "License ID" + +#: templates/debug.php:436, templates/debug.php:535, templates/account/partials/addon.php:435 msgctxt "verb" msgid "Delete" msgstr "Delete" -#: templates/debug.php:445 +#: templates/debug.php:450 msgid "Add Ons of module %s" msgstr "Add Ons of module %s" -#: templates/debug.php:482 +#: templates/debug.php:502 msgid "Users" msgstr "Users" -#: templates/debug.php:489 +#: templates/debug.php:509 msgid "Verified" msgstr "Verified" -#: templates/debug.php:520 +#: templates/debug.php:551 msgid "%s Licenses" msgstr "%s Licenses" -#: templates/debug.php:525 +#: templates/debug.php:556 msgid "Plugin ID" msgstr "Plugin ID" -#: templates/debug.php:527 +#: templates/debug.php:558 msgid "Plan ID" msgstr "Plan ID" -#: templates/debug.php:528 +#: templates/debug.php:559 msgid "Quota" msgstr "Quota" -#: templates/debug.php:529 +#: templates/debug.php:560 msgid "Activated" msgstr "Activated" -#: templates/debug.php:530 +#: templates/debug.php:561 msgid "Blocking" msgstr "Blocking" -#: templates/debug.php:532 +#: templates/debug.php:563 msgctxt "as expiration date" msgid "Expiration" msgstr "Expiration" -#: templates/debug.php:555 +#: templates/debug.php:590 msgid "Debug Log" msgstr "Debug Log" -#: templates/debug.php:559 +#: templates/debug.php:594 msgid "All Types" msgstr "All Types" -#: templates/debug.php:566 +#: templates/debug.php:601 msgid "All Requests" msgstr "All Requests" -#: templates/debug.php:571, templates/debug.php:600, templates/debug/logger.php:25 +#: templates/debug.php:606, templates/debug.php:635, templates/debug/logger.php:25 msgid "File" msgstr "File" -#: templates/debug.php:572, templates/debug.php:598, templates/debug/logger.php:23 +#: templates/debug.php:607, templates/debug.php:633, templates/debug/logger.php:23 msgid "Function" msgstr "Function" -#: templates/debug.php:573 +#: templates/debug.php:608 msgid "Process ID" msgstr "Process ID" -#: templates/debug.php:574 +#: templates/debug.php:609 msgid "Logger" msgstr "Logger" -#: templates/debug.php:575, templates/debug.php:599, templates/debug/logger.php:24 +#: templates/debug.php:610, templates/debug.php:634, templates/debug/logger.php:24 msgid "Message" msgstr "Message" -#: templates/debug.php:577 +#: templates/debug.php:612 msgid "Filter" msgstr "Filter" -#: templates/debug.php:585 +#: templates/debug.php:620 msgid "Download" msgstr "Download" -#: templates/debug.php:596, templates/debug/logger.php:22 +#: templates/debug.php:631, templates/debug/logger.php:22 msgid "Type" msgstr "Type" -#: templates/debug.php:601, templates/debug/logger.php:26 +#: templates/debug.php:636, templates/debug/logger.php:26 msgid "Timestamp" msgstr "Timestamp" @@ -1790,52 +1871,52 @@ msgstr "Freemius API" msgid "Requests" msgstr "Requests" -#: templates/account/billing.php:28 +#: templates/account/billing.php:22 msgctxt "verb" msgid "Update" msgstr "Update" -#: templates/account/billing.php:39 +#: templates/account/billing.php:33 msgid "Billing" msgstr "Billing" -#: templates/account/billing.php:44, templates/account/billing.php:44 +#: templates/account/billing.php:38, templates/account/billing.php:38 msgid "Business name" msgstr "Business name" -#: templates/account/billing.php:45, templates/account/billing.php:45 +#: templates/account/billing.php:39, templates/account/billing.php:39 msgid "Tax / VAT ID" msgstr "Tax / VAT ID" -#: templates/account/billing.php:48, templates/account/billing.php:48, templates/account/billing.php:49, templates/account/billing.php:49 +#: templates/account/billing.php:42, templates/account/billing.php:42, templates/account/billing.php:43, templates/account/billing.php:43 msgid "Address Line %d" msgstr "Address Line %d" -#: templates/account/billing.php:52, templates/account/billing.php:52 +#: templates/account/billing.php:46, templates/account/billing.php:46 msgid "City" msgstr "City" -#: templates/account/billing.php:52, templates/account/billing.php:52 +#: templates/account/billing.php:46, templates/account/billing.php:46 msgid "Town" msgstr "Town" -#: templates/account/billing.php:53, templates/account/billing.php:53 +#: templates/account/billing.php:47, templates/account/billing.php:47 msgid "ZIP / Postal Code" msgstr "ZIP / Postal Code" -#: templates/account/billing.php:308 +#: templates/account/billing.php:302 msgid "Country" msgstr "Country" -#: templates/account/billing.php:310 +#: templates/account/billing.php:304 msgid "Select Country" msgstr "Select Country" -#: templates/account/billing.php:317, templates/account/billing.php:318 +#: templates/account/billing.php:311, templates/account/billing.php:312 msgid "State" msgstr "State" -#: templates/account/billing.php:317, templates/account/billing.php:318 +#: templates/account/billing.php:311, templates/account/billing.php:312 msgid "Province" msgstr "Province" @@ -2083,11 +2164,27 @@ msgstr "Cancel" msgid "Become an affiliate" msgstr "Become an affiliate" -#: templates/forms/license-activation.php:20 +#: templates/forms/data-debug-mode.php:25 +msgid "Please enter the license key to enable the debug mode:" +msgstr "Please enter the license key to enable the debug mode:" + +#: templates/forms/data-debug-mode.php:27 +msgid "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:" +msgstr "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:" + +#: templates/forms/data-debug-mode.php:32 +msgid "Submit" +msgstr "Submit" + +#: templates/forms/data-debug-mode.php:36 +msgid "User key" +msgstr "User key" + +#: templates/forms/license-activation.php:23 msgid "Please enter the license key that you received in the email right after the purchase:" msgstr "Please enter the license key that you received in the email right after the purchase:" -#: templates/forms/license-activation.php:25 +#: templates/forms/license-activation.php:28 msgid "Update License" msgstr "Update License" @@ -2166,7 +2263,7 @@ msgstr "Cancel %s?" msgid "Proceed" msgstr "Proceed" -#: templates/forms/subscription-cancellation.php:191, templates/forms/deactivation/form.php:150 +#: templates/forms/subscription-cancellation.php:191, templates/forms/deactivation/form.php:171 msgid "Cancel %s & Proceed" msgstr "Cancel %s & Proceed" @@ -2178,35 +2275,39 @@ msgstr "You are 1-click away from starting your %1$s-day free trial of the %2$s msgid "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial." msgstr "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial." -#: templates/js/style-premium-theme.php:37 +#: templates/js/style-premium-theme.php:39 msgid "Premium" msgstr "Premium" -#: templates/partials/network-activation.php:23 +#: templates/js/style-premium-theme.php:42 +msgid "Beta" +msgstr "Beta" + +#: templates/partials/network-activation.php:27 msgid "Activate license on all sites in the network." msgstr "Activate license on all sites in the network." -#: templates/partials/network-activation.php:24 +#: templates/partials/network-activation.php:28 msgid "Apply on all sites in the network." msgstr "Apply on all sites in the network." -#: templates/partials/network-activation.php:27 +#: templates/partials/network-activation.php:31 msgid "Activate license on all pending sites." msgstr "Activate license on all pending sites." -#: templates/partials/network-activation.php:28 +#: templates/partials/network-activation.php:32 msgid "Apply on all pending sites." msgstr "Apply on all pending sites." -#: templates/partials/network-activation.php:36, templates/partials/network-activation.php:68 +#: templates/partials/network-activation.php:40, templates/partials/network-activation.php:74 msgid "allow" msgstr "allow" -#: templates/partials/network-activation.php:38, templates/partials/network-activation.php:70 +#: templates/partials/network-activation.php:43, templates/partials/network-activation.php:77 msgid "delegate" msgstr "delegate" -#: templates/partials/network-activation.php:41, templates/partials/network-activation.php:73 +#: templates/partials/network-activation.php:47, templates/partials/network-activation.php:81 msgid "skip" msgstr "skip" @@ -2231,31 +2332,32 @@ msgstr "%s left" msgid "Last license" msgstr "Last license" -#: templates/account/partials/addon.php:115 +#. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the subscription' +#: templates/account/partials/addon.php:29 +msgid "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s." +msgstr "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s." + +#: templates/account/partials/addon.php:185 msgid "Cancelled" msgstr "Cancelled" -#: templates/account/partials/addon.php:125 +#: templates/account/partials/addon.php:195 msgid "No expiration" msgstr "No expiration" -#: templates/account/partials/addon.php:264, templates/account/partials/addon.php:317 -msgid "Activate this add-on" -msgstr "Activate this add-on" - -#: templates/account/partials/site.php:181 +#: templates/account/partials/site.php:189 msgid "Owner Name" msgstr "Owner Name" -#: templates/account/partials/site.php:193 +#: templates/account/partials/site.php:201 msgid "Owner Email" msgstr "Owner Email" -#: templates/account/partials/site.php:205 +#: templates/account/partials/site.php:213 msgid "Owner ID" msgstr "Owner ID" -#: templates/account/partials/site.php:270 +#: templates/account/partials/site.php:286 msgid "Subscription" msgstr "Subscription" @@ -2267,47 +2369,47 @@ msgstr "Sorry for the inconvenience and we are here to help if you give us a cha msgid "Contact Support" msgstr "Contact Support" -#: templates/forms/deactivation/form.php:59 +#: templates/forms/deactivation/form.php:64 msgid "Anonymous feedback" msgstr "Anonymous feedback" -#: templates/forms/deactivation/form.php:66 +#: templates/forms/deactivation/form.php:70 msgid "Deactivate" msgstr "Deactivate" -#: templates/forms/deactivation/form.php:68 +#: templates/forms/deactivation/form.php:72 msgid "Activate %s" msgstr "Activate %s" -#: templates/forms/deactivation/form.php:80 +#: templates/forms/deactivation/form.php:87 msgid "Quick Feedback" msgstr "Quick Feedback" -#: templates/forms/deactivation/form.php:84 +#: templates/forms/deactivation/form.php:91 msgid "If you have a moment, please let us know why you are %s" msgstr "If you have a moment, please let us know why you are %s" -#: templates/forms/deactivation/form.php:84 +#: templates/forms/deactivation/form.php:91 msgid "deactivating" msgstr "deactivating" -#: templates/forms/deactivation/form.php:84 +#: templates/forms/deactivation/form.php:91 msgid "switching" msgstr "switching" -#: templates/forms/deactivation/form.php:332 +#: templates/forms/deactivation/form.php:365 msgid "Submit & %s" msgstr "Submit & %s" -#: templates/forms/deactivation/form.php:353 +#: templates/forms/deactivation/form.php:386 msgid "Kindly tell us the reason so we can improve." msgstr "Kindly tell us the reason so we can improve." -#: templates/forms/deactivation/form.php:478 +#: templates/forms/deactivation/form.php:511 msgid "Yes - %s" msgstr "Yes - %s" -#: templates/forms/deactivation/form.php:485 +#: templates/forms/deactivation/form.php:518 msgid "Skip & %s" msgstr "Skip & %s" diff --git a/external/Freemius/languages/freemius-es_ES.mo b/external/Freemius/languages/freemius-es_ES.mo index 85d4a379..13445c5d 100755 Binary files a/external/Freemius/languages/freemius-es_ES.mo and b/external/Freemius/languages/freemius-es_ES.mo differ diff --git a/external/Freemius/languages/freemius-es_ES.po b/external/Freemius/languages/freemius-es_ES.po index dcaba713..5293fd79 100755 --- a/external/Freemius/languages/freemius-es_ES.po +++ b/external/Freemius/languages/freemius-es_ES.po @@ -7,8 +7,8 @@ msgstr "" "Project-Id-Version: WordPress SDK\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2018-11-25 12:57+0000\n" -"Last-Translator: Carlos Longarela \n" +"PO-Revision-Date: 2019-10-07 15:33+0000\n" +"Last-Translator: Vova Feldman \n" "Language: es_ES\n" "Language-Team: Spanish (Spain) (http://www.transifex.com/freemius/wordpress-sdk/language/es_ES/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,1407 +21,1498 @@ msgstr "" "X-Poedit-SearchPathExcluded-0: *.js\n" "X-Poedit-SourceCharset: UTF-8\n" -#: includes/class-freemius.php:1688 +#: includes/class-freemius.php1880, templates/account.php:840 +msgid "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned." +msgstr "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned." + +#: includes/class-freemius.php:1887 +msgid "Would you like to proceed with the update?" +msgstr "Would you like to proceed with the update?" + +#: includes/class-freemius.php:2095 msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error." msgstr "Freemius SDK no pudo encontrar el archivo principal del plugin. Por favor contacta a sdk@freemius.com con el error actual." -#: includes/class-freemius.php:1690 +#: includes/class-freemius.php:2097 msgid "Error" msgstr "Error" -#: includes/class-freemius.php:2011 +#: includes/class-freemius.php:2491 msgid "I found a better %s" msgstr "He encontrado un %s mejor" -#: includes/class-freemius.php:2013 +#: includes/class-freemius.php:2493 msgid "What's the %s's name?" msgstr "¿Cuál es el nombre de %s?" -#: includes/class-freemius.php:2019 +#: includes/class-freemius.php:2499 msgid "It's a temporary %s. I'm just debugging an issue." msgstr "Es una %stemporal . Sólo estoy depurando un problema" -#: includes/class-freemius.php:2021 +#: includes/class-freemius.php:2501 msgid "Deactivation" msgstr "Desactivación" -#: includes/class-freemius.php:2022 +#: includes/class-freemius.php:2502 msgid "Theme Switch" msgstr "Cambiar tema" -#: includes/class-freemius.php2031, templates/forms/resend-key.php:24 +#: includes/class-freemius.php2511, templates/forms/resend-key.php:24 msgid "Other" msgstr "Otra" -#: includes/class-freemius.php:2039 +#: includes/class-freemius.php:2519 msgid "I no longer need the %s" msgstr "Ya no necesito el %s" -#: includes/class-freemius.php:2046 +#: includes/class-freemius.php:2526 msgid "I only needed the %s for a short period" msgstr "Sólo necesitaba la %s por un corto período" -#: includes/class-freemius.php:2052 +#: includes/class-freemius.php:2532 msgid "The %s broke my site" msgstr "%s ha roto mi sitio" -#: includes/class-freemius.php:2059 +#: includes/class-freemius.php:2539 msgid "The %s suddenly stopped working" msgstr "%s de repente ha dejado de funcionar" -#: includes/class-freemius.php:2069 +#: includes/class-freemius.php:2549 msgid "I can't pay for it anymore" msgstr "No puedo pagarlo durante más tiempo" -#: includes/class-freemius.php:2071 +#: includes/class-freemius.php:2551 msgid "What price would you feel comfortable paying?" msgstr "¿Con qué precio te sentirías cómodo pagando?" -#: includes/class-freemius.php:2077 +#: includes/class-freemius.php:2557 msgid "I don't like to share my information with you" msgstr "No me gusta compartir mi información contigo" -#: includes/class-freemius.php:2098 +#: includes/class-freemius.php:2578 msgid "The %s didn't work" msgstr "El %s no funcionaba" -#: includes/class-freemius.php:2108 +#: includes/class-freemius.php:2588 msgid "I couldn't understand how to make it work" msgstr "No entiendo cómo hacerlo funcionar" -#: includes/class-freemius.php:2116 +#: includes/class-freemius.php:2596 msgid "The %s is great, but I need specific feature that you don't support" msgstr "%s es genial, pero necesito una característica que no soportáis" -#: includes/class-freemius.php:2118 +#: includes/class-freemius.php:2598 msgid "What feature?" msgstr "¿Qué característica?" -#: includes/class-freemius.php:2122 +#: includes/class-freemius.php:2602 msgid "The %s is not working" msgstr " El %s no funciona" -#: includes/class-freemius.php:2124 +#: includes/class-freemius.php:2604 msgid "Kindly share what didn't work so we can fix it for future users..." msgstr "Por favor, comparte lo que no funcionó para que podamos arreglarlo para los futuros usuarios..." -#: includes/class-freemius.php:2128 +#: includes/class-freemius.php:2608 msgid "It's not what I was looking for" msgstr "No es lo que estaba buscando" -#: includes/class-freemius.php:2130 +#: includes/class-freemius.php:2610 msgid "What you've been looking for?" msgstr "¿Que has estado buscando?" -#: includes/class-freemius.php:2134 +#: includes/class-freemius.php:2614 msgid "The %s didn't work as expected" msgstr " El %s no funciona como esperaba" -#: includes/class-freemius.php:2136 +#: includes/class-freemius.php:2616 msgid "What did you expect?" msgstr "¿Qué esperas?" -#: includes/class-freemius.php2942, templates/debug.php:20 +#: includes/class-freemius.php3471, templates/debug.php:20 msgid "Freemius Debug" msgstr "Debug Freemius" -#: includes/class-freemius.php:3670 +#: includes/class-freemius.php:4223 msgid "I don't know what is cURL or how to install it, help me!" msgstr "No sé qué es cURL o cómo instalarlo, ¡ayúdame!" -#: includes/class-freemius.php:3672 +#: includes/class-freemius.php:4225 msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update." msgstr "Nos aseguraremos de ponernos en contacto con tu empresa de alojamiento web y resolver el problema. Recibirás un correo electrónico de seguimiento a %s tan pronto tengamos una actualización." -#: includes/class-freemius.php:3679 +#: includes/class-freemius.php:4232 msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again." msgstr "Genial, por favor instala cURL y habilítalo en el archivo php.ini. Además, busca la directiva 'disable_functions' en el archivo php.ini y quita cualquier método que comienza con 'curl_'. Para asegurarte de que se activó con éxito, utiliza 'phpinfo()'. Una vez activado, desactiva el %s y reactívalo de nuevo." -#: includes/class-freemius.php:3784 +#: includes/class-freemius.php:4337 msgid "Yes - do your thing" msgstr "Vamos, adelante" -#: includes/class-freemius.php:3789 +#: includes/class-freemius.php:4342 msgid "No - just deactivate" msgstr "No - sólo desactivar" -#: includes/class-freemius.php3834, includes/class-freemius.php4343, -#: includes/class-freemius.php5442, includes/class-freemius.php11545, -#: includes/class-freemius.php14916, includes/class-freemius.php14968, -#: includes/class-freemius.php15030, includes/class-freemius.php17263, -#: includes/class-freemius.php17273, includes/class-freemius.php17882, -#: includes/class-freemius.php18742, includes/class-freemius.php18857, -#: includes/class-freemius.php19001, templates/add-ons.php:43 +#: includes/class-freemius.php4387, includes/class-freemius.php4881, +#: includes/class-freemius.php6032, includes/class-freemius.php13153, +#: includes/class-freemius.php16558, includes/class-freemius.php16646, +#: includes/class-freemius.php16812, includes/class-freemius.php19040, +#: includes/class-freemius.php19381, includes/class-freemius.php19391, +#: includes/class-freemius.php20051, includes/class-freemius.php20924, +#: includes/class-freemius.php21039, includes/class-freemius.php21183, +#: templates/add-ons.php:57 msgctxt "exclamation" msgid "Oops" msgstr "Oops" -#: includes/class-freemius.php:3903 +#: includes/class-freemius.php:4456 msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience." msgstr "¡Gracias por darnos la oportunidad de arreglarlo! Acabamos de enviar un mensaje a nuestro personal técnico. Nos pondremos en contacto contigo tan pronto como tengamos una actualización de %s. Apreciamos tu paciencia." -#: includes/class-freemius.php:4340 +#: includes/class-freemius.php:4878 msgctxt "addonX cannot run without pluginY" msgid "%s cannot run without %s." msgstr "%s no se puede ejecutar sin %s." -#: includes/class-freemius.php:4341 +#: includes/class-freemius.php:4879 msgctxt "addonX cannot run..." msgid "%s cannot run without the plugin." msgstr "%s no se puede ejecutar sin el plugin." -#: includes/class-freemius.php4487, includes/class-freemius.php4512, -#: includes/class-freemius.php:17953 +#: includes/class-freemius.php5052, includes/class-freemius.php5077, +#: includes/class-freemius.php:20122 msgid "Unexpected API error. Please contact the %s's author with the following error." msgstr "Error inesperado del API. Pónte en contacto con el autor de %s indicándole el siguiente error." -#: includes/class-freemius.php:5130 +#: includes/class-freemius.php:5720 msgid "Premium %s version was successfully activated." msgstr "La versión Premium %s ha sido activada con éxito." -#: includes/class-freemius.php5142, includes/class-freemius.php:7004 +#: includes/class-freemius.php5732, includes/class-freemius.php:7599 msgctxt "" msgid "W00t" msgstr "W00t" -#: includes/class-freemius.php:5157 +#: includes/class-freemius.php:5747 msgid "You have a %s license." msgstr "Tienes una licencia %s." -#: includes/class-freemius.php5161, includes/class-freemius.php14337, -#: includes/class-freemius.php14348, includes/class-freemius.php17177, -#: includes/class-freemius.php17491, includes/class-freemius.php17557, -#: includes/class-freemius.php:17707 +#: includes/class-freemius.php5751, includes/class-freemius.php15975, +#: includes/class-freemius.php15986, includes/class-freemius.php19292, +#: includes/class-freemius.php19642, includes/class-freemius.php19711, +#: includes/class-freemius.php:19876 msgctxt "interjection expressing joy or exuberance" msgid "Yee-haw" msgstr "Vaya" -#: includes/class-freemius.php:5425 +#: includes/class-freemius.php:6015 msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license." msgstr "la prueba gratuita de %s fue cancelada con éxito. Puesto que el complemento es sólo premium se desactivó automáticamente. Si quieres utilizarlo en el futuro, deberás comprar una licencia." -#: includes/class-freemius.php:5429 +#: includes/class-freemius.php:6019 msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin." msgstr "%s es un complemento único de premium. Tienes que comprar una licencia primero antes de activar el plugin." -#: includes/class-freemius.php5438, templates/add-ons.php103, -#: templates/account/partials/addon.php:288 +#: includes/class-freemius.php6028, templates/add-ons.php186, +#: templates/account/partials/addon.php:381 msgid "More information about %s" msgstr "Más información sobre %s" -#: includes/class-freemius.php:5439 +#: includes/class-freemius.php:6029 msgid "Purchase License" msgstr "Comprar licencia" -#: includes/class-freemius.php6372, templates/connect.php:163 +#: includes/class-freemius.php6964, templates/connect.php:163 msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s." msgstr "Recibirás un correo de activación para %s en tu buzón en %s. Por favor, asegúrate de hacer clic en el botón de activación en ese correo electrónico para %s." -#: includes/class-freemius.php:6376 +#: includes/class-freemius.php:6968 msgid "start the trial" msgstr "comenzar el período de prueba" -#: includes/class-freemius.php6377, templates/connect.php:167 +#: includes/class-freemius.php6969, templates/connect.php:167 msgid "complete the install" msgstr "completar la instalación" -#: includes/class-freemius.php:6490 +#: includes/class-freemius.php:7081 msgid "You are just one step away - %s" msgstr "Estás a sólo un paso - %s" -#: includes/class-freemius.php:6493 +#: includes/class-freemius.php:7084 msgctxt "%s - plugin name. As complete \"PluginX\" activation now" msgid "Complete \"%s\" Activation Now" msgstr "Completar la activación de \"%s\" ahora" -#: includes/class-freemius.php:6571 +#: includes/class-freemius.php:7162 msgid "We made a few tweaks to the %s, %s" msgstr "Hemos realizado algunas optimizaciones al %s, %s" -#: includes/class-freemius.php:6575 +#: includes/class-freemius.php:7166 msgid "Opt in to make \"%s\" better!" msgstr "¡Inscríbite para hacer \"%s\" Mejor!" -#: includes/class-freemius.php:7003 +#: includes/class-freemius.php:7598 msgid "The upgrade of %s was successfully completed." msgstr "La actualización de %s se completó con éxito." -#: includes/class-freemius.php8925, includes/class-fs-plugin-updater.php886, -#: includes/class-fs-plugin-updater.php1081, -#: includes/class-fs-plugin-updater.php1088, +#: includes/class-freemius.php9802, includes/class-fs-plugin-updater.php1038, +#: includes/class-fs-plugin-updater.php1233, +#: includes/class-fs-plugin-updater.php1240, #: templates/auto-installation.php:32 msgid "Add-On" msgstr "Complemento" -#: includes/class-freemius.php8927, templates/debug.php359, -#: templates/debug.php:520 +#: includes/class-freemius.php9804, templates/account.php335, +#: templates/account.php343, templates/debug.php360, templates/debug.php:551 msgid "Plugin" msgstr "Plugin" -#: includes/class-freemius.php8928, templates/debug.php359, -#: templates/debug.php520, templates/forms/deactivation/form.php:67 +#: includes/class-freemius.php9805, templates/account.php336, +#: templates/account.php344, templates/debug.php360, templates/debug.php551, +#: templates/forms/deactivation/form.php:71 msgid "Theme" msgstr "Tema" -#: includes/class-freemius.php:11412 +#: includes/class-freemius.php:12596 +msgid "An unknown error has occurred while trying to set the user's beta mode." +msgstr "An unknown error has occurred while trying to set the user's beta mode." + +#: includes/class-freemius.php:13020 msgid "Invalid site details collection." msgstr "Colección de detalles del sitio no válida." -#: includes/class-freemius.php:11532 +#: includes/class-freemius.php:13140 msgid "We couldn't find your email address in the system, are you sure it's the right address?" msgstr "No podemos encontrar tu dirección de correo electrónico en el sistema, ¿estás seguro de que es la dirección de correo electrónico correcta?" -#: includes/class-freemius.php:11534 +#: includes/class-freemius.php:13142 msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?" msgstr "No vemos ninguna licencia activa asociada a esa dirección de correo electrónico, ¿estás seguro de que es la dirección de correo electrónico correcta?" -#: includes/class-freemius.php:11808 +#: includes/class-freemius.php:13416 msgid "Account is pending activation." msgstr "La cuenta está pendiente de activación" -#: includes/class-freemius.php11920, +#: includes/class-freemius.php13528, #: templates/forms/premium-versions-upgrade-handler.php:47 msgid "Buy a license now" msgstr "Compra una licencia ahora" -#: includes/class-freemius.php11932, +#: includes/class-freemius.php13540, #: templates/forms/premium-versions-upgrade-handler.php:46 msgid "Renew your license now" msgstr "Renueva tu licencia ahora" -#: includes/class-freemius.php:11936 +#: includes/class-freemius.php:13544 msgid "%s to access version %s security & feature updates, and support." msgstr "%s para acceder a la versión %s de actualizaciones de funciones, seguridad y soporte." -#: includes/class-freemius.php:14319 +#: includes/class-freemius.php:15957 msgid "%s activation was successfully completed." msgstr "%s activación se completó con éxito." -#: includes/class-freemius.php:14333 +#: includes/class-freemius.php:15971 msgid "Your account was successfully activated with the %s plan." msgstr "Tu cuenta se ha activado correctamente con el plan %s." -#: includes/class-freemius.php14344, includes/class-freemius.php:17553 +#: includes/class-freemius.php15982, includes/class-freemius.php:19707 msgid "Your trial has been successfully started." msgstr "Tu versión de prueba se ha iniciado con éxito." -#: includes/class-freemius.php14914, includes/class-freemius.php14966, -#: includes/class-freemius.php:15028 +#: includes/class-freemius.php16556, includes/class-freemius.php16644, +#: includes/class-freemius.php:16810 msgid "Couldn't activate %s." msgstr "No se puede activar %s." -#: includes/class-freemius.php14915, includes/class-freemius.php14967, -#: includes/class-freemius.php:15029 +#: includes/class-freemius.php16557, includes/class-freemius.php16645, +#: includes/class-freemius.php:16811 msgid "Please contact us with the following message:" msgstr "Por favor contáctanos con el siguiente mensaje:" -#: includes/class-freemius.php15378, includes/class-freemius.php:19839 +#: includes/class-freemius.php16641, templates/forms/data-debug-mode.php:162 +msgid "An unknown error has occurred." +msgstr "An unknown error has occurred." + +#: includes/class-freemius.php17168, includes/class-freemius.php:22082 msgid "Upgrade" msgstr "Actualizar" -#: includes/class-freemius.php:15384 +#: includes/class-freemius.php:17174 msgid "Start Trial" msgstr "Comenzar el período de prueba" -#: includes/class-freemius.php:15386 +#: includes/class-freemius.php:17176 msgid "Pricing" msgstr "Precio" -#: includes/class-freemius.php15448, includes/class-freemius.php:15450 +#: includes/class-freemius.php17256, includes/class-freemius.php:17258 msgid "Affiliation" msgstr "Afiliación" -#: includes/class-freemius.php15478, includes/class-freemius.php15480, -#: templates/account.php150, templates/debug.php:324 +#: includes/class-freemius.php17286, includes/class-freemius.php17288, +#: templates/account.php183, templates/debug.php:326 msgid "Account" msgstr "Cuenta" -#: includes/class-freemius.php15493, includes/class-freemius.php15495, +#: includes/class-freemius.php17302, includes/class-freemius.php17304, #: includes/customizer/class-fs-customizer-support-section.php:60 msgid "Contact Us" msgstr "Contáctanos" -#: includes/class-freemius.php15505, includes/class-freemius.php15507, -#: includes/class-freemius.php19849, templates/account.php100, -#: templates/account/partials/addon.php:41 +#: includes/class-freemius.php17315, includes/class-freemius.php17317, +#: includes/class-freemius.php22096, templates/account.php111, +#: templates/account/partials/addon.php:44 msgid "Add-Ons" msgstr "Complementos" -#: includes/class-freemius.php:15541 +#: includes/class-freemius.php:17351 msgctxt "ASCII arrow left icon" msgid "←" msgstr "←" -#: includes/class-freemius.php:15541 +#: includes/class-freemius.php:17351 msgctxt "ASCII arrow right icon" msgid "➤" msgstr "➤" -#: includes/class-freemius.php15543, templates/pricing.php:97 +#: includes/class-freemius.php17353, templates/pricing.php:103 msgctxt "noun" msgid "Pricing" msgstr "Precio" -#: includes/class-freemius.php15756, +#: includes/class-freemius.php17566, #: includes/customizer/class-fs-customizer-support-section.php:67 msgid "Support Forum" msgstr "Foro de soporte" -#: includes/class-freemius.php:16542 +#: includes/class-freemius.php:18536 msgid "Your email has been successfully verified - you are AWESOME!" msgstr "Tu email ha sido verificado correctamente - ¡Eres IMPRESIONANTE!" -#: includes/class-freemius.php:16543 +#: includes/class-freemius.php:18537 msgctxt "a positive response" msgid "Right on" msgstr "Bien hecho" -#: includes/class-freemius.php:17168 +#: includes/class-freemius.php:19041 +msgid "seems like the key you entered doesn't match our records." +msgstr "seems like the key you entered doesn't match our records." + +#: includes/class-freemius.php:19065 +msgid "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." +msgstr "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." + +#: includes/class-freemius.php:19283 msgid "Your %s Add-on plan was successfully upgraded." msgstr "Tu complemento %s del plan se actualizó con éxito." -#: includes/class-freemius.php:17170 +#: includes/class-freemius.php:19285 msgid "%s Add-on was successfully purchased." msgstr "El complemento %s ha sido comprado correctamente." -#: includes/class-freemius.php:17173 +#: includes/class-freemius.php:19288 msgid "Download the latest version" msgstr "Descargar la última versión" -#: includes/class-freemius.php:17259 -msgctxt "%1s - plugin title, %2s - API domain" -msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s" -msgstr "Tu servidor está bloqueando el acceso a la API de Freemius, que es crucial para la sincronización de licencia %1s. Por favor, ponte en contacto con tu host para que lo añadan a su lista blanca %2s" +#: includes/class-freemius.php:19374 +msgid "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s" +msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s" -#: includes/class-freemius.php17262, includes/class-freemius.php17678, -#: includes/class-freemius.php:17755 +#: includes/class-freemius.php19380, includes/class-freemius.php19390, +#: includes/class-freemius.php19835, includes/class-freemius.php:19924 msgid "Error received from the server:" msgstr "Error recibido del servidor:" -#: includes/class-freemius.php:17272 +#: includes/class-freemius.php:19390 msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again." msgstr "Parece que uno de los parámetros de autenticación es incorrecto. Actualiza tu clave pública, clave secreta e ID de usuario e inténtelo de nuevo." -#: includes/class-freemius.php17454, includes/class-freemius.php17683, -#: includes/class-freemius.php17726, includes/class-freemius.php:17829 +#: includes/class-freemius.php19604, includes/class-freemius.php19840, +#: includes/class-freemius.php19895, includes/class-freemius.php:19998 msgctxt "" msgid "Hmm" msgstr "Hmm" -#: includes/class-freemius.php:17467 +#: includes/class-freemius.php:19617 msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry." msgstr "Parece que todavía estás en el plan %s. Si actualizaste o cambiaste tu plan, probablemente sea un problema de nuestra parte - lo sentimos." -#: includes/class-freemius.php17468, templates/account.php102, -#: templates/add-ons.php134, templates/account/partials/addon.php:43 +#: includes/class-freemius.php19618, templates/account.php113, +#: templates/add-ons.php250, templates/account/partials/addon.php:46 msgctxt "trial period" msgid "Trial" msgstr "Período de Prueba Gratuito" -#: includes/class-freemius.php:17473 +#: includes/class-freemius.php:19623 msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s." msgstr "He actualizado mi cuenta, pero cuando intento sincronizar la licencia, el plan sigue siendo %s." -#: includes/class-freemius.php17477, includes/class-freemius.php:17535 +#: includes/class-freemius.php19627, includes/class-freemius.php:19686 msgid "Please contact us here" msgstr "Contacta aquí con nosotros" -#: includes/class-freemius.php:17487 +#: includes/class-freemius.php:19638 +msgid "Your plan was successfully activated." +msgstr "Your plan was successfully activated." + +#: includes/class-freemius.php:19639 msgid "Your plan was successfully upgraded." msgstr "Tu plan se actualizó con éxito." -#: includes/class-freemius.php:17505 +#: includes/class-freemius.php:19656 msgid "Your plan was successfully changed to %s." msgstr "Tu plan se cambió correctamente a %s." -#: includes/class-freemius.php:17521 +#: includes/class-freemius.php:19672 msgid "Your license has expired. You can still continue using the free %s forever." msgstr "Tu licencia ha caducado. Puedes seguir usando el plan gratuito %s para siempre." -#: includes/class-freemius.php:17523 +#: includes/class-freemius.php:19674 msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." msgstr "Tu licencia ha caducado. %1$sActualiza ahora %2$s para continuar usando el %3$s sin interrupciones." -#: includes/class-freemius.php:17531 +#: includes/class-freemius.php:19682 msgid "Your license has been cancelled. If you think it's a mistake, please contact support." msgstr "Tu licencia ha sido cancelada. Si crees que es un error, ponte en contacto con el servicio de asistencia." -#: includes/class-freemius.php:17544 +#: includes/class-freemius.php:19695 msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support." msgstr "Tu licencia ha caducado. Todavía puedes seguir usando todas las funciones de %s, pero tendrás que renovar tu licencia para seguir recibiendo actualizaciones y soporte." -#: includes/class-freemius.php:17567 +#: includes/class-freemius.php:19721 msgid "Your free trial has expired. You can still continue using all our free features." msgstr "Tu período de prueba ha caducado. Todavía puedes seguir usando todas nuestras funciones gratuitas." -#: includes/class-freemius.php:17569 +#: includes/class-freemius.php:19723 msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." msgstr "Tu período de prueba ha caducado. %1$sActualiza ahora %2$s para continuar usando el %3$s sin interrupciones." -#: includes/class-freemius.php:17674 +#: includes/class-freemius.php:19831 msgid "It looks like the license could not be activated." msgstr "Parece que la licencia no se pudo activar." -#: includes/class-freemius.php:17704 +#: includes/class-freemius.php:19873 msgid "Your license was successfully activated." msgstr "Tu licencia fue activada correctamente." -#: includes/class-freemius.php:17730 +#: includes/class-freemius.php:19899 msgid "It looks like your site currently doesn't have an active license." msgstr "Parece que tu sitio actualmente no tiene una licencia activa." -#: includes/class-freemius.php:17754 +#: includes/class-freemius.php:19923 msgid "It looks like the license deactivation failed." msgstr "Parece que la desactivación de licencia ha fallado." -#: includes/class-freemius.php:17782 +#: includes/class-freemius.php:19951 msgid "Your license was successfully deactivated, you are back to the %s plan." msgstr "Tu licencia fue desactivada correctamente, has vuelto al plan %s." -#: includes/class-freemius.php:17783 +#: includes/class-freemius.php:19952 msgid "O.K" msgstr "O.K" -#: includes/class-freemius.php:17836 +#: includes/class-freemius.php:20005 msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes." msgstr "Parece que estamos teniendo algún problema temporal con tu cancelación de la suscripción. Vuelve a intentarlo en unos minutos." -#: includes/class-freemius.php:17845 +#: includes/class-freemius.php:20014 msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s." msgstr "Tu suscripción ha sido cancelada correctamente. Tu %s licencia del plan caducará en %s." -#: includes/class-freemius.php:17887 +#: includes/class-freemius.php:20056 msgid "You are already running the %s in a trial mode." msgstr "Estás ejecutando %s en modo de prueba." -#: includes/class-freemius.php:17898 +#: includes/class-freemius.php:20067 msgid "You already utilized a trial before." msgstr "Ya utilizaste un período de prueba antes." -#: includes/class-freemius.php:17912 +#: includes/class-freemius.php:20081 msgid "Plan %s do not exist, therefore, can't start a trial." msgstr "El plan %s no existe, por lo tanto, no puedes comenzar un período de prueba." -#: includes/class-freemius.php:17923 +#: includes/class-freemius.php:20092 msgid "Plan %s does not support a trial period." msgstr "El plan %s no admite un período de prueba." -#: includes/class-freemius.php:17934 +#: includes/class-freemius.php:20103 msgid "None of the %s's plans supports a trial period." msgstr "Ninguno de los planes de %s soportan un período de prueba." -#: includes/class-freemius.php:17984 +#: includes/class-freemius.php:20153 msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)" msgstr "Parece que ya no estás en modo de prueba, así que no hay nada que cancelar :)" -#: includes/class-freemius.php:18020 +#: includes/class-freemius.php:20189 msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes." msgstr "Parece que estamos teniendo algún problema temporal con tu cancelación de prueba. Vuelve a intentarlo en unos minutos." -#: includes/class-freemius.php:18039 +#: includes/class-freemius.php:20208 msgid "Your %s free trial was successfully cancelled." msgstr "Tu prueba gratuita de %s fue cancelada con éxito." -#: includes/class-freemius.php:18346 +#: includes/class-freemius.php:20524 msgid "Version %s was released." msgstr "La versión %s se ha lanzado." -#: includes/class-freemius.php:18346 +#: includes/class-freemius.php:20524 msgid "Please download %s." msgstr "Por favor descarga %s." -#: includes/class-freemius.php:18353 +#: includes/class-freemius.php:20531 msgid "the latest %s version here" msgstr "la última versión %s aquí" -#: includes/class-freemius.php:18358 +#: includes/class-freemius.php:20536 msgid "New" msgstr "Nuevo" -#: includes/class-freemius.php:18363 +#: includes/class-freemius.php:20541 msgid "Seems like you got the latest release." msgstr "Parece que tienes la última versión." -#: includes/class-freemius.php:18364 +#: includes/class-freemius.php:20542 msgid "You are all good!" msgstr "¡Está todo listo!" -#: includes/class-freemius.php:18632 +#: includes/class-freemius.php:20812 msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box." msgstr "El correo de verificación se acaba de enviar a %s. Si no puedes encontrarlo después de 5 min, comprueba tu carpeta de spam." -#: includes/class-freemius.php:18769 +#: includes/class-freemius.php:20951 msgid "Site successfully opted in." msgstr "Sitio dado de alta correctamente." -#: includes/class-freemius.php18770, includes/class-freemius.php:19581 +#: includes/class-freemius.php20952, includes/class-freemius.php:21792 msgid "Awesome" msgstr "Increíble" -#: includes/class-freemius.php18786, templates/forms/optout.php:32 +#: includes/class-freemius.php20968, templates/forms/optout.php:32 msgid "We appreciate your help in making the %s better by letting us track some usage data." msgstr "Agradecemos tu ayuda para mejorar %s y por permitirnos rastrear algunos datos de uso." -#: includes/class-freemius.php:18787 +#: includes/class-freemius.php:20969 msgid "Thank you!" msgstr "¡Gracias!" -#: includes/class-freemius.php:18794 +#: includes/class-freemius.php:20976 msgid "We will no longer be sending any usage data of %s on %s to %s." msgstr "No continuaremos enviando datos de uso de %s en %s a %s." -#: includes/class-freemius.php:18923 +#: includes/class-freemius.php:21105 msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder." msgstr "Comprueba tu buzón de correo, debes recibir un correo electrónico a través de %s para confirmar el cambio de propiedad. Por razones de seguridad, debes confirmar el cambio dentro de los próximos 15 min. Si no puedes encontrar el correo electrónico, comprueba tu carpeta de correo no deseado." -#: includes/class-freemius.php:18929 +#: includes/class-freemius.php:21111 msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval." msgstr "Gracias por confirmar el cambio de propiedad. Se envió un correo electrónico a %s para su aprobación final." -#: includes/class-freemius.php:18934 +#: includes/class-freemius.php:21116 msgid "%s is the new owner of the account." msgstr "%s es el nuevo dueño de la cuenta." -#: includes/class-freemius.php:18936 +#: includes/class-freemius.php:21118 msgctxt "as congratulations" msgid "Congrats" msgstr "Felicidades" -#: includes/class-freemius.php:18956 +#: includes/class-freemius.php:21138 msgid "Sorry, we could not complete the email update. Another user with the same email is already registered." msgstr "Lo sentimos, no podemos completar la actualización de correo electrónico. Ya hay registrado otro usuario con esa dirección de correo electrónico." -#: includes/class-freemius.php:18957 +#: includes/class-freemius.php:21139 msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button." msgstr "Si deseas renunciar a la titularidad de la cuenta de %s a %s haz clic en el botón de cambio de titularidad." -#: includes/class-freemius.php:18964 +#: includes/class-freemius.php:21146 msgid "Change Ownership" msgstr "Cambiar propietario" -#: includes/class-freemius.php:18972 +#: includes/class-freemius.php:21154 msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments." msgstr "Se actualizó correctamente tu correo electrónico. Recibirás un correo electrónico con las instrucciones de confirmación en unos momentos." -#: includes/class-freemius.php:18984 +#: includes/class-freemius.php:21166 msgid "Please provide your full name." msgstr "Por favor, dinos tu nombre completo." -#: includes/class-freemius.php:18989 +#: includes/class-freemius.php:21171 msgid "Your name was successfully updated." msgstr "Tu nombre fue actualizado correctamente." -#: includes/class-freemius.php:19050 +#: includes/class-freemius.php:21232 msgid "You have successfully updated your %s." msgstr "Has actualizado correctamente tu %s." -#: includes/class-freemius.php:19190 +#: includes/class-freemius.php:21372 msgid "Just letting you know that the add-ons information of %s is being pulled from an external server." msgstr "Sólo déjanos informarte que la información de complementos de %s se está extrayendo de un servidor externo." -#: includes/class-freemius.php:19191 +#: includes/class-freemius.php:21373 msgctxt "advance notice of something that will need attention." msgid "Heads up" msgstr "Atención" -#: includes/class-freemius.php:19621 +#: includes/class-freemius.php:21832 msgctxt "exclamation" msgid "Hey" msgstr "Hey" -#: includes/class-freemius.php:19621 +#: includes/class-freemius.php:21832 msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial." msgstr "¿Qué te pareció %s hasta ahora? Prueba todas nuestras funciones premium de %s con una prueba gratuita de % d-días." -#: includes/class-freemius.php:19629 +#: includes/class-freemius.php:21840 msgid "No commitment for %s days - cancel anytime!" msgstr "Sin compromiso por %s días - ¡cancelar en cualquier momento!" -#: includes/class-freemius.php:19630 +#: includes/class-freemius.php:21841 msgid "No credit card required" msgstr "No se necesita tarjeta de crédito" -#: includes/class-freemius.php19637, templates/forms/trial-start.php:53 +#: includes/class-freemius.php21848, templates/forms/trial-start.php:53 msgctxt "call to action" msgid "Start free trial" msgstr "Comenzar el período de prueba gratuito" -#: includes/class-freemius.php:19714 +#: includes/class-freemius.php:21925 msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!" msgstr "Hey, ¿sabías que %s tiene un programa de afiliados? ¡Si te gusta %s puedes convertirte en nuestro embajador y ganar dinero!" -#: includes/class-freemius.php:19723 +#: includes/class-freemius.php:21934 msgid "Learn more" msgstr "Saber más" -#: includes/class-freemius.php19873, templates/account.php406, -#: templates/account.php509, templates/connect.php171, -#: templates/connect.php421, templates/forms/license-activation.php24, -#: templates/account/partials/addon.php:235 +#: includes/class-freemius.php22120, templates/account.php499, +#: templates/account.php624, templates/connect.php171, +#: templates/connect.php421, templates/forms/license-activation.php27, +#: templates/account/partials/addon.php:321 msgid "Activate License" msgstr "Activar licencia" -#: includes/class-freemius.php19874, templates/account.php469, -#: templates/account.php508, templates/account/partials/site.php:256 +#: includes/class-freemius.php22121, templates/account.php571, +#: templates/account.php623, templates/account/partials/addon.php322, +#: templates/account/partials/site.php:271 msgid "Change License" msgstr "Cambiar licencia" -#: includes/class-freemius.php19956, templates/account/partials/site.php:161 +#: includes/class-freemius.php22217, templates/account/partials/site.php:169 msgid "Opt Out" msgstr "Darse de baja" -#: includes/class-freemius.php19958, includes/class-freemius.php19963, -#: templates/account/partials/site.php43, -#: templates/account/partials/site.php:161 +#: includes/class-freemius.php22219, includes/class-freemius.php22225, +#: templates/account/partials/site.php49, +#: templates/account/partials/site.php:169 msgid "Opt In" msgstr "Inscribirse" -#: includes/class-freemius.php:20187 -msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s" -msgstr "La versión de pago de %1s ya está instalada. Actívala para comenzar a beneficiarte de las funciones de %2s. %3s" +#: includes/class-freemius.php:22453 +msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s" +msgstr " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s" -#: includes/class-freemius.php:20195 +#: includes/class-freemius.php:22461 msgid "Activate %s features" msgstr "Activar características %s" -#: includes/class-freemius.php:20208 +#: includes/class-freemius.php:22474 msgid "Please follow these steps to complete the upgrade" msgstr "Por favor, sigue estos pasos para completar la actualización" -#: includes/class-freemius.php:20212 +#: includes/class-freemius.php:22478 msgid "Download the latest %s version" msgstr "Descargar la última versión %s" -#: includes/class-freemius.php:20216 +#: includes/class-freemius.php:22482 msgid "Upload and activate the downloaded version" msgstr "Cargar y activar la versión descargada" -#: includes/class-freemius.php:20218 +#: includes/class-freemius.php:22484 msgid "How to upload and activate?" msgstr "¿Cómo subirlo y activarlo?" -#: includes/class-freemius.php:20352 +#: includes/class-freemius.php:22618 msgid "%sClick here%s to choose the sites where you'd like to activate the license on." msgstr "%sClick aquí %s para elegir los sitios sobre los que te gustaría activar la licencia." -#: includes/class-freemius.php:20513 +#: includes/class-freemius.php:22779 msgid "Auto installation only works for opted-in users." msgstr "La instalación automática sólo funciona para usuarios que aceptaron." -#: includes/class-freemius.php20523, includes/class-freemius.php20556, -#: includes/class-fs-plugin-updater.php1060, -#: includes/class-fs-plugin-updater.php:1074 +#: includes/class-freemius.php22789, includes/class-freemius.php22822, +#: includes/class-fs-plugin-updater.php1212, +#: includes/class-fs-plugin-updater.php:1226 msgid "Invalid module ID." msgstr "Id de módulo no válido." -#: includes/class-freemius.php20532, includes/class-fs-plugin-updater.php:1096 +#: includes/class-freemius.php22798, includes/class-fs-plugin-updater.php:1248 msgid "Premium version already active." msgstr "Versión premium ya activa." -#: includes/class-freemius.php:20539 +#: includes/class-freemius.php:22805 msgid "You do not have a valid license to access the premium version." msgstr "No tienes una licencia válida para acceder a la versión premium." -#: includes/class-freemius.php:20546 +#: includes/class-freemius.php:22812 msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version." msgstr "El plugin es un \"Serviceware\" lo que significa que no tiene una versión de código premium." -#: includes/class-freemius.php20564, includes/class-fs-plugin-updater.php:1095 +#: includes/class-freemius.php22830, includes/class-fs-plugin-updater.php:1247 msgid "Premium add-on version already installed." msgstr "Versión del complemento premium ya instalada." -#: includes/class-freemius.php:20909 +#: includes/class-freemius.php:23180 msgid "View paid features" msgstr "Ver las funciones de pago" -#: includes/class-freemius.php:21229 +#: includes/class-freemius.php:23502 msgid "Thank you so much for using %s and its add-ons!" msgstr "¡Muchas gracias por utilizar %s y sus complementos!" -#: includes/class-freemius.php:21230 +#: includes/class-freemius.php:23503 msgid "Thank you so much for using %s!" msgstr "¡Muchas gracias por utilizar %s!" -#: includes/class-freemius.php:21236 +#: includes/class-freemius.php:23509 msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s." msgstr "Ya has optado por nuestro seguimiento de uso, lo que nos ayuda a seguir mejorando %s." -#: includes/class-freemius.php:21240 +#: includes/class-freemius.php:23513 msgid "Thank you so much for using our products!" msgstr "¡Muchas gracias por utilizar nuestros productos!" -#: includes/class-freemius.php:21241 +#: includes/class-freemius.php:23514 msgid "You've already opted-in to our usage-tracking, which helps us keep improving them." msgstr "Ya has optado por nuestro seguimiento de uso, lo que nos ayuda a seguir mejorando." -#: includes/class-freemius.php:21260 +#: includes/class-freemius.php:23533 msgid "%s and its add-ons" msgstr "%s y sus complementos" -#: includes/class-freemius.php:21269 +#: includes/class-freemius.php:23542 msgid "Products" msgstr "Productos" -#: includes/class-freemius.php21276, templates/connect.php:272 +#: includes/class-freemius.php23549, templates/connect.php:272 msgid "Yes" msgstr "Si" -#: includes/class-freemius.php21277, templates/connect.php:273 +#: includes/class-freemius.php23550, templates/connect.php:273 msgid "send me security & feature updates, educational content and offers." msgstr "envíame actualizaciones de seguridad y nuevas funcionalidades, contenido educativo y ofertas." -#: includes/class-freemius.php21278, templates/connect.php:278 +#: includes/class-freemius.php23551, templates/connect.php:278 msgid "No" msgstr "No" -#: includes/class-freemius.php21280, templates/connect.php:280 +#: includes/class-freemius.php23553, templates/connect.php:280 msgid "do %sNOT%s send me security & feature updates, educational content and offers." msgstr "%sNO%s me envíes actualizaciones de seguridad y nuevas funcionalidades, contenido educativo y ofertas." -#: includes/class-freemius.php:21290 -msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂" -msgstr "Debido a la nueva %s Regulación General de Protección de Datos de la UE (GDPR)%s los requisitos de conformidad nos requieren que nos debes dar tu consentimiento explícito, de nuevo, confirmando que estás de acuerdo 🙂" +#: includes/class-freemius.php:23563 +msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard :-)" +msgstr "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard :-)" -#: includes/class-freemius.php21292, templates/connect.php:287 +#: includes/class-freemius.php23565, templates/connect.php:287 msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:" msgstr "Indica si deseas que te contactemos para actualizaciones de seguridad y nuevas funciones, contenido educativo y ofertas ocasionales:" -#: includes/class-freemius.php:21574 +#: includes/class-freemius.php:23847 msgid "License key is empty." msgstr "La clave de licencia está vacía." -#: includes/class-fs-plugin-updater.php184, +#: includes/class-fs-plugin-updater.php206, #: templates/forms/premium-versions-upgrade-handler.php:57 msgid "Renew license" msgstr "Renovar la licencia" -#: includes/class-fs-plugin-updater.php189, +#: includes/class-fs-plugin-updater.php211, #: templates/forms/premium-versions-upgrade-handler.php:58 msgid "Buy license" msgstr "Comprar licencia" -#: includes/class-fs-plugin-updater.php:278 +#: includes/class-fs-plugin-updater.php321, +#: includes/class-fs-plugin-updater.php:354 msgid "There is a %s of %s available." msgstr "Hay una %s de %s disponible." -#: includes/class-fs-plugin-updater.php:282 +#: includes/class-fs-plugin-updater.php323, +#: includes/class-fs-plugin-updater.php:359 +msgid "new Beta version" +msgstr "new Beta version" + +#: includes/class-fs-plugin-updater.php324, +#: includes/class-fs-plugin-updater.php:360 msgid "new version" msgstr "nueva versión" -#: includes/class-fs-plugin-updater.php:305 +#: includes/class-fs-plugin-updater.php:383 msgid "Important Upgrade Notice:" msgstr "Aviso importante de actualización:" -#: includes/class-fs-plugin-updater.php:1125 +#: includes/class-fs-plugin-updater.php:1277 msgid "Installing plugin: %s" msgstr "Instalando plugin: %s" -#: includes/class-fs-plugin-updater.php:1166 +#: includes/class-fs-plugin-updater.php:1318 msgid "Unable to connect to the filesystem. Please confirm your credentials." msgstr "No es posible conectarse al sistema de archivos. Por favor, confirma tus credenciales." -#: includes/class-fs-plugin-updater.php:1348 +#: includes/class-fs-plugin-updater.php:1500 msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work." msgstr "El paquete de plugin remoto no contiene una carpeta con el Slug deseado y el cambio de nombre no funcionó." -#: includes/fs-plugin-info-dialog.php369, -#: templates/account/partials/addon.php:292 +#: includes/fs-plugin-info-dialog.php:535 +msgid "Purchase More" +msgstr "Purchase More" + +#: includes/fs-plugin-info-dialog.php536, +#: templates/account/partials/addon.php:385 msgctxt "verb" msgid "Purchase" msgstr "Comprar" -#: includes/fs-plugin-info-dialog.php:372 +#: includes/fs-plugin-info-dialog.php:540 msgid "Start my free %s" msgstr "Comenzar mi período gratuito de %s" -#: includes/fs-plugin-info-dialog.php:413 +#: includes/fs-plugin-info-dialog.php:738 +msgid "Install Free Version Update Now" +msgstr "Instalar la actualización gratuita ahora" + +#: includes/fs-plugin-info-dialog.php739, templates/account.php:560 +msgid "Install Update Now" +msgstr "Instalar actualización ahora" + +#: includes/fs-plugin-info-dialog.php:748 msgid "Install Free Version Now" msgstr "Instalar la versión gratuita ahora" -#: includes/fs-plugin-info-dialog.php414, templates/auto-installation.php111, -#: templates/account/partials/addon.php272, -#: templates/account/partials/addon.php:322 +#: includes/fs-plugin-info-dialog.php749, templates/add-ons.php323, +#: templates/auto-installation.php111, +#: templates/account/partials/addon.php365, +#: templates/account/partials/addon.php:418 msgid "Install Now" msgstr "Instalar ahora" -#: includes/fs-plugin-info-dialog.php:425 +#: includes/fs-plugin-info-dialog.php:765 msgctxt "as download latest version" msgid "Download Latest Free Version" msgstr "Descargar la última versión gratuita" -#: includes/fs-plugin-info-dialog.php426, templates/account.php80, -#: templates/account/partials/addon.php:21 +#: includes/fs-plugin-info-dialog.php766, templates/account.php91, +#: templates/add-ons.php37, templates/account/partials/addon.php:25 msgctxt "as download latest version" msgid "Download Latest" msgstr "Descargar la última" -#: includes/fs-plugin-info-dialog.php:436 -msgid "Install Free Version Update Now" -msgstr "Instalar la actualización gratuita ahora" - -#: includes/fs-plugin-info-dialog.php437, templates/account.php:460 -msgid "Install Update Now" -msgstr "Instalar actualización ahora" - -#: includes/fs-plugin-info-dialog.php:448 -msgid "Newer Free Version (%s) Installed" -msgstr "Versión gratuita más reciente (%s) instalada" - -#: includes/fs-plugin-info-dialog.php:449 -msgid "Newer Version (%s) Installed" -msgstr "Versión más reciente (%s) instalada" +#: includes/fs-plugin-info-dialog.php781, templates/add-ons.php329, +#: templates/account/partials/addon.php356, +#: templates/account/partials/addon.php:412 +msgid "Activate this add-on" +msgstr "Activar este complemento" -#: includes/fs-plugin-info-dialog.php:457 -msgid "Latest Free Version Installed" -msgstr "Última versión gratuita instalada" +#: includes/fs-plugin-info-dialog.php783, templates/connect.php:418 +msgid "Activate Free Version" +msgstr "Activar versión gratuita" -#: includes/fs-plugin-info-dialog.php:458 -msgid "Latest Version Installed" -msgstr "Última versión instalada" +#: includes/fs-plugin-info-dialog.php784, templates/account.php115, +#: templates/add-ons.php330, templates/account/partials/addon.php:48 +msgid "Activate" +msgstr "Activar" -#: includes/fs-plugin-info-dialog.php:613 +#: includes/fs-plugin-info-dialog.php:994 msgctxt "Plugin installer section title" msgid "Description" msgstr "Descripción" -#: includes/fs-plugin-info-dialog.php:614 +#: includes/fs-plugin-info-dialog.php:995 msgctxt "Plugin installer section title" msgid "Installation" msgstr "Instalación" -#: includes/fs-plugin-info-dialog.php:615 +#: includes/fs-plugin-info-dialog.php:996 msgctxt "Plugin installer section title" msgid "FAQ" msgstr "FAQ" -#: includes/fs-plugin-info-dialog.php616, +#: includes/fs-plugin-info-dialog.php997, #: templates/plugin-info/description.php:55 msgid "Screenshots" msgstr "Capturas de pantalla" -#: includes/fs-plugin-info-dialog.php:617 +#: includes/fs-plugin-info-dialog.php:998 msgctxt "Plugin installer section title" msgid "Changelog" msgstr "Registro de cambios" -#: includes/fs-plugin-info-dialog.php:618 +#: includes/fs-plugin-info-dialog.php:999 msgctxt "Plugin installer section title" msgid "Reviews" msgstr "Valoraciones" -#: includes/fs-plugin-info-dialog.php:619 +#: includes/fs-plugin-info-dialog.php:1000 msgctxt "Plugin installer section title" msgid "Other Notes" msgstr "Otras notas" -#: includes/fs-plugin-info-dialog.php:634 +#: includes/fs-plugin-info-dialog.php:1015 msgctxt "Plugin installer section title" msgid "Features & Pricing" msgstr "Características y precios" -#: includes/fs-plugin-info-dialog.php:644 +#: includes/fs-plugin-info-dialog.php:1025 msgid "Plugin Install" msgstr "Instalar plugin" -#: includes/fs-plugin-info-dialog.php:716 +#: includes/fs-plugin-info-dialog.php:1097 msgctxt "e.g. Professional Plan" msgid "%s Plan" msgstr "Plan %s" -#: includes/fs-plugin-info-dialog.php:742 +#: includes/fs-plugin-info-dialog.php:1123 msgctxt "e.g. the best product" msgid "Best" msgstr "El mejor" -#: includes/fs-plugin-info-dialog.php748, -#: includes/fs-plugin-info-dialog.php:768 +#: includes/fs-plugin-info-dialog.php1129, +#: includes/fs-plugin-info-dialog.php:1149 msgctxt "as every month" msgid "Monthly" msgstr "Mensual" -#: includes/fs-plugin-info-dialog.php:751 +#: includes/fs-plugin-info-dialog.php:1132 msgctxt "as once a year" msgid "Annual" msgstr "Anual" -#: includes/fs-plugin-info-dialog.php:754 +#: includes/fs-plugin-info-dialog.php:1135 msgid "Lifetime" msgstr "Permanente" -#: includes/fs-plugin-info-dialog.php768, -#: includes/fs-plugin-info-dialog.php770, -#: includes/fs-plugin-info-dialog.php:772 +#: includes/fs-plugin-info-dialog.php1149, +#: includes/fs-plugin-info-dialog.php1151, +#: includes/fs-plugin-info-dialog.php:1153 msgctxt "e.g. billed monthly" msgid "Billed %s" msgstr "Facturado %s" -#: includes/fs-plugin-info-dialog.php:770 +#: includes/fs-plugin-info-dialog.php:1151 msgctxt "as once a year" msgid "Annually" msgstr "Anualmente" -#: includes/fs-plugin-info-dialog.php:772 +#: includes/fs-plugin-info-dialog.php:1153 msgctxt "as once a year" msgid "Once" msgstr "Una vez" -#: includes/fs-plugin-info-dialog.php:778 +#: includes/fs-plugin-info-dialog.php:1159 msgid "Single Site License" msgstr "Licencia para un único sitio" -#: includes/fs-plugin-info-dialog.php:780 +#: includes/fs-plugin-info-dialog.php:1161 msgid "Unlimited Licenses" msgstr "Licencias ilimitadas" -#: includes/fs-plugin-info-dialog.php:782 +#: includes/fs-plugin-info-dialog.php:1163 msgid "Up to %s Sites" msgstr "Hasta %s sitios" -#: includes/fs-plugin-info-dialog.php792, +#: includes/fs-plugin-info-dialog.php1173, #: templates/plugin-info/features.php:82 msgctxt "as monthly period" msgid "mo" msgstr "me" -#: includes/fs-plugin-info-dialog.php799, +#: includes/fs-plugin-info-dialog.php1180, #: templates/plugin-info/features.php:80 msgctxt "as annual period" msgid "year" msgstr "año" -#: includes/fs-plugin-info-dialog.php:853 +#: includes/fs-plugin-info-dialog.php:1234 msgctxt "noun" msgid "Price" msgstr "Precio" -#: includes/fs-plugin-info-dialog.php:901 +#: includes/fs-plugin-info-dialog.php:1282 msgid "Save %s" msgstr "Guardar %s" -#: includes/fs-plugin-info-dialog.php:911 +#: includes/fs-plugin-info-dialog.php:1292 msgid "No commitment for %s - cancel anytime" msgstr "Sin compromiso para %s - cancelar en cualquier momento" -#: includes/fs-plugin-info-dialog.php:914 +#: includes/fs-plugin-info-dialog.php:1295 msgid "After your free %s, pay as little as %s" msgstr "Después de su período gratuito %s, pague sólo %s" -#: includes/fs-plugin-info-dialog.php:925 +#: includes/fs-plugin-info-dialog.php:1306 msgid "Details" msgstr "Detalles" -#: includes/fs-plugin-info-dialog.php929, templates/account.php91, -#: templates/debug.php201, templates/debug.php238, templates/debug.php452, -#: templates/account/partials/addon.php:32 +#: includes/fs-plugin-info-dialog.php1310, templates/account.php102, +#: templates/debug.php203, templates/debug.php240, templates/debug.php457, +#: templates/account/partials/addon.php:36 msgctxt "product version" msgid "Version" msgstr "Versión" -#: includes/fs-plugin-info-dialog.php:936 +#: includes/fs-plugin-info-dialog.php:1317 msgctxt "as the plugin author" msgid "Author" msgstr "Autor" -#: includes/fs-plugin-info-dialog.php:943 +#: includes/fs-plugin-info-dialog.php:1324 msgid "Last Updated" msgstr "Última actualización" -#: includes/fs-plugin-info-dialog.php948, templates/account.php:376 +#: includes/fs-plugin-info-dialog.php1329, templates/account.php:468 msgctxt "x-ago" msgid "%s ago" msgstr "hace %s" -#: includes/fs-plugin-info-dialog.php:957 +#: includes/fs-plugin-info-dialog.php:1338 msgid "Requires WordPress Version" msgstr "Necesita la versión de WordPress" -#: includes/fs-plugin-info-dialog.php:958 +#: includes/fs-plugin-info-dialog.php:1339 msgid "%s or higher" msgstr "%s o mayor" -#: includes/fs-plugin-info-dialog.php:965 +#: includes/fs-plugin-info-dialog.php:1346 msgid "Compatible up to" msgstr "Compatible hasta" -#: includes/fs-plugin-info-dialog.php:973 +#: includes/fs-plugin-info-dialog.php:1354 msgid "Downloaded" msgstr "Descargado" -#: includes/fs-plugin-info-dialog.php:977 +#: includes/fs-plugin-info-dialog.php:1358 msgid "%s time" msgstr "% vez" -#: includes/fs-plugin-info-dialog.php:979 +#: includes/fs-plugin-info-dialog.php:1360 msgid "%s times" msgstr "%s veces" -#: includes/fs-plugin-info-dialog.php:989 +#: includes/fs-plugin-info-dialog.php:1370 msgid "WordPress.org Plugin Page" msgstr "Página del plugin en WordPress.org" -#: includes/fs-plugin-info-dialog.php:997 +#: includes/fs-plugin-info-dialog.php:1378 msgid "Plugin Homepage" msgstr "Página web del plugin" -#: includes/fs-plugin-info-dialog.php1005, -#: includes/fs-plugin-info-dialog.php:1087 +#: includes/fs-plugin-info-dialog.php1386, +#: includes/fs-plugin-info-dialog.php:1468 msgid "Donate to this plugin" msgstr "Donar a este plugin" -#: includes/fs-plugin-info-dialog.php:1012 +#: includes/fs-plugin-info-dialog.php:1393 msgid "Average Rating" msgstr "Calificación media" -#: includes/fs-plugin-info-dialog.php:1019 +#: includes/fs-plugin-info-dialog.php:1400 msgid "based on %s" msgstr "basado en %s" -#: includes/fs-plugin-info-dialog.php:1023 +#: includes/fs-plugin-info-dialog.php:1404 msgid "%s rating" msgstr "%s calificación" -#: includes/fs-plugin-info-dialog.php:1025 +#: includes/fs-plugin-info-dialog.php:1406 msgid "%s ratings" msgstr "%s calificaciones" -#: includes/fs-plugin-info-dialog.php:1040 +#: includes/fs-plugin-info-dialog.php:1421 msgid "%s star" msgstr "%s estrella" -#: includes/fs-plugin-info-dialog.php:1042 +#: includes/fs-plugin-info-dialog.php:1423 msgid "%s stars" msgstr "%s estrellas" -#: includes/fs-plugin-info-dialog.php:1053 +#: includes/fs-plugin-info-dialog.php:1434 msgid "Click to see reviews that provided a rating of %s" msgstr "Haz clic para ver los comentarios con una valoración de %s" -#: includes/fs-plugin-info-dialog.php:1066 +#: includes/fs-plugin-info-dialog.php:1447 msgid "Contributors" msgstr "Colaboradores" -#: includes/fs-plugin-info-dialog.php1095, -#: includes/fs-plugin-info-dialog.php:1097 +#: includes/fs-plugin-info-dialog.php1476, +#: includes/fs-plugin-info-dialog.php:1478 msgid "Warning" msgstr "Atencion" -#: includes/fs-plugin-info-dialog.php:1095 +#: includes/fs-plugin-info-dialog.php:1476 msgid "This plugin has not been tested with your current version of WordPress." msgstr "Este plugin no ha sido probado con tu versión actual de WordPress." -#: includes/fs-plugin-info-dialog.php:1097 +#: includes/fs-plugin-info-dialog.php:1478 msgid "This plugin has not been marked as compatible with your version of WordPress." msgstr "Este puglin no ha sido marcado como compatible con tu versión de WordPress." -#: includes/fs-plugin-info-dialog.php:1116 +#: includes/fs-plugin-info-dialog.php:1497 msgid "Paid add-on must be deployed to Freemius." msgstr "El complemento de pago se debe implementar en Freemius." -#: includes/fs-plugin-info-dialog.php:1117 +#: includes/fs-plugin-info-dialog.php:1498 msgid "Add-on must be deployed to WordPress.org or Freemius." msgstr "El complemento debe implementarse en WordPress.org o en Freemius." -#: templates/account.php81, templates/forms/subscription-cancellation.php96, -#: templates/account/partials/addon.php22, -#: templates/account/partials/site.php:295 +#: includes/fs-plugin-info-dialog.php:1519 +msgid "Newer Version (%s) Installed" +msgstr "Versión más reciente (%s) instalada" + +#: includes/fs-plugin-info-dialog.php:1520 +msgid "Newer Free Version (%s) Installed" +msgstr "Versión gratuita más reciente (%s) instalada" + +#: includes/fs-plugin-info-dialog.php:1527 +msgid "Latest Version Installed" +msgstr "Última versión instalada" + +#: includes/fs-plugin-info-dialog.php:1528 +msgid "Latest Free Version Installed" +msgstr "Última versión gratuita instalada" + +#: templates/account.php92, templates/forms/subscription-cancellation.php96, +#: templates/account/partials/addon.php26, +#: templates/account/partials/site.php:311 msgid "Downgrading your plan" msgstr "Bajando tu plan" -#: templates/account.php82, templates/forms/subscription-cancellation.php97, -#: templates/account/partials/addon.php23, -#: templates/account/partials/site.php:296 +#: templates/account.php93, templates/forms/subscription-cancellation.php97, +#: templates/account/partials/addon.php27, +#: templates/account/partials/site.php:312 msgid "Cancelling the subscription" msgstr "Cancelando la suscripción" -#. translators: %1s: Either 'Downgrading your plan' or 'Cancelling the +#. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the #. subscription' -#: templates/account.php84, templates/forms/subscription-cancellation.php99, -#: templates/account/partials/addon.php25, -#: templates/account/partials/site.php:298 -msgid "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s." -msgstr "%1s detendrá inmediatamente todos los pagos recurrentes futuros y tu %s licencia del plan caducará en %s." - -#: templates/account.php85, templates/forms/subscription-cancellation.php100, -#: templates/account/partials/addon.php26, -#: templates/account/partials/site.php:299 +#: templates/account.php95, templates/forms/subscription-cancellation.php99, +#: templates/account/partials/site.php:314 +msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s." +msgstr "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s." + +#: templates/account.php96, templates/forms/subscription-cancellation.php100, +#: templates/account/partials/addon.php30, +#: templates/account/partials/site.php:315 msgid "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price." msgstr "Ten en cuenta que no podremos abaratar los precios desactualizados para renovaciones/nuevas suscripciones después de una cancelación. Si eliges renovar la suscripción manualmente en el futuro, después de un aumento de precio, que generalmente ocurre una vez al año, se te cobrará el precio actualizado." -#: templates/account.php86, templates/forms/subscription-cancellation.php106, -#: templates/account/partials/addon.php:27 +#: templates/account.php97, templates/forms/subscription-cancellation.php106, +#: templates/account/partials/addon.php:31 msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?" msgstr "La cancelación del período de prueba bloqueará inmediatamente el acceso a todas las funciones premium. ¿Estás seguro?" -#: templates/account.php87, templates/forms/subscription-cancellation.php101, -#: templates/account/partials/addon.php28, -#: templates/account/partials/site.php:300 +#: templates/account.php98, templates/forms/subscription-cancellation.php101, +#: templates/account/partials/addon.php32, +#: templates/account/partials/site.php:316 msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support." msgstr "Todavía puedes disfrutar de todas las funciones de %s pero no tendrás acceso a soporte y actualizaciones de %s." -#: templates/account.php88, templates/forms/subscription-cancellation.php102, -#: templates/account/partials/addon.php29, -#: templates/account/partials/site.php:301 +#: templates/account.php99, templates/forms/subscription-cancellation.php102, +#: templates/account/partials/addon.php33, +#: templates/account/partials/site.php:317 msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features." msgstr "Una vez que caduque tu licencia todavía puedes utilizar la versión gratuita pero NO tendrás acceso a las funciones de %s." #. translators: %s: Plan title (e.g. "Professional") -#: templates/account.php90, +#: templates/account.php101, #: templates/account/partials/activate-license-button.php31, -#: templates/account/partials/addon.php:31 +#: templates/account/partials/addon.php:35 msgid "Activate %s Plan" msgstr "Activar plan %s" #. translators: %s: Time period (e.g. Auto renews in "2 months") -#: templates/account.php93, templates/account/partials/addon.php34, -#: templates/account/partials/site.php:275 +#: templates/account.php104, templates/account/partials/addon.php38, +#: templates/account/partials/site.php:291 msgid "Auto renews in %s" msgstr "Auto renovaciones en %s" #. translators: %s: Time period (e.g. Expires in "2 months") -#: templates/account.php95, templates/account/partials/addon.php36, -#: templates/account/partials/site.php:277 +#: templates/account.php106, templates/account/partials/addon.php40, +#: templates/account/partials/site.php:293 msgid "Expires in %s" msgstr "Caduca en %s" -#: templates/account.php96, templates/account/partials/addon.php:37 +#: templates/account.php:107 msgctxt "as synchronize license" msgid "Sync License" msgstr "Sincronizar licencia" -#: templates/account.php97, templates/account/partials/addon.php:38 +#: templates/account.php108, templates/account/partials/addon.php:41 msgid "Cancel Trial" msgstr "Cancelar período de prueba" -#: templates/account.php98, templates/account/partials/addon.php:39 +#: templates/account.php109, templates/account/partials/addon.php:42 msgid "Change Plan" msgstr "Cambiar Plan" -#: templates/account.php99, templates/account/partials/addon.php:40 +#: templates/account.php110, templates/account/partials/addon.php:43 msgctxt "verb" msgid "Upgrade" msgstr "Actualizar" -#: templates/account.php101, templates/account/partials/addon.php42, -#: templates/account/partials/site.php:302 +#: templates/account.php112, templates/account/partials/addon.php45, +#: templates/account/partials/site.php:318 msgctxt "verb" msgid "Downgrade" msgstr "Degradar" -#: templates/account.php103, templates/add-ons.php130, +#: templates/account.php114, templates/add-ons.php246, #: templates/plugin-info/features.php72, -#: templates/account/partials/addon.php44, -#: templates/account/partials/site.php:31 +#: templates/account/partials/addon.php47, +#: templates/account/partials/site.php:33 msgid "Free" msgstr "Gratis" -#: templates/account.php104, templates/account/partials/addon.php:45 -msgid "Activate" -msgstr "Activar" - -#: templates/account.php105, templates/debug.php371, -#: includes/customizer/class-fs-customizer-upsell-control.php106, -#: templates/account/partials/addon.php:46 +#: templates/account.php116, templates/debug.php373, +#: includes/customizer/class-fs-customizer-upsell-control.php110, +#: templates/account/partials/addon.php:49 msgctxt "as product pricing plan" msgid "Plan" msgstr "Plan" -#: templates/account.php:158 +#: templates/account.php:117 +msgid "Bundle Plan" +msgstr "Bundle Plan" + +#: templates/account.php:191 msgid "Free Trial" msgstr "Período de prueba gratuito" -#: templates/account.php:169 +#: templates/account.php:202 msgid "Account Details" msgstr "Detalles de la cuenta" -#: templates/account.php:179 +#: templates/account.php209, templates/forms/data-debug-mode.php:33 +msgid "Start Debug" +msgstr "Start Debug" + +#: templates/account.php:211 +msgid "Stop Debug" +msgstr "Stop Debug" + +#: templates/account.php:218 +msgid "Billing & Invoices" +msgstr "Billing & Invoices" + +#: templates/account.php:229 msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?" msgstr "La eliminación de la cuenta desactivará automáticamente su licencia de plan %s para que pueda utilizarla en otros sitios. Si también desea cancelar los pagos periódicos, haga clic en el botón \"Cancelar\" y, en primer lugar, \"Degradar\" su cuenta. ¿Seguro que deseas continuar con la eliminación?" -#: templates/account.php:181 +#: templates/account.php:231 msgid "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?" msgstr "La eliminación no es temporal. Sólo elimínalo si ya no deseas utilizar este %s más. ¿Estás seguro que desea continuar con la eliminación?" -#: templates/account.php:184 +#: templates/account.php:234 msgid "Delete Account" msgstr "Borrar cuenta" -#: templates/account.php196, templates/account/partials/addon.php159, +#: templates/account.php246, templates/account/partials/addon.php231, #: templates/account/partials/deactivate-license-button.php:35 msgid "Deactivate License" msgstr "Desactivar licencia" -#: templates/account.php219, templates/forms/subscription-cancellation.php:125 +#: templates/account.php269, templates/forms/subscription-cancellation.php:125 msgid "Are you sure you want to proceed?" msgstr "¿Estás seguro que quieres proceder?" -#: templates/account.php219, templates/account/partials/addon.php:182 +#: templates/account.php269, templates/account/partials/addon.php:255 msgid "Cancel Subscription" msgstr "Cancelar suscripción" -#: templates/account.php:247 +#: templates/account.php298, templates/account/partials/addon.php:340 msgctxt "as synchronize" msgid "Sync" msgstr "Sincronizar" -#: templates/account.php261, templates/debug.php:487 +#: templates/account.php313, templates/debug.php:507 msgid "Name" msgstr "Nombre" -#: templates/account.php267, templates/debug.php:488 +#: templates/account.php319, templates/debug.php:508 msgid "Email" msgstr "Correo electrónico" -#: templates/account.php274, templates/debug.php370, templates/debug.php:526 +#: templates/account.php326, templates/debug.php371, templates/debug.php:557 msgid "User ID" msgstr "ID de usuario" -#: templates/account.php:282 +#: templates/account.php344, templates/account.php637, +#: templates/account.php682, templates/debug.php238, templates/debug.php365, +#: templates/debug.php454, templates/debug.php506, templates/debug.php555, +#: templates/debug.php632, templates/account/payments.php35, +#: templates/debug/logger.php:21 +msgid "ID" +msgstr "ID" + +#: templates/account.php:351 msgid "Site ID" msgstr "ID del sitio" -#: templates/account.php:285 +#: templates/account.php:354 msgid "No ID" msgstr "Sin ID" -#: templates/account.php290, templates/debug.php243, templates/debug.php372, -#: templates/debug.php453, templates/debug.php490, -#: templates/account/partials/site.php:219 +#: templates/account.php359, templates/debug.php245, templates/debug.php374, +#: templates/debug.php458, templates/debug.php510, +#: templates/account/partials/site.php:227 msgid "Public Key" msgstr "Clave pública" -#: templates/account.php296, templates/debug.php373, templates/debug.php454, -#: templates/debug.php491, templates/account/partials/site.php:231 +#: templates/account.php365, templates/debug.php375, templates/debug.php459, +#: templates/debug.php511, templates/account/partials/site.php:239 msgid "Secret Key" msgstr "Clave secreta" -#: templates/account.php:299 +#: templates/account.php:368 msgctxt "as secret encryption key missing" msgid "No Secret" msgstr "Sin clave secreta" -#: templates/account.php318, templates/account/partials/site.php112, -#: templates/account/partials/site.php:114 +#: templates/account.php395, templates/account/partials/site.php120, +#: templates/account/partials/site.php:122 msgid "Trial" msgstr "Período de prueba gratuito" -#: templates/account.php337, templates/debug.php531, -#: templates/account/partials/site.php:248 +#: templates/account.php422, templates/debug.php562, +#: templates/account/partials/site.php:260 msgid "License Key" msgstr "Clave de licencia" -#: templates/account.php:367 +#: templates/account.php:453 +msgid "Join the Beta program" +msgstr "Join the Beta program" + +#: templates/account.php:459 msgid "not verified" msgstr "no verificado" -#: templates/account.php376, templates/account/partials/addon.php:120 +#: templates/account.php468, templates/account/partials/addon.php:190 msgid "Expired" msgstr "Caducado" -#: templates/account.php:428 +#: templates/account.php:528 msgid "Premium version" msgstr "Versión premium" -#: templates/account.php:430 +#: templates/account.php:530 msgid "Free version" msgstr "Versión gratuita" -#: templates/account.php:442 +#: templates/account.php:542 msgid "Verify Email" msgstr "Verificar correo electrónico" -#: templates/account.php:453 +#: templates/account.php:553 msgid "Download %s Version" msgstr "Descargar versión %s" -#: templates/account.php467, templates/account.php649, -#: templates/account/partials/site.php237, -#: templates/account/partials/site.php:255 +#: templates/account.php568, templates/account.php820, +#: templates/account/partials/site.php248, +#: templates/account/partials/site.php:270 msgctxt "verb" msgid "Show" msgstr "Mostrar" -#: templates/account.php:481 +#: templates/account.php:583 msgid "What is your %s?" msgstr "¿Cual es tú %s?" -#: templates/account.php489, templates/account/billing.php:27 +#: templates/account.php591, templates/account/billing.php:21 msgctxt "verb" msgid "Edit" msgstr "Editar" -#: templates/account.php:502 +#: templates/account.php:616 msgid "Sites" msgstr "Sitios" -#: templates/account.php:513 +#: templates/account.php:629 msgid "Search by address" msgstr "Buscar por dirección" -#: templates/account.php522, templates/account.php570, templates/debug.php236, -#: templates/debug.php364, templates/debug.php449, templates/debug.php486, -#: templates/debug.php524, templates/debug.php597, -#: templates/account/payments.php35, templates/debug/logger.php:21 -msgid "ID" -msgstr "ID" - -#: templates/account.php523, templates/debug.php:367 +#: templates/account.php638, templates/debug.php:368 msgid "Address" msgstr "Dirección" -#: templates/account.php:524 +#: templates/account.php:639 msgid "License" msgstr "Licencia" -#: templates/account.php:525 +#: templates/account.php:640 msgid "Plan" msgstr "Plan" -#: templates/account.php:573 +#: templates/account.php:685 msgctxt "as software license" msgid "License" msgstr "Licencia" -#: templates/account.php:643 +#: templates/account.php:814 msgctxt "verb" msgid "Hide" msgstr "Ocultar" -#: templates/account.php:686 +#: templates/account.php836, templates/forms/data-debug-mode.php:31 +msgid "Processing" +msgstr "Procesando" + +#: templates/account.php:839 +msgid "Get updates for bleeding edge Beta versions of %s." +msgstr "Get updates for bleeding edge Beta versions of %s." + +#: templates/account.php:897 msgid "Cancelling %s" msgstr "Cancelando %s" -#: templates/account.php686, templates/account.php703, +#: templates/account.php897, templates/account.php914, #: templates/forms/subscription-cancellation.php27, -#: templates/forms/deactivation/form.php:117 +#: templates/forms/deactivation/form.php:133 msgid "trial" msgstr "período de prueba" -#: templates/account.php701, templates/forms/deactivation/form.php:134 +#: templates/account.php912, templates/forms/deactivation/form.php:150 msgid "Cancelling %s..." msgstr "Cancelando %s..." -#: templates/account.php704, templates/forms/subscription-cancellation.php28, -#: templates/forms/deactivation/form.php:118 +#: templates/account.php915, templates/forms/subscription-cancellation.php28, +#: templates/forms/deactivation/form.php:134 msgid "subscription" msgstr "suscripción" -#: templates/account.php:718 +#: templates/account.php:929 msgid "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?" msgstr "Al desactivar tu licencia todas las características premium se bloquearán, pero posibilitará poder activar tu licencia en otro sitio. ¿Estás seguro que quieres continuar?" -#: templates/add-ons.php:36 +#: templates/add-ons.php:38 +msgid "View details" +msgstr "Ver detalles" + +#: templates/add-ons.php:48 msgid "Add Ons for %s" msgstr "Complementos para %s" -#: templates/add-ons.php:44 -msgid "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." -msgstr "No podemos cargar la lista de complementos. Probablemente es un problema por nuestro parte, por favor inténtalo de nuevo en unos minutos." +#: templates/add-ons.php:58 +msgid "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." +msgstr "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." -#: templates/add-ons.php:139 -msgid "View details" -msgstr "Ver detalles" +#: templates/add-ons.php:229 +msgctxt "active add-on" +msgid "Active" +msgstr "Activo" + +#: templates/add-ons.php:230 +msgctxt "installed add-on" +msgid "Installed" +msgstr "Installed" -#: templates/admin-notice.php13, templates/forms/license-activation.php208, +#: templates/admin-notice.php13, templates/forms/license-activation.php207, #: templates/forms/resend-key.php:77 msgctxt "as close a window" msgid "Dismiss" @@ -1447,11 +1538,11 @@ msgstr "El proceso de instalación ha comenzado y puede tardar unos minutos en c msgid "Cancel Installation" msgstr "Cancelar instalación" -#: templates/checkout.php:172 +#: templates/checkout.php:180 msgid "Checkout" msgstr "Pagar" -#: templates/checkout.php:172 +#: templates/checkout.php:180 msgid "PCI compliant" msgstr "Compatible con PCI" @@ -1473,7 +1564,7 @@ msgstr "Reenviar correo electrónico de activación" msgid "Thanks %s!" msgstr "¡Gracias %s!" -#: templates/connect.php172, templates/forms/license-activation.php:43 +#: templates/connect.php172, templates/forms/license-activation.php:46 msgid "Agree & Activate License" msgstr "De acuerdo y activar licencia" @@ -1521,15 +1612,16 @@ msgstr "Alternativamente, puedes saltarlo ahora y activar la licencia después, msgid "During the update process we detected %s site(s) in the network that are still pending your attention." msgstr "Durante el proceso de actualización detectamos %s sitio(s) en la red que todavía están pendientes de tu atención." -#: templates/connect.php253, templates/forms/license-activation.php:46 +#: templates/connect.php253, templates/forms/data-debug-mode.php35, +#: templates/forms/license-activation.php:49 msgid "License key" msgstr "Clave de licencia" -#: templates/connect.php256, templates/forms/license-activation.php:19 +#: templates/connect.php256, templates/forms/license-activation.php:22 msgid "Can't find your license key?" msgstr "¿No puedes encontrar tu clave de licencia?" -#: templates/connect.php315, templates/connect.php630, +#: templates/connect.php315, templates/connect.php652, #: templates/forms/deactivation/retry-skip.php:20 msgctxt "verb" msgid "Skip" @@ -1579,7 +1671,7 @@ msgstr "Activación, desactivación y desinstalación" msgid "Newsletter" msgstr "Boletín" -#: templates/connect.php391, templates/forms/license-activation.php:38 +#: templates/connect.php391, templates/forms/license-activation.php:41 msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license." msgstr "%1$s periódicamente enviará datos a %2$s para comprobar las actualizaciones de seguridad, nuevas funcionalidades y verificar la validez de tu licencia." @@ -1591,10 +1683,6 @@ msgstr "¿Qué permisos se otorgan?" msgid "Don't have a license key?" msgstr "¿No tienes una clave de licencia?" -#: templates/connect.php:418 -msgid "Activate Free Version" -msgstr "Activar versión gratuita" - #: templates/connect.php:420 msgid "Have a license key?" msgstr "¿Tienes una clave de licencia?" @@ -1611,12 +1699,12 @@ msgstr "Acuerdo de licencia" msgid "Terms of Service" msgstr "Términos de servicio" -#: templates/connect.php:766 +#: templates/connect.php:805 msgctxt "as in the process of sending an email" msgid "Sending email" msgstr "Enviando correo electrónico" -#: templates/connect.php:767 +#: templates/connect.php:806 msgctxt "as activating plugin" msgid "Activating" msgstr "Activando" @@ -1644,8 +1732,8 @@ msgctxt "as code debugging" msgid "Debugging" msgstr "Depurando" -#: templates/debug.php54, templates/debug.php248, templates/debug.php374, -#: templates/debug.php:492 +#: templates/debug.php54, templates/debug.php250, templates/debug.php376, +#: templates/debug.php:512 msgid "Actions" msgstr "Acciones" @@ -1681,191 +1769,195 @@ msgstr "Cargar opción de BD" msgid "Set DB Option" msgstr "Guardar opción en BD" -#: templates/debug.php:180 +#: templates/debug.php:182 msgid "Key" msgstr "Clave" -#: templates/debug.php:181 +#: templates/debug.php:183 msgid "Value" msgstr "Valor" -#: templates/debug.php:197 +#: templates/debug.php:199 msgctxt "as software development kit versions" msgid "SDK Versions" msgstr "Versiones SDK" -#: templates/debug.php:202 +#: templates/debug.php:204 msgid "SDK Path" msgstr "Ruta del SDK" -#: templates/debug.php203, templates/debug.php:242 +#: templates/debug.php205, templates/debug.php:244 msgid "Module Path" msgstr "Ruta del módulo" -#: templates/debug.php:204 +#: templates/debug.php:206 msgid "Is Active" msgstr "Está activo" -#: templates/debug.php232, templates/debug/plugins-themes-sync.php:35 +#: templates/debug.php234, templates/debug/plugins-themes-sync.php:35 msgid "Plugins" msgstr "Plugins" -#: templates/debug.php232, templates/debug/plugins-themes-sync.php:56 +#: templates/debug.php234, templates/debug/plugins-themes-sync.php:56 msgid "Themes" msgstr "Temas" -#: templates/debug.php237, templates/debug.php369, templates/debug.php451, +#: templates/debug.php239, templates/debug.php370, templates/debug.php456, #: templates/debug/scheduled-crons.php:80 msgid "Slug" msgstr "Ruta" -#: templates/debug.php239, templates/debug.php:450 +#: templates/debug.php241, templates/debug.php:455 msgid "Title" msgstr "Título" -#: templates/debug.php:240 +#: templates/debug.php:242 msgctxt "as application program interface" msgid "API" msgstr "API" -#: templates/debug.php:241 +#: templates/debug.php:243 msgid "Freemius State" msgstr "Estado Freemius" -#: templates/debug.php:245 +#: templates/debug.php:247 msgid "Network Blog" msgstr "Blog de red" -#: templates/debug.php:246 +#: templates/debug.php:248 msgid "Network User" msgstr "Usuario de red" -#: templates/debug.php:283 +#: templates/debug.php:285 msgctxt "as connection was successful" msgid "Connected" msgstr "Conectado" -#: templates/debug.php:284 +#: templates/debug.php:286 msgctxt "as connection blocked" msgid "Blocked" msgstr "Bloqueado" -#: templates/debug.php:320 +#: templates/debug.php:322 msgid "Simulate Trial Promotion" msgstr "Simular período de prueba" -#: templates/debug.php:332 +#: templates/debug.php:334 msgid "Simulate Network Upgrade" msgstr "Simular actualización de red" -#: templates/debug.php:358 +#: templates/debug.php:359 msgid "%s Installs" msgstr "%s Instalaciones" -#: templates/debug.php:360 +#: templates/debug.php:361 msgctxt "like websites" msgid "Sites" msgstr "Sitios" -#: templates/debug.php366, templates/account/partials/site.php:148 +#: templates/debug.php367, templates/account/partials/site.php:156 msgid "Blog ID" msgstr "ID del blog" -#: templates/debug.php431, templates/debug.php509, -#: templates/account/partials/addon.php:339 +#: templates/debug.php:372 +msgid "License ID" +msgstr "License ID" + +#: templates/debug.php436, templates/debug.php535, +#: templates/account/partials/addon.php:435 msgctxt "verb" msgid "Delete" msgstr "Borrar" -#: templates/debug.php:445 +#: templates/debug.php:450 msgid "Add Ons of module %s" msgstr "Complementos del módulo %s" -#: templates/debug.php:482 +#: templates/debug.php:502 msgid "Users" msgstr "Usuarios" -#: templates/debug.php:489 +#: templates/debug.php:509 msgid "Verified" msgstr "Verificado" -#: templates/debug.php:520 +#: templates/debug.php:551 msgid "%s Licenses" msgstr "%s Licencias" -#: templates/debug.php:525 +#: templates/debug.php:556 msgid "Plugin ID" msgstr "ID del plugin" -#: templates/debug.php:527 +#: templates/debug.php:558 msgid "Plan ID" msgstr "ID del plan" -#: templates/debug.php:528 +#: templates/debug.php:559 msgid "Quota" msgstr "Cuota" -#: templates/debug.php:529 +#: templates/debug.php:560 msgid "Activated" msgstr "Activado" -#: templates/debug.php:530 +#: templates/debug.php:561 msgid "Blocking" msgstr "Bloqueando" -#: templates/debug.php:532 +#: templates/debug.php:563 msgctxt "as expiration date" msgid "Expiration" msgstr "Caducidad" -#: templates/debug.php:555 +#: templates/debug.php:590 msgid "Debug Log" msgstr "Log de Debug" -#: templates/debug.php:559 +#: templates/debug.php:594 msgid "All Types" msgstr "Todos los Tipos" -#: templates/debug.php:566 +#: templates/debug.php:601 msgid "All Requests" msgstr "Todas las peticiones" -#: templates/debug.php571, templates/debug.php600, +#: templates/debug.php606, templates/debug.php635, #: templates/debug/logger.php:25 msgid "File" msgstr "Archivo" -#: templates/debug.php572, templates/debug.php598, +#: templates/debug.php607, templates/debug.php633, #: templates/debug/logger.php:23 msgid "Function" msgstr "Función" -#: templates/debug.php:573 +#: templates/debug.php:608 msgid "Process ID" msgstr "ID del proceso" -#: templates/debug.php:574 +#: templates/debug.php:609 msgid "Logger" msgstr "Logger" -#: templates/debug.php575, templates/debug.php599, +#: templates/debug.php610, templates/debug.php634, #: templates/debug/logger.php:24 msgid "Message" msgstr "Mensaje" -#: templates/debug.php:577 +#: templates/debug.php:612 msgid "Filter" msgstr "Filtro" -#: templates/debug.php:585 +#: templates/debug.php:620 msgid "Download" msgstr "Descarga" -#: templates/debug.php596, templates/debug/logger.php:22 +#: templates/debug.php631, templates/debug/logger.php:22 msgid "Type" msgstr "Tipo" -#: templates/debug.php601, templates/debug/logger.php:26 +#: templates/debug.php636, templates/debug/logger.php:26 msgid "Timestamp" msgstr "Timestamp" @@ -1892,53 +1984,53 @@ msgstr "API Freemius" msgid "Requests" msgstr "Peticiones" -#: templates/account/billing.php:28 +#: templates/account/billing.php:22 msgctxt "verb" msgid "Update" msgstr "Actualizar" -#: templates/account/billing.php:39 +#: templates/account/billing.php:33 msgid "Billing" msgstr "Facturación" -#: templates/account/billing.php44, templates/account/billing.php:44 +#: templates/account/billing.php38, templates/account/billing.php:38 msgid "Business name" msgstr "Nombre de la empresa" -#: templates/account/billing.php45, templates/account/billing.php:45 +#: templates/account/billing.php39, templates/account/billing.php:39 msgid "Tax / VAT ID" msgstr "Tax / Núm IVA" -#: templates/account/billing.php48, templates/account/billing.php48, -#: templates/account/billing.php49, templates/account/billing.php:49 +#: templates/account/billing.php42, templates/account/billing.php42, +#: templates/account/billing.php43, templates/account/billing.php:43 msgid "Address Line %d" msgstr "Línea de la dirección %d" -#: templates/account/billing.php52, templates/account/billing.php:52 +#: templates/account/billing.php46, templates/account/billing.php:46 msgid "City" msgstr "Ciudad" -#: templates/account/billing.php52, templates/account/billing.php:52 +#: templates/account/billing.php46, templates/account/billing.php:46 msgid "Town" msgstr "Municipio" -#: templates/account/billing.php53, templates/account/billing.php:53 +#: templates/account/billing.php47, templates/account/billing.php:47 msgid "ZIP / Postal Code" msgstr "Código postal" -#: templates/account/billing.php:308 +#: templates/account/billing.php:302 msgid "Country" msgstr "País" -#: templates/account/billing.php:310 +#: templates/account/billing.php:304 msgid "Select Country" msgstr "Seleccionar país" -#: templates/account/billing.php317, templates/account/billing.php:318 +#: templates/account/billing.php311, templates/account/billing.php:312 msgid "State" msgstr "Estado" -#: templates/account/billing.php317, templates/account/billing.php:318 +#: templates/account/billing.php311, templates/account/billing.php:312 msgid "Province" msgstr "Provincia" @@ -2190,11 +2282,27 @@ msgstr "Cancelar" msgid "Become an affiliate" msgstr "Hacerse afiliado" -#: templates/forms/license-activation.php:20 +#: templates/forms/data-debug-mode.php:25 +msgid "Please enter the license key to enable the debug mode:" +msgstr "Please enter the license key to enable the debug mode:" + +#: templates/forms/data-debug-mode.php:27 +msgid "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:" +msgstr "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:" + +#: templates/forms/data-debug-mode.php:32 +msgid "Submit" +msgstr "Submit" + +#: templates/forms/data-debug-mode.php:36 +msgid "User key" +msgstr "User key" + +#: templates/forms/license-activation.php:23 msgid "Please enter the license key that you received in the email right after the purchase:" msgstr "Por favor, introduce la clave de licencia que recibiste en el correo electrónico al realizar la compra:" -#: templates/forms/license-activation.php:25 +#: templates/forms/license-activation.php:28 msgid "Update License" msgstr "Activar licencia" @@ -2274,7 +2382,7 @@ msgid "Proceed" msgstr "Proceder" #: templates/forms/subscription-cancellation.php191, -#: templates/forms/deactivation/form.php:150 +#: templates/forms/deactivation/form.php:171 msgid "Cancel %s & Proceed" msgstr "Cancelar %s y proceder" @@ -2286,38 +2394,42 @@ msgstr "Estás a sólo 1-click de comenzar tu %1$s días de prueba gratuita del msgid "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial." msgstr "Para el cumplimiento de las directrices de WordPress.org, antes de empezar el período de prueba te pedimos que aceptes con tu usuario e información no sensible del sitio web, permitiendo a %s enviar datos periódicamente a %s para comprobar si hay actualizaciones de versión y para validar la versión de prueba." -#: templates/js/style-premium-theme.php:37 +#: templates/js/style-premium-theme.php:39 msgid "Premium" msgstr "Premium" -#: templates/partials/network-activation.php:23 +#: templates/js/style-premium-theme.php:42 +msgid "Beta" +msgstr "Beta" + +#: templates/partials/network-activation.php:27 msgid "Activate license on all sites in the network." msgstr "Activar licencia en todos los sitios de la red" -#: templates/partials/network-activation.php:24 +#: templates/partials/network-activation.php:28 msgid "Apply on all sites in the network." msgstr "Aplicar en todos los sitios de la red" -#: templates/partials/network-activation.php:27 +#: templates/partials/network-activation.php:31 msgid "Activate license on all pending sites." msgstr "Aplicar licencia en todos los sitios pendientes" -#: templates/partials/network-activation.php:28 +#: templates/partials/network-activation.php:32 msgid "Apply on all pending sites." msgstr "Aplicar en todos los sitios pendientes" -#: templates/partials/network-activation.php36, -#: templates/partials/network-activation.php:68 +#: templates/partials/network-activation.php40, +#: templates/partials/network-activation.php:74 msgid "allow" msgstr "permitir" -#: templates/partials/network-activation.php38, -#: templates/partials/network-activation.php:70 +#: templates/partials/network-activation.php43, +#: templates/partials/network-activation.php:77 msgid "delegate" msgstr "delegar" -#: templates/partials/network-activation.php41, -#: templates/partials/network-activation.php:73 +#: templates/partials/network-activation.php47, +#: templates/partials/network-activation.php:81 msgid "skip" msgstr "saltar" @@ -2343,32 +2455,33 @@ msgstr "quedan %s" msgid "Last license" msgstr "Última licencia" -#: templates/account/partials/addon.php:115 +#. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the +#. subscription' +#: templates/account/partials/addon.php:29 +msgid "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s." +msgstr "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s." + +#: templates/account/partials/addon.php:185 msgid "Cancelled" msgstr "Cancelado" -#: templates/account/partials/addon.php:125 +#: templates/account/partials/addon.php:195 msgid "No expiration" msgstr "Sin caducidad" -#: templates/account/partials/addon.php264, -#: templates/account/partials/addon.php:317 -msgid "Activate this add-on" -msgstr "Activar este complemento" - -#: templates/account/partials/site.php:181 +#: templates/account/partials/site.php:189 msgid "Owner Name" msgstr "Nombre del propietario" -#: templates/account/partials/site.php:193 +#: templates/account/partials/site.php:201 msgid "Owner Email" msgstr "Correo electrónico del propietario" -#: templates/account/partials/site.php:205 +#: templates/account/partials/site.php:213 msgid "Owner ID" msgstr "ID del propietario" -#: templates/account/partials/site.php:270 +#: templates/account/partials/site.php:286 msgid "Subscription" msgstr "Suscripción" @@ -2380,47 +2493,47 @@ msgstr "Disculpa las molestias y estamos aquí para ayudarte si nos das una opor msgid "Contact Support" msgstr "Contactar soporte" -#: templates/forms/deactivation/form.php:59 +#: templates/forms/deactivation/form.php:64 msgid "Anonymous feedback" msgstr "Comentarios anónimos" -#: templates/forms/deactivation/form.php:66 +#: templates/forms/deactivation/form.php:70 msgid "Deactivate" msgstr "Desactivar" -#: templates/forms/deactivation/form.php:68 +#: templates/forms/deactivation/form.php:72 msgid "Activate %s" msgstr "Activar %s" -#: templates/forms/deactivation/form.php:80 +#: templates/forms/deactivation/form.php:87 msgid "Quick Feedback" msgstr "Comentarios rápidos" -#: templates/forms/deactivation/form.php:84 +#: templates/forms/deactivation/form.php:91 msgid "If you have a moment, please let us know why you are %s" msgstr "Si tienes un momento, por favor, dinos por qué estás %s" -#: templates/forms/deactivation/form.php:84 +#: templates/forms/deactivation/form.php:91 msgid "deactivating" msgstr "desactivando" -#: templates/forms/deactivation/form.php:84 +#: templates/forms/deactivation/form.php:91 msgid "switching" msgstr "cambiando" -#: templates/forms/deactivation/form.php:332 +#: templates/forms/deactivation/form.php:365 msgid "Submit & %s" msgstr "Enviar y %s" -#: templates/forms/deactivation/form.php:353 +#: templates/forms/deactivation/form.php:386 msgid "Kindly tell us the reason so we can improve." msgstr "Por favor, dínos la razón para que podamos mejorar." -#: templates/forms/deactivation/form.php:478 +#: templates/forms/deactivation/form.php:511 msgid "Yes - %s" msgstr "Si - %s" -#: templates/forms/deactivation/form.php:485 +#: templates/forms/deactivation/form.php:518 msgid "Skip & %s" msgstr "Saltar y %s" diff --git a/external/Freemius/languages/freemius-fr_FR.mo b/external/Freemius/languages/freemius-fr_FR.mo index 065f6364..427e4b98 100755 Binary files a/external/Freemius/languages/freemius-fr_FR.mo and b/external/Freemius/languages/freemius-fr_FR.mo differ diff --git a/external/Freemius/languages/freemius-fr_FR.po b/external/Freemius/languages/freemius-fr_FR.po index 4bd4b7cc..95af5d32 100755 --- a/external/Freemius/languages/freemius-fr_FR.po +++ b/external/Freemius/languages/freemius-fr_FR.po @@ -7,8 +7,8 @@ msgstr "" "Project-Id-Version: WordPress SDK\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2018-11-29 17:40+0000\n" -"Last-Translator: Boris Colombier \n" +"PO-Revision-Date: 2019-10-07 15:33+0000\n" +"Last-Translator: Vova Feldman \n" "Language: fr_FR\n" "Language-Team: French (France) (http://www.transifex.com/freemius/wordpress-sdk/language/fr_FR/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,1407 +21,1498 @@ msgstr "" "X-Poedit-SearchPathExcluded-0: *.js\n" "X-Poedit-SourceCharset: UTF-8\n" -#: includes/class-freemius.php:1688 +#: includes/class-freemius.php1880, templates/account.php:840 +msgid "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned." +msgstr "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned." + +#: includes/class-freemius.php:1887 +msgid "Would you like to proceed with the update?" +msgstr "Would you like to proceed with the update?" + +#: includes/class-freemius.php:2095 msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error." msgstr "Le SDK Freemius ne trouve pas le fichier principal du plugin. Merci de contacter sdk@freemius.com en indiquant l'erreur." -#: includes/class-freemius.php:1690 +#: includes/class-freemius.php:2097 msgid "Error" msgstr "Erreur" -#: includes/class-freemius.php:2011 +#: includes/class-freemius.php:2491 msgid "I found a better %s" msgstr "J'ai trouvé un meilleur %s" -#: includes/class-freemius.php:2013 +#: includes/class-freemius.php:2493 msgid "What's the %s's name?" msgstr "Quel est le nom du %s ?" -#: includes/class-freemius.php:2019 +#: includes/class-freemius.php:2499 msgid "It's a temporary %s. I'm just debugging an issue." msgstr "C'est une %s temporaire. Je corrige un problème." -#: includes/class-freemius.php:2021 +#: includes/class-freemius.php:2501 msgid "Deactivation" msgstr "Désactivation" -#: includes/class-freemius.php:2022 +#: includes/class-freemius.php:2502 msgid "Theme Switch" msgstr "Changement de Thème" -#: includes/class-freemius.php2031, templates/forms/resend-key.php:24 +#: includes/class-freemius.php2511, templates/forms/resend-key.php:24 msgid "Other" msgstr "Autre" -#: includes/class-freemius.php:2039 +#: includes/class-freemius.php:2519 msgid "I no longer need the %s" msgstr "Je n'ai plus besoin du %s" -#: includes/class-freemius.php:2046 +#: includes/class-freemius.php:2526 msgid "I only needed the %s for a short period" msgstr "Je n'ai besoin de %s que pour une courte période" -#: includes/class-freemius.php:2052 +#: includes/class-freemius.php:2532 msgid "The %s broke my site" msgstr "Le %s a cassé mon site" -#: includes/class-freemius.php:2059 +#: includes/class-freemius.php:2539 msgid "The %s suddenly stopped working" msgstr "Le %s a soudainement arrêté de fonctionner" -#: includes/class-freemius.php:2069 +#: includes/class-freemius.php:2549 msgid "I can't pay for it anymore" msgstr "Je ne peux plus payer pour ça" -#: includes/class-freemius.php:2071 +#: includes/class-freemius.php:2551 msgid "What price would you feel comfortable paying?" msgstr "Quel prix seriez-vous prêt à payer ?" -#: includes/class-freemius.php:2077 +#: includes/class-freemius.php:2557 msgid "I don't like to share my information with you" msgstr "Je ne veux pas partager mes informations avec vous" -#: includes/class-freemius.php:2098 +#: includes/class-freemius.php:2578 msgid "The %s didn't work" msgstr "Le %s n'a pas fonctionné" -#: includes/class-freemius.php:2108 +#: includes/class-freemius.php:2588 msgid "I couldn't understand how to make it work" msgstr "Je ne comprends pas comment le faire fonctionner" -#: includes/class-freemius.php:2116 +#: includes/class-freemius.php:2596 msgid "The %s is great, but I need specific feature that you don't support" msgstr "Le %s est bien mais j'ai besoin de fonctionnalités spécifiques que vous ne proposez pas" -#: includes/class-freemius.php:2118 +#: includes/class-freemius.php:2598 msgid "What feature?" msgstr "Quelle fonctionnalité ?" -#: includes/class-freemius.php:2122 +#: includes/class-freemius.php:2602 msgid "The %s is not working" msgstr "Le %s ne fonctionne pas" -#: includes/class-freemius.php:2124 +#: includes/class-freemius.php:2604 msgid "Kindly share what didn't work so we can fix it for future users..." msgstr "Merci de nous indiquer ce qui ne fonctionne pas afin que nous puissions le corriger pour les futurs utilisateurs..." -#: includes/class-freemius.php:2128 +#: includes/class-freemius.php:2608 msgid "It's not what I was looking for" msgstr "Ce n'est pas ce que je recherche" -#: includes/class-freemius.php:2130 +#: includes/class-freemius.php:2610 msgid "What you've been looking for?" msgstr "Que recherchez-vous ?" -#: includes/class-freemius.php:2134 +#: includes/class-freemius.php:2614 msgid "The %s didn't work as expected" msgstr "Le %s n'a pas fonctionné comme prévu" -#: includes/class-freemius.php:2136 +#: includes/class-freemius.php:2616 msgid "What did you expect?" msgstr "À quoi vous attendiez-vous ?" -#: includes/class-freemius.php2942, templates/debug.php:20 +#: includes/class-freemius.php3471, templates/debug.php:20 msgid "Freemius Debug" msgstr "Débuggage Freemius" -#: includes/class-freemius.php:3670 +#: includes/class-freemius.php:4223 msgid "I don't know what is cURL or how to install it, help me!" msgstr "Je ne sais pas ce qu'est cURL ou comment l'installer, aidez moi !" -#: includes/class-freemius.php:3672 +#: includes/class-freemius.php:4225 msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update." msgstr "Nous allons contacter votre hébergeur afin de résoudre le problème. Vous recevrez un email à propos de %s dès que nous aurons des nouvelles." -#: includes/class-freemius.php:3679 +#: includes/class-freemius.php:4232 msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again." msgstr "Parfait, merci d'installer cURL et de l'activer dans votre fichier php.ini. De plus, recherchez l'instruction 'disable_functions' de votre fichier php.ini et désactivez les commandes commençant par 'curl_'. Pour vérifier la bonne activation, utilisez la fonction 'phpinfo()'. Une fois activé, désactivez le %s et réactivez le à nouveau." -#: includes/class-freemius.php:3784 +#: includes/class-freemius.php:4337 msgid "Yes - do your thing" msgstr "Oui - allez-y" -#: includes/class-freemius.php:3789 +#: includes/class-freemius.php:4342 msgid "No - just deactivate" msgstr "Non - désactivation seulement" -#: includes/class-freemius.php3834, includes/class-freemius.php4343, -#: includes/class-freemius.php5442, includes/class-freemius.php11545, -#: includes/class-freemius.php14916, includes/class-freemius.php14968, -#: includes/class-freemius.php15030, includes/class-freemius.php17263, -#: includes/class-freemius.php17273, includes/class-freemius.php17882, -#: includes/class-freemius.php18742, includes/class-freemius.php18857, -#: includes/class-freemius.php19001, templates/add-ons.php:43 +#: includes/class-freemius.php4387, includes/class-freemius.php4881, +#: includes/class-freemius.php6032, includes/class-freemius.php13153, +#: includes/class-freemius.php16558, includes/class-freemius.php16646, +#: includes/class-freemius.php16812, includes/class-freemius.php19040, +#: includes/class-freemius.php19381, includes/class-freemius.php19391, +#: includes/class-freemius.php20051, includes/class-freemius.php20924, +#: includes/class-freemius.php21039, includes/class-freemius.php21183, +#: templates/add-ons.php:57 msgctxt "exclamation" msgid "Oops" msgstr "Oups" -#: includes/class-freemius.php:3903 +#: includes/class-freemius.php:4456 msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience." msgstr "Merci de nous permettre de corriger ça. Un message vient d'être envoyé à notre service technique. Nous reviendrons vers vous dès que nous aurons des nouvelles à propos de %s." -#: includes/class-freemius.php:4340 +#: includes/class-freemius.php:4878 msgctxt "addonX cannot run without pluginY" msgid "%s cannot run without %s." msgstr "%s ne peut pas fonctionner sans %s." -#: includes/class-freemius.php:4341 +#: includes/class-freemius.php:4879 msgctxt "addonX cannot run..." msgid "%s cannot run without the plugin." msgstr "%s ne peut pas fonctionner sans le plugin." -#: includes/class-freemius.php4487, includes/class-freemius.php4512, -#: includes/class-freemius.php:17953 +#: includes/class-freemius.php5052, includes/class-freemius.php5077, +#: includes/class-freemius.php:20122 msgid "Unexpected API error. Please contact the %s's author with the following error." msgstr "Une erreur est survenue dans l'API. Merci de contacter l'auteur du %s en lui indiquant l'erreur." -#: includes/class-freemius.php:5130 +#: includes/class-freemius.php:5720 msgid "Premium %s version was successfully activated." msgstr "La version premium de %s a été activée avec succès." -#: includes/class-freemius.php5142, includes/class-freemius.php:7004 +#: includes/class-freemius.php5732, includes/class-freemius.php:7599 msgctxt "" msgid "W00t" msgstr "Génial" -#: includes/class-freemius.php:5157 +#: includes/class-freemius.php:5747 msgid "You have a %s license." msgstr "Vous avez une license pour %s." -#: includes/class-freemius.php5161, includes/class-freemius.php14337, -#: includes/class-freemius.php14348, includes/class-freemius.php17177, -#: includes/class-freemius.php17491, includes/class-freemius.php17557, -#: includes/class-freemius.php:17707 +#: includes/class-freemius.php5751, includes/class-freemius.php15975, +#: includes/class-freemius.php15986, includes/class-freemius.php19292, +#: includes/class-freemius.php19642, includes/class-freemius.php19711, +#: includes/class-freemius.php:19876 msgctxt "interjection expressing joy or exuberance" msgid "Yee-haw" msgstr "Youpi" -#: includes/class-freemius.php:5425 +#: includes/class-freemius.php:6015 msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license." msgstr "La période d'essai du %s a bien été annulé. L'add-on a été désactivé car il ne fonctionne qu'avec la version premium. Si vous souhaitez l'utiliser ultérieurement, vous devrez acheter une licence." -#: includes/class-freemius.php:5429 +#: includes/class-freemius.php:6019 msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin." msgstr "%sest un add-on pour la version premium. Vous devez acheter une licence avant d'activer le plugin." -#: includes/class-freemius.php5438, templates/add-ons.php103, -#: templates/account/partials/addon.php:288 +#: includes/class-freemius.php6028, templates/add-ons.php186, +#: templates/account/partials/addon.php:381 msgid "More information about %s" msgstr "Plus d'informations à propos de %s" -#: includes/class-freemius.php:5439 +#: includes/class-freemius.php:6029 msgid "Purchase License" msgstr "Acheter une licence" -#: includes/class-freemius.php6372, templates/connect.php:163 +#: includes/class-freemius.php6964, templates/connect.php:163 msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s." msgstr "Vous devriez recevoir un email d'activation pour %s sur votre boîte %s. Merci de cliquer sur le bouton d'activation dans l'email pour %s." -#: includes/class-freemius.php:6376 +#: includes/class-freemius.php:6968 msgid "start the trial" msgstr "commencer la période d'essai" -#: includes/class-freemius.php6377, templates/connect.php:167 +#: includes/class-freemius.php6969, templates/connect.php:167 msgid "complete the install" msgstr "compléter l'installation" -#: includes/class-freemius.php:6490 +#: includes/class-freemius.php:7081 msgid "You are just one step away - %s" msgstr "Il ne reste qu'une étape - %s" -#: includes/class-freemius.php:6493 +#: includes/class-freemius.php:7084 msgctxt "%s - plugin name. As complete \"PluginX\" activation now" msgid "Complete \"%s\" Activation Now" msgstr "Compléter \"%s\" Activer Maintenant" -#: includes/class-freemius.php:6571 +#: includes/class-freemius.php:7162 msgid "We made a few tweaks to the %s, %s" msgstr "Nous avons fait quelques modifications au %s, %s" -#: includes/class-freemius.php:6575 +#: includes/class-freemius.php:7166 msgid "Opt in to make \"%s\" better!" msgstr "Inscrivez-vous pour améliorer \"%s\" !" -#: includes/class-freemius.php:7003 +#: includes/class-freemius.php:7598 msgid "The upgrade of %s was successfully completed." msgstr "La mise à jour du %s s'est terminée avec succès " -#: includes/class-freemius.php8925, includes/class-fs-plugin-updater.php886, -#: includes/class-fs-plugin-updater.php1081, -#: includes/class-fs-plugin-updater.php1088, +#: includes/class-freemius.php9802, includes/class-fs-plugin-updater.php1038, +#: includes/class-fs-plugin-updater.php1233, +#: includes/class-fs-plugin-updater.php1240, #: templates/auto-installation.php:32 msgid "Add-On" msgstr "Add-On" -#: includes/class-freemius.php8927, templates/debug.php359, -#: templates/debug.php:520 +#: includes/class-freemius.php9804, templates/account.php335, +#: templates/account.php343, templates/debug.php360, templates/debug.php:551 msgid "Plugin" msgstr "Plugin" -#: includes/class-freemius.php8928, templates/debug.php359, -#: templates/debug.php520, templates/forms/deactivation/form.php:67 +#: includes/class-freemius.php9805, templates/account.php336, +#: templates/account.php344, templates/debug.php360, templates/debug.php551, +#: templates/forms/deactivation/form.php:71 msgid "Theme" msgstr "Thème" -#: includes/class-freemius.php:11412 +#: includes/class-freemius.php:12596 +msgid "An unknown error has occurred while trying to set the user's beta mode." +msgstr "An unknown error has occurred while trying to set the user's beta mode." + +#: includes/class-freemius.php:13020 msgid "Invalid site details collection." msgstr "Récupération des détails du site non valide." -#: includes/class-freemius.php:11532 +#: includes/class-freemius.php:13140 msgid "We couldn't find your email address in the system, are you sure it's the right address?" msgstr "Nous ne trouvons pas votre adresse mail dans notre système, êtes-vous qu'il s'agit de la bonne adresse ?" -#: includes/class-freemius.php:11534 +#: includes/class-freemius.php:13142 msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?" msgstr "Nous ne trouvons aucune licence active associée avec cette adresse email, êtes-vous qu'il s'agit de la bonne adresse ?" -#: includes/class-freemius.php:11808 +#: includes/class-freemius.php:13416 msgid "Account is pending activation." msgstr "Compte en cours d'activation." -#: includes/class-freemius.php11920, +#: includes/class-freemius.php13528, #: templates/forms/premium-versions-upgrade-handler.php:47 msgid "Buy a license now" msgstr "Acheter une licence maintenant" -#: includes/class-freemius.php11932, +#: includes/class-freemius.php13540, #: templates/forms/premium-versions-upgrade-handler.php:46 msgid "Renew your license now" msgstr "Renouvelez votre licence maintenant" -#: includes/class-freemius.php:11936 +#: includes/class-freemius.php:13544 msgid "%s to access version %s security & feature updates, and support." msgstr "%s pour permettre les mises à jour de sécurité et de fonctionnalités de la version %s, et le support." -#: includes/class-freemius.php:14319 +#: includes/class-freemius.php:15957 msgid "%s activation was successfully completed." msgstr "L'activation de %s s'est terminée avec succès." -#: includes/class-freemius.php:14333 +#: includes/class-freemius.php:15971 msgid "Your account was successfully activated with the %s plan." msgstr "Votre compte a été activé avec succès avec la formule %s." -#: includes/class-freemius.php14344, includes/class-freemius.php:17553 +#: includes/class-freemius.php15982, includes/class-freemius.php:19707 msgid "Your trial has been successfully started." msgstr "Votre période d'essai a bien démarré." -#: includes/class-freemius.php14914, includes/class-freemius.php14966, -#: includes/class-freemius.php:15028 +#: includes/class-freemius.php16556, includes/class-freemius.php16644, +#: includes/class-freemius.php:16810 msgid "Couldn't activate %s." msgstr "Impossible d'activer %s." -#: includes/class-freemius.php14915, includes/class-freemius.php14967, -#: includes/class-freemius.php:15029 +#: includes/class-freemius.php16557, includes/class-freemius.php16645, +#: includes/class-freemius.php:16811 msgid "Please contact us with the following message:" msgstr "Merci de nous contacter avec le message suivant :" -#: includes/class-freemius.php15378, includes/class-freemius.php:19839 +#: includes/class-freemius.php16641, templates/forms/data-debug-mode.php:162 +msgid "An unknown error has occurred." +msgstr "An unknown error has occurred." + +#: includes/class-freemius.php17168, includes/class-freemius.php:22082 msgid "Upgrade" msgstr "Mise à jour" -#: includes/class-freemius.php:15384 +#: includes/class-freemius.php:17174 msgid "Start Trial" msgstr "Essai gratuit" -#: includes/class-freemius.php:15386 +#: includes/class-freemius.php:17176 msgid "Pricing" msgstr "Tarifs" -#: includes/class-freemius.php15448, includes/class-freemius.php:15450 +#: includes/class-freemius.php17256, includes/class-freemius.php:17258 msgid "Affiliation" msgstr "Affiliation" -#: includes/class-freemius.php15478, includes/class-freemius.php15480, -#: templates/account.php150, templates/debug.php:324 +#: includes/class-freemius.php17286, includes/class-freemius.php17288, +#: templates/account.php183, templates/debug.php:326 msgid "Account" msgstr "Compte" -#: includes/class-freemius.php15493, includes/class-freemius.php15495, +#: includes/class-freemius.php17302, includes/class-freemius.php17304, #: includes/customizer/class-fs-customizer-support-section.php:60 msgid "Contact Us" msgstr "Contactez Nous" -#: includes/class-freemius.php15505, includes/class-freemius.php15507, -#: includes/class-freemius.php19849, templates/account.php100, -#: templates/account/partials/addon.php:41 +#: includes/class-freemius.php17315, includes/class-freemius.php17317, +#: includes/class-freemius.php22096, templates/account.php111, +#: templates/account/partials/addon.php:44 msgid "Add-Ons" msgstr "Add-Ons" -#: includes/class-freemius.php:15541 +#: includes/class-freemius.php:17351 msgctxt "ASCII arrow left icon" msgid "←" msgstr "←" -#: includes/class-freemius.php:15541 +#: includes/class-freemius.php:17351 msgctxt "ASCII arrow right icon" msgid "➤" msgstr "➤" -#: includes/class-freemius.php15543, templates/pricing.php:97 +#: includes/class-freemius.php17353, templates/pricing.php:103 msgctxt "noun" msgid "Pricing" msgstr "Tarifs" -#: includes/class-freemius.php15756, +#: includes/class-freemius.php17566, #: includes/customizer/class-fs-customizer-support-section.php:67 msgid "Support Forum" msgstr "Forum de Support" -#: includes/class-freemius.php:16542 +#: includes/class-freemius.php:18536 msgid "Your email has been successfully verified - you are AWESOME!" msgstr "Votre email a été vérifié avec succès - vous êtes FORMIDABLE !" -#: includes/class-freemius.php:16543 +#: includes/class-freemius.php:18537 msgctxt "a positive response" msgid "Right on" msgstr "Directement" -#: includes/class-freemius.php:17168 +#: includes/class-freemius.php:19041 +msgid "seems like the key you entered doesn't match our records." +msgstr "seems like the key you entered doesn't match our records." + +#: includes/class-freemius.php:19065 +msgid "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." +msgstr "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." + +#: includes/class-freemius.php:19283 msgid "Your %s Add-on plan was successfully upgraded." msgstr "Votre Add-on %s a bien été mis à jour." -#: includes/class-freemius.php:17170 +#: includes/class-freemius.php:19285 msgid "%s Add-on was successfully purchased." msgstr "L'Add-on %s a bien été acheté." -#: includes/class-freemius.php:17173 +#: includes/class-freemius.php:19288 msgid "Download the latest version" msgstr "Télécharger la dernière version" -#: includes/class-freemius.php:17259 -msgctxt "%1s - plugin title, %2s - API domain" -msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s" -msgstr "Votre serveur bloque l'accès à l4API Freemius qui est indispensable pour la synchronisation %1s. Merci de contacter votre hébergeur pour mettre %2s dans la liste blanche " +#: includes/class-freemius.php:19374 +msgid "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s" +msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s" -#: includes/class-freemius.php17262, includes/class-freemius.php17678, -#: includes/class-freemius.php:17755 +#: includes/class-freemius.php19380, includes/class-freemius.php19390, +#: includes/class-freemius.php19835, includes/class-freemius.php:19924 msgid "Error received from the server:" msgstr "Une erreur a été reçu depuis le serveur :" -#: includes/class-freemius.php:17272 +#: includes/class-freemius.php:19390 msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again." msgstr "Il semble que l'un des paramètres d'authentification soit faux. Veuillez mettre à jour votre Public Key, votre Secret Key ainsi que vote User ID et essayez à nouveau." -#: includes/class-freemius.php17454, includes/class-freemius.php17683, -#: includes/class-freemius.php17726, includes/class-freemius.php:17829 +#: includes/class-freemius.php19604, includes/class-freemius.php19840, +#: includes/class-freemius.php19895, includes/class-freemius.php:19998 msgctxt "" msgid "Hmm" msgstr "Hmm" -#: includes/class-freemius.php:17467 +#: includes/class-freemius.php:19617 msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry." msgstr "Il semble que vous soyez encore sur la formule %s. Si vous avez mis à jour ou changer votre formule, le problème est probablement de votre côté - désolé." -#: includes/class-freemius.php17468, templates/account.php102, -#: templates/add-ons.php134, templates/account/partials/addon.php:43 +#: includes/class-freemius.php19618, templates/account.php113, +#: templates/add-ons.php250, templates/account/partials/addon.php:46 msgctxt "trial period" msgid "Trial" msgstr "Période d'essai" -#: includes/class-freemius.php:17473 +#: includes/class-freemius.php:19623 msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s." msgstr "J'ai mis à jour mon compte mais quand j'essaie de synchroniser la licence, la formule est toujours %s." -#: includes/class-freemius.php17477, includes/class-freemius.php:17535 +#: includes/class-freemius.php19627, includes/class-freemius.php:19686 msgid "Please contact us here" msgstr "Merci de nous contacter ici" -#: includes/class-freemius.php:17487 +#: includes/class-freemius.php:19638 +msgid "Your plan was successfully activated." +msgstr "Your plan was successfully activated." + +#: includes/class-freemius.php:19639 msgid "Your plan was successfully upgraded." msgstr "Votre formule a bien été mise à jour." -#: includes/class-freemius.php:17505 +#: includes/class-freemius.php:19656 msgid "Your plan was successfully changed to %s." msgstr "Votre formule a bien été modifié vers %s. " -#: includes/class-freemius.php:17521 +#: includes/class-freemius.php:19672 msgid "Your license has expired. You can still continue using the free %s forever." msgstr "Votre licence a expiré. Vous pouvez toujours utiliser la version gratuite indéfiniment." -#: includes/class-freemius.php:17523 +#: includes/class-freemius.php:19674 msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." msgstr "Votre licence a expiré.%1$sFaites la mise à jour maintenant%2$s pour continuer à utiliser le %3$s sans interruption." -#: includes/class-freemius.php:17531 +#: includes/class-freemius.php:19682 msgid "Your license has been cancelled. If you think it's a mistake, please contact support." msgstr "Votre licence a été annulé. Si vous pensez qu'il s'agit d'une erreur, merci de contacter le support." -#: includes/class-freemius.php:17544 +#: includes/class-freemius.php:19695 msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support." msgstr "Votre licence a expiré. Vous pouvez toujours utiliser les fonctionnalités %s mais vous devrez renouveler votre licence pour recevoir les mises à jour et une assistance." -#: includes/class-freemius.php:17567 +#: includes/class-freemius.php:19721 msgid "Your free trial has expired. You can still continue using all our free features." msgstr "Votre période d'essai gratuite est terminée. Vous pouvez continuer à utiliser toutes nos fonctionnalités gratuites." -#: includes/class-freemius.php:17569 +#: includes/class-freemius.php:19723 msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." msgstr "Votre période d'essai gratuite est terminée. %1$sFaites la mise à jour maintenant%2$s pour continuer à utiliser le %3$s sans interruption." -#: includes/class-freemius.php:17674 +#: includes/class-freemius.php:19831 msgid "It looks like the license could not be activated." msgstr "Il semble que la licence ne puisse être activée." -#: includes/class-freemius.php:17704 +#: includes/class-freemius.php:19873 msgid "Your license was successfully activated." msgstr "Votre licence a bien été activée." -#: includes/class-freemius.php:17730 +#: includes/class-freemius.php:19899 msgid "It looks like your site currently doesn't have an active license." msgstr "Il semble que votre site n'ait pas de licence active." -#: includes/class-freemius.php:17754 +#: includes/class-freemius.php:19923 msgid "It looks like the license deactivation failed." msgstr "Il semble que la désactivation de la licence a échoué." -#: includes/class-freemius.php:17782 +#: includes/class-freemius.php:19951 msgid "Your license was successfully deactivated, you are back to the %s plan." msgstr "Votre licence a bien été désactivé, vous utilisez à présent la formule %s." -#: includes/class-freemius.php:17783 +#: includes/class-freemius.php:19952 msgid "O.K" msgstr "O.K" -#: includes/class-freemius.php:17836 +#: includes/class-freemius.php:20005 msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes." msgstr "Il semble que nous ayons un problème temporaire avec l'annulation de votre abonnement. Merci de réessayer dans quelques minutes." -#: includes/class-freemius.php:17845 +#: includes/class-freemius.php:20014 msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s." msgstr "Votre abonnement a bien été annulé. Votre licence de la formule %s expirera dans %s." -#: includes/class-freemius.php:17887 +#: includes/class-freemius.php:20056 msgid "You are already running the %s in a trial mode." msgstr "Vous utilisez déjà le %s en période d'essai. " -#: includes/class-freemius.php:17898 +#: includes/class-freemius.php:20067 msgid "You already utilized a trial before." msgstr "Vous avez déjà utilisé la période d'essai." -#: includes/class-freemius.php:17912 +#: includes/class-freemius.php:20081 msgid "Plan %s do not exist, therefore, can't start a trial." msgstr "La formule %s n'existe pas, il n'est pas possible de commencer une période d'essai." -#: includes/class-freemius.php:17923 +#: includes/class-freemius.php:20092 msgid "Plan %s does not support a trial period." msgstr "La formule %s ne propose pas de période d'essai." -#: includes/class-freemius.php:17934 +#: includes/class-freemius.php:20103 msgid "None of the %s's plans supports a trial period." msgstr "Aucune formule du %s ne propose de période d'essai." -#: includes/class-freemius.php:17984 +#: includes/class-freemius.php:20153 msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)" msgstr "Il semble que vous ne soyez plus en période d'essai donc il n'y a rien à annuler :)" -#: includes/class-freemius.php:18020 +#: includes/class-freemius.php:20189 msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes." msgstr "Il semble que nous ayons un problème temporaire pour annuler votre période d'essai. Merci de réessayer dans quelques minutes." -#: includes/class-freemius.php:18039 +#: includes/class-freemius.php:20208 msgid "Your %s free trial was successfully cancelled." msgstr "Votre période d'essai %s a bien été annulé." -#: includes/class-freemius.php:18346 +#: includes/class-freemius.php:20524 msgid "Version %s was released." msgstr "La version %s vient d'être publiée." -#: includes/class-freemius.php:18346 +#: includes/class-freemius.php:20524 msgid "Please download %s." msgstr "Merci de télécharger %s." -#: includes/class-freemius.php:18353 +#: includes/class-freemius.php:20531 msgid "the latest %s version here" msgstr "la dernière version de %s ici" -#: includes/class-freemius.php:18358 +#: includes/class-freemius.php:20536 msgid "New" msgstr "Nouveau" -#: includes/class-freemius.php:18363 +#: includes/class-freemius.php:20541 msgid "Seems like you got the latest release." msgstr "Il semble que vous ayez la dernière version." -#: includes/class-freemius.php:18364 +#: includes/class-freemius.php:20542 msgid "You are all good!" msgstr "Vous êtes tout bon !" -#: includes/class-freemius.php:18632 +#: includes/class-freemius.php:20812 msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box." msgstr "Un email de vérification vient d'être envoyé sur %s. Si vous ne le recevez pas d'ici 5 minutes, merci de vérifier dans vos spams." -#: includes/class-freemius.php:18769 +#: includes/class-freemius.php:20951 msgid "Site successfully opted in." msgstr "Site ajouté avec succès." -#: includes/class-freemius.php18770, includes/class-freemius.php:19581 +#: includes/class-freemius.php20952, includes/class-freemius.php:21792 msgid "Awesome" msgstr "Formidable" -#: includes/class-freemius.php18786, templates/forms/optout.php:32 +#: includes/class-freemius.php20968, templates/forms/optout.php:32 msgid "We appreciate your help in making the %s better by letting us track some usage data." msgstr "Nous vous remercions de votre aide pour améliorer le %s en nous permettant de recevoir des informations concernant son usage." -#: includes/class-freemius.php:18787 +#: includes/class-freemius.php:20969 msgid "Thank you!" msgstr "Merci !" -#: includes/class-freemius.php:18794 +#: includes/class-freemius.php:20976 msgid "We will no longer be sending any usage data of %s on %s to %s." msgstr "Nous n'enverrons plus d'information d'utilisation de %s sur %s à %s." -#: includes/class-freemius.php:18923 +#: includes/class-freemius.php:21105 msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder." msgstr "Merci de vérifier votre messagerie, vous devriez recevoir un email via %s pour confirmer le changement de propriétaire. Pour des raisons de sécurité, vous devez confirmer le changement dans les prochaines 15 minutes. Vérifiez vos spams si vous ne recevez pas le message." -#: includes/class-freemius.php:18929 +#: includes/class-freemius.php:21111 msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval." msgstr "Merci pour la confirmation du changement de propriétaire. Un email vient d'être envoyé à %s pour la validation finale." -#: includes/class-freemius.php:18934 +#: includes/class-freemius.php:21116 msgid "%s is the new owner of the account." msgstr "%s est le nouveau propriétaire du compte." -#: includes/class-freemius.php:18936 +#: includes/class-freemius.php:21118 msgctxt "as congratulations" msgid "Congrats" msgstr "Félicitations" -#: includes/class-freemius.php:18956 +#: includes/class-freemius.php:21138 msgid "Sorry, we could not complete the email update. Another user with the same email is already registered." msgstr "Désolé, nous ne pouvons pas mettre à jour l'email. Il existe déjà un autre utilisateur avec cette adresse." -#: includes/class-freemius.php:18957 +#: includes/class-freemius.php:21139 msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button." msgstr "Si vous voulez transférer la propriété du compte de %s à %s cliquez sur le bouton Changement De Propriétaire" -#: includes/class-freemius.php:18964 +#: includes/class-freemius.php:21146 msgid "Change Ownership" msgstr "Changement De Propriétaire" -#: includes/class-freemius.php:18972 +#: includes/class-freemius.php:21154 msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments." msgstr "Votre email a été mis à jour. Vous allez recevoir un message avec les instructions de confirmation." -#: includes/class-freemius.php:18984 +#: includes/class-freemius.php:21166 msgid "Please provide your full name." msgstr "Merci d'indiquer vos prénom et nom." -#: includes/class-freemius.php:18989 +#: includes/class-freemius.php:21171 msgid "Your name was successfully updated." msgstr "Votre nom a été mis à jour." -#: includes/class-freemius.php:19050 +#: includes/class-freemius.php:21232 msgid "You have successfully updated your %s." msgstr "Votre %s a bien été mis à jour." -#: includes/class-freemius.php:19190 +#: includes/class-freemius.php:21372 msgid "Just letting you know that the add-ons information of %s is being pulled from an external server." msgstr "Sachez que les informations de l'add-ons de %s sont issus d'un serveur externe." -#: includes/class-freemius.php:19191 +#: includes/class-freemius.php:21373 msgctxt "advance notice of something that will need attention." msgid "Heads up" msgstr "Avertissement" -#: includes/class-freemius.php:19621 +#: includes/class-freemius.php:21832 msgctxt "exclamation" msgid "Hey" msgstr "Hey" -#: includes/class-freemius.php:19621 +#: includes/class-freemius.php:21832 msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial." msgstr "Que pensez-vous de %s ? Testez nos %s fonctionnalités premium avec %d jours d'essai gratuit." -#: includes/class-freemius.php:19629 +#: includes/class-freemius.php:21840 msgid "No commitment for %s days - cancel anytime!" msgstr "Pas d'engagement durant %s jours - annuler quand vous voulez !" -#: includes/class-freemius.php:19630 +#: includes/class-freemius.php:21841 msgid "No credit card required" msgstr "Pas besoin de carte bancaire" -#: includes/class-freemius.php19637, templates/forms/trial-start.php:53 +#: includes/class-freemius.php21848, templates/forms/trial-start.php:53 msgctxt "call to action" msgid "Start free trial" msgstr "Commencer l'essai gratuit" -#: includes/class-freemius.php:19714 +#: includes/class-freemius.php:21925 msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!" msgstr "Dites, savez-vous que %s propose un système de affiliation ? Si vous aimez le %s vous pouvez devenir notre ambassadeur et gagner de l'argent !" -#: includes/class-freemius.php:19723 +#: includes/class-freemius.php:21934 msgid "Learn more" msgstr "En savoir plus" -#: includes/class-freemius.php19873, templates/account.php406, -#: templates/account.php509, templates/connect.php171, -#: templates/connect.php421, templates/forms/license-activation.php24, -#: templates/account/partials/addon.php:235 +#: includes/class-freemius.php22120, templates/account.php499, +#: templates/account.php624, templates/connect.php171, +#: templates/connect.php421, templates/forms/license-activation.php27, +#: templates/account/partials/addon.php:321 msgid "Activate License" msgstr "Activer la licence" -#: includes/class-freemius.php19874, templates/account.php469, -#: templates/account.php508, templates/account/partials/site.php:256 +#: includes/class-freemius.php22121, templates/account.php571, +#: templates/account.php623, templates/account/partials/addon.php322, +#: templates/account/partials/site.php:271 msgid "Change License" msgstr "Changer la licence" -#: includes/class-freemius.php19956, templates/account/partials/site.php:161 +#: includes/class-freemius.php22217, templates/account/partials/site.php:169 msgid "Opt Out" msgstr "Désinscription" -#: includes/class-freemius.php19958, includes/class-freemius.php19963, -#: templates/account/partials/site.php43, -#: templates/account/partials/site.php:161 +#: includes/class-freemius.php22219, includes/class-freemius.php22225, +#: templates/account/partials/site.php49, +#: templates/account/partials/site.php:169 msgid "Opt In" msgstr "Inscription" -#: includes/class-freemius.php:20187 -msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s" -msgstr "La version payante de %1s est déjà installée. Merci de l'activer pour bénéficier des fonctionnalités %2s. %3s" +#: includes/class-freemius.php:22453 +msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s" +msgstr " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s" -#: includes/class-freemius.php:20195 +#: includes/class-freemius.php:22461 msgid "Activate %s features" msgstr "Activer les fonctionnalités %s" -#: includes/class-freemius.php:20208 +#: includes/class-freemius.php:22474 msgid "Please follow these steps to complete the upgrade" msgstr "Merci de suivre ces étapes pour finaliser la mise à jour" -#: includes/class-freemius.php:20212 +#: includes/class-freemius.php:22478 msgid "Download the latest %s version" msgstr "Télécharger la dernière version %s" -#: includes/class-freemius.php:20216 +#: includes/class-freemius.php:22482 msgid "Upload and activate the downloaded version" msgstr "Téléverser et activer la version téléchargée" -#: includes/class-freemius.php:20218 +#: includes/class-freemius.php:22484 msgid "How to upload and activate?" msgstr "Comment téléverser et activer ?" -#: includes/class-freemius.php:20352 +#: includes/class-freemius.php:22618 msgid "%sClick here%s to choose the sites where you'd like to activate the license on." msgstr "%sCliquez ici %s pour choisir les sites sur lesquels vous souhaitez activer la licence." -#: includes/class-freemius.php:20513 +#: includes/class-freemius.php:22779 msgid "Auto installation only works for opted-in users." msgstr "L'installation automatique ne fonctionne que pour les utilisateurs qui se sont inscrits." -#: includes/class-freemius.php20523, includes/class-freemius.php20556, -#: includes/class-fs-plugin-updater.php1060, -#: includes/class-fs-plugin-updater.php:1074 +#: includes/class-freemius.php22789, includes/class-freemius.php22822, +#: includes/class-fs-plugin-updater.php1212, +#: includes/class-fs-plugin-updater.php:1226 msgid "Invalid module ID." msgstr "ID du module non valide." -#: includes/class-freemius.php20532, includes/class-fs-plugin-updater.php:1096 +#: includes/class-freemius.php22798, includes/class-fs-plugin-updater.php:1248 msgid "Premium version already active." msgstr "Version premium déjà active." -#: includes/class-freemius.php:20539 +#: includes/class-freemius.php:22805 msgid "You do not have a valid license to access the premium version." msgstr "Vous n'avez pas de licence valide pour accéder à la version premium." -#: includes/class-freemius.php:20546 +#: includes/class-freemius.php:22812 msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version." msgstr "Le plugin est un \"Serviceware\" ce qui veut dire qu'il n'a pas de version premium de code." -#: includes/class-freemius.php20564, includes/class-fs-plugin-updater.php:1095 +#: includes/class-freemius.php22830, includes/class-fs-plugin-updater.php:1247 msgid "Premium add-on version already installed." msgstr "La version premium de l'add-on est déjà installée." -#: includes/class-freemius.php:20909 +#: includes/class-freemius.php:23180 msgid "View paid features" msgstr "Voir les fonctionnalités payantes" -#: includes/class-freemius.php:21229 +#: includes/class-freemius.php:23502 msgid "Thank you so much for using %s and its add-ons!" msgstr "Merci beaucoup d'utiliser %s et ses add-ons !" -#: includes/class-freemius.php:21230 +#: includes/class-freemius.php:23503 msgid "Thank you so much for using %s!" msgstr "Merci beaucoup d'utiliser %s !" -#: includes/class-freemius.php:21236 +#: includes/class-freemius.php:23509 msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s." msgstr "Vous avez déjà validé notre suivi d'utilisation qui nous permet de continuer à améliorer le %s." -#: includes/class-freemius.php:21240 +#: includes/class-freemius.php:23513 msgid "Thank you so much for using our products!" msgstr "Merci beaucoup d'utiliser nos produits !" -#: includes/class-freemius.php:21241 +#: includes/class-freemius.php:23514 msgid "You've already opted-in to our usage-tracking, which helps us keep improving them." msgstr "Vous avez déjà validé notre suivi d'utilisation qui nous permet de continuer à les améliorer." -#: includes/class-freemius.php:21260 +#: includes/class-freemius.php:23533 msgid "%s and its add-ons" msgstr "%s et ses add-ons" -#: includes/class-freemius.php:21269 +#: includes/class-freemius.php:23542 msgid "Products" msgstr "Produits" -#: includes/class-freemius.php21276, templates/connect.php:272 +#: includes/class-freemius.php23549, templates/connect.php:272 msgid "Yes" msgstr "Oui" -#: includes/class-freemius.php21277, templates/connect.php:273 +#: includes/class-freemius.php23550, templates/connect.php:273 msgid "send me security & feature updates, educational content and offers." msgstr "envoyez moi des mises à jour de sécurité et des fonctionnalités, du contenu instructif et des offres." -#: includes/class-freemius.php21278, templates/connect.php:278 +#: includes/class-freemius.php23551, templates/connect.php:278 msgid "No" msgstr "Non" -#: includes/class-freemius.php21280, templates/connect.php:280 +#: includes/class-freemius.php23553, templates/connect.php:280 msgid "do %sNOT%s send me security & feature updates, educational content and offers." msgstr "ne %sPAS%s m'envoyer de mises à jour de sécurité ou de fonctionnalités, ni de contenu instructif, ni d'offre." -#: includes/class-freemius.php:21290 -msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂" -msgstr "Suite au exigences de conformité du %sRèglement européen Général sur la Protection des Données (GDPR)%s il est nécessaire que vous donniez, à nouveau, votre consentement explicite pour confirmer que vous êtes avec nous 🙂" +#: includes/class-freemius.php:23563 +msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard :-)" +msgstr "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard :-)" -#: includes/class-freemius.php21292, templates/connect.php:287 +#: includes/class-freemius.php23565, templates/connect.php:287 msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:" msgstr "Merci de nous indiquer si vous souhaitez que nous vous contactions pour les mises à jour de sécurité et de fonctionnalités, du contenu instructif et des offres spéciales :" -#: includes/class-freemius.php:21574 +#: includes/class-freemius.php:23847 msgid "License key is empty." msgstr "La clé de licence est vide." -#: includes/class-fs-plugin-updater.php184, +#: includes/class-fs-plugin-updater.php206, #: templates/forms/premium-versions-upgrade-handler.php:57 msgid "Renew license" msgstr "Renouvelez votre licence" -#: includes/class-fs-plugin-updater.php189, +#: includes/class-fs-plugin-updater.php211, #: templates/forms/premium-versions-upgrade-handler.php:58 msgid "Buy license" msgstr "Acheter une licence" -#: includes/class-fs-plugin-updater.php:278 +#: includes/class-fs-plugin-updater.php321, +#: includes/class-fs-plugin-updater.php:354 msgid "There is a %s of %s available." msgstr "Il y a une %s de %s disponible." -#: includes/class-fs-plugin-updater.php:282 +#: includes/class-fs-plugin-updater.php323, +#: includes/class-fs-plugin-updater.php:359 +msgid "new Beta version" +msgstr "new Beta version" + +#: includes/class-fs-plugin-updater.php324, +#: includes/class-fs-plugin-updater.php:360 msgid "new version" msgstr "Nouvelle version" -#: includes/class-fs-plugin-updater.php:305 +#: includes/class-fs-plugin-updater.php:383 msgid "Important Upgrade Notice:" msgstr "Information importante de mise à jour :" -#: includes/class-fs-plugin-updater.php:1125 +#: includes/class-fs-plugin-updater.php:1277 msgid "Installing plugin: %s" msgstr "Installation du plugin : %s" -#: includes/class-fs-plugin-updater.php:1166 +#: includes/class-fs-plugin-updater.php:1318 msgid "Unable to connect to the filesystem. Please confirm your credentials." msgstr "Impossible de se connecter au système de fichiers. Merci de confirmer vos autorisations." -#: includes/class-fs-plugin-updater.php:1348 +#: includes/class-fs-plugin-updater.php:1500 msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work." msgstr "Le package du plugin à télécharger ne contient pas de dossier avec le bon slug et iln'a pas été possible de le renommer." -#: includes/fs-plugin-info-dialog.php369, -#: templates/account/partials/addon.php:292 +#: includes/fs-plugin-info-dialog.php:535 +msgid "Purchase More" +msgstr "Purchase More" + +#: includes/fs-plugin-info-dialog.php536, +#: templates/account/partials/addon.php:385 msgctxt "verb" msgid "Purchase" msgstr "Acheter" -#: includes/fs-plugin-info-dialog.php:372 +#: includes/fs-plugin-info-dialog.php:540 msgid "Start my free %s" msgstr "Commencer ma %s gratuite" -#: includes/fs-plugin-info-dialog.php:413 +#: includes/fs-plugin-info-dialog.php:738 +msgid "Install Free Version Update Now" +msgstr "Installer la dernière mise à jour gratuite maintenant" + +#: includes/fs-plugin-info-dialog.php739, templates/account.php:560 +msgid "Install Update Now" +msgstr "Installer la mise à jour maintenant" + +#: includes/fs-plugin-info-dialog.php:748 msgid "Install Free Version Now" msgstr "Installer la version gratuite maintenant" -#: includes/fs-plugin-info-dialog.php414, templates/auto-installation.php111, -#: templates/account/partials/addon.php272, -#: templates/account/partials/addon.php:322 +#: includes/fs-plugin-info-dialog.php749, templates/add-ons.php323, +#: templates/auto-installation.php111, +#: templates/account/partials/addon.php365, +#: templates/account/partials/addon.php:418 msgid "Install Now" msgstr "Installer maintenant" -#: includes/fs-plugin-info-dialog.php:425 +#: includes/fs-plugin-info-dialog.php:765 msgctxt "as download latest version" msgid "Download Latest Free Version" msgstr "Télécharger la dernière version gratuite" -#: includes/fs-plugin-info-dialog.php426, templates/account.php80, -#: templates/account/partials/addon.php:21 +#: includes/fs-plugin-info-dialog.php766, templates/account.php91, +#: templates/add-ons.php37, templates/account/partials/addon.php:25 msgctxt "as download latest version" msgid "Download Latest" msgstr "Télécharger la dernière version" -#: includes/fs-plugin-info-dialog.php:436 -msgid "Install Free Version Update Now" -msgstr "Installer la dernière mise à jour gratuite maintenant" - -#: includes/fs-plugin-info-dialog.php437, templates/account.php:460 -msgid "Install Update Now" -msgstr "Installer la mise à jour maintenant" - -#: includes/fs-plugin-info-dialog.php:448 -msgid "Newer Free Version (%s) Installed" -msgstr "La nouvelle version gratuite ( %s ) a été installé" - -#: includes/fs-plugin-info-dialog.php:449 -msgid "Newer Version (%s) Installed" -msgstr "Nouvelle Version (%s) Installée" +#: includes/fs-plugin-info-dialog.php781, templates/add-ons.php329, +#: templates/account/partials/addon.php356, +#: templates/account/partials/addon.php:412 +msgid "Activate this add-on" +msgstr "Activer cet add-on" -#: includes/fs-plugin-info-dialog.php:457 -msgid "Latest Free Version Installed" -msgstr "La dernière version gratuite a été installé" +#: includes/fs-plugin-info-dialog.php783, templates/connect.php:418 +msgid "Activate Free Version" +msgstr "Activez la version gratuite" -#: includes/fs-plugin-info-dialog.php:458 -msgid "Latest Version Installed" -msgstr "Dernière Version Installée" +#: includes/fs-plugin-info-dialog.php784, templates/account.php115, +#: templates/add-ons.php330, templates/account/partials/addon.php:48 +msgid "Activate" +msgstr "Activer" -#: includes/fs-plugin-info-dialog.php:613 +#: includes/fs-plugin-info-dialog.php:994 msgctxt "Plugin installer section title" msgid "Description" msgstr "Description" -#: includes/fs-plugin-info-dialog.php:614 +#: includes/fs-plugin-info-dialog.php:995 msgctxt "Plugin installer section title" msgid "Installation" msgstr "Installation" -#: includes/fs-plugin-info-dialog.php:615 +#: includes/fs-plugin-info-dialog.php:996 msgctxt "Plugin installer section title" msgid "FAQ" msgstr "FAQ" -#: includes/fs-plugin-info-dialog.php616, +#: includes/fs-plugin-info-dialog.php997, #: templates/plugin-info/description.php:55 msgid "Screenshots" msgstr "Captures d'écran" -#: includes/fs-plugin-info-dialog.php:617 +#: includes/fs-plugin-info-dialog.php:998 msgctxt "Plugin installer section title" msgid "Changelog" msgstr "Changelog" -#: includes/fs-plugin-info-dialog.php:618 +#: includes/fs-plugin-info-dialog.php:999 msgctxt "Plugin installer section title" msgid "Reviews" msgstr "Commentaires" -#: includes/fs-plugin-info-dialog.php:619 +#: includes/fs-plugin-info-dialog.php:1000 msgctxt "Plugin installer section title" msgid "Other Notes" msgstr "Autres Informations" -#: includes/fs-plugin-info-dialog.php:634 +#: includes/fs-plugin-info-dialog.php:1015 msgctxt "Plugin installer section title" msgid "Features & Pricing" msgstr "Fonctionnalités & Tarifs" -#: includes/fs-plugin-info-dialog.php:644 +#: includes/fs-plugin-info-dialog.php:1025 msgid "Plugin Install" msgstr "Installation du Plugin" -#: includes/fs-plugin-info-dialog.php:716 +#: includes/fs-plugin-info-dialog.php:1097 msgctxt "e.g. Professional Plan" msgid "%s Plan" msgstr "Formule %s" -#: includes/fs-plugin-info-dialog.php:742 +#: includes/fs-plugin-info-dialog.php:1123 msgctxt "e.g. the best product" msgid "Best" msgstr "Best" -#: includes/fs-plugin-info-dialog.php748, -#: includes/fs-plugin-info-dialog.php:768 +#: includes/fs-plugin-info-dialog.php1129, +#: includes/fs-plugin-info-dialog.php:1149 msgctxt "as every month" msgid "Monthly" msgstr "Mensuel" -#: includes/fs-plugin-info-dialog.php:751 +#: includes/fs-plugin-info-dialog.php:1132 msgctxt "as once a year" msgid "Annual" msgstr "Annuel" -#: includes/fs-plugin-info-dialog.php:754 +#: includes/fs-plugin-info-dialog.php:1135 msgid "Lifetime" msgstr "À vie" -#: includes/fs-plugin-info-dialog.php768, -#: includes/fs-plugin-info-dialog.php770, -#: includes/fs-plugin-info-dialog.php:772 +#: includes/fs-plugin-info-dialog.php1149, +#: includes/fs-plugin-info-dialog.php1151, +#: includes/fs-plugin-info-dialog.php:1153 msgctxt "e.g. billed monthly" msgid "Billed %s" msgstr "%s Facturé" -#: includes/fs-plugin-info-dialog.php:770 +#: includes/fs-plugin-info-dialog.php:1151 msgctxt "as once a year" msgid "Annually" msgstr "Annuel" -#: includes/fs-plugin-info-dialog.php:772 +#: includes/fs-plugin-info-dialog.php:1153 msgctxt "as once a year" msgid "Once" msgstr "Une fois" -#: includes/fs-plugin-info-dialog.php:778 +#: includes/fs-plugin-info-dialog.php:1159 msgid "Single Site License" msgstr "Licence 1 site" -#: includes/fs-plugin-info-dialog.php:780 +#: includes/fs-plugin-info-dialog.php:1161 msgid "Unlimited Licenses" msgstr "Licences sites illimités" -#: includes/fs-plugin-info-dialog.php:782 +#: includes/fs-plugin-info-dialog.php:1163 msgid "Up to %s Sites" msgstr "Jusqu'à %s Sites" -#: includes/fs-plugin-info-dialog.php792, +#: includes/fs-plugin-info-dialog.php1173, #: templates/plugin-info/features.php:82 msgctxt "as monthly period" msgid "mo" msgstr "mois" -#: includes/fs-plugin-info-dialog.php799, +#: includes/fs-plugin-info-dialog.php1180, #: templates/plugin-info/features.php:80 msgctxt "as annual period" msgid "year" msgstr "année" -#: includes/fs-plugin-info-dialog.php:853 +#: includes/fs-plugin-info-dialog.php:1234 msgctxt "noun" msgid "Price" msgstr "Tarif" -#: includes/fs-plugin-info-dialog.php:901 +#: includes/fs-plugin-info-dialog.php:1282 msgid "Save %s" msgstr "Économisez %s" -#: includes/fs-plugin-info-dialog.php:911 +#: includes/fs-plugin-info-dialog.php:1292 msgid "No commitment for %s - cancel anytime" msgstr "Pas d'engagement durant %s - annuler quand vous voulez" -#: includes/fs-plugin-info-dialog.php:914 +#: includes/fs-plugin-info-dialog.php:1295 msgid "After your free %s, pay as little as %s" msgstr "Après vos %s gratuits, payez seulement %s" -#: includes/fs-plugin-info-dialog.php:925 +#: includes/fs-plugin-info-dialog.php:1306 msgid "Details" msgstr "Détails" -#: includes/fs-plugin-info-dialog.php929, templates/account.php91, -#: templates/debug.php201, templates/debug.php238, templates/debug.php452, -#: templates/account/partials/addon.php:32 +#: includes/fs-plugin-info-dialog.php1310, templates/account.php102, +#: templates/debug.php203, templates/debug.php240, templates/debug.php457, +#: templates/account/partials/addon.php:36 msgctxt "product version" msgid "Version" msgstr "Version" -#: includes/fs-plugin-info-dialog.php:936 +#: includes/fs-plugin-info-dialog.php:1317 msgctxt "as the plugin author" msgid "Author" msgstr "Auteur" -#: includes/fs-plugin-info-dialog.php:943 +#: includes/fs-plugin-info-dialog.php:1324 msgid "Last Updated" msgstr "Dernière mise à jour" -#: includes/fs-plugin-info-dialog.php948, templates/account.php:376 +#: includes/fs-plugin-info-dialog.php1329, templates/account.php:468 msgctxt "x-ago" msgid "%s ago" msgstr "Il y a %s" -#: includes/fs-plugin-info-dialog.php:957 +#: includes/fs-plugin-info-dialog.php:1338 msgid "Requires WordPress Version" msgstr "Version de WordPress requise" -#: includes/fs-plugin-info-dialog.php:958 +#: includes/fs-plugin-info-dialog.php:1339 msgid "%s or higher" msgstr "%s ou plus" -#: includes/fs-plugin-info-dialog.php:965 +#: includes/fs-plugin-info-dialog.php:1346 msgid "Compatible up to" msgstr "Compatible jusqu'à" -#: includes/fs-plugin-info-dialog.php:973 +#: includes/fs-plugin-info-dialog.php:1354 msgid "Downloaded" msgstr "Téléchargé" -#: includes/fs-plugin-info-dialog.php:977 +#: includes/fs-plugin-info-dialog.php:1358 msgid "%s time" msgstr "%s fois" -#: includes/fs-plugin-info-dialog.php:979 +#: includes/fs-plugin-info-dialog.php:1360 msgid "%s times" msgstr "%s fois" -#: includes/fs-plugin-info-dialog.php:989 +#: includes/fs-plugin-info-dialog.php:1370 msgid "WordPress.org Plugin Page" msgstr "Page WordPress.org du plugin" -#: includes/fs-plugin-info-dialog.php:997 +#: includes/fs-plugin-info-dialog.php:1378 msgid "Plugin Homepage" msgstr "Site Web du plugin" -#: includes/fs-plugin-info-dialog.php1005, -#: includes/fs-plugin-info-dialog.php:1087 +#: includes/fs-plugin-info-dialog.php1386, +#: includes/fs-plugin-info-dialog.php:1468 msgid "Donate to this plugin" msgstr "Faire une donation pour ce plugin" -#: includes/fs-plugin-info-dialog.php:1012 +#: includes/fs-plugin-info-dialog.php:1393 msgid "Average Rating" msgstr "Note moyenne" -#: includes/fs-plugin-info-dialog.php:1019 +#: includes/fs-plugin-info-dialog.php:1400 msgid "based on %s" msgstr "Basé sur %s" -#: includes/fs-plugin-info-dialog.php:1023 +#: includes/fs-plugin-info-dialog.php:1404 msgid "%s rating" msgstr "%s notation" -#: includes/fs-plugin-info-dialog.php:1025 +#: includes/fs-plugin-info-dialog.php:1406 msgid "%s ratings" msgstr "%snotations " -#: includes/fs-plugin-info-dialog.php:1040 +#: includes/fs-plugin-info-dialog.php:1421 msgid "%s star" msgstr "%s étoile" -#: includes/fs-plugin-info-dialog.php:1042 +#: includes/fs-plugin-info-dialog.php:1423 msgid "%s stars" msgstr "%s étoiles" -#: includes/fs-plugin-info-dialog.php:1053 +#: includes/fs-plugin-info-dialog.php:1434 msgid "Click to see reviews that provided a rating of %s" msgstr "Cliquez pour voir les avis avec une notation de %s" -#: includes/fs-plugin-info-dialog.php:1066 +#: includes/fs-plugin-info-dialog.php:1447 msgid "Contributors" msgstr "Contributeurs" -#: includes/fs-plugin-info-dialog.php1095, -#: includes/fs-plugin-info-dialog.php:1097 +#: includes/fs-plugin-info-dialog.php1476, +#: includes/fs-plugin-info-dialog.php:1478 msgid "Warning" msgstr "Attention" -#: includes/fs-plugin-info-dialog.php:1095 +#: includes/fs-plugin-info-dialog.php:1476 msgid "This plugin has not been tested with your current version of WordPress." msgstr "Ce plugin n'a pas été testé avec votre actuelle version de WordPress" -#: includes/fs-plugin-info-dialog.php:1097 +#: includes/fs-plugin-info-dialog.php:1478 msgid "This plugin has not been marked as compatible with your version of WordPress." msgstr "Ce plugin n'a pas été indiqué comme étant compatible avec votre version actuelle de WordPress" -#: includes/fs-plugin-info-dialog.php:1116 +#: includes/fs-plugin-info-dialog.php:1497 msgid "Paid add-on must be deployed to Freemius." msgstr "Les add-ons payant doivent être déposés sur Freemius" -#: includes/fs-plugin-info-dialog.php:1117 +#: includes/fs-plugin-info-dialog.php:1498 msgid "Add-on must be deployed to WordPress.org or Freemius." msgstr "Les add-ons doivent être déposés sur WordPress.org ou Freemius." -#: templates/account.php81, templates/forms/subscription-cancellation.php96, -#: templates/account/partials/addon.php22, -#: templates/account/partials/site.php:295 +#: includes/fs-plugin-info-dialog.php:1519 +msgid "Newer Version (%s) Installed" +msgstr "Nouvelle Version (%s) Installée" + +#: includes/fs-plugin-info-dialog.php:1520 +msgid "Newer Free Version (%s) Installed" +msgstr "La nouvelle version gratuite ( %s ) a été installé" + +#: includes/fs-plugin-info-dialog.php:1527 +msgid "Latest Version Installed" +msgstr "Dernière Version Installée" + +#: includes/fs-plugin-info-dialog.php:1528 +msgid "Latest Free Version Installed" +msgstr "La dernière version gratuite a été installé" + +#: templates/account.php92, templates/forms/subscription-cancellation.php96, +#: templates/account/partials/addon.php26, +#: templates/account/partials/site.php:311 msgid "Downgrading your plan" msgstr "Rétrograder votre formule" -#: templates/account.php82, templates/forms/subscription-cancellation.php97, -#: templates/account/partials/addon.php23, -#: templates/account/partials/site.php:296 +#: templates/account.php93, templates/forms/subscription-cancellation.php97, +#: templates/account/partials/addon.php27, +#: templates/account/partials/site.php:312 msgid "Cancelling the subscription" msgstr "Annuler votre abonnement" -#. translators: %1s: Either 'Downgrading your plan' or 'Cancelling the +#. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the #. subscription' -#: templates/account.php84, templates/forms/subscription-cancellation.php99, -#: templates/account/partials/addon.php25, -#: templates/account/partials/site.php:298 -msgid "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s." -msgstr "%1s va immédiatement arrêter tous les futurs paiements récurrents et la licence de votre formule %s expirera dans %s." - -#: templates/account.php85, templates/forms/subscription-cancellation.php100, -#: templates/account/partials/addon.php26, -#: templates/account/partials/site.php:299 +#: templates/account.php95, templates/forms/subscription-cancellation.php99, +#: templates/account/partials/site.php:314 +msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s." +msgstr "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s." + +#: templates/account.php96, templates/forms/subscription-cancellation.php100, +#: templates/account/partials/addon.php30, +#: templates/account/partials/site.php:315 msgid "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price." msgstr "Veuillez noter que nous ne serons pas en mesure de garantir le maintien des prix actuels pour les renouvellements/nouveaux abonnements après une annulation. Si vous choisissez de renouveler l'abonnement manuellement à l'avenir, après une augmentation de prix, qui se produit généralement une fois par an, le prix mis à jour vous sera facturé." -#: templates/account.php86, templates/forms/subscription-cancellation.php106, -#: templates/account/partials/addon.php:27 +#: templates/account.php97, templates/forms/subscription-cancellation.php106, +#: templates/account/partials/addon.php:31 msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?" msgstr "Annuler la période d'essai va immédiatement bloquer les fonctionnalités premium. Souhaitez-vous continuer ?" -#: templates/account.php87, templates/forms/subscription-cancellation.php101, -#: templates/account/partials/addon.php28, -#: templates/account/partials/site.php:300 +#: templates/account.php98, templates/forms/subscription-cancellation.php101, +#: templates/account/partials/addon.php32, +#: templates/account/partials/site.php:316 msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support." msgstr "Vous pouvez toujours profiter de toutes les fonctionnalités de %s mais vous n'aurez plus accès aux mises à jour de sécurité ou de fonctionnalités de %s, ni au support." -#: templates/account.php88, templates/forms/subscription-cancellation.php102, -#: templates/account/partials/addon.php29, -#: templates/account/partials/site.php:301 +#: templates/account.php99, templates/forms/subscription-cancellation.php102, +#: templates/account/partials/addon.php33, +#: templates/account/partials/site.php:317 msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features." msgstr "Une fois la licence expirée vous pourrez toujours utiliser la version gratuite mais vous n'aurez PAS accès aux fonctionnalités de %s." #. translators: %s: Plan title (e.g. "Professional") -#: templates/account.php90, +#: templates/account.php101, #: templates/account/partials/activate-license-button.php31, -#: templates/account/partials/addon.php:31 +#: templates/account/partials/addon.php:35 msgid "Activate %s Plan" msgstr "Activer la formule %s" #. translators: %s: Time period (e.g. Auto renews in "2 months") -#: templates/account.php93, templates/account/partials/addon.php34, -#: templates/account/partials/site.php:275 +#: templates/account.php104, templates/account/partials/addon.php38, +#: templates/account/partials/site.php:291 msgid "Auto renews in %s" msgstr "Renouvellements automatique dans %s" #. translators: %s: Time period (e.g. Expires in "2 months") -#: templates/account.php95, templates/account/partials/addon.php36, -#: templates/account/partials/site.php:277 +#: templates/account.php106, templates/account/partials/addon.php40, +#: templates/account/partials/site.php:293 msgid "Expires in %s" msgstr "Expire dans %s" -#: templates/account.php96, templates/account/partials/addon.php:37 +#: templates/account.php:107 msgctxt "as synchronize license" msgid "Sync License" msgstr "Synchroniser la licence" -#: templates/account.php97, templates/account/partials/addon.php:38 +#: templates/account.php108, templates/account/partials/addon.php:41 msgid "Cancel Trial" msgstr "Annuler la période d'essai" -#: templates/account.php98, templates/account/partials/addon.php:39 +#: templates/account.php109, templates/account/partials/addon.php:42 msgid "Change Plan" msgstr "Changer de formule" -#: templates/account.php99, templates/account/partials/addon.php:40 +#: templates/account.php110, templates/account/partials/addon.php:43 msgctxt "verb" msgid "Upgrade" msgstr "Mise à jour" -#: templates/account.php101, templates/account/partials/addon.php42, -#: templates/account/partials/site.php:302 +#: templates/account.php112, templates/account/partials/addon.php45, +#: templates/account/partials/site.php:318 msgctxt "verb" msgid "Downgrade" msgstr "Rétrograder" -#: templates/account.php103, templates/add-ons.php130, +#: templates/account.php114, templates/add-ons.php246, #: templates/plugin-info/features.php72, -#: templates/account/partials/addon.php44, -#: templates/account/partials/site.php:31 +#: templates/account/partials/addon.php47, +#: templates/account/partials/site.php:33 msgid "Free" msgstr "Gratuit" -#: templates/account.php104, templates/account/partials/addon.php:45 -msgid "Activate" -msgstr "Activer" - -#: templates/account.php105, templates/debug.php371, -#: includes/customizer/class-fs-customizer-upsell-control.php106, -#: templates/account/partials/addon.php:46 +#: templates/account.php116, templates/debug.php373, +#: includes/customizer/class-fs-customizer-upsell-control.php110, +#: templates/account/partials/addon.php:49 msgctxt "as product pricing plan" msgid "Plan" msgstr "Formule" -#: templates/account.php:158 +#: templates/account.php:117 +msgid "Bundle Plan" +msgstr "Bundle Plan" + +#: templates/account.php:191 msgid "Free Trial" msgstr "Essai gratuit" -#: templates/account.php:169 +#: templates/account.php:202 msgid "Account Details" msgstr "Détails du compte" -#: templates/account.php:179 +#: templates/account.php209, templates/forms/data-debug-mode.php:33 +msgid "Start Debug" +msgstr "Start Debug" + +#: templates/account.php:211 +msgid "Stop Debug" +msgstr "Stop Debug" + +#: templates/account.php:218 +msgid "Billing & Invoices" +msgstr "Billing & Invoices" + +#: templates/account.php:229 msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?" msgstr "Supprimer le compte désactivera automatiquement la licence de votre formule %s afin que vous puissiez l'utiliser sur d'autres sites. Si vous voulez aussi annuler le paiement récurrent, cliquez sur le bouton \"Annuler\" et commencez par \"Rétrograder\" votre compte. Êtes-vous sûr de vouloir poursuivre la suppression ? " -#: templates/account.php:181 +#: templates/account.php:231 msgid "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?" msgstr "La suppression est permanente. Ne faites cette suppression que si vous ne souhaitez plus utiliser le %s. Êtes-vous sûr de vouloir poursuivre la suppression ?" -#: templates/account.php:184 +#: templates/account.php:234 msgid "Delete Account" msgstr "Supprimer le compte" -#: templates/account.php196, templates/account/partials/addon.php159, +#: templates/account.php246, templates/account/partials/addon.php231, #: templates/account/partials/deactivate-license-button.php:35 msgid "Deactivate License" msgstr "Désactiver la licence" -#: templates/account.php219, templates/forms/subscription-cancellation.php:125 +#: templates/account.php269, templates/forms/subscription-cancellation.php:125 msgid "Are you sure you want to proceed?" msgstr "Êtes-vous de vouloir continuer ?" -#: templates/account.php219, templates/account/partials/addon.php:182 +#: templates/account.php269, templates/account/partials/addon.php:255 msgid "Cancel Subscription" msgstr "Annuler l'abonnement" -#: templates/account.php:247 +#: templates/account.php298, templates/account/partials/addon.php:340 msgctxt "as synchronize" msgid "Sync" msgstr "Synchroniser" -#: templates/account.php261, templates/debug.php:487 +#: templates/account.php313, templates/debug.php:507 msgid "Name" msgstr "Nom" -#: templates/account.php267, templates/debug.php:488 +#: templates/account.php319, templates/debug.php:508 msgid "Email" msgstr "Email" -#: templates/account.php274, templates/debug.php370, templates/debug.php:526 +#: templates/account.php326, templates/debug.php371, templates/debug.php:557 msgid "User ID" msgstr "User ID" -#: templates/account.php:282 +#: templates/account.php344, templates/account.php637, +#: templates/account.php682, templates/debug.php238, templates/debug.php365, +#: templates/debug.php454, templates/debug.php506, templates/debug.php555, +#: templates/debug.php632, templates/account/payments.php35, +#: templates/debug/logger.php:21 +msgid "ID" +msgstr "ID" + +#: templates/account.php:351 msgid "Site ID" msgstr "Site ID" -#: templates/account.php:285 +#: templates/account.php:354 msgid "No ID" msgstr "ID manquant" -#: templates/account.php290, templates/debug.php243, templates/debug.php372, -#: templates/debug.php453, templates/debug.php490, -#: templates/account/partials/site.php:219 +#: templates/account.php359, templates/debug.php245, templates/debug.php374, +#: templates/debug.php458, templates/debug.php510, +#: templates/account/partials/site.php:227 msgid "Public Key" msgstr "Clef publique" -#: templates/account.php296, templates/debug.php373, templates/debug.php454, -#: templates/debug.php491, templates/account/partials/site.php:231 +#: templates/account.php365, templates/debug.php375, templates/debug.php459, +#: templates/debug.php511, templates/account/partials/site.php:239 msgid "Secret Key" msgstr "Clef secrête" -#: templates/account.php:299 +#: templates/account.php:368 msgctxt "as secret encryption key missing" msgid "No Secret" msgstr "Clef secrète manquante" -#: templates/account.php318, templates/account/partials/site.php112, -#: templates/account/partials/site.php:114 +#: templates/account.php395, templates/account/partials/site.php120, +#: templates/account/partials/site.php:122 msgid "Trial" msgstr "Période d'essai" -#: templates/account.php337, templates/debug.php531, -#: templates/account/partials/site.php:248 +#: templates/account.php422, templates/debug.php562, +#: templates/account/partials/site.php:260 msgid "License Key" msgstr "Clef de licence" -#: templates/account.php:367 +#: templates/account.php:453 +msgid "Join the Beta program" +msgstr "Join the Beta program" + +#: templates/account.php:459 msgid "not verified" msgstr "Non vérifié" -#: templates/account.php376, templates/account/partials/addon.php:120 +#: templates/account.php468, templates/account/partials/addon.php:190 msgid "Expired" msgstr "Expiré" -#: templates/account.php:428 +#: templates/account.php:528 msgid "Premium version" msgstr "Version premium" -#: templates/account.php:430 +#: templates/account.php:530 msgid "Free version" msgstr "Version gratuite" -#: templates/account.php:442 +#: templates/account.php:542 msgid "Verify Email" msgstr "Vérifier l'email" -#: templates/account.php:453 +#: templates/account.php:553 msgid "Download %s Version" msgstr "Télécharger la version %s" -#: templates/account.php467, templates/account.php649, -#: templates/account/partials/site.php237, -#: templates/account/partials/site.php:255 +#: templates/account.php568, templates/account.php820, +#: templates/account/partials/site.php248, +#: templates/account/partials/site.php:270 msgctxt "verb" msgid "Show" msgstr "Afficher" -#: templates/account.php:481 +#: templates/account.php:583 msgid "What is your %s?" msgstr "Quel est votre %s ?" -#: templates/account.php489, templates/account/billing.php:27 +#: templates/account.php591, templates/account/billing.php:21 msgctxt "verb" msgid "Edit" msgstr "Éditer" -#: templates/account.php:502 +#: templates/account.php:616 msgid "Sites" msgstr "Sites" -#: templates/account.php:513 +#: templates/account.php:629 msgid "Search by address" msgstr "Recherche par adresse" -#: templates/account.php522, templates/account.php570, templates/debug.php236, -#: templates/debug.php364, templates/debug.php449, templates/debug.php486, -#: templates/debug.php524, templates/debug.php597, -#: templates/account/payments.php35, templates/debug/logger.php:21 -msgid "ID" -msgstr "ID" - -#: templates/account.php523, templates/debug.php:367 +#: templates/account.php638, templates/debug.php:368 msgid "Address" msgstr "Adresse" -#: templates/account.php:524 +#: templates/account.php:639 msgid "License" msgstr "Licence" -#: templates/account.php:525 +#: templates/account.php:640 msgid "Plan" msgstr "Formule" -#: templates/account.php:573 +#: templates/account.php:685 msgctxt "as software license" msgid "License" msgstr "Licence" -#: templates/account.php:643 +#: templates/account.php:814 msgctxt "verb" msgid "Hide" msgstr "Cacher" -#: templates/account.php:686 +#: templates/account.php836, templates/forms/data-debug-mode.php:31 +msgid "Processing" +msgstr "Traitement en cours" + +#: templates/account.php:839 +msgid "Get updates for bleeding edge Beta versions of %s." +msgstr "Get updates for bleeding edge Beta versions of %s." + +#: templates/account.php:897 msgid "Cancelling %s" msgstr "Annulation de %s" -#: templates/account.php686, templates/account.php703, +#: templates/account.php897, templates/account.php914, #: templates/forms/subscription-cancellation.php27, -#: templates/forms/deactivation/form.php:117 +#: templates/forms/deactivation/form.php:133 msgid "trial" msgstr "essai" -#: templates/account.php701, templates/forms/deactivation/form.php:134 +#: templates/account.php912, templates/forms/deactivation/form.php:150 msgid "Cancelling %s..." msgstr "Annulation de %s..." -#: templates/account.php704, templates/forms/subscription-cancellation.php28, -#: templates/forms/deactivation/form.php:118 +#: templates/account.php915, templates/forms/subscription-cancellation.php28, +#: templates/forms/deactivation/form.php:134 msgid "subscription" msgstr "abonnement" -#: templates/account.php:718 +#: templates/account.php:929 msgid "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?" msgstr "Désactiver la licence bloquera toutes les fonctionnalités premium mais vous permettra d'activer la licence sur un autre site. Êtes-vous sûr de vouloir continuer ?" -#: templates/add-ons.php:36 +#: templates/add-ons.php:38 +msgid "View details" +msgstr "Voir les détails" + +#: templates/add-ons.php:48 msgid "Add Ons for %s" msgstr "Add Ons pour %s" -#: templates/add-ons.php:44 -msgid "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." -msgstr "Nous n'avons pas pu charger la liste des add-ons. C'est probablement une difficulté de notre côté, merci de d'essayer à nouveau dans quelques minutes." +#: templates/add-ons.php:58 +msgid "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." +msgstr "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." -#: templates/add-ons.php:139 -msgid "View details" -msgstr "Voir les détails" +#: templates/add-ons.php:229 +msgctxt "active add-on" +msgid "Active" +msgstr "Active" + +#: templates/add-ons.php:230 +msgctxt "installed add-on" +msgid "Installed" +msgstr "Installed" -#: templates/admin-notice.php13, templates/forms/license-activation.php208, +#: templates/admin-notice.php13, templates/forms/license-activation.php207, #: templates/forms/resend-key.php:77 msgctxt "as close a window" msgid "Dismiss" @@ -1447,11 +1538,11 @@ msgstr "L'installation a commencé et peut prendre quelques minutes pour se fini msgid "Cancel Installation" msgstr "Annuler l'installation" -#: templates/checkout.php:172 +#: templates/checkout.php:180 msgid "Checkout" msgstr "Paiement" -#: templates/checkout.php:172 +#: templates/checkout.php:180 msgid "PCI compliant" msgstr "Compatible PCI" @@ -1473,7 +1564,7 @@ msgstr "Renvoyer l'email d'activation" msgid "Thanks %s!" msgstr "Merci %s !" -#: templates/connect.php172, templates/forms/license-activation.php:43 +#: templates/connect.php172, templates/forms/license-activation.php:46 msgid "Agree & Activate License" msgstr "Valider & Activer la licence" @@ -1521,15 +1612,16 @@ msgstr "Éventuellement, vous pouvez l'ignorer pour l'instant et activer la lice msgid "During the update process we detected %s site(s) in the network that are still pending your attention." msgstr "Durant le processus de mise à jour nous avons détecté %s site(s) dans le réseau que vous devez vérifier." -#: templates/connect.php253, templates/forms/license-activation.php:46 +#: templates/connect.php253, templates/forms/data-debug-mode.php35, +#: templates/forms/license-activation.php:49 msgid "License key" msgstr "Clef de licence" -#: templates/connect.php256, templates/forms/license-activation.php:19 +#: templates/connect.php256, templates/forms/license-activation.php:22 msgid "Can't find your license key?" msgstr "Vous ne trouvez pas votre clef de licence ?" -#: templates/connect.php315, templates/connect.php630, +#: templates/connect.php315, templates/connect.php652, #: templates/forms/deactivation/retry-skip.php:20 msgctxt "verb" msgid "Skip" @@ -1579,7 +1671,7 @@ msgstr "Activation, désactivation et désintallation" msgid "Newsletter" msgstr "Newsletter" -#: templates/connect.php391, templates/forms/license-activation.php:38 +#: templates/connect.php391, templates/forms/license-activation.php:41 msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license." msgstr "Le %1$s va régulièrement envoyer des données à %2$s pour vérifier les mises à jour de sécurité et de fonctionnalités ainsi que pour vérifier la validité de votre licence." @@ -1591,10 +1683,6 @@ msgstr "Quelles autorisations sont accordées ?" msgid "Don't have a license key?" msgstr "Vous n'avez pas de clef de licence ?" -#: templates/connect.php:418 -msgid "Activate Free Version" -msgstr "Activez la version gratuite" - #: templates/connect.php:420 msgid "Have a license key?" msgstr "Vous avez une clef de licence ?" @@ -1611,12 +1699,12 @@ msgstr "Contrat de licence" msgid "Terms of Service" msgstr "Conditions générales de service" -#: templates/connect.php:766 +#: templates/connect.php:805 msgctxt "as in the process of sending an email" msgid "Sending email" msgstr "Email en cours d'envoi" -#: templates/connect.php:767 +#: templates/connect.php:806 msgctxt "as activating plugin" msgid "Activating" msgstr "Activation en cours" @@ -1644,8 +1732,8 @@ msgctxt "as code debugging" msgid "Debugging" msgstr "Debuggage" -#: templates/debug.php54, templates/debug.php248, templates/debug.php374, -#: templates/debug.php:492 +#: templates/debug.php54, templates/debug.php250, templates/debug.php376, +#: templates/debug.php:512 msgid "Actions" msgstr "Actions" @@ -1681,191 +1769,195 @@ msgstr "Chargement des options de la base de données" msgid "Set DB Option" msgstr "Mise en place des options de la base de données" -#: templates/debug.php:180 +#: templates/debug.php:182 msgid "Key" msgstr "Clef" -#: templates/debug.php:181 +#: templates/debug.php:183 msgid "Value" msgstr "Valeur" -#: templates/debug.php:197 +#: templates/debug.php:199 msgctxt "as software development kit versions" msgid "SDK Versions" msgstr "Versions du SDK" -#: templates/debug.php:202 +#: templates/debug.php:204 msgid "SDK Path" msgstr "Chemin d'accès du SDK" -#: templates/debug.php203, templates/debug.php:242 +#: templates/debug.php205, templates/debug.php:244 msgid "Module Path" msgstr "Chemin d'accès du module" -#: templates/debug.php:204 +#: templates/debug.php:206 msgid "Is Active" msgstr "Est actif" -#: templates/debug.php232, templates/debug/plugins-themes-sync.php:35 +#: templates/debug.php234, templates/debug/plugins-themes-sync.php:35 msgid "Plugins" msgstr "Plugins" -#: templates/debug.php232, templates/debug/plugins-themes-sync.php:56 +#: templates/debug.php234, templates/debug/plugins-themes-sync.php:56 msgid "Themes" msgstr "Thèmes" -#: templates/debug.php237, templates/debug.php369, templates/debug.php451, +#: templates/debug.php239, templates/debug.php370, templates/debug.php456, #: templates/debug/scheduled-crons.php:80 msgid "Slug" msgstr "Slug" -#: templates/debug.php239, templates/debug.php:450 +#: templates/debug.php241, templates/debug.php:455 msgid "Title" msgstr "Titre" -#: templates/debug.php:240 +#: templates/debug.php:242 msgctxt "as application program interface" msgid "API" msgstr "API" -#: templates/debug.php:241 +#: templates/debug.php:243 msgid "Freemius State" msgstr "État de Freemius" -#: templates/debug.php:245 +#: templates/debug.php:247 msgid "Network Blog" msgstr "Réseau de Blog" -#: templates/debug.php:246 +#: templates/debug.php:248 msgid "Network User" msgstr "Réseau d'Utilisateur" -#: templates/debug.php:283 +#: templates/debug.php:285 msgctxt "as connection was successful" msgid "Connected" msgstr "Connecté" -#: templates/debug.php:284 +#: templates/debug.php:286 msgctxt "as connection blocked" msgid "Blocked" msgstr "Bloqué" -#: templates/debug.php:320 +#: templates/debug.php:322 msgid "Simulate Trial Promotion" msgstr "Simuler la promotion d'essai" -#: templates/debug.php:332 +#: templates/debug.php:334 msgid "Simulate Network Upgrade" msgstr "Simuler la mise à jour du réseau" -#: templates/debug.php:358 +#: templates/debug.php:359 msgid "%s Installs" msgstr "%s Installations" -#: templates/debug.php:360 +#: templates/debug.php:361 msgctxt "like websites" msgid "Sites" msgstr "Sites" -#: templates/debug.php366, templates/account/partials/site.php:148 +#: templates/debug.php367, templates/account/partials/site.php:156 msgid "Blog ID" msgstr "Blog ID" -#: templates/debug.php431, templates/debug.php509, -#: templates/account/partials/addon.php:339 +#: templates/debug.php:372 +msgid "License ID" +msgstr "License ID" + +#: templates/debug.php436, templates/debug.php535, +#: templates/account/partials/addon.php:435 msgctxt "verb" msgid "Delete" msgstr "Supprimer" -#: templates/debug.php:445 +#: templates/debug.php:450 msgid "Add Ons of module %s" msgstr "Add Ons du module %s" -#: templates/debug.php:482 +#: templates/debug.php:502 msgid "Users" msgstr "Utilisateurs" -#: templates/debug.php:489 +#: templates/debug.php:509 msgid "Verified" msgstr "Vérifié" -#: templates/debug.php:520 +#: templates/debug.php:551 msgid "%s Licenses" msgstr "%s Licences" -#: templates/debug.php:525 +#: templates/debug.php:556 msgid "Plugin ID" msgstr "ID du plugin" -#: templates/debug.php:527 +#: templates/debug.php:558 msgid "Plan ID" msgstr "ID de la formule" -#: templates/debug.php:528 +#: templates/debug.php:559 msgid "Quota" msgstr "Quota" -#: templates/debug.php:529 +#: templates/debug.php:560 msgid "Activated" msgstr "Activé" -#: templates/debug.php:530 +#: templates/debug.php:561 msgid "Blocking" msgstr "Bloquant" -#: templates/debug.php:532 +#: templates/debug.php:563 msgctxt "as expiration date" msgid "Expiration" msgstr "Expiration" -#: templates/debug.php:555 +#: templates/debug.php:590 msgid "Debug Log" msgstr "Debug Log" -#: templates/debug.php:559 +#: templates/debug.php:594 msgid "All Types" msgstr "Tous les types" -#: templates/debug.php:566 +#: templates/debug.php:601 msgid "All Requests" msgstr "Toutes les demandes" -#: templates/debug.php571, templates/debug.php600, +#: templates/debug.php606, templates/debug.php635, #: templates/debug/logger.php:25 msgid "File" msgstr "Fichier" -#: templates/debug.php572, templates/debug.php598, +#: templates/debug.php607, templates/debug.php633, #: templates/debug/logger.php:23 msgid "Function" msgstr "Fonction" -#: templates/debug.php:573 +#: templates/debug.php:608 msgid "Process ID" msgstr "ID du processus" -#: templates/debug.php:574 +#: templates/debug.php:609 msgid "Logger" msgstr "Logger" -#: templates/debug.php575, templates/debug.php599, +#: templates/debug.php610, templates/debug.php634, #: templates/debug/logger.php:24 msgid "Message" msgstr "Message" -#: templates/debug.php:577 +#: templates/debug.php:612 msgid "Filter" msgstr "Filter" -#: templates/debug.php:585 +#: templates/debug.php:620 msgid "Download" msgstr "Téléchargement" -#: templates/debug.php596, templates/debug/logger.php:22 +#: templates/debug.php631, templates/debug/logger.php:22 msgid "Type" msgstr "Type" -#: templates/debug.php601, templates/debug/logger.php:26 +#: templates/debug.php636, templates/debug/logger.php:26 msgid "Timestamp" msgstr "Timestamp" @@ -1892,53 +1984,53 @@ msgstr "API Freemius" msgid "Requests" msgstr "Demandes" -#: templates/account/billing.php:28 +#: templates/account/billing.php:22 msgctxt "verb" msgid "Update" msgstr "Mise à jour" -#: templates/account/billing.php:39 +#: templates/account/billing.php:33 msgid "Billing" msgstr "Facturation" -#: templates/account/billing.php44, templates/account/billing.php:44 +#: templates/account/billing.php38, templates/account/billing.php:38 msgid "Business name" msgstr "Raison sociale" -#: templates/account/billing.php45, templates/account/billing.php:45 +#: templates/account/billing.php39, templates/account/billing.php:39 msgid "Tax / VAT ID" msgstr "Code TVA" -#: templates/account/billing.php48, templates/account/billing.php48, -#: templates/account/billing.php49, templates/account/billing.php:49 +#: templates/account/billing.php42, templates/account/billing.php42, +#: templates/account/billing.php43, templates/account/billing.php:43 msgid "Address Line %d" msgstr "Adresse ligne %d" -#: templates/account/billing.php52, templates/account/billing.php:52 +#: templates/account/billing.php46, templates/account/billing.php:46 msgid "City" msgstr "Ville" -#: templates/account/billing.php52, templates/account/billing.php:52 +#: templates/account/billing.php46, templates/account/billing.php:46 msgid "Town" msgstr "Ville" -#: templates/account/billing.php53, templates/account/billing.php:53 +#: templates/account/billing.php47, templates/account/billing.php:47 msgid "ZIP / Postal Code" msgstr "Code postal" -#: templates/account/billing.php:308 +#: templates/account/billing.php:302 msgid "Country" msgstr "Pays" -#: templates/account/billing.php:310 +#: templates/account/billing.php:304 msgid "Select Country" msgstr "Choisir le pays" -#: templates/account/billing.php317, templates/account/billing.php:318 +#: templates/account/billing.php311, templates/account/billing.php:312 msgid "State" msgstr "État" -#: templates/account/billing.php317, templates/account/billing.php:318 +#: templates/account/billing.php311, templates/account/billing.php:312 msgid "Province" msgstr "Région" @@ -2190,11 +2282,27 @@ msgstr "Annuler" msgid "Become an affiliate" msgstr "Devenir un affilié" -#: templates/forms/license-activation.php:20 +#: templates/forms/data-debug-mode.php:25 +msgid "Please enter the license key to enable the debug mode:" +msgstr "Please enter the license key to enable the debug mode:" + +#: templates/forms/data-debug-mode.php:27 +msgid "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:" +msgstr "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:" + +#: templates/forms/data-debug-mode.php:32 +msgid "Submit" +msgstr "Submit" + +#: templates/forms/data-debug-mode.php:36 +msgid "User key" +msgstr "User key" + +#: templates/forms/license-activation.php:23 msgid "Please enter the license key that you received in the email right after the purchase:" msgstr "Merci d'indiquer le code de licence que vous avez reçu par email juste après l'achat :" -#: templates/forms/license-activation.php:25 +#: templates/forms/license-activation.php:28 msgid "Update License" msgstr "Mettre à jour la licence" @@ -2274,7 +2382,7 @@ msgid "Proceed" msgstr "Poursuivre" #: templates/forms/subscription-cancellation.php191, -#: templates/forms/deactivation/form.php:150 +#: templates/forms/deactivation/form.php:171 msgid "Cancel %s & Proceed" msgstr "Annuler %s et poursuivre" @@ -2286,38 +2394,42 @@ msgstr "Vous êtes à 1 clic de commencer votre période d'essai gratuite de %1$ msgid "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial." msgstr "Pour être en accord avec les directives de WordPress.org, avant que nous commencions la période d'essai, nous vous demandons de nous permettre de récupérer votre nom d'utilisateur et des informations non sensibles du site afin de permettre au %s de communiquer avec %s pour vérifier les mises à jour et valider votre période d'essai." -#: templates/js/style-premium-theme.php:37 +#: templates/js/style-premium-theme.php:39 msgid "Premium" msgstr "Premium" -#: templates/partials/network-activation.php:23 +#: templates/js/style-premium-theme.php:42 +msgid "Beta" +msgstr "Beta" + +#: templates/partials/network-activation.php:27 msgid "Activate license on all sites in the network." msgstr "Activer la licence sur tous les sites du réseau." -#: templates/partials/network-activation.php:24 +#: templates/partials/network-activation.php:28 msgid "Apply on all sites in the network." msgstr "Effectuer sur tous les sites dans le réseau." -#: templates/partials/network-activation.php:27 +#: templates/partials/network-activation.php:31 msgid "Activate license on all pending sites." msgstr "Activer la licence sur tous les sites en attente." -#: templates/partials/network-activation.php:28 +#: templates/partials/network-activation.php:32 msgid "Apply on all pending sites." msgstr "Activer sur tous les sites en attente." -#: templates/partials/network-activation.php36, -#: templates/partials/network-activation.php:68 +#: templates/partials/network-activation.php40, +#: templates/partials/network-activation.php:74 msgid "allow" msgstr "autoriser" -#: templates/partials/network-activation.php38, -#: templates/partials/network-activation.php:70 +#: templates/partials/network-activation.php43, +#: templates/partials/network-activation.php:77 msgid "delegate" msgstr "déléguer" -#: templates/partials/network-activation.php41, -#: templates/partials/network-activation.php:73 +#: templates/partials/network-activation.php47, +#: templates/partials/network-activation.php:81 msgid "skip" msgstr "passer" @@ -2343,32 +2455,33 @@ msgstr "%s restante(s)" msgid "Last license" msgstr "Dernière licence" -#: templates/account/partials/addon.php:115 +#. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the +#. subscription' +#: templates/account/partials/addon.php:29 +msgid "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s." +msgstr "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s." + +#: templates/account/partials/addon.php:185 msgid "Cancelled" msgstr "Annulé" -#: templates/account/partials/addon.php:125 +#: templates/account/partials/addon.php:195 msgid "No expiration" msgstr "Pas d'expiration" -#: templates/account/partials/addon.php264, -#: templates/account/partials/addon.php:317 -msgid "Activate this add-on" -msgstr "Activer cet add-on" - -#: templates/account/partials/site.php:181 +#: templates/account/partials/site.php:189 msgid "Owner Name" msgstr "Nom du propriétaire" -#: templates/account/partials/site.php:193 +#: templates/account/partials/site.php:201 msgid "Owner Email" msgstr "Email du propriétaire" -#: templates/account/partials/site.php:205 +#: templates/account/partials/site.php:213 msgid "Owner ID" msgstr "ID du propriétaire" -#: templates/account/partials/site.php:270 +#: templates/account/partials/site.php:286 msgid "Subscription" msgstr "Inscription" @@ -2380,47 +2493,47 @@ msgstr "Désolé pour le dérangement et nous sommes là pour vous aider si vous msgid "Contact Support" msgstr "Contacter l'Assistance" -#: templates/forms/deactivation/form.php:59 +#: templates/forms/deactivation/form.php:64 msgid "Anonymous feedback" msgstr "Commentaire anonyme" -#: templates/forms/deactivation/form.php:66 +#: templates/forms/deactivation/form.php:70 msgid "Deactivate" msgstr "Désactiver" -#: templates/forms/deactivation/form.php:68 +#: templates/forms/deactivation/form.php:72 msgid "Activate %s" msgstr "Activer %s" -#: templates/forms/deactivation/form.php:80 +#: templates/forms/deactivation/form.php:87 msgid "Quick Feedback" msgstr "Commentaires rapides" -#: templates/forms/deactivation/form.php:84 +#: templates/forms/deactivation/form.php:91 msgid "If you have a moment, please let us know why you are %s" msgstr "Si vous avez un instant, merci de nous indiquer pourquoi %s" -#: templates/forms/deactivation/form.php:84 +#: templates/forms/deactivation/form.php:91 msgid "deactivating" msgstr "Désactivation" -#: templates/forms/deactivation/form.php:84 +#: templates/forms/deactivation/form.php:91 msgid "switching" msgstr "Changement" -#: templates/forms/deactivation/form.php:332 +#: templates/forms/deactivation/form.php:365 msgid "Submit & %s" msgstr "Envoyer & %s" -#: templates/forms/deactivation/form.php:353 +#: templates/forms/deactivation/form.php:386 msgid "Kindly tell us the reason so we can improve." msgstr "S'il vous plait, dites nous pourquoi afin que nous puissions nous améliorer." -#: templates/forms/deactivation/form.php:478 +#: templates/forms/deactivation/form.php:511 msgid "Yes - %s" msgstr "Oui - %s" -#: templates/forms/deactivation/form.php:485 +#: templates/forms/deactivation/form.php:518 msgid "Skip & %s" msgstr "Passer & %s" diff --git a/external/Freemius/languages/freemius-he_IL.mo b/external/Freemius/languages/freemius-he_IL.mo index a7de799c..5ddb98ec 100755 Binary files a/external/Freemius/languages/freemius-he_IL.mo and b/external/Freemius/languages/freemius-he_IL.mo differ diff --git a/external/Freemius/languages/freemius-he_IL.po b/external/Freemius/languages/freemius-he_IL.po index 2764ad81..5827931e 100755 --- a/external/Freemius/languages/freemius-he_IL.po +++ b/external/Freemius/languages/freemius-he_IL.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: WordPress SDK\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2018-11-25 07:22+0000\n" +"PO-Revision-Date: 2019-10-07 15:33+0000\n" "Last-Translator: Vova Feldman \n" "Language: he_IL\n" "Language-Team: Hebrew (Israel) (http://www.transifex.com/freemius/wordpress-sdk/language/he_IL/)\n" @@ -22,1407 +22,1498 @@ msgstr "" "X-Poedit-SearchPathExcluded-0: *.js\n" "X-Poedit-SourceCharset: UTF-8\n" -#: includes/class-freemius.php:1688 +#: includes/class-freemius.php1880, templates/account.php:840 +msgid "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned." +msgstr "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned." + +#: includes/class-freemius.php:1887 +msgid "Would you like to proceed with the update?" +msgstr "Would you like to proceed with the update?" + +#: includes/class-freemius.php:2095 msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error." msgstr "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error." -#: includes/class-freemius.php:1690 +#: includes/class-freemius.php:2097 msgid "Error" msgstr "שגיאה" -#: includes/class-freemius.php:2011 +#: includes/class-freemius.php:2491 msgid "I found a better %s" msgstr "מצאתי %s יותר טוב" -#: includes/class-freemius.php:2013 +#: includes/class-freemius.php:2493 msgid "What's the %s's name?" msgstr "What's the %s's name?" -#: includes/class-freemius.php:2019 +#: includes/class-freemius.php:2499 msgid "It's a temporary %s. I'm just debugging an issue." msgstr "It's a temporary %s. I'm just debugging an issue." -#: includes/class-freemius.php:2021 +#: includes/class-freemius.php:2501 msgid "Deactivation" msgstr "דיאקטיבציה" -#: includes/class-freemius.php:2022 +#: includes/class-freemius.php:2502 msgid "Theme Switch" msgstr "החלפת תֵמָה" -#: includes/class-freemius.php2031, templates/forms/resend-key.php:24 +#: includes/class-freemius.php2511, templates/forms/resend-key.php:24 msgid "Other" msgstr "אחר" -#: includes/class-freemius.php:2039 +#: includes/class-freemius.php:2519 msgid "I no longer need the %s" msgstr "I no longer need the %s" -#: includes/class-freemius.php:2046 +#: includes/class-freemius.php:2526 msgid "I only needed the %s for a short period" msgstr "I only needed the %s for a short period" -#: includes/class-freemius.php:2052 +#: includes/class-freemius.php:2532 msgid "The %s broke my site" msgstr "ה%s הרס לי את האתר" -#: includes/class-freemius.php:2059 +#: includes/class-freemius.php:2539 msgid "The %s suddenly stopped working" msgstr "ה%s הפסיק פתאום לעבוד" -#: includes/class-freemius.php:2069 +#: includes/class-freemius.php:2549 msgid "I can't pay for it anymore" msgstr "אני לא יכול/ה להמשיך לשלם על זה" -#: includes/class-freemius.php:2071 +#: includes/class-freemius.php:2551 msgid "What price would you feel comfortable paying?" msgstr "מה המחיר שכן תרגיש\\י בנוח לשלם?" -#: includes/class-freemius.php:2077 +#: includes/class-freemius.php:2557 msgid "I don't like to share my information with you" msgstr "אני לא אוהב את הרעיון של שיתוף מידע איתכם" -#: includes/class-freemius.php:2098 +#: includes/class-freemius.php:2578 msgid "The %s didn't work" msgstr "ה%s לא עבד" -#: includes/class-freemius.php:2108 +#: includes/class-freemius.php:2588 msgid "I couldn't understand how to make it work" msgstr "לא הצלחתי להבין איך לגרום לזה לעבוד" -#: includes/class-freemius.php:2116 +#: includes/class-freemius.php:2596 msgid "The %s is great, but I need specific feature that you don't support" msgstr "The %s is great, but I need specific feature that you don't support" -#: includes/class-freemius.php:2118 +#: includes/class-freemius.php:2598 msgid "What feature?" msgstr "איזה פיטצ'ר?" -#: includes/class-freemius.php:2122 +#: includes/class-freemius.php:2602 msgid "The %s is not working" msgstr "ה%s לא עובד" -#: includes/class-freemius.php:2124 +#: includes/class-freemius.php:2604 msgid "Kindly share what didn't work so we can fix it for future users..." msgstr "אנא שתפ\\י מה לא עבד כדי שנוכל לתקן זאת עבור משתמשים עתידיים..." -#: includes/class-freemius.php:2128 +#: includes/class-freemius.php:2608 msgid "It's not what I was looking for" msgstr "חיפשתי משהו אחר" -#: includes/class-freemius.php:2130 +#: includes/class-freemius.php:2610 msgid "What you've been looking for?" msgstr "מה חיפשת?" -#: includes/class-freemius.php:2134 +#: includes/class-freemius.php:2614 msgid "The %s didn't work as expected" msgstr "ה%s לא עבד כמצופה" -#: includes/class-freemius.php:2136 +#: includes/class-freemius.php:2616 msgid "What did you expect?" msgstr "למה ציפית?" -#: includes/class-freemius.php2942, templates/debug.php:20 +#: includes/class-freemius.php3471, templates/debug.php:20 msgid "Freemius Debug" msgstr "ניפוי תקלות פרימיוס" -#: includes/class-freemius.php:3670 +#: includes/class-freemius.php:4223 msgid "I don't know what is cURL or how to install it, help me!" msgstr "אין לי מושג מה זה cURL או איך להתקין אותו - אשמח לעזרה!" -#: includes/class-freemius.php:3672 +#: includes/class-freemius.php:4225 msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update." msgstr "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update." -#: includes/class-freemius.php:3679 +#: includes/class-freemius.php:4232 msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again." msgstr "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again." -#: includes/class-freemius.php:3784 +#: includes/class-freemius.php:4337 msgid "Yes - do your thing" msgstr "כן - בצעו את מה שצריך" -#: includes/class-freemius.php:3789 +#: includes/class-freemius.php:4342 msgid "No - just deactivate" msgstr "לא - פשוט כבה" -#: includes/class-freemius.php3834, includes/class-freemius.php4343, -#: includes/class-freemius.php5442, includes/class-freemius.php11545, -#: includes/class-freemius.php14916, includes/class-freemius.php14968, -#: includes/class-freemius.php15030, includes/class-freemius.php17263, -#: includes/class-freemius.php17273, includes/class-freemius.php17882, -#: includes/class-freemius.php18742, includes/class-freemius.php18857, -#: includes/class-freemius.php19001, templates/add-ons.php:43 +#: includes/class-freemius.php4387, includes/class-freemius.php4881, +#: includes/class-freemius.php6032, includes/class-freemius.php13153, +#: includes/class-freemius.php16558, includes/class-freemius.php16646, +#: includes/class-freemius.php16812, includes/class-freemius.php19040, +#: includes/class-freemius.php19381, includes/class-freemius.php19391, +#: includes/class-freemius.php20051, includes/class-freemius.php20924, +#: includes/class-freemius.php21039, includes/class-freemius.php21183, +#: templates/add-ons.php:57 msgctxt "exclamation" msgid "Oops" msgstr "אופס" -#: includes/class-freemius.php:3903 +#: includes/class-freemius.php:4456 msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience." msgstr "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience." -#: includes/class-freemius.php:4340 +#: includes/class-freemius.php:4878 msgctxt "addonX cannot run without pluginY" msgid "%s cannot run without %s." msgstr "%s לא יכול לעבוד ללא %s." -#: includes/class-freemius.php:4341 +#: includes/class-freemius.php:4879 msgctxt "addonX cannot run..." msgid "%s cannot run without the plugin." msgstr "ההרחבה %s אינה יכולה לפעול ללא התוסף." -#: includes/class-freemius.php4487, includes/class-freemius.php4512, -#: includes/class-freemius.php:17953 +#: includes/class-freemius.php5052, includes/class-freemius.php5077, +#: includes/class-freemius.php:20122 msgid "Unexpected API error. Please contact the %s's author with the following error." msgstr "Unexpected API error. Please contact the %s's author with the following error." -#: includes/class-freemius.php:5130 +#: includes/class-freemius.php:5720 msgid "Premium %s version was successfully activated." msgstr "Premium %s version was successfully activated." -#: includes/class-freemius.php5142, includes/class-freemius.php:7004 +#: includes/class-freemius.php5732, includes/class-freemius.php:7599 msgctxt "" msgid "W00t" msgstr "יש" -#: includes/class-freemius.php:5157 +#: includes/class-freemius.php:5747 msgid "You have a %s license." msgstr "יש לך רישיון %s." -#: includes/class-freemius.php5161, includes/class-freemius.php14337, -#: includes/class-freemius.php14348, includes/class-freemius.php17177, -#: includes/class-freemius.php17491, includes/class-freemius.php17557, -#: includes/class-freemius.php:17707 +#: includes/class-freemius.php5751, includes/class-freemius.php15975, +#: includes/class-freemius.php15986, includes/class-freemius.php19292, +#: includes/class-freemius.php19642, includes/class-freemius.php19711, +#: includes/class-freemius.php:19876 msgctxt "interjection expressing joy or exuberance" msgid "Yee-haw" msgstr "יששש" -#: includes/class-freemius.php:5425 +#: includes/class-freemius.php:6015 msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license." msgstr "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license." -#: includes/class-freemius.php:5429 +#: includes/class-freemius.php:6019 msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin." msgstr "%s is a premium only add-on. You have to purchase a license first before activating the plugin." -#: includes/class-freemius.php5438, templates/add-ons.php103, -#: templates/account/partials/addon.php:288 +#: includes/class-freemius.php6028, templates/add-ons.php186, +#: templates/account/partials/addon.php:381 msgid "More information about %s" msgstr "מידע נוסף אודות %s" -#: includes/class-freemius.php:5439 +#: includes/class-freemius.php:6029 msgid "Purchase License" msgstr "קניית רישיון" -#: includes/class-freemius.php6372, templates/connect.php:163 +#: includes/class-freemius.php6964, templates/connect.php:163 msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s." msgstr "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s." -#: includes/class-freemius.php:6376 +#: includes/class-freemius.php:6968 msgid "start the trial" msgstr "התחל תקופת ניסיון" -#: includes/class-freemius.php6377, templates/connect.php:167 +#: includes/class-freemius.php6969, templates/connect.php:167 msgid "complete the install" msgstr "השלם התקנה" -#: includes/class-freemius.php:6490 +#: includes/class-freemius.php:7081 msgid "You are just one step away - %s" msgstr "You are just one step away - %s" -#: includes/class-freemius.php:6493 +#: includes/class-freemius.php:7084 msgctxt "%s - plugin name. As complete \"PluginX\" activation now" msgid "Complete \"%s\" Activation Now" msgstr "השלם הפעלת \"%s\" עכשיו" -#: includes/class-freemius.php:6571 +#: includes/class-freemius.php:7162 msgid "We made a few tweaks to the %s, %s" msgstr "We made a few tweaks to the %s, %s" -#: includes/class-freemius.php:6575 +#: includes/class-freemius.php:7166 msgid "Opt in to make \"%s\" better!" msgstr "Opt in to make \"%s\" better!" -#: includes/class-freemius.php:7003 +#: includes/class-freemius.php:7598 msgid "The upgrade of %s was successfully completed." msgstr "The upgrade of %s was successfully completed." -#: includes/class-freemius.php8925, includes/class-fs-plugin-updater.php886, -#: includes/class-fs-plugin-updater.php1081, -#: includes/class-fs-plugin-updater.php1088, +#: includes/class-freemius.php9802, includes/class-fs-plugin-updater.php1038, +#: includes/class-fs-plugin-updater.php1233, +#: includes/class-fs-plugin-updater.php1240, #: templates/auto-installation.php:32 msgid "Add-On" msgstr "Add-On" -#: includes/class-freemius.php8927, templates/debug.php359, -#: templates/debug.php:520 +#: includes/class-freemius.php9804, templates/account.php335, +#: templates/account.php343, templates/debug.php360, templates/debug.php:551 msgid "Plugin" msgstr "תוסף" -#: includes/class-freemius.php8928, templates/debug.php359, -#: templates/debug.php520, templates/forms/deactivation/form.php:67 +#: includes/class-freemius.php9805, templates/account.php336, +#: templates/account.php344, templates/debug.php360, templates/debug.php551, +#: templates/forms/deactivation/form.php:71 msgid "Theme" msgstr "תבנית" -#: includes/class-freemius.php:11412 +#: includes/class-freemius.php:12596 +msgid "An unknown error has occurred while trying to set the user's beta mode." +msgstr "An unknown error has occurred while trying to set the user's beta mode." + +#: includes/class-freemius.php:13020 msgid "Invalid site details collection." msgstr "Invalid site details collection." -#: includes/class-freemius.php:11532 +#: includes/class-freemius.php:13140 msgid "We couldn't find your email address in the system, are you sure it's the right address?" msgstr "We couldn't find your email address in the system, are you sure it's the right address?" -#: includes/class-freemius.php:11534 +#: includes/class-freemius.php:13142 msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?" msgstr "We can't see any active licenses associated with that email address, are you sure it's the right address?" -#: includes/class-freemius.php:11808 +#: includes/class-freemius.php:13416 msgid "Account is pending activation." msgstr "Account is pending activation." -#: includes/class-freemius.php11920, +#: includes/class-freemius.php13528, #: templates/forms/premium-versions-upgrade-handler.php:47 msgid "Buy a license now" msgstr "Buy a license now" -#: includes/class-freemius.php11932, +#: includes/class-freemius.php13540, #: templates/forms/premium-versions-upgrade-handler.php:46 msgid "Renew your license now" msgstr "Renew your license now" -#: includes/class-freemius.php:11936 +#: includes/class-freemius.php:13544 msgid "%s to access version %s security & feature updates, and support." msgstr "%s to access version %s security & feature updates, and support." -#: includes/class-freemius.php:14319 +#: includes/class-freemius.php:15957 msgid "%s activation was successfully completed." msgstr "הפעלת %s הושלמה בהצלחה." -#: includes/class-freemius.php:14333 +#: includes/class-freemius.php:15971 msgid "Your account was successfully activated with the %s plan." msgstr "חשבונך הופעל בהצלחה עם חבילת %s." -#: includes/class-freemius.php14344, includes/class-freemius.php:17553 +#: includes/class-freemius.php15982, includes/class-freemius.php:19707 msgid "Your trial has been successfully started." msgstr "הניסיון שלך הופעל בהצלחה." -#: includes/class-freemius.php14914, includes/class-freemius.php14966, -#: includes/class-freemius.php:15028 +#: includes/class-freemius.php16556, includes/class-freemius.php16644, +#: includes/class-freemius.php:16810 msgid "Couldn't activate %s." msgstr "לא ניתן להפעיל את %s." -#: includes/class-freemius.php14915, includes/class-freemius.php14967, -#: includes/class-freemius.php:15029 +#: includes/class-freemius.php16557, includes/class-freemius.php16645, +#: includes/class-freemius.php:16811 msgid "Please contact us with the following message:" msgstr "אנא צור איתנו קשר יחד עם ההודעה הבאה:" -#: includes/class-freemius.php15378, includes/class-freemius.php:19839 +#: includes/class-freemius.php16641, templates/forms/data-debug-mode.php:162 +msgid "An unknown error has occurred." +msgstr "An unknown error has occurred." + +#: includes/class-freemius.php17168, includes/class-freemius.php:22082 msgid "Upgrade" msgstr "שדרג" -#: includes/class-freemius.php:15384 +#: includes/class-freemius.php:17174 msgid "Start Trial" msgstr "התחל תקופת ניסיון" -#: includes/class-freemius.php:15386 +#: includes/class-freemius.php:17176 msgid "Pricing" msgstr "מחירון" -#: includes/class-freemius.php15448, includes/class-freemius.php:15450 +#: includes/class-freemius.php17256, includes/class-freemius.php:17258 msgid "Affiliation" msgstr "אפיליאציה" -#: includes/class-freemius.php15478, includes/class-freemius.php15480, -#: templates/account.php150, templates/debug.php:324 +#: includes/class-freemius.php17286, includes/class-freemius.php17288, +#: templates/account.php183, templates/debug.php:326 msgid "Account" msgstr "חשבון" -#: includes/class-freemius.php15493, includes/class-freemius.php15495, +#: includes/class-freemius.php17302, includes/class-freemius.php17304, #: includes/customizer/class-fs-customizer-support-section.php:60 msgid "Contact Us" msgstr "יצירת קשר" -#: includes/class-freemius.php15505, includes/class-freemius.php15507, -#: includes/class-freemius.php19849, templates/account.php100, -#: templates/account/partials/addon.php:41 +#: includes/class-freemius.php17315, includes/class-freemius.php17317, +#: includes/class-freemius.php22096, templates/account.php111, +#: templates/account/partials/addon.php:44 msgid "Add-Ons" msgstr "Add-Ons" -#: includes/class-freemius.php:15541 +#: includes/class-freemius.php:17351 msgctxt "ASCII arrow left icon" msgid "←" msgstr "←" -#: includes/class-freemius.php:15541 +#: includes/class-freemius.php:17351 msgctxt "ASCII arrow right icon" msgid "➤" msgstr "➤" -#: includes/class-freemius.php15543, templates/pricing.php:97 +#: includes/class-freemius.php17353, templates/pricing.php:103 msgctxt "noun" msgid "Pricing" msgstr "מחירון" -#: includes/class-freemius.php15756, +#: includes/class-freemius.php17566, #: includes/customizer/class-fs-customizer-support-section.php:67 msgid "Support Forum" msgstr "פורום תמיכה" -#: includes/class-freemius.php:16542 +#: includes/class-freemius.php:18536 msgid "Your email has been successfully verified - you are AWESOME!" msgstr "Your email has been successfully verified - you are AWESOME!" -#: includes/class-freemius.php:16543 +#: includes/class-freemius.php:18537 msgctxt "a positive response" msgid "Right on" msgstr "מעולה" -#: includes/class-freemius.php:17168 +#: includes/class-freemius.php:19041 +msgid "seems like the key you entered doesn't match our records." +msgstr "seems like the key you entered doesn't match our records." + +#: includes/class-freemius.php:19065 +msgid "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." +msgstr "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." + +#: includes/class-freemius.php:19283 msgid "Your %s Add-on plan was successfully upgraded." msgstr "חבילת ההרחבה %s שודרגה בהצלחה." -#: includes/class-freemius.php:17170 +#: includes/class-freemius.php:19285 msgid "%s Add-on was successfully purchased." msgstr "ההרחבה %s נרכשה בהצלחה." -#: includes/class-freemius.php:17173 +#: includes/class-freemius.php:19288 msgid "Download the latest version" msgstr "הורד את הגרסה האחרונה" -#: includes/class-freemius.php:17259 -msgctxt "%1s - plugin title, %2s - API domain" -msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s" -msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s" +#: includes/class-freemius.php:19374 +msgid "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s" +msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s" -#: includes/class-freemius.php17262, includes/class-freemius.php17678, -#: includes/class-freemius.php:17755 +#: includes/class-freemius.php19380, includes/class-freemius.php19390, +#: includes/class-freemius.php19835, includes/class-freemius.php:19924 msgid "Error received from the server:" msgstr "הוחזרה שגיאה מהשרת:" -#: includes/class-freemius.php:17272 +#: includes/class-freemius.php:19390 msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again." msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again." -#: includes/class-freemius.php17454, includes/class-freemius.php17683, -#: includes/class-freemius.php17726, includes/class-freemius.php:17829 +#: includes/class-freemius.php19604, includes/class-freemius.php19840, +#: includes/class-freemius.php19895, includes/class-freemius.php:19998 msgctxt "" msgid "Hmm" msgstr "אממ" -#: includes/class-freemius.php:17467 +#: includes/class-freemius.php:19617 msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry." msgstr "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry." -#: includes/class-freemius.php17468, templates/account.php102, -#: templates/add-ons.php134, templates/account/partials/addon.php:43 +#: includes/class-freemius.php19618, templates/account.php113, +#: templates/add-ons.php250, templates/account/partials/addon.php:46 msgctxt "trial period" msgid "Trial" msgstr "ניסיון" -#: includes/class-freemius.php:17473 +#: includes/class-freemius.php:19623 msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s." msgstr "שידרגתי את החשבון שלי אבל כשאני מנסה לבצע סנכרון לרישיון החבילה נשארת %s." -#: includes/class-freemius.php17477, includes/class-freemius.php:17535 +#: includes/class-freemius.php19627, includes/class-freemius.php:19686 msgid "Please contact us here" msgstr "אנא צור איתנו קשר כאן" -#: includes/class-freemius.php:17487 +#: includes/class-freemius.php:19638 +msgid "Your plan was successfully activated." +msgstr "Your plan was successfully activated." + +#: includes/class-freemius.php:19639 msgid "Your plan was successfully upgraded." msgstr "החבילה שודרגה בהצלחה." -#: includes/class-freemius.php:17505 +#: includes/class-freemius.php:19656 msgid "Your plan was successfully changed to %s." msgstr "החבילה עודכנה בהצלחה אל %s." -#: includes/class-freemius.php:17521 +#: includes/class-freemius.php:19672 msgid "Your license has expired. You can still continue using the free %s forever." msgstr "Your license has expired. You can still continue using the free %s forever." -#: includes/class-freemius.php:17523 +#: includes/class-freemius.php:19674 msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." msgstr "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." -#: includes/class-freemius.php:17531 +#: includes/class-freemius.php:19682 msgid "Your license has been cancelled. If you think it's a mistake, please contact support." msgstr "רשיונך בוטל. אם לדעתך זו טעות, נא ליצור קשר עם התמיכה." -#: includes/class-freemius.php:17544 +#: includes/class-freemius.php:19695 msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support." msgstr "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support." -#: includes/class-freemius.php:17567 +#: includes/class-freemius.php:19721 msgid "Your free trial has expired. You can still continue using all our free features." msgstr "תקופת הניסיון שלך הסתיימה. הפיטצ'רים החינאמיים עדיין ניתנים לשימוש." -#: includes/class-freemius.php:17569 +#: includes/class-freemius.php:19723 msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." -#: includes/class-freemius.php:17674 +#: includes/class-freemius.php:19831 msgid "It looks like the license could not be activated." msgstr "נראה שלא ניתן להפעיל את הרישיון." -#: includes/class-freemius.php:17704 +#: includes/class-freemius.php:19873 msgid "Your license was successfully activated." msgstr "הרישיון הופעל בהצלחה." -#: includes/class-freemius.php:17730 +#: includes/class-freemius.php:19899 msgid "It looks like your site currently doesn't have an active license." msgstr "נראה לאתר עדיין אין רישיון פעיל." -#: includes/class-freemius.php:17754 +#: includes/class-freemius.php:19923 msgid "It looks like the license deactivation failed." msgstr "נראה שניתוק הרישיון נכשל." -#: includes/class-freemius.php:17782 +#: includes/class-freemius.php:19951 msgid "Your license was successfully deactivated, you are back to the %s plan." msgstr "רישיונך נותק בהצלחה, חזרת לחבילת %s" -#: includes/class-freemius.php:17783 +#: includes/class-freemius.php:19952 msgid "O.K" msgstr "אוקיי" -#: includes/class-freemius.php:17836 +#: includes/class-freemius.php:20005 msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes." msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes." -#: includes/class-freemius.php:17845 +#: includes/class-freemius.php:20014 msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s." msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s." -#: includes/class-freemius.php:17887 +#: includes/class-freemius.php:20056 msgid "You are already running the %s in a trial mode." msgstr "You are already running the %s in a trial mode." -#: includes/class-freemius.php:17898 +#: includes/class-freemius.php:20067 msgid "You already utilized a trial before." msgstr "הניסיון כבר נוצל בעבר." -#: includes/class-freemius.php:17912 +#: includes/class-freemius.php:20081 msgid "Plan %s do not exist, therefore, can't start a trial." msgstr "החבילה %s אינה קיימת, לכן, לא ניתן להתחיל תקופת ניסיון." -#: includes/class-freemius.php:17923 +#: includes/class-freemius.php:20092 msgid "Plan %s does not support a trial period." msgstr "תוכנית %s אינה תומכת בתקופת ניסיון." -#: includes/class-freemius.php:17934 +#: includes/class-freemius.php:20103 msgid "None of the %s's plans supports a trial period." msgstr "None of the %s's plans supports a trial period." -#: includes/class-freemius.php:17984 +#: includes/class-freemius.php:20153 msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)" msgstr "It looks like you are not in trial mode anymore so there's nothing to cancel :)" -#: includes/class-freemius.php:18020 +#: includes/class-freemius.php:20189 msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes." msgstr "נראה שיש תקלה זמנית המונעת את ביטול הניסיון. אנא נסו שוב בעוד כמה דקות." -#: includes/class-freemius.php:18039 +#: includes/class-freemius.php:20208 msgid "Your %s free trial was successfully cancelled." msgstr "תקופת הניסיון החינמית של %s בוטלה בהצלחה." -#: includes/class-freemius.php:18346 +#: includes/class-freemius.php:20524 msgid "Version %s was released." msgstr "גרסה %s הושקה." -#: includes/class-freemius.php:18346 +#: includes/class-freemius.php:20524 msgid "Please download %s." msgstr "נא להוריד את %s." -#: includes/class-freemius.php:18353 +#: includes/class-freemius.php:20531 msgid "the latest %s version here" msgstr "גרסת ה-%s האחרונה כאן" -#: includes/class-freemius.php:18358 +#: includes/class-freemius.php:20536 msgid "New" msgstr "חדש" -#: includes/class-freemius.php:18363 +#: includes/class-freemius.php:20541 msgid "Seems like you got the latest release." msgstr "נראה שיש לך את הגרסה האחרונה." -#: includes/class-freemius.php:18364 +#: includes/class-freemius.php:20542 msgid "You are all good!" msgstr "את\\ה מסודר!" -#: includes/class-freemius.php:18632 +#: includes/class-freemius.php:20812 msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box." msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box." -#: includes/class-freemius.php:18769 +#: includes/class-freemius.php:20951 msgid "Site successfully opted in." msgstr "Site successfully opted in." -#: includes/class-freemius.php18770, includes/class-freemius.php:19581 +#: includes/class-freemius.php20952, includes/class-freemius.php:21792 msgid "Awesome" msgstr "אדיר" -#: includes/class-freemius.php18786, templates/forms/optout.php:32 +#: includes/class-freemius.php20968, templates/forms/optout.php:32 msgid "We appreciate your help in making the %s better by letting us track some usage data." msgstr "We appreciate your help in making the %s better by letting us track some usage data." -#: includes/class-freemius.php:18787 +#: includes/class-freemius.php:20969 msgid "Thank you!" msgstr "תודה רבה!" -#: includes/class-freemius.php:18794 +#: includes/class-freemius.php:20976 msgid "We will no longer be sending any usage data of %s on %s to %s." msgstr "We will no longer be sending any usage data of %s on %s to %s." -#: includes/class-freemius.php:18923 +#: includes/class-freemius.php:21105 msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder." msgstr "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder." -#: includes/class-freemius.php:18929 +#: includes/class-freemius.php:21111 msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval." msgstr "תודה על אישור ביצוע החלפת הבעלות. הרגע נשלח מייל ל-%s כדי לקבל אישור סופי." -#: includes/class-freemius.php:18934 +#: includes/class-freemius.php:21116 msgid "%s is the new owner of the account." msgstr "%s הינו הבעלים החד של חשבון זה." -#: includes/class-freemius.php:18936 +#: includes/class-freemius.php:21118 msgctxt "as congratulations" msgid "Congrats" msgstr "מזל טוב" -#: includes/class-freemius.php:18956 +#: includes/class-freemius.php:21138 msgid "Sorry, we could not complete the email update. Another user with the same email is already registered." msgstr "Sorry, we could not complete the email update. Another user with the same email is already registered." -#: includes/class-freemius.php:18957 +#: includes/class-freemius.php:21139 msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button." msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button." -#: includes/class-freemius.php:18964 +#: includes/class-freemius.php:21146 msgid "Change Ownership" msgstr "עדכון בעלות" -#: includes/class-freemius.php:18972 +#: includes/class-freemius.php:21154 msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments." msgstr "כתובת הדואל שלך עודכנה בהצלחה. הודעת אישור אמורה להתקבל בדואל שלך ברגעים הקרובים." -#: includes/class-freemius.php:18984 +#: includes/class-freemius.php:21166 msgid "Please provide your full name." msgstr "נא למלא את שמך המלא." -#: includes/class-freemius.php:18989 +#: includes/class-freemius.php:21171 msgid "Your name was successfully updated." msgstr "שמך עודכן בהצלחה." -#: includes/class-freemius.php:19050 +#: includes/class-freemius.php:21232 msgid "You have successfully updated your %s." msgstr "עידכנת בהצלחה את ה%s." -#: includes/class-freemius.php:19190 +#: includes/class-freemius.php:21372 msgid "Just letting you know that the add-ons information of %s is being pulled from an external server." msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server." -#: includes/class-freemius.php:19191 +#: includes/class-freemius.php:21373 msgctxt "advance notice of something that will need attention." msgid "Heads up" msgstr "לתשמות לבך" -#: includes/class-freemius.php:19621 +#: includes/class-freemius.php:21832 msgctxt "exclamation" msgid "Hey" msgstr "היי" -#: includes/class-freemius.php:19621 +#: includes/class-freemius.php:21832 msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial." msgstr "How do you like %s so far? Test all our %s premium features with a %d-day free trial." -#: includes/class-freemius.php:19629 +#: includes/class-freemius.php:21840 msgid "No commitment for %s days - cancel anytime!" msgstr "ללא התחייבות ל-%s ימין - בטלו בכל רגע!" -#: includes/class-freemius.php:19630 +#: includes/class-freemius.php:21841 msgid "No credit card required" msgstr "לא נדרש כרטיס אשראי" -#: includes/class-freemius.php19637, templates/forms/trial-start.php:53 +#: includes/class-freemius.php21848, templates/forms/trial-start.php:53 msgctxt "call to action" msgid "Start free trial" msgstr "התחלת ניסיון חינם" -#: includes/class-freemius.php:19714 +#: includes/class-freemius.php:21925 msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!" msgstr "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!" -#: includes/class-freemius.php:19723 +#: includes/class-freemius.php:21934 msgid "Learn more" msgstr "Learn more" -#: includes/class-freemius.php19873, templates/account.php406, -#: templates/account.php509, templates/connect.php171, -#: templates/connect.php421, templates/forms/license-activation.php24, -#: templates/account/partials/addon.php:235 +#: includes/class-freemius.php22120, templates/account.php499, +#: templates/account.php624, templates/connect.php171, +#: templates/connect.php421, templates/forms/license-activation.php27, +#: templates/account/partials/addon.php:321 msgid "Activate License" msgstr "הפעלת רישיון" -#: includes/class-freemius.php19874, templates/account.php469, -#: templates/account.php508, templates/account/partials/site.php:256 +#: includes/class-freemius.php22121, templates/account.php571, +#: templates/account.php623, templates/account/partials/addon.php322, +#: templates/account/partials/site.php:271 msgid "Change License" msgstr "שינוי רישיון" -#: includes/class-freemius.php19956, templates/account/partials/site.php:161 +#: includes/class-freemius.php22217, templates/account/partials/site.php:169 msgid "Opt Out" msgstr "Opt Out" -#: includes/class-freemius.php19958, includes/class-freemius.php19963, -#: templates/account/partials/site.php43, -#: templates/account/partials/site.php:161 +#: includes/class-freemius.php22219, includes/class-freemius.php22225, +#: templates/account/partials/site.php49, +#: templates/account/partials/site.php:169 msgid "Opt In" msgstr "Opt In" -#: includes/class-freemius.php:20187 -msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s" -msgstr " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s" +#: includes/class-freemius.php:22453 +msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s" +msgstr " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s" -#: includes/class-freemius.php:20195 +#: includes/class-freemius.php:22461 msgid "Activate %s features" msgstr "Activate %s features" -#: includes/class-freemius.php:20208 +#: includes/class-freemius.php:22474 msgid "Please follow these steps to complete the upgrade" msgstr "נא לבצע את הצעדים הבאים להשלמת השידרוג" -#: includes/class-freemius.php:20212 +#: includes/class-freemius.php:22478 msgid "Download the latest %s version" msgstr "הורד\\י את גרסת ה-%s העדכנית" -#: includes/class-freemius.php:20216 +#: includes/class-freemius.php:22482 msgid "Upload and activate the downloaded version" msgstr "העלה\\י והפעיל\\י את הגרסה שהורדת" -#: includes/class-freemius.php:20218 +#: includes/class-freemius.php:22484 msgid "How to upload and activate?" msgstr "איך להעלות ולהפעיל?" -#: includes/class-freemius.php:20352 +#: includes/class-freemius.php:22618 msgid "%sClick here%s to choose the sites where you'd like to activate the license on." msgstr "%sClick here%s to choose the sites where you'd like to activate the license on." -#: includes/class-freemius.php:20513 +#: includes/class-freemius.php:22779 msgid "Auto installation only works for opted-in users." msgstr "Auto installation only works for opted-in users." -#: includes/class-freemius.php20523, includes/class-freemius.php20556, -#: includes/class-fs-plugin-updater.php1060, -#: includes/class-fs-plugin-updater.php:1074 +#: includes/class-freemius.php22789, includes/class-freemius.php22822, +#: includes/class-fs-plugin-updater.php1212, +#: includes/class-fs-plugin-updater.php:1226 msgid "Invalid module ID." msgstr "מזהה המודול לא תקני." -#: includes/class-freemius.php20532, includes/class-fs-plugin-updater.php:1096 +#: includes/class-freemius.php22798, includes/class-fs-plugin-updater.php:1248 msgid "Premium version already active." msgstr "הגרסה בתשלום כבר פעילה." -#: includes/class-freemius.php:20539 +#: includes/class-freemius.php:22805 msgid "You do not have a valid license to access the premium version." msgstr "אין ברשותך רישיון בר תוקף לשימוש בגרסת הפרימיום." -#: includes/class-freemius.php:20546 +#: includes/class-freemius.php:22812 msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version." msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version." -#: includes/class-freemius.php20564, includes/class-fs-plugin-updater.php:1095 +#: includes/class-freemius.php22830, includes/class-fs-plugin-updater.php:1247 msgid "Premium add-on version already installed." msgstr "Premium add-on version already installed." -#: includes/class-freemius.php:20909 +#: includes/class-freemius.php:23180 msgid "View paid features" msgstr "צפה בפיטצ'רים שבתשלום" -#: includes/class-freemius.php:21229 +#: includes/class-freemius.php:23502 msgid "Thank you so much for using %s and its add-ons!" msgstr "Thank you so much for using %s and its add-ons!" -#: includes/class-freemius.php:21230 +#: includes/class-freemius.php:23503 msgid "Thank you so much for using %s!" msgstr "אנו מודים לך על היותך כמשתמש של %s!" -#: includes/class-freemius.php:21236 +#: includes/class-freemius.php:23509 msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s." msgstr "You've already opted-in to our usage-tracking, which helps us keep improving the %s." -#: includes/class-freemius.php:21240 +#: includes/class-freemius.php:23513 msgid "Thank you so much for using our products!" msgstr "אנו מודים לך על השימוש במוצרים שלנו!" -#: includes/class-freemius.php:21241 +#: includes/class-freemius.php:23514 msgid "You've already opted-in to our usage-tracking, which helps us keep improving them." msgstr "You've already opted-in to our usage-tracking, which helps us keep improving them." -#: includes/class-freemius.php:21260 +#: includes/class-freemius.php:23533 msgid "%s and its add-ons" msgstr "%s and its add-ons" -#: includes/class-freemius.php:21269 +#: includes/class-freemius.php:23542 msgid "Products" msgstr "מוצרים" -#: includes/class-freemius.php21276, templates/connect.php:272 +#: includes/class-freemius.php23549, templates/connect.php:272 msgid "Yes" msgstr "כן" -#: includes/class-freemius.php21277, templates/connect.php:273 +#: includes/class-freemius.php23550, templates/connect.php:273 msgid "send me security & feature updates, educational content and offers." msgstr "תשלחו לי עדכוני אבטחה ופיטצ'רים, תוכן חינוכי, ומידע אודות מבצעים." -#: includes/class-freemius.php21278, templates/connect.php:278 +#: includes/class-freemius.php23551, templates/connect.php:278 msgid "No" msgstr "לא" -#: includes/class-freemius.php21280, templates/connect.php:280 +#: includes/class-freemius.php23553, templates/connect.php:280 msgid "do %sNOT%s send me security & feature updates, educational content and offers." msgstr "%sאל%2$s תשלחו לי עדכוני אבטחה, פיטצ'רים, תוכן חינוכי, ומידע על מבצעים." -#: includes/class-freemius.php:21290 -msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂" -msgstr "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂" +#: includes/class-freemius.php:23563 +msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard :-)" +msgstr "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard :-)" -#: includes/class-freemius.php21292, templates/connect.php:287 +#: includes/class-freemius.php23565, templates/connect.php:287 msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:" msgstr "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:" -#: includes/class-freemius.php:21574 +#: includes/class-freemius.php:23847 msgid "License key is empty." msgstr "מפתח הרישיון ריק." -#: includes/class-fs-plugin-updater.php184, +#: includes/class-fs-plugin-updater.php206, #: templates/forms/premium-versions-upgrade-handler.php:57 msgid "Renew license" msgstr "חידוש רישיון" -#: includes/class-fs-plugin-updater.php189, +#: includes/class-fs-plugin-updater.php211, #: templates/forms/premium-versions-upgrade-handler.php:58 msgid "Buy license" msgstr "Buy license" -#: includes/class-fs-plugin-updater.php:278 +#: includes/class-fs-plugin-updater.php321, +#: includes/class-fs-plugin-updater.php:354 msgid "There is a %s of %s available." msgstr "There is a %s of %s available." -#: includes/class-fs-plugin-updater.php:282 +#: includes/class-fs-plugin-updater.php323, +#: includes/class-fs-plugin-updater.php:359 +msgid "new Beta version" +msgstr "new Beta version" + +#: includes/class-fs-plugin-updater.php324, +#: includes/class-fs-plugin-updater.php:360 msgid "new version" msgstr "new version" -#: includes/class-fs-plugin-updater.php:305 +#: includes/class-fs-plugin-updater.php:383 msgid "Important Upgrade Notice:" msgstr "Important Upgrade Notice:" -#: includes/class-fs-plugin-updater.php:1125 +#: includes/class-fs-plugin-updater.php:1277 msgid "Installing plugin: %s" msgstr "Installing plugin: %s" -#: includes/class-fs-plugin-updater.php:1166 +#: includes/class-fs-plugin-updater.php:1318 msgid "Unable to connect to the filesystem. Please confirm your credentials." msgstr "Unable to connect to the filesystem. Please confirm your credentials." -#: includes/class-fs-plugin-updater.php:1348 +#: includes/class-fs-plugin-updater.php:1500 msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work." msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work." -#: includes/fs-plugin-info-dialog.php369, -#: templates/account/partials/addon.php:292 +#: includes/fs-plugin-info-dialog.php:535 +msgid "Purchase More" +msgstr "Purchase More" + +#: includes/fs-plugin-info-dialog.php536, +#: templates/account/partials/addon.php:385 msgctxt "verb" msgid "Purchase" msgstr "רכישה" -#: includes/fs-plugin-info-dialog.php:372 +#: includes/fs-plugin-info-dialog.php:540 msgid "Start my free %s" msgstr "התחל את %s הניסיון שלי" -#: includes/fs-plugin-info-dialog.php:413 +#: includes/fs-plugin-info-dialog.php:738 +msgid "Install Free Version Update Now" +msgstr "התקן עדכון גרסה חינאמית עכשיו" + +#: includes/fs-plugin-info-dialog.php739, templates/account.php:560 +msgid "Install Update Now" +msgstr "התקן עדכון במיידי" + +#: includes/fs-plugin-info-dialog.php:748 msgid "Install Free Version Now" msgstr "התקן גרסה חינאמית עכשיו" -#: includes/fs-plugin-info-dialog.php414, templates/auto-installation.php111, -#: templates/account/partials/addon.php272, -#: templates/account/partials/addon.php:322 +#: includes/fs-plugin-info-dialog.php749, templates/add-ons.php323, +#: templates/auto-installation.php111, +#: templates/account/partials/addon.php365, +#: templates/account/partials/addon.php:418 msgid "Install Now" msgstr "התקן עכשיו" -#: includes/fs-plugin-info-dialog.php:425 +#: includes/fs-plugin-info-dialog.php:765 msgctxt "as download latest version" msgid "Download Latest Free Version" msgstr "Download Latest Free Version" -#: includes/fs-plugin-info-dialog.php426, templates/account.php80, -#: templates/account/partials/addon.php:21 +#: includes/fs-plugin-info-dialog.php766, templates/account.php91, +#: templates/add-ons.php37, templates/account/partials/addon.php:25 msgctxt "as download latest version" msgid "Download Latest" msgstr "הורד גרסה אחרונה" -#: includes/fs-plugin-info-dialog.php:436 -msgid "Install Free Version Update Now" -msgstr "התקן עדכון גרסה חינאמית עכשיו" - -#: includes/fs-plugin-info-dialog.php437, templates/account.php:460 -msgid "Install Update Now" -msgstr "התקן עדכון במיידי" - -#: includes/fs-plugin-info-dialog.php:448 -msgid "Newer Free Version (%s) Installed" -msgstr "Newer Free Version (%s) Installed" - -#: includes/fs-plugin-info-dialog.php:449 -msgid "Newer Version (%s) Installed" -msgstr "גרסה חדשה (%s) הותקנה" +#: includes/fs-plugin-info-dialog.php781, templates/add-ons.php329, +#: templates/account/partials/addon.php356, +#: templates/account/partials/addon.php:412 +msgid "Activate this add-on" +msgstr "הפעל את ההרחבה" -#: includes/fs-plugin-info-dialog.php:457 -msgid "Latest Free Version Installed" -msgstr "גרסה חינאמית עדכנית הותקנה" +#: includes/fs-plugin-info-dialog.php783, templates/connect.php:418 +msgid "Activate Free Version" +msgstr "הפעלת גירסה חינאמית" -#: includes/fs-plugin-info-dialog.php:458 -msgid "Latest Version Installed" -msgstr "הגרסה האחרונה הותקנה" +#: includes/fs-plugin-info-dialog.php784, templates/account.php115, +#: templates/add-ons.php330, templates/account/partials/addon.php:48 +msgid "Activate" +msgstr "הפעלה" -#: includes/fs-plugin-info-dialog.php:613 +#: includes/fs-plugin-info-dialog.php:994 msgctxt "Plugin installer section title" msgid "Description" msgstr "תיאור" -#: includes/fs-plugin-info-dialog.php:614 +#: includes/fs-plugin-info-dialog.php:995 msgctxt "Plugin installer section title" msgid "Installation" msgstr "התקנה" -#: includes/fs-plugin-info-dialog.php:615 +#: includes/fs-plugin-info-dialog.php:996 msgctxt "Plugin installer section title" msgid "FAQ" msgstr "שאלות נפוצות" -#: includes/fs-plugin-info-dialog.php616, +#: includes/fs-plugin-info-dialog.php997, #: templates/plugin-info/description.php:55 msgid "Screenshots" msgstr "צילומי מסך" -#: includes/fs-plugin-info-dialog.php:617 +#: includes/fs-plugin-info-dialog.php:998 msgctxt "Plugin installer section title" msgid "Changelog" msgstr "לוג שינויים" -#: includes/fs-plugin-info-dialog.php:618 +#: includes/fs-plugin-info-dialog.php:999 msgctxt "Plugin installer section title" msgid "Reviews" msgstr "ביקורות" -#: includes/fs-plugin-info-dialog.php:619 +#: includes/fs-plugin-info-dialog.php:1000 msgctxt "Plugin installer section title" msgid "Other Notes" msgstr "היערות נוספות" -#: includes/fs-plugin-info-dialog.php:634 +#: includes/fs-plugin-info-dialog.php:1015 msgctxt "Plugin installer section title" msgid "Features & Pricing" msgstr "פיטצ'רים ומחירים" -#: includes/fs-plugin-info-dialog.php:644 +#: includes/fs-plugin-info-dialog.php:1025 msgid "Plugin Install" msgstr "התקנת תוסף" -#: includes/fs-plugin-info-dialog.php:716 +#: includes/fs-plugin-info-dialog.php:1097 msgctxt "e.g. Professional Plan" msgid "%s Plan" msgstr "חבילה %s" -#: includes/fs-plugin-info-dialog.php:742 +#: includes/fs-plugin-info-dialog.php:1123 msgctxt "e.g. the best product" msgid "Best" msgstr "הכי טוב" -#: includes/fs-plugin-info-dialog.php748, -#: includes/fs-plugin-info-dialog.php:768 +#: includes/fs-plugin-info-dialog.php1129, +#: includes/fs-plugin-info-dialog.php:1149 msgctxt "as every month" msgid "Monthly" msgstr "חודשי" -#: includes/fs-plugin-info-dialog.php:751 +#: includes/fs-plugin-info-dialog.php:1132 msgctxt "as once a year" msgid "Annual" msgstr "שנתי" -#: includes/fs-plugin-info-dialog.php:754 +#: includes/fs-plugin-info-dialog.php:1135 msgid "Lifetime" msgstr "לכל החיים" -#: includes/fs-plugin-info-dialog.php768, -#: includes/fs-plugin-info-dialog.php770, -#: includes/fs-plugin-info-dialog.php:772 +#: includes/fs-plugin-info-dialog.php1149, +#: includes/fs-plugin-info-dialog.php1151, +#: includes/fs-plugin-info-dialog.php:1153 msgctxt "e.g. billed monthly" msgid "Billed %s" msgstr "מחוייב על בסיס %s" -#: includes/fs-plugin-info-dialog.php:770 +#: includes/fs-plugin-info-dialog.php:1151 msgctxt "as once a year" msgid "Annually" msgstr "שנתי" -#: includes/fs-plugin-info-dialog.php:772 +#: includes/fs-plugin-info-dialog.php:1153 msgctxt "as once a year" msgid "Once" msgstr "פעם אחת" -#: includes/fs-plugin-info-dialog.php:778 +#: includes/fs-plugin-info-dialog.php:1159 msgid "Single Site License" msgstr "רשיון לאתר אחד" -#: includes/fs-plugin-info-dialog.php:780 +#: includes/fs-plugin-info-dialog.php:1161 msgid "Unlimited Licenses" msgstr "רשיונות ללא הגבלה" -#: includes/fs-plugin-info-dialog.php:782 +#: includes/fs-plugin-info-dialog.php:1163 msgid "Up to %s Sites" msgstr "עד %s אתרים" -#: includes/fs-plugin-info-dialog.php792, +#: includes/fs-plugin-info-dialog.php1173, #: templates/plugin-info/features.php:82 msgctxt "as monthly period" msgid "mo" msgstr "חודשים" -#: includes/fs-plugin-info-dialog.php799, +#: includes/fs-plugin-info-dialog.php1180, #: templates/plugin-info/features.php:80 msgctxt "as annual period" msgid "year" msgstr "שנה" -#: includes/fs-plugin-info-dialog.php:853 +#: includes/fs-plugin-info-dialog.php:1234 msgctxt "noun" msgid "Price" msgstr "מחיר" -#: includes/fs-plugin-info-dialog.php:901 +#: includes/fs-plugin-info-dialog.php:1282 msgid "Save %s" msgstr "שמירת %s" -#: includes/fs-plugin-info-dialog.php:911 +#: includes/fs-plugin-info-dialog.php:1292 msgid "No commitment for %s - cancel anytime" msgstr "No commitment for %s - cancel anytime" -#: includes/fs-plugin-info-dialog.php:914 +#: includes/fs-plugin-info-dialog.php:1295 msgid "After your free %s, pay as little as %s" msgstr "After your free %s, pay as little as %s" -#: includes/fs-plugin-info-dialog.php:925 +#: includes/fs-plugin-info-dialog.php:1306 msgid "Details" msgstr "פרטים" -#: includes/fs-plugin-info-dialog.php929, templates/account.php91, -#: templates/debug.php201, templates/debug.php238, templates/debug.php452, -#: templates/account/partials/addon.php:32 +#: includes/fs-plugin-info-dialog.php1310, templates/account.php102, +#: templates/debug.php203, templates/debug.php240, templates/debug.php457, +#: templates/account/partials/addon.php:36 msgctxt "product version" msgid "Version" msgstr "גרסה" -#: includes/fs-plugin-info-dialog.php:936 +#: includes/fs-plugin-info-dialog.php:1317 msgctxt "as the plugin author" msgid "Author" msgstr "Author" -#: includes/fs-plugin-info-dialog.php:943 +#: includes/fs-plugin-info-dialog.php:1324 msgid "Last Updated" msgstr "עודכן לאחרונה" -#: includes/fs-plugin-info-dialog.php948, templates/account.php:376 +#: includes/fs-plugin-info-dialog.php1329, templates/account.php:468 msgctxt "x-ago" msgid "%s ago" msgstr "לפני %s" -#: includes/fs-plugin-info-dialog.php:957 +#: includes/fs-plugin-info-dialog.php:1338 msgid "Requires WordPress Version" msgstr "Requires WordPress Version" -#: includes/fs-plugin-info-dialog.php:958 +#: includes/fs-plugin-info-dialog.php:1339 msgid "%s or higher" msgstr "%s ומעלה" -#: includes/fs-plugin-info-dialog.php:965 +#: includes/fs-plugin-info-dialog.php:1346 msgid "Compatible up to" msgstr "Compatible up to" -#: includes/fs-plugin-info-dialog.php:973 +#: includes/fs-plugin-info-dialog.php:1354 msgid "Downloaded" msgstr "Downloaded" -#: includes/fs-plugin-info-dialog.php:977 +#: includes/fs-plugin-info-dialog.php:1358 msgid "%s time" msgstr "פעם %s" -#: includes/fs-plugin-info-dialog.php:979 +#: includes/fs-plugin-info-dialog.php:1360 msgid "%s times" msgstr "%s פעמים" -#: includes/fs-plugin-info-dialog.php:989 +#: includes/fs-plugin-info-dialog.php:1370 msgid "WordPress.org Plugin Page" msgstr "WordPress.org Plugin Page" -#: includes/fs-plugin-info-dialog.php:997 +#: includes/fs-plugin-info-dialog.php:1378 msgid "Plugin Homepage" msgstr "עמוד התוסף" -#: includes/fs-plugin-info-dialog.php1005, -#: includes/fs-plugin-info-dialog.php:1087 +#: includes/fs-plugin-info-dialog.php1386, +#: includes/fs-plugin-info-dialog.php:1468 msgid "Donate to this plugin" msgstr "תרום לתוסף" -#: includes/fs-plugin-info-dialog.php:1012 +#: includes/fs-plugin-info-dialog.php:1393 msgid "Average Rating" msgstr "דירוג ממוצע" -#: includes/fs-plugin-info-dialog.php:1019 +#: includes/fs-plugin-info-dialog.php:1400 msgid "based on %s" msgstr "מבוסס על %s" -#: includes/fs-plugin-info-dialog.php:1023 +#: includes/fs-plugin-info-dialog.php:1404 msgid "%s rating" msgstr "דרוג %s" -#: includes/fs-plugin-info-dialog.php:1025 +#: includes/fs-plugin-info-dialog.php:1406 msgid "%s ratings" msgstr "%s דרוגים" -#: includes/fs-plugin-info-dialog.php:1040 +#: includes/fs-plugin-info-dialog.php:1421 msgid "%s star" msgstr "כוכב %s" -#: includes/fs-plugin-info-dialog.php:1042 +#: includes/fs-plugin-info-dialog.php:1423 msgid "%s stars" msgstr "%s כוכבים" -#: includes/fs-plugin-info-dialog.php:1053 +#: includes/fs-plugin-info-dialog.php:1434 msgid "Click to see reviews that provided a rating of %s" msgstr "Click to see reviews that provided a rating of %s" -#: includes/fs-plugin-info-dialog.php:1066 +#: includes/fs-plugin-info-dialog.php:1447 msgid "Contributors" msgstr "תורמים" -#: includes/fs-plugin-info-dialog.php1095, -#: includes/fs-plugin-info-dialog.php:1097 +#: includes/fs-plugin-info-dialog.php1476, +#: includes/fs-plugin-info-dialog.php:1478 msgid "Warning" msgstr "Warning" -#: includes/fs-plugin-info-dialog.php:1095 +#: includes/fs-plugin-info-dialog.php:1476 msgid "This plugin has not been tested with your current version of WordPress." msgstr "תוסף זה לא נבדק עם גרסת הוורדפרס שלך." -#: includes/fs-plugin-info-dialog.php:1097 +#: includes/fs-plugin-info-dialog.php:1478 msgid "This plugin has not been marked as compatible with your version of WordPress." msgstr "התוסף לא סומן כתואם לגרסת הוורדפרס שלך." -#: includes/fs-plugin-info-dialog.php:1116 +#: includes/fs-plugin-info-dialog.php:1497 msgid "Paid add-on must be deployed to Freemius." msgstr "Paid add-on must be deployed to Freemius." -#: includes/fs-plugin-info-dialog.php:1117 +#: includes/fs-plugin-info-dialog.php:1498 msgid "Add-on must be deployed to WordPress.org or Freemius." msgstr "Add-on must be deployed to WordPress.org or Freemius." -#: templates/account.php81, templates/forms/subscription-cancellation.php96, -#: templates/account/partials/addon.php22, -#: templates/account/partials/site.php:295 +#: includes/fs-plugin-info-dialog.php:1519 +msgid "Newer Version (%s) Installed" +msgstr "גרסה חדשה (%s) הותקנה" + +#: includes/fs-plugin-info-dialog.php:1520 +msgid "Newer Free Version (%s) Installed" +msgstr "Newer Free Version (%s) Installed" + +#: includes/fs-plugin-info-dialog.php:1527 +msgid "Latest Version Installed" +msgstr "הגרסה האחרונה הותקנה" + +#: includes/fs-plugin-info-dialog.php:1528 +msgid "Latest Free Version Installed" +msgstr "גרסה חינאמית עדכנית הותקנה" + +#: templates/account.php92, templates/forms/subscription-cancellation.php96, +#: templates/account/partials/addon.php26, +#: templates/account/partials/site.php:311 msgid "Downgrading your plan" msgstr "Downgrading your plan" -#: templates/account.php82, templates/forms/subscription-cancellation.php97, -#: templates/account/partials/addon.php23, -#: templates/account/partials/site.php:296 +#: templates/account.php93, templates/forms/subscription-cancellation.php97, +#: templates/account/partials/addon.php27, +#: templates/account/partials/site.php:312 msgid "Cancelling the subscription" msgstr "Cancelling the subscription" -#. translators: %1s: Either 'Downgrading your plan' or 'Cancelling the +#. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the #. subscription' -#: templates/account.php84, templates/forms/subscription-cancellation.php99, -#: templates/account/partials/addon.php25, -#: templates/account/partials/site.php:298 -msgid "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s." -msgstr "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s." - -#: templates/account.php85, templates/forms/subscription-cancellation.php100, -#: templates/account/partials/addon.php26, -#: templates/account/partials/site.php:299 +#: templates/account.php95, templates/forms/subscription-cancellation.php99, +#: templates/account/partials/site.php:314 +msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s." +msgstr "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s." + +#: templates/account.php96, templates/forms/subscription-cancellation.php100, +#: templates/account/partials/addon.php30, +#: templates/account/partials/site.php:315 msgid "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price." msgstr "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price." -#: templates/account.php86, templates/forms/subscription-cancellation.php106, -#: templates/account/partials/addon.php:27 +#: templates/account.php97, templates/forms/subscription-cancellation.php106, +#: templates/account/partials/addon.php:31 msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?" msgstr "ביטול הניסיון יחסום מייד את הפיטצ'רים שהינם בתשלום. האם ברצונך בכל זאת להמשיך?" -#: templates/account.php87, templates/forms/subscription-cancellation.php101, -#: templates/account/partials/addon.php28, -#: templates/account/partials/site.php:300 +#: templates/account.php98, templates/forms/subscription-cancellation.php101, +#: templates/account/partials/addon.php32, +#: templates/account/partials/site.php:316 msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support." msgstr "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support." -#: templates/account.php88, templates/forms/subscription-cancellation.php102, -#: templates/account/partials/addon.php29, -#: templates/account/partials/site.php:301 +#: templates/account.php99, templates/forms/subscription-cancellation.php102, +#: templates/account/partials/addon.php33, +#: templates/account/partials/site.php:317 msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features." msgstr "Once your license expires you can still use the Free version but you will NOT have access to the %s features." #. translators: %s: Plan title (e.g. "Professional") -#: templates/account.php90, +#: templates/account.php101, #: templates/account/partials/activate-license-button.php31, -#: templates/account/partials/addon.php:31 +#: templates/account/partials/addon.php:35 msgid "Activate %s Plan" msgstr "הפעל חבילה %s" #. translators: %s: Time period (e.g. Auto renews in "2 months") -#: templates/account.php93, templates/account/partials/addon.php34, -#: templates/account/partials/site.php:275 +#: templates/account.php104, templates/account/partials/addon.php38, +#: templates/account/partials/site.php:291 msgid "Auto renews in %s" msgstr "עדכן אוטומטית בעוד %s" #. translators: %s: Time period (e.g. Expires in "2 months") -#: templates/account.php95, templates/account/partials/addon.php36, -#: templates/account/partials/site.php:277 +#: templates/account.php106, templates/account/partials/addon.php40, +#: templates/account/partials/site.php:293 msgid "Expires in %s" msgstr "פג תוקף בעוד %s" -#: templates/account.php96, templates/account/partials/addon.php:37 +#: templates/account.php:107 msgctxt "as synchronize license" msgid "Sync License" msgstr "סינכרן רישיון" -#: templates/account.php97, templates/account/partials/addon.php:38 +#: templates/account.php108, templates/account/partials/addon.php:41 msgid "Cancel Trial" msgstr "ביט" -#: templates/account.php98, templates/account/partials/addon.php:39 +#: templates/account.php109, templates/account/partials/addon.php:42 msgid "Change Plan" msgstr "שינוי חבילה" -#: templates/account.php99, templates/account/partials/addon.php:40 +#: templates/account.php110, templates/account/partials/addon.php:43 msgctxt "verb" msgid "Upgrade" msgstr "שדרג" -#: templates/account.php101, templates/account/partials/addon.php42, -#: templates/account/partials/site.php:302 +#: templates/account.php112, templates/account/partials/addon.php45, +#: templates/account/partials/site.php:318 msgctxt "verb" msgid "Downgrade" msgstr "שנמך" -#: templates/account.php103, templates/add-ons.php130, +#: templates/account.php114, templates/add-ons.php246, #: templates/plugin-info/features.php72, -#: templates/account/partials/addon.php44, -#: templates/account/partials/site.php:31 +#: templates/account/partials/addon.php47, +#: templates/account/partials/site.php:33 msgid "Free" msgstr "חינם" -#: templates/account.php104, templates/account/partials/addon.php:45 -msgid "Activate" -msgstr "הפעלה" - -#: templates/account.php105, templates/debug.php371, -#: includes/customizer/class-fs-customizer-upsell-control.php106, -#: templates/account/partials/addon.php:46 +#: templates/account.php116, templates/debug.php373, +#: includes/customizer/class-fs-customizer-upsell-control.php110, +#: templates/account/partials/addon.php:49 msgctxt "as product pricing plan" msgid "Plan" msgstr "חבילה" -#: templates/account.php:158 +#: templates/account.php:117 +msgid "Bundle Plan" +msgstr "Bundle Plan" + +#: templates/account.php:191 msgid "Free Trial" msgstr "ניסיון חינם" -#: templates/account.php:169 +#: templates/account.php:202 msgid "Account Details" msgstr "פרטי חשבון" -#: templates/account.php:179 +#: templates/account.php209, templates/forms/data-debug-mode.php:33 +msgid "Start Debug" +msgstr "Start Debug" + +#: templates/account.php:211 +msgid "Stop Debug" +msgstr "Stop Debug" + +#: templates/account.php:218 +msgid "Billing & Invoices" +msgstr "Billing & Invoices" + +#: templates/account.php:229 msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?" msgstr "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?" -#: templates/account.php:181 +#: templates/account.php:231 msgid "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?" msgstr "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?" -#: templates/account.php:184 +#: templates/account.php:234 msgid "Delete Account" msgstr "מחיקת חשבון" -#: templates/account.php196, templates/account/partials/addon.php159, +#: templates/account.php246, templates/account/partials/addon.php231, #: templates/account/partials/deactivate-license-button.php:35 msgid "Deactivate License" msgstr "שיחרור רישיון" -#: templates/account.php219, templates/forms/subscription-cancellation.php:125 +#: templates/account.php269, templates/forms/subscription-cancellation.php:125 msgid "Are you sure you want to proceed?" msgstr "האם את/ה בטוח רוצה להמשיך?" -#: templates/account.php219, templates/account/partials/addon.php:182 +#: templates/account.php269, templates/account/partials/addon.php:255 msgid "Cancel Subscription" msgstr "בטל מנוי" -#: templates/account.php:247 +#: templates/account.php298, templates/account/partials/addon.php:340 msgctxt "as synchronize" msgid "Sync" msgstr "סינכרון" -#: templates/account.php261, templates/debug.php:487 +#: templates/account.php313, templates/debug.php:507 msgid "Name" msgstr "שם" -#: templates/account.php267, templates/debug.php:488 +#: templates/account.php319, templates/debug.php:508 msgid "Email" msgstr "דוא\"ל" -#: templates/account.php274, templates/debug.php370, templates/debug.php:526 +#: templates/account.php326, templates/debug.php371, templates/debug.php:557 msgid "User ID" msgstr "מזהה משתמש" -#: templates/account.php:282 +#: templates/account.php344, templates/account.php637, +#: templates/account.php682, templates/debug.php238, templates/debug.php365, +#: templates/debug.php454, templates/debug.php506, templates/debug.php555, +#: templates/debug.php632, templates/account/payments.php35, +#: templates/debug/logger.php:21 +msgid "ID" +msgstr "מזהה" + +#: templates/account.php:351 msgid "Site ID" msgstr "מזהה אתר" -#: templates/account.php:285 +#: templates/account.php:354 msgid "No ID" msgstr "אין מזהה" -#: templates/account.php290, templates/debug.php243, templates/debug.php372, -#: templates/debug.php453, templates/debug.php490, -#: templates/account/partials/site.php:219 +#: templates/account.php359, templates/debug.php245, templates/debug.php374, +#: templates/debug.php458, templates/debug.php510, +#: templates/account/partials/site.php:227 msgid "Public Key" msgstr "מפתח פומבי" -#: templates/account.php296, templates/debug.php373, templates/debug.php454, -#: templates/debug.php491, templates/account/partials/site.php:231 +#: templates/account.php365, templates/debug.php375, templates/debug.php459, +#: templates/debug.php511, templates/account/partials/site.php:239 msgid "Secret Key" msgstr "מפתח סודי" -#: templates/account.php:299 +#: templates/account.php:368 msgctxt "as secret encryption key missing" msgid "No Secret" msgstr "אין מפתח סודי" -#: templates/account.php318, templates/account/partials/site.php112, -#: templates/account/partials/site.php:114 +#: templates/account.php395, templates/account/partials/site.php120, +#: templates/account/partials/site.php:122 msgid "Trial" msgstr "ניסיון" -#: templates/account.php337, templates/debug.php531, -#: templates/account/partials/site.php:248 +#: templates/account.php422, templates/debug.php562, +#: templates/account/partials/site.php:260 msgid "License Key" msgstr "License Key" -#: templates/account.php:367 +#: templates/account.php:453 +msgid "Join the Beta program" +msgstr "Join the Beta program" + +#: templates/account.php:459 msgid "not verified" msgstr "לא מאומת" -#: templates/account.php376, templates/account/partials/addon.php:120 +#: templates/account.php468, templates/account/partials/addon.php:190 msgid "Expired" msgstr "פג תוקף" -#: templates/account.php:428 +#: templates/account.php:528 msgid "Premium version" msgstr "גירסת פרימיום" -#: templates/account.php:430 +#: templates/account.php:530 msgid "Free version" msgstr "גירסה חינאמית" -#: templates/account.php:442 +#: templates/account.php:542 msgid "Verify Email" msgstr "אמת כתובת דוא\"ל" -#: templates/account.php:453 +#: templates/account.php:553 msgid "Download %s Version" msgstr "הורד גרסת %s" -#: templates/account.php467, templates/account.php649, -#: templates/account/partials/site.php237, -#: templates/account/partials/site.php:255 +#: templates/account.php568, templates/account.php820, +#: templates/account/partials/site.php248, +#: templates/account/partials/site.php:270 msgctxt "verb" msgid "Show" msgstr "הצג" -#: templates/account.php:481 +#: templates/account.php:583 msgid "What is your %s?" msgstr "מה ה%s שלך?" -#: templates/account.php489, templates/account/billing.php:27 +#: templates/account.php591, templates/account/billing.php:21 msgctxt "verb" msgid "Edit" msgstr "ערוך" -#: templates/account.php:502 +#: templates/account.php:616 msgid "Sites" msgstr "אתרים" -#: templates/account.php:513 +#: templates/account.php:629 msgid "Search by address" msgstr "חפש לפי כתובת" -#: templates/account.php522, templates/account.php570, templates/debug.php236, -#: templates/debug.php364, templates/debug.php449, templates/debug.php486, -#: templates/debug.php524, templates/debug.php597, -#: templates/account/payments.php35, templates/debug/logger.php:21 -msgid "ID" -msgstr "מזהה" - -#: templates/account.php523, templates/debug.php:367 +#: templates/account.php638, templates/debug.php:368 msgid "Address" msgstr "כתובת" -#: templates/account.php:524 +#: templates/account.php:639 msgid "License" msgstr "רישיון" -#: templates/account.php:525 +#: templates/account.php:640 msgid "Plan" msgstr "חבילה" -#: templates/account.php:573 +#: templates/account.php:685 msgctxt "as software license" msgid "License" msgstr "רישיון" -#: templates/account.php:643 +#: templates/account.php:814 msgctxt "verb" msgid "Hide" msgstr "הסתר" -#: templates/account.php:686 +#: templates/account.php836, templates/forms/data-debug-mode.php:31 +msgid "Processing" +msgstr "Processing" + +#: templates/account.php:839 +msgid "Get updates for bleeding edge Beta versions of %s." +msgstr "Get updates for bleeding edge Beta versions of %s." + +#: templates/account.php:897 msgid "Cancelling %s" msgstr "Cancelling %s" -#: templates/account.php686, templates/account.php703, +#: templates/account.php897, templates/account.php914, #: templates/forms/subscription-cancellation.php27, -#: templates/forms/deactivation/form.php:117 +#: templates/forms/deactivation/form.php:133 msgid "trial" msgstr "trial" -#: templates/account.php701, templates/forms/deactivation/form.php:134 +#: templates/account.php912, templates/forms/deactivation/form.php:150 msgid "Cancelling %s..." msgstr "Cancelling %s..." -#: templates/account.php704, templates/forms/subscription-cancellation.php28, -#: templates/forms/deactivation/form.php:118 +#: templates/account.php915, templates/forms/subscription-cancellation.php28, +#: templates/forms/deactivation/form.php:134 msgid "subscription" msgstr "subscription" -#: templates/account.php:718 +#: templates/account.php:929 msgid "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?" msgstr "ביטול הרישיון יחסום את כל הפיטצ'רים שבתשלום אך יאפשר להפעיל את הרישיון על אתר אחר. האם תרצו להמשיך בכל זאת?" -#: templates/add-ons.php:36 +#: templates/add-ons.php:38 +msgid "View details" +msgstr "פרטים נוספים" + +#: templates/add-ons.php:48 msgid "Add Ons for %s" msgstr "הרחבות עבור %s" -#: templates/add-ons.php:44 -msgid "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." -msgstr "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." +#: templates/add-ons.php:58 +msgid "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." +msgstr "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." -#: templates/add-ons.php:139 -msgid "View details" -msgstr "פרטים נוספים" +#: templates/add-ons.php:229 +msgctxt "active add-on" +msgid "Active" +msgstr "Active" + +#: templates/add-ons.php:230 +msgctxt "installed add-on" +msgid "Installed" +msgstr "Installed" -#: templates/admin-notice.php13, templates/forms/license-activation.php208, +#: templates/admin-notice.php13, templates/forms/license-activation.php207, #: templates/forms/resend-key.php:77 msgctxt "as close a window" msgid "Dismiss" @@ -1448,11 +1539,11 @@ msgstr "תהליך ההתקנה התחיל ויכול לקחת מספר דקות msgid "Cancel Installation" msgstr "בטל התקנה" -#: templates/checkout.php:172 +#: templates/checkout.php:180 msgid "Checkout" msgstr "Checkout" -#: templates/checkout.php:172 +#: templates/checkout.php:180 msgid "PCI compliant" msgstr "עומד בתקן PCI" @@ -1474,7 +1565,7 @@ msgstr "שליחה חוזרת של מייל האקטיבציה" msgid "Thanks %s!" msgstr "תודה %s!" -#: templates/connect.php172, templates/forms/license-activation.php:43 +#: templates/connect.php172, templates/forms/license-activation.php:46 msgid "Agree & Activate License" msgstr "הסכמה והפעלת רישיון" @@ -1522,15 +1613,16 @@ msgstr "Alternatively, you can skip it for now and activate the license later, i msgid "During the update process we detected %s site(s) in the network that are still pending your attention." msgstr "During the update process we detected %s site(s) in the network that are still pending your attention." -#: templates/connect.php253, templates/forms/license-activation.php:46 +#: templates/connect.php253, templates/forms/data-debug-mode.php35, +#: templates/forms/license-activation.php:49 msgid "License key" msgstr "מפתח רישיון" -#: templates/connect.php256, templates/forms/license-activation.php:19 +#: templates/connect.php256, templates/forms/license-activation.php:22 msgid "Can't find your license key?" msgstr "האם אינך מוצא את מפתח הרישיון?" -#: templates/connect.php315, templates/connect.php630, +#: templates/connect.php315, templates/connect.php652, #: templates/forms/deactivation/retry-skip.php:20 msgctxt "verb" msgid "Skip" @@ -1580,7 +1672,7 @@ msgstr "הפעלה, כיבוי והסרה" msgid "Newsletter" msgstr "ניוסלטר" -#: templates/connect.php391, templates/forms/license-activation.php:38 +#: templates/connect.php391, templates/forms/license-activation.php:41 msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license." msgstr "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license." @@ -1592,10 +1684,6 @@ msgstr "מהן ההרשאות המוענקות?" msgid "Don't have a license key?" msgstr "האם אין ברשותך מפתח רישיון?" -#: templates/connect.php:418 -msgid "Activate Free Version" -msgstr "הפעלת גירסה חינאמית" - #: templates/connect.php:420 msgid "Have a license key?" msgstr "האם ברשותך רישיון?" @@ -1612,12 +1700,12 @@ msgstr "License Agreement" msgid "Terms of Service" msgstr "תנאי השירות" -#: templates/connect.php:766 +#: templates/connect.php:805 msgctxt "as in the process of sending an email" msgid "Sending email" msgstr "שולח דוא\"ל" -#: templates/connect.php:767 +#: templates/connect.php:806 msgctxt "as activating plugin" msgid "Activating" msgstr "מפעיל" @@ -1645,8 +1733,8 @@ msgctxt "as code debugging" msgid "Debugging" msgstr "דיבוג" -#: templates/debug.php54, templates/debug.php248, templates/debug.php374, -#: templates/debug.php:492 +#: templates/debug.php54, templates/debug.php250, templates/debug.php376, +#: templates/debug.php:512 msgid "Actions" msgstr "פעולות" @@ -1682,191 +1770,195 @@ msgstr "Load DB Option" msgid "Set DB Option" msgstr "Set DB Option" -#: templates/debug.php:180 +#: templates/debug.php:182 msgid "Key" msgstr "Key" -#: templates/debug.php:181 +#: templates/debug.php:183 msgid "Value" msgstr "Value" -#: templates/debug.php:197 +#: templates/debug.php:199 msgctxt "as software development kit versions" msgid "SDK Versions" msgstr "גרסאות SDK" -#: templates/debug.php:202 +#: templates/debug.php:204 msgid "SDK Path" msgstr "מיקום SDK" -#: templates/debug.php203, templates/debug.php:242 +#: templates/debug.php205, templates/debug.php:244 msgid "Module Path" msgstr "Module Path" -#: templates/debug.php:204 +#: templates/debug.php:206 msgid "Is Active" msgstr "האם פעיל" -#: templates/debug.php232, templates/debug/plugins-themes-sync.php:35 +#: templates/debug.php234, templates/debug/plugins-themes-sync.php:35 msgid "Plugins" msgstr "תוספים" -#: templates/debug.php232, templates/debug/plugins-themes-sync.php:56 +#: templates/debug.php234, templates/debug/plugins-themes-sync.php:56 msgid "Themes" msgstr "תבניות" -#: templates/debug.php237, templates/debug.php369, templates/debug.php451, +#: templates/debug.php239, templates/debug.php370, templates/debug.php456, #: templates/debug/scheduled-crons.php:80 msgid "Slug" msgstr "מזהה כתובת" -#: templates/debug.php239, templates/debug.php:450 +#: templates/debug.php241, templates/debug.php:455 msgid "Title" msgstr "כותרת" -#: templates/debug.php:240 +#: templates/debug.php:242 msgctxt "as application program interface" msgid "API" msgstr "API" -#: templates/debug.php:241 +#: templates/debug.php:243 msgid "Freemius State" msgstr "מצב פרימיוס" -#: templates/debug.php:245 +#: templates/debug.php:247 msgid "Network Blog" msgstr "Network Blog" -#: templates/debug.php:246 +#: templates/debug.php:248 msgid "Network User" msgstr "משתמש רשת" -#: templates/debug.php:283 +#: templates/debug.php:285 msgctxt "as connection was successful" msgid "Connected" msgstr "מחובר" -#: templates/debug.php:284 +#: templates/debug.php:286 msgctxt "as connection blocked" msgid "Blocked" msgstr "חסום" -#: templates/debug.php:320 +#: templates/debug.php:322 msgid "Simulate Trial Promotion" msgstr "Simulate Trial Promotion" -#: templates/debug.php:332 +#: templates/debug.php:334 msgid "Simulate Network Upgrade" msgstr "סמלוץ עדכון לרשת" -#: templates/debug.php:358 +#: templates/debug.php:359 msgid "%s Installs" msgstr "%s התקנות" -#: templates/debug.php:360 +#: templates/debug.php:361 msgctxt "like websites" msgid "Sites" msgstr "אתרים" -#: templates/debug.php366, templates/account/partials/site.php:148 +#: templates/debug.php367, templates/account/partials/site.php:156 msgid "Blog ID" msgstr "מזהה בלוג" -#: templates/debug.php431, templates/debug.php509, -#: templates/account/partials/addon.php:339 +#: templates/debug.php:372 +msgid "License ID" +msgstr "License ID" + +#: templates/debug.php436, templates/debug.php535, +#: templates/account/partials/addon.php:435 msgctxt "verb" msgid "Delete" msgstr "מחק" -#: templates/debug.php:445 +#: templates/debug.php:450 msgid "Add Ons of module %s" msgstr "Add Ons of module %s" -#: templates/debug.php:482 +#: templates/debug.php:502 msgid "Users" msgstr "משתמשים" -#: templates/debug.php:489 +#: templates/debug.php:509 msgid "Verified" msgstr "מאומת" -#: templates/debug.php:520 +#: templates/debug.php:551 msgid "%s Licenses" msgstr "%s Licenses" -#: templates/debug.php:525 +#: templates/debug.php:556 msgid "Plugin ID" msgstr "Plugin ID" -#: templates/debug.php:527 +#: templates/debug.php:558 msgid "Plan ID" msgstr "Plan ID" -#: templates/debug.php:528 +#: templates/debug.php:559 msgid "Quota" msgstr "Quota" -#: templates/debug.php:529 +#: templates/debug.php:560 msgid "Activated" msgstr "Activated" -#: templates/debug.php:530 +#: templates/debug.php:561 msgid "Blocking" msgstr "Blocking" -#: templates/debug.php:532 +#: templates/debug.php:563 msgctxt "as expiration date" msgid "Expiration" msgstr "תפוגה" -#: templates/debug.php:555 +#: templates/debug.php:590 msgid "Debug Log" msgstr "Debug Log" -#: templates/debug.php:559 +#: templates/debug.php:594 msgid "All Types" msgstr "כל הסוגים" -#: templates/debug.php:566 +#: templates/debug.php:601 msgid "All Requests" msgstr "כל הבקשות" -#: templates/debug.php571, templates/debug.php600, +#: templates/debug.php606, templates/debug.php635, #: templates/debug/logger.php:25 msgid "File" msgstr "קובץ" -#: templates/debug.php572, templates/debug.php598, +#: templates/debug.php607, templates/debug.php633, #: templates/debug/logger.php:23 msgid "Function" msgstr "פונקציה" -#: templates/debug.php:573 +#: templates/debug.php:608 msgid "Process ID" msgstr "Process ID" -#: templates/debug.php:574 +#: templates/debug.php:609 msgid "Logger" msgstr "Logger" -#: templates/debug.php575, templates/debug.php599, +#: templates/debug.php610, templates/debug.php634, #: templates/debug/logger.php:24 msgid "Message" msgstr "הודעה" -#: templates/debug.php:577 +#: templates/debug.php:612 msgid "Filter" msgstr "פילטר" -#: templates/debug.php:585 +#: templates/debug.php:620 msgid "Download" msgstr "הורדה" -#: templates/debug.php596, templates/debug/logger.php:22 +#: templates/debug.php631, templates/debug/logger.php:22 msgid "Type" msgstr "סוג" -#: templates/debug.php601, templates/debug/logger.php:26 +#: templates/debug.php636, templates/debug/logger.php:26 msgid "Timestamp" msgstr "Timestamp" @@ -1893,53 +1985,53 @@ msgstr "Freemius API" msgid "Requests" msgstr "Requests" -#: templates/account/billing.php:28 +#: templates/account/billing.php:22 msgctxt "verb" msgid "Update" msgstr "עדכן" -#: templates/account/billing.php:39 +#: templates/account/billing.php:33 msgid "Billing" msgstr "בילינג" -#: templates/account/billing.php44, templates/account/billing.php:44 +#: templates/account/billing.php38, templates/account/billing.php:38 msgid "Business name" msgstr "שם עסק" -#: templates/account/billing.php45, templates/account/billing.php:45 +#: templates/account/billing.php39, templates/account/billing.php:39 msgid "Tax / VAT ID" msgstr "ח.פ." -#: templates/account/billing.php48, templates/account/billing.php48, -#: templates/account/billing.php49, templates/account/billing.php:49 +#: templates/account/billing.php42, templates/account/billing.php42, +#: templates/account/billing.php43, templates/account/billing.php:43 msgid "Address Line %d" msgstr "כתובת %s" -#: templates/account/billing.php52, templates/account/billing.php:52 +#: templates/account/billing.php46, templates/account/billing.php:46 msgid "City" msgstr "עיר" -#: templates/account/billing.php52, templates/account/billing.php:52 +#: templates/account/billing.php46, templates/account/billing.php:46 msgid "Town" msgstr "כפר" -#: templates/account/billing.php53, templates/account/billing.php:53 +#: templates/account/billing.php47, templates/account/billing.php:47 msgid "ZIP / Postal Code" msgstr "מיקוד / תא דואר" -#: templates/account/billing.php:308 +#: templates/account/billing.php:302 msgid "Country" msgstr "מדינה" -#: templates/account/billing.php:310 +#: templates/account/billing.php:304 msgid "Select Country" msgstr "בחר מדינה" -#: templates/account/billing.php317, templates/account/billing.php:318 +#: templates/account/billing.php311, templates/account/billing.php:312 msgid "State" msgstr "מחוז/מדינה" -#: templates/account/billing.php317, templates/account/billing.php:318 +#: templates/account/billing.php311, templates/account/billing.php:312 msgid "Province" msgstr "פרובינציה" @@ -2191,11 +2283,27 @@ msgstr "בטל" msgid "Become an affiliate" msgstr "Become an affiliate" -#: templates/forms/license-activation.php:20 +#: templates/forms/data-debug-mode.php:25 +msgid "Please enter the license key to enable the debug mode:" +msgstr "Please enter the license key to enable the debug mode:" + +#: templates/forms/data-debug-mode.php:27 +msgid "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:" +msgstr "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:" + +#: templates/forms/data-debug-mode.php:32 +msgid "Submit" +msgstr "Submit" + +#: templates/forms/data-debug-mode.php:36 +msgid "User key" +msgstr "User key" + +#: templates/forms/license-activation.php:23 msgid "Please enter the license key that you received in the email right after the purchase:" msgstr "אנא הזן את הרישיון שקיבלת לתיבת הדואל שלך לאחר השלמת הרכישה." -#: templates/forms/license-activation.php:25 +#: templates/forms/license-activation.php:28 msgid "Update License" msgstr "עדכון רישיון" @@ -2275,7 +2383,7 @@ msgid "Proceed" msgstr "Proceed" #: templates/forms/subscription-cancellation.php191, -#: templates/forms/deactivation/form.php:150 +#: templates/forms/deactivation/form.php:171 msgid "Cancel %s & Proceed" msgstr "Cancel %s & Proceed" @@ -2287,38 +2395,42 @@ msgstr "You are 1-click away from starting your %1$s-day free trial of the %2$s msgid "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial." msgstr "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial." -#: templates/js/style-premium-theme.php:37 +#: templates/js/style-premium-theme.php:39 msgid "Premium" msgstr "Premium" -#: templates/partials/network-activation.php:23 +#: templates/js/style-premium-theme.php:42 +msgid "Beta" +msgstr "Beta" + +#: templates/partials/network-activation.php:27 msgid "Activate license on all sites in the network." msgstr "הפעלת רישיון על כל האתרים ברשת." -#: templates/partials/network-activation.php:24 +#: templates/partials/network-activation.php:28 msgid "Apply on all sites in the network." msgstr "יישום על כל האתרים ברשת." -#: templates/partials/network-activation.php:27 +#: templates/partials/network-activation.php:31 msgid "Activate license on all pending sites." msgstr "הפעלת רישיון על כל האתרים התלויים והעומדים." -#: templates/partials/network-activation.php:28 +#: templates/partials/network-activation.php:32 msgid "Apply on all pending sites." msgstr "יישום על כל האתרים התלויים והעומדים." -#: templates/partials/network-activation.php36, -#: templates/partials/network-activation.php:68 +#: templates/partials/network-activation.php40, +#: templates/partials/network-activation.php:74 msgid "allow" msgstr "אפשר" -#: templates/partials/network-activation.php38, -#: templates/partials/network-activation.php:70 +#: templates/partials/network-activation.php43, +#: templates/partials/network-activation.php:77 msgid "delegate" msgstr "האצל" -#: templates/partials/network-activation.php41, -#: templates/partials/network-activation.php:73 +#: templates/partials/network-activation.php47, +#: templates/partials/network-activation.php:81 msgid "skip" msgstr "דלג" @@ -2344,32 +2456,33 @@ msgstr "נשארו %s" msgid "Last license" msgstr "רישיון אחרון" -#: templates/account/partials/addon.php:115 +#. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the +#. subscription' +#: templates/account/partials/addon.php:29 +msgid "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s." +msgstr "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s." + +#: templates/account/partials/addon.php:185 msgid "Cancelled" msgstr "בוטל" -#: templates/account/partials/addon.php:125 +#: templates/account/partials/addon.php:195 msgid "No expiration" msgstr "ללא תפוגה" -#: templates/account/partials/addon.php264, -#: templates/account/partials/addon.php:317 -msgid "Activate this add-on" -msgstr "הפעל את ההרחבה" - -#: templates/account/partials/site.php:181 +#: templates/account/partials/site.php:189 msgid "Owner Name" msgstr "שם הבעלים" -#: templates/account/partials/site.php:193 +#: templates/account/partials/site.php:201 msgid "Owner Email" msgstr "מייל הבעלים" -#: templates/account/partials/site.php:205 +#: templates/account/partials/site.php:213 msgid "Owner ID" msgstr "מזהה הבעלים" -#: templates/account/partials/site.php:270 +#: templates/account/partials/site.php:286 msgid "Subscription" msgstr "מנוי" @@ -2381,47 +2494,47 @@ msgstr "מצטערים על חוסר הנעימות, אנחנו כאן כדי ל msgid "Contact Support" msgstr "צור קשר" -#: templates/forms/deactivation/form.php:59 +#: templates/forms/deactivation/form.php:64 msgid "Anonymous feedback" msgstr "פידבק אנונימי" -#: templates/forms/deactivation/form.php:66 +#: templates/forms/deactivation/form.php:70 msgid "Deactivate" msgstr "כיבוי" -#: templates/forms/deactivation/form.php:68 +#: templates/forms/deactivation/form.php:72 msgid "Activate %s" msgstr "Activate %s" -#: templates/forms/deactivation/form.php:80 +#: templates/forms/deactivation/form.php:87 msgid "Quick Feedback" msgstr "Quick Feedback" -#: templates/forms/deactivation/form.php:84 +#: templates/forms/deactivation/form.php:91 msgid "If you have a moment, please let us know why you are %s" msgstr "If you have a moment, please let us know why you are %s" -#: templates/forms/deactivation/form.php:84 +#: templates/forms/deactivation/form.php:91 msgid "deactivating" msgstr "deactivating" -#: templates/forms/deactivation/form.php:84 +#: templates/forms/deactivation/form.php:91 msgid "switching" msgstr "switching" -#: templates/forms/deactivation/form.php:332 +#: templates/forms/deactivation/form.php:365 msgid "Submit & %s" msgstr "Submit & %s" -#: templates/forms/deactivation/form.php:353 +#: templates/forms/deactivation/form.php:386 msgid "Kindly tell us the reason so we can improve." msgstr "אנא שתף את הסיבה כדי שנוכל להשתפר." -#: templates/forms/deactivation/form.php:478 +#: templates/forms/deactivation/form.php:511 msgid "Yes - %s" msgstr "Yes - %s" -#: templates/forms/deactivation/form.php:485 +#: templates/forms/deactivation/form.php:518 msgid "Skip & %s" msgstr "דלג ו%s" diff --git a/external/Freemius/languages/freemius-hu_HU.mo b/external/Freemius/languages/freemius-hu_HU.mo index d116b1b5..59b18faa 100755 Binary files a/external/Freemius/languages/freemius-hu_HU.mo and b/external/Freemius/languages/freemius-hu_HU.mo differ diff --git a/external/Freemius/languages/freemius-hu_HU.po b/external/Freemius/languages/freemius-hu_HU.po index 52543d6c..35a28acd 100755 --- a/external/Freemius/languages/freemius-hu_HU.po +++ b/external/Freemius/languages/freemius-hu_HU.po @@ -7,8 +7,8 @@ msgstr "" "Project-Id-Version: WordPress SDK\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2019-01-10 20:38+0000\n" -"Last-Translator: Peter Ambrus\n" +"PO-Revision-Date: 2019-10-07 15:33+0000\n" +"Last-Translator: Vova Feldman \n" "Language: hu_HU\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/freemius/wordpress-sdk/language/hu_HU/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,1407 +21,1498 @@ msgstr "" "X-Poedit-SearchPathExcluded-0: *.js\n" "X-Poedit-SourceCharset: UTF-8\n" -#: includes/class-freemius.php:1688 +#: includes/class-freemius.php1880, templates/account.php:840 +msgid "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned." +msgstr "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned." + +#: includes/class-freemius.php:1887 +msgid "Would you like to proceed with the update?" +msgstr "Would you like to proceed with the update?" + +#: includes/class-freemius.php:2095 msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error." msgstr "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error." -#: includes/class-freemius.php:1690 +#: includes/class-freemius.php:2097 msgid "Error" msgstr "Hiba" -#: includes/class-freemius.php:2011 +#: includes/class-freemius.php:2491 msgid "I found a better %s" msgstr "Jobb %st találtam" -#: includes/class-freemius.php:2013 +#: includes/class-freemius.php:2493 msgid "What's the %s's name?" msgstr "Mi a %s neve?" -#: includes/class-freemius.php:2019 +#: includes/class-freemius.php:2499 msgid "It's a temporary %s. I'm just debugging an issue." msgstr "Ez csak egy ideiglenes %s. Egy hibát kell megoldanom." -#: includes/class-freemius.php:2021 +#: includes/class-freemius.php:2501 msgid "Deactivation" msgstr "Deaktiválás" -#: includes/class-freemius.php:2022 +#: includes/class-freemius.php:2502 msgid "Theme Switch" msgstr "Sablon váltás" -#: includes/class-freemius.php2031, templates/forms/resend-key.php:24 +#: includes/class-freemius.php2511, templates/forms/resend-key.php:24 msgid "Other" msgstr "Egyéb" -#: includes/class-freemius.php:2039 +#: includes/class-freemius.php:2519 msgid "I no longer need the %s" msgstr "I no longer need the %s" -#: includes/class-freemius.php:2046 +#: includes/class-freemius.php:2526 msgid "I only needed the %s for a short period" msgstr "I only needed the %s for a short period" -#: includes/class-freemius.php:2052 +#: includes/class-freemius.php:2532 msgid "The %s broke my site" msgstr "The %s broke my site" -#: includes/class-freemius.php:2059 +#: includes/class-freemius.php:2539 msgid "The %s suddenly stopped working" msgstr "The %s suddenly stopped working" -#: includes/class-freemius.php:2069 +#: includes/class-freemius.php:2549 msgid "I can't pay for it anymore" msgstr "Nem tudom tovább fizetni" -#: includes/class-freemius.php:2071 +#: includes/class-freemius.php:2551 msgid "What price would you feel comfortable paying?" msgstr "Mi lenne az elfogadható ár, amit tudnál fizetni?" -#: includes/class-freemius.php:2077 +#: includes/class-freemius.php:2557 msgid "I don't like to share my information with you" msgstr "Nem szeretném megosztani veletek az információt" -#: includes/class-freemius.php:2098 +#: includes/class-freemius.php:2578 msgid "The %s didn't work" msgstr "A %s nem működött" -#: includes/class-freemius.php:2108 +#: includes/class-freemius.php:2588 msgid "I couldn't understand how to make it work" msgstr "Nem értettem, hogy kell használni" -#: includes/class-freemius.php:2116 +#: includes/class-freemius.php:2596 msgid "The %s is great, but I need specific feature that you don't support" msgstr "The %s is great, but I need specific feature that you don't support" -#: includes/class-freemius.php:2118 +#: includes/class-freemius.php:2598 msgid "What feature?" msgstr "Melyik funkcióra van szükséged?" -#: includes/class-freemius.php:2122 +#: includes/class-freemius.php:2602 msgid "The %s is not working" msgstr "A(z) %s nem működik" -#: includes/class-freemius.php:2124 +#: includes/class-freemius.php:2604 msgid "Kindly share what didn't work so we can fix it for future users..." msgstr "Ha elmondod mi nem működött, ki tudjuk javítani a leendő felhasználók számára..." -#: includes/class-freemius.php:2128 +#: includes/class-freemius.php:2608 msgid "It's not what I was looking for" msgstr "Nem ezt kerestem" -#: includes/class-freemius.php:2130 +#: includes/class-freemius.php:2610 msgid "What you've been looking for?" msgstr "Pontosan mit kerestél?" -#: includes/class-freemius.php:2134 +#: includes/class-freemius.php:2614 msgid "The %s didn't work as expected" msgstr "A %s nem az elvárásoknak megfelelően működött" -#: includes/class-freemius.php:2136 +#: includes/class-freemius.php:2616 msgid "What did you expect?" msgstr "Mire számítottál?" -#: includes/class-freemius.php2942, templates/debug.php:20 +#: includes/class-freemius.php3471, templates/debug.php:20 msgid "Freemius Debug" msgstr "Freemius Debug" -#: includes/class-freemius.php:3670 +#: includes/class-freemius.php:4223 msgid "I don't know what is cURL or how to install it, help me!" msgstr "I don't know what is cURL or how to install it, help me!" -#: includes/class-freemius.php:3672 +#: includes/class-freemius.php:4225 msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update." msgstr "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update." -#: includes/class-freemius.php:3679 +#: includes/class-freemius.php:4232 msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again." msgstr "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again." -#: includes/class-freemius.php:3784 +#: includes/class-freemius.php:4337 msgid "Yes - do your thing" msgstr "Igen - tedd a dolgod" -#: includes/class-freemius.php:3789 +#: includes/class-freemius.php:4342 msgid "No - just deactivate" msgstr "Nem - csak deaktiválom" -#: includes/class-freemius.php3834, includes/class-freemius.php4343, -#: includes/class-freemius.php5442, includes/class-freemius.php11545, -#: includes/class-freemius.php14916, includes/class-freemius.php14968, -#: includes/class-freemius.php15030, includes/class-freemius.php17263, -#: includes/class-freemius.php17273, includes/class-freemius.php17882, -#: includes/class-freemius.php18742, includes/class-freemius.php18857, -#: includes/class-freemius.php19001, templates/add-ons.php:43 +#: includes/class-freemius.php4387, includes/class-freemius.php4881, +#: includes/class-freemius.php6032, includes/class-freemius.php13153, +#: includes/class-freemius.php16558, includes/class-freemius.php16646, +#: includes/class-freemius.php16812, includes/class-freemius.php19040, +#: includes/class-freemius.php19381, includes/class-freemius.php19391, +#: includes/class-freemius.php20051, includes/class-freemius.php20924, +#: includes/class-freemius.php21039, includes/class-freemius.php21183, +#: templates/add-ons.php:57 msgctxt "exclamation" msgid "Oops" msgstr "Hoppá" -#: includes/class-freemius.php:3903 +#: includes/class-freemius.php:4456 msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience." msgstr "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience." -#: includes/class-freemius.php:4340 +#: includes/class-freemius.php:4878 msgctxt "addonX cannot run without pluginY" msgid "%s cannot run without %s." msgstr "%s cannot run without %s." -#: includes/class-freemius.php:4341 +#: includes/class-freemius.php:4879 msgctxt "addonX cannot run..." msgid "%s cannot run without the plugin." msgstr "%s cannot run without the plugin." -#: includes/class-freemius.php4487, includes/class-freemius.php4512, -#: includes/class-freemius.php:17953 +#: includes/class-freemius.php5052, includes/class-freemius.php5077, +#: includes/class-freemius.php:20122 msgid "Unexpected API error. Please contact the %s's author with the following error." msgstr "Unexpected API error. Please contact the %s's author with the following error." -#: includes/class-freemius.php:5130 +#: includes/class-freemius.php:5720 msgid "Premium %s version was successfully activated." msgstr "Premium %s version was successfully activated." -#: includes/class-freemius.php5142, includes/class-freemius.php:7004 +#: includes/class-freemius.php5732, includes/class-freemius.php:7599 msgctxt "" msgid "W00t" msgstr "Fantasztikus" -#: includes/class-freemius.php:5157 +#: includes/class-freemius.php:5747 msgid "You have a %s license." msgstr "You have a %s license." -#: includes/class-freemius.php5161, includes/class-freemius.php14337, -#: includes/class-freemius.php14348, includes/class-freemius.php17177, -#: includes/class-freemius.php17491, includes/class-freemius.php17557, -#: includes/class-freemius.php:17707 +#: includes/class-freemius.php5751, includes/class-freemius.php15975, +#: includes/class-freemius.php15986, includes/class-freemius.php19292, +#: includes/class-freemius.php19642, includes/class-freemius.php19711, +#: includes/class-freemius.php:19876 msgctxt "interjection expressing joy or exuberance" msgid "Yee-haw" msgstr "Juhuuu" -#: includes/class-freemius.php:5425 +#: includes/class-freemius.php:6015 msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license." msgstr "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license." -#: includes/class-freemius.php:5429 +#: includes/class-freemius.php:6019 msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin." msgstr "%s is a premium only add-on. You have to purchase a license first before activating the plugin." -#: includes/class-freemius.php5438, templates/add-ons.php103, -#: templates/account/partials/addon.php:288 +#: includes/class-freemius.php6028, templates/add-ons.php186, +#: templates/account/partials/addon.php:381 msgid "More information about %s" msgstr "More information about %s" -#: includes/class-freemius.php:5439 +#: includes/class-freemius.php:6029 msgid "Purchase License" msgstr "Licensz vásárlása" -#: includes/class-freemius.php6372, templates/connect.php:163 +#: includes/class-freemius.php6964, templates/connect.php:163 msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s." msgstr "Küldtünk egy aktivációs emailt a(z) %s szoftverünkhöz a következő email címre: %s. Kérlek kattints a levélben található aktivációs linkre, hogy %s." -#: includes/class-freemius.php:6376 +#: includes/class-freemius.php:6968 msgid "start the trial" msgstr "próbaidő indítása" -#: includes/class-freemius.php6377, templates/connect.php:167 +#: includes/class-freemius.php6969, templates/connect.php:167 msgid "complete the install" msgstr "befejezd a telepítést" -#: includes/class-freemius.php:6490 +#: includes/class-freemius.php:7081 msgid "You are just one step away - %s" msgstr "Már csak egy lépés van hátra - %s" -#: includes/class-freemius.php:6493 +#: includes/class-freemius.php:7084 msgctxt "%s - plugin name. As complete \"PluginX\" activation now" msgid "Complete \"%s\" Activation Now" msgstr "\"%s\" aktiválásának a befejezése most" -#: includes/class-freemius.php:6571 +#: includes/class-freemius.php:7162 msgid "We made a few tweaks to the %s, %s" msgstr "We made a few tweaks to the %s, %s" -#: includes/class-freemius.php:6575 +#: includes/class-freemius.php:7166 msgid "Opt in to make \"%s\" better!" msgstr "Opt in to make \"%s\" better!" -#: includes/class-freemius.php:7003 +#: includes/class-freemius.php:7598 msgid "The upgrade of %s was successfully completed." msgstr "The upgrade of %s was successfully completed." -#: includes/class-freemius.php8925, includes/class-fs-plugin-updater.php886, -#: includes/class-fs-plugin-updater.php1081, -#: includes/class-fs-plugin-updater.php1088, +#: includes/class-freemius.php9802, includes/class-fs-plugin-updater.php1038, +#: includes/class-fs-plugin-updater.php1233, +#: includes/class-fs-plugin-updater.php1240, #: templates/auto-installation.php:32 msgid "Add-On" msgstr "Kiegészítő" -#: includes/class-freemius.php8927, templates/debug.php359, -#: templates/debug.php:520 +#: includes/class-freemius.php9804, templates/account.php335, +#: templates/account.php343, templates/debug.php360, templates/debug.php:551 msgid "Plugin" msgstr "Bővítmény" -#: includes/class-freemius.php8928, templates/debug.php359, -#: templates/debug.php520, templates/forms/deactivation/form.php:67 +#: includes/class-freemius.php9805, templates/account.php336, +#: templates/account.php344, templates/debug.php360, templates/debug.php551, +#: templates/forms/deactivation/form.php:71 msgid "Theme" msgstr "Sablon" -#: includes/class-freemius.php:11412 +#: includes/class-freemius.php:12596 +msgid "An unknown error has occurred while trying to set the user's beta mode." +msgstr "An unknown error has occurred while trying to set the user's beta mode." + +#: includes/class-freemius.php:13020 msgid "Invalid site details collection." msgstr "Invalid site details collection." -#: includes/class-freemius.php:11532 +#: includes/class-freemius.php:13140 msgid "We couldn't find your email address in the system, are you sure it's the right address?" msgstr "We couldn't find your email address in the system, are you sure it's the right address?" -#: includes/class-freemius.php:11534 +#: includes/class-freemius.php:13142 msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?" msgstr "We can't see any active licenses associated with that email address, are you sure it's the right address?" -#: includes/class-freemius.php:11808 +#: includes/class-freemius.php:13416 msgid "Account is pending activation." msgstr "A fiók aktiválása függőben." -#: includes/class-freemius.php11920, +#: includes/class-freemius.php13528, #: templates/forms/premium-versions-upgrade-handler.php:47 msgid "Buy a license now" msgstr "Vásárolj licenszet most" -#: includes/class-freemius.php11932, +#: includes/class-freemius.php13540, #: templates/forms/premium-versions-upgrade-handler.php:46 msgid "Renew your license now" msgstr "Licensz kulcs megújítása" -#: includes/class-freemius.php:11936 +#: includes/class-freemius.php:13544 msgid "%s to access version %s security & feature updates, and support." msgstr "%s to access version %s security & feature updates, and support." -#: includes/class-freemius.php:14319 +#: includes/class-freemius.php:15957 msgid "%s activation was successfully completed." msgstr "%s activation was successfully completed." -#: includes/class-freemius.php:14333 +#: includes/class-freemius.php:15971 msgid "Your account was successfully activated with the %s plan." msgstr "A fiókodat sikeresen aktiváltuk a következő csomaggal: %s" -#: includes/class-freemius.php14344, includes/class-freemius.php:17553 +#: includes/class-freemius.php15982, includes/class-freemius.php:19707 msgid "Your trial has been successfully started." msgstr "A próbaidőszakodat sikeresen aktiváltuk." -#: includes/class-freemius.php14914, includes/class-freemius.php14966, -#: includes/class-freemius.php:15028 +#: includes/class-freemius.php16556, includes/class-freemius.php16644, +#: includes/class-freemius.php:16810 msgid "Couldn't activate %s." msgstr "Couldn't activate %s." -#: includes/class-freemius.php14915, includes/class-freemius.php14967, -#: includes/class-freemius.php:15029 +#: includes/class-freemius.php16557, includes/class-freemius.php16645, +#: includes/class-freemius.php:16811 msgid "Please contact us with the following message:" msgstr "Please contact us with the following message:" -#: includes/class-freemius.php15378, includes/class-freemius.php:19839 +#: includes/class-freemius.php16641, templates/forms/data-debug-mode.php:162 +msgid "An unknown error has occurred." +msgstr "An unknown error has occurred." + +#: includes/class-freemius.php17168, includes/class-freemius.php:22082 msgid "Upgrade" msgstr "Előfizetés frissítése" -#: includes/class-freemius.php:15384 +#: includes/class-freemius.php:17174 msgid "Start Trial" msgstr "Próbaidő indítása" -#: includes/class-freemius.php:15386 +#: includes/class-freemius.php:17176 msgid "Pricing" msgstr "Árak" -#: includes/class-freemius.php15448, includes/class-freemius.php:15450 +#: includes/class-freemius.php17256, includes/class-freemius.php:17258 msgid "Affiliation" msgstr "Affiliation" -#: includes/class-freemius.php15478, includes/class-freemius.php15480, -#: templates/account.php150, templates/debug.php:324 +#: includes/class-freemius.php17286, includes/class-freemius.php17288, +#: templates/account.php183, templates/debug.php:326 msgid "Account" msgstr "Fiók" -#: includes/class-freemius.php15493, includes/class-freemius.php15495, +#: includes/class-freemius.php17302, includes/class-freemius.php17304, #: includes/customizer/class-fs-customizer-support-section.php:60 msgid "Contact Us" msgstr "Kapcsolat" -#: includes/class-freemius.php15505, includes/class-freemius.php15507, -#: includes/class-freemius.php19849, templates/account.php100, -#: templates/account/partials/addon.php:41 +#: includes/class-freemius.php17315, includes/class-freemius.php17317, +#: includes/class-freemius.php22096, templates/account.php111, +#: templates/account/partials/addon.php:44 msgid "Add-Ons" msgstr "Kiegészítők" -#: includes/class-freemius.php:15541 +#: includes/class-freemius.php:17351 msgctxt "ASCII arrow left icon" msgid "←" msgstr "←" -#: includes/class-freemius.php:15541 +#: includes/class-freemius.php:17351 msgctxt "ASCII arrow right icon" msgid "➤" msgstr "➤" -#: includes/class-freemius.php15543, templates/pricing.php:97 +#: includes/class-freemius.php17353, templates/pricing.php:103 msgctxt "noun" msgid "Pricing" msgstr "Árak" -#: includes/class-freemius.php15756, +#: includes/class-freemius.php17566, #: includes/customizer/class-fs-customizer-support-section.php:67 msgid "Support Forum" msgstr "Támogató fórum" -#: includes/class-freemius.php:16542 +#: includes/class-freemius.php:18536 msgid "Your email has been successfully verified - you are AWESOME!" msgstr "Az email címedet sikerült ellenőrizni - ez nagyszerű!" -#: includes/class-freemius.php:16543 +#: includes/class-freemius.php:18537 msgctxt "a positive response" msgid "Right on" msgstr "Right on" -#: includes/class-freemius.php:17168 +#: includes/class-freemius.php:19041 +msgid "seems like the key you entered doesn't match our records." +msgstr "seems like the key you entered doesn't match our records." + +#: includes/class-freemius.php:19065 +msgid "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." +msgstr "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." + +#: includes/class-freemius.php:19283 msgid "Your %s Add-on plan was successfully upgraded." msgstr "Your %s Add-on plan was successfully upgraded." -#: includes/class-freemius.php:17170 +#: includes/class-freemius.php:19285 msgid "%s Add-on was successfully purchased." msgstr "%s Add-on was successfully purchased." -#: includes/class-freemius.php:17173 +#: includes/class-freemius.php:19288 msgid "Download the latest version" msgstr "Töltsd le a legfrissebb verziót" -#: includes/class-freemius.php:17259 -msgctxt "%1s - plugin title, %2s - API domain" -msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s" -msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s" +#: includes/class-freemius.php:19374 +msgid "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s" +msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s" -#: includes/class-freemius.php17262, includes/class-freemius.php17678, -#: includes/class-freemius.php:17755 +#: includes/class-freemius.php19380, includes/class-freemius.php19390, +#: includes/class-freemius.php19835, includes/class-freemius.php:19924 msgid "Error received from the server:" msgstr "Error received from the server:" -#: includes/class-freemius.php:17272 +#: includes/class-freemius.php:19390 msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again." msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again." -#: includes/class-freemius.php17454, includes/class-freemius.php17683, -#: includes/class-freemius.php17726, includes/class-freemius.php:17829 +#: includes/class-freemius.php19604, includes/class-freemius.php19840, +#: includes/class-freemius.php19895, includes/class-freemius.php:19998 msgctxt "" msgid "Hmm" msgstr "Hmm" -#: includes/class-freemius.php:17467 +#: includes/class-freemius.php:19617 msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry." msgstr "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry." -#: includes/class-freemius.php17468, templates/account.php102, -#: templates/add-ons.php134, templates/account/partials/addon.php:43 +#: includes/class-freemius.php19618, templates/account.php113, +#: templates/add-ons.php250, templates/account/partials/addon.php:46 msgctxt "trial period" msgid "Trial" msgstr "Próbaidő" -#: includes/class-freemius.php:17473 +#: includes/class-freemius.php:19623 msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s." msgstr "I have upgraded my account but when I try to Sync the License, the plan remains %s." -#: includes/class-freemius.php17477, includes/class-freemius.php:17535 +#: includes/class-freemius.php19627, includes/class-freemius.php:19686 msgid "Please contact us here" msgstr "Please contact us here" -#: includes/class-freemius.php:17487 +#: includes/class-freemius.php:19638 +msgid "Your plan was successfully activated." +msgstr "Your plan was successfully activated." + +#: includes/class-freemius.php:19639 msgid "Your plan was successfully upgraded." msgstr "Your plan was successfully upgraded." -#: includes/class-freemius.php:17505 +#: includes/class-freemius.php:19656 msgid "Your plan was successfully changed to %s." msgstr "Your plan was successfully changed to %s." -#: includes/class-freemius.php:17521 +#: includes/class-freemius.php:19672 msgid "Your license has expired. You can still continue using the free %s forever." msgstr "Your license has expired. You can still continue using the free %s forever." -#: includes/class-freemius.php:17523 +#: includes/class-freemius.php:19674 msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." msgstr "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." -#: includes/class-freemius.php:17531 +#: includes/class-freemius.php:19682 msgid "Your license has been cancelled. If you think it's a mistake, please contact support." msgstr "Your license has been cancelled. If you think it's a mistake, please contact support." -#: includes/class-freemius.php:17544 +#: includes/class-freemius.php:19695 msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support." msgstr "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support." -#: includes/class-freemius.php:17567 +#: includes/class-freemius.php:19721 msgid "Your free trial has expired. You can still continue using all our free features." msgstr "Your free trial has expired. You can still continue using all our free features." -#: includes/class-freemius.php:17569 +#: includes/class-freemius.php:19723 msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." -#: includes/class-freemius.php:17674 +#: includes/class-freemius.php:19831 msgid "It looks like the license could not be activated." msgstr "It looks like the license could not be activated." -#: includes/class-freemius.php:17704 +#: includes/class-freemius.php:19873 msgid "Your license was successfully activated." msgstr "Your license was successfully activated." -#: includes/class-freemius.php:17730 +#: includes/class-freemius.php:19899 msgid "It looks like your site currently doesn't have an active license." msgstr "It looks like your site currently doesn't have an active license." -#: includes/class-freemius.php:17754 +#: includes/class-freemius.php:19923 msgid "It looks like the license deactivation failed." msgstr "Úgy tűnik a licensz deaktiválása nem sikerült." -#: includes/class-freemius.php:17782 +#: includes/class-freemius.php:19951 msgid "Your license was successfully deactivated, you are back to the %s plan." msgstr "A licenszedet sikeresen deaktiváltuk, az aktuális csomagod: %s" -#: includes/class-freemius.php:17783 +#: includes/class-freemius.php:19952 msgid "O.K" msgstr "Rendben" -#: includes/class-freemius.php:17836 +#: includes/class-freemius.php:20005 msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes." msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes." -#: includes/class-freemius.php:17845 +#: includes/class-freemius.php:20014 msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s." msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s." -#: includes/class-freemius.php:17887 +#: includes/class-freemius.php:20056 msgid "You are already running the %s in a trial mode." msgstr "You are already running the %s in a trial mode." -#: includes/class-freemius.php:17898 +#: includes/class-freemius.php:20067 msgid "You already utilized a trial before." msgstr "You already utilized a trial before." -#: includes/class-freemius.php:17912 +#: includes/class-freemius.php:20081 msgid "Plan %s do not exist, therefore, can't start a trial." msgstr "Plan %s do not exist, therefore, can't start a trial." -#: includes/class-freemius.php:17923 +#: includes/class-freemius.php:20092 msgid "Plan %s does not support a trial period." msgstr "Plan %s does not support a trial period." -#: includes/class-freemius.php:17934 +#: includes/class-freemius.php:20103 msgid "None of the %s's plans supports a trial period." msgstr "None of the %s's plans supports a trial period." -#: includes/class-freemius.php:17984 +#: includes/class-freemius.php:20153 msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)" msgstr "It looks like you are not in trial mode anymore so there's nothing to cancel :)" -#: includes/class-freemius.php:18020 +#: includes/class-freemius.php:20189 msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes." msgstr "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes." -#: includes/class-freemius.php:18039 +#: includes/class-freemius.php:20208 msgid "Your %s free trial was successfully cancelled." msgstr "Your %s free trial was successfully cancelled." -#: includes/class-freemius.php:18346 +#: includes/class-freemius.php:20524 msgid "Version %s was released." msgstr "Version %s was released." -#: includes/class-freemius.php:18346 +#: includes/class-freemius.php:20524 msgid "Please download %s." msgstr "Please download %s." -#: includes/class-freemius.php:18353 +#: includes/class-freemius.php:20531 msgid "the latest %s version here" msgstr "the latest %s version here" -#: includes/class-freemius.php:18358 +#: includes/class-freemius.php:20536 msgid "New" msgstr "Új" -#: includes/class-freemius.php:18363 +#: includes/class-freemius.php:20541 msgid "Seems like you got the latest release." msgstr "Seems like you got the latest release." -#: includes/class-freemius.php:18364 +#: includes/class-freemius.php:20542 msgid "You are all good!" msgstr "Minden rendben!" -#: includes/class-freemius.php:18632 +#: includes/class-freemius.php:20812 msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box." msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box." -#: includes/class-freemius.php:18769 +#: includes/class-freemius.php:20951 msgid "Site successfully opted in." msgstr "Site successfully opted in." -#: includes/class-freemius.php18770, includes/class-freemius.php:19581 +#: includes/class-freemius.php20952, includes/class-freemius.php:21792 msgid "Awesome" msgstr "Nagyszerű" -#: includes/class-freemius.php18786, templates/forms/optout.php:32 +#: includes/class-freemius.php20968, templates/forms/optout.php:32 msgid "We appreciate your help in making the %s better by letting us track some usage data." msgstr "We appreciate your help in making the %s better by letting us track some usage data." -#: includes/class-freemius.php:18787 +#: includes/class-freemius.php:20969 msgid "Thank you!" msgstr "Köszönjük!" -#: includes/class-freemius.php:18794 +#: includes/class-freemius.php:20976 msgid "We will no longer be sending any usage data of %s on %s to %s." msgstr "We will no longer be sending any usage data of %s on %s to %s." -#: includes/class-freemius.php:18923 +#: includes/class-freemius.php:21105 msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder." msgstr "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder." -#: includes/class-freemius.php:18929 +#: includes/class-freemius.php:21111 msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval." msgstr "Thanks for confirming the ownership change. An email was just sent to %s for final approval." -#: includes/class-freemius.php:18934 +#: includes/class-freemius.php:21116 msgid "%s is the new owner of the account." msgstr "%s is the new owner of the account." -#: includes/class-freemius.php:18936 +#: includes/class-freemius.php:21118 msgctxt "as congratulations" msgid "Congrats" msgstr "Gratulálunk" -#: includes/class-freemius.php:18956 +#: includes/class-freemius.php:21138 msgid "Sorry, we could not complete the email update. Another user with the same email is already registered." msgstr "Sorry, we could not complete the email update. Another user with the same email is already registered." -#: includes/class-freemius.php:18957 +#: includes/class-freemius.php:21139 msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button." msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button." -#: includes/class-freemius.php:18964 +#: includes/class-freemius.php:21146 msgid "Change Ownership" msgstr "Tulajdonos módosítása" -#: includes/class-freemius.php:18972 +#: includes/class-freemius.php:21154 msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments." msgstr "Your email was successfully updated. You should receive an email with confirmation instructions in few moments." -#: includes/class-freemius.php:18984 +#: includes/class-freemius.php:21166 msgid "Please provide your full name." msgstr "Kérlek add meg a teljes neved!" -#: includes/class-freemius.php:18989 +#: includes/class-freemius.php:21171 msgid "Your name was successfully updated." msgstr "A neved sikeresen frissítettük." -#: includes/class-freemius.php:19050 +#: includes/class-freemius.php:21232 msgid "You have successfully updated your %s." msgstr "You have successfully updated your %s." -#: includes/class-freemius.php:19190 +#: includes/class-freemius.php:21372 msgid "Just letting you know that the add-ons information of %s is being pulled from an external server." msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server." -#: includes/class-freemius.php:19191 +#: includes/class-freemius.php:21373 msgctxt "advance notice of something that will need attention." msgid "Heads up" msgstr "Figyelem" -#: includes/class-freemius.php:19621 +#: includes/class-freemius.php:21832 msgctxt "exclamation" msgid "Hey" msgstr "Üdv" -#: includes/class-freemius.php:19621 +#: includes/class-freemius.php:21832 msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial." msgstr "How do you like %s so far? Test all our %s premium features with a %d-day free trial." -#: includes/class-freemius.php:19629 +#: includes/class-freemius.php:21840 msgid "No commitment for %s days - cancel anytime!" msgstr "No commitment for %s days - cancel anytime!" -#: includes/class-freemius.php:19630 +#: includes/class-freemius.php:21841 msgid "No credit card required" msgstr "Bankkártya megadása nem kötelező" -#: includes/class-freemius.php19637, templates/forms/trial-start.php:53 +#: includes/class-freemius.php21848, templates/forms/trial-start.php:53 msgctxt "call to action" msgid "Start free trial" msgstr "Start free trial" -#: includes/class-freemius.php:19714 +#: includes/class-freemius.php:21925 msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!" msgstr "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!" -#: includes/class-freemius.php:19723 +#: includes/class-freemius.php:21934 msgid "Learn more" msgstr "Bővebben" -#: includes/class-freemius.php19873, templates/account.php406, -#: templates/account.php509, templates/connect.php171, -#: templates/connect.php421, templates/forms/license-activation.php24, -#: templates/account/partials/addon.php:235 +#: includes/class-freemius.php22120, templates/account.php499, +#: templates/account.php624, templates/connect.php171, +#: templates/connect.php421, templates/forms/license-activation.php27, +#: templates/account/partials/addon.php:321 msgid "Activate License" msgstr "Licensz aktiválása" -#: includes/class-freemius.php19874, templates/account.php469, -#: templates/account.php508, templates/account/partials/site.php:256 +#: includes/class-freemius.php22121, templates/account.php571, +#: templates/account.php623, templates/account/partials/addon.php322, +#: templates/account/partials/site.php:271 msgid "Change License" msgstr "Licensz módosítása" -#: includes/class-freemius.php19956, templates/account/partials/site.php:161 +#: includes/class-freemius.php22217, templates/account/partials/site.php:169 msgid "Opt Out" msgstr "Leiratkozás" -#: includes/class-freemius.php19958, includes/class-freemius.php19963, -#: templates/account/partials/site.php43, -#: templates/account/partials/site.php:161 +#: includes/class-freemius.php22219, includes/class-freemius.php22225, +#: templates/account/partials/site.php49, +#: templates/account/partials/site.php:169 msgid "Opt In" msgstr "Feliratkozás" -#: includes/class-freemius.php:20187 -msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s" -msgstr " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s" +#: includes/class-freemius.php:22453 +msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s" +msgstr " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s" -#: includes/class-freemius.php:20195 +#: includes/class-freemius.php:22461 msgid "Activate %s features" msgstr "Activate %s features" -#: includes/class-freemius.php:20208 +#: includes/class-freemius.php:22474 msgid "Please follow these steps to complete the upgrade" msgstr "Please follow these steps to complete the upgrade" -#: includes/class-freemius.php:20212 +#: includes/class-freemius.php:22478 msgid "Download the latest %s version" msgstr "Download the latest %s version" -#: includes/class-freemius.php:20216 +#: includes/class-freemius.php:22482 msgid "Upload and activate the downloaded version" msgstr "Upload and activate the downloaded version" -#: includes/class-freemius.php:20218 +#: includes/class-freemius.php:22484 msgid "How to upload and activate?" msgstr "How to upload and activate?" -#: includes/class-freemius.php:20352 +#: includes/class-freemius.php:22618 msgid "%sClick here%s to choose the sites where you'd like to activate the license on." msgstr "%sClick here%s to choose the sites where you'd like to activate the license on." -#: includes/class-freemius.php:20513 +#: includes/class-freemius.php:22779 msgid "Auto installation only works for opted-in users." msgstr "Auto installation only works for opted-in users." -#: includes/class-freemius.php20523, includes/class-freemius.php20556, -#: includes/class-fs-plugin-updater.php1060, -#: includes/class-fs-plugin-updater.php:1074 +#: includes/class-freemius.php22789, includes/class-freemius.php22822, +#: includes/class-fs-plugin-updater.php1212, +#: includes/class-fs-plugin-updater.php:1226 msgid "Invalid module ID." msgstr "Invalid module ID." -#: includes/class-freemius.php20532, includes/class-fs-plugin-updater.php:1096 +#: includes/class-freemius.php22798, includes/class-fs-plugin-updater.php:1248 msgid "Premium version already active." msgstr "Premium version already active." -#: includes/class-freemius.php:20539 +#: includes/class-freemius.php:22805 msgid "You do not have a valid license to access the premium version." msgstr "You do not have a valid license to access the premium version." -#: includes/class-freemius.php:20546 +#: includes/class-freemius.php:22812 msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version." msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version." -#: includes/class-freemius.php20564, includes/class-fs-plugin-updater.php:1095 +#: includes/class-freemius.php22830, includes/class-fs-plugin-updater.php:1247 msgid "Premium add-on version already installed." msgstr "Premium add-on version already installed." -#: includes/class-freemius.php:20909 +#: includes/class-freemius.php:23180 msgid "View paid features" msgstr "Fizetős funkciók megtekintése" -#: includes/class-freemius.php:21229 +#: includes/class-freemius.php:23502 msgid "Thank you so much for using %s and its add-ons!" msgstr "Thank you so much for using %s and its add-ons!" -#: includes/class-freemius.php:21230 +#: includes/class-freemius.php:23503 msgid "Thank you so much for using %s!" msgstr "Thank you so much for using %s!" -#: includes/class-freemius.php:21236 +#: includes/class-freemius.php:23509 msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s." msgstr "You've already opted-in to our usage-tracking, which helps us keep improving the %s." -#: includes/class-freemius.php:21240 +#: includes/class-freemius.php:23513 msgid "Thank you so much for using our products!" msgstr "Thank you so much for using our products!" -#: includes/class-freemius.php:21241 +#: includes/class-freemius.php:23514 msgid "You've already opted-in to our usage-tracking, which helps us keep improving them." msgstr "You've already opted-in to our usage-tracking, which helps us keep improving them." -#: includes/class-freemius.php:21260 +#: includes/class-freemius.php:23533 msgid "%s and its add-ons" msgstr "%s and its add-ons" -#: includes/class-freemius.php:21269 +#: includes/class-freemius.php:23542 msgid "Products" msgstr "Termékek" -#: includes/class-freemius.php21276, templates/connect.php:272 +#: includes/class-freemius.php23549, templates/connect.php:272 msgid "Yes" msgstr "Igen" -#: includes/class-freemius.php21277, templates/connect.php:273 +#: includes/class-freemius.php23550, templates/connect.php:273 msgid "send me security & feature updates, educational content and offers." msgstr "kérek biztonsági és funkcionális frissítéseket, használati ismertetőket és ajánlatokat." -#: includes/class-freemius.php21278, templates/connect.php:278 +#: includes/class-freemius.php23551, templates/connect.php:278 msgid "No" msgstr "Nem" -#: includes/class-freemius.php21280, templates/connect.php:280 +#: includes/class-freemius.php23553, templates/connect.php:280 msgid "do %sNOT%s send me security & feature updates, educational content and offers." msgstr "do %sNOT%s send me security & feature updates, educational content and offers." -#: includes/class-freemius.php:21290 -msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂" -msgstr "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂" +#: includes/class-freemius.php:23563 +msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard :-)" +msgstr "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard :-)" -#: includes/class-freemius.php21292, templates/connect.php:287 +#: includes/class-freemius.php23565, templates/connect.php:287 msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:" msgstr "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:" -#: includes/class-freemius.php:21574 +#: includes/class-freemius.php:23847 msgid "License key is empty." msgstr "A licensz kulcs üres." -#: includes/class-fs-plugin-updater.php184, +#: includes/class-fs-plugin-updater.php206, #: templates/forms/premium-versions-upgrade-handler.php:57 msgid "Renew license" msgstr "Licensz megújítása" -#: includes/class-fs-plugin-updater.php189, +#: includes/class-fs-plugin-updater.php211, #: templates/forms/premium-versions-upgrade-handler.php:58 msgid "Buy license" msgstr "Licensz vásárlása" -#: includes/class-fs-plugin-updater.php:278 +#: includes/class-fs-plugin-updater.php321, +#: includes/class-fs-plugin-updater.php:354 msgid "There is a %s of %s available." msgstr "There is a %s of %s available." -#: includes/class-fs-plugin-updater.php:282 +#: includes/class-fs-plugin-updater.php323, +#: includes/class-fs-plugin-updater.php:359 +msgid "new Beta version" +msgstr "new Beta version" + +#: includes/class-fs-plugin-updater.php324, +#: includes/class-fs-plugin-updater.php:360 msgid "new version" msgstr "új verzió" -#: includes/class-fs-plugin-updater.php:305 +#: includes/class-fs-plugin-updater.php:383 msgid "Important Upgrade Notice:" msgstr "Important Upgrade Notice:" -#: includes/class-fs-plugin-updater.php:1125 +#: includes/class-fs-plugin-updater.php:1277 msgid "Installing plugin: %s" msgstr "Bővítmény telepítése: %s" -#: includes/class-fs-plugin-updater.php:1166 +#: includes/class-fs-plugin-updater.php:1318 msgid "Unable to connect to the filesystem. Please confirm your credentials." msgstr "Unable to connect to the filesystem. Please confirm your credentials." -#: includes/class-fs-plugin-updater.php:1348 +#: includes/class-fs-plugin-updater.php:1500 msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work." msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work." -#: includes/fs-plugin-info-dialog.php369, -#: templates/account/partials/addon.php:292 +#: includes/fs-plugin-info-dialog.php:535 +msgid "Purchase More" +msgstr "Purchase More" + +#: includes/fs-plugin-info-dialog.php536, +#: templates/account/partials/addon.php:385 msgctxt "verb" msgid "Purchase" msgstr "Vásárlás" -#: includes/fs-plugin-info-dialog.php:372 +#: includes/fs-plugin-info-dialog.php:540 msgid "Start my free %s" msgstr "Start my free %s" -#: includes/fs-plugin-info-dialog.php:413 +#: includes/fs-plugin-info-dialog.php:738 +msgid "Install Free Version Update Now" +msgstr "Install Free Version Update Now" + +#: includes/fs-plugin-info-dialog.php739, templates/account.php:560 +msgid "Install Update Now" +msgstr "Frissítés telepítése most" + +#: includes/fs-plugin-info-dialog.php:748 msgid "Install Free Version Now" msgstr "Install Free Version Now" -#: includes/fs-plugin-info-dialog.php414, templates/auto-installation.php111, -#: templates/account/partials/addon.php272, -#: templates/account/partials/addon.php:322 +#: includes/fs-plugin-info-dialog.php749, templates/add-ons.php323, +#: templates/auto-installation.php111, +#: templates/account/partials/addon.php365, +#: templates/account/partials/addon.php:418 msgid "Install Now" msgstr "Telepítés most" -#: includes/fs-plugin-info-dialog.php:425 +#: includes/fs-plugin-info-dialog.php:765 msgctxt "as download latest version" msgid "Download Latest Free Version" msgstr "Download Latest Free Version" -#: includes/fs-plugin-info-dialog.php426, templates/account.php80, -#: templates/account/partials/addon.php:21 +#: includes/fs-plugin-info-dialog.php766, templates/account.php91, +#: templates/add-ons.php37, templates/account/partials/addon.php:25 msgctxt "as download latest version" msgid "Download Latest" msgstr "Download Latest" -#: includes/fs-plugin-info-dialog.php:436 -msgid "Install Free Version Update Now" -msgstr "Install Free Version Update Now" - -#: includes/fs-plugin-info-dialog.php437, templates/account.php:460 -msgid "Install Update Now" -msgstr "Frissítés telepítése most" - -#: includes/fs-plugin-info-dialog.php:448 -msgid "Newer Free Version (%s) Installed" -msgstr "Newer Free Version (%s) Installed" - -#: includes/fs-plugin-info-dialog.php:449 -msgid "Newer Version (%s) Installed" -msgstr "Newer Version (%s) Installed" +#: includes/fs-plugin-info-dialog.php781, templates/add-ons.php329, +#: templates/account/partials/addon.php356, +#: templates/account/partials/addon.php:412 +msgid "Activate this add-on" +msgstr "Activate this add-on" -#: includes/fs-plugin-info-dialog.php:457 -msgid "Latest Free Version Installed" -msgstr "Legfrissebb ingyenes verzió telepítve" +#: includes/fs-plugin-info-dialog.php783, templates/connect.php:418 +msgid "Activate Free Version" +msgstr "Ingyenes verzió aktiválása" -#: includes/fs-plugin-info-dialog.php:458 -msgid "Latest Version Installed" -msgstr "Legfrissebb verzió telepítve" +#: includes/fs-plugin-info-dialog.php784, templates/account.php115, +#: templates/add-ons.php330, templates/account/partials/addon.php:48 +msgid "Activate" +msgstr "Aktiválás" -#: includes/fs-plugin-info-dialog.php:613 +#: includes/fs-plugin-info-dialog.php:994 msgctxt "Plugin installer section title" msgid "Description" msgstr "Leírás" -#: includes/fs-plugin-info-dialog.php:614 +#: includes/fs-plugin-info-dialog.php:995 msgctxt "Plugin installer section title" msgid "Installation" msgstr "Telepítés" -#: includes/fs-plugin-info-dialog.php:615 +#: includes/fs-plugin-info-dialog.php:996 msgctxt "Plugin installer section title" msgid "FAQ" msgstr "GYIK" -#: includes/fs-plugin-info-dialog.php616, +#: includes/fs-plugin-info-dialog.php997, #: templates/plugin-info/description.php:55 msgid "Screenshots" msgstr "Képernyőfotók" -#: includes/fs-plugin-info-dialog.php:617 +#: includes/fs-plugin-info-dialog.php:998 msgctxt "Plugin installer section title" msgid "Changelog" msgstr "Változtatások" -#: includes/fs-plugin-info-dialog.php:618 +#: includes/fs-plugin-info-dialog.php:999 msgctxt "Plugin installer section title" msgid "Reviews" msgstr "Vélemények" -#: includes/fs-plugin-info-dialog.php:619 +#: includes/fs-plugin-info-dialog.php:1000 msgctxt "Plugin installer section title" msgid "Other Notes" msgstr "Egyéb megjegyzések" -#: includes/fs-plugin-info-dialog.php:634 +#: includes/fs-plugin-info-dialog.php:1015 msgctxt "Plugin installer section title" msgid "Features & Pricing" msgstr "Funkciók & Árak" -#: includes/fs-plugin-info-dialog.php:644 +#: includes/fs-plugin-info-dialog.php:1025 msgid "Plugin Install" msgstr "Bővítmény telepítése" -#: includes/fs-plugin-info-dialog.php:716 +#: includes/fs-plugin-info-dialog.php:1097 msgctxt "e.g. Professional Plan" msgid "%s Plan" msgstr "%s csomag" -#: includes/fs-plugin-info-dialog.php:742 +#: includes/fs-plugin-info-dialog.php:1123 msgctxt "e.g. the best product" msgid "Best" msgstr "Legjobb" -#: includes/fs-plugin-info-dialog.php748, -#: includes/fs-plugin-info-dialog.php:768 +#: includes/fs-plugin-info-dialog.php1129, +#: includes/fs-plugin-info-dialog.php:1149 msgctxt "as every month" msgid "Monthly" msgstr "Havi" -#: includes/fs-plugin-info-dialog.php:751 +#: includes/fs-plugin-info-dialog.php:1132 msgctxt "as once a year" msgid "Annual" msgstr "Éves" -#: includes/fs-plugin-info-dialog.php:754 +#: includes/fs-plugin-info-dialog.php:1135 msgid "Lifetime" msgstr "Örök" -#: includes/fs-plugin-info-dialog.php768, -#: includes/fs-plugin-info-dialog.php770, -#: includes/fs-plugin-info-dialog.php:772 +#: includes/fs-plugin-info-dialog.php1149, +#: includes/fs-plugin-info-dialog.php1151, +#: includes/fs-plugin-info-dialog.php:1153 msgctxt "e.g. billed monthly" msgid "Billed %s" msgstr "%s számlázás" -#: includes/fs-plugin-info-dialog.php:770 +#: includes/fs-plugin-info-dialog.php:1151 msgctxt "as once a year" msgid "Annually" msgstr "Éves" -#: includes/fs-plugin-info-dialog.php:772 +#: includes/fs-plugin-info-dialog.php:1153 msgctxt "as once a year" msgid "Once" msgstr "Egyszeri" -#: includes/fs-plugin-info-dialog.php:778 +#: includes/fs-plugin-info-dialog.php:1159 msgid "Single Site License" msgstr "Egy weboldalas licensz" -#: includes/fs-plugin-info-dialog.php:780 +#: includes/fs-plugin-info-dialog.php:1161 msgid "Unlimited Licenses" msgstr "Korlátlan licensz" -#: includes/fs-plugin-info-dialog.php:782 +#: includes/fs-plugin-info-dialog.php:1163 msgid "Up to %s Sites" msgstr "Up to %s Sites" -#: includes/fs-plugin-info-dialog.php792, +#: includes/fs-plugin-info-dialog.php1173, #: templates/plugin-info/features.php:82 msgctxt "as monthly period" msgid "mo" msgstr "hó" -#: includes/fs-plugin-info-dialog.php799, +#: includes/fs-plugin-info-dialog.php1180, #: templates/plugin-info/features.php:80 msgctxt "as annual period" msgid "year" msgstr "év" -#: includes/fs-plugin-info-dialog.php:853 +#: includes/fs-plugin-info-dialog.php:1234 msgctxt "noun" msgid "Price" msgstr "Ár" -#: includes/fs-plugin-info-dialog.php:901 +#: includes/fs-plugin-info-dialog.php:1282 msgid "Save %s" msgstr "%s mentése" -#: includes/fs-plugin-info-dialog.php:911 +#: includes/fs-plugin-info-dialog.php:1292 msgid "No commitment for %s - cancel anytime" msgstr "No commitment for %s - cancel anytime" -#: includes/fs-plugin-info-dialog.php:914 +#: includes/fs-plugin-info-dialog.php:1295 msgid "After your free %s, pay as little as %s" msgstr "After your free %s, pay as little as %s" -#: includes/fs-plugin-info-dialog.php:925 +#: includes/fs-plugin-info-dialog.php:1306 msgid "Details" msgstr "Részletek" -#: includes/fs-plugin-info-dialog.php929, templates/account.php91, -#: templates/debug.php201, templates/debug.php238, templates/debug.php452, -#: templates/account/partials/addon.php:32 +#: includes/fs-plugin-info-dialog.php1310, templates/account.php102, +#: templates/debug.php203, templates/debug.php240, templates/debug.php457, +#: templates/account/partials/addon.php:36 msgctxt "product version" msgid "Version" msgstr "Verzió" -#: includes/fs-plugin-info-dialog.php:936 +#: includes/fs-plugin-info-dialog.php:1317 msgctxt "as the plugin author" msgid "Author" msgstr "Szerző" -#: includes/fs-plugin-info-dialog.php:943 +#: includes/fs-plugin-info-dialog.php:1324 msgid "Last Updated" msgstr "Utolsó frissítés" -#: includes/fs-plugin-info-dialog.php948, templates/account.php:376 +#: includes/fs-plugin-info-dialog.php1329, templates/account.php:468 msgctxt "x-ago" msgid "%s ago" msgstr "%s ago" -#: includes/fs-plugin-info-dialog.php:957 +#: includes/fs-plugin-info-dialog.php:1338 msgid "Requires WordPress Version" msgstr "A következő WordPress verzió szükséges:" -#: includes/fs-plugin-info-dialog.php:958 +#: includes/fs-plugin-info-dialog.php:1339 msgid "%s or higher" msgstr "%s or higher" -#: includes/fs-plugin-info-dialog.php:965 +#: includes/fs-plugin-info-dialog.php:1346 msgid "Compatible up to" msgstr "Compatible up to" -#: includes/fs-plugin-info-dialog.php:973 +#: includes/fs-plugin-info-dialog.php:1354 msgid "Downloaded" msgstr "Letöltések száma:" -#: includes/fs-plugin-info-dialog.php:977 +#: includes/fs-plugin-info-dialog.php:1358 msgid "%s time" msgstr "%s" -#: includes/fs-plugin-info-dialog.php:979 +#: includes/fs-plugin-info-dialog.php:1360 msgid "%s times" msgstr "%s" -#: includes/fs-plugin-info-dialog.php:989 +#: includes/fs-plugin-info-dialog.php:1370 msgid "WordPress.org Plugin Page" msgstr "WordPress.org bővítmény oldal" -#: includes/fs-plugin-info-dialog.php:997 +#: includes/fs-plugin-info-dialog.php:1378 msgid "Plugin Homepage" msgstr "Bővítmény oldala" -#: includes/fs-plugin-info-dialog.php1005, -#: includes/fs-plugin-info-dialog.php:1087 +#: includes/fs-plugin-info-dialog.php1386, +#: includes/fs-plugin-info-dialog.php:1468 msgid "Donate to this plugin" msgstr "Bővítmény támogatása" -#: includes/fs-plugin-info-dialog.php:1012 +#: includes/fs-plugin-info-dialog.php:1393 msgid "Average Rating" msgstr "Átlagos értékelés" -#: includes/fs-plugin-info-dialog.php:1019 +#: includes/fs-plugin-info-dialog.php:1400 msgid "based on %s" msgstr "based on %s" -#: includes/fs-plugin-info-dialog.php:1023 +#: includes/fs-plugin-info-dialog.php:1404 msgid "%s rating" msgstr "%s rating" -#: includes/fs-plugin-info-dialog.php:1025 +#: includes/fs-plugin-info-dialog.php:1406 msgid "%s ratings" msgstr "%s ratings" -#: includes/fs-plugin-info-dialog.php:1040 +#: includes/fs-plugin-info-dialog.php:1421 msgid "%s star" msgstr "%s star" -#: includes/fs-plugin-info-dialog.php:1042 +#: includes/fs-plugin-info-dialog.php:1423 msgid "%s stars" msgstr "%s stars" -#: includes/fs-plugin-info-dialog.php:1053 +#: includes/fs-plugin-info-dialog.php:1434 msgid "Click to see reviews that provided a rating of %s" msgstr "Click to see reviews that provided a rating of %s" -#: includes/fs-plugin-info-dialog.php:1066 +#: includes/fs-plugin-info-dialog.php:1447 msgid "Contributors" msgstr "Közreműködők" -#: includes/fs-plugin-info-dialog.php1095, -#: includes/fs-plugin-info-dialog.php:1097 +#: includes/fs-plugin-info-dialog.php1476, +#: includes/fs-plugin-info-dialog.php:1478 msgid "Warning" msgstr "Figyelmeztetés" -#: includes/fs-plugin-info-dialog.php:1095 +#: includes/fs-plugin-info-dialog.php:1476 msgid "This plugin has not been tested with your current version of WordPress." msgstr "This plugin has not been tested with your current version of WordPress." -#: includes/fs-plugin-info-dialog.php:1097 +#: includes/fs-plugin-info-dialog.php:1478 msgid "This plugin has not been marked as compatible with your version of WordPress." msgstr "This plugin has not been marked as compatible with your version of WordPress." -#: includes/fs-plugin-info-dialog.php:1116 +#: includes/fs-plugin-info-dialog.php:1497 msgid "Paid add-on must be deployed to Freemius." msgstr "Paid add-on must be deployed to Freemius." -#: includes/fs-plugin-info-dialog.php:1117 +#: includes/fs-plugin-info-dialog.php:1498 msgid "Add-on must be deployed to WordPress.org or Freemius." msgstr "Add-on must be deployed to WordPress.org or Freemius." -#: templates/account.php81, templates/forms/subscription-cancellation.php96, -#: templates/account/partials/addon.php22, -#: templates/account/partials/site.php:295 +#: includes/fs-plugin-info-dialog.php:1519 +msgid "Newer Version (%s) Installed" +msgstr "Newer Version (%s) Installed" + +#: includes/fs-plugin-info-dialog.php:1520 +msgid "Newer Free Version (%s) Installed" +msgstr "Newer Free Version (%s) Installed" + +#: includes/fs-plugin-info-dialog.php:1527 +msgid "Latest Version Installed" +msgstr "Legfrissebb verzió telepítve" + +#: includes/fs-plugin-info-dialog.php:1528 +msgid "Latest Free Version Installed" +msgstr "Legfrissebb ingyenes verzió telepítve" + +#: templates/account.php92, templates/forms/subscription-cancellation.php96, +#: templates/account/partials/addon.php26, +#: templates/account/partials/site.php:311 msgid "Downgrading your plan" msgstr "Downgrading your plan" -#: templates/account.php82, templates/forms/subscription-cancellation.php97, -#: templates/account/partials/addon.php23, -#: templates/account/partials/site.php:296 +#: templates/account.php93, templates/forms/subscription-cancellation.php97, +#: templates/account/partials/addon.php27, +#: templates/account/partials/site.php:312 msgid "Cancelling the subscription" msgstr "Cancelling the subscription" -#. translators: %1s: Either 'Downgrading your plan' or 'Cancelling the +#. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the #. subscription' -#: templates/account.php84, templates/forms/subscription-cancellation.php99, -#: templates/account/partials/addon.php25, -#: templates/account/partials/site.php:298 -msgid "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s." -msgstr "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s." - -#: templates/account.php85, templates/forms/subscription-cancellation.php100, -#: templates/account/partials/addon.php26, -#: templates/account/partials/site.php:299 +#: templates/account.php95, templates/forms/subscription-cancellation.php99, +#: templates/account/partials/site.php:314 +msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s." +msgstr "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s." + +#: templates/account.php96, templates/forms/subscription-cancellation.php100, +#: templates/account/partials/addon.php30, +#: templates/account/partials/site.php:315 msgid "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price." msgstr "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price." -#: templates/account.php86, templates/forms/subscription-cancellation.php106, -#: templates/account/partials/addon.php:27 +#: templates/account.php97, templates/forms/subscription-cancellation.php106, +#: templates/account/partials/addon.php:31 msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?" msgstr "Cancelling the trial will immediately block access to all premium features. Are you sure?" -#: templates/account.php87, templates/forms/subscription-cancellation.php101, -#: templates/account/partials/addon.php28, -#: templates/account/partials/site.php:300 +#: templates/account.php98, templates/forms/subscription-cancellation.php101, +#: templates/account/partials/addon.php32, +#: templates/account/partials/site.php:316 msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support." msgstr "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support." -#: templates/account.php88, templates/forms/subscription-cancellation.php102, -#: templates/account/partials/addon.php29, -#: templates/account/partials/site.php:301 +#: templates/account.php99, templates/forms/subscription-cancellation.php102, +#: templates/account/partials/addon.php33, +#: templates/account/partials/site.php:317 msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features." msgstr "Once your license expires you can still use the Free version but you will NOT have access to the %s features." #. translators: %s: Plan title (e.g. "Professional") -#: templates/account.php90, +#: templates/account.php101, #: templates/account/partials/activate-license-button.php31, -#: templates/account/partials/addon.php:31 +#: templates/account/partials/addon.php:35 msgid "Activate %s Plan" msgstr "%s csomag aktiválása" #. translators: %s: Time period (e.g. Auto renews in "2 months") -#: templates/account.php93, templates/account/partials/addon.php34, -#: templates/account/partials/site.php:275 +#: templates/account.php104, templates/account/partials/addon.php38, +#: templates/account/partials/site.php:291 msgid "Auto renews in %s" msgstr "Auto renews in %s" #. translators: %s: Time period (e.g. Expires in "2 months") -#: templates/account.php95, templates/account/partials/addon.php36, -#: templates/account/partials/site.php:277 +#: templates/account.php106, templates/account/partials/addon.php40, +#: templates/account/partials/site.php:293 msgid "Expires in %s" msgstr "Hátralévő idő: %s" -#: templates/account.php96, templates/account/partials/addon.php:37 +#: templates/account.php:107 msgctxt "as synchronize license" msgid "Sync License" msgstr "Licensz szinkronizálása" -#: templates/account.php97, templates/account/partials/addon.php:38 +#: templates/account.php108, templates/account/partials/addon.php:41 msgid "Cancel Trial" msgstr "Próbaidő törlése" -#: templates/account.php98, templates/account/partials/addon.php:39 +#: templates/account.php109, templates/account/partials/addon.php:42 msgid "Change Plan" msgstr "Csomag módosítása" -#: templates/account.php99, templates/account/partials/addon.php:40 +#: templates/account.php110, templates/account/partials/addon.php:43 msgctxt "verb" msgid "Upgrade" msgstr "Váltás nagyobb csomagra" -#: templates/account.php101, templates/account/partials/addon.php42, -#: templates/account/partials/site.php:302 +#: templates/account.php112, templates/account/partials/addon.php45, +#: templates/account/partials/site.php:318 msgctxt "verb" msgid "Downgrade" msgstr "Váltás kisebb csomagra" -#: templates/account.php103, templates/add-ons.php130, +#: templates/account.php114, templates/add-ons.php246, #: templates/plugin-info/features.php72, -#: templates/account/partials/addon.php44, -#: templates/account/partials/site.php:31 +#: templates/account/partials/addon.php47, +#: templates/account/partials/site.php:33 msgid "Free" msgstr "Ingyenes" -#: templates/account.php104, templates/account/partials/addon.php:45 -msgid "Activate" -msgstr "Aktiválás" - -#: templates/account.php105, templates/debug.php371, -#: includes/customizer/class-fs-customizer-upsell-control.php106, -#: templates/account/partials/addon.php:46 +#: templates/account.php116, templates/debug.php373, +#: includes/customizer/class-fs-customizer-upsell-control.php110, +#: templates/account/partials/addon.php:49 msgctxt "as product pricing plan" msgid "Plan" msgstr "Csomag" -#: templates/account.php:158 +#: templates/account.php:117 +msgid "Bundle Plan" +msgstr "Bundle Plan" + +#: templates/account.php:191 msgid "Free Trial" msgstr "Ingyenes próbaidő" -#: templates/account.php:169 +#: templates/account.php:202 msgid "Account Details" msgstr "Fiók információk" -#: templates/account.php:179 +#: templates/account.php209, templates/forms/data-debug-mode.php:33 +msgid "Start Debug" +msgstr "Start Debug" + +#: templates/account.php:211 +msgid "Stop Debug" +msgstr "Stop Debug" + +#: templates/account.php:218 +msgid "Billing & Invoices" +msgstr "Billing & Invoices" + +#: templates/account.php:229 msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?" msgstr "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?" -#: templates/account.php:181 +#: templates/account.php:231 msgid "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?" msgstr "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?" -#: templates/account.php:184 +#: templates/account.php:234 msgid "Delete Account" msgstr "Fiók törlése" -#: templates/account.php196, templates/account/partials/addon.php159, +#: templates/account.php246, templates/account/partials/addon.php231, #: templates/account/partials/deactivate-license-button.php:35 msgid "Deactivate License" msgstr "Licensz deaktiválása" -#: templates/account.php219, templates/forms/subscription-cancellation.php:125 +#: templates/account.php269, templates/forms/subscription-cancellation.php:125 msgid "Are you sure you want to proceed?" msgstr "Are you sure you want to proceed?" -#: templates/account.php219, templates/account/partials/addon.php:182 +#: templates/account.php269, templates/account/partials/addon.php:255 msgid "Cancel Subscription" msgstr "Előfizetés törlése" -#: templates/account.php:247 +#: templates/account.php298, templates/account/partials/addon.php:340 msgctxt "as synchronize" msgid "Sync" msgstr "Szinkronizálás" -#: templates/account.php261, templates/debug.php:487 +#: templates/account.php313, templates/debug.php:507 msgid "Name" msgstr "Név" -#: templates/account.php267, templates/debug.php:488 +#: templates/account.php319, templates/debug.php:508 msgid "Email" msgstr "Email" -#: templates/account.php274, templates/debug.php370, templates/debug.php:526 +#: templates/account.php326, templates/debug.php371, templates/debug.php:557 msgid "User ID" msgstr "Felhasználó ID" -#: templates/account.php:282 +#: templates/account.php344, templates/account.php637, +#: templates/account.php682, templates/debug.php238, templates/debug.php365, +#: templates/debug.php454, templates/debug.php506, templates/debug.php555, +#: templates/debug.php632, templates/account/payments.php35, +#: templates/debug/logger.php:21 +msgid "ID" +msgstr "ID" + +#: templates/account.php:351 msgid "Site ID" msgstr "Weboldal ID" -#: templates/account.php:285 +#: templates/account.php:354 msgid "No ID" msgstr "Nincs ID" -#: templates/account.php290, templates/debug.php243, templates/debug.php372, -#: templates/debug.php453, templates/debug.php490, -#: templates/account/partials/site.php:219 +#: templates/account.php359, templates/debug.php245, templates/debug.php374, +#: templates/debug.php458, templates/debug.php510, +#: templates/account/partials/site.php:227 msgid "Public Key" msgstr "Publikus kulcs" -#: templates/account.php296, templates/debug.php373, templates/debug.php454, -#: templates/debug.php491, templates/account/partials/site.php:231 +#: templates/account.php365, templates/debug.php375, templates/debug.php459, +#: templates/debug.php511, templates/account/partials/site.php:239 msgid "Secret Key" msgstr "Titkos kulcs" -#: templates/account.php:299 +#: templates/account.php:368 msgctxt "as secret encryption key missing" msgid "No Secret" msgstr "Nincs titkos kulcs" -#: templates/account.php318, templates/account/partials/site.php112, -#: templates/account/partials/site.php:114 +#: templates/account.php395, templates/account/partials/site.php120, +#: templates/account/partials/site.php:122 msgid "Trial" msgstr "Próbaidő" -#: templates/account.php337, templates/debug.php531, -#: templates/account/partials/site.php:248 +#: templates/account.php422, templates/debug.php562, +#: templates/account/partials/site.php:260 msgid "License Key" msgstr "Licensz kulcs" -#: templates/account.php:367 +#: templates/account.php:453 +msgid "Join the Beta program" +msgstr "Join the Beta program" + +#: templates/account.php:459 msgid "not verified" msgstr "nem ellenőrzött" -#: templates/account.php376, templates/account/partials/addon.php:120 +#: templates/account.php468, templates/account/partials/addon.php:190 msgid "Expired" msgstr "Lejárt" -#: templates/account.php:428 +#: templates/account.php:528 msgid "Premium version" msgstr "Prémium verzió" -#: templates/account.php:430 +#: templates/account.php:530 msgid "Free version" msgstr "Ingyenes verzió" -#: templates/account.php:442 +#: templates/account.php:542 msgid "Verify Email" msgstr "Email ellenőrzése" -#: templates/account.php:453 +#: templates/account.php:553 msgid "Download %s Version" msgstr "%s verzió letöltése" -#: templates/account.php467, templates/account.php649, -#: templates/account/partials/site.php237, -#: templates/account/partials/site.php:255 +#: templates/account.php568, templates/account.php820, +#: templates/account/partials/site.php248, +#: templates/account/partials/site.php:270 msgctxt "verb" msgid "Show" msgstr "Mutasd" -#: templates/account.php:481 +#: templates/account.php:583 msgid "What is your %s?" msgstr "Mi a te %s?" -#: templates/account.php489, templates/account/billing.php:27 +#: templates/account.php591, templates/account/billing.php:21 msgctxt "verb" msgid "Edit" msgstr "Szerkesztés" -#: templates/account.php:502 +#: templates/account.php:616 msgid "Sites" msgstr "Weboldalak" -#: templates/account.php:513 +#: templates/account.php:629 msgid "Search by address" msgstr "Keresés cím alapján" -#: templates/account.php522, templates/account.php570, templates/debug.php236, -#: templates/debug.php364, templates/debug.php449, templates/debug.php486, -#: templates/debug.php524, templates/debug.php597, -#: templates/account/payments.php35, templates/debug/logger.php:21 -msgid "ID" -msgstr "ID" - -#: templates/account.php523, templates/debug.php:367 +#: templates/account.php638, templates/debug.php:368 msgid "Address" msgstr "Cím" -#: templates/account.php:524 +#: templates/account.php:639 msgid "License" msgstr "Licensz" -#: templates/account.php:525 +#: templates/account.php:640 msgid "Plan" msgstr "Csomag" -#: templates/account.php:573 +#: templates/account.php:685 msgctxt "as software license" msgid "License" msgstr "Licensz" -#: templates/account.php:643 +#: templates/account.php:814 msgctxt "verb" msgid "Hide" msgstr "Elrejt" -#: templates/account.php:686 +#: templates/account.php836, templates/forms/data-debug-mode.php:31 +msgid "Processing" +msgstr "Processing" + +#: templates/account.php:839 +msgid "Get updates for bleeding edge Beta versions of %s." +msgstr "Get updates for bleeding edge Beta versions of %s." + +#: templates/account.php:897 msgid "Cancelling %s" msgstr "Cancelling %s" -#: templates/account.php686, templates/account.php703, +#: templates/account.php897, templates/account.php914, #: templates/forms/subscription-cancellation.php27, -#: templates/forms/deactivation/form.php:117 +#: templates/forms/deactivation/form.php:133 msgid "trial" msgstr "próbaidő" -#: templates/account.php701, templates/forms/deactivation/form.php:134 +#: templates/account.php912, templates/forms/deactivation/form.php:150 msgid "Cancelling %s..." msgstr "Cancelling %s..." -#: templates/account.php704, templates/forms/subscription-cancellation.php28, -#: templates/forms/deactivation/form.php:118 +#: templates/account.php915, templates/forms/subscription-cancellation.php28, +#: templates/forms/deactivation/form.php:134 msgid "subscription" msgstr "előfizetés" -#: templates/account.php:718 +#: templates/account.php:929 msgid "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?" msgstr "A licensz deaktiválása után a prémium funkciók használata nem elérhető, de így tudod másik weboldalon aktiválni ugyanezt a licenszt. Folytatod a deaktiválást?" -#: templates/add-ons.php:36 +#: templates/add-ons.php:38 +msgid "View details" +msgstr "Részletek megtekintése" + +#: templates/add-ons.php:48 msgid "Add Ons for %s" msgstr "Add Ons for %s" -#: templates/add-ons.php:44 -msgid "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." -msgstr "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." +#: templates/add-ons.php:58 +msgid "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." +msgstr "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." -#: templates/add-ons.php:139 -msgid "View details" -msgstr "Részletek megtekintése" +#: templates/add-ons.php:229 +msgctxt "active add-on" +msgid "Active" +msgstr "Active" + +#: templates/add-ons.php:230 +msgctxt "installed add-on" +msgid "Installed" +msgstr "Installed" -#: templates/admin-notice.php13, templates/forms/license-activation.php208, +#: templates/admin-notice.php13, templates/forms/license-activation.php207, #: templates/forms/resend-key.php:77 msgctxt "as close a window" msgid "Dismiss" @@ -1447,11 +1538,11 @@ msgstr "The installation process has started and may take a few minutes to compl msgid "Cancel Installation" msgstr "Telepítés törlése" -#: templates/checkout.php:172 +#: templates/checkout.php:180 msgid "Checkout" msgstr "Pénztár" -#: templates/checkout.php:172 +#: templates/checkout.php:180 msgid "PCI compliant" msgstr "PCI compliant" @@ -1473,7 +1564,7 @@ msgstr "Aktivációs email újraküldése" msgid "Thanks %s!" msgstr "Köszönjük %s!" -#: templates/connect.php172, templates/forms/license-activation.php:43 +#: templates/connect.php172, templates/forms/license-activation.php:46 msgid "Agree & Activate License" msgstr "Licensz elfogadása és aktiválása" @@ -1521,15 +1612,16 @@ msgstr "Alternatively, you can skip it for now and activate the license later, i msgid "During the update process we detected %s site(s) in the network that are still pending your attention." msgstr "During the update process we detected %s site(s) in the network that are still pending your attention." -#: templates/connect.php253, templates/forms/license-activation.php:46 +#: templates/connect.php253, templates/forms/data-debug-mode.php35, +#: templates/forms/license-activation.php:49 msgid "License key" msgstr "Licensz kulcs" -#: templates/connect.php256, templates/forms/license-activation.php:19 +#: templates/connect.php256, templates/forms/license-activation.php:22 msgid "Can't find your license key?" msgstr "Nem találod a licensz kulcsod?" -#: templates/connect.php315, templates/connect.php630, +#: templates/connect.php315, templates/connect.php652, #: templates/forms/deactivation/retry-skip.php:20 msgctxt "verb" msgid "Skip" @@ -1579,7 +1671,7 @@ msgstr "Aktiválás, deaktiválás és kikapcsolás" msgid "Newsletter" msgstr "Hírlevél" -#: templates/connect.php391, templates/forms/license-activation.php:38 +#: templates/connect.php391, templates/forms/license-activation.php:41 msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license." msgstr "A %1$s időközönként adatot küld a %2$s weboldalnak, hogy ellenőrizze a biztonsági és funkcionális frissítéseket, valamint ellenőrzi az érvényes licensz kulcsot." @@ -1591,10 +1683,6 @@ msgstr "Milyen jogosultágok lesznek engedélyezve?" msgid "Don't have a license key?" msgstr "Nincs még licensz kulcsod?" -#: templates/connect.php:418 -msgid "Activate Free Version" -msgstr "Ingyenes verzió aktiválása" - #: templates/connect.php:420 msgid "Have a license key?" msgstr "Van licensz kulcsod?" @@ -1611,12 +1699,12 @@ msgstr "Licensz szerződés" msgid "Terms of Service" msgstr "Szolgáltatási feltételek" -#: templates/connect.php:766 +#: templates/connect.php:805 msgctxt "as in the process of sending an email" msgid "Sending email" msgstr "Email küldése" -#: templates/connect.php:767 +#: templates/connect.php:806 msgctxt "as activating plugin" msgid "Activating" msgstr "Aktiválás" @@ -1644,8 +1732,8 @@ msgctxt "as code debugging" msgid "Debugging" msgstr "Debugging" -#: templates/debug.php54, templates/debug.php248, templates/debug.php374, -#: templates/debug.php:492 +#: templates/debug.php54, templates/debug.php250, templates/debug.php376, +#: templates/debug.php:512 msgid "Actions" msgstr "Események" @@ -1681,191 +1769,195 @@ msgstr "Load DB Option" msgid "Set DB Option" msgstr "Set DB Option" -#: templates/debug.php:180 +#: templates/debug.php:182 msgid "Key" msgstr "Kulcs" -#: templates/debug.php:181 +#: templates/debug.php:183 msgid "Value" msgstr "Érték" -#: templates/debug.php:197 +#: templates/debug.php:199 msgctxt "as software development kit versions" msgid "SDK Versions" msgstr "SDK verziók" -#: templates/debug.php:202 +#: templates/debug.php:204 msgid "SDK Path" msgstr "SDK útvonal" -#: templates/debug.php203, templates/debug.php:242 +#: templates/debug.php205, templates/debug.php:244 msgid "Module Path" msgstr "Module Path" -#: templates/debug.php:204 +#: templates/debug.php:206 msgid "Is Active" msgstr "Aktív" -#: templates/debug.php232, templates/debug/plugins-themes-sync.php:35 +#: templates/debug.php234, templates/debug/plugins-themes-sync.php:35 msgid "Plugins" msgstr "Bővítmények" -#: templates/debug.php232, templates/debug/plugins-themes-sync.php:56 +#: templates/debug.php234, templates/debug/plugins-themes-sync.php:56 msgid "Themes" msgstr "Sablonok" -#: templates/debug.php237, templates/debug.php369, templates/debug.php451, +#: templates/debug.php239, templates/debug.php370, templates/debug.php456, #: templates/debug/scheduled-crons.php:80 msgid "Slug" msgstr "Slug" -#: templates/debug.php239, templates/debug.php:450 +#: templates/debug.php241, templates/debug.php:455 msgid "Title" msgstr "Cím" -#: templates/debug.php:240 +#: templates/debug.php:242 msgctxt "as application program interface" msgid "API" msgstr "API" -#: templates/debug.php:241 +#: templates/debug.php:243 msgid "Freemius State" msgstr "Freemius State" -#: templates/debug.php:245 +#: templates/debug.php:247 msgid "Network Blog" msgstr "Network Blog" -#: templates/debug.php:246 +#: templates/debug.php:248 msgid "Network User" msgstr "Network User" -#: templates/debug.php:283 +#: templates/debug.php:285 msgctxt "as connection was successful" msgid "Connected" msgstr "Connected" -#: templates/debug.php:284 +#: templates/debug.php:286 msgctxt "as connection blocked" msgid "Blocked" msgstr "Blocked" -#: templates/debug.php:320 +#: templates/debug.php:322 msgid "Simulate Trial Promotion" msgstr "Simulate Trial Promotion" -#: templates/debug.php:332 +#: templates/debug.php:334 msgid "Simulate Network Upgrade" msgstr "Simulate Network Upgrade" -#: templates/debug.php:358 +#: templates/debug.php:359 msgid "%s Installs" msgstr "%s Installs" -#: templates/debug.php:360 +#: templates/debug.php:361 msgctxt "like websites" msgid "Sites" msgstr "Weboldalak" -#: templates/debug.php366, templates/account/partials/site.php:148 +#: templates/debug.php367, templates/account/partials/site.php:156 msgid "Blog ID" msgstr "Blog ID" -#: templates/debug.php431, templates/debug.php509, -#: templates/account/partials/addon.php:339 +#: templates/debug.php:372 +msgid "License ID" +msgstr "License ID" + +#: templates/debug.php436, templates/debug.php535, +#: templates/account/partials/addon.php:435 msgctxt "verb" msgid "Delete" msgstr "Törlés" -#: templates/debug.php:445 +#: templates/debug.php:450 msgid "Add Ons of module %s" msgstr "Add Ons of module %s" -#: templates/debug.php:482 +#: templates/debug.php:502 msgid "Users" msgstr "Felhasználók" -#: templates/debug.php:489 +#: templates/debug.php:509 msgid "Verified" msgstr "Ellenőrzött" -#: templates/debug.php:520 +#: templates/debug.php:551 msgid "%s Licenses" msgstr "%s Licenses" -#: templates/debug.php:525 +#: templates/debug.php:556 msgid "Plugin ID" msgstr "Bővítmény ID" -#: templates/debug.php:527 +#: templates/debug.php:558 msgid "Plan ID" msgstr "Csomag ID" -#: templates/debug.php:528 +#: templates/debug.php:559 msgid "Quota" msgstr "Quota" -#: templates/debug.php:529 +#: templates/debug.php:560 msgid "Activated" msgstr "Sikeres aktiválás" -#: templates/debug.php:530 +#: templates/debug.php:561 msgid "Blocking" msgstr "Blocking" -#: templates/debug.php:532 +#: templates/debug.php:563 msgctxt "as expiration date" msgid "Expiration" msgstr "Expiration" -#: templates/debug.php:555 +#: templates/debug.php:590 msgid "Debug Log" msgstr "Debug Log" -#: templates/debug.php:559 +#: templates/debug.php:594 msgid "All Types" msgstr "All Types" -#: templates/debug.php:566 +#: templates/debug.php:601 msgid "All Requests" msgstr "All Requests" -#: templates/debug.php571, templates/debug.php600, +#: templates/debug.php606, templates/debug.php635, #: templates/debug/logger.php:25 msgid "File" msgstr "File" -#: templates/debug.php572, templates/debug.php598, +#: templates/debug.php607, templates/debug.php633, #: templates/debug/logger.php:23 msgid "Function" msgstr "Function" -#: templates/debug.php:573 +#: templates/debug.php:608 msgid "Process ID" msgstr "Művelet ID" -#: templates/debug.php:574 +#: templates/debug.php:609 msgid "Logger" msgstr "Logger" -#: templates/debug.php575, templates/debug.php599, +#: templates/debug.php610, templates/debug.php634, #: templates/debug/logger.php:24 msgid "Message" msgstr "Message" -#: templates/debug.php:577 +#: templates/debug.php:612 msgid "Filter" msgstr "Filter" -#: templates/debug.php:585 +#: templates/debug.php:620 msgid "Download" msgstr "Download" -#: templates/debug.php596, templates/debug/logger.php:22 +#: templates/debug.php631, templates/debug/logger.php:22 msgid "Type" msgstr "Type" -#: templates/debug.php601, templates/debug/logger.php:26 +#: templates/debug.php636, templates/debug/logger.php:26 msgid "Timestamp" msgstr "Timestamp" @@ -1892,53 +1984,53 @@ msgstr "Freemius API" msgid "Requests" msgstr "Requests" -#: templates/account/billing.php:28 +#: templates/account/billing.php:22 msgctxt "verb" msgid "Update" msgstr "Frissítés" -#: templates/account/billing.php:39 +#: templates/account/billing.php:33 msgid "Billing" msgstr "Számlázás" -#: templates/account/billing.php44, templates/account/billing.php:44 +#: templates/account/billing.php38, templates/account/billing.php:38 msgid "Business name" msgstr "Cégnév" -#: templates/account/billing.php45, templates/account/billing.php:45 +#: templates/account/billing.php39, templates/account/billing.php:39 msgid "Tax / VAT ID" msgstr "Közösségi adószám" -#: templates/account/billing.php48, templates/account/billing.php48, -#: templates/account/billing.php49, templates/account/billing.php:49 +#: templates/account/billing.php42, templates/account/billing.php42, +#: templates/account/billing.php43, templates/account/billing.php:43 msgid "Address Line %d" msgstr "Cím %d" -#: templates/account/billing.php52, templates/account/billing.php:52 +#: templates/account/billing.php46, templates/account/billing.php:46 msgid "City" msgstr "Város" -#: templates/account/billing.php52, templates/account/billing.php:52 +#: templates/account/billing.php46, templates/account/billing.php:46 msgid "Town" msgstr "Town" -#: templates/account/billing.php53, templates/account/billing.php:53 +#: templates/account/billing.php47, templates/account/billing.php:47 msgid "ZIP / Postal Code" msgstr "Irányítószám" -#: templates/account/billing.php:308 +#: templates/account/billing.php:302 msgid "Country" msgstr "Ország" -#: templates/account/billing.php:310 +#: templates/account/billing.php:304 msgid "Select Country" msgstr "Válaszz országot" -#: templates/account/billing.php317, templates/account/billing.php:318 +#: templates/account/billing.php311, templates/account/billing.php:312 msgid "State" msgstr "Megye" -#: templates/account/billing.php317, templates/account/billing.php:318 +#: templates/account/billing.php311, templates/account/billing.php:312 msgid "Province" msgstr "Province" @@ -2190,11 +2282,27 @@ msgstr "Mégsem" msgid "Become an affiliate" msgstr "Become an affiliate" -#: templates/forms/license-activation.php:20 +#: templates/forms/data-debug-mode.php:25 +msgid "Please enter the license key to enable the debug mode:" +msgstr "Please enter the license key to enable the debug mode:" + +#: templates/forms/data-debug-mode.php:27 +msgid "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:" +msgstr "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:" + +#: templates/forms/data-debug-mode.php:32 +msgid "Submit" +msgstr "Submit" + +#: templates/forms/data-debug-mode.php:36 +msgid "User key" +msgstr "User key" + +#: templates/forms/license-activation.php:23 msgid "Please enter the license key that you received in the email right after the purchase:" msgstr "Kérlek add meg a licensz kulcsot, amit emailben kaptál a vásárlásod után:" -#: templates/forms/license-activation.php:25 +#: templates/forms/license-activation.php:28 msgid "Update License" msgstr "Licensz frissítése" @@ -2274,7 +2382,7 @@ msgid "Proceed" msgstr "Proceed" #: templates/forms/subscription-cancellation.php191, -#: templates/forms/deactivation/form.php:150 +#: templates/forms/deactivation/form.php:171 msgid "Cancel %s & Proceed" msgstr "Cancel %s & Proceed" @@ -2286,38 +2394,42 @@ msgstr "You are 1-click away from starting your %1$s-day free trial of the %2$s msgid "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial." msgstr "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial." -#: templates/js/style-premium-theme.php:37 +#: templates/js/style-premium-theme.php:39 msgid "Premium" msgstr "Prémium" -#: templates/partials/network-activation.php:23 +#: templates/js/style-premium-theme.php:42 +msgid "Beta" +msgstr "Beta" + +#: templates/partials/network-activation.php:27 msgid "Activate license on all sites in the network." msgstr "Activate license on all sites in the network." -#: templates/partials/network-activation.php:24 +#: templates/partials/network-activation.php:28 msgid "Apply on all sites in the network." msgstr "Apply on all sites in the network." -#: templates/partials/network-activation.php:27 +#: templates/partials/network-activation.php:31 msgid "Activate license on all pending sites." msgstr "Activate license on all pending sites." -#: templates/partials/network-activation.php:28 +#: templates/partials/network-activation.php:32 msgid "Apply on all pending sites." msgstr "Apply on all pending sites." -#: templates/partials/network-activation.php36, -#: templates/partials/network-activation.php:68 +#: templates/partials/network-activation.php40, +#: templates/partials/network-activation.php:74 msgid "allow" msgstr "allow" -#: templates/partials/network-activation.php38, -#: templates/partials/network-activation.php:70 +#: templates/partials/network-activation.php43, +#: templates/partials/network-activation.php:77 msgid "delegate" msgstr "delegate" -#: templates/partials/network-activation.php41, -#: templates/partials/network-activation.php:73 +#: templates/partials/network-activation.php47, +#: templates/partials/network-activation.php:81 msgid "skip" msgstr "ugrás" @@ -2343,32 +2455,33 @@ msgstr "%s left" msgid "Last license" msgstr "Last license" -#: templates/account/partials/addon.php:115 +#. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the +#. subscription' +#: templates/account/partials/addon.php:29 +msgid "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s." +msgstr "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s." + +#: templates/account/partials/addon.php:185 msgid "Cancelled" msgstr "Törölve" -#: templates/account/partials/addon.php:125 +#: templates/account/partials/addon.php:195 msgid "No expiration" msgstr "No expiration" -#: templates/account/partials/addon.php264, -#: templates/account/partials/addon.php:317 -msgid "Activate this add-on" -msgstr "Activate this add-on" - -#: templates/account/partials/site.php:181 +#: templates/account/partials/site.php:189 msgid "Owner Name" msgstr "Tulajdonos neve" -#: templates/account/partials/site.php:193 +#: templates/account/partials/site.php:201 msgid "Owner Email" msgstr "Tulajdonos email címe" -#: templates/account/partials/site.php:205 +#: templates/account/partials/site.php:213 msgid "Owner ID" msgstr "Tulajdonos ID" -#: templates/account/partials/site.php:270 +#: templates/account/partials/site.php:286 msgid "Subscription" msgstr "Előfizetés" @@ -2380,47 +2493,47 @@ msgstr "Sorry for the inconvenience and we are here to help if you give us a cha msgid "Contact Support" msgstr "Írás az ügyfélszolgálatra" -#: templates/forms/deactivation/form.php:59 +#: templates/forms/deactivation/form.php:64 msgid "Anonymous feedback" msgstr "Névtelen visszajelzés" -#: templates/forms/deactivation/form.php:66 +#: templates/forms/deactivation/form.php:70 msgid "Deactivate" msgstr "Deaktiválás" -#: templates/forms/deactivation/form.php:68 +#: templates/forms/deactivation/form.php:72 msgid "Activate %s" msgstr "%s aktiválása" -#: templates/forms/deactivation/form.php:80 +#: templates/forms/deactivation/form.php:87 msgid "Quick Feedback" msgstr "Gyors visszajelzés" -#: templates/forms/deactivation/form.php:84 +#: templates/forms/deactivation/form.php:91 msgid "If you have a moment, please let us know why you are %s" msgstr "Kérlek mondd el, miért %s" -#: templates/forms/deactivation/form.php:84 +#: templates/forms/deactivation/form.php:91 msgid "deactivating" msgstr "deaktiválod" -#: templates/forms/deactivation/form.php:84 +#: templates/forms/deactivation/form.php:91 msgid "switching" msgstr "váltasz" -#: templates/forms/deactivation/form.php:332 +#: templates/forms/deactivation/form.php:365 msgid "Submit & %s" msgstr "Küldés & %s" -#: templates/forms/deactivation/form.php:353 +#: templates/forms/deactivation/form.php:386 msgid "Kindly tell us the reason so we can improve." msgstr "Ha elmondod az okát, tudunk fejlődni." -#: templates/forms/deactivation/form.php:478 +#: templates/forms/deactivation/form.php:511 msgid "Yes - %s" msgstr "Yes - %s" -#: templates/forms/deactivation/form.php:485 +#: templates/forms/deactivation/form.php:518 msgid "Skip & %s" msgstr "Kihagyás & %s" diff --git a/external/Freemius/languages/freemius-it_IT.mo b/external/Freemius/languages/freemius-it_IT.mo index 7069d02c..4878f5b9 100755 Binary files a/external/Freemius/languages/freemius-it_IT.mo and b/external/Freemius/languages/freemius-it_IT.mo differ diff --git a/external/Freemius/languages/freemius-it_IT.po b/external/Freemius/languages/freemius-it_IT.po index 6e479838..56964a71 100755 --- a/external/Freemius/languages/freemius-it_IT.po +++ b/external/Freemius/languages/freemius-it_IT.po @@ -11,8 +11,8 @@ msgstr "" "Project-Id-Version: WordPress SDK\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2018-12-23 14:23+0000\n" -"Last-Translator: Dario Curvino \n" +"PO-Revision-Date: 2019-10-07 15:33+0000\n" +"Last-Translator: Vova Feldman \n" "Language: it_IT\n" "Language-Team: Italian (Italy) (http://www.transifex.com/freemius/wordpress-sdk/language/it_IT/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,1407 +25,1498 @@ msgstr "" "X-Poedit-SearchPathExcluded-0: *.js\n" "X-Poedit-SourceCharset: UTF-8\n" -#: includes/class-freemius.php:1688 +#: includes/class-freemius.php1880, templates/account.php:840 +msgid "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned." +msgstr "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned." + +#: includes/class-freemius.php:1887 +msgid "Would you like to proceed with the update?" +msgstr "Would you like to proceed with the update?" + +#: includes/class-freemius.php:2095 msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error." msgstr "L'SDK di Freemius non è riuscito a trovare il file principale del plugin. Per favore contatta sdk@freemius.com riportando l'errore." -#: includes/class-freemius.php:1690 +#: includes/class-freemius.php:2097 msgid "Error" msgstr "Errore" -#: includes/class-freemius.php:2011 +#: includes/class-freemius.php:2491 msgid "I found a better %s" msgstr "Ho trovato un migliore %s" -#: includes/class-freemius.php:2013 +#: includes/class-freemius.php:2493 msgid "What's the %s's name?" msgstr "Qual è il nome di %s?" -#: includes/class-freemius.php:2019 +#: includes/class-freemius.php:2499 msgid "It's a temporary %s. I'm just debugging an issue." msgstr "È una %s temporanea. Sto solo cercando di risolvere un problema." -#: includes/class-freemius.php:2021 +#: includes/class-freemius.php:2501 msgid "Deactivation" msgstr "Disattivazione" -#: includes/class-freemius.php:2022 +#: includes/class-freemius.php:2502 msgid "Theme Switch" msgstr "Cambio tema" -#: includes/class-freemius.php2031, templates/forms/resend-key.php:24 +#: includes/class-freemius.php2511, templates/forms/resend-key.php:24 msgid "Other" msgstr "Altro" -#: includes/class-freemius.php:2039 +#: includes/class-freemius.php:2519 msgid "I no longer need the %s" msgstr "Non ho più bisogno di %s" -#: includes/class-freemius.php:2046 +#: includes/class-freemius.php:2526 msgid "I only needed the %s for a short period" msgstr "Ho avuto bisogno di %s per un breve periodo" -#: includes/class-freemius.php:2052 +#: includes/class-freemius.php:2532 msgid "The %s broke my site" msgstr "%s ha rotto il mio sito" -#: includes/class-freemius.php:2059 +#: includes/class-freemius.php:2539 msgid "The %s suddenly stopped working" msgstr "%s ha improvvisamente smesso di funzionare" -#: includes/class-freemius.php:2069 +#: includes/class-freemius.php:2549 msgid "I can't pay for it anymore" msgstr "Non posso piú pagarlo" -#: includes/class-freemius.php:2071 +#: includes/class-freemius.php:2551 msgid "What price would you feel comfortable paying?" msgstr "Che prezzo ritieni opportuno pagare?" -#: includes/class-freemius.php:2077 +#: includes/class-freemius.php:2557 msgid "I don't like to share my information with you" msgstr "Non voglio condividere i miei dati con te" -#: includes/class-freemius.php:2098 +#: includes/class-freemius.php:2578 msgid "The %s didn't work" msgstr "%s non funziona" -#: includes/class-freemius.php:2108 +#: includes/class-freemius.php:2588 msgid "I couldn't understand how to make it work" msgstr "Non capisco come farlo funzionare" -#: includes/class-freemius.php:2116 +#: includes/class-freemius.php:2596 msgid "The %s is great, but I need specific feature that you don't support" msgstr "%s è ottimo ma ho bisogno di una funzionalità specifica non supportata" -#: includes/class-freemius.php:2118 +#: includes/class-freemius.php:2598 msgid "What feature?" msgstr "Quale funzionalitá?" -#: includes/class-freemius.php:2122 +#: includes/class-freemius.php:2602 msgid "The %s is not working" msgstr "%s non funziona" -#: includes/class-freemius.php:2124 +#: includes/class-freemius.php:2604 msgid "Kindly share what didn't work so we can fix it for future users..." msgstr "Condividi cosa non ha funzionato in modo da migliorare il prodotto per gli utenti futuri..." -#: includes/class-freemius.php:2128 +#: includes/class-freemius.php:2608 msgid "It's not what I was looking for" msgstr "Non é quello che stavo cercando" -#: includes/class-freemius.php:2130 +#: includes/class-freemius.php:2610 msgid "What you've been looking for?" msgstr "Che cosa stai cercando?" -#: includes/class-freemius.php:2134 +#: includes/class-freemius.php:2614 msgid "The %s didn't work as expected" msgstr "%s non ha funzionato come mi aspettavo" -#: includes/class-freemius.php:2136 +#: includes/class-freemius.php:2616 msgid "What did you expect?" msgstr "Che cosa ti aspettavi?" -#: includes/class-freemius.php2942, templates/debug.php:20 +#: includes/class-freemius.php3471, templates/debug.php:20 msgid "Freemius Debug" msgstr "Debug Freemius" -#: includes/class-freemius.php:3670 +#: includes/class-freemius.php:4223 msgid "I don't know what is cURL or how to install it, help me!" msgstr "Non ho idea di cosa sia cURL o come installarlo, aiutami!" -#: includes/class-freemius.php:3672 +#: includes/class-freemius.php:4225 msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update." msgstr "Contatteremo il tuo hosting e risolveremo il problema. Riceverai un' email a %s non appena ci saranno aggiornamenti." -#: includes/class-freemius.php:3679 +#: includes/class-freemius.php:4232 msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again." msgstr "Installa cURL e abilitalo nel file file php.ini. Inoltre cerca per il parametro 'disable_functions' nel tuo file php.ini e rimuovi ogni metodo disattivato che inizia con 'curl_'. Per verificare che tutti sia attivato usa 'phpinfo()'. Una volta attivato, disattiva 1%s e riattivalo di nuovo." -#: includes/class-freemius.php:3784 +#: includes/class-freemius.php:4337 msgid "Yes - do your thing" msgstr "Sì - fai pure" -#: includes/class-freemius.php:3789 +#: includes/class-freemius.php:4342 msgid "No - just deactivate" msgstr "No - disattiva e basta" -#: includes/class-freemius.php3834, includes/class-freemius.php4343, -#: includes/class-freemius.php5442, includes/class-freemius.php11545, -#: includes/class-freemius.php14916, includes/class-freemius.php14968, -#: includes/class-freemius.php15030, includes/class-freemius.php17263, -#: includes/class-freemius.php17273, includes/class-freemius.php17882, -#: includes/class-freemius.php18742, includes/class-freemius.php18857, -#: includes/class-freemius.php19001, templates/add-ons.php:43 +#: includes/class-freemius.php4387, includes/class-freemius.php4881, +#: includes/class-freemius.php6032, includes/class-freemius.php13153, +#: includes/class-freemius.php16558, includes/class-freemius.php16646, +#: includes/class-freemius.php16812, includes/class-freemius.php19040, +#: includes/class-freemius.php19381, includes/class-freemius.php19391, +#: includes/class-freemius.php20051, includes/class-freemius.php20924, +#: includes/class-freemius.php21039, includes/class-freemius.php21183, +#: templates/add-ons.php:57 msgctxt "exclamation" msgid "Oops" msgstr "Ops" -#: includes/class-freemius.php:3903 +#: includes/class-freemius.php:4456 msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience." msgstr "Grazie per averci dato la possibilità di risolvere il problema! È stato appena inviato un messaggio al nostro staff tecnico. Ti risponderemo non appena avremo un aggiornamento riguardante %s. Grazie per la tua pazienza." -#: includes/class-freemius.php:4340 +#: includes/class-freemius.php:4878 msgctxt "addonX cannot run without pluginY" msgid "%s cannot run without %s." msgstr "%s non può funzionare senza %s." -#: includes/class-freemius.php:4341 +#: includes/class-freemius.php:4879 msgctxt "addonX cannot run..." msgid "%s cannot run without the plugin." msgstr "%s non può funzionare senza il plugin." -#: includes/class-freemius.php4487, includes/class-freemius.php4512, -#: includes/class-freemius.php:17953 +#: includes/class-freemius.php5052, includes/class-freemius.php5077, +#: includes/class-freemius.php:20122 msgid "Unexpected API error. Please contact the %s's author with the following error." msgstr "Errore API inaspettato. Contatta l'autore di %s con il seguente errore." -#: includes/class-freemius.php:5130 +#: includes/class-freemius.php:5720 msgid "Premium %s version was successfully activated." msgstr "La versione 1%s Permium è stata attivata con successo." -#: includes/class-freemius.php5142, includes/class-freemius.php:7004 +#: includes/class-freemius.php5732, includes/class-freemius.php:7599 msgctxt "" msgid "W00t" msgstr "Forte" -#: includes/class-freemius.php:5157 +#: includes/class-freemius.php:5747 msgid "You have a %s license." msgstr "Hai la licenza %s." -#: includes/class-freemius.php5161, includes/class-freemius.php14337, -#: includes/class-freemius.php14348, includes/class-freemius.php17177, -#: includes/class-freemius.php17491, includes/class-freemius.php17557, -#: includes/class-freemius.php:17707 +#: includes/class-freemius.php5751, includes/class-freemius.php15975, +#: includes/class-freemius.php15986, includes/class-freemius.php19292, +#: includes/class-freemius.php19642, includes/class-freemius.php19711, +#: includes/class-freemius.php:19876 msgctxt "interjection expressing joy or exuberance" msgid "Yee-haw" msgstr "Evvai" -#: includes/class-freemius.php:5425 +#: includes/class-freemius.php:6015 msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license." msgstr "Il periodo di prova gratuito %s è stato annullato con successo. Siccome l'add-on è premium, è stato disattivato automaticamente. Se vorrai usarlo in futuro, dovrai comprare una licenza." -#: includes/class-freemius.php:5429 +#: includes/class-freemius.php:6019 msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin." msgstr "%s è un add-on premium. Devi comprare una licenza prima di poter attivare il plugin." -#: includes/class-freemius.php5438, templates/add-ons.php103, -#: templates/account/partials/addon.php:288 +#: includes/class-freemius.php6028, templates/add-ons.php186, +#: templates/account/partials/addon.php:381 msgid "More information about %s" msgstr "Ulteriori informazioni su %s" -#: includes/class-freemius.php:5439 +#: includes/class-freemius.php:6029 msgid "Purchase License" msgstr "Acquista licenza" -#: includes/class-freemius.php6372, templates/connect.php:163 +#: includes/class-freemius.php6964, templates/connect.php:163 msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s." msgstr "Dovresti ricevere un'email di attivazione di %s all'indirizzo %s. Assicurati di fare clic sul pulsante di attivazione nell'email per %s." -#: includes/class-freemius.php:6376 +#: includes/class-freemius.php:6968 msgid "start the trial" msgstr "Inizia il periodo di prova gratuito" -#: includes/class-freemius.php6377, templates/connect.php:167 +#: includes/class-freemius.php6969, templates/connect.php:167 msgid "complete the install" msgstr "completa l'installazione" -#: includes/class-freemius.php:6490 +#: includes/class-freemius.php:7081 msgid "You are just one step away - %s" msgstr "Sei a un passo dalla fine - %s" -#: includes/class-freemius.php:6493 +#: includes/class-freemius.php:7084 msgctxt "%s - plugin name. As complete \"PluginX\" activation now" msgid "Complete \"%s\" Activation Now" msgstr "Completa l'attivazione di \"%s\" ora" -#: includes/class-freemius.php:6571 +#: includes/class-freemius.php:7162 msgid "We made a few tweaks to the %s, %s" msgstr "Abbiamo fatto alcune migliore a %s,%s" -#: includes/class-freemius.php:6575 +#: includes/class-freemius.php:7166 msgid "Opt in to make \"%s\" better!" msgstr "Opt in to make \"%s\" better!" -#: includes/class-freemius.php:7003 +#: includes/class-freemius.php:7598 msgid "The upgrade of %s was successfully completed." msgstr "L'aggiornamento di %s è stato completato con successo." -#: includes/class-freemius.php8925, includes/class-fs-plugin-updater.php886, -#: includes/class-fs-plugin-updater.php1081, -#: includes/class-fs-plugin-updater.php1088, +#: includes/class-freemius.php9802, includes/class-fs-plugin-updater.php1038, +#: includes/class-fs-plugin-updater.php1233, +#: includes/class-fs-plugin-updater.php1240, #: templates/auto-installation.php:32 msgid "Add-On" msgstr "Add-on" -#: includes/class-freemius.php8927, templates/debug.php359, -#: templates/debug.php:520 +#: includes/class-freemius.php9804, templates/account.php335, +#: templates/account.php343, templates/debug.php360, templates/debug.php:551 msgid "Plugin" msgstr "Plugin" -#: includes/class-freemius.php8928, templates/debug.php359, -#: templates/debug.php520, templates/forms/deactivation/form.php:67 +#: includes/class-freemius.php9805, templates/account.php336, +#: templates/account.php344, templates/debug.php360, templates/debug.php551, +#: templates/forms/deactivation/form.php:71 msgid "Theme" msgstr "Tema" -#: includes/class-freemius.php:11412 +#: includes/class-freemius.php:12596 +msgid "An unknown error has occurred while trying to set the user's beta mode." +msgstr "An unknown error has occurred while trying to set the user's beta mode." + +#: includes/class-freemius.php:13020 msgid "Invalid site details collection." msgstr "Invalid site details collection." -#: includes/class-freemius.php:11532 +#: includes/class-freemius.php:13140 msgid "We couldn't find your email address in the system, are you sure it's the right address?" msgstr "Non siamo riusciti a trovare il tuo indirizzo email nel sistema, sei sicuro che sia l'indirizzo giusto?" -#: includes/class-freemius.php:11534 +#: includes/class-freemius.php:13142 msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?" msgstr "Non siamo riusciti a trovare alcuna licenza attiva associata al tuo indirizzo email, sei sicuro che sia l'indirizzo giusto?" -#: includes/class-freemius.php:11808 +#: includes/class-freemius.php:13416 msgid "Account is pending activation." msgstr "Account in attesa di attivazione." -#: includes/class-freemius.php11920, +#: includes/class-freemius.php13528, #: templates/forms/premium-versions-upgrade-handler.php:47 msgid "Buy a license now" msgstr "Compra una licenza ora" -#: includes/class-freemius.php11932, +#: includes/class-freemius.php13540, #: templates/forms/premium-versions-upgrade-handler.php:46 msgid "Renew your license now" msgstr "Rinnova la tua licenza ora" -#: includes/class-freemius.php:11936 +#: includes/class-freemius.php:13544 msgid "%s to access version %s security & feature updates, and support." msgstr "%s to access version %s security & feature updates, and support." -#: includes/class-freemius.php:14319 +#: includes/class-freemius.php:15957 msgid "%s activation was successfully completed." msgstr "%s è stato attivato con successo." -#: includes/class-freemius.php:14333 +#: includes/class-freemius.php:15971 msgid "Your account was successfully activated with the %s plan." msgstr "Il tuo account è stato attivato correttamente con il piano %s." -#: includes/class-freemius.php14344, includes/class-freemius.php:17553 +#: includes/class-freemius.php15982, includes/class-freemius.php:19707 msgid "Your trial has been successfully started." msgstr "La versione di prova è stata avviata correttamente." -#: includes/class-freemius.php14914, includes/class-freemius.php14966, -#: includes/class-freemius.php:15028 +#: includes/class-freemius.php16556, includes/class-freemius.php16644, +#: includes/class-freemius.php:16810 msgid "Couldn't activate %s." msgstr "Non é stato possibile attivare %s." -#: includes/class-freemius.php14915, includes/class-freemius.php14967, -#: includes/class-freemius.php:15029 +#: includes/class-freemius.php16557, includes/class-freemius.php16645, +#: includes/class-freemius.php:16811 msgid "Please contact us with the following message:" msgstr "Contattaci con il seguente messaggio:" -#: includes/class-freemius.php15378, includes/class-freemius.php:19839 +#: includes/class-freemius.php16641, templates/forms/data-debug-mode.php:162 +msgid "An unknown error has occurred." +msgstr "An unknown error has occurred." + +#: includes/class-freemius.php17168, includes/class-freemius.php:22082 msgid "Upgrade" msgstr "Aggiornamento" -#: includes/class-freemius.php:15384 +#: includes/class-freemius.php:17174 msgid "Start Trial" msgstr "Inizia il periodo di prova gratuito" -#: includes/class-freemius.php:15386 +#: includes/class-freemius.php:17176 msgid "Pricing" msgstr "Prezzi" -#: includes/class-freemius.php15448, includes/class-freemius.php:15450 +#: includes/class-freemius.php17256, includes/class-freemius.php:17258 msgid "Affiliation" msgstr "Affiliazione" -#: includes/class-freemius.php15478, includes/class-freemius.php15480, -#: templates/account.php150, templates/debug.php:324 +#: includes/class-freemius.php17286, includes/class-freemius.php17288, +#: templates/account.php183, templates/debug.php:326 msgid "Account" msgstr "Account" -#: includes/class-freemius.php15493, includes/class-freemius.php15495, +#: includes/class-freemius.php17302, includes/class-freemius.php17304, #: includes/customizer/class-fs-customizer-support-section.php:60 msgid "Contact Us" msgstr "Contattaci" -#: includes/class-freemius.php15505, includes/class-freemius.php15507, -#: includes/class-freemius.php19849, templates/account.php100, -#: templates/account/partials/addon.php:41 +#: includes/class-freemius.php17315, includes/class-freemius.php17317, +#: includes/class-freemius.php22096, templates/account.php111, +#: templates/account/partials/addon.php:44 msgid "Add-Ons" msgstr "Addon" -#: includes/class-freemius.php:15541 +#: includes/class-freemius.php:17351 msgctxt "ASCII arrow left icon" msgid "←" msgstr "←" -#: includes/class-freemius.php:15541 +#: includes/class-freemius.php:17351 msgctxt "ASCII arrow right icon" msgid "➤" msgstr "➤" -#: includes/class-freemius.php15543, templates/pricing.php:97 +#: includes/class-freemius.php17353, templates/pricing.php:103 msgctxt "noun" msgid "Pricing" msgstr "Prezzi" -#: includes/class-freemius.php15756, +#: includes/class-freemius.php17566, #: includes/customizer/class-fs-customizer-support-section.php:67 msgid "Support Forum" msgstr "Forum di supporto" -#: includes/class-freemius.php:16542 +#: includes/class-freemius.php:18536 msgid "Your email has been successfully verified - you are AWESOME!" msgstr "Il tuo indirizzo email è stato verificato con successo - SEI UN GRANDE!" -#: includes/class-freemius.php:16543 +#: includes/class-freemius.php:18537 msgctxt "a positive response" msgid "Right on" msgstr "Sì" -#: includes/class-freemius.php:17168 +#: includes/class-freemius.php:19041 +msgid "seems like the key you entered doesn't match our records." +msgstr "seems like the key you entered doesn't match our records." + +#: includes/class-freemius.php:19065 +msgid "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." +msgstr "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." + +#: includes/class-freemius.php:19283 msgid "Your %s Add-on plan was successfully upgraded." msgstr "Il piano del tuo add-on %s è stato aggiornato con successo." -#: includes/class-freemius.php:17170 +#: includes/class-freemius.php:19285 msgid "%s Add-on was successfully purchased." msgstr "L' add-on %s è stato acquistato con successo." -#: includes/class-freemius.php:17173 +#: includes/class-freemius.php:19288 msgid "Download the latest version" msgstr "Scarica l'ultima versione" -#: includes/class-freemius.php:17259 -msgctxt "%1s - plugin title, %2s - API domain" -msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s" -msgstr "Il tuo server sta bloccando l'accesso all'API di Freemius. L'accesso è cruciale per quanto riguarda la la sincronizzazione di %1s. Per favore contatta il tuo host per aggiungere %2s alla whitelist." +#: includes/class-freemius.php:19374 +msgid "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s" +msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s" -#: includes/class-freemius.php17262, includes/class-freemius.php17678, -#: includes/class-freemius.php:17755 +#: includes/class-freemius.php19380, includes/class-freemius.php19390, +#: includes/class-freemius.php19835, includes/class-freemius.php:19924 msgid "Error received from the server:" msgstr "Errore ricevuto dal server:" -#: includes/class-freemius.php:17272 +#: includes/class-freemius.php:19390 msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again." msgstr "Sembra che uno dei parametri di autenticazione sia sbagliato. Aggiorna la tua chiave pubblica, Secret Key & User ID e riprova." -#: includes/class-freemius.php17454, includes/class-freemius.php17683, -#: includes/class-freemius.php17726, includes/class-freemius.php:17829 +#: includes/class-freemius.php19604, includes/class-freemius.php19840, +#: includes/class-freemius.php19895, includes/class-freemius.php:19998 msgctxt "" msgid "Hmm" msgstr "Uhm" -#: includes/class-freemius.php:17467 +#: includes/class-freemius.php:19617 msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry." msgstr "Sembra che tu sia ancora usando il piano %s. Se hai effettuato un upgrade o cambiato il piano, è probabile che ci sia un problema nei nostri sistemi." -#: includes/class-freemius.php17468, templates/account.php102, -#: templates/add-ons.php134, templates/account/partials/addon.php:43 +#: includes/class-freemius.php19618, templates/account.php113, +#: templates/add-ons.php250, templates/account/partials/addon.php:46 msgctxt "trial period" msgid "Trial" msgstr "Prova gratuita" -#: includes/class-freemius.php:17473 +#: includes/class-freemius.php:19623 msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s." msgstr "Ho aggiornato il mio account, ma quando cerco di sincronizzare la licenza, il piano rimane %s." -#: includes/class-freemius.php17477, includes/class-freemius.php:17535 +#: includes/class-freemius.php19627, includes/class-freemius.php:19686 msgid "Please contact us here" msgstr "Contattaci qui" -#: includes/class-freemius.php:17487 +#: includes/class-freemius.php:19638 +msgid "Your plan was successfully activated." +msgstr "Your plan was successfully activated." + +#: includes/class-freemius.php:19639 msgid "Your plan was successfully upgraded." msgstr "Il piano è stato aggiornato con successo." -#: includes/class-freemius.php:17505 +#: includes/class-freemius.php:19656 msgid "Your plan was successfully changed to %s." msgstr "Il piano è stato cambiato con successo a %s." -#: includes/class-freemius.php:17521 +#: includes/class-freemius.php:19672 msgid "Your license has expired. You can still continue using the free %s forever." msgstr "La tua licenza è scaduta. Puoi continuare ad usare la versione gratuita %s per sempre." -#: includes/class-freemius.php:17523 +#: includes/class-freemius.php:19674 msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." msgstr "La tua licenza è scaduta. %1$saggiorna ora %2$sper continuare ad utilizzare %3$s senza interruzioni." -#: includes/class-freemius.php:17531 +#: includes/class-freemius.php:19682 msgid "Your license has been cancelled. If you think it's a mistake, please contact support." msgstr "La tua licenza è stata cancellata. Se credi sia un errore, per favore contatta il supporto." -#: includes/class-freemius.php:17544 +#: includes/class-freemius.php:19695 msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support." msgstr "La licenza è scaduta. È comunque possibile continuare a utilizzare tutte le funzionalità di %s, ma sarà necessario rinnovare la licenza per continuare a ricevere gli aggiornamenti ed il supporto." -#: includes/class-freemius.php:17567 +#: includes/class-freemius.php:19721 msgid "Your free trial has expired. You can still continue using all our free features." msgstr "La tua versione di prova gratuita è scaduta. Puoi continuare ad usare tutte le funzionalità gratuite." -#: includes/class-freemius.php:17569 +#: includes/class-freemius.php:19723 msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." msgstr "La tua versione prova è scaduta.%1$s aggiorna ora %2$s per continuare ad usare %3$s senza interruzioni." -#: includes/class-freemius.php:17674 +#: includes/class-freemius.php:19831 msgid "It looks like the license could not be activated." msgstr "Sembra che la licenza non possa essere attivata." -#: includes/class-freemius.php:17704 +#: includes/class-freemius.php:19873 msgid "Your license was successfully activated." msgstr "La tua licenza è stata attivata correttamente." -#: includes/class-freemius.php:17730 +#: includes/class-freemius.php:19899 msgid "It looks like your site currently doesn't have an active license." msgstr "Sembra che il tuo sito non disponga di alcuna licenza attiva." -#: includes/class-freemius.php:17754 +#: includes/class-freemius.php:19923 msgid "It looks like the license deactivation failed." msgstr "Sembra che la disattivazione della licenza non sia riuscita." -#: includes/class-freemius.php:17782 +#: includes/class-freemius.php:19951 msgid "Your license was successfully deactivated, you are back to the %s plan." msgstr "La tua licenza é stata disattivata con successo, sei tornato al piano %s." -#: includes/class-freemius.php:17783 +#: includes/class-freemius.php:19952 msgid "O.K" msgstr "OK" -#: includes/class-freemius.php:17836 +#: includes/class-freemius.php:20005 msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes." msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes." -#: includes/class-freemius.php:17845 +#: includes/class-freemius.php:20014 msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s." msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s." -#: includes/class-freemius.php:17887 +#: includes/class-freemius.php:20056 msgid "You are already running the %s in a trial mode." msgstr "Stai già usando %s in modalità prova." -#: includes/class-freemius.php:17898 +#: includes/class-freemius.php:20067 msgid "You already utilized a trial before." msgstr "Hai già utilizzato una prova gratuita in passato." -#: includes/class-freemius.php:17912 +#: includes/class-freemius.php:20081 msgid "Plan %s do not exist, therefore, can't start a trial." msgstr "Il piano %s non esiste, per questo motivo non è possibile iniziare il periodo di prova." -#: includes/class-freemius.php:17923 +#: includes/class-freemius.php:20092 msgid "Plan %s does not support a trial period." msgstr "Il piano %s non supporta il periodo di prova." -#: includes/class-freemius.php:17934 +#: includes/class-freemius.php:20103 msgid "None of the %s's plans supports a trial period." msgstr "Nessuno dei piani di %ssupporta il periodo di prova." -#: includes/class-freemius.php:17984 +#: includes/class-freemius.php:20153 msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)" msgstr "Sembra che tu non stia più usando la prova gratuita, quindi non c'è niente che tu debba annullare :)" -#: includes/class-freemius.php:18020 +#: includes/class-freemius.php:20189 msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes." msgstr "Stiamo avendo qualche problema temporaneo con l'annullamento del periodo di prova. Riprova tra qualche minuto." -#: includes/class-freemius.php:18039 +#: includes/class-freemius.php:20208 msgid "Your %s free trial was successfully cancelled." msgstr "Il tuo periodo di prova gratuito %s è stato annullato con successo." -#: includes/class-freemius.php:18346 +#: includes/class-freemius.php:20524 msgid "Version %s was released." msgstr "La versione %s é stata rilasciata." -#: includes/class-freemius.php:18346 +#: includes/class-freemius.php:20524 msgid "Please download %s." msgstr "Scarica %s." -#: includes/class-freemius.php:18353 +#: includes/class-freemius.php:20531 msgid "the latest %s version here" msgstr "l'ultima versione %s é quì" -#: includes/class-freemius.php:18358 +#: includes/class-freemius.php:20536 msgid "New" msgstr "Nuovo" -#: includes/class-freemius.php:18363 +#: includes/class-freemius.php:20541 msgid "Seems like you got the latest release." msgstr "Sembra che tu abbia la versione più recente." -#: includes/class-freemius.php:18364 +#: includes/class-freemius.php:20542 msgid "You are all good!" msgstr "Sei fantastico!" -#: includes/class-freemius.php:18632 +#: includes/class-freemius.php:20812 msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box." msgstr "L'email di verifica è stata inviata a %s. Se dopo 5 minuti non è ancora arrivata, per favore controlla nella tua casella di posta indesiderata." -#: includes/class-freemius.php:18769 +#: includes/class-freemius.php:20951 msgid "Site successfully opted in." msgstr "Sito accettato con successo." -#: includes/class-freemius.php18770, includes/class-freemius.php:19581 +#: includes/class-freemius.php20952, includes/class-freemius.php:21792 msgid "Awesome" msgstr "Fantastico" -#: includes/class-freemius.php18786, templates/forms/optout.php:32 +#: includes/class-freemius.php20968, templates/forms/optout.php:32 msgid "We appreciate your help in making the %s better by letting us track some usage data." msgstr "Ti ringraziamo per averci concesso di tracciare alcuni dati di utilizzo al fine di migliorare %s." -#: includes/class-freemius.php:18787 +#: includes/class-freemius.php:20969 msgid "Thank you!" msgstr "Grazie!" -#: includes/class-freemius.php:18794 +#: includes/class-freemius.php:20976 msgid "We will no longer be sending any usage data of %s on %s to %s." msgstr "Non possiamo più inviare i dati di utilizzo di %ssu %sa %s." -#: includes/class-freemius.php:18923 +#: includes/class-freemius.php:21105 msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder." msgstr "Verifica di aver ricevuto l'email da %s per confermare il cambiamento del proprietario. Per ragioni di sicurezza devi confermare il cambiamento entro 15 minuti. Se non trovi l'email controlla nella posta indesiderata." -#: includes/class-freemius.php:18929 +#: includes/class-freemius.php:21111 msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval." msgstr "Grazie per aver confermato il cambiamento del proprietario. Un' email è stata appena inviata a %s per la conferma finale." -#: includes/class-freemius.php:18934 +#: includes/class-freemius.php:21116 msgid "%s is the new owner of the account." msgstr "%s è il nuovo proprietario dell'account." -#: includes/class-freemius.php:18936 +#: includes/class-freemius.php:21118 msgctxt "as congratulations" msgid "Congrats" msgstr "Congratulazioni" -#: includes/class-freemius.php:18956 +#: includes/class-freemius.php:21138 msgid "Sorry, we could not complete the email update. Another user with the same email is already registered." msgstr "Siamo spiacenti, non siamo riusciti a completare l'aggiornamento via email. Un altro utente con lo stesso indirizzo email è già registrato." -#: includes/class-freemius.php:18957 +#: includes/class-freemius.php:21139 msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button." msgstr "Puoi abbandonare la proprietà dell'account %s a %scliccando il pulsante Cambia proprietario." -#: includes/class-freemius.php:18964 +#: includes/class-freemius.php:21146 msgid "Change Ownership" msgstr "Cambia Proprietario" -#: includes/class-freemius.php:18972 +#: includes/class-freemius.php:21154 msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments." msgstr "Il tuo indirizzo email è stato aggiornato correttamente. Riceverai un'email con le istruzioni di conferma in pochi istanti." -#: includes/class-freemius.php:18984 +#: includes/class-freemius.php:21166 msgid "Please provide your full name." msgstr "Per favore inserisci il tuo nome completo." -#: includes/class-freemius.php:18989 +#: includes/class-freemius.php:21171 msgid "Your name was successfully updated." msgstr "Il tuo nome è stato aggiornato correttamente." -#: includes/class-freemius.php:19050 +#: includes/class-freemius.php:21232 msgid "You have successfully updated your %s." msgstr "Hai aggiornato con successo il tuo %s." -#: includes/class-freemius.php:19190 +#: includes/class-freemius.php:21372 msgid "Just letting you know that the add-ons information of %s is being pulled from an external server." msgstr "Le informazioni sugli add-on di %s vengono scaricate da un server esterno." -#: includes/class-freemius.php:19191 +#: includes/class-freemius.php:21373 msgctxt "advance notice of something that will need attention." msgid "Heads up" msgstr "Attenzione" -#: includes/class-freemius.php:19621 +#: includes/class-freemius.php:21832 msgctxt "exclamation" msgid "Hey" msgstr "Hey" -#: includes/class-freemius.php:19621 +#: includes/class-freemius.php:21832 msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial." msgstr "Come sta andando con %s? Prova tutte le funzionalità premium di %s con una prova gratuita di %d giorni." -#: includes/class-freemius.php:19629 +#: includes/class-freemius.php:21840 msgid "No commitment for %s days - cancel anytime!" msgstr "Nessun impegno per %s giorni - puoi annullare in qualsiasi momento!" -#: includes/class-freemius.php:19630 +#: includes/class-freemius.php:21841 msgid "No credit card required" msgstr "Nessuna carta di credito richiesta" -#: includes/class-freemius.php19637, templates/forms/trial-start.php:53 +#: includes/class-freemius.php21848, templates/forms/trial-start.php:53 msgctxt "call to action" msgid "Start free trial" msgstr "Inizia il periodo di prova gratuito" -#: includes/class-freemius.php:19714 +#: includes/class-freemius.php:21925 msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!" msgstr "Ciao, sai che %s ha il programma di affiliazione? Se ti piace %s puoi diventare un nostro ambasciatore e guadagnare denaro!" -#: includes/class-freemius.php:19723 +#: includes/class-freemius.php:21934 msgid "Learn more" msgstr "Scopri altro" -#: includes/class-freemius.php19873, templates/account.php406, -#: templates/account.php509, templates/connect.php171, -#: templates/connect.php421, templates/forms/license-activation.php24, -#: templates/account/partials/addon.php:235 +#: includes/class-freemius.php22120, templates/account.php499, +#: templates/account.php624, templates/connect.php171, +#: templates/connect.php421, templates/forms/license-activation.php27, +#: templates/account/partials/addon.php:321 msgid "Activate License" msgstr "Attiva licenza" -#: includes/class-freemius.php19874, templates/account.php469, -#: templates/account.php508, templates/account/partials/site.php:256 +#: includes/class-freemius.php22121, templates/account.php571, +#: templates/account.php623, templates/account/partials/addon.php322, +#: templates/account/partials/site.php:271 msgid "Change License" msgstr "Cambia licenza" -#: includes/class-freemius.php19956, templates/account/partials/site.php:161 +#: includes/class-freemius.php22217, templates/account/partials/site.php:169 msgid "Opt Out" msgstr "Cancella iscrizione" -#: includes/class-freemius.php19958, includes/class-freemius.php19963, -#: templates/account/partials/site.php43, -#: templates/account/partials/site.php:161 +#: includes/class-freemius.php22219, includes/class-freemius.php22225, +#: templates/account/partials/site.php49, +#: templates/account/partials/site.php:169 msgid "Opt In" msgstr "Iscriviti" -#: includes/class-freemius.php:20187 -msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s" -msgstr " La versione a pagamento di%1s è già installata. Attivala per iniziare a usare le funzionalità di %2s features. %3s" +#: includes/class-freemius.php:22453 +msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s" +msgstr " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s" -#: includes/class-freemius.php:20195 +#: includes/class-freemius.php:22461 msgid "Activate %s features" msgstr "Activate %s features" -#: includes/class-freemius.php:20208 +#: includes/class-freemius.php:22474 msgid "Please follow these steps to complete the upgrade" msgstr "Segui i passi seguenti per completare l'aggiornamento" -#: includes/class-freemius.php:20212 +#: includes/class-freemius.php:22478 msgid "Download the latest %s version" msgstr "Scarica l'ultima versione di %s" -#: includes/class-freemius.php:20216 +#: includes/class-freemius.php:22482 msgid "Upload and activate the downloaded version" msgstr "Carica e attiva la versione scaricata" -#: includes/class-freemius.php:20218 +#: includes/class-freemius.php:22484 msgid "How to upload and activate?" msgstr "Come faccio a caricare ed attivare?" -#: includes/class-freemius.php:20352 +#: includes/class-freemius.php:22618 msgid "%sClick here%s to choose the sites where you'd like to activate the license on." msgstr "%sClicca qui%s per scegliere i siti dove vuoi attivare la licenza." -#: includes/class-freemius.php:20513 +#: includes/class-freemius.php:22779 msgid "Auto installation only works for opted-in users." msgstr "L'installazione automatica funziona solo per gli utenti che hanno dato il consenso." -#: includes/class-freemius.php20523, includes/class-freemius.php20556, -#: includes/class-fs-plugin-updater.php1060, -#: includes/class-fs-plugin-updater.php:1074 +#: includes/class-freemius.php22789, includes/class-freemius.php22822, +#: includes/class-fs-plugin-updater.php1212, +#: includes/class-fs-plugin-updater.php:1226 msgid "Invalid module ID." msgstr "ID modulo non valida." -#: includes/class-freemius.php20532, includes/class-fs-plugin-updater.php:1096 +#: includes/class-freemius.php22798, includes/class-fs-plugin-updater.php:1248 msgid "Premium version already active." msgstr "Versione Premium già attiva." -#: includes/class-freemius.php:20539 +#: includes/class-freemius.php:22805 msgid "You do not have a valid license to access the premium version." msgstr "Non disponi di una licenza valida per accedere alla versione Premium." -#: includes/class-freemius.php:20546 +#: includes/class-freemius.php:22812 msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version." msgstr "Il plugin è un \"Serviceware\", quindi non dispone di una versione del codice Premium." -#: includes/class-freemius.php20564, includes/class-fs-plugin-updater.php:1095 +#: includes/class-freemius.php22830, includes/class-fs-plugin-updater.php:1247 msgid "Premium add-on version already installed." msgstr "Versione Premium dell'add-on già installata." -#: includes/class-freemius.php:20909 +#: includes/class-freemius.php:23180 msgid "View paid features" msgstr "Vedi funzionalità a pagamento" -#: includes/class-freemius.php:21229 +#: includes/class-freemius.php:23502 msgid "Thank you so much for using %s and its add-ons!" msgstr "Grazie per utilizzare %se i suoi addon!" -#: includes/class-freemius.php:21230 +#: includes/class-freemius.php:23503 msgid "Thank you so much for using %s!" msgstr "Grazie per utilizzare %s!" -#: includes/class-freemius.php:21236 +#: includes/class-freemius.php:23509 msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s." msgstr "Hai già accettato il tracciamento d'uso, ci aiuterà a migliorare %s." -#: includes/class-freemius.php:21240 +#: includes/class-freemius.php:23513 msgid "Thank you so much for using our products!" msgstr "Grazie per utilizzare i nostri prodotti!" -#: includes/class-freemius.php:21241 +#: includes/class-freemius.php:23514 msgid "You've already opted-in to our usage-tracking, which helps us keep improving them." msgstr "Hai già accettato il tracciamento d'uso che ci aiuta a migliorare." -#: includes/class-freemius.php:21260 +#: includes/class-freemius.php:23533 msgid "%s and its add-ons" msgstr "%se i suoi addon" -#: includes/class-freemius.php:21269 +#: includes/class-freemius.php:23542 msgid "Products" msgstr "Prodotti" -#: includes/class-freemius.php21276, templates/connect.php:272 +#: includes/class-freemius.php23549, templates/connect.php:272 msgid "Yes" msgstr "Si" -#: includes/class-freemius.php21277, templates/connect.php:273 +#: includes/class-freemius.php23550, templates/connect.php:273 msgid "send me security & feature updates, educational content and offers." msgstr "inviami aggiornamenti di funzionalità e sicurezza, contenuti formativi e offerte." -#: includes/class-freemius.php21278, templates/connect.php:278 +#: includes/class-freemius.php23551, templates/connect.php:278 msgid "No" msgstr "No" -#: includes/class-freemius.php21280, templates/connect.php:280 +#: includes/class-freemius.php23553, templates/connect.php:280 msgid "do %sNOT%s send me security & feature updates, educational content and offers." msgstr "%snon %s mi invierà aggiornamenti di funzionalità e sicurezza, contenuti formativi e offerte." -#: includes/class-freemius.php:21290 -msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂" -msgstr "A causa della nuova %sRegolamento Europeo sulla Privacy (GDPR)%se i suoi requisiti è necessario che accetti esplicitamente il consenso confermando nuovamente che accetti" +#: includes/class-freemius.php:23563 +msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard :-)" +msgstr "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard :-)" -#: includes/class-freemius.php21292, templates/connect.php:287 +#: includes/class-freemius.php23565, templates/connect.php:287 msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:" msgstr "Facci sapere se vuoi essere contattato per aggiornamenti di sicurezza e di funzionalità, contenuti formativi e offerte occasionali:" -#: includes/class-freemius.php:21574 +#: includes/class-freemius.php:23847 msgid "License key is empty." msgstr "La chiave licenza è vuota." -#: includes/class-fs-plugin-updater.php184, +#: includes/class-fs-plugin-updater.php206, #: templates/forms/premium-versions-upgrade-handler.php:57 msgid "Renew license" msgstr "Rinnova licenza" -#: includes/class-fs-plugin-updater.php189, +#: includes/class-fs-plugin-updater.php211, #: templates/forms/premium-versions-upgrade-handler.php:58 msgid "Buy license" msgstr "Buy license" -#: includes/class-fs-plugin-updater.php:278 +#: includes/class-fs-plugin-updater.php321, +#: includes/class-fs-plugin-updater.php:354 msgid "There is a %s of %s available." msgstr "There is a %s of %s available." -#: includes/class-fs-plugin-updater.php:282 +#: includes/class-fs-plugin-updater.php323, +#: includes/class-fs-plugin-updater.php:359 +msgid "new Beta version" +msgstr "new Beta version" + +#: includes/class-fs-plugin-updater.php324, +#: includes/class-fs-plugin-updater.php:360 msgid "new version" msgstr "new version" -#: includes/class-fs-plugin-updater.php:305 +#: includes/class-fs-plugin-updater.php:383 msgid "Important Upgrade Notice:" msgstr "Important Upgrade Notice:" -#: includes/class-fs-plugin-updater.php:1125 +#: includes/class-fs-plugin-updater.php:1277 msgid "Installing plugin: %s" msgstr "Installazione plugin: %s" -#: includes/class-fs-plugin-updater.php:1166 +#: includes/class-fs-plugin-updater.php:1318 msgid "Unable to connect to the filesystem. Please confirm your credentials." msgstr "Impossibile accedere al filesystem. Conferma le tue credenziali." -#: includes/class-fs-plugin-updater.php:1348 +#: includes/class-fs-plugin-updater.php:1500 msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work." msgstr "Il pacchetto remoto del plugin non contiene una cartella con lo slug desiderato e la rinominazione non ha funzionato." -#: includes/fs-plugin-info-dialog.php369, -#: templates/account/partials/addon.php:292 +#: includes/fs-plugin-info-dialog.php:535 +msgid "Purchase More" +msgstr "Purchase More" + +#: includes/fs-plugin-info-dialog.php536, +#: templates/account/partials/addon.php:385 msgctxt "verb" msgid "Purchase" msgstr "Acquisto" -#: includes/fs-plugin-info-dialog.php:372 +#: includes/fs-plugin-info-dialog.php:540 msgid "Start my free %s" msgstr "Inizia la mia %s" -#: includes/fs-plugin-info-dialog.php:413 +#: includes/fs-plugin-info-dialog.php:738 +msgid "Install Free Version Update Now" +msgstr "Installa l'ultima versione gratuita" + +#: includes/fs-plugin-info-dialog.php739, templates/account.php:560 +msgid "Install Update Now" +msgstr "Installa l'aggiornamento ora" + +#: includes/fs-plugin-info-dialog.php:748 msgid "Install Free Version Now" msgstr "Installa la versione gratuita ora" -#: includes/fs-plugin-info-dialog.php414, templates/auto-installation.php111, -#: templates/account/partials/addon.php272, -#: templates/account/partials/addon.php:322 +#: includes/fs-plugin-info-dialog.php749, templates/add-ons.php323, +#: templates/auto-installation.php111, +#: templates/account/partials/addon.php365, +#: templates/account/partials/addon.php:418 msgid "Install Now" msgstr "Installa ora" -#: includes/fs-plugin-info-dialog.php:425 +#: includes/fs-plugin-info-dialog.php:765 msgctxt "as download latest version" msgid "Download Latest Free Version" msgstr "Scarica l'ultima versione gratuita" -#: includes/fs-plugin-info-dialog.php426, templates/account.php80, -#: templates/account/partials/addon.php:21 +#: includes/fs-plugin-info-dialog.php766, templates/account.php91, +#: templates/add-ons.php37, templates/account/partials/addon.php:25 msgctxt "as download latest version" msgid "Download Latest" msgstr "Scarica l'ultima versione" -#: includes/fs-plugin-info-dialog.php:436 -msgid "Install Free Version Update Now" -msgstr "Installa l'ultima versione gratuita" - -#: includes/fs-plugin-info-dialog.php437, templates/account.php:460 -msgid "Install Update Now" -msgstr "Installa l'aggiornamento ora" - -#: includes/fs-plugin-info-dialog.php:448 -msgid "Newer Free Version (%s) Installed" -msgstr "Nuova versione gratuita (%s) installata" - -#: includes/fs-plugin-info-dialog.php:449 -msgid "Newer Version (%s) Installed" -msgstr "Versione più recente (%s) installata" +#: includes/fs-plugin-info-dialog.php781, templates/add-ons.php329, +#: templates/account/partials/addon.php356, +#: templates/account/partials/addon.php:412 +msgid "Activate this add-on" +msgstr "Attivare questo addon" -#: includes/fs-plugin-info-dialog.php:457 -msgid "Latest Free Version Installed" -msgstr "Ultima versione gratuita installata" +#: includes/fs-plugin-info-dialog.php783, templates/connect.php:418 +msgid "Activate Free Version" +msgstr "Attiva versione gratuita" -#: includes/fs-plugin-info-dialog.php:458 -msgid "Latest Version Installed" -msgstr "Versione più recente installata" +#: includes/fs-plugin-info-dialog.php784, templates/account.php115, +#: templates/add-ons.php330, templates/account/partials/addon.php:48 +msgid "Activate" +msgstr "Attiva" -#: includes/fs-plugin-info-dialog.php:613 +#: includes/fs-plugin-info-dialog.php:994 msgctxt "Plugin installer section title" msgid "Description" msgstr "Descrizione" -#: includes/fs-plugin-info-dialog.php:614 +#: includes/fs-plugin-info-dialog.php:995 msgctxt "Plugin installer section title" msgid "Installation" msgstr "Installazione" -#: includes/fs-plugin-info-dialog.php:615 +#: includes/fs-plugin-info-dialog.php:996 msgctxt "Plugin installer section title" msgid "FAQ" msgstr "FAQ" -#: includes/fs-plugin-info-dialog.php616, +#: includes/fs-plugin-info-dialog.php997, #: templates/plugin-info/description.php:55 msgid "Screenshots" msgstr "Screenshot" -#: includes/fs-plugin-info-dialog.php:617 +#: includes/fs-plugin-info-dialog.php:998 msgctxt "Plugin installer section title" msgid "Changelog" msgstr "Changelog" -#: includes/fs-plugin-info-dialog.php:618 +#: includes/fs-plugin-info-dialog.php:999 msgctxt "Plugin installer section title" msgid "Reviews" msgstr "Recensioni" -#: includes/fs-plugin-info-dialog.php:619 +#: includes/fs-plugin-info-dialog.php:1000 msgctxt "Plugin installer section title" msgid "Other Notes" msgstr "Altre note" -#: includes/fs-plugin-info-dialog.php:634 +#: includes/fs-plugin-info-dialog.php:1015 msgctxt "Plugin installer section title" msgid "Features & Pricing" msgstr "Caratteristiche & prezzi" -#: includes/fs-plugin-info-dialog.php:644 +#: includes/fs-plugin-info-dialog.php:1025 msgid "Plugin Install" msgstr "Installazione del plugin" -#: includes/fs-plugin-info-dialog.php:716 +#: includes/fs-plugin-info-dialog.php:1097 msgctxt "e.g. Professional Plan" msgid "%s Plan" msgstr "Piano %s" -#: includes/fs-plugin-info-dialog.php:742 +#: includes/fs-plugin-info-dialog.php:1123 msgctxt "e.g. the best product" msgid "Best" msgstr "Migliore" -#: includes/fs-plugin-info-dialog.php748, -#: includes/fs-plugin-info-dialog.php:768 +#: includes/fs-plugin-info-dialog.php1129, +#: includes/fs-plugin-info-dialog.php:1149 msgctxt "as every month" msgid "Monthly" msgstr "Mensilmente" -#: includes/fs-plugin-info-dialog.php:751 +#: includes/fs-plugin-info-dialog.php:1132 msgctxt "as once a year" msgid "Annual" msgstr "Annuale" -#: includes/fs-plugin-info-dialog.php:754 +#: includes/fs-plugin-info-dialog.php:1135 msgid "Lifetime" msgstr "Tutta la vita" -#: includes/fs-plugin-info-dialog.php768, -#: includes/fs-plugin-info-dialog.php770, -#: includes/fs-plugin-info-dialog.php:772 +#: includes/fs-plugin-info-dialog.php1149, +#: includes/fs-plugin-info-dialog.php1151, +#: includes/fs-plugin-info-dialog.php:1153 msgctxt "e.g. billed monthly" msgid "Billed %s" msgstr "Fatturato %s" -#: includes/fs-plugin-info-dialog.php:770 +#: includes/fs-plugin-info-dialog.php:1151 msgctxt "as once a year" msgid "Annually" msgstr "Annualmente" -#: includes/fs-plugin-info-dialog.php:772 +#: includes/fs-plugin-info-dialog.php:1153 msgctxt "as once a year" msgid "Once" msgstr "Una volta" -#: includes/fs-plugin-info-dialog.php:778 +#: includes/fs-plugin-info-dialog.php:1159 msgid "Single Site License" msgstr "Licenza per sito singolo" -#: includes/fs-plugin-info-dialog.php:780 +#: includes/fs-plugin-info-dialog.php:1161 msgid "Unlimited Licenses" msgstr "Licenze illimitate" -#: includes/fs-plugin-info-dialog.php:782 +#: includes/fs-plugin-info-dialog.php:1163 msgid "Up to %s Sites" msgstr "Fino a %s siti" -#: includes/fs-plugin-info-dialog.php792, +#: includes/fs-plugin-info-dialog.php1173, #: templates/plugin-info/features.php:82 msgctxt "as monthly period" msgid "mo" msgstr "mese" -#: includes/fs-plugin-info-dialog.php799, +#: includes/fs-plugin-info-dialog.php1180, #: templates/plugin-info/features.php:80 msgctxt "as annual period" msgid "year" msgstr "anno" -#: includes/fs-plugin-info-dialog.php:853 +#: includes/fs-plugin-info-dialog.php:1234 msgctxt "noun" msgid "Price" msgstr "Prezzo" -#: includes/fs-plugin-info-dialog.php:901 +#: includes/fs-plugin-info-dialog.php:1282 msgid "Save %s" msgstr "Risparmia %s" -#: includes/fs-plugin-info-dialog.php:911 +#: includes/fs-plugin-info-dialog.php:1292 msgid "No commitment for %s - cancel anytime" msgstr "Nessun impegno con %s - cancella quando vuoi" -#: includes/fs-plugin-info-dialog.php:914 +#: includes/fs-plugin-info-dialog.php:1295 msgid "After your free %s, pay as little as %s" msgstr "Dopo il tuo %s gratuito, paghi solamente %s" -#: includes/fs-plugin-info-dialog.php:925 +#: includes/fs-plugin-info-dialog.php:1306 msgid "Details" msgstr "Dettagli" -#: includes/fs-plugin-info-dialog.php929, templates/account.php91, -#: templates/debug.php201, templates/debug.php238, templates/debug.php452, -#: templates/account/partials/addon.php:32 +#: includes/fs-plugin-info-dialog.php1310, templates/account.php102, +#: templates/debug.php203, templates/debug.php240, templates/debug.php457, +#: templates/account/partials/addon.php:36 msgctxt "product version" msgid "Version" msgstr "Versione" -#: includes/fs-plugin-info-dialog.php:936 +#: includes/fs-plugin-info-dialog.php:1317 msgctxt "as the plugin author" msgid "Author" msgstr "Autore" -#: includes/fs-plugin-info-dialog.php:943 +#: includes/fs-plugin-info-dialog.php:1324 msgid "Last Updated" msgstr "Ultimo aggiornamento" -#: includes/fs-plugin-info-dialog.php948, templates/account.php:376 +#: includes/fs-plugin-info-dialog.php1329, templates/account.php:468 msgctxt "x-ago" msgid "%s ago" msgstr "%s fa" -#: includes/fs-plugin-info-dialog.php:957 +#: includes/fs-plugin-info-dialog.php:1338 msgid "Requires WordPress Version" msgstr "Richiede la versione di WordPress" -#: includes/fs-plugin-info-dialog.php:958 +#: includes/fs-plugin-info-dialog.php:1339 msgid "%s or higher" msgstr "%s o superiore" -#: includes/fs-plugin-info-dialog.php:965 +#: includes/fs-plugin-info-dialog.php:1346 msgid "Compatible up to" msgstr "Compatibile fino a" -#: includes/fs-plugin-info-dialog.php:973 +#: includes/fs-plugin-info-dialog.php:1354 msgid "Downloaded" msgstr "Scaricato" -#: includes/fs-plugin-info-dialog.php:977 +#: includes/fs-plugin-info-dialog.php:1358 msgid "%s time" msgstr "% volta" -#: includes/fs-plugin-info-dialog.php:979 +#: includes/fs-plugin-info-dialog.php:1360 msgid "%s times" msgstr "%s volte" -#: includes/fs-plugin-info-dialog.php:989 +#: includes/fs-plugin-info-dialog.php:1370 msgid "WordPress.org Plugin Page" msgstr "Pagina dei plugin di WordPress.org" -#: includes/fs-plugin-info-dialog.php:997 +#: includes/fs-plugin-info-dialog.php:1378 msgid "Plugin Homepage" msgstr "Homepage del plugin" -#: includes/fs-plugin-info-dialog.php1005, -#: includes/fs-plugin-info-dialog.php:1087 +#: includes/fs-plugin-info-dialog.php1386, +#: includes/fs-plugin-info-dialog.php:1468 msgid "Donate to this plugin" msgstr "Fai una donazione a questo plugin" -#: includes/fs-plugin-info-dialog.php:1012 +#: includes/fs-plugin-info-dialog.php:1393 msgid "Average Rating" msgstr "Valutazione media" -#: includes/fs-plugin-info-dialog.php:1019 +#: includes/fs-plugin-info-dialog.php:1400 msgid "based on %s" msgstr "basato su %s" -#: includes/fs-plugin-info-dialog.php:1023 +#: includes/fs-plugin-info-dialog.php:1404 msgid "%s rating" msgstr "%s valutazione" -#: includes/fs-plugin-info-dialog.php:1025 +#: includes/fs-plugin-info-dialog.php:1406 msgid "%s ratings" msgstr "%s valutazioni" -#: includes/fs-plugin-info-dialog.php:1040 +#: includes/fs-plugin-info-dialog.php:1421 msgid "%s star" msgstr "%s stella" -#: includes/fs-plugin-info-dialog.php:1042 +#: includes/fs-plugin-info-dialog.php:1423 msgid "%s stars" msgstr "%s stelle" -#: includes/fs-plugin-info-dialog.php:1053 +#: includes/fs-plugin-info-dialog.php:1434 msgid "Click to see reviews that provided a rating of %s" msgstr "Fai clic per vedere le recensioni che hanno fornito una valutazione di %s" -#: includes/fs-plugin-info-dialog.php:1066 +#: includes/fs-plugin-info-dialog.php:1447 msgid "Contributors" msgstr "Contributori" -#: includes/fs-plugin-info-dialog.php1095, -#: includes/fs-plugin-info-dialog.php:1097 +#: includes/fs-plugin-info-dialog.php1476, +#: includes/fs-plugin-info-dialog.php:1478 msgid "Warning" msgstr "Avviso" -#: includes/fs-plugin-info-dialog.php:1095 +#: includes/fs-plugin-info-dialog.php:1476 msgid "This plugin has not been tested with your current version of WordPress." msgstr "Questo plugin non è stato testato con la versione corrente di WordPress." -#: includes/fs-plugin-info-dialog.php:1097 +#: includes/fs-plugin-info-dialog.php:1478 msgid "This plugin has not been marked as compatible with your version of WordPress." msgstr "Questo plugin non è stato segnato come compatibile con la tua versione di WordPress." -#: includes/fs-plugin-info-dialog.php:1116 +#: includes/fs-plugin-info-dialog.php:1497 msgid "Paid add-on must be deployed to Freemius." msgstr "Gli add-on a pagamento devono essere distribuiti da Freemius." -#: includes/fs-plugin-info-dialog.php:1117 +#: includes/fs-plugin-info-dialog.php:1498 msgid "Add-on must be deployed to WordPress.org or Freemius." msgstr "L'add-on dev'essere distribuito da WordPress.org o Freemius." -#: templates/account.php81, templates/forms/subscription-cancellation.php96, -#: templates/account/partials/addon.php22, -#: templates/account/partials/site.php:295 +#: includes/fs-plugin-info-dialog.php:1519 +msgid "Newer Version (%s) Installed" +msgstr "Versione più recente (%s) installata" + +#: includes/fs-plugin-info-dialog.php:1520 +msgid "Newer Free Version (%s) Installed" +msgstr "Nuova versione gratuita (%s) installata" + +#: includes/fs-plugin-info-dialog.php:1527 +msgid "Latest Version Installed" +msgstr "Versione più recente installata" + +#: includes/fs-plugin-info-dialog.php:1528 +msgid "Latest Free Version Installed" +msgstr "Ultima versione gratuita installata" + +#: templates/account.php92, templates/forms/subscription-cancellation.php96, +#: templates/account/partials/addon.php26, +#: templates/account/partials/site.php:311 msgid "Downgrading your plan" msgstr "Downgrading your plan" -#: templates/account.php82, templates/forms/subscription-cancellation.php97, -#: templates/account/partials/addon.php23, -#: templates/account/partials/site.php:296 +#: templates/account.php93, templates/forms/subscription-cancellation.php97, +#: templates/account/partials/addon.php27, +#: templates/account/partials/site.php:312 msgid "Cancelling the subscription" msgstr "Cancelling the subscription" -#. translators: %1s: Either 'Downgrading your plan' or 'Cancelling the +#. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the #. subscription' -#: templates/account.php84, templates/forms/subscription-cancellation.php99, -#: templates/account/partials/addon.php25, -#: templates/account/partials/site.php:298 -msgid "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s." -msgstr "%1s fermerà immediatamente ogni futuro pagamento ricorrente e la tua %s licenza scadrà il %s." - -#: templates/account.php85, templates/forms/subscription-cancellation.php100, -#: templates/account/partials/addon.php26, -#: templates/account/partials/site.php:299 +#: templates/account.php95, templates/forms/subscription-cancellation.php99, +#: templates/account/partials/site.php:314 +msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s." +msgstr "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s." + +#: templates/account.php96, templates/forms/subscription-cancellation.php100, +#: templates/account/partials/addon.php30, +#: templates/account/partials/site.php:315 msgid "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price." msgstr "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price." -#: templates/account.php86, templates/forms/subscription-cancellation.php106, -#: templates/account/partials/addon.php:27 +#: templates/account.php97, templates/forms/subscription-cancellation.php106, +#: templates/account/partials/addon.php:31 msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?" msgstr "Cancellando il periodo di prova gratuito bloccherai immediatamente l'accesso a tutte le funzionalità premium. Vuoi continuare?" -#: templates/account.php87, templates/forms/subscription-cancellation.php101, -#: templates/account/partials/addon.php28, -#: templates/account/partials/site.php:300 +#: templates/account.php98, templates/forms/subscription-cancellation.php101, +#: templates/account/partials/addon.php32, +#: templates/account/partials/site.php:316 msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support." msgstr "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support." -#: templates/account.php88, templates/forms/subscription-cancellation.php102, -#: templates/account/partials/addon.php29, -#: templates/account/partials/site.php:301 +#: templates/account.php99, templates/forms/subscription-cancellation.php102, +#: templates/account/partials/addon.php33, +#: templates/account/partials/site.php:317 msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features." msgstr "Quando la tua licenza scadrà, potrai comunque continuare a usare la versione gratuita, ma NON avrai accesso alle funzionalità %s." #. translators: %s: Plan title (e.g. "Professional") -#: templates/account.php90, +#: templates/account.php101, #: templates/account/partials/activate-license-button.php31, -#: templates/account/partials/addon.php:31 +#: templates/account/partials/addon.php:35 msgid "Activate %s Plan" msgstr "Attivare il piano %s" #. translators: %s: Time period (e.g. Auto renews in "2 months") -#: templates/account.php93, templates/account/partials/addon.php34, -#: templates/account/partials/site.php:275 +#: templates/account.php104, templates/account/partials/addon.php38, +#: templates/account/partials/site.php:291 msgid "Auto renews in %s" msgstr "Rinnovo automatico in %s" #. translators: %s: Time period (e.g. Expires in "2 months") -#: templates/account.php95, templates/account/partials/addon.php36, -#: templates/account/partials/site.php:277 +#: templates/account.php106, templates/account/partials/addon.php40, +#: templates/account/partials/site.php:293 msgid "Expires in %s" msgstr "Scade in %s" -#: templates/account.php96, templates/account/partials/addon.php:37 +#: templates/account.php:107 msgctxt "as synchronize license" msgid "Sync License" msgstr "Sincronizza la licenza" -#: templates/account.php97, templates/account/partials/addon.php:38 +#: templates/account.php108, templates/account/partials/addon.php:41 msgid "Cancel Trial" msgstr "Annulla prova gratuita" -#: templates/account.php98, templates/account/partials/addon.php:39 +#: templates/account.php109, templates/account/partials/addon.php:42 msgid "Change Plan" msgstr "Cambia piano" -#: templates/account.php99, templates/account/partials/addon.php:40 +#: templates/account.php110, templates/account/partials/addon.php:43 msgctxt "verb" msgid "Upgrade" msgstr "Aggiornamento" -#: templates/account.php101, templates/account/partials/addon.php42, -#: templates/account/partials/site.php:302 +#: templates/account.php112, templates/account/partials/addon.php45, +#: templates/account/partials/site.php:318 msgctxt "verb" msgid "Downgrade" msgstr "Downgrade" -#: templates/account.php103, templates/add-ons.php130, +#: templates/account.php114, templates/add-ons.php246, #: templates/plugin-info/features.php72, -#: templates/account/partials/addon.php44, -#: templates/account/partials/site.php:31 +#: templates/account/partials/addon.php47, +#: templates/account/partials/site.php:33 msgid "Free" msgstr "Gratuito" -#: templates/account.php104, templates/account/partials/addon.php:45 -msgid "Activate" -msgstr "Attiva" - -#: templates/account.php105, templates/debug.php371, -#: includes/customizer/class-fs-customizer-upsell-control.php106, -#: templates/account/partials/addon.php:46 +#: templates/account.php116, templates/debug.php373, +#: includes/customizer/class-fs-customizer-upsell-control.php110, +#: templates/account/partials/addon.php:49 msgctxt "as product pricing plan" msgid "Plan" msgstr "Piano" -#: templates/account.php:158 +#: templates/account.php:117 +msgid "Bundle Plan" +msgstr "Bundle Plan" + +#: templates/account.php:191 msgid "Free Trial" msgstr "Prova gratuita" -#: templates/account.php:169 +#: templates/account.php:202 msgid "Account Details" msgstr "Dettagli dell'account" -#: templates/account.php:179 +#: templates/account.php209, templates/forms/data-debug-mode.php:33 +msgid "Start Debug" +msgstr "Start Debug" + +#: templates/account.php:211 +msgid "Stop Debug" +msgstr "Stop Debug" + +#: templates/account.php:218 +msgid "Billing & Invoices" +msgstr "Billing & Invoices" + +#: templates/account.php:229 msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?" msgstr "L'eliminazione dell'account disattiva automaticamente la tua licenza del piano %s quindi è possibile utilizzarlo su altri siti. Se si desidera anche terminare i pagamenti ricorrenti, fare clic sul pulsante \"Annulla\" ed effettuare il \"Downgrade\" del tuo account. Sei sicuro di voler continuare con l'eliminazione?" -#: templates/account.php:181 +#: templates/account.php:231 msgid "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?" msgstr "La cancellazione non è temporanea. Cancella solamente se non vuoi più utilizzare %s. Sei sicuro di voler cancellare questi dati?" -#: templates/account.php:184 +#: templates/account.php:234 msgid "Delete Account" msgstr "Elimina Account" -#: templates/account.php196, templates/account/partials/addon.php159, +#: templates/account.php246, templates/account/partials/addon.php231, #: templates/account/partials/deactivate-license-button.php:35 msgid "Deactivate License" msgstr "Disattiva licenza" -#: templates/account.php219, templates/forms/subscription-cancellation.php:125 +#: templates/account.php269, templates/forms/subscription-cancellation.php:125 msgid "Are you sure you want to proceed?" msgstr "Sei sicuro di voler procedere?" -#: templates/account.php219, templates/account/partials/addon.php:182 +#: templates/account.php269, templates/account/partials/addon.php:255 msgid "Cancel Subscription" msgstr "Annulla sottoscrizione" -#: templates/account.php:247 +#: templates/account.php298, templates/account/partials/addon.php:340 msgctxt "as synchronize" msgid "Sync" msgstr "Sincronizza" -#: templates/account.php261, templates/debug.php:487 +#: templates/account.php313, templates/debug.php:507 msgid "Name" msgstr "Nome" -#: templates/account.php267, templates/debug.php:488 +#: templates/account.php319, templates/debug.php:508 msgid "Email" msgstr "Email" -#: templates/account.php274, templates/debug.php370, templates/debug.php:526 +#: templates/account.php326, templates/debug.php371, templates/debug.php:557 msgid "User ID" msgstr "ID utente" -#: templates/account.php:282 +#: templates/account.php344, templates/account.php637, +#: templates/account.php682, templates/debug.php238, templates/debug.php365, +#: templates/debug.php454, templates/debug.php506, templates/debug.php555, +#: templates/debug.php632, templates/account/payments.php35, +#: templates/debug/logger.php:21 +msgid "ID" +msgstr "ID" + +#: templates/account.php:351 msgid "Site ID" msgstr "ID del sito" -#: templates/account.php:285 +#: templates/account.php:354 msgid "No ID" msgstr "Nessun ID" -#: templates/account.php290, templates/debug.php243, templates/debug.php372, -#: templates/debug.php453, templates/debug.php490, -#: templates/account/partials/site.php:219 +#: templates/account.php359, templates/debug.php245, templates/debug.php374, +#: templates/debug.php458, templates/debug.php510, +#: templates/account/partials/site.php:227 msgid "Public Key" msgstr "Chiave pubblica" -#: templates/account.php296, templates/debug.php373, templates/debug.php454, -#: templates/debug.php491, templates/account/partials/site.php:231 +#: templates/account.php365, templates/debug.php375, templates/debug.php459, +#: templates/debug.php511, templates/account/partials/site.php:239 msgid "Secret Key" msgstr "Chiave segreta" -#: templates/account.php:299 +#: templates/account.php:368 msgctxt "as secret encryption key missing" msgid "No Secret" msgstr "Nessuna chiave" -#: templates/account.php318, templates/account/partials/site.php112, -#: templates/account/partials/site.php:114 +#: templates/account.php395, templates/account/partials/site.php120, +#: templates/account/partials/site.php:122 msgid "Trial" msgstr "Prova gratuita" -#: templates/account.php337, templates/debug.php531, -#: templates/account/partials/site.php:248 +#: templates/account.php422, templates/debug.php562, +#: templates/account/partials/site.php:260 msgid "License Key" msgstr "Chiave della licenza" -#: templates/account.php:367 +#: templates/account.php:453 +msgid "Join the Beta program" +msgstr "Join the Beta program" + +#: templates/account.php:459 msgid "not verified" msgstr "non verificato" -#: templates/account.php376, templates/account/partials/addon.php:120 +#: templates/account.php468, templates/account/partials/addon.php:190 msgid "Expired" msgstr "Scaduto" -#: templates/account.php:428 +#: templates/account.php:528 msgid "Premium version" msgstr "Versione premium" -#: templates/account.php:430 +#: templates/account.php:530 msgid "Free version" msgstr "Versione gratuita" -#: templates/account.php:442 +#: templates/account.php:542 msgid "Verify Email" msgstr "Verifica email" -#: templates/account.php:453 +#: templates/account.php:553 msgid "Download %s Version" msgstr "Scarica la versione %s" -#: templates/account.php467, templates/account.php649, -#: templates/account/partials/site.php237, -#: templates/account/partials/site.php:255 +#: templates/account.php568, templates/account.php820, +#: templates/account/partials/site.php248, +#: templates/account/partials/site.php:270 msgctxt "verb" msgid "Show" msgstr "Mostra" -#: templates/account.php:481 +#: templates/account.php:583 msgid "What is your %s?" msgstr "Qual è il tuo %s?" -#: templates/account.php489, templates/account/billing.php:27 +#: templates/account.php591, templates/account/billing.php:21 msgctxt "verb" msgid "Edit" msgstr "Modifica" -#: templates/account.php:502 +#: templates/account.php:616 msgid "Sites" msgstr "Siti" -#: templates/account.php:513 +#: templates/account.php:629 msgid "Search by address" msgstr "Cerca per indirizzo" -#: templates/account.php522, templates/account.php570, templates/debug.php236, -#: templates/debug.php364, templates/debug.php449, templates/debug.php486, -#: templates/debug.php524, templates/debug.php597, -#: templates/account/payments.php35, templates/debug/logger.php:21 -msgid "ID" -msgstr "ID" - -#: templates/account.php523, templates/debug.php:367 +#: templates/account.php638, templates/debug.php:368 msgid "Address" msgstr "Indirizzo" -#: templates/account.php:524 +#: templates/account.php:639 msgid "License" msgstr "Licenza" -#: templates/account.php:525 +#: templates/account.php:640 msgid "Plan" msgstr "Piano" -#: templates/account.php:573 +#: templates/account.php:685 msgctxt "as software license" msgid "License" msgstr "Licenza" -#: templates/account.php:643 +#: templates/account.php:814 msgctxt "verb" msgid "Hide" msgstr "Nascondi" -#: templates/account.php:686 +#: templates/account.php836, templates/forms/data-debug-mode.php:31 +msgid "Processing" +msgstr "Processing" + +#: templates/account.php:839 +msgid "Get updates for bleeding edge Beta versions of %s." +msgstr "Get updates for bleeding edge Beta versions of %s." + +#: templates/account.php:897 msgid "Cancelling %s" msgstr "Cancelling %s" -#: templates/account.php686, templates/account.php703, +#: templates/account.php897, templates/account.php914, #: templates/forms/subscription-cancellation.php27, -#: templates/forms/deactivation/form.php:117 +#: templates/forms/deactivation/form.php:133 msgid "trial" msgstr "trial" -#: templates/account.php701, templates/forms/deactivation/form.php:134 +#: templates/account.php912, templates/forms/deactivation/form.php:150 msgid "Cancelling %s..." msgstr "Cancelling %s..." -#: templates/account.php704, templates/forms/subscription-cancellation.php28, -#: templates/forms/deactivation/form.php:118 +#: templates/account.php915, templates/forms/subscription-cancellation.php28, +#: templates/forms/deactivation/form.php:134 msgid "subscription" msgstr "subscription" -#: templates/account.php:718 +#: templates/account.php:929 msgid "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?" msgstr "Disattiva la tua licenza bloccando tutte le funzionalità premium ma potrai attivare la licenza su un altro sito. Sei sicuro di voler continuare?" -#: templates/add-ons.php:36 +#: templates/add-ons.php:38 +msgid "View details" +msgstr "Visualizza dettagli" + +#: templates/add-ons.php:48 msgid "Add Ons for %s" msgstr "Add-on per %s" -#: templates/add-ons.php:44 -msgid "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." -msgstr "Non siamo riusciti a caricare la lista degli add-on. Si tratta probabilmente di un problema nel nostro sistema, per favore riprova tra qualche minuto." +#: templates/add-ons.php:58 +msgid "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." +msgstr "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." -#: templates/add-ons.php:139 -msgid "View details" -msgstr "Visualizza dettagli" +#: templates/add-ons.php:229 +msgctxt "active add-on" +msgid "Active" +msgstr "Attiva" + +#: templates/add-ons.php:230 +msgctxt "installed add-on" +msgid "Installed" +msgstr "Installed" -#: templates/admin-notice.php13, templates/forms/license-activation.php208, +#: templates/admin-notice.php13, templates/forms/license-activation.php207, #: templates/forms/resend-key.php:77 msgctxt "as close a window" msgid "Dismiss" @@ -1451,11 +1542,11 @@ msgstr "Il processo d'installazione è iniziato e potrebbe impiegare alcuni minu msgid "Cancel Installation" msgstr "Annulla installazione" -#: templates/checkout.php:172 +#: templates/checkout.php:180 msgid "Checkout" msgstr "Cassa" -#: templates/checkout.php:172 +#: templates/checkout.php:180 msgid "PCI compliant" msgstr "PCI compliant" @@ -1477,7 +1568,7 @@ msgstr "Invia nuovamente l'email di attivazione" msgid "Thanks %s!" msgstr "Grazie %s!" -#: templates/connect.php172, templates/forms/license-activation.php:43 +#: templates/connect.php172, templates/forms/license-activation.php:46 msgid "Agree & Activate License" msgstr "Accetta e attiva la licenza" @@ -1525,15 +1616,16 @@ msgstr "In caso puoi saltare per adesso e attivare la licenza successivamente ne msgid "During the update process we detected %s site(s) in the network that are still pending your attention." msgstr "Durante la procedura di aggiornamenti abbiamo individuato %s sito/i del network che sono in attesa di un tuo controllo." -#: templates/connect.php253, templates/forms/license-activation.php:46 +#: templates/connect.php253, templates/forms/data-debug-mode.php35, +#: templates/forms/license-activation.php:49 msgid "License key" msgstr "Chiave di licenza" -#: templates/connect.php256, templates/forms/license-activation.php:19 +#: templates/connect.php256, templates/forms/license-activation.php:22 msgid "Can't find your license key?" msgstr "Non trovi la tua chiave di licenza?" -#: templates/connect.php315, templates/connect.php630, +#: templates/connect.php315, templates/connect.php652, #: templates/forms/deactivation/retry-skip.php:20 msgctxt "verb" msgid "Skip" @@ -1583,7 +1675,7 @@ msgstr "Attiva, disattivazione e disinstallazione" msgid "Newsletter" msgstr "Newsletter" -#: templates/connect.php391, templates/forms/license-activation.php:38 +#: templates/connect.php391, templates/forms/license-activation.php:41 msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license." msgstr " Il %1$s invierà periodicamente dei dati a %2$s per verificare aggiornamenti di sicurezza e di funzionalità e verificare la validità della tua licenza." @@ -1595,10 +1687,6 @@ msgstr "Quali autorizzazioni vengono concesse?" msgid "Don't have a license key?" msgstr "Non hai una chiave di licenza?" -#: templates/connect.php:418 -msgid "Activate Free Version" -msgstr "Attiva versione gratuita" - #: templates/connect.php:420 msgid "Have a license key?" msgstr "Hai una chiave di licenza?" @@ -1615,12 +1703,12 @@ msgstr "License Agreement" msgid "Terms of Service" msgstr "Termini del Servizio" -#: templates/connect.php:766 +#: templates/connect.php:805 msgctxt "as in the process of sending an email" msgid "Sending email" msgstr "Invio email" -#: templates/connect.php:767 +#: templates/connect.php:806 msgctxt "as activating plugin" msgid "Activating" msgstr "Attivazione" @@ -1648,8 +1736,8 @@ msgctxt "as code debugging" msgid "Debugging" msgstr "Debugging" -#: templates/debug.php54, templates/debug.php248, templates/debug.php374, -#: templates/debug.php:492 +#: templates/debug.php54, templates/debug.php250, templates/debug.php376, +#: templates/debug.php:512 msgid "Actions" msgstr "Azioni" @@ -1685,191 +1773,195 @@ msgstr "Carica opzioni del DB" msgid "Set DB Option" msgstr "Imposta opzione del DB" -#: templates/debug.php:180 +#: templates/debug.php:182 msgid "Key" msgstr "Chiave" -#: templates/debug.php:181 +#: templates/debug.php:183 msgid "Value" msgstr "Valore" -#: templates/debug.php:197 +#: templates/debug.php:199 msgctxt "as software development kit versions" msgid "SDK Versions" msgstr "Versioni SDK" -#: templates/debug.php:202 +#: templates/debug.php:204 msgid "SDK Path" msgstr "Percorso SDK" -#: templates/debug.php203, templates/debug.php:242 +#: templates/debug.php205, templates/debug.php:244 msgid "Module Path" msgstr "Percorso modulo" -#: templates/debug.php:204 +#: templates/debug.php:206 msgid "Is Active" msgstr "è attiva" -#: templates/debug.php232, templates/debug/plugins-themes-sync.php:35 +#: templates/debug.php234, templates/debug/plugins-themes-sync.php:35 msgid "Plugins" msgstr "Plugin" -#: templates/debug.php232, templates/debug/plugins-themes-sync.php:56 +#: templates/debug.php234, templates/debug/plugins-themes-sync.php:56 msgid "Themes" msgstr "Temi" -#: templates/debug.php237, templates/debug.php369, templates/debug.php451, +#: templates/debug.php239, templates/debug.php370, templates/debug.php456, #: templates/debug/scheduled-crons.php:80 msgid "Slug" msgstr "Slug" -#: templates/debug.php239, templates/debug.php:450 +#: templates/debug.php241, templates/debug.php:455 msgid "Title" msgstr "Titolo" -#: templates/debug.php:240 +#: templates/debug.php:242 msgctxt "as application program interface" msgid "API" msgstr "API" -#: templates/debug.php:241 +#: templates/debug.php:243 msgid "Freemius State" msgstr "Stato di Freemius" -#: templates/debug.php:245 +#: templates/debug.php:247 msgid "Network Blog" msgstr "Network Blog" -#: templates/debug.php:246 +#: templates/debug.php:248 msgid "Network User" msgstr "Utente Network" -#: templates/debug.php:283 +#: templates/debug.php:285 msgctxt "as connection was successful" msgid "Connected" msgstr "Connesso" -#: templates/debug.php:284 +#: templates/debug.php:286 msgctxt "as connection blocked" msgid "Blocked" msgstr "Bloccato" -#: templates/debug.php:320 +#: templates/debug.php:322 msgid "Simulate Trial Promotion" msgstr "Simulate Trial Promotion" -#: templates/debug.php:332 +#: templates/debug.php:334 msgid "Simulate Network Upgrade" msgstr "Simula aggiornamento network" -#: templates/debug.php:358 +#: templates/debug.php:359 msgid "%s Installs" msgstr "%s Installazioni" -#: templates/debug.php:360 +#: templates/debug.php:361 msgctxt "like websites" msgid "Sites" msgstr "Siti" -#: templates/debug.php366, templates/account/partials/site.php:148 +#: templates/debug.php367, templates/account/partials/site.php:156 msgid "Blog ID" msgstr "Blog ID" -#: templates/debug.php431, templates/debug.php509, -#: templates/account/partials/addon.php:339 +#: templates/debug.php:372 +msgid "License ID" +msgstr "License ID" + +#: templates/debug.php436, templates/debug.php535, +#: templates/account/partials/addon.php:435 msgctxt "verb" msgid "Delete" msgstr "Elimina" -#: templates/debug.php:445 +#: templates/debug.php:450 msgid "Add Ons of module %s" msgstr "Addon del modulo %s" -#: templates/debug.php:482 +#: templates/debug.php:502 msgid "Users" msgstr "Utenti" -#: templates/debug.php:489 +#: templates/debug.php:509 msgid "Verified" msgstr "Verificato" -#: templates/debug.php:520 +#: templates/debug.php:551 msgid "%s Licenses" msgstr "%s Licenze" -#: templates/debug.php:525 +#: templates/debug.php:556 msgid "Plugin ID" msgstr "Plugin ID" -#: templates/debug.php:527 +#: templates/debug.php:558 msgid "Plan ID" msgstr "ID Piano" -#: templates/debug.php:528 +#: templates/debug.php:559 msgid "Quota" msgstr "Quota" -#: templates/debug.php:529 +#: templates/debug.php:560 msgid "Activated" msgstr "Attivato" -#: templates/debug.php:530 +#: templates/debug.php:561 msgid "Blocking" msgstr "Bloccato" -#: templates/debug.php:532 +#: templates/debug.php:563 msgctxt "as expiration date" msgid "Expiration" msgstr "Scadenza" -#: templates/debug.php:555 +#: templates/debug.php:590 msgid "Debug Log" msgstr "Debug Log" -#: templates/debug.php:559 +#: templates/debug.php:594 msgid "All Types" msgstr "Tutti i tipi" -#: templates/debug.php:566 +#: templates/debug.php:601 msgid "All Requests" msgstr "Tutte le richieste" -#: templates/debug.php571, templates/debug.php600, +#: templates/debug.php606, templates/debug.php635, #: templates/debug/logger.php:25 msgid "File" msgstr "File" -#: templates/debug.php572, templates/debug.php598, +#: templates/debug.php607, templates/debug.php633, #: templates/debug/logger.php:23 msgid "Function" msgstr "Funzione" -#: templates/debug.php:573 +#: templates/debug.php:608 msgid "Process ID" msgstr "ID processo" -#: templates/debug.php:574 +#: templates/debug.php:609 msgid "Logger" msgstr "Logger" -#: templates/debug.php575, templates/debug.php599, +#: templates/debug.php610, templates/debug.php634, #: templates/debug/logger.php:24 msgid "Message" msgstr "Messaggio" -#: templates/debug.php:577 +#: templates/debug.php:612 msgid "Filter" msgstr "Filtro" -#: templates/debug.php:585 +#: templates/debug.php:620 msgid "Download" msgstr "Download" -#: templates/debug.php596, templates/debug/logger.php:22 +#: templates/debug.php631, templates/debug/logger.php:22 msgid "Type" msgstr "Tipo" -#: templates/debug.php601, templates/debug/logger.php:26 +#: templates/debug.php636, templates/debug/logger.php:26 msgid "Timestamp" msgstr "Timestamp" @@ -1896,53 +1988,53 @@ msgstr "Freemius API" msgid "Requests" msgstr "Richieste" -#: templates/account/billing.php:28 +#: templates/account/billing.php:22 msgctxt "verb" msgid "Update" msgstr "Aggiorna" -#: templates/account/billing.php:39 +#: templates/account/billing.php:33 msgid "Billing" msgstr "Fatturazione" -#: templates/account/billing.php44, templates/account/billing.php:44 +#: templates/account/billing.php38, templates/account/billing.php:38 msgid "Business name" msgstr "Nome della compagnia" -#: templates/account/billing.php45, templates/account/billing.php:45 +#: templates/account/billing.php39, templates/account/billing.php:39 msgid "Tax / VAT ID" msgstr "Numero Partita Iva o VAT" -#: templates/account/billing.php48, templates/account/billing.php48, -#: templates/account/billing.php49, templates/account/billing.php:49 +#: templates/account/billing.php42, templates/account/billing.php42, +#: templates/account/billing.php43, templates/account/billing.php:43 msgid "Address Line %d" msgstr "Riga indirizzo %d" -#: templates/account/billing.php52, templates/account/billing.php:52 +#: templates/account/billing.php46, templates/account/billing.php:46 msgid "City" msgstr "Città" -#: templates/account/billing.php52, templates/account/billing.php:52 +#: templates/account/billing.php46, templates/account/billing.php:46 msgid "Town" msgstr "Cittadina" -#: templates/account/billing.php53, templates/account/billing.php:53 +#: templates/account/billing.php47, templates/account/billing.php:47 msgid "ZIP / Postal Code" msgstr "CAP" -#: templates/account/billing.php:308 +#: templates/account/billing.php:302 msgid "Country" msgstr "Nazione" -#: templates/account/billing.php:310 +#: templates/account/billing.php:304 msgid "Select Country" msgstr "Seleziona Nazione" -#: templates/account/billing.php317, templates/account/billing.php:318 +#: templates/account/billing.php311, templates/account/billing.php:312 msgid "State" msgstr "Stato" -#: templates/account/billing.php317, templates/account/billing.php:318 +#: templates/account/billing.php311, templates/account/billing.php:312 msgid "Province" msgstr "Provincia" @@ -2194,11 +2286,27 @@ msgstr "Annulla" msgid "Become an affiliate" msgstr "Diventa un affiliato" -#: templates/forms/license-activation.php:20 +#: templates/forms/data-debug-mode.php:25 +msgid "Please enter the license key to enable the debug mode:" +msgstr "Please enter the license key to enable the debug mode:" + +#: templates/forms/data-debug-mode.php:27 +msgid "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:" +msgstr "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:" + +#: templates/forms/data-debug-mode.php:32 +msgid "Submit" +msgstr "Submit" + +#: templates/forms/data-debug-mode.php:36 +msgid "User key" +msgstr "User key" + +#: templates/forms/license-activation.php:23 msgid "Please enter the license key that you received in the email right after the purchase:" msgstr "Per favore inserisci la chiave di licenza che hai ricevuto via mail subito dopo l'acquisto:" -#: templates/forms/license-activation.php:25 +#: templates/forms/license-activation.php:28 msgid "Update License" msgstr "Aggiorna licenza" @@ -2278,7 +2386,7 @@ msgid "Proceed" msgstr "Proceed" #: templates/forms/subscription-cancellation.php191, -#: templates/forms/deactivation/form.php:150 +#: templates/forms/deactivation/form.php:171 msgid "Cancel %s & Proceed" msgstr "Cancel %s & Proceed" @@ -2290,38 +2398,42 @@ msgstr "Sei a un clic di distanza dall'iniziare il tuo periodo di prova gratuito msgid "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial." msgstr "Per essere accettato del regolamento WordPress.org, prima di attivare il periodo di prova devi accettare di condividere informazioni come il tuo utente e dati non sensibili. Permettendo a %s di inviare dati periodicamente a %s per verificare gli aggiornamenti e approvare il periodo di prova." -#: templates/js/style-premium-theme.php:37 +#: templates/js/style-premium-theme.php:39 msgid "Premium" msgstr "Premium" -#: templates/partials/network-activation.php:23 +#: templates/js/style-premium-theme.php:42 +msgid "Beta" +msgstr "Beta" + +#: templates/partials/network-activation.php:27 msgid "Activate license on all sites in the network." msgstr "Attiva la licenza su tutti i siti del network." -#: templates/partials/network-activation.php:24 +#: templates/partials/network-activation.php:28 msgid "Apply on all sites in the network." msgstr "Applica su tutti i siti della rete." -#: templates/partials/network-activation.php:27 +#: templates/partials/network-activation.php:31 msgid "Activate license on all pending sites." msgstr "Attiva le licenze su tutti i siti in attesa." -#: templates/partials/network-activation.php:28 +#: templates/partials/network-activation.php:32 msgid "Apply on all pending sites." msgstr "Applica su tutti i siti in attesa." -#: templates/partials/network-activation.php36, -#: templates/partials/network-activation.php:68 +#: templates/partials/network-activation.php40, +#: templates/partials/network-activation.php:74 msgid "allow" msgstr "permetti" -#: templates/partials/network-activation.php38, -#: templates/partials/network-activation.php:70 +#: templates/partials/network-activation.php43, +#: templates/partials/network-activation.php:77 msgid "delegate" msgstr "delega" -#: templates/partials/network-activation.php41, -#: templates/partials/network-activation.php:73 +#: templates/partials/network-activation.php47, +#: templates/partials/network-activation.php:81 msgid "skip" msgstr "salta" @@ -2347,32 +2459,33 @@ msgstr "%s rimanenti" msgid "Last license" msgstr "Ultima licenza" -#: templates/account/partials/addon.php:115 +#. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the +#. subscription' +#: templates/account/partials/addon.php:29 +msgid "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s." +msgstr "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s." + +#: templates/account/partials/addon.php:185 msgid "Cancelled" msgstr "Annullato" -#: templates/account/partials/addon.php:125 +#: templates/account/partials/addon.php:195 msgid "No expiration" msgstr "Nessuna scadenza" -#: templates/account/partials/addon.php264, -#: templates/account/partials/addon.php:317 -msgid "Activate this add-on" -msgstr "Attivare questo addon" - -#: templates/account/partials/site.php:181 +#: templates/account/partials/site.php:189 msgid "Owner Name" msgstr "Nome proprietario" -#: templates/account/partials/site.php:193 +#: templates/account/partials/site.php:201 msgid "Owner Email" msgstr "Email proprietario" -#: templates/account/partials/site.php:205 +#: templates/account/partials/site.php:213 msgid "Owner ID" msgstr "ID proprietario" -#: templates/account/partials/site.php:270 +#: templates/account/partials/site.php:286 msgid "Subscription" msgstr "Sottoscrivi" @@ -2384,47 +2497,47 @@ msgstr "Siamo spiacenti per l'inconveniente e siamo qui per aiutarti con il tuo msgid "Contact Support" msgstr "Contatta il supporto" -#: templates/forms/deactivation/form.php:59 +#: templates/forms/deactivation/form.php:64 msgid "Anonymous feedback" msgstr "Feedback anonimo" -#: templates/forms/deactivation/form.php:66 +#: templates/forms/deactivation/form.php:70 msgid "Deactivate" msgstr "Disattiva" -#: templates/forms/deactivation/form.php:68 +#: templates/forms/deactivation/form.php:72 msgid "Activate %s" msgstr "Attiva %s" -#: templates/forms/deactivation/form.php:80 +#: templates/forms/deactivation/form.php:87 msgid "Quick Feedback" msgstr "Quick Feedback" -#: templates/forms/deactivation/form.php:84 +#: templates/forms/deactivation/form.php:91 msgid "If you have a moment, please let us know why you are %s" msgstr "Se hai un attimo, facci sapere perché %s" -#: templates/forms/deactivation/form.php:84 +#: templates/forms/deactivation/form.php:91 msgid "deactivating" msgstr "disattivazione in corso" -#: templates/forms/deactivation/form.php:84 +#: templates/forms/deactivation/form.php:91 msgid "switching" msgstr "passa a" -#: templates/forms/deactivation/form.php:332 +#: templates/forms/deactivation/form.php:365 msgid "Submit & %s" msgstr "Invia e %s" -#: templates/forms/deactivation/form.php:353 +#: templates/forms/deactivation/form.php:386 msgid "Kindly tell us the reason so we can improve." msgstr "Spiegandoci il motivo ci aiuterai a migliorare." -#: templates/forms/deactivation/form.php:478 +#: templates/forms/deactivation/form.php:511 msgid "Yes - %s" msgstr "SI - %s" -#: templates/forms/deactivation/form.php:485 +#: templates/forms/deactivation/form.php:518 msgid "Skip & %s" msgstr "Salta & %s" diff --git a/external/Freemius/languages/freemius-ja_JP.mo b/external/Freemius/languages/freemius-ja_JP.mo index 1e80fd08..18935534 100755 Binary files a/external/Freemius/languages/freemius-ja_JP.mo and b/external/Freemius/languages/freemius-ja_JP.mo differ diff --git a/external/Freemius/languages/freemius-ja_JP.po b/external/Freemius/languages/freemius-ja_JP.po index 01dee4f2..13cfb133 100755 --- a/external/Freemius/languages/freemius-ja_JP.po +++ b/external/Freemius/languages/freemius-ja_JP.po @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: WordPress SDK\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2018-11-25 07:22+0000\n" +"PO-Revision-Date: 2019-10-07 15:33+0000\n" "Last-Translator: Vova Feldman \n" "Language: ja_JP\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/freemius/wordpress-sdk/language/ja_JP/)\n" @@ -24,1407 +24,1498 @@ msgstr "" "X-Poedit-SearchPathExcluded-0: *.js\n" "X-Poedit-SourceCharset: UTF-8\n" -#: includes/class-freemius.php:1688 +#: includes/class-freemius.php1880, templates/account.php:840 +msgid "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned." +msgstr "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned." + +#: includes/class-freemius.php:1887 +msgid "Would you like to proceed with the update?" +msgstr "Would you like to proceed with the update?" + +#: includes/class-freemius.php:2095 msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error." msgstr "Freemius SDK がプラグインのメインファイルを見つけることができませんでした。現在のエラーを添えて sdk@freemius.com に連絡してください。" -#: includes/class-freemius.php:1690 +#: includes/class-freemius.php:2097 msgid "Error" msgstr "エラー" -#: includes/class-freemius.php:2011 +#: includes/class-freemius.php:2491 msgid "I found a better %s" msgstr "より良い %sを見つけました" -#: includes/class-freemius.php:2013 +#: includes/class-freemius.php:2493 msgid "What's the %s's name?" msgstr "%sの名前は何ですか?" -#: includes/class-freemius.php:2019 +#: includes/class-freemius.php:2499 msgid "It's a temporary %s. I'm just debugging an issue." msgstr "%sは一時的なものです。現在この問題をデバッグ中です。" -#: includes/class-freemius.php:2021 +#: includes/class-freemius.php:2501 msgid "Deactivation" msgstr "無効化" -#: includes/class-freemius.php:2022 +#: includes/class-freemius.php:2502 msgid "Theme Switch" msgstr "テーマ変更" -#: includes/class-freemius.php2031, templates/forms/resend-key.php:24 +#: includes/class-freemius.php2511, templates/forms/resend-key.php:24 msgid "Other" msgstr "その他" -#: includes/class-freemius.php:2039 +#: includes/class-freemius.php:2519 msgid "I no longer need the %s" msgstr "%sはもう不要です" -#: includes/class-freemius.php:2046 +#: includes/class-freemius.php:2526 msgid "I only needed the %s for a short period" msgstr "短期間だけ %sが 必要です。" -#: includes/class-freemius.php:2052 +#: includes/class-freemius.php:2532 msgid "The %s broke my site" msgstr "%s の影響でサイトを崩れました" -#: includes/class-freemius.php:2059 +#: includes/class-freemius.php:2539 msgid "The %s suddenly stopped working" msgstr "%s の動作が突然停止しました" -#: includes/class-freemius.php:2069 +#: includes/class-freemius.php:2549 msgid "I can't pay for it anymore" msgstr "もう払うことができません" -#: includes/class-freemius.php:2071 +#: includes/class-freemius.php:2551 msgid "What price would you feel comfortable paying?" msgstr " 支払ってもよいと思う価格はいくらですか?" -#: includes/class-freemius.php:2077 +#: includes/class-freemius.php:2557 msgid "I don't like to share my information with you" msgstr "自分の情報を共有したくありません" -#: includes/class-freemius.php:2098 +#: includes/class-freemius.php:2578 msgid "The %s didn't work" msgstr "%s が動作しませんでした" -#: includes/class-freemius.php:2108 +#: includes/class-freemius.php:2588 msgid "I couldn't understand how to make it work" msgstr "どうしたら動作するか分かりませんでした。" -#: includes/class-freemius.php:2116 +#: includes/class-freemius.php:2596 msgid "The %s is great, but I need specific feature that you don't support" msgstr "%s は素晴らしいのですが、サポートされていないある機能が必要です" -#: includes/class-freemius.php:2118 +#: includes/class-freemius.php:2598 msgid "What feature?" msgstr "何の機能ですか?" -#: includes/class-freemius.php:2122 +#: includes/class-freemius.php:2602 msgid "The %s is not working" msgstr "%s が動作していません" -#: includes/class-freemius.php:2124 +#: includes/class-freemius.php:2604 msgid "Kindly share what didn't work so we can fix it for future users..." msgstr "将来のユーザーのために修正できるよう、何が動作しなかったのかどうか共有してください…" -#: includes/class-freemius.php:2128 +#: includes/class-freemius.php:2608 msgid "It's not what I was looking for" msgstr "探していたものではありません" -#: includes/class-freemius.php:2130 +#: includes/class-freemius.php:2610 msgid "What you've been looking for?" msgstr "探していたのは何ですか?" -#: includes/class-freemius.php:2134 +#: includes/class-freemius.php:2614 msgid "The %s didn't work as expected" msgstr "%sが期待通りに動きませんでした " -#: includes/class-freemius.php:2136 +#: includes/class-freemius.php:2616 msgid "What did you expect?" msgstr "何を期待していましたか?" -#: includes/class-freemius.php2942, templates/debug.php:20 +#: includes/class-freemius.php3471, templates/debug.php:20 msgid "Freemius Debug" msgstr "Freemius デバッグ" -#: includes/class-freemius.php:3670 +#: includes/class-freemius.php:4223 msgid "I don't know what is cURL or how to install it, help me!" msgstr "cURL がなにか、そのインストール方法を知りません。助けてください。" -#: includes/class-freemius.php:3672 +#: includes/class-freemius.php:4225 msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update." msgstr "ホスティング会社に連絡して問題を解決してください。 更新が完了したら、 %s へのフォローアップメールが届きます。" -#: includes/class-freemius.php:3679 +#: includes/class-freemius.php:4232 msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again." msgstr "すばらしい。cURL をインストールし、 php.ini ファイルで有効化してください。加えて、php.ini 内で 'disable_functions' ディレクティブを検索して、'curl_' で始まる無効化されたメソッドを削除してください。'phpinfo()' を使って正常に起動されたことを確認してください。有効化されている場合は %s を一度無効化し、再度有効化し直してください。" -#: includes/class-freemius.php:3784 +#: includes/class-freemius.php:4337 msgid "Yes - do your thing" msgstr "はい - お構いなく" -#: includes/class-freemius.php:3789 +#: includes/class-freemius.php:4342 msgid "No - just deactivate" msgstr "いいえ - すぐに無効化" -#: includes/class-freemius.php3834, includes/class-freemius.php4343, -#: includes/class-freemius.php5442, includes/class-freemius.php11545, -#: includes/class-freemius.php14916, includes/class-freemius.php14968, -#: includes/class-freemius.php15030, includes/class-freemius.php17263, -#: includes/class-freemius.php17273, includes/class-freemius.php17882, -#: includes/class-freemius.php18742, includes/class-freemius.php18857, -#: includes/class-freemius.php19001, templates/add-ons.php:43 +#: includes/class-freemius.php4387, includes/class-freemius.php4881, +#: includes/class-freemius.php6032, includes/class-freemius.php13153, +#: includes/class-freemius.php16558, includes/class-freemius.php16646, +#: includes/class-freemius.php16812, includes/class-freemius.php19040, +#: includes/class-freemius.php19381, includes/class-freemius.php19391, +#: includes/class-freemius.php20051, includes/class-freemius.php20924, +#: includes/class-freemius.php21039, includes/class-freemius.php21183, +#: templates/add-ons.php:57 msgctxt "exclamation" msgid "Oops" msgstr "おっと" -#: includes/class-freemius.php:3903 +#: includes/class-freemius.php:4456 msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience." msgstr "修正するチャンスをいただきありがとうございます! テクニカルスタッフにメッセージが送信されました。 %s への更新が行われるとすぐにあなたに連絡します。 あなたの忍耐に感謝します。" -#: includes/class-freemius.php:4340 +#: includes/class-freemius.php:4878 msgctxt "addonX cannot run without pluginY" msgid "%s cannot run without %s." msgstr "%s は、%s が無いと実行することができません。" -#: includes/class-freemius.php:4341 +#: includes/class-freemius.php:4879 msgctxt "addonX cannot run..." msgid "%s cannot run without the plugin." msgstr "%s は、プラグインが無いと実行することができません。" -#: includes/class-freemius.php4487, includes/class-freemius.php4512, -#: includes/class-freemius.php:17953 +#: includes/class-freemius.php5052, includes/class-freemius.php5077, +#: includes/class-freemius.php:20122 msgid "Unexpected API error. Please contact the %s's author with the following error." msgstr "予期しない API エラーです。%sの作者に次のエラーを連絡してください。" -#: includes/class-freemius.php:5130 +#: includes/class-freemius.php:5720 msgid "Premium %s version was successfully activated." msgstr "プレミアムバージョンの %sは有効化に成功しました。" -#: includes/class-freemius.php5142, includes/class-freemius.php:7004 +#: includes/class-freemius.php5732, includes/class-freemius.php:7599 msgctxt "" msgid "W00t" msgstr "やったー" -#: includes/class-freemius.php:5157 +#: includes/class-freemius.php:5747 msgid "You have a %s license." msgstr "%s ライセンスを持っています。" -#: includes/class-freemius.php5161, includes/class-freemius.php14337, -#: includes/class-freemius.php14348, includes/class-freemius.php17177, -#: includes/class-freemius.php17491, includes/class-freemius.php17557, -#: includes/class-freemius.php:17707 +#: includes/class-freemius.php5751, includes/class-freemius.php15975, +#: includes/class-freemius.php15986, includes/class-freemius.php19292, +#: includes/class-freemius.php19642, includes/class-freemius.php19711, +#: includes/class-freemius.php:19876 msgctxt "interjection expressing joy or exuberance" msgid "Yee-haw" msgstr "ヤッホー" -#: includes/class-freemius.php:5425 +#: includes/class-freemius.php:6015 msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license." msgstr "%s の無料試用が正常にキャンセルされました。 アドオンはプレミアムなので、自動的に無効化されました。 将来使用したい場合は、ライセンスを購入する必要があります。" -#: includes/class-freemius.php:5429 +#: includes/class-freemius.php:6019 msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin." msgstr "%s はプレミアムのみのアドオンです。そのプラグインを有効化する前にライセンスを購入する必要があります。" -#: includes/class-freemius.php5438, templates/add-ons.php103, -#: templates/account/partials/addon.php:288 +#: includes/class-freemius.php6028, templates/add-ons.php186, +#: templates/account/partials/addon.php:381 msgid "More information about %s" msgstr "%s に関する詳細情報" -#: includes/class-freemius.php:5439 +#: includes/class-freemius.php:6029 msgid "Purchase License" msgstr "ライセンスを購入" -#: includes/class-freemius.php6372, templates/connect.php:163 +#: includes/class-freemius.php6964, templates/connect.php:163 msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s." msgstr "%s のメールボックスに %s の有効化のメールを受け取っているはずです。%s のメールに記載された有効化ボタンをクリックしてください。" -#: includes/class-freemius.php:6376 +#: includes/class-freemius.php:6968 msgid "start the trial" msgstr "トライアルを開始" -#: includes/class-freemius.php6377, templates/connect.php:167 +#: includes/class-freemius.php6969, templates/connect.php:167 msgid "complete the install" msgstr "インストールを完了" -#: includes/class-freemius.php:6490 +#: includes/class-freemius.php:7081 msgid "You are just one step away - %s" msgstr "もうあとわずかです - %s" -#: includes/class-freemius.php:6493 +#: includes/class-freemius.php:7084 msgctxt "%s - plugin name. As complete \"PluginX\" activation now" msgid "Complete \"%s\" Activation Now" msgstr "すぐに \"%s\" 有効化を完了してください" -#: includes/class-freemius.php:6571 +#: includes/class-freemius.php:7162 msgid "We made a few tweaks to the %s, %s" msgstr "プラグインを微調整します、 %s, %s" -#: includes/class-freemius.php:6575 +#: includes/class-freemius.php:7166 msgid "Opt in to make \"%s\" better!" msgstr "Opt in to make \"%s\" better!" -#: includes/class-freemius.php:7003 +#: includes/class-freemius.php:7598 msgid "The upgrade of %s was successfully completed." msgstr "%s のアップグレードが完了しました。" -#: includes/class-freemius.php8925, includes/class-fs-plugin-updater.php886, -#: includes/class-fs-plugin-updater.php1081, -#: includes/class-fs-plugin-updater.php1088, +#: includes/class-freemius.php9802, includes/class-fs-plugin-updater.php1038, +#: includes/class-fs-plugin-updater.php1233, +#: includes/class-fs-plugin-updater.php1240, #: templates/auto-installation.php:32 msgid "Add-On" msgstr "アドオン" -#: includes/class-freemius.php8927, templates/debug.php359, -#: templates/debug.php:520 +#: includes/class-freemius.php9804, templates/account.php335, +#: templates/account.php343, templates/debug.php360, templates/debug.php:551 msgid "Plugin" msgstr "プラグイン" -#: includes/class-freemius.php8928, templates/debug.php359, -#: templates/debug.php520, templates/forms/deactivation/form.php:67 +#: includes/class-freemius.php9805, templates/account.php336, +#: templates/account.php344, templates/debug.php360, templates/debug.php551, +#: templates/forms/deactivation/form.php:71 msgid "Theme" msgstr "テーマ" -#: includes/class-freemius.php:11412 +#: includes/class-freemius.php:12596 +msgid "An unknown error has occurred while trying to set the user's beta mode." +msgstr "An unknown error has occurred while trying to set the user's beta mode." + +#: includes/class-freemius.php:13020 msgid "Invalid site details collection." msgstr "Invalid site details collection." -#: includes/class-freemius.php:11532 +#: includes/class-freemius.php:13140 msgid "We couldn't find your email address in the system, are you sure it's the right address?" msgstr "システムではメールアドレスを見つけることができませんでした。メールアドレスが正しいか確認してください。" -#: includes/class-freemius.php:11534 +#: includes/class-freemius.php:13142 msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?" msgstr "メールアドレスに関連付けられた有効なライセンスが見つかりません。メールアドレスが正しいか確認してください。" -#: includes/class-freemius.php:11808 +#: includes/class-freemius.php:13416 msgid "Account is pending activation." msgstr "アカウントは有効化待ちです。" -#: includes/class-freemius.php11920, +#: includes/class-freemius.php13528, #: templates/forms/premium-versions-upgrade-handler.php:47 msgid "Buy a license now" msgstr "Buy a license now" -#: includes/class-freemius.php11932, +#: includes/class-freemius.php13540, #: templates/forms/premium-versions-upgrade-handler.php:46 msgid "Renew your license now" msgstr "Renew your license now" -#: includes/class-freemius.php:11936 +#: includes/class-freemius.php:13544 msgid "%s to access version %s security & feature updates, and support." msgstr "%s to access version %s security & feature updates, and support." -#: includes/class-freemius.php:14319 +#: includes/class-freemius.php:15957 msgid "%s activation was successfully completed." msgstr "%s の有効化が成功しました。" -#: includes/class-freemius.php:14333 +#: includes/class-freemius.php:15971 msgid "Your account was successfully activated with the %s plan." msgstr "アカウントが %s プランで有効化できました。" -#: includes/class-freemius.php14344, includes/class-freemius.php:17553 +#: includes/class-freemius.php15982, includes/class-freemius.php:19707 msgid "Your trial has been successfully started." msgstr "トライアル版の利用を開始しました。" -#: includes/class-freemius.php14914, includes/class-freemius.php14966, -#: includes/class-freemius.php:15028 +#: includes/class-freemius.php16556, includes/class-freemius.php16644, +#: includes/class-freemius.php:16810 msgid "Couldn't activate %s." msgstr "%s を有効化できません。" -#: includes/class-freemius.php14915, includes/class-freemius.php14967, -#: includes/class-freemius.php:15029 +#: includes/class-freemius.php16557, includes/class-freemius.php16645, +#: includes/class-freemius.php:16811 msgid "Please contact us with the following message:" msgstr "以下のメッセージとともに私たちに連絡をください。" -#: includes/class-freemius.php15378, includes/class-freemius.php:19839 +#: includes/class-freemius.php16641, templates/forms/data-debug-mode.php:162 +msgid "An unknown error has occurred." +msgstr "An unknown error has occurred." + +#: includes/class-freemius.php17168, includes/class-freemius.php:22082 msgid "Upgrade" msgstr "アップグレード" -#: includes/class-freemius.php:15384 +#: includes/class-freemius.php:17174 msgid "Start Trial" msgstr "トライアルを開始" -#: includes/class-freemius.php:15386 +#: includes/class-freemius.php:17176 msgid "Pricing" msgstr "料金表" -#: includes/class-freemius.php15448, includes/class-freemius.php:15450 +#: includes/class-freemius.php17256, includes/class-freemius.php:17258 msgid "Affiliation" msgstr "アフィリエイト" -#: includes/class-freemius.php15478, includes/class-freemius.php15480, -#: templates/account.php150, templates/debug.php:324 +#: includes/class-freemius.php17286, includes/class-freemius.php17288, +#: templates/account.php183, templates/debug.php:326 msgid "Account" msgstr "アカウント" -#: includes/class-freemius.php15493, includes/class-freemius.php15495, +#: includes/class-freemius.php17302, includes/class-freemius.php17304, #: includes/customizer/class-fs-customizer-support-section.php:60 msgid "Contact Us" msgstr "連絡" -#: includes/class-freemius.php15505, includes/class-freemius.php15507, -#: includes/class-freemius.php19849, templates/account.php100, -#: templates/account/partials/addon.php:41 +#: includes/class-freemius.php17315, includes/class-freemius.php17317, +#: includes/class-freemius.php22096, templates/account.php111, +#: templates/account/partials/addon.php:44 msgid "Add-Ons" msgstr "アドオン" -#: includes/class-freemius.php:15541 +#: includes/class-freemius.php:17351 msgctxt "ASCII arrow left icon" msgid "←" msgstr "←" -#: includes/class-freemius.php:15541 +#: includes/class-freemius.php:17351 msgctxt "ASCII arrow right icon" msgid "➤" msgstr "➤" -#: includes/class-freemius.php15543, templates/pricing.php:97 +#: includes/class-freemius.php17353, templates/pricing.php:103 msgctxt "noun" msgid "Pricing" msgstr "料金表" -#: includes/class-freemius.php15756, +#: includes/class-freemius.php17566, #: includes/customizer/class-fs-customizer-support-section.php:67 msgid "Support Forum" msgstr "サポートフォーラム" -#: includes/class-freemius.php:16542 +#: includes/class-freemius.php:18536 msgid "Your email has been successfully verified - you are AWESOME!" msgstr "あなたのメールアドレスの承認が完了しました。すごい!" -#: includes/class-freemius.php:16543 +#: includes/class-freemius.php:18537 msgctxt "a positive response" msgid "Right on" msgstr "そうだ" -#: includes/class-freemius.php:17168 +#: includes/class-freemius.php:19041 +msgid "seems like the key you entered doesn't match our records." +msgstr "seems like the key you entered doesn't match our records." + +#: includes/class-freemius.php:19065 +msgid "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." +msgstr "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." + +#: includes/class-freemius.php:19283 msgid "Your %s Add-on plan was successfully upgraded." msgstr "%s のアドオンのプランのアップグレードが完了しました。" -#: includes/class-freemius.php:17170 +#: includes/class-freemius.php:19285 msgid "%s Add-on was successfully purchased." msgstr "%s のアドオンの支払いが完了しました。" -#: includes/class-freemius.php:17173 +#: includes/class-freemius.php:19288 msgid "Download the latest version" msgstr "最新版をダウンロード" -#: includes/class-freemius.php:17259 -msgctxt "%1s - plugin title, %2s - API domain" -msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s" -msgstr "サーバーは %1s の同期に不可欠な Freemius の API へのアクセスをブロックしています。 ホワイトリストに %2s を追加していただけるようあなたのホスティング会社に連絡してください。" +#: includes/class-freemius.php:19374 +msgid "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s" +msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s" -#: includes/class-freemius.php17262, includes/class-freemius.php17678, -#: includes/class-freemius.php:17755 +#: includes/class-freemius.php19380, includes/class-freemius.php19390, +#: includes/class-freemius.php19835, includes/class-freemius.php:19924 msgid "Error received from the server:" msgstr "サーバーからエラーを受信しました。" -#: includes/class-freemius.php:17272 +#: includes/class-freemius.php:19390 msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again." msgstr "認証パラメータの1つが間違っているようです。 公開鍵、秘密鍵、ユーザーIDを更新して、もう一度お試しください。" -#: includes/class-freemius.php17454, includes/class-freemius.php17683, -#: includes/class-freemius.php17726, includes/class-freemius.php:17829 +#: includes/class-freemius.php19604, includes/class-freemius.php19840, +#: includes/class-freemius.php19895, includes/class-freemius.php:19998 msgctxt "" msgid "Hmm" msgstr "ふむ" -#: includes/class-freemius.php:17467 +#: includes/class-freemius.php:19617 msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry." msgstr "まだ %s プランのようです。もしアップグレードやプランの変更をしたのなら、こちらで何らかの問題が発生しているようです。申し訳ありません。" -#: includes/class-freemius.php17468, templates/account.php102, -#: templates/add-ons.php134, templates/account/partials/addon.php:43 +#: includes/class-freemius.php19618, templates/account.php113, +#: templates/add-ons.php250, templates/account/partials/addon.php:46 msgctxt "trial period" msgid "Trial" msgstr "トライアル" -#: includes/class-freemius.php:17473 +#: includes/class-freemius.php:19623 msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s." msgstr "アカウントをアップグレードしましたが、ライセンスを同期しようとするとプランが %s のままです。" -#: includes/class-freemius.php17477, includes/class-freemius.php:17535 +#: includes/class-freemius.php19627, includes/class-freemius.php:19686 msgid "Please contact us here" msgstr "こちらで私たちに連絡をとってください。" -#: includes/class-freemius.php:17487 +#: includes/class-freemius.php:19638 +msgid "Your plan was successfully activated." +msgstr "Your plan was successfully activated." + +#: includes/class-freemius.php:19639 msgid "Your plan was successfully upgraded." msgstr "プランのアップグレードが成功しました。" -#: includes/class-freemius.php:17505 +#: includes/class-freemius.php:19656 msgid "Your plan was successfully changed to %s." msgstr "プランの %s への変更が成功しました。" -#: includes/class-freemius.php:17521 +#: includes/class-freemius.php:19672 msgid "Your license has expired. You can still continue using the free %s forever." msgstr "ライセンスの有効期限が切れました。無料バージョンの%s は引き続き利用できます。" -#: includes/class-freemius.php:17523 +#: includes/class-freemius.php:19674 msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." msgstr "ライセンスの有効期限が切れました。 %1$s %3$sに邪魔されずに利用を継続するには,今すぐ%2$sアップグレードを行ってください。" -#: includes/class-freemius.php:17531 +#: includes/class-freemius.php:19682 msgid "Your license has been cancelled. If you think it's a mistake, please contact support." msgstr "ライセンスはキャンセルされました。もしそれが間違いだと思うならサポートに連絡してください。" -#: includes/class-freemius.php:17544 +#: includes/class-freemius.php:19695 msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support." msgstr "ライセンスは有効期限がきれました。%s の機能を引き続き利用することができます。ただし、アップデートやサポートをうけるにはライセンスをアップデートする必要があります。" -#: includes/class-freemius.php:17567 +#: includes/class-freemius.php:19721 msgid "Your free trial has expired. You can still continue using all our free features." msgstr "フリートライアル期間が終了しました。無料で使える機能は引き続き利用可能です。" -#: includes/class-freemius.php:17569 +#: includes/class-freemius.php:19723 msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." msgstr "フリートライアル期間が終了しました。%1$s %3$sに邪魔されずに利用を継続するには,今すぐ %2$s のアップグレードを行ってください。" -#: includes/class-freemius.php:17674 +#: includes/class-freemius.php:19831 msgid "It looks like the license could not be activated." msgstr "ライセンスの有効化ができませんでした。" -#: includes/class-freemius.php:17704 +#: includes/class-freemius.php:19873 msgid "Your license was successfully activated." msgstr "ライセンスの有効化が成功しました。" -#: includes/class-freemius.php:17730 +#: includes/class-freemius.php:19899 msgid "It looks like your site currently doesn't have an active license." msgstr "サイトは有効なライセンスを持っていないようです。" -#: includes/class-freemius.php:17754 +#: includes/class-freemius.php:19923 msgid "It looks like the license deactivation failed." msgstr "ライセンスの無効化ができませんでした。" -#: includes/class-freemius.php:17782 +#: includes/class-freemius.php:19951 msgid "Your license was successfully deactivated, you are back to the %s plan." msgstr "ライセンスの無効化が完了しました。%s プランに戻りました。" -#: includes/class-freemius.php:17783 +#: includes/class-freemius.php:19952 msgid "O.K" msgstr "O.K" -#: includes/class-freemius.php:17836 +#: includes/class-freemius.php:20005 msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes." msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes." -#: includes/class-freemius.php:17845 +#: includes/class-freemius.php:20014 msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s." msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s." -#: includes/class-freemius.php:17887 +#: includes/class-freemius.php:20056 msgid "You are already running the %s in a trial mode." msgstr "すでに%sをトライアルモードで利用中です。" -#: includes/class-freemius.php:17898 +#: includes/class-freemius.php:20067 msgid "You already utilized a trial before." msgstr "以前すでに試用版を利用しました。" -#: includes/class-freemius.php:17912 +#: includes/class-freemius.php:20081 msgid "Plan %s do not exist, therefore, can't start a trial." msgstr "%s プランは存在しないため、試用を開始できません。" -#: includes/class-freemius.php:17923 +#: includes/class-freemius.php:20092 msgid "Plan %s does not support a trial period." msgstr "%s プランにはトライアル期間はありません。" -#: includes/class-freemius.php:17934 +#: includes/class-freemius.php:20103 msgid "None of the %s's plans supports a trial period." msgstr "%sのプランにはトライアル期間はありません。" -#: includes/class-freemius.php:17984 +#: includes/class-freemius.php:20153 msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)" msgstr "すでにトライアルモードではないようなので、キャンセルする必要はありません :)" -#: includes/class-freemius.php:18020 +#: includes/class-freemius.php:20189 msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes." msgstr "トライアルのキャンセルに一時的な問題がありました。数分後に再度お試しください。" -#: includes/class-freemius.php:18039 +#: includes/class-freemius.php:20208 msgid "Your %s free trial was successfully cancelled." msgstr "%s のフリートライアルはキャンセルされました。" -#: includes/class-freemius.php:18346 +#: includes/class-freemius.php:20524 msgid "Version %s was released." msgstr "バージョン %s をリリースしました。" -#: includes/class-freemius.php:18346 +#: includes/class-freemius.php:20524 msgid "Please download %s." msgstr "%s をダウンロードしてください。" -#: includes/class-freemius.php:18353 +#: includes/class-freemius.php:20531 msgid "the latest %s version here" msgstr "最新の %s バージョンはこちらです。" -#: includes/class-freemius.php:18358 +#: includes/class-freemius.php:20536 msgid "New" msgstr "新規" -#: includes/class-freemius.php:18363 +#: includes/class-freemius.php:20541 msgid "Seems like you got the latest release." msgstr "最新版を取得できました。" -#: includes/class-freemius.php:18364 +#: includes/class-freemius.php:20542 msgid "You are all good!" msgstr "すべて完璧です!" -#: includes/class-freemius.php:18632 +#: includes/class-freemius.php:20812 msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box." msgstr "%s に確認メールを送信しました。もし5分以内にそれが届かない場合、迷惑メールボックスを確認してください。" -#: includes/class-freemius.php:18769 +#: includes/class-freemius.php:20951 msgid "Site successfully opted in." msgstr "サイトのオプトインに成功しました。" -#: includes/class-freemius.php18770, includes/class-freemius.php:19581 +#: includes/class-freemius.php20952, includes/class-freemius.php:21792 msgid "Awesome" msgstr "すごい!" -#: includes/class-freemius.php18786, templates/forms/optout.php:32 +#: includes/class-freemius.php20968, templates/forms/optout.php:32 msgid "We appreciate your help in making the %s better by letting us track some usage data." msgstr "使用データを追跡できるよう許可してくれたことで、%s をより良くするための手助けに感謝致します。" -#: includes/class-freemius.php:18787 +#: includes/class-freemius.php:20969 msgid "Thank you!" msgstr "ありがとうございます!" -#: includes/class-freemius.php:18794 +#: includes/class-freemius.php:20976 msgid "We will no longer be sending any usage data of %s on %s to %s." msgstr "もう%s上の%sから%sへのデータ送信は行いません。" -#: includes/class-freemius.php:18923 +#: includes/class-freemius.php:21105 msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder." msgstr "メールボックスを確認してください。所有権の変更を確認するには、%s でメールを受け取る必要があります。 セキュリティ上の理由から、次の15分以内に変更を確認する必要があります。 電子メールが見つからない場合は、迷惑メールフォルダを確認してください。" -#: includes/class-freemius.php:18929 +#: includes/class-freemius.php:21111 msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval." msgstr "所有権の変更を確認していただきありがとうございます。 %s に承認メールが送信されました。" -#: includes/class-freemius.php:18934 +#: includes/class-freemius.php:21116 msgid "%s is the new owner of the account." msgstr "%s は新しいオーナーです。" -#: includes/class-freemius.php:18936 +#: includes/class-freemius.php:21118 msgctxt "as congratulations" msgid "Congrats" msgstr "おめでとう" -#: includes/class-freemius.php:18956 +#: includes/class-freemius.php:21138 msgid "Sorry, we could not complete the email update. Another user with the same email is already registered." msgstr "メールアドレスのアップデートを完了できませんでした。他のユーザーがすでに同じメールアドレスで登録しているようです。" -#: includes/class-freemius.php:18957 +#: includes/class-freemius.php:21139 msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button." msgstr "%sの所有権を%sへ譲りたい場合は、所有権の変更ボタンをクリックしてください。" -#: includes/class-freemius.php:18964 +#: includes/class-freemius.php:21146 msgid "Change Ownership" msgstr "オーナーを変更" -#: includes/class-freemius.php:18972 +#: includes/class-freemius.php:21154 msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments." msgstr "メールアドレスのアップデートが完了しました。まもなく確認メールが届きます。" -#: includes/class-freemius.php:18984 +#: includes/class-freemius.php:21166 msgid "Please provide your full name." msgstr "フルネームを入力してください。" -#: includes/class-freemius.php:18989 +#: includes/class-freemius.php:21171 msgid "Your name was successfully updated." msgstr "名前のアップデートが成功しました。" -#: includes/class-freemius.php:19050 +#: includes/class-freemius.php:21232 msgid "You have successfully updated your %s." msgstr "%s のアップデートが成功しました。" -#: includes/class-freemius.php:19190 +#: includes/class-freemius.php:21372 msgid "Just letting you know that the add-ons information of %s is being pulled from an external server." msgstr "%s のアドオンに関する情報は、外部サーバーから取得されます。" -#: includes/class-freemius.php:19191 +#: includes/class-freemius.php:21373 msgctxt "advance notice of something that will need attention." msgid "Heads up" msgstr "警告" -#: includes/class-freemius.php:19621 +#: includes/class-freemius.php:21832 msgctxt "exclamation" msgid "Hey" msgstr "ヘイ" -#: includes/class-freemius.php:19621 +#: includes/class-freemius.php:21832 msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial." msgstr "%s はどうですか? 私たちの全ての %s のプレミアム機能をお試しください。" -#: includes/class-freemius.php:19629 +#: includes/class-freemius.php:21840 msgid "No commitment for %s days - cancel anytime!" msgstr "%s 日以内であればいつでもキャンセルできます。" -#: includes/class-freemius.php:19630 +#: includes/class-freemius.php:21841 msgid "No credit card required" msgstr "クレジットカードは必要ありません。" -#: includes/class-freemius.php19637, templates/forms/trial-start.php:53 +#: includes/class-freemius.php21848, templates/forms/trial-start.php:53 msgctxt "call to action" msgid "Start free trial" msgstr "フリートライアルを開始" -#: includes/class-freemius.php:19714 +#: includes/class-freemius.php:21925 msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!" msgstr "こんにちは。%sにアフィリエイトプログラムがあるのはご存知でしたか? %sがお好きなら、私たちのアンバサダーになって報酬を得ましょう!" -#: includes/class-freemius.php:19723 +#: includes/class-freemius.php:21934 msgid "Learn more" msgstr "詳細はこちら" -#: includes/class-freemius.php19873, templates/account.php406, -#: templates/account.php509, templates/connect.php171, -#: templates/connect.php421, templates/forms/license-activation.php24, -#: templates/account/partials/addon.php:235 +#: includes/class-freemius.php22120, templates/account.php499, +#: templates/account.php624, templates/connect.php171, +#: templates/connect.php421, templates/forms/license-activation.php27, +#: templates/account/partials/addon.php:321 msgid "Activate License" msgstr "ライセンスを有効化" -#: includes/class-freemius.php19874, templates/account.php469, -#: templates/account.php508, templates/account/partials/site.php:256 +#: includes/class-freemius.php22121, templates/account.php571, +#: templates/account.php623, templates/account/partials/addon.php322, +#: templates/account/partials/site.php:271 msgid "Change License" msgstr "ライセンスを変更" -#: includes/class-freemius.php19956, templates/account/partials/site.php:161 +#: includes/class-freemius.php22217, templates/account/partials/site.php:169 msgid "Opt Out" msgstr "オプトアウト" -#: includes/class-freemius.php19958, includes/class-freemius.php19963, -#: templates/account/partials/site.php43, -#: templates/account/partials/site.php:161 +#: includes/class-freemius.php22219, includes/class-freemius.php22225, +#: templates/account/partials/site.php49, +#: templates/account/partials/site.php:169 msgid "Opt In" msgstr "オプトイン" -#: includes/class-freemius.php:20187 -msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s" -msgstr " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s" +#: includes/class-freemius.php:22453 +msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s" +msgstr " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s" -#: includes/class-freemius.php:20195 +#: includes/class-freemius.php:22461 msgid "Activate %s features" msgstr "Activate %s features" -#: includes/class-freemius.php:20208 +#: includes/class-freemius.php:22474 msgid "Please follow these steps to complete the upgrade" msgstr "アップグレードを完了するには以下の手順を完了させてください。" -#: includes/class-freemius.php:20212 +#: includes/class-freemius.php:22478 msgid "Download the latest %s version" msgstr "最新の %s をダウンロード" -#: includes/class-freemius.php:20216 +#: includes/class-freemius.php:22482 msgid "Upload and activate the downloaded version" msgstr "ダウンロードしたバージョンをアップロードして有効化" -#: includes/class-freemius.php:20218 +#: includes/class-freemius.php:22484 msgid "How to upload and activate?" msgstr "アップロードと有効化の方法" -#: includes/class-freemius.php:20352 +#: includes/class-freemius.php:22618 msgid "%sClick here%s to choose the sites where you'd like to activate the license on." msgstr "%sここをクリックして%s ライセンスを有効化したいサイトを選択してください。" -#: includes/class-freemius.php:20513 +#: includes/class-freemius.php:22779 msgid "Auto installation only works for opted-in users." msgstr "自動インストールはオプトインしたユーザのみで動作します。" -#: includes/class-freemius.php20523, includes/class-freemius.php20556, -#: includes/class-fs-plugin-updater.php1060, -#: includes/class-fs-plugin-updater.php:1074 +#: includes/class-freemius.php22789, includes/class-freemius.php22822, +#: includes/class-fs-plugin-updater.php1212, +#: includes/class-fs-plugin-updater.php:1226 msgid "Invalid module ID." msgstr "モジュール ID が不正です" -#: includes/class-freemius.php20532, includes/class-fs-plugin-updater.php:1096 +#: includes/class-freemius.php22798, includes/class-fs-plugin-updater.php:1248 msgid "Premium version already active." msgstr "プレミアムバージョンはすでに有効になっています。" -#: includes/class-freemius.php:20539 +#: includes/class-freemius.php:22805 msgid "You do not have a valid license to access the premium version." msgstr "プレミアムバージョンにアクセスできる有効なライセンス持っていません。" -#: includes/class-freemius.php:20546 +#: includes/class-freemius.php:22812 msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version." msgstr "プラグインはプレミアムコードバージョンのない「サービスウェア」です。" -#: includes/class-freemius.php20564, includes/class-fs-plugin-updater.php:1095 +#: includes/class-freemius.php22830, includes/class-fs-plugin-updater.php:1247 msgid "Premium add-on version already installed." msgstr "プレミアムアドオンバージョンはすでにインストール済みです。" -#: includes/class-freemius.php:20909 +#: includes/class-freemius.php:23180 msgid "View paid features" msgstr "有料の機能を表示する" -#: includes/class-freemius.php:21229 +#: includes/class-freemius.php:23502 msgid "Thank you so much for using %s and its add-ons!" msgstr "%sとアドオンのご利用ありがとうございます!" -#: includes/class-freemius.php:21230 +#: includes/class-freemius.php:23503 msgid "Thank you so much for using %s!" msgstr "%sのご利用ありがとうございます!" -#: includes/class-freemius.php:21236 +#: includes/class-freemius.php:23509 msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s." msgstr "%sの改善に役立つ使用状況のトラッキングにすでにオプトインしています。" -#: includes/class-freemius.php:21240 +#: includes/class-freemius.php:23513 msgid "Thank you so much for using our products!" msgstr "プロダクトのご利用ありがとうございます!" -#: includes/class-freemius.php:21241 +#: includes/class-freemius.php:23514 msgid "You've already opted-in to our usage-tracking, which helps us keep improving them." msgstr "プロダクトの改善に役立つ使用状況のトラッキングにすでにオプトインしています。" -#: includes/class-freemius.php:21260 +#: includes/class-freemius.php:23533 msgid "%s and its add-ons" msgstr "%sとそのアドオン" -#: includes/class-freemius.php:21269 +#: includes/class-freemius.php:23542 msgid "Products" msgstr "プロダクト" -#: includes/class-freemius.php21276, templates/connect.php:272 +#: includes/class-freemius.php23549, templates/connect.php:272 msgid "Yes" msgstr "はい" -#: includes/class-freemius.php21277, templates/connect.php:273 +#: includes/class-freemius.php23550, templates/connect.php:273 msgid "send me security & feature updates, educational content and offers." msgstr "セキュリティと機能のアップデート、学習用コンテンツやオファーを送ってください。" -#: includes/class-freemius.php21278, templates/connect.php:278 +#: includes/class-freemius.php23551, templates/connect.php:278 msgid "No" msgstr "いいえ" -#: includes/class-freemius.php21280, templates/connect.php:280 +#: includes/class-freemius.php23553, templates/connect.php:280 msgid "do %sNOT%s send me security & feature updates, educational content and offers." msgstr "セキュリティと機能のアップデート、学習用コンテンツやオファーを%s送らないでください%s。" -#: includes/class-freemius.php:21290 -msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂" -msgstr "新しい %sEU General Data Protection Regulation (GDPR)%s コンプライアンスを満たすため、あなたが明示的に同意したことを再度確認し、またあなたがオンボードであることを確認する必要があります 🙂" +#: includes/class-freemius.php:23563 +msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard :-)" +msgstr "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard :-)" -#: includes/class-freemius.php21292, templates/connect.php:287 +#: includes/class-freemius.php23565, templates/connect.php:287 msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:" msgstr "セキュリティや機能のアップデート、学習用用コンテンツ、およびオファーについてお問い合わせを希望される場合は、お知らせください。" -#: includes/class-freemius.php:21574 +#: includes/class-freemius.php:23847 msgid "License key is empty." msgstr "ライセンスキーが空です。" -#: includes/class-fs-plugin-updater.php184, +#: includes/class-fs-plugin-updater.php206, #: templates/forms/premium-versions-upgrade-handler.php:57 msgid "Renew license" msgstr "ライセンスを更新" -#: includes/class-fs-plugin-updater.php189, +#: includes/class-fs-plugin-updater.php211, #: templates/forms/premium-versions-upgrade-handler.php:58 msgid "Buy license" msgstr "Buy license" -#: includes/class-fs-plugin-updater.php:278 +#: includes/class-fs-plugin-updater.php321, +#: includes/class-fs-plugin-updater.php:354 msgid "There is a %s of %s available." msgstr "There is a %s of %s available." -#: includes/class-fs-plugin-updater.php:282 +#: includes/class-fs-plugin-updater.php323, +#: includes/class-fs-plugin-updater.php:359 +msgid "new Beta version" +msgstr "new Beta version" + +#: includes/class-fs-plugin-updater.php324, +#: includes/class-fs-plugin-updater.php:360 msgid "new version" msgstr "new version" -#: includes/class-fs-plugin-updater.php:305 +#: includes/class-fs-plugin-updater.php:383 msgid "Important Upgrade Notice:" msgstr "Important Upgrade Notice:" -#: includes/class-fs-plugin-updater.php:1125 +#: includes/class-fs-plugin-updater.php:1277 msgid "Installing plugin: %s" msgstr "インストール中プラグイン: %s" -#: includes/class-fs-plugin-updater.php:1166 +#: includes/class-fs-plugin-updater.php:1318 msgid "Unable to connect to the filesystem. Please confirm your credentials." msgstr "ファイルシステムに接続できません。視覚情報を確認してください。" -#: includes/class-fs-plugin-updater.php:1348 +#: includes/class-fs-plugin-updater.php:1500 msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work." msgstr "リモートプラグインパッケージには、目的のスラッグを含むフォルダが含まれていないため、リねームが機能しませんでした。" -#: includes/fs-plugin-info-dialog.php369, -#: templates/account/partials/addon.php:292 +#: includes/fs-plugin-info-dialog.php:535 +msgid "Purchase More" +msgstr "Purchase More" + +#: includes/fs-plugin-info-dialog.php536, +#: templates/account/partials/addon.php:385 msgctxt "verb" msgid "Purchase" msgstr "購入" -#: includes/fs-plugin-info-dialog.php:372 +#: includes/fs-plugin-info-dialog.php:540 msgid "Start my free %s" msgstr "無料の %s を開始" -#: includes/fs-plugin-info-dialog.php:413 +#: includes/fs-plugin-info-dialog.php:738 +msgid "Install Free Version Update Now" +msgstr "フリーバージョンの更新を今すぐインストール" + +#: includes/fs-plugin-info-dialog.php739, templates/account.php:560 +msgid "Install Update Now" +msgstr "今すぐ更新をインストール" + +#: includes/fs-plugin-info-dialog.php:748 msgid "Install Free Version Now" msgstr "フリーバージョンを今すぐインストール" -#: includes/fs-plugin-info-dialog.php414, templates/auto-installation.php111, -#: templates/account/partials/addon.php272, -#: templates/account/partials/addon.php:322 +#: includes/fs-plugin-info-dialog.php749, templates/add-ons.php323, +#: templates/auto-installation.php111, +#: templates/account/partials/addon.php365, +#: templates/account/partials/addon.php:418 msgid "Install Now" msgstr "今すぐインストール" -#: includes/fs-plugin-info-dialog.php:425 +#: includes/fs-plugin-info-dialog.php:765 msgctxt "as download latest version" msgid "Download Latest Free Version" msgstr "最新のフリーバージョンをダウンロード" -#: includes/fs-plugin-info-dialog.php426, templates/account.php80, -#: templates/account/partials/addon.php:21 +#: includes/fs-plugin-info-dialog.php766, templates/account.php91, +#: templates/add-ons.php37, templates/account/partials/addon.php:25 msgctxt "as download latest version" msgid "Download Latest" msgstr "最新版をダウンロード" -#: includes/fs-plugin-info-dialog.php:436 -msgid "Install Free Version Update Now" -msgstr "フリーバージョンの更新を今すぐインストール" - -#: includes/fs-plugin-info-dialog.php437, templates/account.php:460 -msgid "Install Update Now" -msgstr "今すぐ更新をインストール" - -#: includes/fs-plugin-info-dialog.php:448 -msgid "Newer Free Version (%s) Installed" -msgstr "新しいフリーバージョン (%s) がインストールされました" - -#: includes/fs-plugin-info-dialog.php:449 -msgid "Newer Version (%s) Installed" -msgstr "新しいバージョン (%s) がインストールされました" +#: includes/fs-plugin-info-dialog.php781, templates/add-ons.php329, +#: templates/account/partials/addon.php356, +#: templates/account/partials/addon.php:412 +msgid "Activate this add-on" +msgstr "このアドオンを有効化" -#: includes/fs-plugin-info-dialog.php:457 -msgid "Latest Free Version Installed" -msgstr "最新のフリーバージョンがインストールされました" +#: includes/fs-plugin-info-dialog.php783, templates/connect.php:418 +msgid "Activate Free Version" +msgstr "フリーバージョンを有効化" -#: includes/fs-plugin-info-dialog.php:458 -msgid "Latest Version Installed" -msgstr "最新版がイストールされました" +#: includes/fs-plugin-info-dialog.php784, templates/account.php115, +#: templates/add-ons.php330, templates/account/partials/addon.php:48 +msgid "Activate" +msgstr "有効化" -#: includes/fs-plugin-info-dialog.php:613 +#: includes/fs-plugin-info-dialog.php:994 msgctxt "Plugin installer section title" msgid "Description" msgstr "説明" -#: includes/fs-plugin-info-dialog.php:614 +#: includes/fs-plugin-info-dialog.php:995 msgctxt "Plugin installer section title" msgid "Installation" msgstr "インストール" -#: includes/fs-plugin-info-dialog.php:615 +#: includes/fs-plugin-info-dialog.php:996 msgctxt "Plugin installer section title" msgid "FAQ" msgstr "FAQ" -#: includes/fs-plugin-info-dialog.php616, +#: includes/fs-plugin-info-dialog.php997, #: templates/plugin-info/description.php:55 msgid "Screenshots" msgstr "スクリーンショット" -#: includes/fs-plugin-info-dialog.php:617 +#: includes/fs-plugin-info-dialog.php:998 msgctxt "Plugin installer section title" msgid "Changelog" msgstr "変更履歴" -#: includes/fs-plugin-info-dialog.php:618 +#: includes/fs-plugin-info-dialog.php:999 msgctxt "Plugin installer section title" msgid "Reviews" msgstr "レビュー" -#: includes/fs-plugin-info-dialog.php:619 +#: includes/fs-plugin-info-dialog.php:1000 msgctxt "Plugin installer section title" msgid "Other Notes" msgstr "その他の記述" -#: includes/fs-plugin-info-dialog.php:634 +#: includes/fs-plugin-info-dialog.php:1015 msgctxt "Plugin installer section title" msgid "Features & Pricing" msgstr "機能 & 料金" -#: includes/fs-plugin-info-dialog.php:644 +#: includes/fs-plugin-info-dialog.php:1025 msgid "Plugin Install" msgstr "プラグインのインストール" -#: includes/fs-plugin-info-dialog.php:716 +#: includes/fs-plugin-info-dialog.php:1097 msgctxt "e.g. Professional Plan" msgid "%s Plan" msgstr "%s プラン" -#: includes/fs-plugin-info-dialog.php:742 +#: includes/fs-plugin-info-dialog.php:1123 msgctxt "e.g. the best product" msgid "Best" msgstr "ベスト" -#: includes/fs-plugin-info-dialog.php748, -#: includes/fs-plugin-info-dialog.php:768 +#: includes/fs-plugin-info-dialog.php1129, +#: includes/fs-plugin-info-dialog.php:1149 msgctxt "as every month" msgid "Monthly" msgstr "月" -#: includes/fs-plugin-info-dialog.php:751 +#: includes/fs-plugin-info-dialog.php:1132 msgctxt "as once a year" msgid "Annual" msgstr "年次" -#: includes/fs-plugin-info-dialog.php:754 +#: includes/fs-plugin-info-dialog.php:1135 msgid "Lifetime" msgstr "ライフタイム" -#: includes/fs-plugin-info-dialog.php768, -#: includes/fs-plugin-info-dialog.php770, -#: includes/fs-plugin-info-dialog.php:772 +#: includes/fs-plugin-info-dialog.php1149, +#: includes/fs-plugin-info-dialog.php1151, +#: includes/fs-plugin-info-dialog.php:1153 msgctxt "e.g. billed monthly" msgid "Billed %s" msgstr "%s への請求" -#: includes/fs-plugin-info-dialog.php:770 +#: includes/fs-plugin-info-dialog.php:1151 msgctxt "as once a year" msgid "Annually" msgstr "毎年" -#: includes/fs-plugin-info-dialog.php:772 +#: includes/fs-plugin-info-dialog.php:1153 msgctxt "as once a year" msgid "Once" msgstr "一度" -#: includes/fs-plugin-info-dialog.php:778 +#: includes/fs-plugin-info-dialog.php:1159 msgid "Single Site License" msgstr "シングルサイトライセンス" -#: includes/fs-plugin-info-dialog.php:780 +#: includes/fs-plugin-info-dialog.php:1161 msgid "Unlimited Licenses" msgstr "無制限ライセンス" -#: includes/fs-plugin-info-dialog.php:782 +#: includes/fs-plugin-info-dialog.php:1163 msgid "Up to %s Sites" msgstr "%sサイトまで" -#: includes/fs-plugin-info-dialog.php792, +#: includes/fs-plugin-info-dialog.php1173, #: templates/plugin-info/features.php:82 msgctxt "as monthly period" msgid "mo" msgstr "月" -#: includes/fs-plugin-info-dialog.php799, +#: includes/fs-plugin-info-dialog.php1180, #: templates/plugin-info/features.php:80 msgctxt "as annual period" msgid "year" msgstr "年" -#: includes/fs-plugin-info-dialog.php:853 +#: includes/fs-plugin-info-dialog.php:1234 msgctxt "noun" msgid "Price" msgstr "料金" -#: includes/fs-plugin-info-dialog.php:901 +#: includes/fs-plugin-info-dialog.php:1282 msgid "Save %s" msgstr "%s を保存" -#: includes/fs-plugin-info-dialog.php:911 +#: includes/fs-plugin-info-dialog.php:1292 msgid "No commitment for %s - cancel anytime" msgstr "%s の拘束はありません。いつでもキャンセルできます。" -#: includes/fs-plugin-info-dialog.php:914 +#: includes/fs-plugin-info-dialog.php:1295 msgid "After your free %s, pay as little as %s" msgstr "無料の %s の後は、わずか %s だけお支払ください。" -#: includes/fs-plugin-info-dialog.php:925 +#: includes/fs-plugin-info-dialog.php:1306 msgid "Details" msgstr "詳細" -#: includes/fs-plugin-info-dialog.php929, templates/account.php91, -#: templates/debug.php201, templates/debug.php238, templates/debug.php452, -#: templates/account/partials/addon.php:32 +#: includes/fs-plugin-info-dialog.php1310, templates/account.php102, +#: templates/debug.php203, templates/debug.php240, templates/debug.php457, +#: templates/account/partials/addon.php:36 msgctxt "product version" msgid "Version" msgstr "バージョン" -#: includes/fs-plugin-info-dialog.php:936 +#: includes/fs-plugin-info-dialog.php:1317 msgctxt "as the plugin author" msgid "Author" msgstr "作者" -#: includes/fs-plugin-info-dialog.php:943 +#: includes/fs-plugin-info-dialog.php:1324 msgid "Last Updated" msgstr "最終更新" -#: includes/fs-plugin-info-dialog.php948, templates/account.php:376 +#: includes/fs-plugin-info-dialog.php1329, templates/account.php:468 msgctxt "x-ago" msgid "%s ago" msgstr "%s 前" -#: includes/fs-plugin-info-dialog.php:957 +#: includes/fs-plugin-info-dialog.php:1338 msgid "Requires WordPress Version" msgstr "必要な WordPress のバージョン" -#: includes/fs-plugin-info-dialog.php:958 +#: includes/fs-plugin-info-dialog.php:1339 msgid "%s or higher" msgstr "%sまたはそれ以上" -#: includes/fs-plugin-info-dialog.php:965 +#: includes/fs-plugin-info-dialog.php:1346 msgid "Compatible up to" msgstr "互換性のある最新バージョン" -#: includes/fs-plugin-info-dialog.php:973 +#: includes/fs-plugin-info-dialog.php:1354 msgid "Downloaded" msgstr "ダウンロード済み" -#: includes/fs-plugin-info-dialog.php:977 +#: includes/fs-plugin-info-dialog.php:1358 msgid "%s time" msgstr "%s回" -#: includes/fs-plugin-info-dialog.php:979 +#: includes/fs-plugin-info-dialog.php:1360 msgid "%s times" msgstr "%s回" -#: includes/fs-plugin-info-dialog.php:989 +#: includes/fs-plugin-info-dialog.php:1370 msgid "WordPress.org Plugin Page" msgstr "WordPress.org のプラグインページ" -#: includes/fs-plugin-info-dialog.php:997 +#: includes/fs-plugin-info-dialog.php:1378 msgid "Plugin Homepage" msgstr "プラグインのホームページ" -#: includes/fs-plugin-info-dialog.php1005, -#: includes/fs-plugin-info-dialog.php:1087 +#: includes/fs-plugin-info-dialog.php1386, +#: includes/fs-plugin-info-dialog.php:1468 msgid "Donate to this plugin" msgstr "このプラグインに寄付する" -#: includes/fs-plugin-info-dialog.php:1012 +#: includes/fs-plugin-info-dialog.php:1393 msgid "Average Rating" msgstr "レーティングの平均" -#: includes/fs-plugin-info-dialog.php:1019 +#: includes/fs-plugin-info-dialog.php:1400 msgid "based on %s" msgstr "%sを基に" -#: includes/fs-plugin-info-dialog.php:1023 +#: includes/fs-plugin-info-dialog.php:1404 msgid "%s rating" msgstr "%s評価" -#: includes/fs-plugin-info-dialog.php:1025 +#: includes/fs-plugin-info-dialog.php:1406 msgid "%s ratings" msgstr "%s評価" -#: includes/fs-plugin-info-dialog.php:1040 +#: includes/fs-plugin-info-dialog.php:1421 msgid "%s star" msgstr "%sスター" -#: includes/fs-plugin-info-dialog.php:1042 +#: includes/fs-plugin-info-dialog.php:1423 msgid "%s stars" msgstr "%sスター" -#: includes/fs-plugin-info-dialog.php:1053 +#: includes/fs-plugin-info-dialog.php:1434 msgid "Click to see reviews that provided a rating of %s" msgstr "クリックして%sの評価をしているレビューを観る" -#: includes/fs-plugin-info-dialog.php:1066 +#: includes/fs-plugin-info-dialog.php:1447 msgid "Contributors" msgstr "コントリビューター" -#: includes/fs-plugin-info-dialog.php1095, -#: includes/fs-plugin-info-dialog.php:1097 +#: includes/fs-plugin-info-dialog.php1476, +#: includes/fs-plugin-info-dialog.php:1478 msgid "Warning" msgstr "警告" -#: includes/fs-plugin-info-dialog.php:1095 +#: includes/fs-plugin-info-dialog.php:1476 msgid "This plugin has not been tested with your current version of WordPress." msgstr "このプラグインはインストールされた WordPress のバージョンでは検証されていません。" -#: includes/fs-plugin-info-dialog.php:1097 +#: includes/fs-plugin-info-dialog.php:1478 msgid "This plugin has not been marked as compatible with your version of WordPress." msgstr "このプラグインはインストールされた WordPress のバージョンに互換性がありません。" -#: includes/fs-plugin-info-dialog.php:1116 +#: includes/fs-plugin-info-dialog.php:1497 msgid "Paid add-on must be deployed to Freemius." msgstr "有料アドオンは Freemius にデプロイされている必要があります。" -#: includes/fs-plugin-info-dialog.php:1117 +#: includes/fs-plugin-info-dialog.php:1498 msgid "Add-on must be deployed to WordPress.org or Freemius." msgstr "アドオンが WordPress.org か Freemius にデプロイされている必要があります。" -#: templates/account.php81, templates/forms/subscription-cancellation.php96, -#: templates/account/partials/addon.php22, -#: templates/account/partials/site.php:295 +#: includes/fs-plugin-info-dialog.php:1519 +msgid "Newer Version (%s) Installed" +msgstr "新しいバージョン (%s) がインストールされました" + +#: includes/fs-plugin-info-dialog.php:1520 +msgid "Newer Free Version (%s) Installed" +msgstr "新しいフリーバージョン (%s) がインストールされました" + +#: includes/fs-plugin-info-dialog.php:1527 +msgid "Latest Version Installed" +msgstr "最新版がイストールされました" + +#: includes/fs-plugin-info-dialog.php:1528 +msgid "Latest Free Version Installed" +msgstr "最新のフリーバージョンがインストールされました" + +#: templates/account.php92, templates/forms/subscription-cancellation.php96, +#: templates/account/partials/addon.php26, +#: templates/account/partials/site.php:311 msgid "Downgrading your plan" msgstr "Downgrading your plan" -#: templates/account.php82, templates/forms/subscription-cancellation.php97, -#: templates/account/partials/addon.php23, -#: templates/account/partials/site.php:296 +#: templates/account.php93, templates/forms/subscription-cancellation.php97, +#: templates/account/partials/addon.php27, +#: templates/account/partials/site.php:312 msgid "Cancelling the subscription" msgstr "Cancelling the subscription" -#. translators: %1s: Either 'Downgrading your plan' or 'Cancelling the +#. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the #. subscription' -#: templates/account.php84, templates/forms/subscription-cancellation.php99, -#: templates/account/partials/addon.php25, -#: templates/account/partials/site.php:298 -msgid "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s." -msgstr "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s." - -#: templates/account.php85, templates/forms/subscription-cancellation.php100, -#: templates/account/partials/addon.php26, -#: templates/account/partials/site.php:299 +#: templates/account.php95, templates/forms/subscription-cancellation.php99, +#: templates/account/partials/site.php:314 +msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s." +msgstr "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s." + +#: templates/account.php96, templates/forms/subscription-cancellation.php100, +#: templates/account/partials/addon.php30, +#: templates/account/partials/site.php:315 msgid "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price." msgstr "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price." -#: templates/account.php86, templates/forms/subscription-cancellation.php106, -#: templates/account/partials/addon.php:27 +#: templates/account.php97, templates/forms/subscription-cancellation.php106, +#: templates/account/partials/addon.php:31 msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?" msgstr "トライアルをキャンセルするとすぐにすべてのプレミアム機能へのアクセスができなくなります。本当に実行しますか?" -#: templates/account.php87, templates/forms/subscription-cancellation.php101, -#: templates/account/partials/addon.php28, -#: templates/account/partials/site.php:300 +#: templates/account.php98, templates/forms/subscription-cancellation.php101, +#: templates/account/partials/addon.php32, +#: templates/account/partials/site.php:316 msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support." msgstr "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support." -#: templates/account.php88, templates/forms/subscription-cancellation.php102, -#: templates/account/partials/addon.php29, -#: templates/account/partials/site.php:301 +#: templates/account.php99, templates/forms/subscription-cancellation.php102, +#: templates/account/partials/addon.php33, +#: templates/account/partials/site.php:317 msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features." msgstr "一度ライセンスの期限が切れると、フリーバージョンの利用は可能ですが、%sの機能を使うことができなくなります。" #. translators: %s: Plan title (e.g. "Professional") -#: templates/account.php90, +#: templates/account.php101, #: templates/account/partials/activate-license-button.php31, -#: templates/account/partials/addon.php:31 +#: templates/account/partials/addon.php:35 msgid "Activate %s Plan" msgstr "%s プランを有効化" #. translators: %s: Time period (e.g. Auto renews in "2 months") -#: templates/account.php93, templates/account/partials/addon.php34, -#: templates/account/partials/site.php:275 +#: templates/account.php104, templates/account/partials/addon.php38, +#: templates/account/partials/site.php:291 msgid "Auto renews in %s" msgstr "%s に自動更新" #. translators: %s: Time period (e.g. Expires in "2 months") -#: templates/account.php95, templates/account/partials/addon.php36, -#: templates/account/partials/site.php:277 +#: templates/account.php106, templates/account/partials/addon.php40, +#: templates/account/partials/site.php:293 msgid "Expires in %s" msgstr "%s で期間終了" -#: templates/account.php96, templates/account/partials/addon.php:37 +#: templates/account.php:107 msgctxt "as synchronize license" msgid "Sync License" msgstr "ライセンスを同期" -#: templates/account.php97, templates/account/partials/addon.php:38 +#: templates/account.php108, templates/account/partials/addon.php:41 msgid "Cancel Trial" msgstr "トライアルをキャンセル" -#: templates/account.php98, templates/account/partials/addon.php:39 +#: templates/account.php109, templates/account/partials/addon.php:42 msgid "Change Plan" msgstr "プラン変更" -#: templates/account.php99, templates/account/partials/addon.php:40 +#: templates/account.php110, templates/account/partials/addon.php:43 msgctxt "verb" msgid "Upgrade" msgstr "アップグレード" -#: templates/account.php101, templates/account/partials/addon.php42, -#: templates/account/partials/site.php:302 +#: templates/account.php112, templates/account/partials/addon.php45, +#: templates/account/partials/site.php:318 msgctxt "verb" msgid "Downgrade" msgstr "ダウングレード" -#: templates/account.php103, templates/add-ons.php130, +#: templates/account.php114, templates/add-ons.php246, #: templates/plugin-info/features.php72, -#: templates/account/partials/addon.php44, -#: templates/account/partials/site.php:31 +#: templates/account/partials/addon.php47, +#: templates/account/partials/site.php:33 msgid "Free" msgstr "無料" -#: templates/account.php104, templates/account/partials/addon.php:45 -msgid "Activate" -msgstr "有効化" - -#: templates/account.php105, templates/debug.php371, -#: includes/customizer/class-fs-customizer-upsell-control.php106, -#: templates/account/partials/addon.php:46 +#: templates/account.php116, templates/debug.php373, +#: includes/customizer/class-fs-customizer-upsell-control.php110, +#: templates/account/partials/addon.php:49 msgctxt "as product pricing plan" msgid "Plan" msgstr "プラン" -#: templates/account.php:158 +#: templates/account.php:117 +msgid "Bundle Plan" +msgstr "Bundle Plan" + +#: templates/account.php:191 msgid "Free Trial" msgstr "フリートライアル" -#: templates/account.php:169 +#: templates/account.php:202 msgid "Account Details" msgstr "アカウント詳細" -#: templates/account.php:179 +#: templates/account.php209, templates/forms/data-debug-mode.php:33 +msgid "Start Debug" +msgstr "Start Debug" + +#: templates/account.php:211 +msgid "Stop Debug" +msgstr "Stop Debug" + +#: templates/account.php:218 +msgid "Billing & Invoices" +msgstr "Billing & Invoices" + +#: templates/account.php:229 msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?" msgstr "アカウントを削除すると自動的に %s プランライセンスが無効になり、他のサイトで使うことができます。定期の支払いも終了したい場合は、\"キャンセル\"ボタンをクリックし、まずアカウントを\"ダウングレード\"してください。本当に削除を続行してもいいですか?" -#: templates/account.php:181 +#: templates/account.php:231 msgid "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?" msgstr "削除は一時的なものではありません。本当に%sが必要なくなった時に行ってください。" -#: templates/account.php:184 +#: templates/account.php:234 msgid "Delete Account" msgstr "アカウントを削除" -#: templates/account.php196, templates/account/partials/addon.php159, +#: templates/account.php246, templates/account/partials/addon.php231, #: templates/account/partials/deactivate-license-button.php:35 msgid "Deactivate License" msgstr "ライセンスを無効化" -#: templates/account.php219, templates/forms/subscription-cancellation.php:125 +#: templates/account.php269, templates/forms/subscription-cancellation.php:125 msgid "Are you sure you want to proceed?" msgstr "本当に続行していいですか?" -#: templates/account.php219, templates/account/partials/addon.php:182 +#: templates/account.php269, templates/account/partials/addon.php:255 msgid "Cancel Subscription" msgstr "サブスクリプションをキャンセルする" -#: templates/account.php:247 +#: templates/account.php298, templates/account/partials/addon.php:340 msgctxt "as synchronize" msgid "Sync" msgstr "同期" -#: templates/account.php261, templates/debug.php:487 +#: templates/account.php313, templates/debug.php:507 msgid "Name" msgstr "名前" -#: templates/account.php267, templates/debug.php:488 +#: templates/account.php319, templates/debug.php:508 msgid "Email" msgstr "Email" -#: templates/account.php274, templates/debug.php370, templates/debug.php:526 +#: templates/account.php326, templates/debug.php371, templates/debug.php:557 msgid "User ID" msgstr "ユーザー ID" -#: templates/account.php:282 +#: templates/account.php344, templates/account.php637, +#: templates/account.php682, templates/debug.php238, templates/debug.php365, +#: templates/debug.php454, templates/debug.php506, templates/debug.php555, +#: templates/debug.php632, templates/account/payments.php35, +#: templates/debug/logger.php:21 +msgid "ID" +msgstr "ID" + +#: templates/account.php:351 msgid "Site ID" msgstr "サイト ID" -#: templates/account.php:285 +#: templates/account.php:354 msgid "No ID" msgstr "ID がありません" -#: templates/account.php290, templates/debug.php243, templates/debug.php372, -#: templates/debug.php453, templates/debug.php490, -#: templates/account/partials/site.php:219 +#: templates/account.php359, templates/debug.php245, templates/debug.php374, +#: templates/debug.php458, templates/debug.php510, +#: templates/account/partials/site.php:227 msgid "Public Key" msgstr "公開鍵" -#: templates/account.php296, templates/debug.php373, templates/debug.php454, -#: templates/debug.php491, templates/account/partials/site.php:231 +#: templates/account.php365, templates/debug.php375, templates/debug.php459, +#: templates/debug.php511, templates/account/partials/site.php:239 msgid "Secret Key" msgstr "秘密鍵" -#: templates/account.php:299 +#: templates/account.php:368 msgctxt "as secret encryption key missing" msgid "No Secret" msgstr "秘密鍵がありません" -#: templates/account.php318, templates/account/partials/site.php112, -#: templates/account/partials/site.php:114 +#: templates/account.php395, templates/account/partials/site.php120, +#: templates/account/partials/site.php:122 msgid "Trial" msgstr "トライアル" -#: templates/account.php337, templates/debug.php531, -#: templates/account/partials/site.php:248 +#: templates/account.php422, templates/debug.php562, +#: templates/account/partials/site.php:260 msgid "License Key" msgstr "ライセンスキー" -#: templates/account.php:367 +#: templates/account.php:453 +msgid "Join the Beta program" +msgstr "Join the Beta program" + +#: templates/account.php:459 msgid "not verified" msgstr "未認証" -#: templates/account.php376, templates/account/partials/addon.php:120 +#: templates/account.php468, templates/account/partials/addon.php:190 msgid "Expired" msgstr "期限切れ" -#: templates/account.php:428 +#: templates/account.php:528 msgid "Premium version" msgstr "プレミアムバージョン" -#: templates/account.php:430 +#: templates/account.php:530 msgid "Free version" msgstr "フリーバージョン" -#: templates/account.php:442 +#: templates/account.php:542 msgid "Verify Email" msgstr "認証メール" -#: templates/account.php:453 +#: templates/account.php:553 msgid "Download %s Version" msgstr "%s バージョンをダウンロード" -#: templates/account.php467, templates/account.php649, -#: templates/account/partials/site.php237, -#: templates/account/partials/site.php:255 +#: templates/account.php568, templates/account.php820, +#: templates/account/partials/site.php248, +#: templates/account/partials/site.php:270 msgctxt "verb" msgid "Show" msgstr "表示" -#: templates/account.php:481 +#: templates/account.php:583 msgid "What is your %s?" msgstr "自分の %s はなんですか?" -#: templates/account.php489, templates/account/billing.php:27 +#: templates/account.php591, templates/account/billing.php:21 msgctxt "verb" msgid "Edit" msgstr "編集" -#: templates/account.php:502 +#: templates/account.php:616 msgid "Sites" msgstr "サイト数" -#: templates/account.php:513 +#: templates/account.php:629 msgid "Search by address" msgstr "住所で検索する" -#: templates/account.php522, templates/account.php570, templates/debug.php236, -#: templates/debug.php364, templates/debug.php449, templates/debug.php486, -#: templates/debug.php524, templates/debug.php597, -#: templates/account/payments.php35, templates/debug/logger.php:21 -msgid "ID" -msgstr "ID" - -#: templates/account.php523, templates/debug.php:367 +#: templates/account.php638, templates/debug.php:368 msgid "Address" msgstr "住所" -#: templates/account.php:524 +#: templates/account.php:639 msgid "License" msgstr "ライセンス" -#: templates/account.php:525 +#: templates/account.php:640 msgid "Plan" msgstr "プラン" -#: templates/account.php:573 +#: templates/account.php:685 msgctxt "as software license" msgid "License" msgstr "ライセンス" -#: templates/account.php:643 +#: templates/account.php:814 msgctxt "verb" msgid "Hide" msgstr "非表示" -#: templates/account.php:686 +#: templates/account.php836, templates/forms/data-debug-mode.php:31 +msgid "Processing" +msgstr "Processing" + +#: templates/account.php:839 +msgid "Get updates for bleeding edge Beta versions of %s." +msgstr "Get updates for bleeding edge Beta versions of %s." + +#: templates/account.php:897 msgid "Cancelling %s" msgstr "Cancelling %s" -#: templates/account.php686, templates/account.php703, +#: templates/account.php897, templates/account.php914, #: templates/forms/subscription-cancellation.php27, -#: templates/forms/deactivation/form.php:117 +#: templates/forms/deactivation/form.php:133 msgid "trial" msgstr "trial" -#: templates/account.php701, templates/forms/deactivation/form.php:134 +#: templates/account.php912, templates/forms/deactivation/form.php:150 msgid "Cancelling %s..." msgstr "Cancelling %s..." -#: templates/account.php704, templates/forms/subscription-cancellation.php28, -#: templates/forms/deactivation/form.php:118 +#: templates/account.php915, templates/forms/subscription-cancellation.php28, +#: templates/forms/deactivation/form.php:134 msgid "subscription" msgstr "subscription" -#: templates/account.php:718 +#: templates/account.php:929 msgid "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?" msgstr "ライセンスを無効化するとすべてのプレミアム機能が使えなくなりますが、他のサイトでライセンスを有効にすることができるようになります。本当に実行しますか?" -#: templates/add-ons.php:36 +#: templates/add-ons.php:38 +msgid "View details" +msgstr "詳細を表示" + +#: templates/add-ons.php:48 msgid "Add Ons for %s" msgstr "%s のアドオン" -#: templates/add-ons.php:44 -msgid "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." -msgstr "アドオンリストを読み込むことができませんでした。おそらく運営側の問題になりますので、しばらくしてからお試しください。" +#: templates/add-ons.php:58 +msgid "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." +msgstr "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." -#: templates/add-ons.php:139 -msgid "View details" -msgstr "詳細を表示" +#: templates/add-ons.php:229 +msgctxt "active add-on" +msgid "Active" +msgstr "有効" + +#: templates/add-ons.php:230 +msgctxt "installed add-on" +msgid "Installed" +msgstr "Installed" -#: templates/admin-notice.php13, templates/forms/license-activation.php208, +#: templates/admin-notice.php13, templates/forms/license-activation.php207, #: templates/forms/resend-key.php:77 msgctxt "as close a window" msgid "Dismiss" @@ -1450,11 +1541,11 @@ msgstr "インストールプロセスが開始され、数分で完了します msgid "Cancel Installation" msgstr "インストールをキャンセルする" -#: templates/checkout.php:172 +#: templates/checkout.php:180 msgid "Checkout" msgstr "チェックアウト" -#: templates/checkout.php:172 +#: templates/checkout.php:180 msgid "PCI compliant" msgstr "PCI コンプライアント" @@ -1476,7 +1567,7 @@ msgstr "有効化メールを再送信" msgid "Thanks %s!" msgstr "ありがとう $s さん!" -#: templates/connect.php172, templates/forms/license-activation.php:43 +#: templates/connect.php172, templates/forms/license-activation.php:46 msgid "Agree & Activate License" msgstr "同意してライセンスを有効化" @@ -1524,15 +1615,16 @@ msgstr "または、今すぐスキップして、%sのネットワークレベ msgid "During the update process we detected %s site(s) in the network that are still pending your attention." msgstr "アップデートの処理中に、ネットワーク内の%dサイトが対応待ちになっていることを検知しました。" -#: templates/connect.php253, templates/forms/license-activation.php:46 +#: templates/connect.php253, templates/forms/data-debug-mode.php35, +#: templates/forms/license-activation.php:49 msgid "License key" msgstr "ライセンスキー" -#: templates/connect.php256, templates/forms/license-activation.php:19 +#: templates/connect.php256, templates/forms/license-activation.php:22 msgid "Can't find your license key?" msgstr "ライセンスキーは見つかりませんか?" -#: templates/connect.php315, templates/connect.php630, +#: templates/connect.php315, templates/connect.php652, #: templates/forms/deactivation/retry-skip.php:20 msgctxt "verb" msgid "Skip" @@ -1582,7 +1674,7 @@ msgstr "有効化、無効化、アンインストール" msgid "Newsletter" msgstr "ニュースレター" -#: templates/connect.php391, templates/forms/license-activation.php:38 +#: templates/connect.php391, templates/forms/license-activation.php:41 msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license." msgstr "%1$sはセキュリティとアプデート、そしてライセンスの状態を確認するため、定期的に%2$sへデータを送信します。" @@ -1594,10 +1686,6 @@ msgstr "付与されているパーミッションは何ですか?" msgid "Don't have a license key?" msgstr "ライセンスキーをお持ちではありませんか?" -#: templates/connect.php:418 -msgid "Activate Free Version" -msgstr "フリーバージョンを有効化" - #: templates/connect.php:420 msgid "Have a license key?" msgstr "ライセンスキーはお持ちですか?" @@ -1614,12 +1702,12 @@ msgstr "License Agreement" msgid "Terms of Service" msgstr "利用規約" -#: templates/connect.php:766 +#: templates/connect.php:805 msgctxt "as in the process of sending an email" msgid "Sending email" msgstr "メール送信中" -#: templates/connect.php:767 +#: templates/connect.php:806 msgctxt "as activating plugin" msgid "Activating" msgstr "有効化中" @@ -1647,8 +1735,8 @@ msgctxt "as code debugging" msgid "Debugging" msgstr "デバッグ" -#: templates/debug.php54, templates/debug.php248, templates/debug.php374, -#: templates/debug.php:492 +#: templates/debug.php54, templates/debug.php250, templates/debug.php376, +#: templates/debug.php:512 msgid "Actions" msgstr "アクション" @@ -1684,191 +1772,195 @@ msgstr "DB オプションを読み込む" msgid "Set DB Option" msgstr "DB オプションを設定する" -#: templates/debug.php:180 +#: templates/debug.php:182 msgid "Key" msgstr "キー" -#: templates/debug.php:181 +#: templates/debug.php:183 msgid "Value" msgstr "値" -#: templates/debug.php:197 +#: templates/debug.php:199 msgctxt "as software development kit versions" msgid "SDK Versions" msgstr "SDK バージョン" -#: templates/debug.php:202 +#: templates/debug.php:204 msgid "SDK Path" msgstr "SDK のパス" -#: templates/debug.php203, templates/debug.php:242 +#: templates/debug.php205, templates/debug.php:244 msgid "Module Path" msgstr "モジュールのパス" -#: templates/debug.php:204 +#: templates/debug.php:206 msgid "Is Active" msgstr "有効" -#: templates/debug.php232, templates/debug/plugins-themes-sync.php:35 +#: templates/debug.php234, templates/debug/plugins-themes-sync.php:35 msgid "Plugins" msgstr "プラグイン" -#: templates/debug.php232, templates/debug/plugins-themes-sync.php:56 +#: templates/debug.php234, templates/debug/plugins-themes-sync.php:56 msgid "Themes" msgstr "テーマ" -#: templates/debug.php237, templates/debug.php369, templates/debug.php451, +#: templates/debug.php239, templates/debug.php370, templates/debug.php456, #: templates/debug/scheduled-crons.php:80 msgid "Slug" msgstr "スラッグ" -#: templates/debug.php239, templates/debug.php:450 +#: templates/debug.php241, templates/debug.php:455 msgid "Title" msgstr "タイトル" -#: templates/debug.php:240 +#: templates/debug.php:242 msgctxt "as application program interface" msgid "API" msgstr "API" -#: templates/debug.php:241 +#: templates/debug.php:243 msgid "Freemius State" msgstr "Freemius ステータス" -#: templates/debug.php:245 +#: templates/debug.php:247 msgid "Network Blog" msgstr "ネットワークブログ" -#: templates/debug.php:246 +#: templates/debug.php:248 msgid "Network User" msgstr "ネットワークユーザ" -#: templates/debug.php:283 +#: templates/debug.php:285 msgctxt "as connection was successful" msgid "Connected" msgstr "接続" -#: templates/debug.php:284 +#: templates/debug.php:286 msgctxt "as connection blocked" msgid "Blocked" msgstr "ブロック" -#: templates/debug.php:320 +#: templates/debug.php:322 msgid "Simulate Trial Promotion" msgstr "Simulate Trial Promotion" -#: templates/debug.php:332 +#: templates/debug.php:334 msgid "Simulate Network Upgrade" msgstr "ネットワークアップグレードをシミュレートする" -#: templates/debug.php:358 +#: templates/debug.php:359 msgid "%s Installs" msgstr "%sインストール" -#: templates/debug.php:360 +#: templates/debug.php:361 msgctxt "like websites" msgid "Sites" msgstr "サイト数" -#: templates/debug.php366, templates/account/partials/site.php:148 +#: templates/debug.php367, templates/account/partials/site.php:156 msgid "Blog ID" msgstr "ブログ ID" -#: templates/debug.php431, templates/debug.php509, -#: templates/account/partials/addon.php:339 +#: templates/debug.php:372 +msgid "License ID" +msgstr "License ID" + +#: templates/debug.php436, templates/debug.php535, +#: templates/account/partials/addon.php:435 msgctxt "verb" msgid "Delete" msgstr "削除" -#: templates/debug.php:445 +#: templates/debug.php:450 msgid "Add Ons of module %s" msgstr "モジュールのアドオン%s" -#: templates/debug.php:482 +#: templates/debug.php:502 msgid "Users" msgstr "ユーザー" -#: templates/debug.php:489 +#: templates/debug.php:509 msgid "Verified" msgstr "認証済み" -#: templates/debug.php:520 +#: templates/debug.php:551 msgid "%s Licenses" msgstr "%sラインセス" -#: templates/debug.php:525 +#: templates/debug.php:556 msgid "Plugin ID" msgstr "プラグイン ID" -#: templates/debug.php:527 +#: templates/debug.php:558 msgid "Plan ID" msgstr "プラン ID" -#: templates/debug.php:528 +#: templates/debug.php:559 msgid "Quota" msgstr "クォータ" -#: templates/debug.php:529 +#: templates/debug.php:560 msgid "Activated" msgstr "有効化済み" -#: templates/debug.php:530 +#: templates/debug.php:561 msgid "Blocking" msgstr "ブロッキング" -#: templates/debug.php:532 +#: templates/debug.php:563 msgctxt "as expiration date" msgid "Expiration" msgstr "期限切れ" -#: templates/debug.php:555 +#: templates/debug.php:590 msgid "Debug Log" msgstr "デバッグログ" -#: templates/debug.php:559 +#: templates/debug.php:594 msgid "All Types" msgstr "すべてのタイプ" -#: templates/debug.php:566 +#: templates/debug.php:601 msgid "All Requests" msgstr "すべてのリクエスト" -#: templates/debug.php571, templates/debug.php600, +#: templates/debug.php606, templates/debug.php635, #: templates/debug/logger.php:25 msgid "File" msgstr "ファイル" -#: templates/debug.php572, templates/debug.php598, +#: templates/debug.php607, templates/debug.php633, #: templates/debug/logger.php:23 msgid "Function" msgstr "機能" -#: templates/debug.php:573 +#: templates/debug.php:608 msgid "Process ID" msgstr "プロセス ID" -#: templates/debug.php:574 +#: templates/debug.php:609 msgid "Logger" msgstr "ロガー" -#: templates/debug.php575, templates/debug.php599, +#: templates/debug.php610, templates/debug.php634, #: templates/debug/logger.php:24 msgid "Message" msgstr "メッセージ" -#: templates/debug.php:577 +#: templates/debug.php:612 msgid "Filter" msgstr "フィルター" -#: templates/debug.php:585 +#: templates/debug.php:620 msgid "Download" msgstr "ダウンロード" -#: templates/debug.php596, templates/debug/logger.php:22 +#: templates/debug.php631, templates/debug/logger.php:22 msgid "Type" msgstr "タイプ" -#: templates/debug.php601, templates/debug/logger.php:26 +#: templates/debug.php636, templates/debug/logger.php:26 msgid "Timestamp" msgstr "タイムスタンプ" @@ -1895,53 +1987,53 @@ msgstr "Freemius API" msgid "Requests" msgstr "リクエスト数" -#: templates/account/billing.php:28 +#: templates/account/billing.php:22 msgctxt "verb" msgid "Update" msgstr "更新" -#: templates/account/billing.php:39 +#: templates/account/billing.php:33 msgid "Billing" msgstr "請求書" -#: templates/account/billing.php44, templates/account/billing.php:44 +#: templates/account/billing.php38, templates/account/billing.php:38 msgid "Business name" msgstr "商号" -#: templates/account/billing.php45, templates/account/billing.php:45 +#: templates/account/billing.php39, templates/account/billing.php:39 msgid "Tax / VAT ID" msgstr "税金 / VAT ID" -#: templates/account/billing.php48, templates/account/billing.php48, -#: templates/account/billing.php49, templates/account/billing.php:49 +#: templates/account/billing.php42, templates/account/billing.php42, +#: templates/account/billing.php43, templates/account/billing.php:43 msgid "Address Line %d" msgstr "住所欄 %d" -#: templates/account/billing.php52, templates/account/billing.php:52 +#: templates/account/billing.php46, templates/account/billing.php:46 msgid "City" msgstr "市" -#: templates/account/billing.php52, templates/account/billing.php:52 +#: templates/account/billing.php46, templates/account/billing.php:46 msgid "Town" msgstr "町" -#: templates/account/billing.php53, templates/account/billing.php:53 +#: templates/account/billing.php47, templates/account/billing.php:47 msgid "ZIP / Postal Code" msgstr "ZIP / 郵便番号" -#: templates/account/billing.php:308 +#: templates/account/billing.php:302 msgid "Country" msgstr "国" -#: templates/account/billing.php:310 +#: templates/account/billing.php:304 msgid "Select Country" msgstr "国を選択" -#: templates/account/billing.php317, templates/account/billing.php:318 +#: templates/account/billing.php311, templates/account/billing.php:312 msgid "State" msgstr "州" -#: templates/account/billing.php317, templates/account/billing.php:318 +#: templates/account/billing.php311, templates/account/billing.php:312 msgid "Province" msgstr "県・州・省" @@ -2193,11 +2285,27 @@ msgstr "キャンセル" msgid "Become an affiliate" msgstr "アフィリエイトになる" -#: templates/forms/license-activation.php:20 +#: templates/forms/data-debug-mode.php:25 +msgid "Please enter the license key to enable the debug mode:" +msgstr "Please enter the license key to enable the debug mode:" + +#: templates/forms/data-debug-mode.php:27 +msgid "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:" +msgstr "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:" + +#: templates/forms/data-debug-mode.php:32 +msgid "Submit" +msgstr "Submit" + +#: templates/forms/data-debug-mode.php:36 +msgid "User key" +msgstr "User key" + +#: templates/forms/license-activation.php:23 msgid "Please enter the license key that you received in the email right after the purchase:" msgstr "購入後すぐにメールで受け取ったライセンスキーを入力してください:" -#: templates/forms/license-activation.php:25 +#: templates/forms/license-activation.php:28 msgid "Update License" msgstr "ライセンスを更新" @@ -2277,7 +2385,7 @@ msgid "Proceed" msgstr "Proceed" #: templates/forms/subscription-cancellation.php191, -#: templates/forms/deactivation/form.php:150 +#: templates/forms/deactivation/form.php:171 msgid "Cancel %s & Proceed" msgstr "Cancel %s & Proceed" @@ -2289,38 +2397,42 @@ msgstr "%2$s プランの%1$s日間のフリートライアルを開始するま msgid "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial." msgstr "WordPress.orgのガイドラインに準拠するため、トライアルを開始する前に、ユーザーと重要でないサイト情報のオプトイン、更新の確認やトライアルの状態確認のために%sが%sに対して定期的にデータを送信する許可を得るように設定してください。" -#: templates/js/style-premium-theme.php:37 +#: templates/js/style-premium-theme.php:39 msgid "Premium" msgstr "プレミアム" -#: templates/partials/network-activation.php:23 +#: templates/js/style-premium-theme.php:42 +msgid "Beta" +msgstr "Beta" + +#: templates/partials/network-activation.php:27 msgid "Activate license on all sites in the network." msgstr "ネットワーク上にあるすべてのサイトのライセンスを有効にする。" -#: templates/partials/network-activation.php:24 +#: templates/partials/network-activation.php:28 msgid "Apply on all sites in the network." msgstr "ネットワーク上にあるすべてのサイトに対して反映させる。" -#: templates/partials/network-activation.php:27 +#: templates/partials/network-activation.php:31 msgid "Activate license on all pending sites." msgstr "保留中のサイトすべてでライセンスを有効にする。" -#: templates/partials/network-activation.php:28 +#: templates/partials/network-activation.php:32 msgid "Apply on all pending sites." msgstr "保留中のサイトすべてに反映させる。" -#: templates/partials/network-activation.php36, -#: templates/partials/network-activation.php:68 +#: templates/partials/network-activation.php40, +#: templates/partials/network-activation.php:74 msgid "allow" msgstr "許可" -#: templates/partials/network-activation.php38, -#: templates/partials/network-activation.php:70 +#: templates/partials/network-activation.php43, +#: templates/partials/network-activation.php:77 msgid "delegate" msgstr "代表" -#: templates/partials/network-activation.php41, -#: templates/partials/network-activation.php:73 +#: templates/partials/network-activation.php47, +#: templates/partials/network-activation.php:81 msgid "skip" msgstr "スキップ" @@ -2346,32 +2458,33 @@ msgstr "あと %s" msgid "Last license" msgstr "最新のライセンス" -#: templates/account/partials/addon.php:115 +#. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the +#. subscription' +#: templates/account/partials/addon.php:29 +msgid "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s." +msgstr "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s." + +#: templates/account/partials/addon.php:185 msgid "Cancelled" msgstr "キャンセル" -#: templates/account/partials/addon.php:125 +#: templates/account/partials/addon.php:195 msgid "No expiration" msgstr "有効期限なし" -#: templates/account/partials/addon.php264, -#: templates/account/partials/addon.php:317 -msgid "Activate this add-on" -msgstr "このアドオンを有効化" - -#: templates/account/partials/site.php:181 +#: templates/account/partials/site.php:189 msgid "Owner Name" msgstr "所有者名" -#: templates/account/partials/site.php:193 +#: templates/account/partials/site.php:201 msgid "Owner Email" msgstr "所有者の Email" -#: templates/account/partials/site.php:205 +#: templates/account/partials/site.php:213 msgid "Owner ID" msgstr "オーナー ID" -#: templates/account/partials/site.php:270 +#: templates/account/partials/site.php:286 msgid "Subscription" msgstr "サブスクリプション" @@ -2383,47 +2496,47 @@ msgstr "ご迷惑をおかけしてすいません。もし機会をいただけ msgid "Contact Support" msgstr "サポートに連絡" -#: templates/forms/deactivation/form.php:59 +#: templates/forms/deactivation/form.php:64 msgid "Anonymous feedback" msgstr "匿名のフィードバック" -#: templates/forms/deactivation/form.php:66 +#: templates/forms/deactivation/form.php:70 msgid "Deactivate" msgstr "無効化" -#: templates/forms/deactivation/form.php:68 +#: templates/forms/deactivation/form.php:72 msgid "Activate %s" msgstr "%sを有効化する" -#: templates/forms/deactivation/form.php:80 +#: templates/forms/deactivation/form.php:87 msgid "Quick Feedback" msgstr "Quick Feedback" -#: templates/forms/deactivation/form.php:84 +#: templates/forms/deactivation/form.php:91 msgid "If you have a moment, please let us know why you are %s" msgstr "お時間があれば、なぜ%sするのか理由を教えてください。" -#: templates/forms/deactivation/form.php:84 +#: templates/forms/deactivation/form.php:91 msgid "deactivating" msgstr "無効化中" -#: templates/forms/deactivation/form.php:84 +#: templates/forms/deactivation/form.php:91 msgid "switching" msgstr "変更中" -#: templates/forms/deactivation/form.php:332 +#: templates/forms/deactivation/form.php:365 msgid "Submit & %s" msgstr "送信と%s" -#: templates/forms/deactivation/form.php:353 +#: templates/forms/deactivation/form.php:386 msgid "Kindly tell us the reason so we can improve." msgstr "改善できるよう、どうか理由を教えてください。" -#: templates/forms/deactivation/form.php:478 +#: templates/forms/deactivation/form.php:511 msgid "Yes - %s" msgstr "はい" -#: templates/forms/deactivation/form.php:485 +#: templates/forms/deactivation/form.php:518 msgid "Skip & %s" msgstr "スキップと%s" diff --git a/external/Freemius/languages/freemius-nl_NL.mo b/external/Freemius/languages/freemius-nl_NL.mo index d55b8c23..04441bcb 100755 Binary files a/external/Freemius/languages/freemius-nl_NL.mo and b/external/Freemius/languages/freemius-nl_NL.mo differ diff --git a/external/Freemius/languages/freemius-nl_NL.po b/external/Freemius/languages/freemius-nl_NL.po index 9cbd2429..6b8e75ef 100755 --- a/external/Freemius/languages/freemius-nl_NL.po +++ b/external/Freemius/languages/freemius-nl_NL.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: WordPress SDK\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2018-11-26 14:12+0000\n" -"Last-Translator: Benny Vluggen \n" +"PO-Revision-Date: 2019-10-07 15:33+0000\n" +"Last-Translator: Vova Feldman \n" "Language: nl_NL\n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/freemius/wordpress-sdk/language/nl_NL/)\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,1407 +22,1498 @@ msgstr "" "X-Poedit-SearchPathExcluded-0: *.js\n" "X-Poedit-SourceCharset: UTF-8\n" -#: includes/class-freemius.php:1688 +#: includes/class-freemius.php1880, templates/account.php:840 +msgid "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned." +msgstr "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned." + +#: includes/class-freemius.php:1887 +msgid "Would you like to proceed with the update?" +msgstr "Would you like to proceed with the update?" + +#: includes/class-freemius.php:2095 msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error." msgstr "Freemius SDK kon het hoofdbestand van de plug-in niet vinden. Neem a.j.b. contact op met sdk@freemius.com m.b.t. deze fout." -#: includes/class-freemius.php:1690 +#: includes/class-freemius.php:2097 msgid "Error" msgstr "Fout" -#: includes/class-freemius.php:2011 +#: includes/class-freemius.php:2491 msgid "I found a better %s" msgstr "Ik vond een beter %s" -#: includes/class-freemius.php:2013 +#: includes/class-freemius.php:2493 msgid "What's the %s's name?" msgstr "Wat is de naam van het %s?" -#: includes/class-freemius.php:2019 +#: includes/class-freemius.php:2499 msgid "It's a temporary %s. I'm just debugging an issue." msgstr "Het betreft een tijdelijke %s. Ik ben een probleem aan het debuggen." -#: includes/class-freemius.php:2021 +#: includes/class-freemius.php:2501 msgid "Deactivation" msgstr "Deactivatie" -#: includes/class-freemius.php:2022 +#: includes/class-freemius.php:2502 msgid "Theme Switch" msgstr "Thema Wissel" -#: includes/class-freemius.php2031, templates/forms/resend-key.php:24 +#: includes/class-freemius.php2511, templates/forms/resend-key.php:24 msgid "Other" msgstr "Overige" -#: includes/class-freemius.php:2039 +#: includes/class-freemius.php:2519 msgid "I no longer need the %s" msgstr "Ik heb de %s niet meer nodig " -#: includes/class-freemius.php:2046 +#: includes/class-freemius.php:2526 msgid "I only needed the %s for a short period" msgstr "Ik had de %s alleen nodig voor een korte periode." -#: includes/class-freemius.php:2052 +#: includes/class-freemius.php:2532 msgid "The %s broke my site" msgstr "De %s maakte mijn site onbruikbaar" -#: includes/class-freemius.php:2059 +#: includes/class-freemius.php:2539 msgid "The %s suddenly stopped working" msgstr "De %s werkte opeens niet meer" -#: includes/class-freemius.php:2069 +#: includes/class-freemius.php:2549 msgid "I can't pay for it anymore" msgstr "Ik kan er niet langer meer voor betalen" -#: includes/class-freemius.php:2071 +#: includes/class-freemius.php:2551 msgid "What price would you feel comfortable paying?" msgstr "Welke bedrag zou je ervoor over hebben?" -#: includes/class-freemius.php:2077 +#: includes/class-freemius.php:2557 msgid "I don't like to share my information with you" msgstr "Ik vind het niet prettig om mijn informatie met jullie te delen" -#: includes/class-freemius.php:2098 +#: includes/class-freemius.php:2578 msgid "The %s didn't work" msgstr "De %s werkte niet" -#: includes/class-freemius.php:2108 +#: includes/class-freemius.php:2588 msgid "I couldn't understand how to make it work" msgstr "Ik snapte niet hoe ik het aan het werk kon krijgen." -#: includes/class-freemius.php:2116 +#: includes/class-freemius.php:2596 msgid "The %s is great, but I need specific feature that you don't support" msgstr "De %s is uitstekend, maar ik heb een specifieke feature nodig die jullie niet ondersteunen" -#: includes/class-freemius.php:2118 +#: includes/class-freemius.php:2598 msgid "What feature?" msgstr "Welke feature?" -#: includes/class-freemius.php:2122 +#: includes/class-freemius.php:2602 msgid "The %s is not working" msgstr "De %s werkt niet" -#: includes/class-freemius.php:2124 +#: includes/class-freemius.php:2604 msgid "Kindly share what didn't work so we can fix it for future users..." msgstr "Wil je alsjeblieft zo vriendelijk zijn om te delen wat niet werkte, zodat we dat kunnen verbeteren voor toekomstige gebruikers ..." -#: includes/class-freemius.php:2128 +#: includes/class-freemius.php:2608 msgid "It's not what I was looking for" msgstr "Het is niet waarna ik opzoek was" -#: includes/class-freemius.php:2130 +#: includes/class-freemius.php:2610 msgid "What you've been looking for?" msgstr "Waar was je naar op zoek?" -#: includes/class-freemius.php:2134 +#: includes/class-freemius.php:2614 msgid "The %s didn't work as expected" msgstr "De %s werkte niet zoals verwacht" -#: includes/class-freemius.php:2136 +#: includes/class-freemius.php:2616 msgid "What did you expect?" msgstr "Wat had je verwacht?" -#: includes/class-freemius.php2942, templates/debug.php:20 +#: includes/class-freemius.php3471, templates/debug.php:20 msgid "Freemius Debug" msgstr "Freemius Debug" -#: includes/class-freemius.php:3670 +#: includes/class-freemius.php:4223 msgid "I don't know what is cURL or how to install it, help me!" msgstr "Ik weet niet wat cURL is of hoe dat te installeren is, help me!" -#: includes/class-freemius.php:3672 +#: includes/class-freemius.php:4225 msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update." msgstr "We doen onze best om contact op te nemen met uw hostingbedrijf om het probleem op te lossen. We sturen een vervolgmail naar %s, zodra we een update hebben. " -#: includes/class-freemius.php:3679 +#: includes/class-freemius.php:4232 msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again." msgstr "Mooi, installeer alsjeblieft cURL en activeer het in je php.ini bestand. Tevens, zoek naar de 'disable_functions' directive in je php.ini bestand en verwijder iedere methode die start met 'curl_'. Gebruik 'phpinfo()' om je ervan te vergewissen dat het nu succesvol geactiveerd is. Als actief, deactiveer de %s en heractiveer deze opnieuw." -#: includes/class-freemius.php:3784 +#: includes/class-freemius.php:4337 msgid "Yes - do your thing" msgstr "Ja, ga je gang" -#: includes/class-freemius.php:3789 +#: includes/class-freemius.php:4342 msgid "No - just deactivate" msgstr "Nee - alleen deactiveren" -#: includes/class-freemius.php3834, includes/class-freemius.php4343, -#: includes/class-freemius.php5442, includes/class-freemius.php11545, -#: includes/class-freemius.php14916, includes/class-freemius.php14968, -#: includes/class-freemius.php15030, includes/class-freemius.php17263, -#: includes/class-freemius.php17273, includes/class-freemius.php17882, -#: includes/class-freemius.php18742, includes/class-freemius.php18857, -#: includes/class-freemius.php19001, templates/add-ons.php:43 +#: includes/class-freemius.php4387, includes/class-freemius.php4881, +#: includes/class-freemius.php6032, includes/class-freemius.php13153, +#: includes/class-freemius.php16558, includes/class-freemius.php16646, +#: includes/class-freemius.php16812, includes/class-freemius.php19040, +#: includes/class-freemius.php19381, includes/class-freemius.php19391, +#: includes/class-freemius.php20051, includes/class-freemius.php20924, +#: includes/class-freemius.php21039, includes/class-freemius.php21183, +#: templates/add-ons.php:57 msgctxt "exclamation" msgid "Oops" msgstr "Oeps" -#: includes/class-freemius.php:3903 +#: includes/class-freemius.php:4456 msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience." msgstr "Bedankt dat je ons in de gelegenheid stelt dit op te lossen. Zojuist is er een bericht verstuurd naar onze technische staf. We laten wat van ons horen, aan %s, als we een update hebben. Bedankt voor je geduld." -#: includes/class-freemius.php:4340 +#: includes/class-freemius.php:4878 msgctxt "addonX cannot run without pluginY" msgid "%s cannot run without %s." msgstr "%s werkt niet zonder %s." -#: includes/class-freemius.php:4341 +#: includes/class-freemius.php:4879 msgctxt "addonX cannot run..." msgid "%s cannot run without the plugin." msgstr "%s werkt niet zonder de plug-in." -#: includes/class-freemius.php4487, includes/class-freemius.php4512, -#: includes/class-freemius.php:17953 +#: includes/class-freemius.php5052, includes/class-freemius.php5077, +#: includes/class-freemius.php:20122 msgid "Unexpected API error. Please contact the %s's author with the following error." msgstr "Onverwachte API fout. Neem alsjeblieft contact op met de auteur van de %s met de volgende foutmelding." -#: includes/class-freemius.php:5130 +#: includes/class-freemius.php:5720 msgid "Premium %s version was successfully activated." msgstr "Premium %s versie is succesvol geactiveerd." -#: includes/class-freemius.php5142, includes/class-freemius.php:7004 +#: includes/class-freemius.php5732, includes/class-freemius.php:7599 msgctxt "" msgid "W00t" msgstr "W00t" -#: includes/class-freemius.php:5157 +#: includes/class-freemius.php:5747 msgid "You have a %s license." msgstr "Je hebt een %s licentie" -#: includes/class-freemius.php5161, includes/class-freemius.php14337, -#: includes/class-freemius.php14348, includes/class-freemius.php17177, -#: includes/class-freemius.php17491, includes/class-freemius.php17557, -#: includes/class-freemius.php:17707 +#: includes/class-freemius.php5751, includes/class-freemius.php15975, +#: includes/class-freemius.php15986, includes/class-freemius.php19292, +#: includes/class-freemius.php19642, includes/class-freemius.php19711, +#: includes/class-freemius.php:19876 msgctxt "interjection expressing joy or exuberance" msgid "Yee-haw" msgstr "Hoera" -#: includes/class-freemius.php:5425 +#: includes/class-freemius.php:6015 msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license." msgstr "%s gratis proefperiode werd succesvol stop gezet. Daar de add-on alleen als premium versie beschikbaar is werd deze automatisch gedeactiveerd. Als u de add-on in de toekomst wilt gebruiken dient u een licentie aan te schaffen." -#: includes/class-freemius.php:5429 +#: includes/class-freemius.php:6019 msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin." msgstr "%s is uitsluitend beschikbaar als een premium add-on. Je moet een licentie kopen voordat je de plug-in activeert." -#: includes/class-freemius.php5438, templates/add-ons.php103, -#: templates/account/partials/addon.php:288 +#: includes/class-freemius.php6028, templates/add-ons.php186, +#: templates/account/partials/addon.php:381 msgid "More information about %s" msgstr "Meer informatie over %s" -#: includes/class-freemius.php:5439 +#: includes/class-freemius.php:6029 msgid "Purchase License" msgstr "Licentie Kopen" -#: includes/class-freemius.php6372, templates/connect.php:163 +#: includes/class-freemius.php6964, templates/connect.php:163 msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s." msgstr "Als het goed is ontvang je een activatie e-mail voor %s in je %s mailbox. Zorg er alsjeblieft voor dat je op de activatie knop klikt in die e-mail aan %s." -#: includes/class-freemius.php:6376 +#: includes/class-freemius.php:6968 msgid "start the trial" msgstr "start de proefperiode" -#: includes/class-freemius.php6377, templates/connect.php:167 +#: includes/class-freemius.php6969, templates/connect.php:167 msgid "complete the install" msgstr "voltooi de installatie" -#: includes/class-freemius.php:6490 +#: includes/class-freemius.php:7081 msgid "You are just one step away - %s" msgstr "Je bent slechts een stap verwijderd - %s" -#: includes/class-freemius.php:6493 +#: includes/class-freemius.php:7084 msgctxt "%s - plugin name. As complete \"PluginX\" activation now" msgid "Complete \"%s\" Activation Now" msgstr "Voltooi \"%s\" Activatie Nu" -#: includes/class-freemius.php:6571 +#: includes/class-freemius.php:7162 msgid "We made a few tweaks to the %s, %s" msgstr "We hebben een aantal aanpassingen gedaan op de %s, %s " -#: includes/class-freemius.php:6575 +#: includes/class-freemius.php:7166 msgid "Opt in to make \"%s\" better!" msgstr "Opt-in om \"%s\" te verbeteren!" -#: includes/class-freemius.php:7003 +#: includes/class-freemius.php:7598 msgid "The upgrade of %s was successfully completed." msgstr "De upgrade van %s is succesvol voltooid." -#: includes/class-freemius.php8925, includes/class-fs-plugin-updater.php886, -#: includes/class-fs-plugin-updater.php1081, -#: includes/class-fs-plugin-updater.php1088, +#: includes/class-freemius.php9802, includes/class-fs-plugin-updater.php1038, +#: includes/class-fs-plugin-updater.php1233, +#: includes/class-fs-plugin-updater.php1240, #: templates/auto-installation.php:32 msgid "Add-On" msgstr "Uitbreiding" -#: includes/class-freemius.php8927, templates/debug.php359, -#: templates/debug.php:520 +#: includes/class-freemius.php9804, templates/account.php335, +#: templates/account.php343, templates/debug.php360, templates/debug.php:551 msgid "Plugin" msgstr "Plug-in" -#: includes/class-freemius.php8928, templates/debug.php359, -#: templates/debug.php520, templates/forms/deactivation/form.php:67 +#: includes/class-freemius.php9805, templates/account.php336, +#: templates/account.php344, templates/debug.php360, templates/debug.php551, +#: templates/forms/deactivation/form.php:71 msgid "Theme" msgstr "Thema" -#: includes/class-freemius.php:11412 +#: includes/class-freemius.php:12596 +msgid "An unknown error has occurred while trying to set the user's beta mode." +msgstr "An unknown error has occurred while trying to set the user's beta mode." + +#: includes/class-freemius.php:13020 msgid "Invalid site details collection." msgstr "Ongeldige verzameling van Site Details." -#: includes/class-freemius.php:11532 +#: includes/class-freemius.php:13140 msgid "We couldn't find your email address in the system, are you sure it's the right address?" msgstr "We konden je e-mailadres niet vinden in het systeem, ben je zeker dat dat het juiste adres is?" -#: includes/class-freemius.php:11534 +#: includes/class-freemius.php:13142 msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?" msgstr "Er is geen actieve licentie gekoppeld aan dat e-mailadres, ben je zeker dat dat het juiste adres is?" -#: includes/class-freemius.php:11808 +#: includes/class-freemius.php:13416 msgid "Account is pending activation." msgstr "Account wacht op activatie." -#: includes/class-freemius.php11920, +#: includes/class-freemius.php13528, #: templates/forms/premium-versions-upgrade-handler.php:47 msgid "Buy a license now" msgstr "Koop nu een licentie" -#: includes/class-freemius.php11932, +#: includes/class-freemius.php13540, #: templates/forms/premium-versions-upgrade-handler.php:46 msgid "Renew your license now" msgstr "Vernieuw je licentie nu" -#: includes/class-freemius.php:11936 +#: includes/class-freemius.php:13544 msgid "%s to access version %s security & feature updates, and support." msgstr "%svoor toegang tot versie %s beveiliging en feature updates en support." -#: includes/class-freemius.php:14319 +#: includes/class-freemius.php:15957 msgid "%s activation was successfully completed." msgstr "%s activatie is succesvol voltooid." -#: includes/class-freemius.php:14333 +#: includes/class-freemius.php:15971 msgid "Your account was successfully activated with the %s plan." msgstr "Je account is succesvol geactiveerd met het %s plan." -#: includes/class-freemius.php14344, includes/class-freemius.php:17553 +#: includes/class-freemius.php15982, includes/class-freemius.php:19707 msgid "Your trial has been successfully started." msgstr "U proefperiode is met succes gestart." -#: includes/class-freemius.php14914, includes/class-freemius.php14966, -#: includes/class-freemius.php:15028 +#: includes/class-freemius.php16556, includes/class-freemius.php16644, +#: includes/class-freemius.php:16810 msgid "Couldn't activate %s." msgstr "Kon %s niet activeren." -#: includes/class-freemius.php14915, includes/class-freemius.php14967, -#: includes/class-freemius.php:15029 +#: includes/class-freemius.php16557, includes/class-freemius.php16645, +#: includes/class-freemius.php:16811 msgid "Please contact us with the following message:" msgstr "Neem a.u.b. contact met ons op met het volgende bericht:" -#: includes/class-freemius.php15378, includes/class-freemius.php:19839 +#: includes/class-freemius.php16641, templates/forms/data-debug-mode.php:162 +msgid "An unknown error has occurred." +msgstr "An unknown error has occurred." + +#: includes/class-freemius.php17168, includes/class-freemius.php:22082 msgid "Upgrade" msgstr "Upgrade" -#: includes/class-freemius.php:15384 +#: includes/class-freemius.php:17174 msgid "Start Trial" msgstr "Start Proefperiode" -#: includes/class-freemius.php:15386 +#: includes/class-freemius.php:17176 msgid "Pricing" msgstr "Prijzen" -#: includes/class-freemius.php15448, includes/class-freemius.php:15450 +#: includes/class-freemius.php17256, includes/class-freemius.php:17258 msgid "Affiliation" msgstr "Affiliatie" -#: includes/class-freemius.php15478, includes/class-freemius.php15480, -#: templates/account.php150, templates/debug.php:324 +#: includes/class-freemius.php17286, includes/class-freemius.php17288, +#: templates/account.php183, templates/debug.php:326 msgid "Account" msgstr "Account" -#: includes/class-freemius.php15493, includes/class-freemius.php15495, +#: includes/class-freemius.php17302, includes/class-freemius.php17304, #: includes/customizer/class-fs-customizer-support-section.php:60 msgid "Contact Us" msgstr "Contacteer Ons" -#: includes/class-freemius.php15505, includes/class-freemius.php15507, -#: includes/class-freemius.php19849, templates/account.php100, -#: templates/account/partials/addon.php:41 +#: includes/class-freemius.php17315, includes/class-freemius.php17317, +#: includes/class-freemius.php22096, templates/account.php111, +#: templates/account/partials/addon.php:44 msgid "Add-Ons" msgstr "Uitbreidingen" -#: includes/class-freemius.php:15541 +#: includes/class-freemius.php:17351 msgctxt "ASCII arrow left icon" msgid "←" msgstr "←" -#: includes/class-freemius.php:15541 +#: includes/class-freemius.php:17351 msgctxt "ASCII arrow right icon" msgid "➤" msgstr "➤" -#: includes/class-freemius.php15543, templates/pricing.php:97 +#: includes/class-freemius.php17353, templates/pricing.php:103 msgctxt "noun" msgid "Pricing" msgstr "Prijzen" -#: includes/class-freemius.php15756, +#: includes/class-freemius.php17566, #: includes/customizer/class-fs-customizer-support-section.php:67 msgid "Support Forum" msgstr "Supportforum" -#: includes/class-freemius.php:16542 +#: includes/class-freemius.php:18536 msgid "Your email has been successfully verified - you are AWESOME!" msgstr "Je e-mail werd succesvol geverifieerd - je bent GEWELDIG!" -#: includes/class-freemius.php:16543 +#: includes/class-freemius.php:18537 msgctxt "a positive response" msgid "Right on" msgstr "Toppie" -#: includes/class-freemius.php:17168 +#: includes/class-freemius.php:19041 +msgid "seems like the key you entered doesn't match our records." +msgstr "seems like the key you entered doesn't match our records." + +#: includes/class-freemius.php:19065 +msgid "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." +msgstr "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." + +#: includes/class-freemius.php:19283 msgid "Your %s Add-on plan was successfully upgraded." msgstr "Uw %sAdd-on plan werd succesvol geüpgraded. " -#: includes/class-freemius.php:17170 +#: includes/class-freemius.php:19285 msgid "%s Add-on was successfully purchased." msgstr "%s Add-on werd succesvol aangekocht." -#: includes/class-freemius.php:17173 +#: includes/class-freemius.php:19288 msgid "Download the latest version" msgstr "Download de meeste recente versie" -#: includes/class-freemius.php:17259 -msgctxt "%1s - plugin title, %2s - API domain" -msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s" -msgstr "Je server blokkeert de toegang tot de Freemius API, welke cruciaal is voor %1s synchronisatie. Neem alsjeblieft contact op met je host om %2s te whitelisten." +#: includes/class-freemius.php:19374 +msgid "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s" +msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s" -#: includes/class-freemius.php17262, includes/class-freemius.php17678, -#: includes/class-freemius.php:17755 +#: includes/class-freemius.php19380, includes/class-freemius.php19390, +#: includes/class-freemius.php19835, includes/class-freemius.php:19924 msgid "Error received from the server:" msgstr "Foutmelding ontvangen van de server:" -#: includes/class-freemius.php:17272 +#: includes/class-freemius.php:19390 msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again." msgstr "Het lijkt erop dat een van de authenticatie parameters niet klopt. Update je Publieke Sleutel, Geheime Sleutel & Gebruikers ID en probeer het nogmaals. " -#: includes/class-freemius.php17454, includes/class-freemius.php17683, -#: includes/class-freemius.php17726, includes/class-freemius.php:17829 +#: includes/class-freemius.php19604, includes/class-freemius.php19840, +#: includes/class-freemius.php19895, includes/class-freemius.php:19998 msgctxt "" msgid "Hmm" msgstr "Hmm" -#: includes/class-freemius.php:17467 +#: includes/class-freemius.php:19617 msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry." msgstr "Het lijkt erop dat u nog steeds op het %s plan zit. Als u uw plan geüpgraded of veranderd heeft, dan is het waarschijnlijk een fout aan onze kant - sorry." -#: includes/class-freemius.php17468, templates/account.php102, -#: templates/add-ons.php134, templates/account/partials/addon.php:43 +#: includes/class-freemius.php19618, templates/account.php113, +#: templates/add-ons.php250, templates/account/partials/addon.php:46 msgctxt "trial period" msgid "Trial" msgstr "Proefperiode" -#: includes/class-freemius.php:17473 +#: includes/class-freemius.php:19623 msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s." msgstr "Ik heb mijn account geüpgraded maar als ik probeer te Synchroniseren blijft het plan %s." -#: includes/class-freemius.php17477, includes/class-freemius.php:17535 +#: includes/class-freemius.php19627, includes/class-freemius.php:19686 msgid "Please contact us here" msgstr "Neem hier a.u.b. contact met ons op" -#: includes/class-freemius.php:17487 +#: includes/class-freemius.php:19638 +msgid "Your plan was successfully activated." +msgstr "Your plan was successfully activated." + +#: includes/class-freemius.php:19639 msgid "Your plan was successfully upgraded." msgstr "Je plan is succesvol geüpgraded." -#: includes/class-freemius.php:17505 +#: includes/class-freemius.php:19656 msgid "Your plan was successfully changed to %s." msgstr "Je plan is succesvol veranderd naar %s." -#: includes/class-freemius.php:17521 +#: includes/class-freemius.php:19672 msgid "Your license has expired. You can still continue using the free %s forever." msgstr "Je licentie is verlopen. Je kan echter de gratis %s voor altijd blijven gebruiken." -#: includes/class-freemius.php:17523 +#: includes/class-freemius.php:19674 msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." msgstr "Je licentie is verlopen. %1$sUpgrade nu%2$s om de %3$s zonder interrupties te blijven gebruiken." -#: includes/class-freemius.php:17531 +#: includes/class-freemius.php:19682 msgid "Your license has been cancelled. If you think it's a mistake, please contact support." msgstr "Je licentie is geannuleerd. Als je denkt dat dat een fout is, neem dan alsjeblieft contact op met support." -#: includes/class-freemius.php:17544 +#: includes/class-freemius.php:19695 msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support." msgstr "Je licentie is verlopen. Je kan nog steeds alle %s features gebruiken, maar je zal je licentie moeten vernieuwen om weer updates en support te ontvangen." -#: includes/class-freemius.php:17567 +#: includes/class-freemius.php:19721 msgid "Your free trial has expired. You can still continue using all our free features." msgstr "Je gratis proefperiode is verlopen. Je kan nog steeds al onze gratis features blijven gebruiken." -#: includes/class-freemius.php:17569 +#: includes/class-freemius.php:19723 msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." msgstr "Je gratis proefperiode is verlopen. %1$sUpgrade nu%2$som de %3$s zonder interrupties te blijven gebruiken. " -#: includes/class-freemius.php:17674 +#: includes/class-freemius.php:19831 msgid "It looks like the license could not be activated." msgstr "Het lijkt erop dat de licentie niet geactiveerd kon worden." -#: includes/class-freemius.php:17704 +#: includes/class-freemius.php:19873 msgid "Your license was successfully activated." msgstr "Je licentie is succesvol geactiveerd." -#: includes/class-freemius.php:17730 +#: includes/class-freemius.php:19899 msgid "It looks like your site currently doesn't have an active license." msgstr "Het lijkt erop dat je site momenteel geen actieve licentie heeft." -#: includes/class-freemius.php:17754 +#: includes/class-freemius.php:19923 msgid "It looks like the license deactivation failed." msgstr "Het lijkt erop dat het deactiveren van je licentie mislukt is." -#: includes/class-freemius.php:17782 +#: includes/class-freemius.php:19951 msgid "Your license was successfully deactivated, you are back to the %s plan." msgstr "Je licentie is succesvol gedeactiveerd, je bent terug op het %s plan." -#: includes/class-freemius.php:17783 +#: includes/class-freemius.php:19952 msgid "O.K" msgstr "Oké" -#: includes/class-freemius.php:17836 +#: includes/class-freemius.php:20005 msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes." msgstr "Het lijkt erop, dat we een tijdelijk probleem hebben met het annuleren van je abonnement. Probeer het alsjeblieft over een paar minuten nog eens." -#: includes/class-freemius.php:17845 +#: includes/class-freemius.php:20014 msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s." msgstr "Je abonnement is succesvol geannuleerd. De licentie van je %s-plan al over %s aflopen." -#: includes/class-freemius.php:17887 +#: includes/class-freemius.php:20056 msgid "You are already running the %s in a trial mode." msgstr "Je draait de %s al in proefmodus." -#: includes/class-freemius.php:17898 +#: includes/class-freemius.php:20067 msgid "You already utilized a trial before." msgstr "U heeft reeds een proefperiode gebruikt." -#: includes/class-freemius.php:17912 +#: includes/class-freemius.php:20081 msgid "Plan %s do not exist, therefore, can't start a trial." msgstr "Plan %s bestaat niet, daarom kan proefperiode niet gestart worden." -#: includes/class-freemius.php:17923 +#: includes/class-freemius.php:20092 msgid "Plan %s does not support a trial period." msgstr "Plan %s ondersteunt geen proefperiode." -#: includes/class-freemius.php:17934 +#: includes/class-freemius.php:20103 msgid "None of the %s's plans supports a trial period." msgstr "Geen van de %s plannen ondersteunt een proefperiode." -#: includes/class-freemius.php:17984 +#: includes/class-freemius.php:20153 msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)" msgstr "Het lijkt er op dat u niet langer meer in de proefperiode zit, dus er valt niets stop te zetten." -#: includes/class-freemius.php:18020 +#: includes/class-freemius.php:20189 msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes." msgstr "Het lijkt er op dat we een tijdelijk probleem hebben met het opzeggen van uw proefperiode. Probeer het a.u.b. over enkele minuten nog eens." -#: includes/class-freemius.php:18039 +#: includes/class-freemius.php:20208 msgid "Your %s free trial was successfully cancelled." msgstr "Uw gratis %s proefperiode is succesvol opgezegd. " -#: includes/class-freemius.php:18346 +#: includes/class-freemius.php:20524 msgid "Version %s was released." msgstr "Versie %s is vrijgegeven." -#: includes/class-freemius.php:18346 +#: includes/class-freemius.php:20524 msgid "Please download %s." msgstr "A.u.b. %s downloaden." -#: includes/class-freemius.php:18353 +#: includes/class-freemius.php:20531 msgid "the latest %s version here" msgstr "de meest recente %s versie hier" -#: includes/class-freemius.php:18358 +#: includes/class-freemius.php:20536 msgid "New" msgstr "Nieuw" -#: includes/class-freemius.php:18363 +#: includes/class-freemius.php:20541 msgid "Seems like you got the latest release." msgstr "Het lijkt erop dat je de meest recente versie hebt." -#: includes/class-freemius.php:18364 +#: includes/class-freemius.php:20542 msgid "You are all good!" msgstr "Alles is goed!" -#: includes/class-freemius.php:18632 +#: includes/class-freemius.php:20812 msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box." msgstr "Verificatiemail zojuist verstuurd naar %s. Als je deze niet binnen 5 min. hebt ontvangen, kijk dan alsjeblieft in je spambox." -#: includes/class-freemius.php:18769 +#: includes/class-freemius.php:20951 msgid "Site successfully opted in." msgstr "Site opt-in geslaagd. " -#: includes/class-freemius.php18770, includes/class-freemius.php:19581 +#: includes/class-freemius.php20952, includes/class-freemius.php:21792 msgid "Awesome" msgstr "Geweldig" -#: includes/class-freemius.php18786, templates/forms/optout.php:32 +#: includes/class-freemius.php20968, templates/forms/optout.php:32 msgid "We appreciate your help in making the %s better by letting us track some usage data." msgstr "We waarderen je hulp om %s beter te maken door ons gebruiksdata te laten verzamelen. " -#: includes/class-freemius.php:18787 +#: includes/class-freemius.php:20969 msgid "Thank you!" msgstr "Bedankt!" -#: includes/class-freemius.php:18794 +#: includes/class-freemius.php:20976 msgid "We will no longer be sending any usage data of %s on %s to %s." msgstr "We zullen geen gebruiksdata meer verzenden van %s m.b.t. %s naar %s." -#: includes/class-freemius.php:18923 +#: includes/class-freemius.php:21105 msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder." msgstr "Hou alsjeblieft je mailbox in de gaten, je zult een e-mail ontvangen via %s om de overdracht te bevestigen. Vanwege veiligheidsredenen moet je de overdracht binnen de volgende 15 min. bevestigen. Kijk eventueel in je spambox, mocht je de e-mail niet aantreffen in je inbox." -#: includes/class-freemius.php:18929 +#: includes/class-freemius.php:21111 msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval." msgstr "Bedankt voor het bevestigen van de eigendomsoverdracht. Zojuist is er een e-mail verstuurd naar %s voor de definitieve goedkeuring. " -#: includes/class-freemius.php:18934 +#: includes/class-freemius.php:21116 msgid "%s is the new owner of the account." msgstr "%s is de nieuwe eigenaar van het account." -#: includes/class-freemius.php:18936 +#: includes/class-freemius.php:21118 msgctxt "as congratulations" msgid "Congrats" msgstr "Gefeliciteerd" -#: includes/class-freemius.php:18956 +#: includes/class-freemius.php:21138 msgid "Sorry, we could not complete the email update. Another user with the same email is already registered." msgstr "Sorry, we konden de e-mail update niet voltooien. Een andere gebruiker met hetzelfde e-mailadres is reeds geregistreerd." -#: includes/class-freemius.php:18957 +#: includes/class-freemius.php:21139 msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button." msgstr "Als je het eigendom van het %s account wilt overdragen aan %s, klik dan op de Eigendom Overdragen knop. " -#: includes/class-freemius.php:18964 +#: includes/class-freemius.php:21146 msgid "Change Ownership" msgstr "Eigendom Overdragen" -#: includes/class-freemius.php:18972 +#: includes/class-freemius.php:21154 msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments." msgstr "Je e-mailadres is succesvol verwerkt. Als het goed is ontvang je zometeen een e-mail met bevestigingsinstructies. " -#: includes/class-freemius.php:18984 +#: includes/class-freemius.php:21166 msgid "Please provide your full name." msgstr "Geef alsjeblieft je volledige naam." -#: includes/class-freemius.php:18989 +#: includes/class-freemius.php:21171 msgid "Your name was successfully updated." msgstr "Je naam is succesvol bijgewerkt." -#: includes/class-freemius.php:19050 +#: includes/class-freemius.php:21232 msgid "You have successfully updated your %s." msgstr "Je hebt je %s succesvol geüpdatet." -#: includes/class-freemius.php:19190 +#: includes/class-freemius.php:21372 msgid "Just letting you know that the add-ons information of %s is being pulled from an external server." msgstr "Voor alle duidelijkheid, de add-ons informatie van %s wordt opgehaald van een externe server." -#: includes/class-freemius.php:19191 +#: includes/class-freemius.php:21373 msgctxt "advance notice of something that will need attention." msgid "Heads up" msgstr "Aankondiging" -#: includes/class-freemius.php:19621 +#: includes/class-freemius.php:21832 msgctxt "exclamation" msgid "Hey" msgstr "Hoi" -#: includes/class-freemius.php:19621 +#: includes/class-freemius.php:21832 msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial." msgstr "Hoe bevalt %s tot dusver? Test al onze %s premium features gedurende een%d-daagse gratis proefperiode." -#: includes/class-freemius.php:19629 +#: includes/class-freemius.php:21840 msgid "No commitment for %s days - cancel anytime!" msgstr "Geen verplichting voor %s dagen - elk moment opzeggen!" -#: includes/class-freemius.php:19630 +#: includes/class-freemius.php:21841 msgid "No credit card required" msgstr "Geen creditcard nodig" -#: includes/class-freemius.php19637, templates/forms/trial-start.php:53 +#: includes/class-freemius.php21848, templates/forms/trial-start.php:53 msgctxt "call to action" msgid "Start free trial" msgstr "Start gratis proefperidoe" -#: includes/class-freemius.php:19714 +#: includes/class-freemius.php:21925 msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!" msgstr "Hey, wist je dat %s een samenwerkingsprogramma heeft? Als je de %s goedvindt, kun je onze ambassadeur worden en wat geld verdienen!" -#: includes/class-freemius.php:19723 +#: includes/class-freemius.php:21934 msgid "Learn more" msgstr "Lees meer" -#: includes/class-freemius.php19873, templates/account.php406, -#: templates/account.php509, templates/connect.php171, -#: templates/connect.php421, templates/forms/license-activation.php24, -#: templates/account/partials/addon.php:235 +#: includes/class-freemius.php22120, templates/account.php499, +#: templates/account.php624, templates/connect.php171, +#: templates/connect.php421, templates/forms/license-activation.php27, +#: templates/account/partials/addon.php:321 msgid "Activate License" msgstr "Activeer Licentie" -#: includes/class-freemius.php19874, templates/account.php469, -#: templates/account.php508, templates/account/partials/site.php:256 +#: includes/class-freemius.php22121, templates/account.php571, +#: templates/account.php623, templates/account/partials/addon.php322, +#: templates/account/partials/site.php:271 msgid "Change License" msgstr "Verander Licentie" -#: includes/class-freemius.php19956, templates/account/partials/site.php:161 +#: includes/class-freemius.php22217, templates/account/partials/site.php:169 msgid "Opt Out" msgstr "Opt Out" -#: includes/class-freemius.php19958, includes/class-freemius.php19963, -#: templates/account/partials/site.php43, -#: templates/account/partials/site.php:161 +#: includes/class-freemius.php22219, includes/class-freemius.php22225, +#: templates/account/partials/site.php49, +#: templates/account/partials/site.php:169 msgid "Opt In" msgstr "Opt In" -#: includes/class-freemius.php:20187 -msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s" -msgstr "De betaalde versie van%1s is reeds geïnstalleerd. Activeer deze alsjeblieft om te kunnen profiteren van de %2s features. %3s " +#: includes/class-freemius.php:22453 +msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s" +msgstr " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s" -#: includes/class-freemius.php:20195 +#: includes/class-freemius.php:22461 msgid "Activate %s features" msgstr "Activeer %s features." -#: includes/class-freemius.php:20208 +#: includes/class-freemius.php:22474 msgid "Please follow these steps to complete the upgrade" msgstr "Volg alsjeblieft deze stappen om de upgrade te voltooien" -#: includes/class-freemius.php:20212 +#: includes/class-freemius.php:22478 msgid "Download the latest %s version" msgstr "Download de meeste recente %s versie" -#: includes/class-freemius.php:20216 +#: includes/class-freemius.php:22482 msgid "Upload and activate the downloaded version" msgstr "Upload en activeer de gedownloade versie" -#: includes/class-freemius.php:20218 +#: includes/class-freemius.php:22484 msgid "How to upload and activate?" msgstr "Hoe te uploaden en activeren?" -#: includes/class-freemius.php:20352 +#: includes/class-freemius.php:22618 msgid "%sClick here%s to choose the sites where you'd like to activate the license on." msgstr "%sKlik hier%s om de sites te kiezen waar op je de licentie wilt activeren." -#: includes/class-freemius.php:20513 +#: includes/class-freemius.php:22779 msgid "Auto installation only works for opted-in users." msgstr "Automatische installatie werkt alleen voor opted-in gebruikers." -#: includes/class-freemius.php20523, includes/class-freemius.php20556, -#: includes/class-fs-plugin-updater.php1060, -#: includes/class-fs-plugin-updater.php:1074 +#: includes/class-freemius.php22789, includes/class-freemius.php22822, +#: includes/class-fs-plugin-updater.php1212, +#: includes/class-fs-plugin-updater.php:1226 msgid "Invalid module ID." msgstr "Ongeldige Module-ID" -#: includes/class-freemius.php20532, includes/class-fs-plugin-updater.php:1096 +#: includes/class-freemius.php22798, includes/class-fs-plugin-updater.php:1248 msgid "Premium version already active." msgstr "Premium versie reeds actief." -#: includes/class-freemius.php:20539 +#: includes/class-freemius.php:22805 msgid "You do not have a valid license to access the premium version." msgstr "Je hebt geen geldige licentie voor de premium versie." -#: includes/class-freemius.php:20546 +#: includes/class-freemius.php:22812 msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version." msgstr "Plug-in is 'Serviceware' wat betekent dat het geen premium code versie bevat. " -#: includes/class-freemius.php20564, includes/class-fs-plugin-updater.php:1095 +#: includes/class-freemius.php22830, includes/class-fs-plugin-updater.php:1247 msgid "Premium add-on version already installed." msgstr "Premium add-on versie is reeds geïnstalleerd." -#: includes/class-freemius.php:20909 +#: includes/class-freemius.php:23180 msgid "View paid features" msgstr "Bekijk betaalde kenmerken" -#: includes/class-freemius.php:21229 +#: includes/class-freemius.php:23502 msgid "Thank you so much for using %s and its add-ons!" msgstr "Hartelijk bedankt voor het gebruik van %s en bijbehorende uitbreidingen!" -#: includes/class-freemius.php:21230 +#: includes/class-freemius.php:23503 msgid "Thank you so much for using %s!" msgstr "Hartelijk bedankt voor het gebruik van %s!" -#: includes/class-freemius.php:21236 +#: includes/class-freemius.php:23509 msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s." msgstr "Je hebt reeds ingestemd met onze gebruiks-tracking, wat ons helpt om %s te blijven verbeteren." -#: includes/class-freemius.php:21240 +#: includes/class-freemius.php:23513 msgid "Thank you so much for using our products!" msgstr "Hartelijk bedankt voor het gebruiken van onze producten!" -#: includes/class-freemius.php:21241 +#: includes/class-freemius.php:23514 msgid "You've already opted-in to our usage-tracking, which helps us keep improving them." msgstr "Je hebt reeds ingestemd met onze gebruiks-tracking, wat ons helpt om deze te blijven verbeteren." -#: includes/class-freemius.php:21260 +#: includes/class-freemius.php:23533 msgid "%s and its add-ons" msgstr "%sen bijbehorende uitbreidingen" -#: includes/class-freemius.php:21269 +#: includes/class-freemius.php:23542 msgid "Products" msgstr "Producten" -#: includes/class-freemius.php21276, templates/connect.php:272 +#: includes/class-freemius.php23549, templates/connect.php:272 msgid "Yes" msgstr "Ja" -#: includes/class-freemius.php21277, templates/connect.php:273 +#: includes/class-freemius.php23550, templates/connect.php:273 msgid "send me security & feature updates, educational content and offers." msgstr "stuur mij beveiliging & feature updates, educatieve content en aanbiedingen." -#: includes/class-freemius.php21278, templates/connect.php:278 +#: includes/class-freemius.php23551, templates/connect.php:278 msgid "No" msgstr "Nee" -#: includes/class-freemius.php21280, templates/connect.php:280 +#: includes/class-freemius.php23553, templates/connect.php:280 msgid "do %sNOT%s send me security & feature updates, educational content and offers." msgstr "stuur mij %sGEEN%s beveiliging & feature updates, educatieve content of aanbiedingen." -#: includes/class-freemius.php:21290 -msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂" -msgstr "Naar aanleiding van de nieuwe %sEU General Data Protection Regulation (GDPR) / Algemene verordening gegevensbescherming (AVG) %s regelgeving is het verplicht dat je je expliciete toestemming geeft, nogmaals, bevestigend dat je 'aan boord' bent 🙂" +#: includes/class-freemius.php:23563 +msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard :-)" +msgstr "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard :-)" -#: includes/class-freemius.php21292, templates/connect.php:287 +#: includes/class-freemius.php23565, templates/connect.php:287 msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:" msgstr "Laat ons alsjeblieft weten als je op de hoogte gehouden wilt worden van beveiliging & feature updates, educatieve content en zo nu en dan aanbiedingen:" -#: includes/class-freemius.php:21574 +#: includes/class-freemius.php:23847 msgid "License key is empty." msgstr "Licentiesleutel is leeg." -#: includes/class-fs-plugin-updater.php184, +#: includes/class-fs-plugin-updater.php206, #: templates/forms/premium-versions-upgrade-handler.php:57 msgid "Renew license" msgstr "Vernieuw licentie" -#: includes/class-fs-plugin-updater.php189, +#: includes/class-fs-plugin-updater.php211, #: templates/forms/premium-versions-upgrade-handler.php:58 msgid "Buy license" msgstr "Koop licentie" -#: includes/class-fs-plugin-updater.php:278 +#: includes/class-fs-plugin-updater.php321, +#: includes/class-fs-plugin-updater.php:354 msgid "There is a %s of %s available." msgstr "Er is een %s van %s beschikbaar." -#: includes/class-fs-plugin-updater.php:282 +#: includes/class-fs-plugin-updater.php323, +#: includes/class-fs-plugin-updater.php:359 +msgid "new Beta version" +msgstr "new Beta version" + +#: includes/class-fs-plugin-updater.php324, +#: includes/class-fs-plugin-updater.php:360 msgid "new version" msgstr "nieuwe versie" -#: includes/class-fs-plugin-updater.php:305 +#: includes/class-fs-plugin-updater.php:383 msgid "Important Upgrade Notice:" msgstr "Belangrijke Upgrade Mededeling:" -#: includes/class-fs-plugin-updater.php:1125 +#: includes/class-fs-plugin-updater.php:1277 msgid "Installing plugin: %s" msgstr "Installeren van plug-in: %s" -#: includes/class-fs-plugin-updater.php:1166 +#: includes/class-fs-plugin-updater.php:1318 msgid "Unable to connect to the filesystem. Please confirm your credentials." msgstr "Toegang tot het bestandssysteem is niet mogelijk. Bevestig alsjeblieft je inloggegevens." -#: includes/class-fs-plugin-updater.php:1348 +#: includes/class-fs-plugin-updater.php:1500 msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work." msgstr "Het remote plug-in pakket bevat geen folder met de verwachte slug en hernoemen werkte niet. " -#: includes/fs-plugin-info-dialog.php369, -#: templates/account/partials/addon.php:292 +#: includes/fs-plugin-info-dialog.php:535 +msgid "Purchase More" +msgstr "Purchase More" + +#: includes/fs-plugin-info-dialog.php536, +#: templates/account/partials/addon.php:385 msgctxt "verb" msgid "Purchase" msgstr "Koop" -#: includes/fs-plugin-info-dialog.php:372 +#: includes/fs-plugin-info-dialog.php:540 msgid "Start my free %s" msgstr "Start mijn gratis %s" -#: includes/fs-plugin-info-dialog.php:413 +#: includes/fs-plugin-info-dialog.php:738 +msgid "Install Free Version Update Now" +msgstr "Installeer Gratis Versie Update Nu" + +#: includes/fs-plugin-info-dialog.php739, templates/account.php:560 +msgid "Install Update Now" +msgstr "Installeer Update Nu" + +#: includes/fs-plugin-info-dialog.php:748 msgid "Install Free Version Now" msgstr "Installer Gratis Versie Nu" -#: includes/fs-plugin-info-dialog.php414, templates/auto-installation.php111, -#: templates/account/partials/addon.php272, -#: templates/account/partials/addon.php:322 +#: includes/fs-plugin-info-dialog.php749, templates/add-ons.php323, +#: templates/auto-installation.php111, +#: templates/account/partials/addon.php365, +#: templates/account/partials/addon.php:418 msgid "Install Now" msgstr "Installeer Nu" -#: includes/fs-plugin-info-dialog.php:425 +#: includes/fs-plugin-info-dialog.php:765 msgctxt "as download latest version" msgid "Download Latest Free Version" msgstr "Download Nieuwste Gratis Versie" -#: includes/fs-plugin-info-dialog.php426, templates/account.php80, -#: templates/account/partials/addon.php:21 +#: includes/fs-plugin-info-dialog.php766, templates/account.php91, +#: templates/add-ons.php37, templates/account/partials/addon.php:25 msgctxt "as download latest version" msgid "Download Latest" msgstr "Download Nieuwste" -#: includes/fs-plugin-info-dialog.php:436 -msgid "Install Free Version Update Now" -msgstr "Installeer Gratis Versie Update Nu" - -#: includes/fs-plugin-info-dialog.php437, templates/account.php:460 -msgid "Install Update Now" -msgstr "Installeer Update Nu" - -#: includes/fs-plugin-info-dialog.php:448 -msgid "Newer Free Version (%s) Installed" -msgstr "Nieuwere Gratis Versie (%s) Geïnstalleerd" - -#: includes/fs-plugin-info-dialog.php:449 -msgid "Newer Version (%s) Installed" -msgstr "Nieuwere Versie (%s) Geïnstalleerd" +#: includes/fs-plugin-info-dialog.php781, templates/add-ons.php329, +#: templates/account/partials/addon.php356, +#: templates/account/partials/addon.php:412 +msgid "Activate this add-on" +msgstr "Activeer deze add-on" -#: includes/fs-plugin-info-dialog.php:457 -msgid "Latest Free Version Installed" -msgstr "Nieuwste Gratis Versie Geïnstalleerd" +#: includes/fs-plugin-info-dialog.php783, templates/connect.php:418 +msgid "Activate Free Version" +msgstr "Activeer Gratis Versie" -#: includes/fs-plugin-info-dialog.php:458 -msgid "Latest Version Installed" -msgstr "Meest Recente Versie Geïnstalleerd" +#: includes/fs-plugin-info-dialog.php784, templates/account.php115, +#: templates/add-ons.php330, templates/account/partials/addon.php:48 +msgid "Activate" +msgstr "Activeer" -#: includes/fs-plugin-info-dialog.php:613 +#: includes/fs-plugin-info-dialog.php:994 msgctxt "Plugin installer section title" msgid "Description" msgstr "Beschrijving" -#: includes/fs-plugin-info-dialog.php:614 +#: includes/fs-plugin-info-dialog.php:995 msgctxt "Plugin installer section title" msgid "Installation" msgstr "Installatie" -#: includes/fs-plugin-info-dialog.php:615 +#: includes/fs-plugin-info-dialog.php:996 msgctxt "Plugin installer section title" msgid "FAQ" msgstr "Veelgestelde Vragen" -#: includes/fs-plugin-info-dialog.php616, +#: includes/fs-plugin-info-dialog.php997, #: templates/plugin-info/description.php:55 msgid "Screenshots" msgstr "Schermafbeeldingen" -#: includes/fs-plugin-info-dialog.php:617 +#: includes/fs-plugin-info-dialog.php:998 msgctxt "Plugin installer section title" msgid "Changelog" msgstr "Wijzigingen Log" -#: includes/fs-plugin-info-dialog.php:618 +#: includes/fs-plugin-info-dialog.php:999 msgctxt "Plugin installer section title" msgid "Reviews" msgstr "Reviews" -#: includes/fs-plugin-info-dialog.php:619 +#: includes/fs-plugin-info-dialog.php:1000 msgctxt "Plugin installer section title" msgid "Other Notes" msgstr "Andere Notities" -#: includes/fs-plugin-info-dialog.php:634 +#: includes/fs-plugin-info-dialog.php:1015 msgctxt "Plugin installer section title" msgid "Features & Pricing" msgstr "Features & Prijzen" -#: includes/fs-plugin-info-dialog.php:644 +#: includes/fs-plugin-info-dialog.php:1025 msgid "Plugin Install" msgstr "Plug-in Installatie" -#: includes/fs-plugin-info-dialog.php:716 +#: includes/fs-plugin-info-dialog.php:1097 msgctxt "e.g. Professional Plan" msgid "%s Plan" msgstr "%s Plan" -#: includes/fs-plugin-info-dialog.php:742 +#: includes/fs-plugin-info-dialog.php:1123 msgctxt "e.g. the best product" msgid "Best" msgstr "Beste" -#: includes/fs-plugin-info-dialog.php748, -#: includes/fs-plugin-info-dialog.php:768 +#: includes/fs-plugin-info-dialog.php1129, +#: includes/fs-plugin-info-dialog.php:1149 msgctxt "as every month" msgid "Monthly" msgstr "Maandelijks" -#: includes/fs-plugin-info-dialog.php:751 +#: includes/fs-plugin-info-dialog.php:1132 msgctxt "as once a year" msgid "Annual" msgstr "Jaarlijks" -#: includes/fs-plugin-info-dialog.php:754 +#: includes/fs-plugin-info-dialog.php:1135 msgid "Lifetime" msgstr "Levenslang" -#: includes/fs-plugin-info-dialog.php768, -#: includes/fs-plugin-info-dialog.php770, -#: includes/fs-plugin-info-dialog.php:772 +#: includes/fs-plugin-info-dialog.php1149, +#: includes/fs-plugin-info-dialog.php1151, +#: includes/fs-plugin-info-dialog.php:1153 msgctxt "e.g. billed monthly" msgid "Billed %s" msgstr "%s gefactureerd " -#: includes/fs-plugin-info-dialog.php:770 +#: includes/fs-plugin-info-dialog.php:1151 msgctxt "as once a year" msgid "Annually" msgstr "Jaarlijks" -#: includes/fs-plugin-info-dialog.php:772 +#: includes/fs-plugin-info-dialog.php:1153 msgctxt "as once a year" msgid "Once" msgstr "Eenmalig" -#: includes/fs-plugin-info-dialog.php:778 +#: includes/fs-plugin-info-dialog.php:1159 msgid "Single Site License" msgstr "Enkele Site Licentie" -#: includes/fs-plugin-info-dialog.php:780 +#: includes/fs-plugin-info-dialog.php:1161 msgid "Unlimited Licenses" msgstr "Onbeperkte Licenties" -#: includes/fs-plugin-info-dialog.php:782 +#: includes/fs-plugin-info-dialog.php:1163 msgid "Up to %s Sites" msgstr "Tot %s Sites" -#: includes/fs-plugin-info-dialog.php792, +#: includes/fs-plugin-info-dialog.php1173, #: templates/plugin-info/features.php:82 msgctxt "as monthly period" msgid "mo" msgstr "mnd" -#: includes/fs-plugin-info-dialog.php799, +#: includes/fs-plugin-info-dialog.php1180, #: templates/plugin-info/features.php:80 msgctxt "as annual period" msgid "year" msgstr "jaar" -#: includes/fs-plugin-info-dialog.php:853 +#: includes/fs-plugin-info-dialog.php:1234 msgctxt "noun" msgid "Price" msgstr "Prijs" -#: includes/fs-plugin-info-dialog.php:901 +#: includes/fs-plugin-info-dialog.php:1282 msgid "Save %s" msgstr "Bespaar %s" -#: includes/fs-plugin-info-dialog.php:911 +#: includes/fs-plugin-info-dialog.php:1292 msgid "No commitment for %s - cancel anytime" msgstr "Geen verplichting voor %s - opzeggen kan altijd" -#: includes/fs-plugin-info-dialog.php:914 +#: includes/fs-plugin-info-dialog.php:1295 msgid "After your free %s, pay as little as %s" msgstr "Na uw gratis %s, betaal slechts %s" -#: includes/fs-plugin-info-dialog.php:925 +#: includes/fs-plugin-info-dialog.php:1306 msgid "Details" msgstr "Details" -#: includes/fs-plugin-info-dialog.php929, templates/account.php91, -#: templates/debug.php201, templates/debug.php238, templates/debug.php452, -#: templates/account/partials/addon.php:32 +#: includes/fs-plugin-info-dialog.php1310, templates/account.php102, +#: templates/debug.php203, templates/debug.php240, templates/debug.php457, +#: templates/account/partials/addon.php:36 msgctxt "product version" msgid "Version" msgstr "Versie" -#: includes/fs-plugin-info-dialog.php:936 +#: includes/fs-plugin-info-dialog.php:1317 msgctxt "as the plugin author" msgid "Author" msgstr "Auteur" -#: includes/fs-plugin-info-dialog.php:943 +#: includes/fs-plugin-info-dialog.php:1324 msgid "Last Updated" msgstr "Laatst Geüpdatet" -#: includes/fs-plugin-info-dialog.php948, templates/account.php:376 +#: includes/fs-plugin-info-dialog.php1329, templates/account.php:468 msgctxt "x-ago" msgid "%s ago" msgstr "%s geleden" -#: includes/fs-plugin-info-dialog.php:957 +#: includes/fs-plugin-info-dialog.php:1338 msgid "Requires WordPress Version" msgstr "Vereiste WordPress-versie" -#: includes/fs-plugin-info-dialog.php:958 +#: includes/fs-plugin-info-dialog.php:1339 msgid "%s or higher" msgstr "%s of hoger" -#: includes/fs-plugin-info-dialog.php:965 +#: includes/fs-plugin-info-dialog.php:1346 msgid "Compatible up to" msgstr "Compatible tot" -#: includes/fs-plugin-info-dialog.php:973 +#: includes/fs-plugin-info-dialog.php:1354 msgid "Downloaded" msgstr "Gedownload" -#: includes/fs-plugin-info-dialog.php:977 +#: includes/fs-plugin-info-dialog.php:1358 msgid "%s time" msgstr "%s tijd" -#: includes/fs-plugin-info-dialog.php:979 +#: includes/fs-plugin-info-dialog.php:1360 msgid "%s times" msgstr "%s tijden" -#: includes/fs-plugin-info-dialog.php:989 +#: includes/fs-plugin-info-dialog.php:1370 msgid "WordPress.org Plugin Page" msgstr "WordPress.org Plug-in Pagina" -#: includes/fs-plugin-info-dialog.php:997 +#: includes/fs-plugin-info-dialog.php:1378 msgid "Plugin Homepage" msgstr "Plug-in Homepage" -#: includes/fs-plugin-info-dialog.php1005, -#: includes/fs-plugin-info-dialog.php:1087 +#: includes/fs-plugin-info-dialog.php1386, +#: includes/fs-plugin-info-dialog.php:1468 msgid "Donate to this plugin" msgstr "Doneer aan deze plug-in" -#: includes/fs-plugin-info-dialog.php:1012 +#: includes/fs-plugin-info-dialog.php:1393 msgid "Average Rating" msgstr "Gemiddelde Beoordeling" -#: includes/fs-plugin-info-dialog.php:1019 +#: includes/fs-plugin-info-dialog.php:1400 msgid "based on %s" msgstr "gebaseerd op %s" -#: includes/fs-plugin-info-dialog.php:1023 +#: includes/fs-plugin-info-dialog.php:1404 msgid "%s rating" msgstr "%s beoordeling" -#: includes/fs-plugin-info-dialog.php:1025 +#: includes/fs-plugin-info-dialog.php:1406 msgid "%s ratings" msgstr "%s beoordelingen" -#: includes/fs-plugin-info-dialog.php:1040 +#: includes/fs-plugin-info-dialog.php:1421 msgid "%s star" msgstr "%s ster" -#: includes/fs-plugin-info-dialog.php:1042 +#: includes/fs-plugin-info-dialog.php:1423 msgid "%s stars" msgstr "%s sterren" -#: includes/fs-plugin-info-dialog.php:1053 +#: includes/fs-plugin-info-dialog.php:1434 msgid "Click to see reviews that provided a rating of %s" msgstr "Klik om reviews te bekijken met een beoordeling van%s" -#: includes/fs-plugin-info-dialog.php:1066 +#: includes/fs-plugin-info-dialog.php:1447 msgid "Contributors" msgstr "Medewerkers" -#: includes/fs-plugin-info-dialog.php1095, -#: includes/fs-plugin-info-dialog.php:1097 +#: includes/fs-plugin-info-dialog.php1476, +#: includes/fs-plugin-info-dialog.php:1478 msgid "Warning" msgstr "Waarschuwing" -#: includes/fs-plugin-info-dialog.php:1095 +#: includes/fs-plugin-info-dialog.php:1476 msgid "This plugin has not been tested with your current version of WordPress." msgstr "Deze plug-in is nog niet getest met je huidige WordPress versie. " -#: includes/fs-plugin-info-dialog.php:1097 +#: includes/fs-plugin-info-dialog.php:1478 msgid "This plugin has not been marked as compatible with your version of WordPress." msgstr "Deze plug-in is niet als compatibel aangemerkt voor je huidige WordPress versie." -#: includes/fs-plugin-info-dialog.php:1116 +#: includes/fs-plugin-info-dialog.php:1497 msgid "Paid add-on must be deployed to Freemius." msgstr "Betaalde add-on moet op Freemius geplaatst worden." -#: includes/fs-plugin-info-dialog.php:1117 +#: includes/fs-plugin-info-dialog.php:1498 msgid "Add-on must be deployed to WordPress.org or Freemius." msgstr "Add-on moet op WordPress.org of Freemius geplaatst worden." -#: templates/account.php81, templates/forms/subscription-cancellation.php96, -#: templates/account/partials/addon.php22, -#: templates/account/partials/site.php:295 +#: includes/fs-plugin-info-dialog.php:1519 +msgid "Newer Version (%s) Installed" +msgstr "Nieuwere Versie (%s) Geïnstalleerd" + +#: includes/fs-plugin-info-dialog.php:1520 +msgid "Newer Free Version (%s) Installed" +msgstr "Nieuwere Gratis Versie (%s) Geïnstalleerd" + +#: includes/fs-plugin-info-dialog.php:1527 +msgid "Latest Version Installed" +msgstr "Meest Recente Versie Geïnstalleerd" + +#: includes/fs-plugin-info-dialog.php:1528 +msgid "Latest Free Version Installed" +msgstr "Nieuwste Gratis Versie Geïnstalleerd" + +#: templates/account.php92, templates/forms/subscription-cancellation.php96, +#: templates/account/partials/addon.php26, +#: templates/account/partials/site.php:311 msgid "Downgrading your plan" msgstr "Je plan naar beneden bijstellen" -#: templates/account.php82, templates/forms/subscription-cancellation.php97, -#: templates/account/partials/addon.php23, -#: templates/account/partials/site.php:296 +#: templates/account.php93, templates/forms/subscription-cancellation.php97, +#: templates/account/partials/addon.php27, +#: templates/account/partials/site.php:312 msgid "Cancelling the subscription" msgstr "Het abonnement annuleren" -#. translators: %1s: Either 'Downgrading your plan' or 'Cancelling the +#. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the #. subscription' -#: templates/account.php84, templates/forms/subscription-cancellation.php99, -#: templates/account/partials/addon.php25, -#: templates/account/partials/site.php:298 -msgid "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s." -msgstr "%1s zal onmiddellijk alle toekomstige, automatische betalingen stopzetten en je %s-plan licentie loopt over %s af." - -#: templates/account.php85, templates/forms/subscription-cancellation.php100, -#: templates/account/partials/addon.php26, -#: templates/account/partials/site.php:299 +#: templates/account.php95, templates/forms/subscription-cancellation.php99, +#: templates/account/partials/site.php:314 +msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s." +msgstr "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s." + +#: templates/account.php96, templates/forms/subscription-cancellation.php100, +#: templates/account/partials/addon.php30, +#: templates/account/partials/site.php:315 msgid "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price." msgstr "Onthou alsjeblieft dat we geen oude prijzen voor verlengingen/nieuwe abonnementen na een annulering kunnen aanhouden. Als je in de toekomst besluit om een abonnement handmatig te vernieuwen, zal de nieuwe prijs (na een prijsverhoging die meestal jaarlijks plaatsvindt) worden berekend." -#: templates/account.php86, templates/forms/subscription-cancellation.php106, -#: templates/account/partials/addon.php:27 +#: templates/account.php97, templates/forms/subscription-cancellation.php106, +#: templates/account/partials/addon.php:31 msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?" msgstr "Het stopzetten van de proefperiode zal de toegang tot de premium features onmiddellijk blokkeren. Weet je dat zeker?" -#: templates/account.php87, templates/forms/subscription-cancellation.php101, -#: templates/account/partials/addon.php28, -#: templates/account/partials/site.php:300 +#: templates/account.php98, templates/forms/subscription-cancellation.php101, +#: templates/account/partials/addon.php32, +#: templates/account/partials/site.php:316 msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support." msgstr "Je kunt nog steeds van alle %s-mogelijkheden genieten, maar je zult geen toegang hebben tot %s veiligheids- en uitbreidingsupdates, noch ondersteuning." -#: templates/account.php88, templates/forms/subscription-cancellation.php102, -#: templates/account/partials/addon.php29, -#: templates/account/partials/site.php:301 +#: templates/account.php99, templates/forms/subscription-cancellation.php102, +#: templates/account/partials/addon.php33, +#: templates/account/partials/site.php:317 msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features." msgstr "Als je licentie verloopt kan je nog steeds gebruik maken van de Gratis versie, maar je zal GEEN toegang meer hebben tot de %sfeatures." #. translators: %s: Plan title (e.g. "Professional") -#: templates/account.php90, +#: templates/account.php101, #: templates/account/partials/activate-license-button.php31, -#: templates/account/partials/addon.php:31 +#: templates/account/partials/addon.php:35 msgid "Activate %s Plan" msgstr "Activeer %s Plan" #. translators: %s: Time period (e.g. Auto renews in "2 months") -#: templates/account.php93, templates/account/partials/addon.php34, -#: templates/account/partials/site.php:275 +#: templates/account.php104, templates/account/partials/addon.php38, +#: templates/account/partials/site.php:291 msgid "Auto renews in %s" msgstr "Auto hernieuwd over %s" #. translators: %s: Time period (e.g. Expires in "2 months") -#: templates/account.php95, templates/account/partials/addon.php36, -#: templates/account/partials/site.php:277 +#: templates/account.php106, templates/account/partials/addon.php40, +#: templates/account/partials/site.php:293 msgid "Expires in %s" msgstr "Verloopt over %s" -#: templates/account.php96, templates/account/partials/addon.php:37 +#: templates/account.php:107 msgctxt "as synchronize license" msgid "Sync License" msgstr "Sync Licentie" -#: templates/account.php97, templates/account/partials/addon.php:38 +#: templates/account.php108, templates/account/partials/addon.php:41 msgid "Cancel Trial" msgstr "Proefperiode Opzeggen" -#: templates/account.php98, templates/account/partials/addon.php:39 +#: templates/account.php109, templates/account/partials/addon.php:42 msgid "Change Plan" msgstr "Wijzig Plan" -#: templates/account.php99, templates/account/partials/addon.php:40 +#: templates/account.php110, templates/account/partials/addon.php:43 msgctxt "verb" msgid "Upgrade" msgstr "Upgrade" -#: templates/account.php101, templates/account/partials/addon.php42, -#: templates/account/partials/site.php:302 +#: templates/account.php112, templates/account/partials/addon.php45, +#: templates/account/partials/site.php:318 msgctxt "verb" msgid "Downgrade" msgstr "Downgrade" -#: templates/account.php103, templates/add-ons.php130, +#: templates/account.php114, templates/add-ons.php246, #: templates/plugin-info/features.php72, -#: templates/account/partials/addon.php44, -#: templates/account/partials/site.php:31 +#: templates/account/partials/addon.php47, +#: templates/account/partials/site.php:33 msgid "Free" msgstr "Gratis" -#: templates/account.php104, templates/account/partials/addon.php:45 -msgid "Activate" -msgstr "Activeer" - -#: templates/account.php105, templates/debug.php371, -#: includes/customizer/class-fs-customizer-upsell-control.php106, -#: templates/account/partials/addon.php:46 +#: templates/account.php116, templates/debug.php373, +#: includes/customizer/class-fs-customizer-upsell-control.php110, +#: templates/account/partials/addon.php:49 msgctxt "as product pricing plan" msgid "Plan" msgstr "Plan" -#: templates/account.php:158 +#: templates/account.php:117 +msgid "Bundle Plan" +msgstr "Bundle Plan" + +#: templates/account.php:191 msgid "Free Trial" msgstr "Gratis Proefperiode" -#: templates/account.php:169 +#: templates/account.php:202 msgid "Account Details" msgstr "Accountgegevens" -#: templates/account.php:179 +#: templates/account.php209, templates/forms/data-debug-mode.php:33 +msgid "Start Debug" +msgstr "Start Debug" + +#: templates/account.php:211 +msgid "Stop Debug" +msgstr "Stop Debug" + +#: templates/account.php:218 +msgid "Billing & Invoices" +msgstr "Billing & Invoices" + +#: templates/account.php:229 msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?" msgstr "Verwijdering van het account zal automatisch je %s licentie deactiveren zodat je die op andere sites kan gebruiken. Als je tevens je terugkerende betalingen wilt stopzetten, klik dan op de 'Annuleer' knop en 'Downgrade' je account eerst. Weet je zeker dat je wilt doorgaan met de verwijdering?" -#: templates/account.php:181 +#: templates/account.php:231 msgid "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?" msgstr "Verwijdering is niet tijdelijk. Verwijder alleen als je deze %s niet langer wilt gebruiken. Weet je zeker dat je wilt doorgaan met de verwijdering?" -#: templates/account.php:184 +#: templates/account.php:234 msgid "Delete Account" msgstr "Verwijder Account" -#: templates/account.php196, templates/account/partials/addon.php159, +#: templates/account.php246, templates/account/partials/addon.php231, #: templates/account/partials/deactivate-license-button.php:35 msgid "Deactivate License" msgstr "Deactiveer Licentie" -#: templates/account.php219, templates/forms/subscription-cancellation.php:125 +#: templates/account.php269, templates/forms/subscription-cancellation.php:125 msgid "Are you sure you want to proceed?" msgstr "Weet je zeker dat je wilt doorgaan?" -#: templates/account.php219, templates/account/partials/addon.php:182 +#: templates/account.php269, templates/account/partials/addon.php:255 msgid "Cancel Subscription" msgstr "Abonnement Opzeggen" -#: templates/account.php:247 +#: templates/account.php298, templates/account/partials/addon.php:340 msgctxt "as synchronize" msgid "Sync" msgstr "Sync" -#: templates/account.php261, templates/debug.php:487 +#: templates/account.php313, templates/debug.php:507 msgid "Name" msgstr "Naam" -#: templates/account.php267, templates/debug.php:488 +#: templates/account.php319, templates/debug.php:508 msgid "Email" msgstr "E-mail" -#: templates/account.php274, templates/debug.php370, templates/debug.php:526 +#: templates/account.php326, templates/debug.php371, templates/debug.php:557 msgid "User ID" msgstr "Gebruikers ID" -#: templates/account.php:282 +#: templates/account.php344, templates/account.php637, +#: templates/account.php682, templates/debug.php238, templates/debug.php365, +#: templates/debug.php454, templates/debug.php506, templates/debug.php555, +#: templates/debug.php632, templates/account/payments.php35, +#: templates/debug/logger.php:21 +msgid "ID" +msgstr "ID" + +#: templates/account.php:351 msgid "Site ID" msgstr "Site ID" -#: templates/account.php:285 +#: templates/account.php:354 msgid "No ID" msgstr "Geen ID" -#: templates/account.php290, templates/debug.php243, templates/debug.php372, -#: templates/debug.php453, templates/debug.php490, -#: templates/account/partials/site.php:219 +#: templates/account.php359, templates/debug.php245, templates/debug.php374, +#: templates/debug.php458, templates/debug.php510, +#: templates/account/partials/site.php:227 msgid "Public Key" msgstr "Publieke Sleutel" -#: templates/account.php296, templates/debug.php373, templates/debug.php454, -#: templates/debug.php491, templates/account/partials/site.php:231 +#: templates/account.php365, templates/debug.php375, templates/debug.php459, +#: templates/debug.php511, templates/account/partials/site.php:239 msgid "Secret Key" msgstr "Geheime Sleutel" -#: templates/account.php:299 +#: templates/account.php:368 msgctxt "as secret encryption key missing" msgid "No Secret" msgstr "Geen Geheim" -#: templates/account.php318, templates/account/partials/site.php112, -#: templates/account/partials/site.php:114 +#: templates/account.php395, templates/account/partials/site.php120, +#: templates/account/partials/site.php:122 msgid "Trial" msgstr "Proefperiode" -#: templates/account.php337, templates/debug.php531, -#: templates/account/partials/site.php:248 +#: templates/account.php422, templates/debug.php562, +#: templates/account/partials/site.php:260 msgid "License Key" msgstr "Licentiesleutel" -#: templates/account.php:367 +#: templates/account.php:453 +msgid "Join the Beta program" +msgstr "Join the Beta program" + +#: templates/account.php:459 msgid "not verified" msgstr "niet geverifieerd" -#: templates/account.php376, templates/account/partials/addon.php:120 +#: templates/account.php468, templates/account/partials/addon.php:190 msgid "Expired" msgstr "Verlopen" -#: templates/account.php:428 +#: templates/account.php:528 msgid "Premium version" msgstr "Premium versie" -#: templates/account.php:430 +#: templates/account.php:530 msgid "Free version" msgstr "Gratis versie" -#: templates/account.php:442 +#: templates/account.php:542 msgid "Verify Email" msgstr "Verifieer E-mail" -#: templates/account.php:453 +#: templates/account.php:553 msgid "Download %s Version" msgstr "Download %s Versie" -#: templates/account.php467, templates/account.php649, -#: templates/account/partials/site.php237, -#: templates/account/partials/site.php:255 +#: templates/account.php568, templates/account.php820, +#: templates/account/partials/site.php248, +#: templates/account/partials/site.php:270 msgctxt "verb" msgid "Show" msgstr "Toon" -#: templates/account.php:481 +#: templates/account.php:583 msgid "What is your %s?" msgstr "Wat is je %s?" -#: templates/account.php489, templates/account/billing.php:27 +#: templates/account.php591, templates/account/billing.php:21 msgctxt "verb" msgid "Edit" msgstr "Bewerk" -#: templates/account.php:502 +#: templates/account.php:616 msgid "Sites" msgstr "Sites" -#: templates/account.php:513 +#: templates/account.php:629 msgid "Search by address" msgstr "Zoek op adres" -#: templates/account.php522, templates/account.php570, templates/debug.php236, -#: templates/debug.php364, templates/debug.php449, templates/debug.php486, -#: templates/debug.php524, templates/debug.php597, -#: templates/account/payments.php35, templates/debug/logger.php:21 -msgid "ID" -msgstr "ID" - -#: templates/account.php523, templates/debug.php:367 +#: templates/account.php638, templates/debug.php:368 msgid "Address" msgstr "Adres" -#: templates/account.php:524 +#: templates/account.php:639 msgid "License" msgstr "Licentie" -#: templates/account.php:525 +#: templates/account.php:640 msgid "Plan" msgstr "Plan" -#: templates/account.php:573 +#: templates/account.php:685 msgctxt "as software license" msgid "License" msgstr "Licentie" -#: templates/account.php:643 +#: templates/account.php:814 msgctxt "verb" msgid "Hide" msgstr "Verberg" -#: templates/account.php:686 +#: templates/account.php836, templates/forms/data-debug-mode.php:31 +msgid "Processing" +msgstr "Processing" + +#: templates/account.php:839 +msgid "Get updates for bleeding edge Beta versions of %s." +msgstr "Get updates for bleeding edge Beta versions of %s." + +#: templates/account.php:897 msgid "Cancelling %s" msgstr "Annuleren %s" -#: templates/account.php686, templates/account.php703, +#: templates/account.php897, templates/account.php914, #: templates/forms/subscription-cancellation.php27, -#: templates/forms/deactivation/form.php:117 +#: templates/forms/deactivation/form.php:133 msgid "trial" msgstr "proefperiode" -#: templates/account.php701, templates/forms/deactivation/form.php:134 +#: templates/account.php912, templates/forms/deactivation/form.php:150 msgid "Cancelling %s..." msgstr "%s wordt geannuleerd..." -#: templates/account.php704, templates/forms/subscription-cancellation.php28, -#: templates/forms/deactivation/form.php:118 +#: templates/account.php915, templates/forms/subscription-cancellation.php28, +#: templates/forms/deactivation/form.php:134 msgid "subscription" msgstr "abonnement" -#: templates/account.php:718 +#: templates/account.php:929 msgid "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?" msgstr "Deactiveren van je licentie zal alle premium features blokkeren, maar geeft je de mogelijkheid de licentie op een andere site te activeren. Weet je zeker dat je wilt doorgaan?" -#: templates/add-ons.php:36 +#: templates/add-ons.php:38 +msgid "View details" +msgstr "Bekijk details" + +#: templates/add-ons.php:48 msgid "Add Ons for %s" msgstr "Add-ons voor %s" -#: templates/add-ons.php:44 -msgid "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." -msgstr "We konden de add-ons lijst niet laden. Dat is waarschijnlijk een probleem aan onze kant, kom alsjeblieft over enkele minuten terug." +#: templates/add-ons.php:58 +msgid "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." +msgstr "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." -#: templates/add-ons.php:139 -msgid "View details" -msgstr "Bekijk details" +#: templates/add-ons.php:229 +msgctxt "active add-on" +msgid "Active" +msgstr "Activeer" + +#: templates/add-ons.php:230 +msgctxt "installed add-on" +msgid "Installed" +msgstr "Installed" -#: templates/admin-notice.php13, templates/forms/license-activation.php208, +#: templates/admin-notice.php13, templates/forms/license-activation.php207, #: templates/forms/resend-key.php:77 msgctxt "as close a window" msgid "Dismiss" @@ -1448,11 +1539,11 @@ msgstr "Het installatieproces is gestart en kan enkele minuten duren om te volto msgid "Cancel Installation" msgstr "Annuleer Installatie" -#: templates/checkout.php:172 +#: templates/checkout.php:180 msgid "Checkout" msgstr "Afrekenen" -#: templates/checkout.php:172 +#: templates/checkout.php:180 msgid "PCI compliant" msgstr "PCI-comform" @@ -1474,7 +1565,7 @@ msgstr "Activatiemail opnieuw versturen" msgid "Thanks %s!" msgstr "Bedankt %s!" -#: templates/connect.php172, templates/forms/license-activation.php:43 +#: templates/connect.php172, templates/forms/license-activation.php:46 msgid "Agree & Activate License" msgstr "Akkoord & Activeer Licentie" @@ -1522,15 +1613,16 @@ msgstr "Je kunt dat eventueel ook nu overslaan en de licentie later in je %s net msgid "During the update process we detected %s site(s) in the network that are still pending your attention." msgstr "Tijdens het update proces detecteerden we %dsite(s) in het netwerk die jouw aandacht vereisen." -#: templates/connect.php253, templates/forms/license-activation.php:46 +#: templates/connect.php253, templates/forms/data-debug-mode.php35, +#: templates/forms/license-activation.php:49 msgid "License key" msgstr "Licentiesleutel" -#: templates/connect.php256, templates/forms/license-activation.php:19 +#: templates/connect.php256, templates/forms/license-activation.php:22 msgid "Can't find your license key?" msgstr "Kan je je licentiesleutel niet vinden?" -#: templates/connect.php315, templates/connect.php630, +#: templates/connect.php315, templates/connect.php652, #: templates/forms/deactivation/retry-skip.php:20 msgctxt "verb" msgid "Skip" @@ -1580,7 +1672,7 @@ msgstr "Activatie, deactivatie en deïnstallatie" msgid "Newsletter" msgstr "Nieuwsbrief" -#: templates/connect.php391, templates/forms/license-activation.php:38 +#: templates/connect.php391, templates/forms/license-activation.php:41 msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license." msgstr "De %1$s zal periodiek data verzenden naar %2$s om te controleren op beveiliging en feature updates en om te verifiëren of je licentie geldig is." @@ -1592,10 +1684,6 @@ msgstr "Welke toestemmingen worden er verleend?" msgid "Don't have a license key?" msgstr "Heb je geen licentiesleutel?" -#: templates/connect.php:418 -msgid "Activate Free Version" -msgstr "Activeer Gratis Versie" - #: templates/connect.php:420 msgid "Have a license key?" msgstr "Heb je een licentiesleutel?" @@ -1612,12 +1700,12 @@ msgstr "Licentieovereenkomst" msgid "Terms of Service" msgstr "Servicevoorwaarden" -#: templates/connect.php:766 +#: templates/connect.php:805 msgctxt "as in the process of sending an email" msgid "Sending email" msgstr "E-mail versturen" -#: templates/connect.php:767 +#: templates/connect.php:806 msgctxt "as activating plugin" msgid "Activating" msgstr "Activeren" @@ -1645,8 +1733,8 @@ msgctxt "as code debugging" msgid "Debugging" msgstr "Debugging" -#: templates/debug.php54, templates/debug.php248, templates/debug.php374, -#: templates/debug.php:492 +#: templates/debug.php54, templates/debug.php250, templates/debug.php376, +#: templates/debug.php:512 msgid "Actions" msgstr "Acties" @@ -1682,191 +1770,195 @@ msgstr "Laad DB-optie" msgid "Set DB Option" msgstr "Activeer DB-Optie" -#: templates/debug.php:180 +#: templates/debug.php:182 msgid "Key" msgstr "Sleutel" -#: templates/debug.php:181 +#: templates/debug.php:183 msgid "Value" msgstr "Waarde" -#: templates/debug.php:197 +#: templates/debug.php:199 msgctxt "as software development kit versions" msgid "SDK Versions" msgstr "SDK Versies" -#: templates/debug.php:202 +#: templates/debug.php:204 msgid "SDK Path" msgstr "SDK Pad" -#: templates/debug.php203, templates/debug.php:242 +#: templates/debug.php205, templates/debug.php:244 msgid "Module Path" msgstr "Module Pad" -#: templates/debug.php:204 +#: templates/debug.php:206 msgid "Is Active" msgstr "Is Actief" -#: templates/debug.php232, templates/debug/plugins-themes-sync.php:35 +#: templates/debug.php234, templates/debug/plugins-themes-sync.php:35 msgid "Plugins" msgstr "Plug-ins" -#: templates/debug.php232, templates/debug/plugins-themes-sync.php:56 +#: templates/debug.php234, templates/debug/plugins-themes-sync.php:56 msgid "Themes" msgstr "Thema's" -#: templates/debug.php237, templates/debug.php369, templates/debug.php451, +#: templates/debug.php239, templates/debug.php370, templates/debug.php456, #: templates/debug/scheduled-crons.php:80 msgid "Slug" msgstr "Slug" -#: templates/debug.php239, templates/debug.php:450 +#: templates/debug.php241, templates/debug.php:455 msgid "Title" msgstr "Titel" -#: templates/debug.php:240 +#: templates/debug.php:242 msgctxt "as application program interface" msgid "API" msgstr "API" -#: templates/debug.php:241 +#: templates/debug.php:243 msgid "Freemius State" msgstr "Freemius Status" -#: templates/debug.php:245 +#: templates/debug.php:247 msgid "Network Blog" msgstr "Netwerk Blog" -#: templates/debug.php:246 +#: templates/debug.php:248 msgid "Network User" msgstr "Netwerk Gebruiker" -#: templates/debug.php:283 +#: templates/debug.php:285 msgctxt "as connection was successful" msgid "Connected" msgstr "Verbonden" -#: templates/debug.php:284 +#: templates/debug.php:286 msgctxt "as connection blocked" msgid "Blocked" msgstr "Geblokkeerd" -#: templates/debug.php:320 +#: templates/debug.php:322 msgid "Simulate Trial Promotion" msgstr "Simuleer Trial Actie" -#: templates/debug.php:332 +#: templates/debug.php:334 msgid "Simulate Network Upgrade" msgstr "Simuleer Netwerk Upgrade" -#: templates/debug.php:358 +#: templates/debug.php:359 msgid "%s Installs" msgstr "%s Installaties" -#: templates/debug.php:360 +#: templates/debug.php:361 msgctxt "like websites" msgid "Sites" msgstr "Sites" -#: templates/debug.php366, templates/account/partials/site.php:148 +#: templates/debug.php367, templates/account/partials/site.php:156 msgid "Blog ID" msgstr "Blog ID" -#: templates/debug.php431, templates/debug.php509, -#: templates/account/partials/addon.php:339 +#: templates/debug.php:372 +msgid "License ID" +msgstr "License ID" + +#: templates/debug.php436, templates/debug.php535, +#: templates/account/partials/addon.php:435 msgctxt "verb" msgid "Delete" msgstr "Verwijder" -#: templates/debug.php:445 +#: templates/debug.php:450 msgid "Add Ons of module %s" msgstr "Uitbreidingen van module %s" -#: templates/debug.php:482 +#: templates/debug.php:502 msgid "Users" msgstr "Gebruikers" -#: templates/debug.php:489 +#: templates/debug.php:509 msgid "Verified" msgstr "Geverifieerd" -#: templates/debug.php:520 +#: templates/debug.php:551 msgid "%s Licenses" msgstr "%s Licenties" -#: templates/debug.php:525 +#: templates/debug.php:556 msgid "Plugin ID" msgstr "Plug-in ID" -#: templates/debug.php:527 +#: templates/debug.php:558 msgid "Plan ID" msgstr "Plan ID" -#: templates/debug.php:528 +#: templates/debug.php:559 msgid "Quota" msgstr "Quota" -#: templates/debug.php:529 +#: templates/debug.php:560 msgid "Activated" msgstr "Geactiveerd" -#: templates/debug.php:530 +#: templates/debug.php:561 msgid "Blocking" msgstr "Geblokkeerd" -#: templates/debug.php:532 +#: templates/debug.php:563 msgctxt "as expiration date" msgid "Expiration" msgstr "Verloopdatum" -#: templates/debug.php:555 +#: templates/debug.php:590 msgid "Debug Log" msgstr "Debug Log" -#: templates/debug.php:559 +#: templates/debug.php:594 msgid "All Types" msgstr "Alle Types" -#: templates/debug.php:566 +#: templates/debug.php:601 msgid "All Requests" msgstr "Alle Requests" -#: templates/debug.php571, templates/debug.php600, +#: templates/debug.php606, templates/debug.php635, #: templates/debug/logger.php:25 msgid "File" msgstr "Bestand" -#: templates/debug.php572, templates/debug.php598, +#: templates/debug.php607, templates/debug.php633, #: templates/debug/logger.php:23 msgid "Function" msgstr "Functie" -#: templates/debug.php:573 +#: templates/debug.php:608 msgid "Process ID" msgstr "Proces-ID" -#: templates/debug.php:574 +#: templates/debug.php:609 msgid "Logger" msgstr "Logger" -#: templates/debug.php575, templates/debug.php599, +#: templates/debug.php610, templates/debug.php634, #: templates/debug/logger.php:24 msgid "Message" msgstr "Bericht" -#: templates/debug.php:577 +#: templates/debug.php:612 msgid "Filter" msgstr "Filter" -#: templates/debug.php:585 +#: templates/debug.php:620 msgid "Download" msgstr "Download" -#: templates/debug.php596, templates/debug/logger.php:22 +#: templates/debug.php631, templates/debug/logger.php:22 msgid "Type" msgstr "Type" -#: templates/debug.php601, templates/debug/logger.php:26 +#: templates/debug.php636, templates/debug/logger.php:26 msgid "Timestamp" msgstr "Tijdstempel" @@ -1893,53 +1985,53 @@ msgstr "Freemius API" msgid "Requests" msgstr "Aanvragen" -#: templates/account/billing.php:28 +#: templates/account/billing.php:22 msgctxt "verb" msgid "Update" msgstr "Bijwerken" -#: templates/account/billing.php:39 +#: templates/account/billing.php:33 msgid "Billing" msgstr "Facturering" -#: templates/account/billing.php44, templates/account/billing.php:44 +#: templates/account/billing.php38, templates/account/billing.php:38 msgid "Business name" msgstr "Bedrijfsnaam" -#: templates/account/billing.php45, templates/account/billing.php:45 +#: templates/account/billing.php39, templates/account/billing.php:39 msgid "Tax / VAT ID" msgstr "Btw-nummer" -#: templates/account/billing.php48, templates/account/billing.php48, -#: templates/account/billing.php49, templates/account/billing.php:49 +#: templates/account/billing.php42, templates/account/billing.php42, +#: templates/account/billing.php43, templates/account/billing.php:43 msgid "Address Line %d" msgstr "Adresregel %d" -#: templates/account/billing.php52, templates/account/billing.php:52 +#: templates/account/billing.php46, templates/account/billing.php:46 msgid "City" msgstr "Stad" -#: templates/account/billing.php52, templates/account/billing.php:52 +#: templates/account/billing.php46, templates/account/billing.php:46 msgid "Town" msgstr "Plaats" -#: templates/account/billing.php53, templates/account/billing.php:53 +#: templates/account/billing.php47, templates/account/billing.php:47 msgid "ZIP / Postal Code" msgstr "Postcode" -#: templates/account/billing.php:308 +#: templates/account/billing.php:302 msgid "Country" msgstr "Land" -#: templates/account/billing.php:310 +#: templates/account/billing.php:304 msgid "Select Country" msgstr "Selecteer Land" -#: templates/account/billing.php317, templates/account/billing.php:318 +#: templates/account/billing.php311, templates/account/billing.php:312 msgid "State" msgstr "Staat" -#: templates/account/billing.php317, templates/account/billing.php:318 +#: templates/account/billing.php311, templates/account/billing.php:312 msgid "Province" msgstr "Provincie" @@ -2191,11 +2283,27 @@ msgstr "Annuleer" msgid "Become an affiliate" msgstr "Wordt een affiliate" -#: templates/forms/license-activation.php:20 +#: templates/forms/data-debug-mode.php:25 +msgid "Please enter the license key to enable the debug mode:" +msgstr "Please enter the license key to enable the debug mode:" + +#: templates/forms/data-debug-mode.php:27 +msgid "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:" +msgstr "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:" + +#: templates/forms/data-debug-mode.php:32 +msgid "Submit" +msgstr "Submit" + +#: templates/forms/data-debug-mode.php:36 +msgid "User key" +msgstr "User key" + +#: templates/forms/license-activation.php:23 msgid "Please enter the license key that you received in the email right after the purchase:" msgstr "Voer aalsjeblieft de licentiesleutel in die je ontving in de e-mail direct na de aankoop:" -#: templates/forms/license-activation.php:25 +#: templates/forms/license-activation.php:28 msgid "Update License" msgstr "Update Licentie" @@ -2275,7 +2383,7 @@ msgid "Proceed" msgstr "Doorgaan" #: templates/forms/subscription-cancellation.php191, -#: templates/forms/deactivation/form.php:150 +#: templates/forms/deactivation/form.php:171 msgid "Cancel %s & Proceed" msgstr "Annuleer %s & Ga Door" @@ -2287,38 +2395,42 @@ msgstr "U bent 1-klik verwijderd van het starten van uw %1$s-daagse gratis proef msgid "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial." msgstr "Voordat we de proefperiode kunnen starten, vragen we je, in overeenstemming met de Wordpress.org-richtlijnen, in te stemmen je gebruikers- en niet-sensitieve site informatie door de %s periodiek te laten verzenden naar %s om te controleren op nieuwe versies en je proefversie te valideren." -#: templates/js/style-premium-theme.php:37 +#: templates/js/style-premium-theme.php:39 msgid "Premium" msgstr "Premium" -#: templates/partials/network-activation.php:23 +#: templates/js/style-premium-theme.php:42 +msgid "Beta" +msgstr "Beta" + +#: templates/partials/network-activation.php:27 msgid "Activate license on all sites in the network." msgstr "Activeer licentie op alle sites in het netwerk." -#: templates/partials/network-activation.php:24 +#: templates/partials/network-activation.php:28 msgid "Apply on all sites in the network." msgstr "Pas toe op alle sites in het netwerk." -#: templates/partials/network-activation.php:27 +#: templates/partials/network-activation.php:31 msgid "Activate license on all pending sites." msgstr "Activeer licentie op alle in behandeling zijnde sites." -#: templates/partials/network-activation.php:28 +#: templates/partials/network-activation.php:32 msgid "Apply on all pending sites." msgstr "Pas toe op alle in behandeling zijnde sites." -#: templates/partials/network-activation.php36, -#: templates/partials/network-activation.php:68 +#: templates/partials/network-activation.php40, +#: templates/partials/network-activation.php:74 msgid "allow" msgstr "toestaan" -#: templates/partials/network-activation.php38, -#: templates/partials/network-activation.php:70 +#: templates/partials/network-activation.php43, +#: templates/partials/network-activation.php:77 msgid "delegate" msgstr "deligeren" -#: templates/partials/network-activation.php41, -#: templates/partials/network-activation.php:73 +#: templates/partials/network-activation.php47, +#: templates/partials/network-activation.php:81 msgid "skip" msgstr "overslaan" @@ -2344,32 +2456,33 @@ msgstr "%s beschikbaar" msgid "Last license" msgstr "Laatste licentie" -#: templates/account/partials/addon.php:115 +#. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the +#. subscription' +#: templates/account/partials/addon.php:29 +msgid "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s." +msgstr "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s." + +#: templates/account/partials/addon.php:185 msgid "Cancelled" msgstr "Geannuleerd" -#: templates/account/partials/addon.php:125 +#: templates/account/partials/addon.php:195 msgid "No expiration" msgstr "Geen verloopdatum" -#: templates/account/partials/addon.php264, -#: templates/account/partials/addon.php:317 -msgid "Activate this add-on" -msgstr "Activeer deze add-on" - -#: templates/account/partials/site.php:181 +#: templates/account/partials/site.php:189 msgid "Owner Name" msgstr "Naam Eigenaar" -#: templates/account/partials/site.php:193 +#: templates/account/partials/site.php:201 msgid "Owner Email" msgstr "E-mail Eigenaar" -#: templates/account/partials/site.php:205 +#: templates/account/partials/site.php:213 msgid "Owner ID" msgstr "ID Eigenaar" -#: templates/account/partials/site.php:270 +#: templates/account/partials/site.php:286 msgid "Subscription" msgstr "Abonnement" @@ -2381,47 +2494,47 @@ msgstr "Sorry voor het ongemak en we zijn er om je te helpen als je daartoe de k msgid "Contact Support" msgstr "Contacteer Support" -#: templates/forms/deactivation/form.php:59 +#: templates/forms/deactivation/form.php:64 msgid "Anonymous feedback" msgstr "Anonieme terugkoppeling" -#: templates/forms/deactivation/form.php:66 +#: templates/forms/deactivation/form.php:70 msgid "Deactivate" msgstr "Deactiveer" -#: templates/forms/deactivation/form.php:68 +#: templates/forms/deactivation/form.php:72 msgid "Activate %s" msgstr "Activeer %s" -#: templates/forms/deactivation/form.php:80 +#: templates/forms/deactivation/form.php:87 msgid "Quick Feedback" msgstr "Snelle terugkoppeling" -#: templates/forms/deactivation/form.php:84 +#: templates/forms/deactivation/form.php:91 msgid "If you have a moment, please let us know why you are %s" msgstr "We zouden het zeer op prijs stellen, als je even hebt, om ons alsjeblieft te laten weten waarom je gaat %s" -#: templates/forms/deactivation/form.php:84 +#: templates/forms/deactivation/form.php:91 msgid "deactivating" msgstr "deactiveren" -#: templates/forms/deactivation/form.php:84 +#: templates/forms/deactivation/form.php:91 msgid "switching" msgstr "overschakelen" -#: templates/forms/deactivation/form.php:332 +#: templates/forms/deactivation/form.php:365 msgid "Submit & %s" msgstr "Verstuur & %s" -#: templates/forms/deactivation/form.php:353 +#: templates/forms/deactivation/form.php:386 msgid "Kindly tell us the reason so we can improve." msgstr "Wilt je alsjeblieft zo vriendelijk zijn om de reden te vermelden, zodat wij verbeteringen kunnen doorvoeren." -#: templates/forms/deactivation/form.php:478 +#: templates/forms/deactivation/form.php:511 msgid "Yes - %s" msgstr "Ja - %s" -#: templates/forms/deactivation/form.php:485 +#: templates/forms/deactivation/form.php:518 msgid "Skip & %s" msgstr "Sla over & %s" diff --git a/external/Freemius/languages/freemius-ru_RU.mo b/external/Freemius/languages/freemius-ru_RU.mo index aff346ce..8ba4c654 100755 Binary files a/external/Freemius/languages/freemius-ru_RU.mo and b/external/Freemius/languages/freemius-ru_RU.mo differ diff --git a/external/Freemius/languages/freemius-ru_RU.po b/external/Freemius/languages/freemius-ru_RU.po index cc34dec0..b1caa2d0 100755 --- a/external/Freemius/languages/freemius-ru_RU.po +++ b/external/Freemius/languages/freemius-ru_RU.po @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: WordPress SDK\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2018-11-25 07:22+0000\n" +"PO-Revision-Date: 2019-10-07 15:33+0000\n" "Last-Translator: Vova Feldman \n" "Language: ru_RU\n" "Language-Team: Russian (Russia) (http://www.transifex.com/freemius/wordpress-sdk/language/ru_RU/)\n" @@ -21,1407 +21,1498 @@ msgstr "" "X-Poedit-SearchPathExcluded-0: *.js\n" "X-Poedit-SourceCharset: UTF-8\n" -#: includes/class-freemius.php:1688 +#: includes/class-freemius.php1880, templates/account.php:840 +msgid "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned." +msgstr "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned." + +#: includes/class-freemius.php:1887 +msgid "Would you like to proceed with the update?" +msgstr "Would you like to proceed with the update?" + +#: includes/class-freemius.php:2095 msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error." msgstr "Freemius SDK не удалось найти основной файл плагина. Пожалуйста, свяжитесь с sdk@freemius.com с текущей ошибкой." -#: includes/class-freemius.php:1690 +#: includes/class-freemius.php:2097 msgid "Error" msgstr "Ошибка" -#: includes/class-freemius.php:2011 +#: includes/class-freemius.php:2491 msgid "I found a better %s" msgstr "Я нашел лучший %s" -#: includes/class-freemius.php:2013 +#: includes/class-freemius.php:2493 msgid "What's the %s's name?" msgstr "Какое название %s?" -#: includes/class-freemius.php:2019 +#: includes/class-freemius.php:2499 msgid "It's a temporary %s. I'm just debugging an issue." msgstr "Это временная %s. Сейчас проходит проверка на наличие ошибок. " -#: includes/class-freemius.php:2021 +#: includes/class-freemius.php:2501 msgid "Deactivation" msgstr "Деактивация" -#: includes/class-freemius.php:2022 +#: includes/class-freemius.php:2502 msgid "Theme Switch" msgstr "Переключатель шаблона " -#: includes/class-freemius.php2031, templates/forms/resend-key.php:24 +#: includes/class-freemius.php2511, templates/forms/resend-key.php:24 msgid "Other" msgstr "Другие" -#: includes/class-freemius.php:2039 +#: includes/class-freemius.php:2519 msgid "I no longer need the %s" msgstr "%s больше не понадобится." -#: includes/class-freemius.php:2046 +#: includes/class-freemius.php:2526 msgid "I only needed the %s for a short period" msgstr "%s требовалась на короткое время" -#: includes/class-freemius.php:2052 +#: includes/class-freemius.php:2532 msgid "The %s broke my site" msgstr "%s повредила мой сайт" -#: includes/class-freemius.php:2059 +#: includes/class-freemius.php:2539 msgid "The %s suddenly stopped working" msgstr "%s внезапно перестала работать " -#: includes/class-freemius.php:2069 +#: includes/class-freemius.php:2549 msgid "I can't pay for it anymore" msgstr "Я больше не могу оплачивать это. " -#: includes/class-freemius.php:2071 +#: includes/class-freemius.php:2551 msgid "What price would you feel comfortable paying?" msgstr "Какая стоимость была бы для Вас приемлемой? " -#: includes/class-freemius.php:2077 +#: includes/class-freemius.php:2557 msgid "I don't like to share my information with you" msgstr "Я не хочу делиться личной информацией с Вами" -#: includes/class-freemius.php:2098 +#: includes/class-freemius.php:2578 msgid "The %s didn't work" msgstr "%s не сработала" -#: includes/class-freemius.php:2108 +#: includes/class-freemius.php:2588 msgid "I couldn't understand how to make it work" msgstr "Я не могу понять как сделать так, чтобы оно работало" -#: includes/class-freemius.php:2116 +#: includes/class-freemius.php:2596 msgid "The %s is great, but I need specific feature that you don't support" msgstr "%s отличная возможность, но мне нужен определенный функционал, который вы не поддерживаете. " -#: includes/class-freemius.php:2118 +#: includes/class-freemius.php:2598 msgid "What feature?" msgstr "Какой функционал?" -#: includes/class-freemius.php:2122 +#: includes/class-freemius.php:2602 msgid "The %s is not working" msgstr "%s не работает" -#: includes/class-freemius.php:2124 +#: includes/class-freemius.php:2604 msgid "Kindly share what didn't work so we can fix it for future users..." msgstr "Пожалуйста, сообщите о функционале, который не работает, чтобы мы смогли исправить его для дальнейшего использования. " -#: includes/class-freemius.php:2128 +#: includes/class-freemius.php:2608 msgid "It's not what I was looking for" msgstr "Это не то, что я искал. " -#: includes/class-freemius.php:2130 +#: includes/class-freemius.php:2610 msgid "What you've been looking for?" msgstr "Что именно Вы ищите? " -#: includes/class-freemius.php:2134 +#: includes/class-freemius.php:2614 msgid "The %s didn't work as expected" msgstr "%s не сработала как ожидалось" -#: includes/class-freemius.php:2136 +#: includes/class-freemius.php:2616 msgid "What did you expect?" msgstr "Каковы были Ваши ожидания? " -#: includes/class-freemius.php2942, templates/debug.php:20 +#: includes/class-freemius.php3471, templates/debug.php:20 msgid "Freemius Debug" msgstr "Исправление ошибок Freemius" -#: includes/class-freemius.php:3670 +#: includes/class-freemius.php:4223 msgid "I don't know what is cURL or how to install it, help me!" msgstr "Я не знаю, что такое сURL и как его установить. Пожалуйста, помогите мне." -#: includes/class-freemius.php:3672 +#: includes/class-freemius.php:4225 msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update." msgstr "Мы обязательно свяжемся с Вашим хостинг провайдером и найдем решение. Как только у нас появится информация, Вам будет отправлено письмо на почту. " -#: includes/class-freemius.php:3679 +#: includes/class-freemius.php:4232 msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again." msgstr "Отлично! Пожалуйста, установите сURL и активируйте его в Вашем файле php.ini .Также, найдите директиву 'disable_functions' в файле php.ini и удалите все неактивные методы которые начинаются на 'curl_'. Чтобы убедится, что активация прошла успешно, используйте 'phpinfo()'. После активации, деактивируйте %s и снова активируйте ее. " -#: includes/class-freemius.php:3784 +#: includes/class-freemius.php:4337 msgid "Yes - do your thing" msgstr "Да, делайте то, что Вам нужно. " -#: includes/class-freemius.php:3789 +#: includes/class-freemius.php:4342 msgid "No - just deactivate" msgstr "Нет. Нужно деактивировать. " -#: includes/class-freemius.php3834, includes/class-freemius.php4343, -#: includes/class-freemius.php5442, includes/class-freemius.php11545, -#: includes/class-freemius.php14916, includes/class-freemius.php14968, -#: includes/class-freemius.php15030, includes/class-freemius.php17263, -#: includes/class-freemius.php17273, includes/class-freemius.php17882, -#: includes/class-freemius.php18742, includes/class-freemius.php18857, -#: includes/class-freemius.php19001, templates/add-ons.php:43 +#: includes/class-freemius.php4387, includes/class-freemius.php4881, +#: includes/class-freemius.php6032, includes/class-freemius.php13153, +#: includes/class-freemius.php16558, includes/class-freemius.php16646, +#: includes/class-freemius.php16812, includes/class-freemius.php19040, +#: includes/class-freemius.php19381, includes/class-freemius.php19391, +#: includes/class-freemius.php20051, includes/class-freemius.php20924, +#: includes/class-freemius.php21039, includes/class-freemius.php21183, +#: templates/add-ons.php:57 msgctxt "exclamation" msgid "Oops" msgstr "Упс!" -#: includes/class-freemius.php:3903 +#: includes/class-freemius.php:4456 msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience." msgstr "Спасибо, что предоставили нам возможность исправить ошибку. Сообщение уже отправлено нашим техническим специалистам. Мы с Вами свяжемся, как только будет новая информация о %s. Благодарны за понимание. " -#: includes/class-freemius.php:4340 +#: includes/class-freemius.php:4878 msgctxt "addonX cannot run without pluginY" msgid "%s cannot run without %s." msgstr "%s не работает без %s." -#: includes/class-freemius.php:4341 +#: includes/class-freemius.php:4879 msgctxt "addonX cannot run..." msgid "%s cannot run without the plugin." msgstr "%s не может работать без плагина. " -#: includes/class-freemius.php4487, includes/class-freemius.php4512, -#: includes/class-freemius.php:17953 +#: includes/class-freemius.php5052, includes/class-freemius.php5077, +#: includes/class-freemius.php:20122 msgid "Unexpected API error. Please contact the %s's author with the following error." msgstr "Неожиданная ошибка API. Пожалуйста, свяжитесь с автором %s в котором была обнаружена ошибка. " -#: includes/class-freemius.php:5130 +#: includes/class-freemius.php:5720 msgid "Premium %s version was successfully activated." msgstr "Премиум версия %s была успешно активирована. " -#: includes/class-freemius.php5142, includes/class-freemius.php:7004 +#: includes/class-freemius.php5732, includes/class-freemius.php:7599 msgctxt "" msgid "W00t" msgstr "Вау!" -#: includes/class-freemius.php:5157 +#: includes/class-freemius.php:5747 msgid "You have a %s license." msgstr "У Вас есть лицензия %s." -#: includes/class-freemius.php5161, includes/class-freemius.php14337, -#: includes/class-freemius.php14348, includes/class-freemius.php17177, -#: includes/class-freemius.php17491, includes/class-freemius.php17557, -#: includes/class-freemius.php:17707 +#: includes/class-freemius.php5751, includes/class-freemius.php15975, +#: includes/class-freemius.php15986, includes/class-freemius.php19292, +#: includes/class-freemius.php19642, includes/class-freemius.php19711, +#: includes/class-freemius.php:19876 msgctxt "interjection expressing joy or exuberance" msgid "Yee-haw" msgstr "Ура!" -#: includes/class-freemius.php:5425 +#: includes/class-freemius.php:6015 msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license." msgstr "Бесплатный период пользования %s закончился. Этот плагин является премиум продуктом и он был деактивирован автоматически. Если Вы планируете дальнейшее его использование, пожалуйста купите лицензию. " -#: includes/class-freemius.php:5429 +#: includes/class-freemius.php:6019 msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin." msgstr "%s является премиум продуктом. Необходимо купить лицензию перед активацией плагина. " -#: includes/class-freemius.php5438, templates/add-ons.php103, -#: templates/account/partials/addon.php:288 +#: includes/class-freemius.php6028, templates/add-ons.php186, +#: templates/account/partials/addon.php:381 msgid "More information about %s" msgstr "Больше информации о %s" -#: includes/class-freemius.php:5439 +#: includes/class-freemius.php:6029 msgid "Purchase License" msgstr "Купите лицензию " -#: includes/class-freemius.php6372, templates/connect.php:163 +#: includes/class-freemius.php6964, templates/connect.php:163 msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s." msgstr "Мы отправили Вам письмо для активации %s на Ваш электронный адрес %s. Пожалуйста, нажмите на кнопку активации в этом письме %s. " -#: includes/class-freemius.php:6376 +#: includes/class-freemius.php:6968 msgid "start the trial" msgstr "Начать тестовый период" -#: includes/class-freemius.php6377, templates/connect.php:167 +#: includes/class-freemius.php6969, templates/connect.php:167 msgid "complete the install" msgstr "Закончить установку" -#: includes/class-freemius.php:6490 +#: includes/class-freemius.php:7081 msgid "You are just one step away - %s" msgstr "Вам осталось совсем немножко %s" -#: includes/class-freemius.php:6493 +#: includes/class-freemius.php:7084 msgctxt "%s - plugin name. As complete \"PluginX\" activation now" msgid "Complete \"%s\" Activation Now" msgstr "Закончить активацию %s сейчас " -#: includes/class-freemius.php:6571 +#: includes/class-freemius.php:7162 msgid "We made a few tweaks to the %s, %s" msgstr "Мы усовершенствовали в %s, %s для лучшей работы " -#: includes/class-freemius.php:6575 +#: includes/class-freemius.php:7166 msgid "Opt in to make \"%s\" better!" msgstr "Opt in to make \"%s\" better!" -#: includes/class-freemius.php:7003 +#: includes/class-freemius.php:7598 msgid "The upgrade of %s was successfully completed." msgstr "Обновление %s было успешно завершено" -#: includes/class-freemius.php8925, includes/class-fs-plugin-updater.php886, -#: includes/class-fs-plugin-updater.php1081, -#: includes/class-fs-plugin-updater.php1088, +#: includes/class-freemius.php9802, includes/class-fs-plugin-updater.php1038, +#: includes/class-fs-plugin-updater.php1233, +#: includes/class-fs-plugin-updater.php1240, #: templates/auto-installation.php:32 msgid "Add-On" msgstr "Функционал плагина " -#: includes/class-freemius.php8927, templates/debug.php359, -#: templates/debug.php:520 +#: includes/class-freemius.php9804, templates/account.php335, +#: templates/account.php343, templates/debug.php360, templates/debug.php:551 msgid "Plugin" msgstr "Плагин " -#: includes/class-freemius.php8928, templates/debug.php359, -#: templates/debug.php520, templates/forms/deactivation/form.php:67 +#: includes/class-freemius.php9805, templates/account.php336, +#: templates/account.php344, templates/debug.php360, templates/debug.php551, +#: templates/forms/deactivation/form.php:71 msgid "Theme" msgstr "Шаблон " -#: includes/class-freemius.php:11412 +#: includes/class-freemius.php:12596 +msgid "An unknown error has occurred while trying to set the user's beta mode." +msgstr "An unknown error has occurred while trying to set the user's beta mode." + +#: includes/class-freemius.php:13020 msgid "Invalid site details collection." msgstr "Invalid site details collection." -#: includes/class-freemius.php:11532 +#: includes/class-freemius.php:13140 msgid "We couldn't find your email address in the system, are you sure it's the right address?" msgstr "К сожалению, Ваш почтовый адрес не найден в системе. Вы уверены, что предоставили правильный адрес? " -#: includes/class-freemius.php:11534 +#: includes/class-freemius.php:13142 msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?" msgstr "Активная лицензия выданная на этот электронный адрес не была найдена. Вы уверены, что предоставили правильный электронный адрес?" -#: includes/class-freemius.php:11808 +#: includes/class-freemius.php:13416 msgid "Account is pending activation." msgstr "Учетная запись в процессе активации" -#: includes/class-freemius.php11920, +#: includes/class-freemius.php13528, #: templates/forms/premium-versions-upgrade-handler.php:47 msgid "Buy a license now" msgstr "Buy a license now" -#: includes/class-freemius.php11932, +#: includes/class-freemius.php13540, #: templates/forms/premium-versions-upgrade-handler.php:46 msgid "Renew your license now" msgstr "Renew your license now" -#: includes/class-freemius.php:11936 +#: includes/class-freemius.php:13544 msgid "%s to access version %s security & feature updates, and support." msgstr "%s to access version %s security & feature updates, and support." -#: includes/class-freemius.php:14319 +#: includes/class-freemius.php:15957 msgid "%s activation was successfully completed." msgstr "Активация %s была успешно завершена" -#: includes/class-freemius.php:14333 +#: includes/class-freemius.php:15971 msgid "Your account was successfully activated with the %s plan." msgstr "Ваша учетная запись была успешно активирована согласно плану %s" -#: includes/class-freemius.php14344, includes/class-freemius.php:17553 +#: includes/class-freemius.php15982, includes/class-freemius.php:19707 msgid "Your trial has been successfully started." msgstr "Ваш тестовый период успешно начат" -#: includes/class-freemius.php14914, includes/class-freemius.php14966, -#: includes/class-freemius.php:15028 +#: includes/class-freemius.php16556, includes/class-freemius.php16644, +#: includes/class-freemius.php:16810 msgid "Couldn't activate %s." msgstr "Невозможно активировать %s" -#: includes/class-freemius.php14915, includes/class-freemius.php14967, -#: includes/class-freemius.php:15029 +#: includes/class-freemius.php16557, includes/class-freemius.php16645, +#: includes/class-freemius.php:16811 msgid "Please contact us with the following message:" msgstr "Пожалуйста, напишите нам сообщение следующего содержания:" -#: includes/class-freemius.php15378, includes/class-freemius.php:19839 +#: includes/class-freemius.php16641, templates/forms/data-debug-mode.php:162 +msgid "An unknown error has occurred." +msgstr "An unknown error has occurred." + +#: includes/class-freemius.php17168, includes/class-freemius.php:22082 msgid "Upgrade" msgstr "Сделать апгрейд " -#: includes/class-freemius.php:15384 +#: includes/class-freemius.php:17174 msgid "Start Trial" msgstr "Начать тестовый период" -#: includes/class-freemius.php:15386 +#: includes/class-freemius.php:17176 msgid "Pricing" msgstr "Цены " -#: includes/class-freemius.php15448, includes/class-freemius.php:15450 +#: includes/class-freemius.php17256, includes/class-freemius.php:17258 msgid "Affiliation" msgstr "Партнерство " -#: includes/class-freemius.php15478, includes/class-freemius.php15480, -#: templates/account.php150, templates/debug.php:324 +#: includes/class-freemius.php17286, includes/class-freemius.php17288, +#: templates/account.php183, templates/debug.php:326 msgid "Account" msgstr "Личный кабинет" -#: includes/class-freemius.php15493, includes/class-freemius.php15495, +#: includes/class-freemius.php17302, includes/class-freemius.php17304, #: includes/customizer/class-fs-customizer-support-section.php:60 msgid "Contact Us" msgstr "Контакты " -#: includes/class-freemius.php15505, includes/class-freemius.php15507, -#: includes/class-freemius.php19849, templates/account.php100, -#: templates/account/partials/addon.php:41 +#: includes/class-freemius.php17315, includes/class-freemius.php17317, +#: includes/class-freemius.php22096, templates/account.php111, +#: templates/account/partials/addon.php:44 msgid "Add-Ons" msgstr "Настройки плагина " -#: includes/class-freemius.php:15541 +#: includes/class-freemius.php:17351 msgctxt "ASCII arrow left icon" msgid "←" msgstr "←" -#: includes/class-freemius.php:15541 +#: includes/class-freemius.php:17351 msgctxt "ASCII arrow right icon" msgid "➤" msgstr "➤" -#: includes/class-freemius.php15543, templates/pricing.php:97 +#: includes/class-freemius.php17353, templates/pricing.php:103 msgctxt "noun" msgid "Pricing" msgstr "Цены" -#: includes/class-freemius.php15756, +#: includes/class-freemius.php17566, #: includes/customizer/class-fs-customizer-support-section.php:67 msgid "Support Forum" msgstr "Форум поддержки " -#: includes/class-freemius.php:16542 +#: includes/class-freemius.php:18536 msgid "Your email has been successfully verified - you are AWESOME!" msgstr "Ваш электронный адрес был успешно подтвержден и Вы просто молодец!" -#: includes/class-freemius.php:16543 +#: includes/class-freemius.php:18537 msgctxt "a positive response" msgid "Right on" msgstr "Все верно!" -#: includes/class-freemius.php:17168 +#: includes/class-freemius.php:19041 +msgid "seems like the key you entered doesn't match our records." +msgstr "seems like the key you entered doesn't match our records." + +#: includes/class-freemius.php:19065 +msgid "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." +msgstr "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." + +#: includes/class-freemius.php:19283 msgid "Your %s Add-on plan was successfully upgraded." msgstr "Ваш %s план был успешно обновлен" -#: includes/class-freemius.php:17170 +#: includes/class-freemius.php:19285 msgid "%s Add-on was successfully purchased." msgstr "Покупка %s плагина успешно состоялась" -#: includes/class-freemius.php:17173 +#: includes/class-freemius.php:19288 msgid "Download the latest version" msgstr "Скачай последнюю версию" -#: includes/class-freemius.php:17259 -msgctxt "%1s - plugin title, %2s - API domain" -msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s" -msgstr "Ваш сервер блокирует доступ к Freemius' API, что является очень важным для синхронизации с %1s. Пожалуйста, свяжитесь с Вашим хостинг провайдером для разрешения доступа к %2s " +#: includes/class-freemius.php:19374 +msgid "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s" +msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s" -#: includes/class-freemius.php17262, includes/class-freemius.php17678, -#: includes/class-freemius.php:17755 +#: includes/class-freemius.php19380, includes/class-freemius.php19390, +#: includes/class-freemius.php19835, includes/class-freemius.php:19924 msgid "Error received from the server:" msgstr "Ошибка сервера" -#: includes/class-freemius.php:17272 +#: includes/class-freemius.php:19390 msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again." msgstr "Вероятно один из параметров является неверным. Обновите свой Public Key, Secret Key&User ID и повторите попытку." -#: includes/class-freemius.php17454, includes/class-freemius.php17683, -#: includes/class-freemius.php17726, includes/class-freemius.php:17829 +#: includes/class-freemius.php19604, includes/class-freemius.php19840, +#: includes/class-freemius.php19895, includes/class-freemius.php:19998 msgctxt "" msgid "Hmm" msgstr "Хм..." -#: includes/class-freemius.php:17467 +#: includes/class-freemius.php:19617 msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry." msgstr "Вероятно Вы все еще пользуетесь сервисом согласно плану %s. Если Вы обновляли или меняли свой тарифный план, то вероятно существуют какие-то трудности связанные с Вашим программным обеспечением. Извините. " -#: includes/class-freemius.php17468, templates/account.php102, -#: templates/add-ons.php134, templates/account/partials/addon.php:43 +#: includes/class-freemius.php19618, templates/account.php113, +#: templates/add-ons.php250, templates/account/partials/addon.php:46 msgctxt "trial period" msgid "Trial" msgstr "Тестовый период" -#: includes/class-freemius.php:17473 +#: includes/class-freemius.php:19623 msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s." msgstr "Я провел апгрейд аккаунта, но при попытке синхронизировать лицензию, мой тарифный план не меняется. " -#: includes/class-freemius.php17477, includes/class-freemius.php:17535 +#: includes/class-freemius.php19627, includes/class-freemius.php:19686 msgid "Please contact us here" msgstr "Пожалуйста, напишите нам сообщение здесь. " -#: includes/class-freemius.php:17487 +#: includes/class-freemius.php:19638 +msgid "Your plan was successfully activated." +msgstr "Your plan was successfully activated." + +#: includes/class-freemius.php:19639 msgid "Your plan was successfully upgraded." msgstr "Ваш тарифный план был успешно изменен. " -#: includes/class-freemius.php:17505 +#: includes/class-freemius.php:19656 msgid "Your plan was successfully changed to %s." msgstr "Ваш тарифный план был успешно изменен на %s." -#: includes/class-freemius.php:17521 +#: includes/class-freemius.php:19672 msgid "Your license has expired. You can still continue using the free %s forever." msgstr "Срок действия Вашей лицензии закончился. Вы можете продолжать пользоваться бесплатной версией %s на бессрочной основе." -#: includes/class-freemius.php:17523 +#: includes/class-freemius.php:19674 msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." msgstr "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." -#: includes/class-freemius.php:17531 +#: includes/class-freemius.php:19682 msgid "Your license has been cancelled. If you think it's a mistake, please contact support." msgstr "Ваша лицензия была аннулирована. Если Вы считаете, что это ошибка, пожалуйста свяжитесь с нашей службой поддержки. " -#: includes/class-freemius.php:17544 +#: includes/class-freemius.php:19695 msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support." msgstr "Срок действия Вашей лицензии закончен. Вы можете продолжать пользоваться всеми возможностями %s продлив Вашу лицензию. Вы также будете получать доступ к обновлениям и поддержке. " -#: includes/class-freemius.php:17567 +#: includes/class-freemius.php:19721 msgid "Your free trial has expired. You can still continue using all our free features." msgstr "Your free trial has expired. You can still continue using all our free features." -#: includes/class-freemius.php:17569 +#: includes/class-freemius.php:19723 msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." -#: includes/class-freemius.php:17674 +#: includes/class-freemius.php:19831 msgid "It looks like the license could not be activated." msgstr "Вероятно возникли трудности с активацией лицензии. " -#: includes/class-freemius.php:17704 +#: includes/class-freemius.php:19873 msgid "Your license was successfully activated." msgstr "Ваша лицензия была успешно активирована. " -#: includes/class-freemius.php:17730 +#: includes/class-freemius.php:19899 msgid "It looks like your site currently doesn't have an active license." msgstr "Вероятно Ваш сайт не использует активную лицензию сейчас. " -#: includes/class-freemius.php:17754 +#: includes/class-freemius.php:19923 msgid "It looks like the license deactivation failed." msgstr "Вероятно деактивация лицензии не состоялась. " -#: includes/class-freemius.php:17782 +#: includes/class-freemius.php:19951 msgid "Your license was successfully deactivated, you are back to the %s plan." msgstr "Ваша лицензия была успешно деактивирована и Вы снова пользуетесь планом %s." -#: includes/class-freemius.php:17783 +#: includes/class-freemius.php:19952 msgid "O.K" msgstr "O.K." -#: includes/class-freemius.php:17836 +#: includes/class-freemius.php:20005 msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes." msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes." -#: includes/class-freemius.php:17845 +#: includes/class-freemius.php:20014 msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s." msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s." -#: includes/class-freemius.php:17887 +#: includes/class-freemius.php:20056 msgid "You are already running the %s in a trial mode." msgstr "Вы уже пользуетесь тестовой версией %s " -#: includes/class-freemius.php:17898 +#: includes/class-freemius.php:20067 msgid "You already utilized a trial before." msgstr "Вы уже использовали Ваш тестовый период" -#: includes/class-freemius.php:17912 +#: includes/class-freemius.php:20081 msgid "Plan %s do not exist, therefore, can't start a trial." msgstr "Тарифного плана % не существует, поэтому Вы не можете начать тестовый период. " -#: includes/class-freemius.php:17923 +#: includes/class-freemius.php:20092 msgid "Plan %s does not support a trial period." msgstr "Тарифный план % не предусматривает тестового периода. " -#: includes/class-freemius.php:17934 +#: includes/class-freemius.php:20103 msgid "None of the %s's plans supports a trial period." msgstr "Тарифные планы %s не предусматривают тестовый период. " -#: includes/class-freemius.php:17984 +#: includes/class-freemius.php:20153 msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)" msgstr "Возможно, Ваш тестовый период уже закончился. " -#: includes/class-freemius.php:18020 +#: includes/class-freemius.php:20189 msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes." msgstr "К сожалению у нас возникли трудности с отменой Вашего тестового периода. Пожалуйста, повторите попытку через несколько минут." -#: includes/class-freemius.php:18039 +#: includes/class-freemius.php:20208 msgid "Your %s free trial was successfully cancelled." msgstr "Ваш бесплатный тестовый период был успешно отменен. " -#: includes/class-freemius.php:18346 +#: includes/class-freemius.php:20524 msgid "Version %s was released." msgstr "Релиз версии %s состоялся. " -#: includes/class-freemius.php:18346 +#: includes/class-freemius.php:20524 msgid "Please download %s." msgstr "Пожалуйста, скачайте %s" -#: includes/class-freemius.php:18353 +#: includes/class-freemius.php:20531 msgid "the latest %s version here" msgstr "Последняя версия %s здесь" -#: includes/class-freemius.php:18358 +#: includes/class-freemius.php:20536 msgid "New" msgstr "Новое " -#: includes/class-freemius.php:18363 +#: includes/class-freemius.php:20541 msgid "Seems like you got the latest release." msgstr "Вероятно, Вы пользуетесь последней версией" -#: includes/class-freemius.php:18364 +#: includes/class-freemius.php:20542 msgid "You are all good!" msgstr "Все прошло хорошо!" -#: includes/class-freemius.php:18632 +#: includes/class-freemius.php:20812 msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box." msgstr "Письмо подтверждение было только что отправлено на %s. Если Вы не получите его через 5 минут, пожалуйста, проверьте папку спам." -#: includes/class-freemius.php:18769 +#: includes/class-freemius.php:20951 msgid "Site successfully opted in." msgstr "Site successfully opted in." -#: includes/class-freemius.php18770, includes/class-freemius.php:19581 +#: includes/class-freemius.php20952, includes/class-freemius.php:21792 msgid "Awesome" msgstr "Отлично!" -#: includes/class-freemius.php18786, templates/forms/optout.php:32 +#: includes/class-freemius.php20968, templates/forms/optout.php:32 msgid "We appreciate your help in making the %s better by letting us track some usage data." msgstr "Вы очень помогаете нам совершенствовать %s разрешая следить за некоторыми данными о пользовании. " -#: includes/class-freemius.php:18787 +#: includes/class-freemius.php:20969 msgid "Thank you!" msgstr "Thank you!" -#: includes/class-freemius.php:18794 +#: includes/class-freemius.php:20976 msgid "We will no longer be sending any usage data of %s on %s to %s." msgstr "We will no longer be sending any usage data of %s on %s to %s." -#: includes/class-freemius.php:18923 +#: includes/class-freemius.php:21105 msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder." msgstr "Пожалуйста, проверьте свою электронную почту. Вы должны были получить письмо от %s для подтверждения смены прав использования. По причинам безопасности, Вы должны подтвердить изменения на протяжении 15 минут. Если письмо не пришло, пожалуйста проверьте папку спам. " -#: includes/class-freemius.php:18929 +#: includes/class-freemius.php:21111 msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval." msgstr "Спасибо, что подтвердили изменение прав использования. Вам отправлено письмо на %s для окончательного подтверждения. " -#: includes/class-freemius.php:18934 +#: includes/class-freemius.php:21116 msgid "%s is the new owner of the account." msgstr "%я является новым владельцем аккаунта" -#: includes/class-freemius.php:18936 +#: includes/class-freemius.php:21118 msgctxt "as congratulations" msgid "Congrats" msgstr "Поздравления! " -#: includes/class-freemius.php:18956 +#: includes/class-freemius.php:21138 msgid "Sorry, we could not complete the email update. Another user with the same email is already registered." msgstr "Извините, нам не удалось обновить электронный адрес. Другой пользователь с таким же адресом уже был зарегистрирован. " -#: includes/class-freemius.php:18957 +#: includes/class-freemius.php:21139 msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button." msgstr "Если Вы передаете права пользования аккаунтом %s %s нажмите кнопку \" Сменить права использования\"" -#: includes/class-freemius.php:18964 +#: includes/class-freemius.php:21146 msgid "Change Ownership" msgstr "Сменить владельца лицензии " -#: includes/class-freemius.php:18972 +#: includes/class-freemius.php:21154 msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments." msgstr "Ваш электронный адрес был успешно обновлен. Через несколько минут Вы получите письмо с инструкциями для подтверждения" -#: includes/class-freemius.php:18984 +#: includes/class-freemius.php:21166 msgid "Please provide your full name." msgstr "Пожалуйста, введите Ваше полное имя" -#: includes/class-freemius.php:18989 +#: includes/class-freemius.php:21171 msgid "Your name was successfully updated." msgstr "Ваше имя было успешно обновлено" -#: includes/class-freemius.php:19050 +#: includes/class-freemius.php:21232 msgid "You have successfully updated your %s." msgstr "Вы успешно обновили Ваш %s" -#: includes/class-freemius.php:19190 +#: includes/class-freemius.php:21372 msgid "Just letting you know that the add-ons information of %s is being pulled from an external server." msgstr "Сообщаем, что информация о дополнительных настройках %s предоставляется со стороннего сервера. " -#: includes/class-freemius.php:19191 +#: includes/class-freemius.php:21373 msgctxt "advance notice of something that will need attention." msgid "Heads up" msgstr "Внимание!" -#: includes/class-freemius.php:19621 +#: includes/class-freemius.php:21832 msgctxt "exclamation" msgid "Hey" msgstr "Привет!" -#: includes/class-freemius.php:19621 +#: includes/class-freemius.php:21832 msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial." msgstr "Тебе нравится пользоваться %s? Воспользуйся всеми нашими премиум возможностями на протяжении %d - дневного тестового периода. " -#: includes/class-freemius.php:19629 +#: includes/class-freemius.php:21840 msgid "No commitment for %s days - cancel anytime!" msgstr "Бесплатное пользование на протяжении %s дней. Отмена в любое время. " -#: includes/class-freemius.php:19630 +#: includes/class-freemius.php:21841 msgid "No credit card required" msgstr "Не требуются данные платежной карты" -#: includes/class-freemius.php19637, templates/forms/trial-start.php:53 +#: includes/class-freemius.php21848, templates/forms/trial-start.php:53 msgctxt "call to action" msgid "Start free trial" msgstr "Начни тестовый период!" -#: includes/class-freemius.php:19714 +#: includes/class-freemius.php:21925 msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!" msgstr "Привет! Знали ли Вы, что %s предоставляет реферальную программу? Если Вам нравится %s, Вы можете стать нашим представителем и зарабатывать!" -#: includes/class-freemius.php:19723 +#: includes/class-freemius.php:21934 msgid "Learn more" msgstr "Узнать больше" -#: includes/class-freemius.php19873, templates/account.php406, -#: templates/account.php509, templates/connect.php171, -#: templates/connect.php421, templates/forms/license-activation.php24, -#: templates/account/partials/addon.php:235 +#: includes/class-freemius.php22120, templates/account.php499, +#: templates/account.php624, templates/connect.php171, +#: templates/connect.php421, templates/forms/license-activation.php27, +#: templates/account/partials/addon.php:321 msgid "Activate License" msgstr "Активировать лицензию" -#: includes/class-freemius.php19874, templates/account.php469, -#: templates/account.php508, templates/account/partials/site.php:256 +#: includes/class-freemius.php22121, templates/account.php571, +#: templates/account.php623, templates/account/partials/addon.php322, +#: templates/account/partials/site.php:271 msgid "Change License" msgstr "Изменить лицензию " -#: includes/class-freemius.php19956, templates/account/partials/site.php:161 +#: includes/class-freemius.php22217, templates/account/partials/site.php:169 msgid "Opt Out" msgstr "Отказаться от использования" -#: includes/class-freemius.php19958, includes/class-freemius.php19963, -#: templates/account/partials/site.php43, -#: templates/account/partials/site.php:161 +#: includes/class-freemius.php22219, includes/class-freemius.php22225, +#: templates/account/partials/site.php49, +#: templates/account/partials/site.php:169 msgid "Opt In" msgstr "Присоединиться" -#: includes/class-freemius.php:20187 -msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s" -msgstr " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s" +#: includes/class-freemius.php:22453 +msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s" +msgstr " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s" -#: includes/class-freemius.php:20195 +#: includes/class-freemius.php:22461 msgid "Activate %s features" msgstr "Activate %s features" -#: includes/class-freemius.php:20208 +#: includes/class-freemius.php:22474 msgid "Please follow these steps to complete the upgrade" msgstr "Пожалуйста, пройдите эти шаги для того, чтобы произвести апгрейд" -#: includes/class-freemius.php:20212 +#: includes/class-freemius.php:22478 msgid "Download the latest %s version" msgstr "Скачайте последнюю версию %s" -#: includes/class-freemius.php:20216 +#: includes/class-freemius.php:22482 msgid "Upload and activate the downloaded version" msgstr "Загрузите и активируйте скачанную версию" -#: includes/class-freemius.php:20218 +#: includes/class-freemius.php:22484 msgid "How to upload and activate?" msgstr "Как загрузить и активировать?" -#: includes/class-freemius.php:20352 +#: includes/class-freemius.php:22618 msgid "%sClick here%s to choose the sites where you'd like to activate the license on." msgstr "%sClick here%s to choose the sites where you'd like to activate the license on." -#: includes/class-freemius.php:20513 +#: includes/class-freemius.php:22779 msgid "Auto installation only works for opted-in users." msgstr "Авто установка работает только для зарегистрированных пользователей." -#: includes/class-freemius.php20523, includes/class-freemius.php20556, -#: includes/class-fs-plugin-updater.php1060, -#: includes/class-fs-plugin-updater.php:1074 +#: includes/class-freemius.php22789, includes/class-freemius.php22822, +#: includes/class-fs-plugin-updater.php1212, +#: includes/class-fs-plugin-updater.php:1226 msgid "Invalid module ID." msgstr "Неверный ID модуля" -#: includes/class-freemius.php20532, includes/class-fs-plugin-updater.php:1096 +#: includes/class-freemius.php22798, includes/class-fs-plugin-updater.php:1248 msgid "Premium version already active." msgstr "Премиум версия уже активирована" -#: includes/class-freemius.php:20539 +#: includes/class-freemius.php:22805 msgid "You do not have a valid license to access the premium version." msgstr "У Вас нет необходимых лицензионных прав для пользования премиум версией" -#: includes/class-freemius.php:20546 +#: includes/class-freemius.php:22812 msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version." msgstr "Плагин является 'Serviсeware'. Это означает, что он не имеет премиум версию кода. " -#: includes/class-freemius.php20564, includes/class-fs-plugin-updater.php:1095 +#: includes/class-freemius.php22830, includes/class-fs-plugin-updater.php:1247 msgid "Premium add-on version already installed." msgstr "Премиум версия плагина была установлена" -#: includes/class-freemius.php:20909 +#: includes/class-freemius.php:23180 msgid "View paid features" msgstr "Просмотр платных возможностей" -#: includes/class-freemius.php:21229 +#: includes/class-freemius.php:23502 msgid "Thank you so much for using %s and its add-ons!" msgstr "Thank you so much for using %s and its add-ons!" -#: includes/class-freemius.php:21230 +#: includes/class-freemius.php:23503 msgid "Thank you so much for using %s!" msgstr "Thank you so much for using %s!" -#: includes/class-freemius.php:21236 +#: includes/class-freemius.php:23509 msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s." msgstr "You've already opted-in to our usage-tracking, which helps us keep improving the %s." -#: includes/class-freemius.php:21240 +#: includes/class-freemius.php:23513 msgid "Thank you so much for using our products!" msgstr "Thank you so much for using our products!" -#: includes/class-freemius.php:21241 +#: includes/class-freemius.php:23514 msgid "You've already opted-in to our usage-tracking, which helps us keep improving them." msgstr "You've already opted-in to our usage-tracking, which helps us keep improving them." -#: includes/class-freemius.php:21260 +#: includes/class-freemius.php:23533 msgid "%s and its add-ons" msgstr "%s and its add-ons" -#: includes/class-freemius.php:21269 +#: includes/class-freemius.php:23542 msgid "Products" msgstr "Products" -#: includes/class-freemius.php21276, templates/connect.php:272 +#: includes/class-freemius.php23549, templates/connect.php:272 msgid "Yes" msgstr "Yes" -#: includes/class-freemius.php21277, templates/connect.php:273 +#: includes/class-freemius.php23550, templates/connect.php:273 msgid "send me security & feature updates, educational content and offers." msgstr "send me security & feature updates, educational content and offers." -#: includes/class-freemius.php21278, templates/connect.php:278 +#: includes/class-freemius.php23551, templates/connect.php:278 msgid "No" msgstr "No" -#: includes/class-freemius.php21280, templates/connect.php:280 +#: includes/class-freemius.php23553, templates/connect.php:280 msgid "do %sNOT%s send me security & feature updates, educational content and offers." msgstr "do %sNOT%s send me security & feature updates, educational content and offers." -#: includes/class-freemius.php:21290 -msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂" -msgstr "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂" +#: includes/class-freemius.php:23563 +msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard :-)" +msgstr "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard :-)" -#: includes/class-freemius.php21292, templates/connect.php:287 +#: includes/class-freemius.php23565, templates/connect.php:287 msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:" msgstr "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:" -#: includes/class-freemius.php:21574 +#: includes/class-freemius.php:23847 msgid "License key is empty." msgstr "License key is empty." -#: includes/class-fs-plugin-updater.php184, +#: includes/class-fs-plugin-updater.php206, #: templates/forms/premium-versions-upgrade-handler.php:57 msgid "Renew license" msgstr "Renew license" -#: includes/class-fs-plugin-updater.php189, +#: includes/class-fs-plugin-updater.php211, #: templates/forms/premium-versions-upgrade-handler.php:58 msgid "Buy license" msgstr "Buy license" -#: includes/class-fs-plugin-updater.php:278 +#: includes/class-fs-plugin-updater.php321, +#: includes/class-fs-plugin-updater.php:354 msgid "There is a %s of %s available." msgstr "There is a %s of %s available." -#: includes/class-fs-plugin-updater.php:282 +#: includes/class-fs-plugin-updater.php323, +#: includes/class-fs-plugin-updater.php:359 +msgid "new Beta version" +msgstr "new Beta version" + +#: includes/class-fs-plugin-updater.php324, +#: includes/class-fs-plugin-updater.php:360 msgid "new version" msgstr "new version" -#: includes/class-fs-plugin-updater.php:305 +#: includes/class-fs-plugin-updater.php:383 msgid "Important Upgrade Notice:" msgstr "Important Upgrade Notice:" -#: includes/class-fs-plugin-updater.php:1125 +#: includes/class-fs-plugin-updater.php:1277 msgid "Installing plugin: %s" msgstr "Установка плагина: %s" -#: includes/class-fs-plugin-updater.php:1166 +#: includes/class-fs-plugin-updater.php:1318 msgid "Unable to connect to the filesystem. Please confirm your credentials." msgstr "Невозможно присоединиться к системе файлов. Пожалуйста, подтвердите свои данные. " -#: includes/class-fs-plugin-updater.php:1348 +#: includes/class-fs-plugin-updater.php:1500 msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work." msgstr "Удаленный пакет плагинов не содержит папку с нужным описанием URL и смена имени не срабатывает. " -#: includes/fs-plugin-info-dialog.php369, -#: templates/account/partials/addon.php:292 +#: includes/fs-plugin-info-dialog.php:535 +msgid "Purchase More" +msgstr "Purchase More" + +#: includes/fs-plugin-info-dialog.php536, +#: templates/account/partials/addon.php:385 msgctxt "verb" msgid "Purchase" msgstr "Купить" -#: includes/fs-plugin-info-dialog.php:372 +#: includes/fs-plugin-info-dialog.php:540 msgid "Start my free %s" msgstr "Начать мой бесплатный %s" -#: includes/fs-plugin-info-dialog.php:413 +#: includes/fs-plugin-info-dialog.php:738 +msgid "Install Free Version Update Now" +msgstr "Install Free Version Update Now" + +#: includes/fs-plugin-info-dialog.php739, templates/account.php:560 +msgid "Install Update Now" +msgstr "Провести обновления сейчас " + +#: includes/fs-plugin-info-dialog.php:748 msgid "Install Free Version Now" msgstr "Install Free Version Now" -#: includes/fs-plugin-info-dialog.php414, templates/auto-installation.php111, -#: templates/account/partials/addon.php272, -#: templates/account/partials/addon.php:322 +#: includes/fs-plugin-info-dialog.php749, templates/add-ons.php323, +#: templates/auto-installation.php111, +#: templates/account/partials/addon.php365, +#: templates/account/partials/addon.php:418 msgid "Install Now" msgstr "Установить сейчас " -#: includes/fs-plugin-info-dialog.php:425 +#: includes/fs-plugin-info-dialog.php:765 msgctxt "as download latest version" msgid "Download Latest Free Version" msgstr "Download Latest Free Version" -#: includes/fs-plugin-info-dialog.php426, templates/account.php80, -#: templates/account/partials/addon.php:21 +#: includes/fs-plugin-info-dialog.php766, templates/account.php91, +#: templates/add-ons.php37, templates/account/partials/addon.php:25 msgctxt "as download latest version" msgid "Download Latest" msgstr "Скачать последнюю версию" -#: includes/fs-plugin-info-dialog.php:436 -msgid "Install Free Version Update Now" -msgstr "Install Free Version Update Now" - -#: includes/fs-plugin-info-dialog.php437, templates/account.php:460 -msgid "Install Update Now" -msgstr "Провести обновления сейчас " - -#: includes/fs-plugin-info-dialog.php:448 -msgid "Newer Free Version (%s) Installed" -msgstr "Newer Free Version (%s) Installed" - -#: includes/fs-plugin-info-dialog.php:449 -msgid "Newer Version (%s) Installed" -msgstr "Более новая версия %s установлена " +#: includes/fs-plugin-info-dialog.php781, templates/add-ons.php329, +#: templates/account/partials/addon.php356, +#: templates/account/partials/addon.php:412 +msgid "Activate this add-on" +msgstr "Активируйте этот функционал " -#: includes/fs-plugin-info-dialog.php:457 -msgid "Latest Free Version Installed" -msgstr "Latest Free Version Installed" +#: includes/fs-plugin-info-dialog.php783, templates/connect.php:418 +msgid "Activate Free Version" +msgstr "Активировать бесплатную версию?" -#: includes/fs-plugin-info-dialog.php:458 -msgid "Latest Version Installed" -msgstr "Последняя версия установлена" +#: includes/fs-plugin-info-dialog.php784, templates/account.php115, +#: templates/add-ons.php330, templates/account/partials/addon.php:48 +msgid "Activate" +msgstr "Активировать " -#: includes/fs-plugin-info-dialog.php:613 +#: includes/fs-plugin-info-dialog.php:994 msgctxt "Plugin installer section title" msgid "Description" msgstr "Описание " -#: includes/fs-plugin-info-dialog.php:614 +#: includes/fs-plugin-info-dialog.php:995 msgctxt "Plugin installer section title" msgid "Installation" msgstr "Установка " -#: includes/fs-plugin-info-dialog.php:615 +#: includes/fs-plugin-info-dialog.php:996 msgctxt "Plugin installer section title" msgid "FAQ" msgstr "Часто задаваемые вопросы " -#: includes/fs-plugin-info-dialog.php616, +#: includes/fs-plugin-info-dialog.php997, #: templates/plugin-info/description.php:55 msgid "Screenshots" msgstr "Снимки экрана " -#: includes/fs-plugin-info-dialog.php:617 +#: includes/fs-plugin-info-dialog.php:998 msgctxt "Plugin installer section title" msgid "Changelog" msgstr "Журнал изменений " -#: includes/fs-plugin-info-dialog.php:618 +#: includes/fs-plugin-info-dialog.php:999 msgctxt "Plugin installer section title" msgid "Reviews" msgstr "Отзывы " -#: includes/fs-plugin-info-dialog.php:619 +#: includes/fs-plugin-info-dialog.php:1000 msgctxt "Plugin installer section title" msgid "Other Notes" msgstr "Другие заметки " -#: includes/fs-plugin-info-dialog.php:634 +#: includes/fs-plugin-info-dialog.php:1015 msgctxt "Plugin installer section title" msgid "Features & Pricing" msgstr "Функционал&тарифные планы " -#: includes/fs-plugin-info-dialog.php:644 +#: includes/fs-plugin-info-dialog.php:1025 msgid "Plugin Install" msgstr "Установка плагина " -#: includes/fs-plugin-info-dialog.php:716 +#: includes/fs-plugin-info-dialog.php:1097 msgctxt "e.g. Professional Plan" msgid "%s Plan" msgstr "%s план " -#: includes/fs-plugin-info-dialog.php:742 +#: includes/fs-plugin-info-dialog.php:1123 msgctxt "e.g. the best product" msgid "Best" msgstr "Лучший " -#: includes/fs-plugin-info-dialog.php748, -#: includes/fs-plugin-info-dialog.php:768 +#: includes/fs-plugin-info-dialog.php1129, +#: includes/fs-plugin-info-dialog.php:1149 msgctxt "as every month" msgid "Monthly" msgstr "Помесячно " -#: includes/fs-plugin-info-dialog.php:751 +#: includes/fs-plugin-info-dialog.php:1132 msgctxt "as once a year" msgid "Annual" msgstr "Ежегодно " -#: includes/fs-plugin-info-dialog.php:754 +#: includes/fs-plugin-info-dialog.php:1135 msgid "Lifetime" msgstr "На бессрочный период " -#: includes/fs-plugin-info-dialog.php768, -#: includes/fs-plugin-info-dialog.php770, -#: includes/fs-plugin-info-dialog.php:772 +#: includes/fs-plugin-info-dialog.php1149, +#: includes/fs-plugin-info-dialog.php1151, +#: includes/fs-plugin-info-dialog.php:1153 msgctxt "e.g. billed monthly" msgid "Billed %s" msgstr "Оплачивать %s" -#: includes/fs-plugin-info-dialog.php:770 +#: includes/fs-plugin-info-dialog.php:1151 msgctxt "as once a year" msgid "Annually" msgstr "Один раз в год " -#: includes/fs-plugin-info-dialog.php:772 +#: includes/fs-plugin-info-dialog.php:1153 msgctxt "as once a year" msgid "Once" msgstr "Один раз " -#: includes/fs-plugin-info-dialog.php:778 +#: includes/fs-plugin-info-dialog.php:1159 msgid "Single Site License" msgstr "Лицензия на один сайт " -#: includes/fs-plugin-info-dialog.php:780 +#: includes/fs-plugin-info-dialog.php:1161 msgid "Unlimited Licenses" msgstr "Неограниченная лицензия " -#: includes/fs-plugin-info-dialog.php:782 +#: includes/fs-plugin-info-dialog.php:1163 msgid "Up to %s Sites" msgstr "до % сайтов " -#: includes/fs-plugin-info-dialog.php792, +#: includes/fs-plugin-info-dialog.php1173, #: templates/plugin-info/features.php:82 msgctxt "as monthly period" msgid "mo" msgstr "на один месяц" -#: includes/fs-plugin-info-dialog.php799, +#: includes/fs-plugin-info-dialog.php1180, #: templates/plugin-info/features.php:80 msgctxt "as annual period" msgid "year" msgstr "на один год " -#: includes/fs-plugin-info-dialog.php:853 +#: includes/fs-plugin-info-dialog.php:1234 msgctxt "noun" msgid "Price" msgstr "Стоимость " -#: includes/fs-plugin-info-dialog.php:901 +#: includes/fs-plugin-info-dialog.php:1282 msgid "Save %s" msgstr "Экономия %s" -#: includes/fs-plugin-info-dialog.php:911 +#: includes/fs-plugin-info-dialog.php:1292 msgid "No commitment for %s - cancel anytime" msgstr "Без обязательств платить %s - аннулируй пользование в любое время " -#: includes/fs-plugin-info-dialog.php:914 +#: includes/fs-plugin-info-dialog.php:1295 msgid "After your free %s, pay as little as %s" msgstr "После окончания Вашего бесплатного %s, платите всего лиш %s" -#: includes/fs-plugin-info-dialog.php:925 +#: includes/fs-plugin-info-dialog.php:1306 msgid "Details" msgstr "Детальней" -#: includes/fs-plugin-info-dialog.php929, templates/account.php91, -#: templates/debug.php201, templates/debug.php238, templates/debug.php452, -#: templates/account/partials/addon.php:32 +#: includes/fs-plugin-info-dialog.php1310, templates/account.php102, +#: templates/debug.php203, templates/debug.php240, templates/debug.php457, +#: templates/account/partials/addon.php:36 msgctxt "product version" msgid "Version" msgstr "Версия " -#: includes/fs-plugin-info-dialog.php:936 +#: includes/fs-plugin-info-dialog.php:1317 msgctxt "as the plugin author" msgid "Author" msgstr "Автор" -#: includes/fs-plugin-info-dialog.php:943 +#: includes/fs-plugin-info-dialog.php:1324 msgid "Last Updated" msgstr "Последнее обновление " -#: includes/fs-plugin-info-dialog.php948, templates/account.php:376 +#: includes/fs-plugin-info-dialog.php1329, templates/account.php:468 msgctxt "x-ago" msgid "%s ago" msgstr "% тому назад " -#: includes/fs-plugin-info-dialog.php:957 +#: includes/fs-plugin-info-dialog.php:1338 msgid "Requires WordPress Version" msgstr "Необходима версия WordPress " -#: includes/fs-plugin-info-dialog.php:958 +#: includes/fs-plugin-info-dialog.php:1339 msgid "%s or higher" msgstr "%s или выше" -#: includes/fs-plugin-info-dialog.php:965 +#: includes/fs-plugin-info-dialog.php:1346 msgid "Compatible up to" msgstr "Совместима с " -#: includes/fs-plugin-info-dialog.php:973 +#: includes/fs-plugin-info-dialog.php:1354 msgid "Downloaded" msgstr "Загружен " -#: includes/fs-plugin-info-dialog.php:977 +#: includes/fs-plugin-info-dialog.php:1358 msgid "%s time" msgstr "%s время " -#: includes/fs-plugin-info-dialog.php:979 +#: includes/fs-plugin-info-dialog.php:1360 msgid "%s times" msgstr "%s раз " -#: includes/fs-plugin-info-dialog.php:989 +#: includes/fs-plugin-info-dialog.php:1370 msgid "WordPress.org Plugin Page" msgstr "Страница плагинов WordPress.org" -#: includes/fs-plugin-info-dialog.php:997 +#: includes/fs-plugin-info-dialog.php:1378 msgid "Plugin Homepage" msgstr "Главная страница плагина " -#: includes/fs-plugin-info-dialog.php1005, -#: includes/fs-plugin-info-dialog.php:1087 +#: includes/fs-plugin-info-dialog.php1386, +#: includes/fs-plugin-info-dialog.php:1468 msgid "Donate to this plugin" msgstr "Инвестировать в разработку плагина " -#: includes/fs-plugin-info-dialog.php:1012 +#: includes/fs-plugin-info-dialog.php:1393 msgid "Average Rating" msgstr "Средний рейтинг " -#: includes/fs-plugin-info-dialog.php:1019 +#: includes/fs-plugin-info-dialog.php:1400 msgid "based on %s" msgstr "Основан на %s" -#: includes/fs-plugin-info-dialog.php:1023 +#: includes/fs-plugin-info-dialog.php:1404 msgid "%s rating" msgstr "% оценка " -#: includes/fs-plugin-info-dialog.php:1025 +#: includes/fs-plugin-info-dialog.php:1406 msgid "%s ratings" msgstr "% оценки " -#: includes/fs-plugin-info-dialog.php:1040 +#: includes/fs-plugin-info-dialog.php:1421 msgid "%s star" msgstr "%звездочка " -#: includes/fs-plugin-info-dialog.php:1042 +#: includes/fs-plugin-info-dialog.php:1423 msgid "%s stars" msgstr "% звездочки " -#: includes/fs-plugin-info-dialog.php:1053 +#: includes/fs-plugin-info-dialog.php:1434 msgid "Click to see reviews that provided a rating of %s" msgstr "Нажмите, чтобы посмотреть отзывы, которые сформировали рейтинг %s" -#: includes/fs-plugin-info-dialog.php:1066 +#: includes/fs-plugin-info-dialog.php:1447 msgid "Contributors" msgstr "Контрибьюторы " -#: includes/fs-plugin-info-dialog.php1095, -#: includes/fs-plugin-info-dialog.php:1097 +#: includes/fs-plugin-info-dialog.php1476, +#: includes/fs-plugin-info-dialog.php:1478 msgid "Warning" msgstr "Предупреждение " -#: includes/fs-plugin-info-dialog.php:1095 +#: includes/fs-plugin-info-dialog.php:1476 msgid "This plugin has not been tested with your current version of WordPress." msgstr "Этот плагин не был тестирован с Вашей текущей версией WordPress. " -#: includes/fs-plugin-info-dialog.php:1097 +#: includes/fs-plugin-info-dialog.php:1478 msgid "This plugin has not been marked as compatible with your version of WordPress." msgstr "Этот плагин не отмечен как совместимый з Вашей версией WordPress " -#: includes/fs-plugin-info-dialog.php:1116 +#: includes/fs-plugin-info-dialog.php:1497 msgid "Paid add-on must be deployed to Freemius." msgstr "Платный функционал должен быть заявлен в Freemius" -#: includes/fs-plugin-info-dialog.php:1117 +#: includes/fs-plugin-info-dialog.php:1498 msgid "Add-on must be deployed to WordPress.org or Freemius." msgstr "Функционал должен быть заявлен на WordPress.org или Freemius " -#: templates/account.php81, templates/forms/subscription-cancellation.php96, -#: templates/account/partials/addon.php22, -#: templates/account/partials/site.php:295 +#: includes/fs-plugin-info-dialog.php:1519 +msgid "Newer Version (%s) Installed" +msgstr "Более новая версия %s установлена " + +#: includes/fs-plugin-info-dialog.php:1520 +msgid "Newer Free Version (%s) Installed" +msgstr "Newer Free Version (%s) Installed" + +#: includes/fs-plugin-info-dialog.php:1527 +msgid "Latest Version Installed" +msgstr "Последняя версия установлена" + +#: includes/fs-plugin-info-dialog.php:1528 +msgid "Latest Free Version Installed" +msgstr "Latest Free Version Installed" + +#: templates/account.php92, templates/forms/subscription-cancellation.php96, +#: templates/account/partials/addon.php26, +#: templates/account/partials/site.php:311 msgid "Downgrading your plan" msgstr "Downgrading your plan" -#: templates/account.php82, templates/forms/subscription-cancellation.php97, -#: templates/account/partials/addon.php23, -#: templates/account/partials/site.php:296 +#: templates/account.php93, templates/forms/subscription-cancellation.php97, +#: templates/account/partials/addon.php27, +#: templates/account/partials/site.php:312 msgid "Cancelling the subscription" msgstr "Cancelling the subscription" -#. translators: %1s: Either 'Downgrading your plan' or 'Cancelling the +#. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the #. subscription' -#: templates/account.php84, templates/forms/subscription-cancellation.php99, -#: templates/account/partials/addon.php25, -#: templates/account/partials/site.php:298 -msgid "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s." -msgstr "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s." - -#: templates/account.php85, templates/forms/subscription-cancellation.php100, -#: templates/account/partials/addon.php26, -#: templates/account/partials/site.php:299 +#: templates/account.php95, templates/forms/subscription-cancellation.php99, +#: templates/account/partials/site.php:314 +msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s." +msgstr "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s." + +#: templates/account.php96, templates/forms/subscription-cancellation.php100, +#: templates/account/partials/addon.php30, +#: templates/account/partials/site.php:315 msgid "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price." msgstr "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price." -#: templates/account.php86, templates/forms/subscription-cancellation.php106, -#: templates/account/partials/addon.php:27 +#: templates/account.php97, templates/forms/subscription-cancellation.php106, +#: templates/account/partials/addon.php:31 msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?" msgstr "Отказ от пользования тестовым периодом автоматически блокирует доступ ко всем премиум возможностям. Вы уверены, что хотите отказаться?" -#: templates/account.php87, templates/forms/subscription-cancellation.php101, -#: templates/account/partials/addon.php28, -#: templates/account/partials/site.php:300 +#: templates/account.php98, templates/forms/subscription-cancellation.php101, +#: templates/account/partials/addon.php32, +#: templates/account/partials/site.php:316 msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support." msgstr "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support." -#: templates/account.php88, templates/forms/subscription-cancellation.php102, -#: templates/account/partials/addon.php29, -#: templates/account/partials/site.php:301 +#: templates/account.php99, templates/forms/subscription-cancellation.php102, +#: templates/account/partials/addon.php33, +#: templates/account/partials/site.php:317 msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features." msgstr "По окончанию срока действия Вашей лицензии, Вы сможете пользоваться бесплатной версией, но у Вас не будет доступа к возможностям %s. " #. translators: %s: Plan title (e.g. "Professional") -#: templates/account.php90, +#: templates/account.php101, #: templates/account/partials/activate-license-button.php31, -#: templates/account/partials/addon.php:31 +#: templates/account/partials/addon.php:35 msgid "Activate %s Plan" msgstr "Активируйте план %s" #. translators: %s: Time period (e.g. Auto renews in "2 months") -#: templates/account.php93, templates/account/partials/addon.php34, -#: templates/account/partials/site.php:275 +#: templates/account.php104, templates/account/partials/addon.php38, +#: templates/account/partials/site.php:291 msgid "Auto renews in %s" msgstr "Автоматическое продление в %s" #. translators: %s: Time period (e.g. Expires in "2 months") -#: templates/account.php95, templates/account/partials/addon.php36, -#: templates/account/partials/site.php:277 +#: templates/account.php106, templates/account/partials/addon.php40, +#: templates/account/partials/site.php:293 msgid "Expires in %s" msgstr "Окончание срока пользования через %s" -#: templates/account.php96, templates/account/partials/addon.php:37 +#: templates/account.php:107 msgctxt "as synchronize license" msgid "Sync License" msgstr "Синхронизация лицензии " -#: templates/account.php97, templates/account/partials/addon.php:38 +#: templates/account.php108, templates/account/partials/addon.php:41 msgid "Cancel Trial" msgstr "Отменить тестовый период " -#: templates/account.php98, templates/account/partials/addon.php:39 +#: templates/account.php109, templates/account/partials/addon.php:42 msgid "Change Plan" msgstr "Изменить план " -#: templates/account.php99, templates/account/partials/addon.php:40 +#: templates/account.php110, templates/account/partials/addon.php:43 msgctxt "verb" msgid "Upgrade" msgstr "Сделать апгрейд" -#: templates/account.php101, templates/account/partials/addon.php42, -#: templates/account/partials/site.php:302 +#: templates/account.php112, templates/account/partials/addon.php45, +#: templates/account/partials/site.php:318 msgctxt "verb" msgid "Downgrade" msgstr "Понизить план " -#: templates/account.php103, templates/add-ons.php130, +#: templates/account.php114, templates/add-ons.php246, #: templates/plugin-info/features.php72, -#: templates/account/partials/addon.php44, -#: templates/account/partials/site.php:31 +#: templates/account/partials/addon.php47, +#: templates/account/partials/site.php:33 msgid "Free" msgstr "Бесплатная " -#: templates/account.php104, templates/account/partials/addon.php:45 -msgid "Activate" -msgstr "Активировать " - -#: templates/account.php105, templates/debug.php371, -#: includes/customizer/class-fs-customizer-upsell-control.php106, -#: templates/account/partials/addon.php:46 +#: templates/account.php116, templates/debug.php373, +#: includes/customizer/class-fs-customizer-upsell-control.php110, +#: templates/account/partials/addon.php:49 msgctxt "as product pricing plan" msgid "Plan" msgstr "Тарифный план " -#: templates/account.php:158 +#: templates/account.php:117 +msgid "Bundle Plan" +msgstr "Bundle Plan" + +#: templates/account.php:191 msgid "Free Trial" msgstr "Бесплатный период пользования " -#: templates/account.php:169 +#: templates/account.php:202 msgid "Account Details" msgstr " Детали" -#: templates/account.php:179 +#: templates/account.php209, templates/forms/data-debug-mode.php:33 +msgid "Start Debug" +msgstr "Start Debug" + +#: templates/account.php:211 +msgid "Stop Debug" +msgstr "Stop Debug" + +#: templates/account.php:218 +msgid "Billing & Invoices" +msgstr "Billing & Invoices" + +#: templates/account.php:229 msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?" msgstr "Удалив личный кабинет, Вы автоматически деактивируете лицензию на Ваш тарифный план %s, которую Вы можете использовать на других сайтах. Если Вы хотите также приостановить регулярные платежи, нажмите на кнопку \"Отмена\" и сначала измените свой тарифный план на бесплатный. Вы уверены, что хотите продолжить удаление?" -#: templates/account.php:181 +#: templates/account.php:231 msgid "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?" msgstr "Удаление личного кабинете не может быть произведено временно. Удалите только в случае если Вы больше не хотите пользоваться %s. Вы уверены, что хотите продолжить удаление? " -#: templates/account.php:184 +#: templates/account.php:234 msgid "Delete Account" msgstr "Удалить личный кабинет" -#: templates/account.php196, templates/account/partials/addon.php159, +#: templates/account.php246, templates/account/partials/addon.php231, #: templates/account/partials/deactivate-license-button.php:35 msgid "Deactivate License" msgstr "Деактивировать лицензию " -#: templates/account.php219, templates/forms/subscription-cancellation.php:125 +#: templates/account.php269, templates/forms/subscription-cancellation.php:125 msgid "Are you sure you want to proceed?" msgstr "Вы уверены, что хотите продолжить?" -#: templates/account.php219, templates/account/partials/addon.php:182 +#: templates/account.php269, templates/account/partials/addon.php:255 msgid "Cancel Subscription" msgstr "Отменить подписку " -#: templates/account.php:247 +#: templates/account.php298, templates/account/partials/addon.php:340 msgctxt "as synchronize" msgid "Sync" msgstr "Синхронизировать " -#: templates/account.php261, templates/debug.php:487 +#: templates/account.php313, templates/debug.php:507 msgid "Name" msgstr "Имя" -#: templates/account.php267, templates/debug.php:488 +#: templates/account.php319, templates/debug.php:508 msgid "Email" msgstr "Электронный адрес " -#: templates/account.php274, templates/debug.php370, templates/debug.php:526 +#: templates/account.php326, templates/debug.php371, templates/debug.php:557 msgid "User ID" msgstr "User ID " -#: templates/account.php:282 +#: templates/account.php344, templates/account.php637, +#: templates/account.php682, templates/debug.php238, templates/debug.php365, +#: templates/debug.php454, templates/debug.php506, templates/debug.php555, +#: templates/debug.php632, templates/account/payments.php35, +#: templates/debug/logger.php:21 +msgid "ID" +msgstr "ID" + +#: templates/account.php:351 msgid "Site ID" msgstr "Site ID" -#: templates/account.php:285 +#: templates/account.php:354 msgid "No ID" msgstr "No ID" -#: templates/account.php290, templates/debug.php243, templates/debug.php372, -#: templates/debug.php453, templates/debug.php490, -#: templates/account/partials/site.php:219 +#: templates/account.php359, templates/debug.php245, templates/debug.php374, +#: templates/debug.php458, templates/debug.php510, +#: templates/account/partials/site.php:227 msgid "Public Key" msgstr "Public Key " -#: templates/account.php296, templates/debug.php373, templates/debug.php454, -#: templates/debug.php491, templates/account/partials/site.php:231 +#: templates/account.php365, templates/debug.php375, templates/debug.php459, +#: templates/debug.php511, templates/account/partials/site.php:239 msgid "Secret Key" msgstr "Secret Key " -#: templates/account.php:299 +#: templates/account.php:368 msgctxt "as secret encryption key missing" msgid "No Secret" msgstr "Нет секрета " -#: templates/account.php318, templates/account/partials/site.php112, -#: templates/account/partials/site.php:114 +#: templates/account.php395, templates/account/partials/site.php120, +#: templates/account/partials/site.php:122 msgid "Trial" msgstr "Тестовый период " -#: templates/account.php337, templates/debug.php531, -#: templates/account/partials/site.php:248 +#: templates/account.php422, templates/debug.php562, +#: templates/account/partials/site.php:260 msgid "License Key" msgstr "Лицензионный ключ " -#: templates/account.php:367 +#: templates/account.php:453 +msgid "Join the Beta program" +msgstr "Join the Beta program" + +#: templates/account.php:459 msgid "not verified" msgstr "не подтвержден " -#: templates/account.php376, templates/account/partials/addon.php:120 +#: templates/account.php468, templates/account/partials/addon.php:190 msgid "Expired" msgstr "Срок действия закончился " -#: templates/account.php:428 +#: templates/account.php:528 msgid "Premium version" msgstr "Премиум версия " -#: templates/account.php:430 +#: templates/account.php:530 msgid "Free version" msgstr "Бесплатная версия " -#: templates/account.php:442 +#: templates/account.php:542 msgid "Verify Email" msgstr "Подтвердите электронный адрес " -#: templates/account.php:453 +#: templates/account.php:553 msgid "Download %s Version" msgstr "Скачайте версию %s" -#: templates/account.php467, templates/account.php649, -#: templates/account/partials/site.php237, -#: templates/account/partials/site.php:255 +#: templates/account.php568, templates/account.php820, +#: templates/account/partials/site.php248, +#: templates/account/partials/site.php:270 msgctxt "verb" msgid "Show" msgstr "Показать " -#: templates/account.php:481 +#: templates/account.php:583 msgid "What is your %s?" msgstr "Какой Ваш %s?" -#: templates/account.php489, templates/account/billing.php:27 +#: templates/account.php591, templates/account/billing.php:21 msgctxt "verb" msgid "Edit" msgstr "Редактировать " -#: templates/account.php:502 +#: templates/account.php:616 msgid "Sites" msgstr "Сайтов " -#: templates/account.php:513 +#: templates/account.php:629 msgid "Search by address" msgstr "Search by address" -#: templates/account.php522, templates/account.php570, templates/debug.php236, -#: templates/debug.php364, templates/debug.php449, templates/debug.php486, -#: templates/debug.php524, templates/debug.php597, -#: templates/account/payments.php35, templates/debug/logger.php:21 -msgid "ID" -msgstr "ID" - -#: templates/account.php523, templates/debug.php:367 +#: templates/account.php638, templates/debug.php:368 msgid "Address" msgstr "Address" -#: templates/account.php:524 +#: templates/account.php:639 msgid "License" msgstr "Лицензия " -#: templates/account.php:525 +#: templates/account.php:640 msgid "Plan" msgstr "Тарифный план " -#: templates/account.php:573 +#: templates/account.php:685 msgctxt "as software license" msgid "License" msgstr "Лицензия " -#: templates/account.php:643 +#: templates/account.php:814 msgctxt "verb" msgid "Hide" msgstr "Спрятать " -#: templates/account.php:686 +#: templates/account.php836, templates/forms/data-debug-mode.php:31 +msgid "Processing" +msgstr "Обработка данных " + +#: templates/account.php:839 +msgid "Get updates for bleeding edge Beta versions of %s." +msgstr "Get updates for bleeding edge Beta versions of %s." + +#: templates/account.php:897 msgid "Cancelling %s" msgstr "Cancelling %s" -#: templates/account.php686, templates/account.php703, +#: templates/account.php897, templates/account.php914, #: templates/forms/subscription-cancellation.php27, -#: templates/forms/deactivation/form.php:117 +#: templates/forms/deactivation/form.php:133 msgid "trial" msgstr "trial" -#: templates/account.php701, templates/forms/deactivation/form.php:134 +#: templates/account.php912, templates/forms/deactivation/form.php:150 msgid "Cancelling %s..." msgstr "Cancelling %s..." -#: templates/account.php704, templates/forms/subscription-cancellation.php28, -#: templates/forms/deactivation/form.php:118 +#: templates/account.php915, templates/forms/subscription-cancellation.php28, +#: templates/forms/deactivation/form.php:134 msgid "subscription" msgstr "subscription" -#: templates/account.php:718 +#: templates/account.php:929 msgid "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?" msgstr "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?" -#: templates/add-ons.php:36 +#: templates/add-ons.php:38 +msgid "View details" +msgstr "Смотреть детальней " + +#: templates/add-ons.php:48 msgid "Add Ons for %s" msgstr "Функционал для %s" -#: templates/add-ons.php:44 -msgid "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." -msgstr "Мы не можем загрузить список плагинов. Вероятно, произошла какая-то ошибка с нашей стороны. Пожалуйста, вернитесь на страницу через несколько минут. " +#: templates/add-ons.php:58 +msgid "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." +msgstr "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." -#: templates/add-ons.php:139 -msgid "View details" -msgstr "Смотреть детальней " +#: templates/add-ons.php:229 +msgctxt "active add-on" +msgid "Active" +msgstr "Active" + +#: templates/add-ons.php:230 +msgctxt "installed add-on" +msgid "Installed" +msgstr "Installed" -#: templates/admin-notice.php13, templates/forms/license-activation.php208, +#: templates/admin-notice.php13, templates/forms/license-activation.php207, #: templates/forms/resend-key.php:77 msgctxt "as close a window" msgid "Dismiss" @@ -1447,11 +1538,11 @@ msgstr "Процесс установки уже начат и может зан msgid "Cancel Installation" msgstr "Отменить установку " -#: templates/checkout.php:172 +#: templates/checkout.php:180 msgid "Checkout" msgstr "Оплата " -#: templates/checkout.php:172 +#: templates/checkout.php:180 msgid "PCI compliant" msgstr "Жалоба PCI" @@ -1473,7 +1564,7 @@ msgstr "Отправить письмо активации еще раз " msgid "Thanks %s!" msgstr "Спасибо %s" -#: templates/connect.php172, templates/forms/license-activation.php:43 +#: templates/connect.php172, templates/forms/license-activation.php:46 msgid "Agree & Activate License" msgstr "Согласиться и активировать лицензию " @@ -1521,15 +1612,16 @@ msgstr "Alternatively, you can skip it for now and activate the license later, i msgid "During the update process we detected %s site(s) in the network that are still pending your attention." msgstr "During the update process we detected %s site(s) in the network that are still pending your attention." -#: templates/connect.php253, templates/forms/license-activation.php:46 +#: templates/connect.php253, templates/forms/data-debug-mode.php35, +#: templates/forms/license-activation.php:49 msgid "License key" msgstr "Лицензионный ключ" -#: templates/connect.php256, templates/forms/license-activation.php:19 +#: templates/connect.php256, templates/forms/license-activation.php:22 msgid "Can't find your license key?" msgstr "Не можете найти лицензионный ключ? " -#: templates/connect.php315, templates/connect.php630, +#: templates/connect.php315, templates/connect.php652, #: templates/forms/deactivation/retry-skip.php:20 msgctxt "verb" msgid "Skip" @@ -1579,7 +1671,7 @@ msgstr "Активация, деактивация и деинсталляция msgid "Newsletter" msgstr "Рассылка " -#: templates/connect.php391, templates/forms/license-activation.php:38 +#: templates/connect.php391, templates/forms/license-activation.php:41 msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license." msgstr "%1$s будет периодически присылать информацию %2$s с целью проверки безопасности, сообщения об обновлении функционала и подтверждения действия Вашей лицензии. " @@ -1591,10 +1683,6 @@ msgstr "Какие предоставляются разрешения?" msgid "Don't have a license key?" msgstr "У Вас нет лицензионного ключа?" -#: templates/connect.php:418 -msgid "Activate Free Version" -msgstr "Активировать бесплатную версию?" - #: templates/connect.php:420 msgid "Have a license key?" msgstr "У Вас есть лицензионный ключ?" @@ -1611,12 +1699,12 @@ msgstr "License Agreement" msgid "Terms of Service" msgstr "Пользовательское соглашение" -#: templates/connect.php:766 +#: templates/connect.php:805 msgctxt "as in the process of sending an email" msgid "Sending email" msgstr "Электронное письмо отправляется Вам на почту " -#: templates/connect.php:767 +#: templates/connect.php:806 msgctxt "as activating plugin" msgid "Activating" msgstr "Активация " @@ -1644,8 +1732,8 @@ msgctxt "as code debugging" msgid "Debugging" msgstr "Устранение ошибок" -#: templates/debug.php54, templates/debug.php248, templates/debug.php374, -#: templates/debug.php:492 +#: templates/debug.php54, templates/debug.php250, templates/debug.php376, +#: templates/debug.php:512 msgid "Actions" msgstr "Действия " @@ -1681,191 +1769,195 @@ msgstr "Загрузить опцию базы данных " msgid "Set DB Option" msgstr "Установить опцию базы данных " -#: templates/debug.php:180 +#: templates/debug.php:182 msgid "Key" msgstr "Ключ " -#: templates/debug.php:181 +#: templates/debug.php:183 msgid "Value" msgstr "Значение " -#: templates/debug.php:197 +#: templates/debug.php:199 msgctxt "as software development kit versions" msgid "SDK Versions" msgstr "Версии SDK" -#: templates/debug.php:202 +#: templates/debug.php:204 msgid "SDK Path" msgstr "путь SDK" -#: templates/debug.php203, templates/debug.php:242 +#: templates/debug.php205, templates/debug.php:244 msgid "Module Path" msgstr "Путь модуля " -#: templates/debug.php:204 +#: templates/debug.php:206 msgid "Is Active" msgstr "активный " -#: templates/debug.php232, templates/debug/plugins-themes-sync.php:35 +#: templates/debug.php234, templates/debug/plugins-themes-sync.php:35 msgid "Plugins" msgstr "Плагины " -#: templates/debug.php232, templates/debug/plugins-themes-sync.php:56 +#: templates/debug.php234, templates/debug/plugins-themes-sync.php:56 msgid "Themes" msgstr "Шаблоны " -#: templates/debug.php237, templates/debug.php369, templates/debug.php451, +#: templates/debug.php239, templates/debug.php370, templates/debug.php456, #: templates/debug/scheduled-crons.php:80 msgid "Slug" msgstr "Описательная часть URL " -#: templates/debug.php239, templates/debug.php:450 +#: templates/debug.php241, templates/debug.php:455 msgid "Title" msgstr "Название " -#: templates/debug.php:240 +#: templates/debug.php:242 msgctxt "as application program interface" msgid "API" msgstr "API" -#: templates/debug.php:241 +#: templates/debug.php:243 msgid "Freemius State" msgstr "Cостояние Freemius " -#: templates/debug.php:245 +#: templates/debug.php:247 msgid "Network Blog" msgstr "Network Blog" -#: templates/debug.php:246 +#: templates/debug.php:248 msgid "Network User" msgstr "Network User" -#: templates/debug.php:283 +#: templates/debug.php:285 msgctxt "as connection was successful" msgid "Connected" msgstr "Соединено " -#: templates/debug.php:284 +#: templates/debug.php:286 msgctxt "as connection blocked" msgid "Blocked" msgstr "Заблокировано " -#: templates/debug.php:320 +#: templates/debug.php:322 msgid "Simulate Trial Promotion" msgstr "Simulate Trial Promotion" -#: templates/debug.php:332 +#: templates/debug.php:334 msgid "Simulate Network Upgrade" msgstr "Simulate Network Upgrade" -#: templates/debug.php:358 +#: templates/debug.php:359 msgid "%s Installs" msgstr "%s установок " -#: templates/debug.php:360 +#: templates/debug.php:361 msgctxt "like websites" msgid "Sites" msgstr "Сайтов " -#: templates/debug.php366, templates/account/partials/site.php:148 +#: templates/debug.php367, templates/account/partials/site.php:156 msgid "Blog ID" msgstr "Blog ID" -#: templates/debug.php431, templates/debug.php509, -#: templates/account/partials/addon.php:339 +#: templates/debug.php:372 +msgid "License ID" +msgstr "License ID" + +#: templates/debug.php436, templates/debug.php535, +#: templates/account/partials/addon.php:435 msgctxt "verb" msgid "Delete" msgstr "Удалить" -#: templates/debug.php:445 +#: templates/debug.php:450 msgid "Add Ons of module %s" msgstr "Функционал модуля %s" -#: templates/debug.php:482 +#: templates/debug.php:502 msgid "Users" msgstr "Пользователи " -#: templates/debug.php:489 +#: templates/debug.php:509 msgid "Verified" msgstr "Подтвержден " -#: templates/debug.php:520 +#: templates/debug.php:551 msgid "%s Licenses" msgstr "%s лицензий " -#: templates/debug.php:525 +#: templates/debug.php:556 msgid "Plugin ID" msgstr "ID плагина " -#: templates/debug.php:527 +#: templates/debug.php:558 msgid "Plan ID" msgstr "ID тарифного плана " -#: templates/debug.php:528 +#: templates/debug.php:559 msgid "Quota" msgstr "Выделенный объем памяти" -#: templates/debug.php:529 +#: templates/debug.php:560 msgid "Activated" msgstr "Активирован " -#: templates/debug.php:530 +#: templates/debug.php:561 msgid "Blocking" msgstr "Блокирование " -#: templates/debug.php:532 +#: templates/debug.php:563 msgctxt "as expiration date" msgid "Expiration" msgstr "Срок пользования " -#: templates/debug.php:555 +#: templates/debug.php:590 msgid "Debug Log" msgstr "Журнал устранения ошибок " -#: templates/debug.php:559 +#: templates/debug.php:594 msgid "All Types" msgstr "Все типы" -#: templates/debug.php:566 +#: templates/debug.php:601 msgid "All Requests" msgstr "Все запросы " -#: templates/debug.php571, templates/debug.php600, +#: templates/debug.php606, templates/debug.php635, #: templates/debug/logger.php:25 msgid "File" msgstr "Файл" -#: templates/debug.php572, templates/debug.php598, +#: templates/debug.php607, templates/debug.php633, #: templates/debug/logger.php:23 msgid "Function" msgstr "Функция " -#: templates/debug.php:573 +#: templates/debug.php:608 msgid "Process ID" msgstr "ID процесса " -#: templates/debug.php:574 +#: templates/debug.php:609 msgid "Logger" msgstr "Программа сохранения изменений " -#: templates/debug.php575, templates/debug.php599, +#: templates/debug.php610, templates/debug.php634, #: templates/debug/logger.php:24 msgid "Message" msgstr "Сообщение " -#: templates/debug.php:577 +#: templates/debug.php:612 msgid "Filter" msgstr "Фильтр " -#: templates/debug.php:585 +#: templates/debug.php:620 msgid "Download" msgstr "Скачать " -#: templates/debug.php596, templates/debug/logger.php:22 +#: templates/debug.php631, templates/debug/logger.php:22 msgid "Type" msgstr "Тип" -#: templates/debug.php601, templates/debug/logger.php:26 +#: templates/debug.php636, templates/debug/logger.php:26 msgid "Timestamp" msgstr "Маркер времени " @@ -1892,53 +1984,53 @@ msgstr "Freemius API" msgid "Requests" msgstr "Запросы " -#: templates/account/billing.php:28 +#: templates/account/billing.php:22 msgctxt "verb" msgid "Update" msgstr "Обновить " -#: templates/account/billing.php:39 +#: templates/account/billing.php:33 msgid "Billing" msgstr "Система оплаты " -#: templates/account/billing.php44, templates/account/billing.php:44 +#: templates/account/billing.php38, templates/account/billing.php:38 msgid "Business name" msgstr "Название бизнеса " -#: templates/account/billing.php45, templates/account/billing.php:45 +#: templates/account/billing.php39, templates/account/billing.php:39 msgid "Tax / VAT ID" msgstr "ID налога/НДС " -#: templates/account/billing.php48, templates/account/billing.php48, -#: templates/account/billing.php49, templates/account/billing.php:49 +#: templates/account/billing.php42, templates/account/billing.php42, +#: templates/account/billing.php43, templates/account/billing.php:43 msgid "Address Line %d" msgstr "Поле для адреса %d" -#: templates/account/billing.php52, templates/account/billing.php:52 +#: templates/account/billing.php46, templates/account/billing.php:46 msgid "City" msgstr "Город " -#: templates/account/billing.php52, templates/account/billing.php:52 +#: templates/account/billing.php46, templates/account/billing.php:46 msgid "Town" msgstr "Населенный пункт " -#: templates/account/billing.php53, templates/account/billing.php:53 +#: templates/account/billing.php47, templates/account/billing.php:47 msgid "ZIP / Postal Code" msgstr "Индекс " -#: templates/account/billing.php:308 +#: templates/account/billing.php:302 msgid "Country" msgstr "Страна " -#: templates/account/billing.php:310 +#: templates/account/billing.php:304 msgid "Select Country" msgstr "Выбрать страну " -#: templates/account/billing.php317, templates/account/billing.php:318 +#: templates/account/billing.php311, templates/account/billing.php:312 msgid "State" msgstr "Штат " -#: templates/account/billing.php317, templates/account/billing.php:318 +#: templates/account/billing.php311, templates/account/billing.php:312 msgid "Province" msgstr "Провинция " @@ -2190,11 +2282,27 @@ msgstr "Отмена " msgid "Become an affiliate" msgstr "Стать партнером" -#: templates/forms/license-activation.php:20 +#: templates/forms/data-debug-mode.php:25 +msgid "Please enter the license key to enable the debug mode:" +msgstr "Please enter the license key to enable the debug mode:" + +#: templates/forms/data-debug-mode.php:27 +msgid "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:" +msgstr "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:" + +#: templates/forms/data-debug-mode.php:32 +msgid "Submit" +msgstr "Submit" + +#: templates/forms/data-debug-mode.php:36 +msgid "User key" +msgstr "User key" + +#: templates/forms/license-activation.php:23 msgid "Please enter the license key that you received in the email right after the purchase:" msgstr "Пожалуйста введите лицензионный ключ, который Вы получили на электронный адрес сразу после покупки. " -#: templates/forms/license-activation.php:25 +#: templates/forms/license-activation.php:28 msgid "Update License" msgstr "Обновить лицензию" @@ -2274,7 +2382,7 @@ msgid "Proceed" msgstr "Proceed" #: templates/forms/subscription-cancellation.php191, -#: templates/forms/deactivation/form.php:150 +#: templates/forms/deactivation/form.php:171 msgid "Cancel %s & Proceed" msgstr "Cancel %s & Proceed" @@ -2286,38 +2394,42 @@ msgstr "Вы уже на расстоянии одного клика от на msgid "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial." msgstr "В соответствии с руководством WordPress.org, перед началом тестового периода мы просим, чтобы Вы присоединились к нашему сообществу предоставив информацию о Вашем сайте и также Ваши личные данные, тем самым разрешив %s периодически отправлять сообщения на %s для уведомлений об обновлениях и подтверждения Вашего тестового периода. " -#: templates/js/style-premium-theme.php:37 +#: templates/js/style-premium-theme.php:39 msgid "Premium" msgstr "Премиум " -#: templates/partials/network-activation.php:23 +#: templates/js/style-premium-theme.php:42 +msgid "Beta" +msgstr "Beta" + +#: templates/partials/network-activation.php:27 msgid "Activate license on all sites in the network." msgstr "Activate license on all sites in the network." -#: templates/partials/network-activation.php:24 +#: templates/partials/network-activation.php:28 msgid "Apply on all sites in the network." msgstr "Apply on all sites in the network." -#: templates/partials/network-activation.php:27 +#: templates/partials/network-activation.php:31 msgid "Activate license on all pending sites." msgstr "Activate license on all pending sites." -#: templates/partials/network-activation.php:28 +#: templates/partials/network-activation.php:32 msgid "Apply on all pending sites." msgstr "Apply on all pending sites." -#: templates/partials/network-activation.php36, -#: templates/partials/network-activation.php:68 +#: templates/partials/network-activation.php40, +#: templates/partials/network-activation.php:74 msgid "allow" msgstr "allow" -#: templates/partials/network-activation.php38, -#: templates/partials/network-activation.php:70 +#: templates/partials/network-activation.php43, +#: templates/partials/network-activation.php:77 msgid "delegate" msgstr "delegate" -#: templates/partials/network-activation.php41, -#: templates/partials/network-activation.php:73 +#: templates/partials/network-activation.php47, +#: templates/partials/network-activation.php:81 msgid "skip" msgstr "skip" @@ -2343,32 +2455,33 @@ msgstr "Осталось %s " msgid "Last license" msgstr "Последняя лицензия " -#: templates/account/partials/addon.php:115 +#. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the +#. subscription' +#: templates/account/partials/addon.php:29 +msgid "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s." +msgstr "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s." + +#: templates/account/partials/addon.php:185 msgid "Cancelled" msgstr "Аннулирована " -#: templates/account/partials/addon.php:125 +#: templates/account/partials/addon.php:195 msgid "No expiration" msgstr "Бессрочный период пользования " -#: templates/account/partials/addon.php264, -#: templates/account/partials/addon.php:317 -msgid "Activate this add-on" -msgstr "Активируйте этот функционал " - -#: templates/account/partials/site.php:181 +#: templates/account/partials/site.php:189 msgid "Owner Name" msgstr "Owner Name" -#: templates/account/partials/site.php:193 +#: templates/account/partials/site.php:201 msgid "Owner Email" msgstr "Owner Email" -#: templates/account/partials/site.php:205 +#: templates/account/partials/site.php:213 msgid "Owner ID" msgstr "Owner ID" -#: templates/account/partials/site.php:270 +#: templates/account/partials/site.php:286 msgid "Subscription" msgstr "Subscription" @@ -2380,47 +2493,47 @@ msgstr "Извините за неудобство. Мы будем рады п msgid "Contact Support" msgstr "Связаться со службой поддержки" -#: templates/forms/deactivation/form.php:59 +#: templates/forms/deactivation/form.php:64 msgid "Anonymous feedback" msgstr "Анонимный отзыв " -#: templates/forms/deactivation/form.php:66 +#: templates/forms/deactivation/form.php:70 msgid "Deactivate" msgstr "Деактивировать " -#: templates/forms/deactivation/form.php:68 +#: templates/forms/deactivation/form.php:72 msgid "Activate %s" msgstr "Активировать %s" -#: templates/forms/deactivation/form.php:80 +#: templates/forms/deactivation/form.php:87 msgid "Quick Feedback" msgstr "Quick Feedback" -#: templates/forms/deactivation/form.php:84 +#: templates/forms/deactivation/form.php:91 msgid "If you have a moment, please let us know why you are %s" msgstr "Если у Вас есть время, пожалуйста, сообщите причину почему Вы %s" -#: templates/forms/deactivation/form.php:84 +#: templates/forms/deactivation/form.php:91 msgid "deactivating" msgstr "Деактивация " -#: templates/forms/deactivation/form.php:84 +#: templates/forms/deactivation/form.php:91 msgid "switching" msgstr "Переключение " -#: templates/forms/deactivation/form.php:332 +#: templates/forms/deactivation/form.php:365 msgid "Submit & %s" msgstr "Отправить&%s" -#: templates/forms/deactivation/form.php:353 +#: templates/forms/deactivation/form.php:386 msgid "Kindly tell us the reason so we can improve." msgstr "Пожалуйста, укажите причину, чтобы мы могли исправиться. " -#: templates/forms/deactivation/form.php:478 +#: templates/forms/deactivation/form.php:511 msgid "Yes - %s" msgstr "Да - %s" -#: templates/forms/deactivation/form.php:485 +#: templates/forms/deactivation/form.php:518 msgid "Skip & %s" msgstr "Пропустить & %s" diff --git a/external/Freemius/languages/freemius-ta.mo b/external/Freemius/languages/freemius-ta.mo new file mode 100755 index 00000000..eb8eef94 Binary files /dev/null and b/external/Freemius/languages/freemius-ta.mo differ diff --git a/external/Freemius/languages/freemius-ta.po b/external/Freemius/languages/freemius-ta.po new file mode 100755 index 00000000..113c2e22 --- /dev/null +++ b/external/Freemius/languages/freemius-ta.po @@ -0,0 +1,2548 @@ +# Copyright (C) 2019 freemius +# This file is distributed under the same license as the freemius package. +# Translators: +# Sankar Srinivasan , 2019 +msgid "" +msgstr "" +"Project-Id-Version: WordPress SDK\n" +"Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" +"POT-Creation-Date: \n" +"PO-Revision-Date: 2019-10-07 15:33+0000\n" +"Last-Translator: Vova Feldman \n" +"Language: ta\n" +"Language-Team: Tamil (http://www.transifex.com/freemius/wordpress-sdk/language/ta/)\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"MIME-Version: 1.0\n" +"X-Poedit-Basepath: ..\n" +"X-Poedit-KeywordsList: get_text_inline;fs_text_inline;fs_echo_inline;fs_esc_js_inline;fs_esc_attr_inline;fs_esc_attr_echo_inline;fs_esc_html_inline;fs_esc_html_echo_inline;get_text_x_inline:1,2c;fs_text_x_inline:1,2c;fs_echo_x_inline:1,2c;fs_esc_attr_x_inline:1,2c;fs_esc_js_x_inline:1,2c;fs_esc_js_echo_x_inline:1,2c;fs_esc_html_x_inline:1,2c;fs_esc_html_echo_x_inline:1,2c\n" +"X-Poedit-SearchPath-0: .\n" +"X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Poedit-SourceCharset: UTF-8\n" + +#: includes/class-freemius.php1880, templates/account.php:840 +msgid "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned." +msgstr "எச்சரிக்கை: %sன் முன்னோட்ட Beta பதிப்பின் மேம்பட்ட வடிவம் பழைய பதிப்பின் மீது நிறுவப்படுகிறது. " + +#: includes/class-freemius.php:1887 +msgid "Would you like to proceed with the update?" +msgstr "மேம்படுத்தப்பட்ட பதிப்பில் தொடர விரும்புகிறீர்களா?" + +#: includes/class-freemius.php:2095 +msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error." +msgstr "ப்ளக்இன் முக்கிய கோப்பை Freemius SDKவால் கண்டறிய முடியவில்லை. தயவுசெய்து பின்வரும் செய்தியுடன் sdk@freemius.comக்கு மின்னஞ்சல் அனுப்பவும்" + +#: includes/class-freemius.php:2097 +msgid "Error" +msgstr "தவறு" + +#: includes/class-freemius.php:2491 +msgid "I found a better %s" +msgstr "எனக்கு வேறு ஒரு நல்ல %s கிடைத்துவிட்டது" + +#: includes/class-freemius.php:2493 +msgid "What's the %s's name?" +msgstr "%sன் பெயர் என்ன?" + +#: includes/class-freemius.php:2499 +msgid "It's a temporary %s. I'm just debugging an issue." +msgstr "இது தற்காலிக %s. தவறை சரிசெய்ய முயற்சிக்கிறேன்" + +#: includes/class-freemius.php:2501 +msgid "Deactivation" +msgstr "செயல்நிறுத்து" + +#: includes/class-freemius.php:2502 +msgid "Theme Switch" +msgstr "தீம் மாற்றம்" + +#: includes/class-freemius.php2511, templates/forms/resend-key.php:24 +msgid "Other" +msgstr "மற்றவை" + +#: includes/class-freemius.php:2519 +msgid "I no longer need the %s" +msgstr "இனி எனக்கு %s தேவையில்லை" + +#: includes/class-freemius.php:2526 +msgid "I only needed the %s for a short period" +msgstr "குறுகிய காலத்திற்கு மட்டும் %s போதும்" + +#: includes/class-freemius.php:2532 +msgid "The %s broke my site" +msgstr "%s எனது இணையதளத்தை செயலிழக்க வைத்துவிட்டது" + +#: includes/class-freemius.php:2539 +msgid "The %s suddenly stopped working" +msgstr "%s திடீரென நின்றுவிட்டது" + +#: includes/class-freemius.php:2549 +msgid "I can't pay for it anymore" +msgstr "இதற்குமேல் பணம் செலுத்தமாட்டேன்" + +#: includes/class-freemius.php:2551 +msgid "What price would you feel comfortable paying?" +msgstr "என்ன விலை உங்களுக்கு வசதியாக இருக்கும்?" + +#: includes/class-freemius.php:2557 +msgid "I don't like to share my information with you" +msgstr "என் தனிப்பட்ட தகவலை உங்களோடு பகிர விரும்பவில்லை." + +#: includes/class-freemius.php:2578 +msgid "The %s didn't work" +msgstr "%s வேலை செய்யவில்லை" + +#: includes/class-freemius.php:2588 +msgid "I couldn't understand how to make it work" +msgstr "இதை எப்படி உபயோகிப்பது என்று எனக்குப் புரியவில்லை" + +#: includes/class-freemius.php:2596 +msgid "The %s is great, but I need specific feature that you don't support" +msgstr "%s நல்லதுதான். ஆனால், எனக்கு தேவைப்படும் வசதி இதில் இல்லை" + +#: includes/class-freemius.php:2598 +msgid "What feature?" +msgstr "என்ன வசதி?" + +#: includes/class-freemius.php:2602 +msgid "The %s is not working" +msgstr "%s சரிவர வேலை செய்யவில்லை" + +#: includes/class-freemius.php:2604 +msgid "Kindly share what didn't work so we can fix it for future users..." +msgstr "என்ன வேலை செய்யவில்லை என்பதை விளக்கமாக சொன்னால், அதை நாங்கள் சரி செய்வோம்." + +#: includes/class-freemius.php:2608 +msgid "It's not what I was looking for" +msgstr "நான் எதிர்பார்த்தது இதுவல்ல." + +#: includes/class-freemius.php:2610 +msgid "What you've been looking for?" +msgstr "நீங்கள் என்ன எதிர்பார்க்கிறீர்கள்?" + +#: includes/class-freemius.php:2614 +msgid "The %s didn't work as expected" +msgstr "%s நான் எதிர்பார்த்தது போல் இல்லை" + +#: includes/class-freemius.php:2616 +msgid "What did you expect?" +msgstr "நீங்கள் என்ன எதிர்பார்த்தீர்கள்?" + +#: includes/class-freemius.php3471, templates/debug.php:20 +msgid "Freemius Debug" +msgstr "Freemius தவறுநீக்கி Debug" + +#: includes/class-freemius.php:4223 +msgid "I don't know what is cURL or how to install it, help me!" +msgstr "cURL பற்றியோ, அதை நிறுவுவது பற்றியோ எனக்குத் தெரியாது. உதவுங்கள்." + +#: includes/class-freemius.php:4225 +msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update." +msgstr "இந்தப் பிரச்சினை சீராக உங்கள் hosting நிறுவனத்தை தொடர்பு கொள்கிறோம். பதில் வந்ததும் %sக்கு மின்னஞ்சல் வரும்." + +#: includes/class-freemius.php:4232 +msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again." +msgstr "அருமை, cURLஐ நிறுவி அதை php.ini கோப்பில் அழைக்கவும். அதோடு, disable_functionsஐ php.iniல் தேடி, 'curl' என்று துவங்கும் செயல்படா மாறிகளை அழிக்கவும். வெற்றிகரமாக செயல்படுவதை உறுதிசெய்ய 'phpinfo()' பயன்படுத்தவும். செயல்பாடு துவங்கியதும் , %sன் செயல்பாட்டை ஒருமுறை நிறுத்தி, மீண்டும் செயல்படுத்தவும்." + +#: includes/class-freemius.php:4337 +msgid "Yes - do your thing" +msgstr "ம்... கிளப்புங்கள்" + +#: includes/class-freemius.php:4342 +msgid "No - just deactivate" +msgstr "வேணாம்பா... கண்ண கட்டுது" + +#: includes/class-freemius.php4387, includes/class-freemius.php4881, +#: includes/class-freemius.php6032, includes/class-freemius.php13153, +#: includes/class-freemius.php16558, includes/class-freemius.php16646, +#: includes/class-freemius.php16812, includes/class-freemius.php19040, +#: includes/class-freemius.php19381, includes/class-freemius.php19391, +#: includes/class-freemius.php20051, includes/class-freemius.php20924, +#: includes/class-freemius.php21039, includes/class-freemius.php21183, +#: templates/add-ons.php:57 +msgctxt "exclamation" +msgid "Oops" +msgstr "அரே ஓ சம்போ!" + +#: includes/class-freemius.php:4456 +msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience." +msgstr "இதைச் சரிசெய்ய வாய்ப்பளித்ததற்கு நன்றி. எங்கள் தொழில்நுட்ப பணியாளருக்கு இதுகுறித்து செய்தி அனுப்பியுள்ளோம். %sக்கு தகவல் வந்ததும் தொடர்பு கொள்கிறோம். தங்கள் பொறுமைக்கு நன்றி." + +#: includes/class-freemius.php:4878 +msgctxt "addonX cannot run without pluginY" +msgid "%s cannot run without %s." +msgstr "%s இல்லாமல் %s இயங்காது" + +#: includes/class-freemius.php:4879 +msgctxt "addonX cannot run..." +msgid "%s cannot run without the plugin." +msgstr "ப்ளக்இன் இல்லாமல் %s இயங்காது" + +#: includes/class-freemius.php5052, includes/class-freemius.php5077, +#: includes/class-freemius.php:20122 +msgid "Unexpected API error. Please contact the %s's author with the following error." +msgstr "எதிர்பாரா API தவறு. பின்வரும் செய்தியோடு %sன் ஆக்கியோரைத் தொடர்பு கொள்ளவும்" + +#: includes/class-freemius.php:5720 +msgid "Premium %s version was successfully activated." +msgstr "%s விலையுள்ள பதிப்பு வெற்றிகரமாக செயல்பாட்டுக்கு வந்தது." + +#: includes/class-freemius.php5732, includes/class-freemius.php:7599 +msgctxt "" +msgid "W00t" +msgstr "W00t" + +#: includes/class-freemius.php:5747 +msgid "You have a %s license." +msgstr "உங்களிடம் %sன் உரிமம் உள்ளது" + +#: includes/class-freemius.php5751, includes/class-freemius.php15975, +#: includes/class-freemius.php15986, includes/class-freemius.php19292, +#: includes/class-freemius.php19642, includes/class-freemius.php19711, +#: includes/class-freemius.php:19876 +msgctxt "interjection expressing joy or exuberance" +msgid "Yee-haw" +msgstr "Yee-haw" + +#: includes/class-freemius.php:6015 +msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license." +msgstr "ஆட் ஆன் விலையுள்ளது என்பதால் %sன் விலையில்லா முன்னோட்டம் ரத்தானது. நீங்கள் உரிமம் வாங்கிப் பயன்பாட்டைத் தொடரலாம்." + +#: includes/class-freemius.php:6019 +msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin." +msgstr "%s ஒரு விலையுள்ள ஆட்ஆன். ப்ளக்இன் செயல்பட நீங்கள் உரிமம் வாங்கவேண்டும்" + +#: includes/class-freemius.php6028, templates/add-ons.php186, +#: templates/account/partials/addon.php:381 +msgid "More information about %s" +msgstr "%s குறித்த மேலதிக தகவல்" + +#: includes/class-freemius.php:6029 +msgid "Purchase License" +msgstr "உரிமம் வாங்குங்கள்" + +#: includes/class-freemius.php6964, templates/connect.php:163 +msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s." +msgstr "%s அஞ்சலகத்திற்கு %s குறித்த செயல்பாட்டு மின்னஞ்சல் வந்துசேரும். %sக்கு வந்துசேர மின்னஞ்சலின் ஆக்டிவேசன் பட்டனை அழுத்தவும்." + +#: includes/class-freemius.php:6968 +msgid "start the trial" +msgstr "வெள்ளோட்டம் துவங்கலாம்" + +#: includes/class-freemius.php6969, templates/connect.php:167 +msgid "complete the install" +msgstr "நிறுவுதலை முடிக்கவும்" + +#: includes/class-freemius.php:7081 +msgid "You are just one step away - %s" +msgstr "இன்னும் ஒருபடி அருகில் - %s" + +#: includes/class-freemius.php:7084 +msgctxt "%s - plugin name. As complete \"PluginX\" activation now" +msgid "Complete \"%s\" Activation Now" +msgstr "\"%s\" செயல்படுத்தலை முடியுங்கள்" + +#: includes/class-freemius.php:7162 +msgid "We made a few tweaks to the %s, %s" +msgstr "%s, %sக்கு சில சுவாரஸ்யங்களை உருவாக்கியிருக்கிறோம்" + +#: includes/class-freemius.php:7166 +msgid "Opt in to make \"%s\" better!" +msgstr "\"%s\"ஐ சிறப்பானதாக்க தேர்வு செய்யுங்கள்" + +#: includes/class-freemius.php:7598 +msgid "The upgrade of %s was successfully completed." +msgstr "%sன் மேம்படுத்தல் முடிந்தது" + +#: includes/class-freemius.php9802, includes/class-fs-plugin-updater.php1038, +#: includes/class-fs-plugin-updater.php1233, +#: includes/class-fs-plugin-updater.php1240, +#: templates/auto-installation.php:32 +msgid "Add-On" +msgstr "ஆட் ஆன்" + +#: includes/class-freemius.php9804, templates/account.php335, +#: templates/account.php343, templates/debug.php360, templates/debug.php:551 +msgid "Plugin" +msgstr "ப்ளக்இன்" + +#: includes/class-freemius.php9805, templates/account.php336, +#: templates/account.php344, templates/debug.php360, templates/debug.php551, +#: templates/forms/deactivation/form.php:71 +msgid "Theme" +msgstr "தீம்" + +#: includes/class-freemius.php:12596 +msgid "An unknown error has occurred while trying to set the user's beta mode." +msgstr "உபயோகிப்பாளரின் பீட்டாவை செயல்படுத்துகையில், புதிய தவறு உருவாகியுள்ளது." + +#: includes/class-freemius.php:13020 +msgid "Invalid site details collection." +msgstr "தவறான தள விவர சேர்ப்பு" + +#: includes/class-freemius.php:13140 +msgid "We couldn't find your email address in the system, are you sure it's the right address?" +msgstr "உங்கள் மின்னஞ்சல் முகவரியைக் காணவில்லை. நீங்கள் அளித்தது சரியானதா?. " + +#: includes/class-freemius.php:13142 +msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?" +msgstr "இந்த மின்னஞ்சலின் பதிவில் எந்த உரிமமும் இல்லை. தங்கள் மின்னஞ்சல் சரியானதா?" + +#: includes/class-freemius.php:13416 +msgid "Account is pending activation." +msgstr "கணக்கு செயல்பாடு முடிவடையவில்லை." + +#: includes/class-freemius.php13528, +#: templates/forms/premium-versions-upgrade-handler.php:47 +msgid "Buy a license now" +msgstr "புது உரிமம் வாங்குங்கள்" + +#: includes/class-freemius.php13540, +#: templates/forms/premium-versions-upgrade-handler.php:46 +msgid "Renew your license now" +msgstr "உரிமத்தை புதுப்பியுங்கள்" + +#: includes/class-freemius.php:13544 +msgid "%s to access version %s security & feature updates, and support." +msgstr "%s பாதுகாப்பு மேம்படுத்தல் மற்றும் உதவிக்கு %s" + +#: includes/class-freemius.php:15957 +msgid "%s activation was successfully completed." +msgstr "%s செயல்படுத்தல் வெற்றிகரமாக முடிந்தது." + +#: includes/class-freemius.php:15971 +msgid "Your account was successfully activated with the %s plan." +msgstr "%s திட்டத்தில் உங்கள் கணக்கின் செயல்பாடு துவங்கியது." + +#: includes/class-freemius.php15982, includes/class-freemius.php:19707 +msgid "Your trial has been successfully started." +msgstr "உங்கள் வெள்ளோட்டம் துவங்கியது" + +#: includes/class-freemius.php16556, includes/class-freemius.php16644, +#: includes/class-freemius.php:16810 +msgid "Couldn't activate %s." +msgstr "%sஐ செயல்படுத்த முடியவில்லை." + +#: includes/class-freemius.php16557, includes/class-freemius.php16645, +#: includes/class-freemius.php:16811 +msgid "Please contact us with the following message:" +msgstr "பின்வரும் செய்தியோடு எங்களைத் தொடர்பு கொள்ளுங்கள்" + +#: includes/class-freemius.php16641, templates/forms/data-debug-mode.php:162 +msgid "An unknown error has occurred." +msgstr "என்னதென்றே தெரியாத ஒரு தவறு நேர்ந்துவிட்டது" + +#: includes/class-freemius.php17168, includes/class-freemius.php:22082 +msgid "Upgrade" +msgstr "மேம்படுத்து" + +#: includes/class-freemius.php:17174 +msgid "Start Trial" +msgstr "வெள்ளோட்டம் துவக்கு" + +#: includes/class-freemius.php:17176 +msgid "Pricing" +msgstr "விலை விவரம்" + +#: includes/class-freemius.php17256, includes/class-freemius.php:17258 +msgid "Affiliation" +msgstr "புரிந்துணர்வு" + +#: includes/class-freemius.php17286, includes/class-freemius.php17288, +#: templates/account.php183, templates/debug.php:326 +msgid "Account" +msgstr "கணக்கு" + +#: includes/class-freemius.php17302, includes/class-freemius.php17304, +#: includes/customizer/class-fs-customizer-support-section.php:60 +msgid "Contact Us" +msgstr "தொடர்பு கொள்ளுங்கள்" + +#: includes/class-freemius.php17315, includes/class-freemius.php17317, +#: includes/class-freemius.php22096, templates/account.php111, +#: templates/account/partials/addon.php:44 +msgid "Add-Ons" +msgstr "ஆட்-ஆன்ஸ்" + +#: includes/class-freemius.php:17351 +msgctxt "ASCII arrow left icon" +msgid "←" +msgstr "←" + +#: includes/class-freemius.php:17351 +msgctxt "ASCII arrow right icon" +msgid "➤" +msgstr "➤" + +#: includes/class-freemius.php17353, templates/pricing.php:103 +msgctxt "noun" +msgid "Pricing" +msgstr "விலை விவரம்" + +#: includes/class-freemius.php17566, +#: includes/customizer/class-fs-customizer-support-section.php:67 +msgid "Support Forum" +msgstr "உதவி மையம்" + +#: includes/class-freemius.php:18536 +msgid "Your email has been successfully verified - you are AWESOME!" +msgstr "உங்கள் மின்னஞ்சல் சரிபார்க்கப்பட்டது - நன்றி!" + +#: includes/class-freemius.php:18537 +msgctxt "a positive response" +msgid "Right on" +msgstr "Right on" + +#: includes/class-freemius.php:19041 +msgid "seems like the key you entered doesn't match our records." +msgstr "seems like the key you entered doesn't match our records." + +#: includes/class-freemius.php:19065 +msgid "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." +msgstr "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." + +#: includes/class-freemius.php:19283 +msgid "Your %s Add-on plan was successfully upgraded." +msgstr "உங்கள் %s ஆட்-ஆன் திட்டம் மேம்படுத்தப்பட்டது." + +#: includes/class-freemius.php:19285 +msgid "%s Add-on was successfully purchased." +msgstr "%s ஆட்-ஆனை வாங்கிவிட்டீர்கள்." + +#: includes/class-freemius.php:19288 +msgid "Download the latest version" +msgstr "புதிய பதிப்பை பதிவிறக்கலாம்" + +#: includes/class-freemius.php:19374 +msgid "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s" +msgstr "%1$s சரியாகச் செயல்பட அவசியமான Freemius APIயை உங்கள் செர்வர் தடை செய்கிறது. %2$sயை செயல்பட வைக்க உங்கள் hosting நிறுவனத்தை அணுகவும்." + +#: includes/class-freemius.php19380, includes/class-freemius.php19390, +#: includes/class-freemius.php19835, includes/class-freemius.php:19924 +msgid "Error received from the server:" +msgstr "செர்வரிடம் இருந்து தவறுச் செய்தி வந்திருக்கிறது." + +#: includes/class-freemius.php:19390 +msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again." +msgstr "சரிபார்க்கும் வகையினங்களில் ஏதோ ஒன்று தவறுபோல் தெரிகிறது. உங்கள் Public Key, Secret Key & User ID ஆகியவற்றை சரிபார்த்து மீண்டும் முயற்சிக்கவும்." + +#: includes/class-freemius.php19604, includes/class-freemius.php19840, +#: includes/class-freemius.php19895, includes/class-freemius.php:19998 +msgctxt "" +msgid "Hmm" +msgstr "Hmm" + +#: includes/class-freemius.php:19617 +msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry." +msgstr "நீங்கள் இன்னும் %s திட்டத்திலேயே இருப்பதாகத் தெரிகிறது. நீங்கள் திட்டத்தை மாற்றிய பின்னர் இப்படி இருந்தால், அது எங்கள் தவறு. மன்னிக்கவும். " + +#: includes/class-freemius.php19618, templates/account.php113, +#: templates/add-ons.php250, templates/account/partials/addon.php:46 +msgctxt "trial period" +msgid "Trial" +msgstr "வெள்ளோட்டம்" + +#: includes/class-freemius.php:19623 +msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s." +msgstr "என் திட்டத்தை மேம்படுத்திய பின்னும், என் உரிமம் %s என்பதாகவே காட்டுகிறது." + +#: includes/class-freemius.php19627, includes/class-freemius.php:19686 +msgid "Please contact us here" +msgstr "எங்களை இங்கு அணுகலாம்" + +#: includes/class-freemius.php:19638 +msgid "Your plan was successfully activated." +msgstr "உங்கள் தேர்ந்தெடுத்த திட்டம் துவங்கியது." + +#: includes/class-freemius.php:19639 +msgid "Your plan was successfully upgraded." +msgstr "உங்கள் தேர்ந்தெடுத்த திட்டம் மேம்படுத்தப்பட்டது." + +#: includes/class-freemius.php:19656 +msgid "Your plan was successfully changed to %s." +msgstr "உங்கள் தேர்ந்தெடுத்த திட்டம் %sக்கு மாறியது." + +#: includes/class-freemius.php:19672 +msgid "Your license has expired. You can still continue using the free %s forever." +msgstr "உங்கள் உரிமம் முடிந்தது. ஆனாலும் %sன் விலையில்லாப் பதிப்பை என்றும் தொடரலாம். " + +#: includes/class-freemius.php:19674 +msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." +msgstr "உங்கள் உரிமம் முடிந்தது. %3$sஐ தொடர்ந்து பயன்படுத்த %1$s %2$s இவற்றை மேம்படுத்துங்கள்." + +#: includes/class-freemius.php:19682 +msgid "Your license has been cancelled. If you think it's a mistake, please contact support." +msgstr "உங்கள் உரிமம் ரத்தானது. இதில் தவறேதும் உணர்ந்தால் உடனடியாக எங்கள் உதவியை அணுகவும்." + +#: includes/class-freemius.php:19695 +msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support." +msgstr "உங்கள் உரிமம் முடிந்தது. எனினும் நீங்கள் %sன் வசதிகளைத் தொடரலாம். எனினும், தொடர் மேம்படுத்தல் மற்றும் உதவிக்கு உங்கள் உரிமத்தைப் புதுப்பிக்கவும்." + +#: includes/class-freemius.php:19721 +msgid "Your free trial has expired. You can still continue using all our free features." +msgstr "உங்கள் வெள்ளோட்டம் முடிந்தது. ஆனாலும் பிற விலையில்லா சேவைகளைத் தொடரலாம்." + +#: includes/class-freemius.php:19723 +msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." +msgstr "உங்கள் விலையில்லா வெள்ளோட்டம் முடிந்தது. %3$sஐ தொடர்ந்து பயன்படுத்த %1$s %2$sஇவற்றை மேம்படுத்துங்கள்." + +#: includes/class-freemius.php:19831 +msgid "It looks like the license could not be activated." +msgstr "உங்கள் உரிமம் செயல்பாட்டுக்கு வரவில்லையென தோன்றுகிறது." + +#: includes/class-freemius.php:19873 +msgid "Your license was successfully activated." +msgstr "உங்கள் உரிமம் செயல்படுத்தப்பட்டது." + +#: includes/class-freemius.php:19899 +msgid "It looks like your site currently doesn't have an active license." +msgstr "உங்கள் தளத்திற்கு உரிமம் ஏதும் இல்லை என்பது போல் தெரிகிறது." + +#: includes/class-freemius.php:19923 +msgid "It looks like the license deactivation failed." +msgstr "உரிமத்தின் செயல்நிறுத்தம் தோல்வி அடைந்ததுபோல் தெரிகிறது." + +#: includes/class-freemius.php:19951 +msgid "Your license was successfully deactivated, you are back to the %s plan." +msgstr "உங்கள் உரிமம் செயல்நிறுத்தப்பட்டது, %s திட்டத்திற்கு மாற்றப்பட்டுள்ளீர்கள்." + +#: includes/class-freemius.php:19952 +msgid "O.K" +msgstr "O.K" + +#: includes/class-freemius.php:20005 +msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes." +msgstr "உங்கள் சந்தா ரத்து செய்வதில் ஒரு தொழில்நுட்பக் கோளாறு. மீண்டும் முயற்சிக்கவும்." + +#: includes/class-freemius.php:20014 +msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s." +msgstr "உங்கள் சந்தா ரத்து செய்யப்பட்டது. உங்கள் %s திட்டம் %s அன்று காலாவதியாகிறது." + +#: includes/class-freemius.php:20056 +msgid "You are already running the %s in a trial mode." +msgstr "நீங்கள் %sஐ வெள்ளோட்ட நிலையில் உபயோகித்துக் கொண்டிருக்கிறீர்கள்." + +#: includes/class-freemius.php:20067 +msgid "You already utilized a trial before." +msgstr "நீங்கள் ஏற்கனவே வெள்ளோட்டம் பார்த்துவிட்டீர்களே." + +#: includes/class-freemius.php:20081 +msgid "Plan %s do not exist, therefore, can't start a trial." +msgstr "%s திட்டம் இல்லை. வெள்ளோட்டம் துவங்க இயலாது." + +#: includes/class-freemius.php:20092 +msgid "Plan %s does not support a trial period." +msgstr "%s திட்டத்திற்கு வெள்ளோட்டம் கிடையாது." + +#: includes/class-freemius.php:20103 +msgid "None of the %s's plans supports a trial period." +msgstr "%sன் எந்தத் திட்டங்களிலும் வெள்ளோட்டம் இல்லை." + +#: includes/class-freemius.php:20153 +msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)" +msgstr "வெள்ளோட்டத்தில் நீங்கள் இல்லை என்பதால், அதை ரத்துசெய்யத் தேவையில்லை :)" + +#: includes/class-freemius.php:20189 +msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes." +msgstr "" +"94%match\n" +"உங்கள் வெள்ளோட்டம் ரத்து செய்வதில் ஒரு தொழில்நுட்பக் கோளாறு. மீண்டும் முயற்சிக்கவும்" + +#: includes/class-freemius.php:20208 +msgid "Your %s free trial was successfully cancelled." +msgstr "உங்கள் %s விலையில்லா வெள்ளோட்டம் ரத்து செய்யப்பட்டது." + +#: includes/class-freemius.php:20524 +msgid "Version %s was released." +msgstr "%s பதிப்பு வெளியாகிவிட்டது." + +#: includes/class-freemius.php:20524 +msgid "Please download %s." +msgstr "%sஐ பதிவிறக்கலாம்." + +#: includes/class-freemius.php:20531 +msgid "the latest %s version here" +msgstr "%sன் அண்மைய பதிப்பு இதோ" + +#: includes/class-freemius.php:20536 +msgid "New" +msgstr "புதியது" + +#: includes/class-freemius.php:20541 +msgid "Seems like you got the latest release." +msgstr "புதிய பதிப்பு உங்களுக்குக் கிடைத்துவிட்டது போல் தெரிகிறது." + +#: includes/class-freemius.php:20542 +msgid "You are all good!" +msgstr "நல்லது... மகிழ்ச்சி" + +#: includes/class-freemius.php:20812 +msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box." +msgstr "உறுதிப்படுத்தும் மின்னஞ்சல் %sக்கு அனுப்பப்பட்டுள்ளது. பார்க்கவும். 5 நிமிடத்தில் மின்னஞ்சல் வரவில்லை என்றால் Spamல் பார்க்கவும்." + +#: includes/class-freemius.php:20951 +msgid "Site successfully opted in." +msgstr "தளம் தெரிவு செய்யப்பட்டது." + +#: includes/class-freemius.php20952, includes/class-freemius.php:21792 +msgid "Awesome" +msgstr "அடி தூள்" + +#: includes/class-freemius.php20968, templates/forms/optout.php:32 +msgid "We appreciate your help in making the %s better by letting us track some usage data." +msgstr "%s மேலும் தரமானதாக்க உங்கள் பயன்பாட்டுத் தரவுகளை நாங்கள் பின்தொடர உதவுங்கள்." + +#: includes/class-freemius.php:20969 +msgid "Thank you!" +msgstr "நன்றி!" + +#: includes/class-freemius.php:20976 +msgid "We will no longer be sending any usage data of %s on %s to %s." +msgstr "%sன் %s மீதான பயன்பாட்டுத் தரவுகளை %sக்கு நாங்கள் அனுப்ப மாட்டோம்." + +#: includes/class-freemius.php:21105 +msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder." +msgstr "உரிமை மாற்றம் குறித்து உறுதிப்படுத்தும் மின்னஞ்சல் %s வழியாக உங்களுக்கு வந்திருக்கும். பாதுகாப்பு காரங்களுக்காக அடுத்த 15 நிமிடங்களுக்குள் மின்னஞ்சலைத் திறந்து உறுதி செய்யவும். ஒருவேளை உள்பெட்டியில் மின்னஞ்சல் இல்லையென்றால் Spamல் பார்க்கவும்." + +#: includes/class-freemius.php:21111 +msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval." +msgstr "உரிமை மாற்றத்தை உறுதிப்படுத்தியதற்கு நன்றி. இறுதி ஒப்புதலுக்காக %sக்கு இப்போது ஒரு மின்னஞ்சல் அனுப்பப்பட்டுள்ளது." + +#: includes/class-freemius.php:21116 +msgid "%s is the new owner of the account." +msgstr "கணக்கின் புதிய உரிமையாளர் %s." + +#: includes/class-freemius.php:21118 +msgctxt "as congratulations" +msgid "Congrats" +msgstr "வாழ்த்துக்கள்" + +#: includes/class-freemius.php:21138 +msgid "Sorry, we could not complete the email update. Another user with the same email is already registered." +msgstr "மன்னிக்கவும்... இன்னொரு பயனாளர் இதே மின்னஞ்சல் முகவரியுடன் ஏற்கனவே பதிவு செய்திருக்கிறார்." + +#: includes/class-freemius.php:21139 +msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button." +msgstr "உங்கள் %s கணக்கின் உரிமையை %sக்கு மாற்றிட விரும்பினால் உரிமை மாற்றம் பட்டனை அழுத்தவும்." + +#: includes/class-freemius.php:21146 +msgid "Change Ownership" +msgstr "உரிமை மாற்றம்" + +#: includes/class-freemius.php:21154 +msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments." +msgstr "உங்கள் மின்னஞ்சல் விவரம் மேம்படுத்தப்பட்டது. அதை உறுதிப்படுத்தும் மின்னஞ்சல் இன்னும் சில கணங்களில் தங்களுக்கு வந்துசேரும்." + +#: includes/class-freemius.php:21166 +msgid "Please provide your full name." +msgstr "உங்கள் முழுப் பெயரைத் தரவும்." + +#: includes/class-freemius.php:21171 +msgid "Your name was successfully updated." +msgstr "உங்கள் பெயர் ஏற்றப்பட்டது." + +#: includes/class-freemius.php:21232 +msgid "You have successfully updated your %s." +msgstr "உங்கள் %s மேம்படுத்தப்பட்டது." + +#: includes/class-freemius.php:21372 +msgid "Just letting you know that the add-ons information of %s is being pulled from an external server." +msgstr "%sன் ஆட்-ஆன் தகவலை வெளியிலுள்ள சர்வர் மூலம் எடுக்கிறோம் என்பதை அறியவும்." + +#: includes/class-freemius.php:21373 +msgctxt "advance notice of something that will need attention." +msgid "Heads up" +msgstr "Heads up" + +#: includes/class-freemius.php:21832 +msgctxt "exclamation" +msgid "Hey" +msgstr "Hey" + +#: includes/class-freemius.php:21832 +msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial." +msgstr "%sஐ எந்தளவு விரும்புகிறீர்கள்? %d-நாள் விலையில்லா வெள்ளோட்டத்தில் %sன் விலையுள்ள வசதிகளை சோதித்துப் பாருங்கள்." + +#: includes/class-freemius.php:21840 +msgid "No commitment for %s days - cancel anytime!" +msgstr "%s நாட்களுக்கு எந்தக் கடப்பாடும் இல்லை - எப்போதும் ரத்து செய்யலாம்!" + +#: includes/class-freemius.php:21841 +msgid "No credit card required" +msgstr "கடன் அட்டை தேவையில்லை" + +#: includes/class-freemius.php21848, templates/forms/trial-start.php:53 +msgctxt "call to action" +msgid "Start free trial" +msgstr "விலையில்லா வெள்ளோட்டம் தொடங்கட்டும்... டும்" + +#: includes/class-freemius.php:21925 +msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!" +msgstr "வணக்கம். %sன் முகவர் திட்டம் குறித்து உங்களுக்குத் தெரியுமா? %sஐ நீங்கள் விரும்பினால், நீங்களும் முகவராகி பணம் ஈட்டலாம்!" + +#: includes/class-freemius.php:21934 +msgid "Learn more" +msgstr "மேலும் அறிய" + +#: includes/class-freemius.php22120, templates/account.php499, +#: templates/account.php624, templates/connect.php171, +#: templates/connect.php421, templates/forms/license-activation.php27, +#: templates/account/partials/addon.php:321 +msgid "Activate License" +msgstr "உரிமம் செயல்படுத்த" + +#: includes/class-freemius.php22121, templates/account.php571, +#: templates/account.php623, templates/account/partials/addon.php322, +#: templates/account/partials/site.php:271 +msgid "Change License" +msgstr "உரிமம் மாற்ற" + +#: includes/class-freemius.php22217, templates/account/partials/site.php:169 +msgid "Opt Out" +msgstr "தெரிவை அகற்று" + +#: includes/class-freemius.php22219, includes/class-freemius.php22225, +#: templates/account/partials/site.php49, +#: templates/account/partials/site.php:169 +msgid "Opt In" +msgstr "தெரிவு செய்" + +#: includes/class-freemius.php:22453 +msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s" +msgstr "%1$sன் விலையுள்ள பதிப்பு ஏற்கனவே நிறுவப்பட்டுள்ளது. %2$s வசதிகளை பயன்படுத்த அதை செயல்படுத்தவும். %3$s" + +#: includes/class-freemius.php:22461 +msgid "Activate %s features" +msgstr "%s வசதிகளை செயல்படுத்த" + +#: includes/class-freemius.php:22474 +msgid "Please follow these steps to complete the upgrade" +msgstr "மேம்படுத்தலை முடித்துவைக்க பின்வரும் வழிமுறையைப் பின்பற்றவும்" + +#: includes/class-freemius.php:22478 +msgid "Download the latest %s version" +msgstr "%sன் அண்மைய பதிப்பைப் பதிவிறக்கலாம்" + +#: includes/class-freemius.php:22482 +msgid "Upload and activate the downloaded version" +msgstr "பதிவிறக்கிய பதிப்பை பதிவேற்றி செயல்படுத்தலாம்" + +#: includes/class-freemius.php:22484 +msgid "How to upload and activate?" +msgstr "பதிவேற்றுதல் மற்றும் செயல்படுத்துதல் எப்படி?" + +#: includes/class-freemius.php:22618 +msgid "%sClick here%s to choose the sites where you'd like to activate the license on." +msgstr "உங்களுக்கு வேண்டிய தளங்களில் உரிமத்தை செயல்படுத்த %s கிளிக் செய்க %s" + +#: includes/class-freemius.php:22779 +msgid "Auto installation only works for opted-in users." +msgstr "முன்னரே தெரிவு செய்திருந்தால் மட்டுமே தானியங்கி நிறுவுதல் நடைபெறும்." + +#: includes/class-freemius.php22789, includes/class-freemius.php22822, +#: includes/class-fs-plugin-updater.php1212, +#: includes/class-fs-plugin-updater.php:1226 +msgid "Invalid module ID." +msgstr "module ID தவறானது." + +#: includes/class-freemius.php22798, includes/class-fs-plugin-updater.php:1248 +msgid "Premium version already active." +msgstr "விலையுள்ள பதிப்பு ஏற்கனவே செயலில் உள்ளது." + +#: includes/class-freemius.php:22805 +msgid "You do not have a valid license to access the premium version." +msgstr "விலையுள்ள பதிப்பை அணுக உங்களிடம் உரிமம் இல்லை." + +#: includes/class-freemius.php:22812 +msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version." +msgstr "விலையுள்ள நிரல் இல்லாததால் பிளக்இன் \"Serviceware\" எனப்படும்." + +#: includes/class-freemius.php22830, includes/class-fs-plugin-updater.php:1247 +msgid "Premium add-on version already installed." +msgstr "விலையுள்ள ஆட்-ஆன் பதிப்பு ஏற்கனவே நிறுவப்பட்டுள்ளது." + +#: includes/class-freemius.php:23180 +msgid "View paid features" +msgstr "விலையுள்ள வசதிகள் என்னவென்று காணுங்கள்" + +#: includes/class-freemius.php:23502 +msgid "Thank you so much for using %s and its add-ons!" +msgstr "%s மற்றும் அதன் ஆட்-ஆன் பயன்படுத்துவதற்கு நன்றி!" + +#: includes/class-freemius.php:23503 +msgid "Thank you so much for using %s!" +msgstr "%s பயன்படுத்துவதற்கு நன்றி!" + +#: includes/class-freemius.php:23509 +msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s." +msgstr "உங்கள் பயன்பாட்டைப் பின்தொடர எங்களுக்கு நீங்கள் அளித்த அனுமதியானது, %sஐ மேம்படுத்த உதவும்." + +#: includes/class-freemius.php:23513 +msgid "Thank you so much for using our products!" +msgstr "எங்கள் உருவாக்கங்களைப் பயன்படுத்துவதற்கு நன்றி!" + +#: includes/class-freemius.php:23514 +msgid "You've already opted-in to our usage-tracking, which helps us keep improving them." +msgstr "உங்கள் பயன்பாட்டைப் பின்தொடர எங்களுக்கு நீங்கள் அளித்த அனுமதியானது, எங்கள் உருவாக்கத்தை மேம்படுத்த உதவும்." + +#: includes/class-freemius.php:23533 +msgid "%s and its add-ons" +msgstr "%sம் அதன் ஆட்-ஆன்களும்" + +#: includes/class-freemius.php:23542 +msgid "Products" +msgstr "தயாரிப்புகள்" + +#: includes/class-freemius.php23549, templates/connect.php:272 +msgid "Yes" +msgstr "ஆம்" + +#: includes/class-freemius.php23550, templates/connect.php:273 +msgid "send me security & feature updates, educational content and offers." +msgstr "பாதுகாப்பு & மேம்படுத்தல், விளக்கவுரை மற்றும் தள்ளுபடி விவரங்களை எனக்கு அனுப்பவும்." + +#: includes/class-freemius.php23551, templates/connect.php:278 +msgid "No" +msgstr "இல்லை" + +#: includes/class-freemius.php23553, templates/connect.php:280 +msgid "do %sNOT%s send me security & feature updates, educational content and offers." +msgstr "பாதுகாப்பு & மேம்படுத்தல், விளக்கவுரை மற்றும் தள்ளுபடி விவரங்களை எனக்கு அனுப்பவும். %s செய்க, %s தேவையில்லை" + +#: includes/class-freemius.php:23563 +msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard :-)" +msgstr "புதிய %s EU GDPRன் படி %s மேற்பார்வை விதிகளால், ஆட்சேபகர தகவலுக்கு எதிரான உங்கள் நிலையை உறுதி செய்கிறீர்கள் :)" + +#: includes/class-freemius.php23565, templates/connect.php:287 +msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:" +msgstr "பாதுகாப்பு & மேம்படுத்தல், விளக்கவுரை மற்றும் தள்ளுபடி விவரங்களை உங்களுக்கு நாங்கள் அனுப்ப விரும்பினால் எங்களைத் தொடர்பு கொள்ளுங்கள்." + +#: includes/class-freemius.php:23847 +msgid "License key is empty." +msgstr "License key காலியாக உள்ளது." + +#: includes/class-fs-plugin-updater.php206, +#: templates/forms/premium-versions-upgrade-handler.php:57 +msgid "Renew license" +msgstr "உரிமத்தை புதுப்பியுங்கள்" + +#: includes/class-fs-plugin-updater.php211, +#: templates/forms/premium-versions-upgrade-handler.php:58 +msgid "Buy license" +msgstr "உரிமம் வாங்க" + +#: includes/class-fs-plugin-updater.php321, +#: includes/class-fs-plugin-updater.php:354 +msgid "There is a %s of %s available." +msgstr "%sன் %s கிடைக்கிறது." + +#: includes/class-fs-plugin-updater.php323, +#: includes/class-fs-plugin-updater.php:359 +msgid "new Beta version" +msgstr "புதிய பீட்டா பதிப்பு" + +#: includes/class-fs-plugin-updater.php324, +#: includes/class-fs-plugin-updater.php:360 +msgid "new version" +msgstr "புதிய பதிப்பு" + +#: includes/class-fs-plugin-updater.php:383 +msgid "Important Upgrade Notice:" +msgstr "முக்கியமான மேம்படுத்தல் அறிவிப்பு" + +#: includes/class-fs-plugin-updater.php:1277 +msgid "Installing plugin: %s" +msgstr "%s: பிளக்இன் நிறுவப்படுகிறது" + +#: includes/class-fs-plugin-updater.php:1318 +msgid "Unable to connect to the filesystem. Please confirm your credentials." +msgstr "Filesystem அணுக இயலவில்லை. உங்கள் உள்ளீடு சரியா என சோதிக்கவும்." + +#: includes/class-fs-plugin-updater.php:1500 +msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work." +msgstr "பெயர் மாற்றமுடியாது. Slug உடனான folder, பிளக்இன் பேக்கில் இல்லை." + +#: includes/fs-plugin-info-dialog.php:535 +msgid "Purchase More" +msgstr "மேலும் வாங்குக" + +#: includes/fs-plugin-info-dialog.php536, +#: templates/account/partials/addon.php:385 +msgctxt "verb" +msgid "Purchase" +msgstr "வாங்குக" + +#: includes/fs-plugin-info-dialog.php:540 +msgid "Start my free %s" +msgstr "என் விலையில்லா %sஐ துவக்கவும்" + +#: includes/fs-plugin-info-dialog.php:738 +msgid "Install Free Version Update Now" +msgstr "விலையில்லா பதிப்பின் மேம்படுத்தலை நிறுவலாம்" + +#: includes/fs-plugin-info-dialog.php739, templates/account.php:560 +msgid "Install Update Now" +msgstr "மேம்படுத்தலை நிறுவலாம்" + +#: includes/fs-plugin-info-dialog.php:748 +msgid "Install Free Version Now" +msgstr "விலையில்லா பதிப்பை நிறுவலாம்" + +#: includes/fs-plugin-info-dialog.php749, templates/add-ons.php323, +#: templates/auto-installation.php111, +#: templates/account/partials/addon.php365, +#: templates/account/partials/addon.php:418 +msgid "Install Now" +msgstr "நிறுவலாம்" + +#: includes/fs-plugin-info-dialog.php:765 +msgctxt "as download latest version" +msgid "Download Latest Free Version" +msgstr "அண்மைய விலையில்லா பதிப்பை பதிவிறக்க" + +#: includes/fs-plugin-info-dialog.php766, templates/account.php91, +#: templates/add-ons.php37, templates/account/partials/addon.php:25 +msgctxt "as download latest version" +msgid "Download Latest" +msgstr "அண்மைய பதிப்பை பதிவிறக்க" + +#: includes/fs-plugin-info-dialog.php781, templates/add-ons.php329, +#: templates/account/partials/addon.php356, +#: templates/account/partials/addon.php:412 +msgid "Activate this add-on" +msgstr "ஆட்-ஆன் செயல்படுத்த" + +#: includes/fs-plugin-info-dialog.php783, templates/connect.php:418 +msgid "Activate Free Version" +msgstr "விலையில்லா பதிப்பை செயல்படுத்த" + +#: includes/fs-plugin-info-dialog.php784, templates/account.php115, +#: templates/add-ons.php330, templates/account/partials/addon.php:48 +msgid "Activate" +msgstr "செயல்படுத்து" + +#: includes/fs-plugin-info-dialog.php:994 +msgctxt "Plugin installer section title" +msgid "Description" +msgstr "விளக்கம்" + +#: includes/fs-plugin-info-dialog.php:995 +msgctxt "Plugin installer section title" +msgid "Installation" +msgstr "நிறுவுதல்" + +#: includes/fs-plugin-info-dialog.php:996 +msgctxt "Plugin installer section title" +msgid "FAQ" +msgstr "FAQ" + +#: includes/fs-plugin-info-dialog.php997, +#: templates/plugin-info/description.php:55 +msgid "Screenshots" +msgstr "திரை நகல்கள்" + +#: includes/fs-plugin-info-dialog.php:998 +msgctxt "Plugin installer section title" +msgid "Changelog" +msgstr "Changelog" + +#: includes/fs-plugin-info-dialog.php:999 +msgctxt "Plugin installer section title" +msgid "Reviews" +msgstr "கருத்துரைகள்" + +#: includes/fs-plugin-info-dialog.php:1000 +msgctxt "Plugin installer section title" +msgid "Other Notes" +msgstr "பிற குறிப்புகள்" + +#: includes/fs-plugin-info-dialog.php:1015 +msgctxt "Plugin installer section title" +msgid "Features & Pricing" +msgstr "வசதிகள் & விலை" + +#: includes/fs-plugin-info-dialog.php:1025 +msgid "Plugin Install" +msgstr "பிளக்இன் நிறுவுதல்" + +#: includes/fs-plugin-info-dialog.php:1097 +msgctxt "e.g. Professional Plan" +msgid "%s Plan" +msgstr "%s திட்டம்" + +#: includes/fs-plugin-info-dialog.php:1123 +msgctxt "e.g. the best product" +msgid "Best" +msgstr "சிறப்பு" + +#: includes/fs-plugin-info-dialog.php1129, +#: includes/fs-plugin-info-dialog.php:1149 +msgctxt "as every month" +msgid "Monthly" +msgstr "மாதாமாதம்" + +#: includes/fs-plugin-info-dialog.php:1132 +msgctxt "as once a year" +msgid "Annual" +msgstr "ஆண்டு" + +#: includes/fs-plugin-info-dialog.php:1135 +msgid "Lifetime" +msgstr "வாழ்நாள்" + +#: includes/fs-plugin-info-dialog.php1149, +#: includes/fs-plugin-info-dialog.php1151, +#: includes/fs-plugin-info-dialog.php:1153 +msgctxt "e.g. billed monthly" +msgid "Billed %s" +msgstr "%s பில் எழுதப்பட்டது" + +#: includes/fs-plugin-info-dialog.php:1151 +msgctxt "as once a year" +msgid "Annually" +msgstr "ஆண்டுக்காண்டு" + +#: includes/fs-plugin-info-dialog.php:1153 +msgctxt "as once a year" +msgid "Once" +msgstr "ஒருமுறை" + +#: includes/fs-plugin-info-dialog.php:1159 +msgid "Single Site License" +msgstr "ஒரு தள உரிமம்" + +#: includes/fs-plugin-info-dialog.php:1161 +msgid "Unlimited Licenses" +msgstr "பல்தள உரிமம்" + +#: includes/fs-plugin-info-dialog.php:1163 +msgid "Up to %s Sites" +msgstr "%s தளங்கள் வரை" + +#: includes/fs-plugin-info-dialog.php1173, +#: templates/plugin-info/features.php:82 +msgctxt "as monthly period" +msgid "mo" +msgstr "மாதம்" + +#: includes/fs-plugin-info-dialog.php1180, +#: templates/plugin-info/features.php:80 +msgctxt "as annual period" +msgid "year" +msgstr "வருடம்" + +#: includes/fs-plugin-info-dialog.php:1234 +msgctxt "noun" +msgid "Price" +msgstr "விலை" + +#: includes/fs-plugin-info-dialog.php:1282 +msgid "Save %s" +msgstr "%s சேமிக்கலாம்" + +#: includes/fs-plugin-info-dialog.php:1292 +msgid "No commitment for %s - cancel anytime" +msgstr "%sக்கு எந்தக் கடப்பாடும் இல்லை - எப்போதும் ரத்து செய்யலாம்!" + +#: includes/fs-plugin-info-dialog.php:1295 +msgid "After your free %s, pay as little as %s" +msgstr "விலையில்லா %sக்குப் பிறகு, குறைந்தளவு %s செலுத்துங்கள்" + +#: includes/fs-plugin-info-dialog.php:1306 +msgid "Details" +msgstr "விபரங்கள்" + +#: includes/fs-plugin-info-dialog.php1310, templates/account.php102, +#: templates/debug.php203, templates/debug.php240, templates/debug.php457, +#: templates/account/partials/addon.php:36 +msgctxt "product version" +msgid "Version" +msgstr "பதிப்பு" + +#: includes/fs-plugin-info-dialog.php:1317 +msgctxt "as the plugin author" +msgid "Author" +msgstr "உருவாக்கியவர்" + +#: includes/fs-plugin-info-dialog.php:1324 +msgid "Last Updated" +msgstr "கடைசி மேம்படுத்தல்" + +#: includes/fs-plugin-info-dialog.php1329, templates/account.php:468 +msgctxt "x-ago" +msgid "%s ago" +msgstr "%s முன்பு" + +#: includes/fs-plugin-info-dialog.php:1338 +msgid "Requires WordPress Version" +msgstr "WordPress பதிப்பை வேண்டுகிறது" + +#: includes/fs-plugin-info-dialog.php:1339 +msgid "%s or higher" +msgstr "%s அல்லது அதிகமாக" + +#: includes/fs-plugin-info-dialog.php:1346 +msgid "Compatible up to" +msgstr "ஒத்திசைவு உயர்நிலை" + +#: includes/fs-plugin-info-dialog.php:1354 +msgid "Downloaded" +msgstr "பதிவிறக்கப்பட்டது" + +#: includes/fs-plugin-info-dialog.php:1358 +msgid "%s time" +msgstr "%s முறை" + +#: includes/fs-plugin-info-dialog.php:1360 +msgid "%s times" +msgstr "%s முறைகள்" + +#: includes/fs-plugin-info-dialog.php:1370 +msgid "WordPress.org Plugin Page" +msgstr "WordPress.org பிளக்இன் பக்கம்" + +#: includes/fs-plugin-info-dialog.php:1378 +msgid "Plugin Homepage" +msgstr "பிளக்இன் முகப்புப்பக்கம்" + +#: includes/fs-plugin-info-dialog.php1386, +#: includes/fs-plugin-info-dialog.php:1468 +msgid "Donate to this plugin" +msgstr "இந்த பிளக்இன்னுக்கு நன்கொடை தாருங்கள்" + +#: includes/fs-plugin-info-dialog.php:1393 +msgid "Average Rating" +msgstr "உத்தேச மதிப்பீட்டெண்" + +#: includes/fs-plugin-info-dialog.php:1400 +msgid "based on %s" +msgstr "%s அடிப்படையிலானது" + +#: includes/fs-plugin-info-dialog.php:1404 +msgid "%s rating" +msgstr "%s மதிப்பீட்டெண்" + +#: includes/fs-plugin-info-dialog.php:1406 +msgid "%s ratings" +msgstr "%s மதிப்பீட்டெண்கள்" + +#: includes/fs-plugin-info-dialog.php:1421 +msgid "%s star" +msgstr "%s நட்சத்திரம்" + +#: includes/fs-plugin-info-dialog.php:1423 +msgid "%s stars" +msgstr "%s நட்சத்திரங்கள்" + +#: includes/fs-plugin-info-dialog.php:1434 +msgid "Click to see reviews that provided a rating of %s" +msgstr "%s குறித்த மதிப்பீடு & விமர்சனங்களை கிளிக் செய்து காண்க" + +#: includes/fs-plugin-info-dialog.php:1447 +msgid "Contributors" +msgstr "பங்கெடுத்தோர்" + +#: includes/fs-plugin-info-dialog.php1476, +#: includes/fs-plugin-info-dialog.php:1478 +msgid "Warning" +msgstr "எச்சரிக்கை" + +#: includes/fs-plugin-info-dialog.php:1476 +msgid "This plugin has not been tested with your current version of WordPress." +msgstr "இந்த பிளக்இன் உங்கள் தற்போதைய WordPress பதிப்புடன் சோதிக்கப்படவில்லை." + +#: includes/fs-plugin-info-dialog.php:1478 +msgid "This plugin has not been marked as compatible with your version of WordPress." +msgstr "இந்த பிளக்இன் உங்கள் WordPress பதிப்புடன் ஒத்திசைவானது என்று குறிக்கப்படவில்லை." + +#: includes/fs-plugin-info-dialog.php:1497 +msgid "Paid add-on must be deployed to Freemius." +msgstr "விலையுள்ள ஆட்ஆன் Freemiusல் வரிசைப்படுத்தப் பட்டிருக்க வேண்டும்." + +#: includes/fs-plugin-info-dialog.php:1498 +msgid "Add-on must be deployed to WordPress.org or Freemius." +msgstr "ஆட்ஆன் WordPress.org அல்லது Freemius ஏதாவது ஒன்றில் வரிசைப்படுத்தப் பட்டிருக்க வேண்டும்." + +#: includes/fs-plugin-info-dialog.php:1519 +msgid "Newer Version (%s) Installed" +msgstr "புதிய பதிப்பு (%s) நிறுவப்பட்டது" + +#: includes/fs-plugin-info-dialog.php:1520 +msgid "Newer Free Version (%s) Installed" +msgstr "புதிய விலையில்லா பதிப்பு (%s) நிறுவப்பட்டது" + +#: includes/fs-plugin-info-dialog.php:1527 +msgid "Latest Version Installed" +msgstr "சமீபத்திய பதிப்பு நிறுவப்பட்டது" + +#: includes/fs-plugin-info-dialog.php:1528 +msgid "Latest Free Version Installed" +msgstr "சமீபத்திய விலையில்லா பதிப்பு நிறுவப்பட்டது" + +#: templates/account.php92, templates/forms/subscription-cancellation.php96, +#: templates/account/partials/addon.php26, +#: templates/account/partials/site.php:311 +msgid "Downgrading your plan" +msgstr "உங்கள் திட்டம் கீழ்ப்படுத்தப்படுகிறது" + +#: templates/account.php93, templates/forms/subscription-cancellation.php97, +#: templates/account/partials/addon.php27, +#: templates/account/partials/site.php:312 +msgid "Cancelling the subscription" +msgstr "சந்தா ரத்தாகிறது" + +#. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the +#. subscription' +#: templates/account.php95, templates/forms/subscription-cancellation.php99, +#: templates/account/partials/site.php:314 +msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s." +msgstr "வருகின்ற அனைத்து பணம் செலுத்துதல்களையும் %1$s உடன் நிறுத்துகிறது, மற்றும் உங்கள் %2$s திட்ட உரிமம் %3$sல் காலாவதியாகிறது." + +#: templates/account.php96, templates/forms/subscription-cancellation.php100, +#: templates/account/partials/addon.php30, +#: templates/account/partials/site.php:315 +msgid "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price." +msgstr "தயவுசெய்து கவனிக்கவும். ரத்துசெய்த பிறகு மீண்டும் புதிய சந்தா/புதுப்பித்தலுக்கு பழைய விலையை எங்களால் வசூலிக்க முடியாது. விலை ஆண்டுக்கொரு முறை உயரும். நீங்கள் இனி புதுப்பிக்க விரும்பினால் புதிய விலையை செலுத்தவேண்டும்." + +#: templates/account.php97, templates/forms/subscription-cancellation.php106, +#: templates/account/partials/addon.php:31 +msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?" +msgstr "வெள்ளோட்டத்தை ரத்து செய்தால் அனைத்து விலையுள்ள வசதிகளும் நிறுத்தப்படும். சரியா?" + +#: templates/account.php98, templates/forms/subscription-cancellation.php101, +#: templates/account/partials/addon.php32, +#: templates/account/partials/site.php:316 +msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support." +msgstr "நீங்கள் %sன் வசதிகளை பயன்படுத்த முடியும். ஆனால் %s பாதுகாப்பு & மேம்படுத்தல் மற்றும் உதவியை அணுக இயலாது." + +#: templates/account.php99, templates/forms/subscription-cancellation.php102, +#: templates/account/partials/addon.php33, +#: templates/account/partials/site.php:317 +msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features." +msgstr "உங்கள் உரிமம் முடிந்ததும் நீங்கள் அனைத்து விலையில்லா வசதிகளையும் பயன்படுத்திக் கொள்ள முடியும். ஆனால் %s வசதிகளை அணுக இயலாது." + +#. translators: %s: Plan title (e.g. "Professional") +#: templates/account.php101, +#: templates/account/partials/activate-license-button.php31, +#: templates/account/partials/addon.php:35 +msgid "Activate %s Plan" +msgstr "%s திட்டம் செயல்படுத்த" + +#. translators: %s: Time period (e.g. Auto renews in "2 months") +#: templates/account.php104, templates/account/partials/addon.php38, +#: templates/account/partials/site.php:291 +msgid "Auto renews in %s" +msgstr "%sல் தானாக புதுப்பிக்கிறது" + +#. translators: %s: Time period (e.g. Expires in "2 months") +#: templates/account.php106, templates/account/partials/addon.php40, +#: templates/account/partials/site.php:293 +msgid "Expires in %s" +msgstr "%sல் காலாவதியாகிறது" + +#: templates/account.php:107 +msgctxt "as synchronize license" +msgid "Sync License" +msgstr "Sync License" + +#: templates/account.php108, templates/account/partials/addon.php:41 +msgid "Cancel Trial" +msgstr "வெள்ளோட்டம் ரத்து செய்க" + +#: templates/account.php109, templates/account/partials/addon.php:42 +msgid "Change Plan" +msgstr "திட்டம் மாற்ற" + +#: templates/account.php110, templates/account/partials/addon.php:43 +msgctxt "verb" +msgid "Upgrade" +msgstr "மேம்படுத்து" + +#: templates/account.php112, templates/account/partials/addon.php45, +#: templates/account/partials/site.php:318 +msgctxt "verb" +msgid "Downgrade" +msgstr "தரமிறக்கு" + +#: templates/account.php114, templates/add-ons.php246, +#: templates/plugin-info/features.php72, +#: templates/account/partials/addon.php47, +#: templates/account/partials/site.php:33 +msgid "Free" +msgstr "விலையில்லை" + +#: templates/account.php116, templates/debug.php373, +#: includes/customizer/class-fs-customizer-upsell-control.php110, +#: templates/account/partials/addon.php:49 +msgctxt "as product pricing plan" +msgid "Plan" +msgstr "திட்டம்" + +#: templates/account.php:117 +msgid "Bundle Plan" +msgstr "கூட்டுத்திட்டம்" + +#: templates/account.php:191 +msgid "Free Trial" +msgstr "விலையில்லா வெள்ளோட்டம்" + +#: templates/account.php:202 +msgid "Account Details" +msgstr "கணக்கு விபரங்கள்" + +#: templates/account.php209, templates/forms/data-debug-mode.php:33 +msgid "Start Debug" +msgstr "Start Debug" + +#: templates/account.php:211 +msgid "Stop Debug" +msgstr "Stop Debug" + +#: templates/account.php:218 +msgid "Billing & Invoices" +msgstr "பில் & இன்வாய்ஸ்" + +#: templates/account.php:229 +msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?" +msgstr "கணக்கை அழிப்பதானது உங்கள் %s உரிமத்தை உடனே செயல்நிறுத்தும் ஆனாலும் பிற தளங்களில் பயன்படுத்தலாம். இனிவரும் பணம் செலுத்துதல்களை நிறுத்த வேண்டுமானால் முதலில் கணக்கை தரமிறக்கி \"ரத்து செய்\" பட்டனை கிளிக் செய்யவும். கணக்கை அழிக்க விருப்பமா?" + +#: templates/account.php:231 +msgid "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?" +msgstr "கணக்கை அழிப்பது தற்காலிகமானல்ல. இந்த %s இனி உங்களுக்குத் தேவையில்லை என்றால் மட்டும் அழிக்கவும். கணக்கை அழிக்க விருப்பமா?" + +#: templates/account.php:234 +msgid "Delete Account" +msgstr "கணக்கை அழிக்க" + +#: templates/account.php246, templates/account/partials/addon.php231, +#: templates/account/partials/deactivate-license-button.php:35 +msgid "Deactivate License" +msgstr "உரிமத்தை செயல்நிறுத்த" + +#: templates/account.php269, templates/forms/subscription-cancellation.php:125 +msgid "Are you sure you want to proceed?" +msgstr "மேலே தொடர விருப்பமா?" + +#: templates/account.php269, templates/account/partials/addon.php:255 +msgid "Cancel Subscription" +msgstr "சந்தாவை ரத்து செய்" + +#: templates/account.php298, templates/account/partials/addon.php:340 +msgctxt "as synchronize" +msgid "Sync" +msgstr "Sync" + +#: templates/account.php313, templates/debug.php:507 +msgid "Name" +msgstr "பெயர்" + +#: templates/account.php319, templates/debug.php:508 +msgid "Email" +msgstr "மின்னஞ்சல்" + +#: templates/account.php326, templates/debug.php371, templates/debug.php:557 +msgid "User ID" +msgstr "உபயோகிப்பாளர் ஐடி" + +#: templates/account.php344, templates/account.php637, +#: templates/account.php682, templates/debug.php238, templates/debug.php365, +#: templates/debug.php454, templates/debug.php506, templates/debug.php555, +#: templates/debug.php632, templates/account/payments.php35, +#: templates/debug/logger.php:21 +msgid "ID" +msgstr "ஐடி" + +#: templates/account.php:351 +msgid "Site ID" +msgstr "இணையதள ஐடி" + +#: templates/account.php:354 +msgid "No ID" +msgstr "ஐடி இல்லை" + +#: templates/account.php359, templates/debug.php245, templates/debug.php374, +#: templates/debug.php458, templates/debug.php510, +#: templates/account/partials/site.php:227 +msgid "Public Key" +msgstr "Public Key" + +#: templates/account.php365, templates/debug.php375, templates/debug.php459, +#: templates/debug.php511, templates/account/partials/site.php:239 +msgid "Secret Key" +msgstr "Secret Key" + +#: templates/account.php:368 +msgctxt "as secret encryption key missing" +msgid "No Secret" +msgstr "No Secret" + +#: templates/account.php395, templates/account/partials/site.php120, +#: templates/account/partials/site.php:122 +msgid "Trial" +msgstr "வெள்ளோட்டம்" + +#: templates/account.php422, templates/debug.php562, +#: templates/account/partials/site.php:260 +msgid "License Key" +msgstr "License Key" + +#: templates/account.php:453 +msgid "Join the Beta program" +msgstr "பீட்டா பதிப்பு சோதனையில் சேரவும்" + +#: templates/account.php:459 +msgid "not verified" +msgstr "உறுதிப்படுத்தப்படவில்லை" + +#: templates/account.php468, templates/account/partials/addon.php:190 +msgid "Expired" +msgstr "காலாவதியானது" + +#: templates/account.php:528 +msgid "Premium version" +msgstr "விலையுள்ள பதிப்பு" + +#: templates/account.php:530 +msgid "Free version" +msgstr "விலையில்லா பதிப்பு" + +#: templates/account.php:542 +msgid "Verify Email" +msgstr "மின்னஞ்சல் சரிபார்த்திடுங்கள்" + +#: templates/account.php:553 +msgid "Download %s Version" +msgstr "%s பதிப்பை பதிவிறக்கலாம்" + +#: templates/account.php568, templates/account.php820, +#: templates/account/partials/site.php248, +#: templates/account/partials/site.php:270 +msgctxt "verb" +msgid "Show" +msgstr "காட்டு" + +#: templates/account.php:583 +msgid "What is your %s?" +msgstr "உங்கள் %s என்ன?" + +#: templates/account.php591, templates/account/billing.php:21 +msgctxt "verb" +msgid "Edit" +msgstr "திருத்து" + +#: templates/account.php:616 +msgid "Sites" +msgstr "தளங்கள்" + +#: templates/account.php:629 +msgid "Search by address" +msgstr "முகவரி மூலம் தேட" + +#: templates/account.php638, templates/debug.php:368 +msgid "Address" +msgstr "முகவரி" + +#: templates/account.php:639 +msgid "License" +msgstr "உரிமம்" + +#: templates/account.php:640 +msgid "Plan" +msgstr "திட்டம்" + +#: templates/account.php:685 +msgctxt "as software license" +msgid "License" +msgstr "உரிமம்" + +#: templates/account.php:814 +msgctxt "verb" +msgid "Hide" +msgstr "மறைத்திடு" + +#: templates/account.php836, templates/forms/data-debug-mode.php:31 +msgid "Processing" +msgstr "செயலில்" + +#: templates/account.php:839 +msgid "Get updates for bleeding edge Beta versions of %s." +msgstr "%sன் பீட்டா பதிப்பு மேம்படுத்தலைப் பெறுங்கள்." + +#: templates/account.php:897 +msgid "Cancelling %s" +msgstr "%s ரத்தாகிறது" + +#: templates/account.php897, templates/account.php914, +#: templates/forms/subscription-cancellation.php27, +#: templates/forms/deactivation/form.php:133 +msgid "trial" +msgstr "வெள்ளோட்டம்" + +#: templates/account.php912, templates/forms/deactivation/form.php:150 +msgid "Cancelling %s..." +msgstr "%s ரத்தாகிறது..." + +#: templates/account.php915, templates/forms/subscription-cancellation.php28, +#: templates/forms/deactivation/form.php:134 +msgid "subscription" +msgstr "சந்தா" + +#: templates/account.php:929 +msgid "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?" +msgstr "உரிமத்தை செயல்நிறுத்துவதானது, அனைத்து விலையுள்ள வசதிகளையும் நிறுத்திவிடும். ஆனாலும் பிற தளங்களில் செயல்படுத்தலாம். தொடரலாமா?" + +#: templates/add-ons.php:38 +msgid "View details" +msgstr "விபரங்களைப் பாருங்கள்" + +#: templates/add-ons.php:48 +msgid "Add Ons for %s" +msgstr "%sக்கான ஆட்ஆன்கள்" + +#: templates/add-ons.php:58 +msgid "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." +msgstr "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." + +#: templates/add-ons.php:229 +msgctxt "active add-on" +msgid "Active" +msgstr "செயல்பாட்டில்" + +#: templates/add-ons.php:230 +msgctxt "installed add-on" +msgid "Installed" +msgstr "நிறுவப்பட்டது" + +#: templates/admin-notice.php13, templates/forms/license-activation.php207, +#: templates/forms/resend-key.php:77 +msgctxt "as close a window" +msgid "Dismiss" +msgstr "போய்த் தொலை" + +#: templates/auto-installation.php:45 +msgid "%s sec" +msgstr "%s sec" + +#: templates/auto-installation.php:83 +msgid "Automatic Installation" +msgstr "தானியங்கி நிறுவுதல்" + +#: templates/auto-installation.php:93 +msgid "An automated download and installation of %s (paid version) from %s will start in %s. If you would like to do it manually - click the cancellation button now." +msgstr "%sலிருந்து %s (பணம் செலுத்திய) பதிப்பின் தானியங்கி பதிவிறக்கமும், நிறுவுதலும் %sல் ஆரம்பமாகும். இதை நீங்களே செய்ய விரும்பினால் ரத்து செய்யும் பட்டனை அழுத்தவும். " + +#: templates/auto-installation.php:104 +msgid "The installation process has started and may take a few minutes to complete. Please wait until it is done - do not refresh this page." +msgstr "நிறுவப்படுகிறது. சில நிமிடங்கள் காத்திருக்கவும். இந்தப் பக்கத்தை Refresh செய்யவேண்டாம்." + +#: templates/auto-installation.php:109 +msgid "Cancel Installation" +msgstr "நிறுவுதலை ரத்துசெய்" + +#: templates/checkout.php:180 +msgid "Checkout" +msgstr "Checkout" + +#: templates/checkout.php:180 +msgid "PCI compliant" +msgstr "PCI compliant" + +#. translators: %s: name (e.g. Hey John,) +#: templates/connect.php:112 +msgctxt "greeting" +msgid "Hey %s," +msgstr "வணக்கம் %s," + +#: templates/connect.php:154 +msgid "Allow & Continue" +msgstr "அனுமதித்து தொடர்க" + +#: templates/connect.php:158 +msgid "Re-send activation email" +msgstr "செயல்படுத்தும் மின்னஞ்சலை மீண்டும் அனுப்புக" + +#: templates/connect.php:162 +msgid "Thanks %s!" +msgstr "நன்றி %s!" + +#: templates/connect.php172, templates/forms/license-activation.php:46 +msgid "Agree & Activate License" +msgstr "ஒப்புக்கொண்டு உரிமத்தை செயல்படுத்துக" + +#: templates/connect.php:181 +msgid "Thanks for purchasing %s! To get started, please enter your license key:" +msgstr "%s வாங்கியதற்கு நன்றி! License Key உள்ளிட்டு பயன்பாட்டைத் தொடர்க." + +#: templates/connect.php:188 +msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s." +msgstr "%4$s உடன் தொடர்தல், தள்ளுபடி, வசதி மேம்படுத்தல் அறிவிப்பு, பாதுகாப்பு மேம்படுத்தல் தொடர்பான அறிவிப்புகளைப் பெற தெரிந்தெடுங்கள்." + +#: templates/connect.php:189 +msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s." +msgstr "%4$s உடன் தொடர்தல், தள்ளுபடி, வசதி மேம்படுத்தல் அறிவிப்பு, பாதுகாப்பு மேம்படுத்தல் தொடர்பான அறிவிப்புகளைப் பெற தெரிந்தெடுங்கள்." + +#: templates/connect.php:195 +msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine." +msgstr "%4$s உடன் தொடர்தல், தள்ளுபடி, வசதி மேம்படுத்தல் அறிவிப்பு, பாதுகாப்பு மேம்படுத்தல் தொடர்பான அறிவிப்புகளைப் பெற தெரிந்தெடுங்கள். தெரிந்தெடுக்காவிட்டாலும் %1$s நன்கு வேலை செய்யும்." + +#: templates/connect.php:196 +msgid "Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine." +msgstr "%4$s உடன் தொடர்தல், தள்ளுபடி, வசதி மேம்படுத்தல் அறிவிப்பு, பாதுகாப்பு மேம்படுத்தல் தொடர்பான அறிவிப்புகளைப் பெற தெரிந்தெடுங்கள். தெரிந்தெடுக்காவிட்டாலும் %1$s நன்கு வேலை செய்யும்." + +#: templates/connect.php:230 +msgid "We're excited to introduce the Freemius network-level integration." +msgstr "Freemius network-level integrationஐ அறிமுகம் செய்வதில் பேருவகை அடைகிறோம்." + +#: templates/connect.php:233 +msgid "During the update process we detected %d site(s) that are still pending license activation." +msgstr "மேம்படுத்தல் நடைபெறும்போதே இன்னும் %d தளங்களில் உரிமம் செயல்பாட்டில் இல்லை என்று அறிகிறோம்." + +#: templates/connect.php:235 +msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button." +msgstr "அந்தத் தளங்களிலும் %sஐ உபயோகிக்க விரும்பினால், கீழே License Key உள்ளிட்டு செயல்படுத்தலை அழுத்தவும்." + +#: templates/connect.php:237 +msgid "%s's paid features" +msgstr "%sன் விலையுள்ள வசதிகள்" + +#: templates/connect.php:242 +msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page." +msgstr "இல்லாவிட்டால், Network-level கணக்குப் பக்கத்தில் எப்போது வேண்டுமானாலும் உரிமத்தை செயல்படுத்திக் கொள்ளலாம்." + +#: templates/connect.php:244 +msgid "During the update process we detected %s site(s) in the network that are still pending your attention." +msgstr "மேம்படுத்தல் நடைபெறும்போதே Networkல்லுள்ள %s தளங்கள் உங்கள் கவனிப்பைக் கோருகின்றன என்றறிகிறோம்." + +#: templates/connect.php253, templates/forms/data-debug-mode.php35, +#: templates/forms/license-activation.php:49 +msgid "License key" +msgstr "License key" + +#: templates/connect.php256, templates/forms/license-activation.php:22 +msgid "Can't find your license key?" +msgstr "License Key காணவில்லையா?" + +#: templates/connect.php315, templates/connect.php652, +#: templates/forms/deactivation/retry-skip.php:20 +msgctxt "verb" +msgid "Skip" +msgstr "கடந்திடு" + +#: templates/connect.php:318 +msgid "Delegate to Site Admins" +msgstr "தள நிர்வாகிகளுக்கான சிறப்பாளர்" + +#: templates/connect.php:318 +msgid "If you click it, this decision will be delegated to the sites administrators." +msgstr "இதை கிளிக் செய்தால், இந்த முடிவு தள நிர்வாகிகளுக்கு அனுப்பப்படும்." + +#: templates/connect.php:346 +msgid "Your Profile Overview" +msgstr "உங்கள் சுயவிவர சுருக்கம்" + +#: templates/connect.php:347 +msgid "Name and email address" +msgstr "பெயரும், மின்னஞ்சல் முகவரியும்" + +#: templates/connect.php:352 +msgid "Your Site Overview" +msgstr "உங்கள் தளவிவர சுருக்கம்" + +#: templates/connect.php:353 +msgid "Site URL, WP version, PHP info, plugins & themes" +msgstr "தள URL, WP பதிப்பு, PHP தகவல், பிளக்இன் & தீம் விவரங்கள்" + +#: templates/connect.php:358 +msgid "Admin Notices" +msgstr "நிர்வாக அறிவிப்புகள்" + +#: templates/connect.php359, templates/connect.php:375 +msgid "Updates, announcements, marketing, no spam" +msgstr "மேம்படுத்தல், அறிவிப்புகள், வணிக செய்திகள். Spam இல்லை" + +#: templates/connect.php:364 +msgid "Current %s Events" +msgstr "நடப்பு %s நிகழ்வுகள்" + +#: templates/connect.php:365 +msgid "Activation, deactivation and uninstall" +msgstr "செயல்படுத்தல், செயல்நிறுத்தல் மற்றும் அகற்றுதல்" + +#: templates/connect.php:374 +msgid "Newsletter" +msgstr "செய்திக்கடிதம்" + +#: templates/connect.php391, templates/forms/license-activation.php:41 +msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license." +msgstr "பாதுகாப்பு மற்றும் வசதி மேம்படுத்தலுக்காக %2$sக்கு %1$s தகவல் அனுப்பும், மற்றும் உங்கள் உரிமத்தின் செல்லுபடி காலத்தை சோதிக்கும்." + +#: templates/connect.php:396 +msgid "What permissions are being granted?" +msgstr "என்னென்ன அனுமதிகள் கொடுக்கப்பட்டுள்ளது." + +#: templates/connect.php:417 +msgid "Don't have a license key?" +msgstr "License Key இல்லையா?" + +#: templates/connect.php:420 +msgid "Have a license key?" +msgstr "License key உள்ளதா?" + +#: templates/connect.php:428 +msgid "Privacy Policy" +msgstr "தனியுரிமைக் கொள்கைகள்" + +#: templates/connect.php:430 +msgid "License Agreement" +msgstr "உரிம ஒப்பந்தம்" + +#: templates/connect.php:430 +msgid "Terms of Service" +msgstr "சேவை நிபந்தனைகள்" + +#: templates/connect.php:805 +msgctxt "as in the process of sending an email" +msgid "Sending email" +msgstr "மின்னஞ்சல் அனுப்பப்படுகிறது" + +#: templates/connect.php:806 +msgctxt "as activating plugin" +msgid "Activating" +msgstr "செயல்படுத்துகிறது" + +#: templates/contact.php:78 +msgid "Contact" +msgstr "தொடர்பு" + +#: templates/debug.php:17 +msgctxt "as turned off" +msgid "Off" +msgstr "Off" + +#: templates/debug.php:18 +msgctxt "as turned on" +msgid "On" +msgstr "On" + +#: templates/debug.php:20 +msgid "SDK" +msgstr "SDK" + +#: templates/debug.php:24 +msgctxt "as code debugging" +msgid "Debugging" +msgstr "தவறை சோதிக்கிறது" + +#: templates/debug.php54, templates/debug.php250, templates/debug.php376, +#: templates/debug.php:512 +msgid "Actions" +msgstr "செயல்கள்" + +#: templates/debug.php:64 +msgid "Are you sure you want to delete all Freemius data?" +msgstr "அனைத்து Freemius தகவலையும் அழிக்க விருப்பமா?" + +#: templates/debug.php:64 +msgid "Delete All Accounts" +msgstr "அனைத்து கணக்குகளையும் அழிக்க" + +#: templates/debug.php:71 +msgid "Clear API Cache" +msgstr "API Cache நீக்க" + +#: templates/debug.php:79 +msgid "Clear Updates Transients" +msgstr "Clear Updates Transients" + +#: templates/debug.php:86 +msgid "Sync Data From Server" +msgstr "Sync Data From Server" + +#: templates/debug.php:95 +msgid "Migrate Options to Network" +msgstr "Migrate Options to Network" + +#: templates/debug.php:100 +msgid "Load DB Option" +msgstr "Load DB Option" + +#: templates/debug.php:103 +msgid "Set DB Option" +msgstr "Set DB Option" + +#: templates/debug.php:182 +msgid "Key" +msgstr "Key" + +#: templates/debug.php:183 +msgid "Value" +msgstr "Value" + +#: templates/debug.php:199 +msgctxt "as software development kit versions" +msgid "SDK Versions" +msgstr "SDK பதிப்புகள்" + +#: templates/debug.php:204 +msgid "SDK Path" +msgstr "SDK Path" + +#: templates/debug.php205, templates/debug.php:244 +msgid "Module Path" +msgstr "Module Path" + +#: templates/debug.php:206 +msgid "Is Active" +msgstr "Is Active" + +#: templates/debug.php234, templates/debug/plugins-themes-sync.php:35 +msgid "Plugins" +msgstr "பிளக்இன்கள்" + +#: templates/debug.php234, templates/debug/plugins-themes-sync.php:56 +msgid "Themes" +msgstr "தீம்கள்" + +#: templates/debug.php239, templates/debug.php370, templates/debug.php456, +#: templates/debug/scheduled-crons.php:80 +msgid "Slug" +msgstr "Slug" + +#: templates/debug.php241, templates/debug.php:455 +msgid "Title" +msgstr "தலைப்பு" + +#: templates/debug.php:242 +msgctxt "as application program interface" +msgid "API" +msgstr "API" + +#: templates/debug.php:243 +msgid "Freemius State" +msgstr "Freemius நிலை" + +#: templates/debug.php:247 +msgid "Network Blog" +msgstr "Network Blog" + +#: templates/debug.php:248 +msgid "Network User" +msgstr "Network பயனர்" + +#: templates/debug.php:285 +msgctxt "as connection was successful" +msgid "Connected" +msgstr "இணைக்கப்பட்டது" + +#: templates/debug.php:286 +msgctxt "as connection blocked" +msgid "Blocked" +msgstr "தடுக்கப்பட்டது" + +#: templates/debug.php:322 +msgid "Simulate Trial Promotion" +msgstr "Simulate Trial Promotion" + +#: templates/debug.php:334 +msgid "Simulate Network Upgrade" +msgstr "Simulate Network Upgrade" + +#: templates/debug.php:359 +msgid "%s Installs" +msgstr "%s நிறுவுதல்கள்" + +#: templates/debug.php:361 +msgctxt "like websites" +msgid "Sites" +msgstr "தளங்கள்" + +#: templates/debug.php367, templates/account/partials/site.php:156 +msgid "Blog ID" +msgstr "Blog ID" + +#: templates/debug.php:372 +msgid "License ID" +msgstr "License ID" + +#: templates/debug.php436, templates/debug.php535, +#: templates/account/partials/addon.php:435 +msgctxt "verb" +msgid "Delete" +msgstr "அழி" + +#: templates/debug.php:450 +msgid "Add Ons of module %s" +msgstr "Module %sன் ஆட்ஆன்கள்" + +#: templates/debug.php:502 +msgid "Users" +msgstr "பயனர்கள்" + +#: templates/debug.php:509 +msgid "Verified" +msgstr "உறுதிசெய்யப்பட்டது" + +#: templates/debug.php:551 +msgid "%s Licenses" +msgstr "%s உரிமங்கள்" + +#: templates/debug.php:556 +msgid "Plugin ID" +msgstr "பிளக்இன் ID" + +#: templates/debug.php:558 +msgid "Plan ID" +msgstr "திட்ட ID" + +#: templates/debug.php:559 +msgid "Quota" +msgstr "ஒதுக்கீடு" + +#: templates/debug.php:560 +msgid "Activated" +msgstr "செயல்படுத்தப்பட்டது" + +#: templates/debug.php:561 +msgid "Blocking" +msgstr "தடுக்கப்படுகிறது" + +#: templates/debug.php:563 +msgctxt "as expiration date" +msgid "Expiration" +msgstr "காலாவதி" + +#: templates/debug.php:590 +msgid "Debug Log" +msgstr "Debug Log" + +#: templates/debug.php:594 +msgid "All Types" +msgstr "அனைத்து மாதிரிகள்" + +#: templates/debug.php:601 +msgid "All Requests" +msgstr "அனைத்து வேண்டுகோள்கள்" + +#: templates/debug.php606, templates/debug.php635, +#: templates/debug/logger.php:25 +msgid "File" +msgstr "File" + +#: templates/debug.php607, templates/debug.php633, +#: templates/debug/logger.php:23 +msgid "Function" +msgstr "Function" + +#: templates/debug.php:608 +msgid "Process ID" +msgstr "Process ID" + +#: templates/debug.php:609 +msgid "Logger" +msgstr "Logger" + +#: templates/debug.php610, templates/debug.php634, +#: templates/debug/logger.php:24 +msgid "Message" +msgstr "செய்தி" + +#: templates/debug.php:612 +msgid "Filter" +msgstr "Filter" + +#: templates/debug.php:620 +msgid "Download" +msgstr "பதிவிறக்கு" + +#: templates/debug.php631, templates/debug/logger.php:22 +msgid "Type" +msgstr "மாதிரி" + +#: templates/debug.php636, templates/debug/logger.php:26 +msgid "Timestamp" +msgstr "நேர முத்திரை" + +#: templates/secure-https-header.php:28 +msgid "Secure HTTPS %s page, running from an external domain" +msgstr "பாதுகாப்பான HTTPS %s பக்கம், வெளி முகவரியிலிருந்து இயங்குகிறது" + +#: includes/customizer/class-fs-customizer-support-section.php55, +#: templates/plugin-info/features.php:43 +msgid "Support" +msgstr "உதவி" + +#: includes/debug/class-fs-debug-bar-panel.php48, +#: templates/debug/api-calls.php54, templates/debug/logger.php:62 +msgctxt "milliseconds" +msgid "ms" +msgstr "ms" + +#: includes/debug/debug-bar-start.php:41 +msgid "Freemius API" +msgstr "Freemius API" + +#: includes/debug/debug-bar-start.php:42 +msgid "Requests" +msgstr "வேண்டுகோள்கள்" + +#: templates/account/billing.php:22 +msgctxt "verb" +msgid "Update" +msgstr "மேம்படுத்து" + +#: templates/account/billing.php:33 +msgid "Billing" +msgstr "வசூல்" + +#: templates/account/billing.php38, templates/account/billing.php:38 +msgid "Business name" +msgstr "தொழிலின் பெயர்" + +#: templates/account/billing.php39, templates/account/billing.php:39 +msgid "Tax / VAT ID" +msgstr "Tax / VAT ID" + +#: templates/account/billing.php42, templates/account/billing.php42, +#: templates/account/billing.php43, templates/account/billing.php:43 +msgid "Address Line %d" +msgstr "முகவரி வரி %d" + +#: templates/account/billing.php46, templates/account/billing.php:46 +msgid "City" +msgstr "ஊர்" + +#: templates/account/billing.php46, templates/account/billing.php:46 +msgid "Town" +msgstr "நகர்" + +#: templates/account/billing.php47, templates/account/billing.php:47 +msgid "ZIP / Postal Code" +msgstr "ZIP / தபால் குறியீடு" + +#: templates/account/billing.php:302 +msgid "Country" +msgstr "நாடு" + +#: templates/account/billing.php:304 +msgid "Select Country" +msgstr "நாட்டைத் தேர்ந்தெடுக்க" + +#: templates/account/billing.php311, templates/account/billing.php:312 +msgid "State" +msgstr "மாநிலம்" + +#: templates/account/billing.php311, templates/account/billing.php:312 +msgid "Province" +msgstr "மாநிலப் பரப்பு" + +#: templates/account/payments.php:29 +msgid "Payments" +msgstr "பணம் செலுத்தல்கள்" + +#: templates/account/payments.php:36 +msgid "Date" +msgstr "தேதி" + +#: templates/account/payments.php:37 +msgid "Amount" +msgstr "தொகை" + +#: templates/account/payments.php38, templates/account/payments.php:50 +msgid "Invoice" +msgstr "இன்வாய்ஸ்" + +#: templates/debug/api-calls.php:56 +msgid "API" +msgstr "API" + +#: templates/debug/api-calls.php:68 +msgid "Method" +msgstr "வழிமுறை" + +#: templates/debug/api-calls.php:69 +msgid "Code" +msgstr "Code" + +#: templates/debug/api-calls.php:70 +msgid "Length" +msgstr "நீளம்" + +#: templates/debug/api-calls.php:71 +msgctxt "as file/folder path" +msgid "Path" +msgstr "வழி" + +#: templates/debug/api-calls.php:73 +msgid "Body" +msgstr "அமைப்பு" + +#: templates/debug/api-calls.php:75 +msgid "Result" +msgstr "முடிவு" + +#: templates/debug/api-calls.php:76 +msgid "Start" +msgstr "துவக்கம்" + +#: templates/debug/api-calls.php:77 +msgid "End" +msgstr "முடிவு" + +#: templates/debug/logger.php:15 +msgid "Log" +msgstr "Log" + +#. translators: %s: time period (e.g. In "2 hours") +#: templates/debug/plugins-themes-sync.php18, +#: templates/debug/scheduled-crons.php:91 +msgid "In %s" +msgstr "%sல்" + +#. translators: %s: time period (e.g. "2 hours" ago) +#: templates/debug/plugins-themes-sync.php20, +#: templates/debug/scheduled-crons.php:93 +msgid "%s ago" +msgstr "%s முன்பு" + +#: templates/debug/plugins-themes-sync.php21, +#: templates/debug/scheduled-crons.php:74 +msgctxt "seconds" +msgid "sec" +msgstr "sec" + +#: templates/debug/plugins-themes-sync.php:23 +msgid "Plugins & Themes Sync" +msgstr "பிளக்இன் & தீம் Sync" + +#: templates/debug/plugins-themes-sync.php:28 +msgid "Total" +msgstr "மொத்தம்" + +#: templates/debug/plugins-themes-sync.php29, +#: templates/debug/scheduled-crons.php:84 +msgid "Last" +msgstr "கடைசி" + +#: templates/debug/scheduled-crons.php:76 +msgid "Scheduled Crons" +msgstr "பட்டியலிட்ட Crons" + +#: templates/debug/scheduled-crons.php:81 +msgid "Module" +msgstr "Module" + +#: templates/debug/scheduled-crons.php:82 +msgid "Module Type" +msgstr "Module மாதிரி" + +#: templates/debug/scheduled-crons.php:83 +msgid "Cron Type" +msgstr "Cron மாதிரி" + +#: templates/debug/scheduled-crons.php:85 +msgid "Next" +msgstr "அடுத்து" + +#: templates/forms/affiliation.php:82 +msgid "Non-expiring" +msgstr "காலாவதியாகாதது" + +#: templates/forms/affiliation.php:85 +msgid "Apply to become an affiliate" +msgstr "Affiliate ஆக விண்ணப்பியுங்கள்" + +#: templates/forms/affiliation.php:104 +msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s." +msgstr "%sக்கான உங்கள் Affiliate விண்ணப்பம் ஏற்கப்பட்டது. உள்நுழைந்து %sல் உங்கள் affiliate areaவை அணுகவும்." + +#: templates/forms/affiliation.php:119 +msgid "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information." +msgstr "எங்கள் affiliate திட்டத்திற்கு விண்ணப்பித்ததற்காக நன்றி. உங்கள் விவரங்களை பரிசீலித்து, 14 நாட்களில் மேலதிக தகவலோடு தொடர்பு கொள்கிறோம்." + +#: templates/forms/affiliation.php:122 +msgid "Your affiliation account was temporarily suspended." +msgstr "உங்கள் affiliate கணக்கு தற்காலிகமாக இடைநிறுத்தப்பட்டுள்ளது." + +#: templates/forms/affiliation.php:125 +msgid "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days." +msgstr "எங்கள் affiliate திட்டத்திற்கு விண்ணப்பித்ததற்காக நன்றி. எதிர்பாரா விதமாக உங்கள் விண்ணப்பம் தள்ளுபடி செய்யப்பட்டது. 30 நாட்களில் மீண்டும் விண்ணப்பிக்கவும்." + +#: templates/forms/affiliation.php:128 +msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support." +msgstr "எங்கள் affiliate திட்ட விதிமுறை மீறல் காரணமாக உங்கள் affiliate கணக்கை தற்காலிகமாக தடை செய்கிறோம். கேள்விகள் இருந்தால் உதவியை தொடர்பு கொள்ளவும்." + +#: templates/forms/affiliation.php:141 +msgid "Like the %s? Become our ambassador and earn cash ;-)" +msgstr "%sஐ விரும்புகிறீர்களா? எங்கள் Ambassador ஆக பணியாற்றி பணம் பெறலாம் :-)" + +#: templates/forms/affiliation.php:142 +msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!" +msgstr "எங்கள் %sக்கு புதிய வாடிக்கையாளர்களை பரிந்துரை செய்து, ஒவ்வொரு விற்பனைக்கும் %s லாபப் பங்கீடாகப் பெறலாம்." + +#: templates/forms/affiliation.php:145 +msgid "Program Summary" +msgstr "திட்டத்தின் சுருக்கம்" + +#: templates/forms/affiliation.php:147 +msgid "%s commission when a customer purchases a new license." +msgstr "ஒரு வாடிக்கையாளர் புது உரிமம் வாங்கும்போது %s லாபப் பங்கீடு." + +#: templates/forms/affiliation.php:149 +msgid "Get commission for automated subscription renewals." +msgstr "தானியங்கி சந்தா புதுப்பித்தலுக்கும் லாபப் பங்கீடு பெறுங்கள்." + +#: templates/forms/affiliation.php:152 +msgid "%s tracking cookie after the first visit to maximize earnings potential." +msgstr "வருமானம் அதிகரிக்க, முதல் தள வருகையில் %s tracking cookie." + +#: templates/forms/affiliation.php:155 +msgid "Unlimited commissions." +msgstr "அளவில்லா லாபப் பங்கீடு." + +#: templates/forms/affiliation.php:157 +msgid "%s minimum payout amount." +msgstr "%s குறைந்தபட்ச பணம் பெறுதல்." + +#: templates/forms/affiliation.php:158 +msgid "Payouts are in USD and processed monthly via PayPal." +msgstr "பணம் பெறுதல் USDயில் மாதாமாதம் PayPal மூலம் பெறலாம்." + +#: templates/forms/affiliation.php:159 +msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days." +msgstr "வாடிக்கையாளர் 30 நாட்களுக்கு பணம் திரும்பப் பெறலாம் Refund என்பதால் உங்களுக்கு லாபப் பங்கீடு 30 நாட்களுக்குப் பிறகே கிடைக்கும்." + +#: templates/forms/affiliation.php:162 +msgid "Affiliate" +msgstr "Affiliate" + +#: templates/forms/affiliation.php165, templates/forms/resend-key.php:23 +msgid "Email address" +msgstr "மின்னஞ்சல் முகவரி" + +#: templates/forms/affiliation.php:169 +msgid "Full name" +msgstr "முழுப்பெயர்" + +#: templates/forms/affiliation.php:173 +msgid "PayPal account email address" +msgstr "PayPal கணக்கின் மின்னஞ்சல் முகவரி" + +#: templates/forms/affiliation.php:177 +msgid "Where are you going to promote the %s?" +msgstr "%sஐ எங்கு எப்படி முன்னிலைப் படுத்துவீர்கள்?" + +#: templates/forms/affiliation.php:179 +msgid "Enter the domain of your website or other websites from where you plan to promote the %s." +msgstr "%sஐ எந்தெந்த தளங்களில் முன்னிலைப் படுத்துவீர்களோ அந்தத் தளங்களின் பெயர்களை உள்ளிடுங்கள்." + +#: templates/forms/affiliation.php:181 +msgid "Add another domain" +msgstr "அடுத்த தளத்தைச் சேர்க்க" + +#: templates/forms/affiliation.php:185 +msgid "Extra Domains" +msgstr "மேலதிக தளங்கள்" + +#: templates/forms/affiliation.php:186 +msgid "Extra domains where you will be marketing the product from." +msgstr "தயாரிப்புகளை சந்தைப்படுத்தும் மேலதிக தளங்கள்." + +#: templates/forms/affiliation.php:196 +msgid "Promotion methods" +msgstr "முன்னிலைப்படுத்தும் வழிமுறைகள்" + +#: templates/forms/affiliation.php:199 +msgid "Social media (Facebook, Twitter, etc.)" +msgstr "சமூக ஊடகங்கள் (Facebook, Twitter etc.)" + +#: templates/forms/affiliation.php:203 +msgid "Mobile apps" +msgstr "அலைபேசி செயலிகள்" + +#: templates/forms/affiliation.php:207 +msgid "Website, email, and social media statistics (optional)" +msgstr "இணையதளம், மின்னஞ்சல் மற்றும் சமூக ஊடக புள்ளி விவரங்கள் (விரும்பினால் தரலாம்)" + +#: templates/forms/affiliation.php:210 +msgid "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)." +msgstr "இணைய தள அல்லது சமூக ஊடக வருகையாளர் எண்ணிக்கை, மின்னஞ்சல் சந்தாதாரர்கள், பின்தொடர்வோர் போன்ற புள்ளிவிவரங்கள் தருக. (நாங்கள் ரகசியம் காப்போம்)" + +#: templates/forms/affiliation.php:214 +msgid "How will you promote us?" +msgstr "எங்களை நீங்கள் எப்படி முன்னிலைப் படுத்துவீர்கள்?" + +#: templates/forms/affiliation.php:217 +msgid "Please provide details on how you intend to promote %s (please be as specific as possible)." +msgstr "%sஐ எப்படி முன்னிலைப் படுத்துவீர்கள் என்ற விவரம் தரவும். (தயவுசெய்து குறிப்பிட்டுச் சொல்லவும்)" + +#: templates/forms/affiliation.php223, templates/forms/resend-key.php:22 +msgid "Cancel" +msgstr "ரத்து" + +#: templates/forms/affiliation.php:225 +msgid "Become an affiliate" +msgstr "Affiliate ஆகுங்கள்" + +#: templates/forms/data-debug-mode.php:25 +msgid "Please enter the license key to enable the debug mode:" +msgstr "Please enter the license key to enable the debug mode:" + +#: templates/forms/data-debug-mode.php:27 +msgid "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:" +msgstr "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:" + +#: templates/forms/data-debug-mode.php:32 +msgid "Submit" +msgstr "Submit" + +#: templates/forms/data-debug-mode.php:36 +msgid "User key" +msgstr "User key" + +#: templates/forms/license-activation.php:23 +msgid "Please enter the license key that you received in the email right after the purchase:" +msgstr "உங்கள் மின்னஞ்சலுக்கு வந்த License Keyஐ உள்ளிடுங்கள்:" + +#: templates/forms/license-activation.php:28 +msgid "Update License" +msgstr "உரிமம் மேம்படுத்த" + +#: templates/forms/optout.php:30 +msgctxt "verb" +msgid "Opt Out" +msgstr "தெரிவை அகற்று" + +#: templates/forms/optout.php:31 +msgctxt "verb" +msgid "Opt In" +msgstr "தெரிவு செய்" + +#: templates/forms/optout.php:33 +msgid "Usage tracking is done in the name of making %s better. Making a better user experience, prioritizing new features, and more good things. We'd really appreciate if you'll reconsider letting us continue with the tracking." +msgstr "%sஐ மேம்பட்டதாக்க பயன்பாட்டைப் பின்தொடர்தல் நடைமுறைக்கு வந்தது. பயனர் அனுபவம் மேம்படுத்தல், புது வசதிகளைத் தருதல் மற்றும் பலவற்றுக்கு இது நன்மை தரும். இந்தப் பின்தொடர்தலை மேலும் நீட்டிக்க நீங்கள் அனுமதித்தால் மகிழ்ச்சி அடைவோம்." + +#: templates/forms/optout.php:35 +msgid "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s." +msgstr "தெரிவகற்று Optout செயல்படுத்தினால் இனி %sலிருந்து %sக்கு தகவல் ஏதும் அனுப்பமாட்டோம்." + +#: templates/forms/premium-versions-upgrade-handler.php:40 +msgid "There is a new version of %s available." +msgstr "%sன் புதிய பதிப்பு இப்போது கிடைக்கிறது." + +#: templates/forms/premium-versions-upgrade-handler.php:41 +msgid " %s to access version %s security & feature updates, and support." +msgstr "%s பதிப்பின் பாதுகாப்பு & வசதி மேம்படுத்தல் மற்றும் உதவிக்கு%s." + +#: templates/forms/premium-versions-upgrade-handler.php:54 +msgid "New Version Available" +msgstr "புதிய பதிப்பு கிடைக்கிறது" + +#: templates/forms/premium-versions-upgrade-handler.php:75 +msgctxt "close a window" +msgid "Dismiss" +msgstr "போய்த் தொலை" + +#: templates/forms/resend-key.php:21 +msgid "Send License Key" +msgstr "License key அனுப்புக" + +#: templates/forms/resend-key.php:57 +msgid "Enter the email address you've used for the upgrade below and we will resend you the license key." +msgstr "தரம் உயர்த்துதலின் போது நீங்கள் உள்ளிட்ட மின்னஞ்சல் முகவரியைத் தந்தால், license keyஐ மீண்டும் அனுப்புகிறோம்." + +#: templates/forms/subscription-cancellation.php:37 +msgid "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site." +msgstr "%sஐ செயல்நிறுத்தினாலோ, அகற்றினாலோ பிற தளங்களில் பயன்படுத்தும் வாய்ப்பிருந்தும், உரிமம் தானாகவே செயலிழக்கும்." + +#: templates/forms/subscription-cancellation.php:47 +msgid "In case you are NOT planning on using this %s on this site (or any other site) - would you like to cancel the %s as well?" +msgstr "ஒருவேளை %s இந்த தளத்திலோ அல்லது பிற தளத்திலோ உபயோகிக்கவில்லை என்றால் %sஐ ரத்து செய்ய விரும்புகிறீர்களா?" + +#: templates/forms/subscription-cancellation.php:52 +msgid "license" +msgstr "உரிமம்" + +#: templates/forms/subscription-cancellation.php:57 +msgid "Cancel %s - I no longer need any security & feature updates, nor support for %s because I'm not planning to use the %s on this, or any other site." +msgstr "நான் %sஐ இந்த தளத்திலோ அல்லது பிற தளத்திலோ உபயோகிக்க விரும்பவில்லை என்பதால் %sக்கு உதவியோ, பாதுகாப்பு மேம்படுத்தலோ தேவையில்லை. %sஐ ரத்து செய்யவும்." + +#: templates/forms/subscription-cancellation.php:68 +msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support." +msgstr "%s ரத்துசெய்ய வேண்டாம் - அதற்கு உதவியை அணுகவும், பாதுகாப்பு மேம்படுத்தல்களைப் பெறவும் விரும்புகிறேன்." + +#: templates/forms/subscription-cancellation.php:103 +msgid "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license." +msgstr "மீண்டும் உரிமத்தை செயல்படுத்தினால் தவிர, உரிமம் காலாவதியானால் %s பயன்படுத்த முடியாது." + +#: templates/forms/subscription-cancellation.php:136 +msgid "Cancel %s?" +msgstr "%s ரத்து செய்யவா?" + +#: templates/forms/subscription-cancellation.php:143 +msgid "Proceed" +msgstr "தொடர்க" + +#: templates/forms/subscription-cancellation.php191, +#: templates/forms/deactivation/form.php:171 +msgid "Cancel %s & Proceed" +msgstr "%s ரத்து செய்க & தொடர்க" + +#: templates/forms/trial-start.php:22 +msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan." +msgstr "%2$s திட்டத்தின் %1$s-நாள் விலையில்லா வெள்ளோட்டத்தைத் துவக்க இன்னும் 1 கிளிக் மட்டுமே." + +#: templates/forms/trial-start.php:28 +msgid "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial." +msgstr "Wordpress.orgயின் வழிகாட்டு நெறிமுறைகள்படி, உங்கள் வெள்ளோட்டம் துவங்கும்முன் நாங்கள் கேட்டுக் கொள்வதெல்லாம், உங்கள் பயன்பாட்டுத் தகவலை நாங்கள் பின்தொடர எங்களை அனுமதிக்கும் தெரிவை தெரிவு செய்யுங்கள் என்பதே. இது %sஐ அனுமதித்து தகவலை %sக்கு அனுப்பச்செய்து மேம்படுத்தலுக்கு உதவும். மற்றும் உங்கள் வெள்ளோட்டத்தை உறுதிசெய்யும்." + +#: templates/js/style-premium-theme.php:39 +msgid "Premium" +msgstr "Premium" + +#: templates/js/style-premium-theme.php:42 +msgid "Beta" +msgstr "பீட்டா" + +#: templates/partials/network-activation.php:27 +msgid "Activate license on all sites in the network." +msgstr "வலைப்பின்னலில் உள்ள எல்லா தளங்களிலும் உரிமத்தை செயல்படுத்துக" + +#: templates/partials/network-activation.php:28 +msgid "Apply on all sites in the network." +msgstr "வலைப்பின்னலின் அனைத்து தளங்களின் மீதும் பிரயோகிக்க" + +#: templates/partials/network-activation.php:31 +msgid "Activate license on all pending sites." +msgstr "மீதமுள்ள எல்லா தளங்களிலும் உரிமத்தை செயல்படுத்துக" + +#: templates/partials/network-activation.php:32 +msgid "Apply on all pending sites." +msgstr "மீதமுள்ள அனைத்து தளங்களின் மீதும் பிரயோகிக்க" + +#: templates/partials/network-activation.php40, +#: templates/partials/network-activation.php:74 +msgid "allow" +msgstr "அனுமதி" + +#: templates/partials/network-activation.php43, +#: templates/partials/network-activation.php:77 +msgid "delegate" +msgstr "delegate" + +#: templates/partials/network-activation.php47, +#: templates/partials/network-activation.php:81 +msgid "skip" +msgstr "கடந்திடு" + +#: templates/plugin-info/description.php72, +#: templates/plugin-info/screenshots.php:31 +msgid "Click to view full-size screenshot %d" +msgstr "கிளிக் செய்து %dன் முழுஅளவு திரைநகல் காண்க" + +#: templates/plugin-info/features.php:56 +msgid "Unlimited Updates" +msgstr "அளவில்லா மேம்படுத்தல்கள்" + +#: templates/account/partials/activate-license-button.php:46 +msgid "Localhost" +msgstr "Localhost" + +#: templates/account/partials/activate-license-button.php:50 +msgctxt "as 5 licenses left" +msgid "%s left" +msgstr "%s இருக்கிறது" + +#: templates/account/partials/activate-license-button.php:51 +msgid "Last license" +msgstr "கடைசி உரிமம்" + +#. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the +#. subscription' +#: templates/account/partials/addon.php:29 +msgid "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s." +msgstr "%1$s உடனடியாக அனைத்து எதிர்வரும் பணம் செலுத்தல்களை நிறுத்தும் மற்றும் உங்கள் %s திட்ட உரிமம் %sல் காலாவதியாகும்." + +#: templates/account/partials/addon.php:185 +msgid "Cancelled" +msgstr "ரத்தானது" + +#: templates/account/partials/addon.php:195 +msgid "No expiration" +msgstr "காலாவதியாகாது" + +#: templates/account/partials/site.php:189 +msgid "Owner Name" +msgstr "உரிமையாளர் பெயர்" + +#: templates/account/partials/site.php:201 +msgid "Owner Email" +msgstr "உரிமையாளர் மின்னஞ்சல்" + +#: templates/account/partials/site.php:213 +msgid "Owner ID" +msgstr "உரிமையாளர் ID" + +#: templates/account/partials/site.php:286 +msgid "Subscription" +msgstr "சந்தா" + +#: templates/forms/deactivation/contact.php:19 +msgid "Sorry for the inconvenience and we are here to help if you give us a chance." +msgstr "தவறுக்கு வருந்துகிறோம். எங்களுக்கு ஒரு வாய்ப்புத் தந்தால் உங்களுக்கு உதவக் காத்திருக்கிறோம்." + +#: templates/forms/deactivation/contact.php:22 +msgid "Contact Support" +msgstr "உதவியை அணுகவும்" + +#: templates/forms/deactivation/form.php:64 +msgid "Anonymous feedback" +msgstr "அனாமதேய பின்னூட்டம்" + +#: templates/forms/deactivation/form.php:70 +msgid "Deactivate" +msgstr "செயல்நிறுத்து" + +#: templates/forms/deactivation/form.php:72 +msgid "Activate %s" +msgstr "%s செயல்படுத்து" + +#: templates/forms/deactivation/form.php:87 +msgid "Quick Feedback" +msgstr "உடனடி பின்னூட்டம்" + +#: templates/forms/deactivation/form.php:91 +msgid "If you have a moment, please let us know why you are %s" +msgstr "ஏன் நீங்கள் %s என்பதை எங்களுக்குத் தெரிவியுங்கள்" + +#: templates/forms/deactivation/form.php:91 +msgid "deactivating" +msgstr "செயல்நிறுத்தப்படுகிறது" + +#: templates/forms/deactivation/form.php:91 +msgid "switching" +msgstr "switching" + +#: templates/forms/deactivation/form.php:365 +msgid "Submit & %s" +msgstr "சமர்ப்பி & %s" + +#: templates/forms/deactivation/form.php:386 +msgid "Kindly tell us the reason so we can improve." +msgstr "காரணம் எதுவென்று சொன்னால் எங்களை மேம்படுத்திக் கொள்வோம்." + +#: templates/forms/deactivation/form.php:511 +msgid "Yes - %s" +msgstr "ஆம் - %s" + +#: templates/forms/deactivation/form.php:518 +msgid "Skip & %s" +msgstr "கடந்திடு & %s" + +#: templates/forms/deactivation/retry-skip.php:21 +msgid "Click here to use the plugin anonymously" +msgstr "பிளக்இன்னை அநாமதேயமாக பயன்படுத்த இங்கே கிளிக் செய்யவும்" + +#: templates/forms/deactivation/retry-skip.php:23 +msgid "You might have missed it, but you don't have to share any data and can just %s the opt-in." +msgstr "விட்டுவிட்டீர்கள், ஆனாலும் நீங்கள் எந்த தகவலையும் பகிர வேண்டியதில்லை %sதெரிந்தெடுப்பு மட்டுமே" diff --git a/external/Freemius/languages/freemius.pot b/external/Freemius/languages/freemius.pot index e6cc1d7d..58c82b46 100755 --- a/external/Freemius/languages/freemius.pot +++ b/external/Freemius/languages/freemius.pot @@ -16,1317 +16,1398 @@ msgstr "" "X-Poedit-SourceCharset: UTF-8\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: includes/class-freemius.php:1688 +#: includes/class-freemius.php:1880, templates/account.php:840 +msgid "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned." +msgstr "" + +#: includes/class-freemius.php:1887 +msgid "Would you like to proceed with the update?" +msgstr "" + +#: includes/class-freemius.php:2095 msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error." msgstr "" -#: includes/class-freemius.php:1690 +#: includes/class-freemius.php:2097 msgid "Error" msgstr "" -#: includes/class-freemius.php:2011 +#: includes/class-freemius.php:2491 msgid "I found a better %s" msgstr "" -#: includes/class-freemius.php:2013 +#: includes/class-freemius.php:2493 msgid "What's the %s's name?" msgstr "" -#: includes/class-freemius.php:2019 +#: includes/class-freemius.php:2499 msgid "It's a temporary %s. I'm just debugging an issue." msgstr "" -#: includes/class-freemius.php:2021 +#: includes/class-freemius.php:2501 msgid "Deactivation" msgstr "" -#: includes/class-freemius.php:2022 +#: includes/class-freemius.php:2502 msgid "Theme Switch" msgstr "" -#: includes/class-freemius.php:2031, templates/forms/resend-key.php:24 +#: includes/class-freemius.php:2511, templates/forms/resend-key.php:24 msgid "Other" msgstr "" -#: includes/class-freemius.php:2039 +#: includes/class-freemius.php:2519 msgid "I no longer need the %s" msgstr "" -#: includes/class-freemius.php:2046 +#: includes/class-freemius.php:2526 msgid "I only needed the %s for a short period" msgstr "" -#: includes/class-freemius.php:2052 +#: includes/class-freemius.php:2532 msgid "The %s broke my site" msgstr "" -#: includes/class-freemius.php:2059 +#: includes/class-freemius.php:2539 msgid "The %s suddenly stopped working" msgstr "" -#: includes/class-freemius.php:2069 +#: includes/class-freemius.php:2549 msgid "I can't pay for it anymore" msgstr "" -#: includes/class-freemius.php:2071 +#: includes/class-freemius.php:2551 msgid "What price would you feel comfortable paying?" msgstr "" -#: includes/class-freemius.php:2077 +#: includes/class-freemius.php:2557 msgid "I don't like to share my information with you" msgstr "" -#: includes/class-freemius.php:2098 +#: includes/class-freemius.php:2578 msgid "The %s didn't work" msgstr "" -#: includes/class-freemius.php:2108 +#: includes/class-freemius.php:2588 msgid "I couldn't understand how to make it work" msgstr "" -#: includes/class-freemius.php:2116 +#: includes/class-freemius.php:2596 msgid "The %s is great, but I need specific feature that you don't support" msgstr "" -#: includes/class-freemius.php:2118 +#: includes/class-freemius.php:2598 msgid "What feature?" msgstr "" -#: includes/class-freemius.php:2122 +#: includes/class-freemius.php:2602 msgid "The %s is not working" msgstr "" -#: includes/class-freemius.php:2124 +#: includes/class-freemius.php:2604 msgid "Kindly share what didn't work so we can fix it for future users..." msgstr "" -#: includes/class-freemius.php:2128 +#: includes/class-freemius.php:2608 msgid "It's not what I was looking for" msgstr "" -#: includes/class-freemius.php:2130 +#: includes/class-freemius.php:2610 msgid "What you've been looking for?" msgstr "" -#: includes/class-freemius.php:2134 +#: includes/class-freemius.php:2614 msgid "The %s didn't work as expected" msgstr "" -#: includes/class-freemius.php:2136 +#: includes/class-freemius.php:2616 msgid "What did you expect?" msgstr "" -#: includes/class-freemius.php:2947, templates/debug.php:20 +#: includes/class-freemius.php:3471, templates/debug.php:20 msgid "Freemius Debug" msgstr "" -#: includes/class-freemius.php:3675 +#: includes/class-freemius.php:4223 msgid "I don't know what is cURL or how to install it, help me!" msgstr "" -#: includes/class-freemius.php:3677 +#: includes/class-freemius.php:4225 msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update." msgstr "" -#: includes/class-freemius.php:3684 +#: includes/class-freemius.php:4232 msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again." msgstr "" -#: includes/class-freemius.php:3789 +#: includes/class-freemius.php:4337 msgid "Yes - do your thing" msgstr "" -#: includes/class-freemius.php:3794 +#: includes/class-freemius.php:4342 msgid "No - just deactivate" msgstr "" -#: includes/class-freemius.php:3839, includes/class-freemius.php:4348, includes/class-freemius.php:5447, includes/class-freemius.php:11555, includes/class-freemius.php:14926, includes/class-freemius.php:14978, includes/class-freemius.php:15040, includes/class-freemius.php:17273, includes/class-freemius.php:17283, includes/class-freemius.php:17892, includes/class-freemius.php:18752, includes/class-freemius.php:18867, includes/class-freemius.php:19011, templates/add-ons.php:43 +#: includes/class-freemius.php:4387, includes/class-freemius.php:4881, includes/class-freemius.php:6032, includes/class-freemius.php:13153, includes/class-freemius.php:16558, includes/class-freemius.php:16646, includes/class-freemius.php:16812, includes/class-freemius.php:19040, includes/class-freemius.php:19381, includes/class-freemius.php:19391, includes/class-freemius.php:20051, includes/class-freemius.php:20924, includes/class-freemius.php:21039, includes/class-freemius.php:21183, templates/add-ons.php:57 msgctxt "exclamation" msgid "Oops" msgstr "" -#: includes/class-freemius.php:3908 +#: includes/class-freemius.php:4456 msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience." msgstr "" -#: includes/class-freemius.php:4345 +#: includes/class-freemius.php:4878 msgctxt "addonX cannot run without pluginY" msgid "%s cannot run without %s." msgstr "" -#: includes/class-freemius.php:4346 +#: includes/class-freemius.php:4879 msgctxt "addonX cannot run..." msgid "%s cannot run without the plugin." msgstr "" -#: includes/class-freemius.php:4492, includes/class-freemius.php:4517, includes/class-freemius.php:17963 +#: includes/class-freemius.php:5052, includes/class-freemius.php:5077, includes/class-freemius.php:20122 msgid "Unexpected API error. Please contact the %s's author with the following error." msgstr "" -#: includes/class-freemius.php:5135 +#: includes/class-freemius.php:5720 msgid "Premium %s version was successfully activated." msgstr "" -#: includes/class-freemius.php:5147, includes/class-freemius.php:7009 +#: includes/class-freemius.php:5732, includes/class-freemius.php:7599 msgctxt "Used to express elation, enthusiasm, or triumph (especially in electronic communication)." msgid "W00t" msgstr "" -#: includes/class-freemius.php:5162 +#: includes/class-freemius.php:5747 msgid "You have a %s license." msgstr "" -#: includes/class-freemius.php:5166, includes/class-freemius.php:14347, includes/class-freemius.php:14358, includes/class-freemius.php:17187, includes/class-freemius.php:17501, includes/class-freemius.php:17567, includes/class-freemius.php:17717 +#: includes/class-freemius.php:5751, includes/class-freemius.php:15975, includes/class-freemius.php:15986, includes/class-freemius.php:19292, includes/class-freemius.php:19642, includes/class-freemius.php:19711, includes/class-freemius.php:19876 msgctxt "interjection expressing joy or exuberance" msgid "Yee-haw" msgstr "" -#: includes/class-freemius.php:5430 +#: includes/class-freemius.php:6015 msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license." msgstr "" -#: includes/class-freemius.php:5434 +#: includes/class-freemius.php:6019 msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin." msgstr "" -#: includes/class-freemius.php:5443, templates/add-ons.php:103, templates/account/partials/addon.php:288 +#: includes/class-freemius.php:6028, templates/add-ons.php:186, templates/account/partials/addon.php:381 msgid "More information about %s" msgstr "" -#: includes/class-freemius.php:5444 +#: includes/class-freemius.php:6029 msgid "Purchase License" msgstr "" -#: includes/class-freemius.php:6377, templates/connect.php:163 +#: includes/class-freemius.php:6964, templates/connect.php:163 msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s." msgstr "" -#: includes/class-freemius.php:6381 +#: includes/class-freemius.php:6968 msgid "start the trial" msgstr "" -#: includes/class-freemius.php:6382, templates/connect.php:167 +#: includes/class-freemius.php:6969, templates/connect.php:167 msgid "complete the install" msgstr "" -#: includes/class-freemius.php:6495 +#: includes/class-freemius.php:7081 msgid "You are just one step away - %s" msgstr "" -#: includes/class-freemius.php:6498 +#: includes/class-freemius.php:7084 msgctxt "%s - plugin name. As complete \"PluginX\" activation now" msgid "Complete \"%s\" Activation Now" msgstr "" -#: includes/class-freemius.php:6576 +#: includes/class-freemius.php:7162 msgid "We made a few tweaks to the %s, %s" msgstr "" -#: includes/class-freemius.php:6580 +#: includes/class-freemius.php:7166 msgid "Opt in to make \"%s\" better!" msgstr "" -#: includes/class-freemius.php:7008 +#: includes/class-freemius.php:7598 msgid "The upgrade of %s was successfully completed." msgstr "" -#: includes/class-freemius.php:8935, includes/class-fs-plugin-updater.php:886, includes/class-fs-plugin-updater.php:1081, includes/class-fs-plugin-updater.php:1088, templates/auto-installation.php:32 +#: includes/class-freemius.php:9802, includes/class-fs-plugin-updater.php:1038, includes/class-fs-plugin-updater.php:1233, includes/class-fs-plugin-updater.php:1240, templates/auto-installation.php:32 msgid "Add-On" msgstr "" -#: includes/class-freemius.php:8937, templates/debug.php:359, templates/debug.php:520 +#: includes/class-freemius.php:9804, templates/account.php:335, templates/account.php:343, templates/debug.php:360, templates/debug.php:551 msgid "Plugin" msgstr "" -#: includes/class-freemius.php:8938, templates/debug.php:359, templates/debug.php:520, templates/forms/deactivation/form.php:67 +#: includes/class-freemius.php:9805, templates/account.php:336, templates/account.php:344, templates/debug.php:360, templates/debug.php:551, templates/forms/deactivation/form.php:71 msgid "Theme" msgstr "" -#: includes/class-freemius.php:11422 +#: includes/class-freemius.php:12596 +msgid "An unknown error has occurred while trying to set the user's beta mode." +msgstr "" + +#: includes/class-freemius.php:13020 msgid "Invalid site details collection." msgstr "" -#: includes/class-freemius.php:11542 +#: includes/class-freemius.php:13140 msgid "We couldn't find your email address in the system, are you sure it's the right address?" msgstr "" -#: includes/class-freemius.php:11544 +#: includes/class-freemius.php:13142 msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?" msgstr "" -#: includes/class-freemius.php:11818 +#: includes/class-freemius.php:13416 msgid "Account is pending activation." msgstr "" -#: includes/class-freemius.php:11930, templates/forms/premium-versions-upgrade-handler.php:47 +#: includes/class-freemius.php:13528, templates/forms/premium-versions-upgrade-handler.php:47 msgid "Buy a license now" msgstr "" -#: includes/class-freemius.php:11942, templates/forms/premium-versions-upgrade-handler.php:46 +#: includes/class-freemius.php:13540, templates/forms/premium-versions-upgrade-handler.php:46 msgid "Renew your license now" msgstr "" -#: includes/class-freemius.php:11946 +#: includes/class-freemius.php:13544 msgid "%s to access version %s security & feature updates, and support." msgstr "" -#: includes/class-freemius.php:14329 +#: includes/class-freemius.php:15957 msgid "%s activation was successfully completed." msgstr "" -#: includes/class-freemius.php:14343 +#: includes/class-freemius.php:15971 msgid "Your account was successfully activated with the %s plan." msgstr "" -#: includes/class-freemius.php:14354, includes/class-freemius.php:17563 +#: includes/class-freemius.php:15982, includes/class-freemius.php:19707 msgid "Your trial has been successfully started." msgstr "" -#: includes/class-freemius.php:14924, includes/class-freemius.php:14976, includes/class-freemius.php:15038 +#: includes/class-freemius.php:16556, includes/class-freemius.php:16644, includes/class-freemius.php:16810 msgid "Couldn't activate %s." msgstr "" -#: includes/class-freemius.php:14925, includes/class-freemius.php:14977, includes/class-freemius.php:15039 +#: includes/class-freemius.php:16557, includes/class-freemius.php:16645, includes/class-freemius.php:16811 msgid "Please contact us with the following message:" msgstr "" -#: includes/class-freemius.php:15388, includes/class-freemius.php:19849 +#: includes/class-freemius.php:16641, templates/forms/data-debug-mode.php:162 +msgid "An unknown error has occurred." +msgstr "" + +#: includes/class-freemius.php:17168, includes/class-freemius.php:22082 msgid "Upgrade" msgstr "" -#: includes/class-freemius.php:15394 +#: includes/class-freemius.php:17174 msgid "Start Trial" msgstr "" -#: includes/class-freemius.php:15396 +#: includes/class-freemius.php:17176 msgid "Pricing" msgstr "" -#: includes/class-freemius.php:15458, includes/class-freemius.php:15460 +#: includes/class-freemius.php:17256, includes/class-freemius.php:17258 msgid "Affiliation" msgstr "" -#: includes/class-freemius.php:15488, includes/class-freemius.php:15490, templates/account.php:150, templates/debug.php:324 +#: includes/class-freemius.php:17286, includes/class-freemius.php:17288, templates/account.php:183, templates/debug.php:326 msgid "Account" msgstr "" -#: includes/class-freemius.php:15503, includes/class-freemius.php:15505, includes/customizer/class-fs-customizer-support-section.php:60 +#: includes/class-freemius.php:17302, includes/class-freemius.php:17304, includes/customizer/class-fs-customizer-support-section.php:60 msgid "Contact Us" msgstr "" -#: includes/class-freemius.php:15515, includes/class-freemius.php:15517, includes/class-freemius.php:19859, templates/account.php:100, templates/account/partials/addon.php:41 +#: includes/class-freemius.php:17315, includes/class-freemius.php:17317, includes/class-freemius.php:22096, templates/account.php:111, templates/account/partials/addon.php:44 msgid "Add-Ons" msgstr "" -#: includes/class-freemius.php:15551 +#: includes/class-freemius.php:17351 msgctxt "ASCII arrow left icon" msgid "←" msgstr "" -#: includes/class-freemius.php:15551 +#: includes/class-freemius.php:17351 msgctxt "ASCII arrow right icon" msgid "➤" msgstr "" -#: includes/class-freemius.php:15553, templates/pricing.php:97 +#: includes/class-freemius.php:17353, templates/pricing.php:103 msgctxt "noun" msgid "Pricing" msgstr "" -#: includes/class-freemius.php:15766, includes/customizer/class-fs-customizer-support-section.php:67 +#: includes/class-freemius.php:17566, includes/customizer/class-fs-customizer-support-section.php:67 msgid "Support Forum" msgstr "" -#: includes/class-freemius.php:16552 +#: includes/class-freemius.php:18536 msgid "Your email has been successfully verified - you are AWESOME!" msgstr "" -#: includes/class-freemius.php:16553 +#: includes/class-freemius.php:18537 msgctxt "a positive response" msgid "Right on" msgstr "" -#: includes/class-freemius.php:17178 +#: includes/class-freemius.php:19041 +msgid "seems like the key you entered doesn't match our records." +msgstr "" + +#: includes/class-freemius.php:19065 +msgid "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." +msgstr "" + +#: includes/class-freemius.php:19283 msgid "Your %s Add-on plan was successfully upgraded." msgstr "" -#: includes/class-freemius.php:17180 +#: includes/class-freemius.php:19285 msgid "%s Add-on was successfully purchased." msgstr "" -#: includes/class-freemius.php:17183 +#: includes/class-freemius.php:19288 msgid "Download the latest version" msgstr "" -#: includes/class-freemius.php:17269 -msgctxt "%1s - plugin title, %2s - API domain" -msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s" +#: includes/class-freemius.php:19374 +msgid "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s" msgstr "" -#: includes/class-freemius.php:17272, includes/class-freemius.php:17688, includes/class-freemius.php:17765 +#: includes/class-freemius.php:19380, includes/class-freemius.php:19390, includes/class-freemius.php:19835, includes/class-freemius.php:19924 msgid "Error received from the server:" msgstr "" -#: includes/class-freemius.php:17282 +#: includes/class-freemius.php:19390 msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again." msgstr "" -#: includes/class-freemius.php:17464, includes/class-freemius.php:17693, includes/class-freemius.php:17736, includes/class-freemius.php:17839 +#: includes/class-freemius.php:19604, includes/class-freemius.php:19840, includes/class-freemius.php:19895, includes/class-freemius.php:19998 msgctxt "something somebody says when they are thinking about what you have just said." msgid "Hmm" msgstr "" -#: includes/class-freemius.php:17477 +#: includes/class-freemius.php:19617 msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry." msgstr "" -#: includes/class-freemius.php:17478, templates/account.php:102, templates/add-ons.php:134, templates/account/partials/addon.php:43 +#: includes/class-freemius.php:19618, templates/account.php:113, templates/add-ons.php:250, templates/account/partials/addon.php:46 msgctxt "trial period" msgid "Trial" msgstr "" -#: includes/class-freemius.php:17483 +#: includes/class-freemius.php:19623 msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s." msgstr "" -#: includes/class-freemius.php:17487, includes/class-freemius.php:17545 +#: includes/class-freemius.php:19627, includes/class-freemius.php:19686 msgid "Please contact us here" msgstr "" -#: includes/class-freemius.php:17497 +#: includes/class-freemius.php:19638 +msgid "Your plan was successfully activated." +msgstr "" + +#: includes/class-freemius.php:19639 msgid "Your plan was successfully upgraded." msgstr "" -#: includes/class-freemius.php:17515 +#: includes/class-freemius.php:19656 msgid "Your plan was successfully changed to %s." msgstr "" -#: includes/class-freemius.php:17531 +#: includes/class-freemius.php:19672 msgid "Your license has expired. You can still continue using the free %s forever." msgstr "" -#: includes/class-freemius.php:17533 +#: includes/class-freemius.php:19674 msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." msgstr "" -#: includes/class-freemius.php:17541 +#: includes/class-freemius.php:19682 msgid "Your license has been cancelled. If you think it's a mistake, please contact support." msgstr "" -#: includes/class-freemius.php:17554 +#: includes/class-freemius.php:19695 msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support." msgstr "" -#: includes/class-freemius.php:17577 +#: includes/class-freemius.php:19721 msgid "Your free trial has expired. You can still continue using all our free features." msgstr "" -#: includes/class-freemius.php:17579 +#: includes/class-freemius.php:19723 msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." msgstr "" -#: includes/class-freemius.php:17684 +#: includes/class-freemius.php:19831 msgid "It looks like the license could not be activated." msgstr "" -#: includes/class-freemius.php:17714 +#: includes/class-freemius.php:19873 msgid "Your license was successfully activated." msgstr "" -#: includes/class-freemius.php:17740 +#: includes/class-freemius.php:19899 msgid "It looks like your site currently doesn't have an active license." msgstr "" -#: includes/class-freemius.php:17764 +#: includes/class-freemius.php:19923 msgid "It looks like the license deactivation failed." msgstr "" -#: includes/class-freemius.php:17792 +#: includes/class-freemius.php:19951 msgid "Your license was successfully deactivated, you are back to the %s plan." msgstr "" -#: includes/class-freemius.php:17793 +#: includes/class-freemius.php:19952 msgid "O.K" msgstr "" -#: includes/class-freemius.php:17846 +#: includes/class-freemius.php:20005 msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes." msgstr "" -#: includes/class-freemius.php:17855 +#: includes/class-freemius.php:20014 msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s." msgstr "" -#: includes/class-freemius.php:17897 +#: includes/class-freemius.php:20056 msgid "You are already running the %s in a trial mode." msgstr "" -#: includes/class-freemius.php:17908 +#: includes/class-freemius.php:20067 msgid "You already utilized a trial before." msgstr "" -#: includes/class-freemius.php:17922 +#: includes/class-freemius.php:20081 msgid "Plan %s do not exist, therefore, can't start a trial." msgstr "" -#: includes/class-freemius.php:17933 +#: includes/class-freemius.php:20092 msgid "Plan %s does not support a trial period." msgstr "" -#: includes/class-freemius.php:17944 +#: includes/class-freemius.php:20103 msgid "None of the %s's plans supports a trial period." msgstr "" -#: includes/class-freemius.php:17994 +#: includes/class-freemius.php:20153 msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)" msgstr "" -#: includes/class-freemius.php:18030 +#: includes/class-freemius.php:20189 msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes." msgstr "" -#: includes/class-freemius.php:18049 +#: includes/class-freemius.php:20208 msgid "Your %s free trial was successfully cancelled." msgstr "" -#: includes/class-freemius.php:18356 +#: includes/class-freemius.php:20524 msgid "Version %s was released." msgstr "" -#: includes/class-freemius.php:18356 +#: includes/class-freemius.php:20524 msgid "Please download %s." msgstr "" -#: includes/class-freemius.php:18363 +#: includes/class-freemius.php:20531 msgid "the latest %s version here" msgstr "" -#: includes/class-freemius.php:18368 +#: includes/class-freemius.php:20536 msgid "New" msgstr "" -#: includes/class-freemius.php:18373 +#: includes/class-freemius.php:20541 msgid "Seems like you got the latest release." msgstr "" -#: includes/class-freemius.php:18374 +#: includes/class-freemius.php:20542 msgid "You are all good!" msgstr "" -#: includes/class-freemius.php:18642 +#: includes/class-freemius.php:20812 msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box." msgstr "" -#: includes/class-freemius.php:18779 +#: includes/class-freemius.php:20951 msgid "Site successfully opted in." msgstr "" -#: includes/class-freemius.php:18780, includes/class-freemius.php:19591 +#: includes/class-freemius.php:20952, includes/class-freemius.php:21792 msgid "Awesome" msgstr "" -#: includes/class-freemius.php:18796, templates/forms/optout.php:32 +#: includes/class-freemius.php:20968, templates/forms/optout.php:32 msgid "We appreciate your help in making the %s better by letting us track some usage data." msgstr "" -#: includes/class-freemius.php:18797 +#: includes/class-freemius.php:20969 msgid "Thank you!" msgstr "" -#: includes/class-freemius.php:18804 +#: includes/class-freemius.php:20976 msgid "We will no longer be sending any usage data of %s on %s to %s." msgstr "" -#: includes/class-freemius.php:18933 +#: includes/class-freemius.php:21105 msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder." msgstr "" -#: includes/class-freemius.php:18939 +#: includes/class-freemius.php:21111 msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval." msgstr "" -#: includes/class-freemius.php:18944 +#: includes/class-freemius.php:21116 msgid "%s is the new owner of the account." msgstr "" -#: includes/class-freemius.php:18946 +#: includes/class-freemius.php:21118 msgctxt "as congratulations" msgid "Congrats" msgstr "" -#: includes/class-freemius.php:18966 +#: includes/class-freemius.php:21138 msgid "Sorry, we could not complete the email update. Another user with the same email is already registered." msgstr "" -#: includes/class-freemius.php:18967 +#: includes/class-freemius.php:21139 msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button." msgstr "" -#: includes/class-freemius.php:18974 +#: includes/class-freemius.php:21146 msgid "Change Ownership" msgstr "" -#: includes/class-freemius.php:18982 +#: includes/class-freemius.php:21154 msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments." msgstr "" -#: includes/class-freemius.php:18994 +#: includes/class-freemius.php:21166 msgid "Please provide your full name." msgstr "" -#: includes/class-freemius.php:18999 +#: includes/class-freemius.php:21171 msgid "Your name was successfully updated." msgstr "" -#: includes/class-freemius.php:19060 +#: includes/class-freemius.php:21232 msgid "You have successfully updated your %s." msgstr "" -#: includes/class-freemius.php:19200 +#: includes/class-freemius.php:21372 msgid "Just letting you know that the add-ons information of %s is being pulled from an external server." msgstr "" -#: includes/class-freemius.php:19201 +#: includes/class-freemius.php:21373 msgctxt "advance notice of something that will need attention." msgid "Heads up" msgstr "" -#: includes/class-freemius.php:19631 +#: includes/class-freemius.php:21832 msgctxt "exclamation" msgid "Hey" msgstr "" -#: includes/class-freemius.php:19631 +#: includes/class-freemius.php:21832 msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial." msgstr "" -#: includes/class-freemius.php:19639 +#: includes/class-freemius.php:21840 msgid "No commitment for %s days - cancel anytime!" msgstr "" -#: includes/class-freemius.php:19640 +#: includes/class-freemius.php:21841 msgid "No credit card required" msgstr "" -#: includes/class-freemius.php:19647, templates/forms/trial-start.php:53 +#: includes/class-freemius.php:21848, templates/forms/trial-start.php:53 msgctxt "call to action" msgid "Start free trial" msgstr "" -#: includes/class-freemius.php:19724 +#: includes/class-freemius.php:21925 msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!" msgstr "" -#: includes/class-freemius.php:19733 +#: includes/class-freemius.php:21934 msgid "Learn more" msgstr "" -#: includes/class-freemius.php:19883, templates/account.php:406, templates/account.php:509, templates/connect.php:171, templates/connect.php:421, templates/forms/license-activation.php:24, templates/account/partials/addon.php:235 +#: includes/class-freemius.php:22120, templates/account.php:499, templates/account.php:624, templates/connect.php:171, templates/connect.php:421, templates/forms/license-activation.php:27, templates/account/partials/addon.php:321 msgid "Activate License" msgstr "" -#: includes/class-freemius.php:19884, templates/account.php:469, templates/account.php:508, templates/account/partials/site.php:256 +#: includes/class-freemius.php:22121, templates/account.php:571, templates/account.php:623, templates/account/partials/addon.php:322, templates/account/partials/site.php:271 msgid "Change License" msgstr "" -#: includes/class-freemius.php:19966, templates/account/partials/site.php:161 +#: includes/class-freemius.php:22217, templates/account/partials/site.php:169 msgid "Opt Out" msgstr "" -#: includes/class-freemius.php:19968, includes/class-freemius.php:19973, templates/account/partials/site.php:43, templates/account/partials/site.php:161 +#: includes/class-freemius.php:22219, includes/class-freemius.php:22225, templates/account/partials/site.php:49, templates/account/partials/site.php:169 msgid "Opt In" msgstr "" -#: includes/class-freemius.php:20197 -msgid " The paid version of %1s is already installed. Please activate it to start benefiting the %2s features. %3s" +#: includes/class-freemius.php:22453 +msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s" msgstr "" -#: includes/class-freemius.php:20205 +#: includes/class-freemius.php:22461 msgid "Activate %s features" msgstr "" -#: includes/class-freemius.php:20218 +#: includes/class-freemius.php:22474 msgid "Please follow these steps to complete the upgrade" msgstr "" -#: includes/class-freemius.php:20222 +#: includes/class-freemius.php:22478 msgid "Download the latest %s version" msgstr "" -#: includes/class-freemius.php:20226 +#: includes/class-freemius.php:22482 msgid "Upload and activate the downloaded version" msgstr "" -#: includes/class-freemius.php:20228 +#: includes/class-freemius.php:22484 msgid "How to upload and activate?" msgstr "" -#: includes/class-freemius.php:20362 +#: includes/class-freemius.php:22618 msgid "%sClick here%s to choose the sites where you'd like to activate the license on." msgstr "" -#: includes/class-freemius.php:20523 +#: includes/class-freemius.php:22779 msgid "Auto installation only works for opted-in users." msgstr "" -#: includes/class-freemius.php:20533, includes/class-freemius.php:20566, includes/class-fs-plugin-updater.php:1060, includes/class-fs-plugin-updater.php:1074 +#: includes/class-freemius.php:22789, includes/class-freemius.php:22822, includes/class-fs-plugin-updater.php:1212, includes/class-fs-plugin-updater.php:1226 msgid "Invalid module ID." msgstr "" -#: includes/class-freemius.php:20542, includes/class-fs-plugin-updater.php:1096 +#: includes/class-freemius.php:22798, includes/class-fs-plugin-updater.php:1248 msgid "Premium version already active." msgstr "" -#: includes/class-freemius.php:20549 +#: includes/class-freemius.php:22805 msgid "You do not have a valid license to access the premium version." msgstr "" -#: includes/class-freemius.php:20556 +#: includes/class-freemius.php:22812 msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version." msgstr "" -#: includes/class-freemius.php:20574, includes/class-fs-plugin-updater.php:1095 +#: includes/class-freemius.php:22830, includes/class-fs-plugin-updater.php:1247 msgid "Premium add-on version already installed." msgstr "" -#: includes/class-freemius.php:20919 +#: includes/class-freemius.php:23180 msgid "View paid features" msgstr "" -#: includes/class-freemius.php:21239 +#: includes/class-freemius.php:23502 msgid "Thank you so much for using %s and its add-ons!" msgstr "" -#: includes/class-freemius.php:21240 +#: includes/class-freemius.php:23503 msgid "Thank you so much for using %s!" msgstr "" -#: includes/class-freemius.php:21246 +#: includes/class-freemius.php:23509 msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s." msgstr "" -#: includes/class-freemius.php:21250 +#: includes/class-freemius.php:23513 msgid "Thank you so much for using our products!" msgstr "" -#: includes/class-freemius.php:21251 +#: includes/class-freemius.php:23514 msgid "You've already opted-in to our usage-tracking, which helps us keep improving them." msgstr "" -#: includes/class-freemius.php:21270 +#: includes/class-freemius.php:23533 msgid "%s and its add-ons" msgstr "" -#: includes/class-freemius.php:21279 +#: includes/class-freemius.php:23542 msgid "Products" msgstr "" -#: includes/class-freemius.php:21286, templates/connect.php:272 +#: includes/class-freemius.php:23549, templates/connect.php:272 msgid "Yes" msgstr "" -#: includes/class-freemius.php:21287, templates/connect.php:273 +#: includes/class-freemius.php:23550, templates/connect.php:273 msgid "send me security & feature updates, educational content and offers." msgstr "" -#: includes/class-freemius.php:21288, templates/connect.php:278 +#: includes/class-freemius.php:23551, templates/connect.php:278 msgid "No" msgstr "" -#: includes/class-freemius.php:21290, templates/connect.php:280 +#: includes/class-freemius.php:23553, templates/connect.php:280 msgid "do %sNOT%s send me security & feature updates, educational content and offers." msgstr "" -#: includes/class-freemius.php:21300 -msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂" +#: includes/class-freemius.php:23563 +msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard :-)" msgstr "" -#: includes/class-freemius.php:21302, templates/connect.php:287 +#: includes/class-freemius.php:23565, templates/connect.php:287 msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:" msgstr "" -#: includes/class-freemius.php:21584 +#: includes/class-freemius.php:23847 msgid "License key is empty." msgstr "" -#: includes/class-fs-plugin-updater.php:184, templates/forms/premium-versions-upgrade-handler.php:57 +#: includes/class-fs-plugin-updater.php:206, templates/forms/premium-versions-upgrade-handler.php:57 msgid "Renew license" msgstr "" -#: includes/class-fs-plugin-updater.php:189, templates/forms/premium-versions-upgrade-handler.php:58 +#: includes/class-fs-plugin-updater.php:211, templates/forms/premium-versions-upgrade-handler.php:58 msgid "Buy license" msgstr "" -#: includes/class-fs-plugin-updater.php:278 +#: includes/class-fs-plugin-updater.php:321, includes/class-fs-plugin-updater.php:354 msgid "There is a %s of %s available." msgstr "" -#: includes/class-fs-plugin-updater.php:282 +#: includes/class-fs-plugin-updater.php:323, includes/class-fs-plugin-updater.php:359 +msgid "new Beta version" +msgstr "" + +#: includes/class-fs-plugin-updater.php:324, includes/class-fs-plugin-updater.php:360 msgid "new version" msgstr "" -#: includes/class-fs-plugin-updater.php:305 +#: includes/class-fs-plugin-updater.php:383 msgid "Important Upgrade Notice:" msgstr "" -#: includes/class-fs-plugin-updater.php:1125 +#: includes/class-fs-plugin-updater.php:1277 msgid "Installing plugin: %s" msgstr "" -#: includes/class-fs-plugin-updater.php:1166 +#: includes/class-fs-plugin-updater.php:1318 msgid "Unable to connect to the filesystem. Please confirm your credentials." msgstr "" -#: includes/class-fs-plugin-updater.php:1348 +#: includes/class-fs-plugin-updater.php:1500 msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work." msgstr "" -#: includes/fs-plugin-info-dialog.php:369, templates/account/partials/addon.php:292 +#: includes/fs-plugin-info-dialog.php:535 +msgid "Purchase More" +msgstr "" + +#: includes/fs-plugin-info-dialog.php:536, templates/account/partials/addon.php:385 msgctxt "verb" msgid "Purchase" msgstr "" -#: includes/fs-plugin-info-dialog.php:372 +#: includes/fs-plugin-info-dialog.php:540 msgid "Start my free %s" msgstr "" -#: includes/fs-plugin-info-dialog.php:413 +#: includes/fs-plugin-info-dialog.php:738 +msgid "Install Free Version Update Now" +msgstr "" + +#: includes/fs-plugin-info-dialog.php:739, templates/account.php:560 +msgid "Install Update Now" +msgstr "" + +#: includes/fs-plugin-info-dialog.php:748 msgid "Install Free Version Now" msgstr "" -#: includes/fs-plugin-info-dialog.php:414, templates/auto-installation.php:111, templates/account/partials/addon.php:272, templates/account/partials/addon.php:322 +#: includes/fs-plugin-info-dialog.php:749, templates/add-ons.php:323, templates/auto-installation.php:111, templates/account/partials/addon.php:365, templates/account/partials/addon.php:418 msgid "Install Now" msgstr "" -#: includes/fs-plugin-info-dialog.php:425 +#: includes/fs-plugin-info-dialog.php:765 msgctxt "as download latest version" msgid "Download Latest Free Version" msgstr "" -#: includes/fs-plugin-info-dialog.php:426, templates/account.php:80, templates/account/partials/addon.php:21 +#: includes/fs-plugin-info-dialog.php:766, templates/account.php:91, templates/add-ons.php:37, templates/account/partials/addon.php:25 msgctxt "as download latest version" msgid "Download Latest" msgstr "" -#: includes/fs-plugin-info-dialog.php:436 -msgid "Install Free Version Update Now" -msgstr "" - -#: includes/fs-plugin-info-dialog.php:437, templates/account.php:460 -msgid "Install Update Now" -msgstr "" - -#: includes/fs-plugin-info-dialog.php:448 -msgid "Newer Free Version (%s) Installed" -msgstr "" - -#: includes/fs-plugin-info-dialog.php:449 -msgid "Newer Version (%s) Installed" +#: includes/fs-plugin-info-dialog.php:781, templates/add-ons.php:329, templates/account/partials/addon.php:356, templates/account/partials/addon.php:412 +msgid "Activate this add-on" msgstr "" -#: includes/fs-plugin-info-dialog.php:457 -msgid "Latest Free Version Installed" +#: includes/fs-plugin-info-dialog.php:783, templates/connect.php:418 +msgid "Activate Free Version" msgstr "" -#: includes/fs-plugin-info-dialog.php:458 -msgid "Latest Version Installed" +#: includes/fs-plugin-info-dialog.php:784, templates/account.php:115, templates/add-ons.php:330, templates/account/partials/addon.php:48 +msgid "Activate" msgstr "" -#: includes/fs-plugin-info-dialog.php:613 +#: includes/fs-plugin-info-dialog.php:994 msgctxt "Plugin installer section title" msgid "Description" msgstr "" -#: includes/fs-plugin-info-dialog.php:614 +#: includes/fs-plugin-info-dialog.php:995 msgctxt "Plugin installer section title" msgid "Installation" msgstr "" -#: includes/fs-plugin-info-dialog.php:615 +#: includes/fs-plugin-info-dialog.php:996 msgctxt "Plugin installer section title" msgid "FAQ" msgstr "" -#: includes/fs-plugin-info-dialog.php:616, templates/plugin-info/description.php:55 +#: includes/fs-plugin-info-dialog.php:997, templates/plugin-info/description.php:55 msgid "Screenshots" msgstr "" -#: includes/fs-plugin-info-dialog.php:617 +#: includes/fs-plugin-info-dialog.php:998 msgctxt "Plugin installer section title" msgid "Changelog" msgstr "" -#: includes/fs-plugin-info-dialog.php:618 +#: includes/fs-plugin-info-dialog.php:999 msgctxt "Plugin installer section title" msgid "Reviews" msgstr "" -#: includes/fs-plugin-info-dialog.php:619 +#: includes/fs-plugin-info-dialog.php:1000 msgctxt "Plugin installer section title" msgid "Other Notes" msgstr "" -#: includes/fs-plugin-info-dialog.php:634 +#: includes/fs-plugin-info-dialog.php:1015 msgctxt "Plugin installer section title" msgid "Features & Pricing" msgstr "" -#: includes/fs-plugin-info-dialog.php:644 +#: includes/fs-plugin-info-dialog.php:1025 msgid "Plugin Install" msgstr "" -#: includes/fs-plugin-info-dialog.php:716 +#: includes/fs-plugin-info-dialog.php:1097 msgctxt "e.g. Professional Plan" msgid "%s Plan" msgstr "" -#: includes/fs-plugin-info-dialog.php:742 +#: includes/fs-plugin-info-dialog.php:1123 msgctxt "e.g. the best product" msgid "Best" msgstr "" -#: includes/fs-plugin-info-dialog.php:748, includes/fs-plugin-info-dialog.php:768 +#: includes/fs-plugin-info-dialog.php:1129, includes/fs-plugin-info-dialog.php:1149 msgctxt "as every month" msgid "Monthly" msgstr "" -#: includes/fs-plugin-info-dialog.php:751 +#: includes/fs-plugin-info-dialog.php:1132 msgctxt "as once a year" msgid "Annual" msgstr "" -#: includes/fs-plugin-info-dialog.php:754 +#: includes/fs-plugin-info-dialog.php:1135 msgid "Lifetime" msgstr "" -#: includes/fs-plugin-info-dialog.php:768, includes/fs-plugin-info-dialog.php:770, includes/fs-plugin-info-dialog.php:772 +#: includes/fs-plugin-info-dialog.php:1149, includes/fs-plugin-info-dialog.php:1151, includes/fs-plugin-info-dialog.php:1153 msgctxt "e.g. billed monthly" msgid "Billed %s" msgstr "" -#: includes/fs-plugin-info-dialog.php:770 +#: includes/fs-plugin-info-dialog.php:1151 msgctxt "as once a year" msgid "Annually" msgstr "" -#: includes/fs-plugin-info-dialog.php:772 +#: includes/fs-plugin-info-dialog.php:1153 msgctxt "as once a year" msgid "Once" msgstr "" -#: includes/fs-plugin-info-dialog.php:778 +#: includes/fs-plugin-info-dialog.php:1159 msgid "Single Site License" msgstr "" -#: includes/fs-plugin-info-dialog.php:780 +#: includes/fs-plugin-info-dialog.php:1161 msgid "Unlimited Licenses" msgstr "" -#: includes/fs-plugin-info-dialog.php:782 +#: includes/fs-plugin-info-dialog.php:1163 msgid "Up to %s Sites" msgstr "" -#: includes/fs-plugin-info-dialog.php:792, templates/plugin-info/features.php:82 +#: includes/fs-plugin-info-dialog.php:1173, templates/plugin-info/features.php:82 msgctxt "as monthly period" msgid "mo" msgstr "" -#: includes/fs-plugin-info-dialog.php:799, templates/plugin-info/features.php:80 +#: includes/fs-plugin-info-dialog.php:1180, templates/plugin-info/features.php:80 msgctxt "as annual period" msgid "year" msgstr "" -#: includes/fs-plugin-info-dialog.php:853 +#: includes/fs-plugin-info-dialog.php:1234 msgctxt "noun" msgid "Price" msgstr "" -#: includes/fs-plugin-info-dialog.php:901 +#: includes/fs-plugin-info-dialog.php:1282 msgid "Save %s" msgstr "" -#: includes/fs-plugin-info-dialog.php:911 +#: includes/fs-plugin-info-dialog.php:1292 msgid "No commitment for %s - cancel anytime" msgstr "" -#: includes/fs-plugin-info-dialog.php:914 +#: includes/fs-plugin-info-dialog.php:1295 msgid "After your free %s, pay as little as %s" msgstr "" -#: includes/fs-plugin-info-dialog.php:925 +#: includes/fs-plugin-info-dialog.php:1306 msgid "Details" msgstr "" -#: includes/fs-plugin-info-dialog.php:929, templates/account.php:91, templates/debug.php:201, templates/debug.php:238, templates/debug.php:452, templates/account/partials/addon.php:32 +#: includes/fs-plugin-info-dialog.php:1310, templates/account.php:102, templates/debug.php:203, templates/debug.php:240, templates/debug.php:457, templates/account/partials/addon.php:36 msgctxt "product version" msgid "Version" msgstr "" -#: includes/fs-plugin-info-dialog.php:936 +#: includes/fs-plugin-info-dialog.php:1317 msgctxt "as the plugin author" msgid "Author" msgstr "" -#: includes/fs-plugin-info-dialog.php:943 +#: includes/fs-plugin-info-dialog.php:1324 msgid "Last Updated" msgstr "" -#: includes/fs-plugin-info-dialog.php:948, templates/account.php:376 +#: includes/fs-plugin-info-dialog.php:1329, templates/account.php:468 msgctxt "x-ago" msgid "%s ago" msgstr "" -#: includes/fs-plugin-info-dialog.php:957 +#: includes/fs-plugin-info-dialog.php:1338 msgid "Requires WordPress Version" msgstr "" -#: includes/fs-plugin-info-dialog.php:958 +#: includes/fs-plugin-info-dialog.php:1339 msgid "%s or higher" msgstr "" -#: includes/fs-plugin-info-dialog.php:965 +#: includes/fs-plugin-info-dialog.php:1346 msgid "Compatible up to" msgstr "" -#: includes/fs-plugin-info-dialog.php:973 +#: includes/fs-plugin-info-dialog.php:1354 msgid "Downloaded" msgstr "" -#: includes/fs-plugin-info-dialog.php:977 +#: includes/fs-plugin-info-dialog.php:1358 msgid "%s time" msgstr "" -#: includes/fs-plugin-info-dialog.php:979 +#: includes/fs-plugin-info-dialog.php:1360 msgid "%s times" msgstr "" -#: includes/fs-plugin-info-dialog.php:989 +#: includes/fs-plugin-info-dialog.php:1370 msgid "WordPress.org Plugin Page" msgstr "" -#: includes/fs-plugin-info-dialog.php:997 +#: includes/fs-plugin-info-dialog.php:1378 msgid "Plugin Homepage" msgstr "" -#: includes/fs-plugin-info-dialog.php:1005, includes/fs-plugin-info-dialog.php:1087 +#: includes/fs-plugin-info-dialog.php:1386, includes/fs-plugin-info-dialog.php:1468 msgid "Donate to this plugin" msgstr "" -#: includes/fs-plugin-info-dialog.php:1012 +#: includes/fs-plugin-info-dialog.php:1393 msgid "Average Rating" msgstr "" -#: includes/fs-plugin-info-dialog.php:1019 +#: includes/fs-plugin-info-dialog.php:1400 msgid "based on %s" msgstr "" -#: includes/fs-plugin-info-dialog.php:1023 +#: includes/fs-plugin-info-dialog.php:1404 msgid "%s rating" msgstr "" -#: includes/fs-plugin-info-dialog.php:1025 +#: includes/fs-plugin-info-dialog.php:1406 msgid "%s ratings" msgstr "" -#: includes/fs-plugin-info-dialog.php:1040 +#: includes/fs-plugin-info-dialog.php:1421 msgid "%s star" msgstr "" -#: includes/fs-plugin-info-dialog.php:1042 +#: includes/fs-plugin-info-dialog.php:1423 msgid "%s stars" msgstr "" -#: includes/fs-plugin-info-dialog.php:1053 +#: includes/fs-plugin-info-dialog.php:1434 msgid "Click to see reviews that provided a rating of %s" msgstr "" -#: includes/fs-plugin-info-dialog.php:1066 +#: includes/fs-plugin-info-dialog.php:1447 msgid "Contributors" msgstr "" -#: includes/fs-plugin-info-dialog.php:1095, includes/fs-plugin-info-dialog.php:1097 +#: includes/fs-plugin-info-dialog.php:1476, includes/fs-plugin-info-dialog.php:1478 msgid "Warning" msgstr "" -#: includes/fs-plugin-info-dialog.php:1095 +#: includes/fs-plugin-info-dialog.php:1476 msgid "This plugin has not been tested with your current version of WordPress." msgstr "" -#: includes/fs-plugin-info-dialog.php:1097 +#: includes/fs-plugin-info-dialog.php:1478 msgid "This plugin has not been marked as compatible with your version of WordPress." msgstr "" -#: includes/fs-plugin-info-dialog.php:1116 +#: includes/fs-plugin-info-dialog.php:1497 msgid "Paid add-on must be deployed to Freemius." msgstr "" -#: includes/fs-plugin-info-dialog.php:1117 +#: includes/fs-plugin-info-dialog.php:1498 msgid "Add-on must be deployed to WordPress.org or Freemius." msgstr "" -#: templates/account.php:81, templates/forms/subscription-cancellation.php:96, templates/account/partials/addon.php:22, templates/account/partials/site.php:295 +#: includes/fs-plugin-info-dialog.php:1519 +msgid "Newer Version (%s) Installed" +msgstr "" + +#: includes/fs-plugin-info-dialog.php:1520 +msgid "Newer Free Version (%s) Installed" +msgstr "" + +#: includes/fs-plugin-info-dialog.php:1527 +msgid "Latest Version Installed" +msgstr "" + +#: includes/fs-plugin-info-dialog.php:1528 +msgid "Latest Free Version Installed" +msgstr "" + +#: templates/account.php:92, templates/forms/subscription-cancellation.php:96, templates/account/partials/addon.php:26, templates/account/partials/site.php:311 msgid "Downgrading your plan" msgstr "" -#: templates/account.php:82, templates/forms/subscription-cancellation.php:97, templates/account/partials/addon.php:23, templates/account/partials/site.php:296 +#: templates/account.php:93, templates/forms/subscription-cancellation.php:97, templates/account/partials/addon.php:27, templates/account/partials/site.php:312 msgid "Cancelling the subscription" msgstr "" -#. translators: %1s: Either 'Downgrading your plan' or 'Cancelling the subscription' -#: templates/account.php:84, templates/forms/subscription-cancellation.php:99, templates/account/partials/addon.php:25, templates/account/partials/site.php:298 -msgid "%1s will immediately stop all future recurring payments and your %s plan license will expire in %s." +#. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the subscription' +#: templates/account.php:95, templates/forms/subscription-cancellation.php:99, templates/account/partials/site.php:314 +msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s." msgstr "" -#: templates/account.php:85, templates/forms/subscription-cancellation.php:100, templates/account/partials/addon.php:26, templates/account/partials/site.php:299 +#: templates/account.php:96, templates/forms/subscription-cancellation.php:100, templates/account/partials/addon.php:30, templates/account/partials/site.php:315 msgid "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price." msgstr "" -#: templates/account.php:86, templates/forms/subscription-cancellation.php:106, templates/account/partials/addon.php:27 +#: templates/account.php:97, templates/forms/subscription-cancellation.php:106, templates/account/partials/addon.php:31 msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?" msgstr "" -#: templates/account.php:87, templates/forms/subscription-cancellation.php:101, templates/account/partials/addon.php:28, templates/account/partials/site.php:300 +#: templates/account.php:98, templates/forms/subscription-cancellation.php:101, templates/account/partials/addon.php:32, templates/account/partials/site.php:316 msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support." msgstr "" -#: templates/account.php:88, templates/forms/subscription-cancellation.php:102, templates/account/partials/addon.php:29, templates/account/partials/site.php:301 +#: templates/account.php:99, templates/forms/subscription-cancellation.php:102, templates/account/partials/addon.php:33, templates/account/partials/site.php:317 msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features." msgstr "" #. translators: %s: Plan title (e.g. "Professional") -#: templates/account.php:90, templates/account/partials/activate-license-button.php:31, templates/account/partials/addon.php:31 +#: templates/account.php:101, templates/account/partials/activate-license-button.php:31, templates/account/partials/addon.php:35 msgid "Activate %s Plan" msgstr "" #. translators: %s: Time period (e.g. Auto renews in "2 months") -#: templates/account.php:93, templates/account/partials/addon.php:34, templates/account/partials/site.php:275 +#: templates/account.php:104, templates/account/partials/addon.php:38, templates/account/partials/site.php:291 msgid "Auto renews in %s" msgstr "" #. translators: %s: Time period (e.g. Expires in "2 months") -#: templates/account.php:95, templates/account/partials/addon.php:36, templates/account/partials/site.php:277 +#: templates/account.php:106, templates/account/partials/addon.php:40, templates/account/partials/site.php:293 msgid "Expires in %s" msgstr "" -#: templates/account.php:96, templates/account/partials/addon.php:37 +#: templates/account.php:107 msgctxt "as synchronize license" msgid "Sync License" msgstr "" -#: templates/account.php:97, templates/account/partials/addon.php:38 +#: templates/account.php:108, templates/account/partials/addon.php:41 msgid "Cancel Trial" msgstr "" -#: templates/account.php:98, templates/account/partials/addon.php:39 +#: templates/account.php:109, templates/account/partials/addon.php:42 msgid "Change Plan" msgstr "" -#: templates/account.php:99, templates/account/partials/addon.php:40 +#: templates/account.php:110, templates/account/partials/addon.php:43 msgctxt "verb" msgid "Upgrade" msgstr "" -#: templates/account.php:101, templates/account/partials/addon.php:42, templates/account/partials/site.php:302 +#: templates/account.php:112, templates/account/partials/addon.php:45, templates/account/partials/site.php:318 msgctxt "verb" msgid "Downgrade" msgstr "" -#: templates/account.php:103, templates/add-ons.php:130, templates/plugin-info/features.php:72, templates/account/partials/addon.php:44, templates/account/partials/site.php:31 +#: templates/account.php:114, templates/add-ons.php:246, templates/plugin-info/features.php:72, templates/account/partials/addon.php:47, templates/account/partials/site.php:33 msgid "Free" msgstr "" -#: templates/account.php:104, templates/account/partials/addon.php:45 -msgid "Activate" -msgstr "" - -#: templates/account.php:105, templates/debug.php:371, includes/customizer/class-fs-customizer-upsell-control.php:106, templates/account/partials/addon.php:46 +#: templates/account.php:116, templates/debug.php:373, includes/customizer/class-fs-customizer-upsell-control.php:110, templates/account/partials/addon.php:49 msgctxt "as product pricing plan" msgid "Plan" msgstr "" -#: templates/account.php:158 +#: templates/account.php:117 +msgid "Bundle Plan" +msgstr "" + +#: templates/account.php:191 msgid "Free Trial" msgstr "" -#: templates/account.php:169 +#: templates/account.php:202 msgid "Account Details" msgstr "" -#: templates/account.php:179 +#: templates/account.php:209, templates/forms/data-debug-mode.php:33 +msgid "Start Debug" +msgstr "" + +#: templates/account.php:211 +msgid "Stop Debug" +msgstr "" + +#: templates/account.php:218 +msgid "Billing & Invoices" +msgstr "" + +#: templates/account.php:229 msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?" msgstr "" -#: templates/account.php:181 +#: templates/account.php:231 msgid "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?" msgstr "" -#: templates/account.php:184 +#: templates/account.php:234 msgid "Delete Account" msgstr "" -#: templates/account.php:196, templates/account/partials/addon.php:159, templates/account/partials/deactivate-license-button.php:35 +#: templates/account.php:246, templates/account/partials/addon.php:231, templates/account/partials/deactivate-license-button.php:35 msgid "Deactivate License" msgstr "" -#: templates/account.php:219, templates/forms/subscription-cancellation.php:125 +#: templates/account.php:269, templates/forms/subscription-cancellation.php:125 msgid "Are you sure you want to proceed?" msgstr "" -#: templates/account.php:219, templates/account/partials/addon.php:182 +#: templates/account.php:269, templates/account/partials/addon.php:255 msgid "Cancel Subscription" msgstr "" -#: templates/account.php:247 +#: templates/account.php:298, templates/account/partials/addon.php:340 msgctxt "as synchronize" msgid "Sync" msgstr "" -#: templates/account.php:261, templates/debug.php:487 +#: templates/account.php:313, templates/debug.php:507 msgid "Name" msgstr "" -#: templates/account.php:267, templates/debug.php:488 +#: templates/account.php:319, templates/debug.php:508 msgid "Email" msgstr "" -#: templates/account.php:274, templates/debug.php:370, templates/debug.php:526 +#: templates/account.php:326, templates/debug.php:371, templates/debug.php:557 msgid "User ID" msgstr "" -#: templates/account.php:282 +#: templates/account.php:344, templates/account.php:637, templates/account.php:682, templates/debug.php:238, templates/debug.php:365, templates/debug.php:454, templates/debug.php:506, templates/debug.php:555, templates/debug.php:632, templates/account/payments.php:35, templates/debug/logger.php:21 +msgid "ID" +msgstr "" + +#: templates/account.php:351 msgid "Site ID" msgstr "" -#: templates/account.php:285 +#: templates/account.php:354 msgid "No ID" msgstr "" -#: templates/account.php:290, templates/debug.php:243, templates/debug.php:372, templates/debug.php:453, templates/debug.php:490, templates/account/partials/site.php:219 +#: templates/account.php:359, templates/debug.php:245, templates/debug.php:374, templates/debug.php:458, templates/debug.php:510, templates/account/partials/site.php:227 msgid "Public Key" msgstr "" -#: templates/account.php:296, templates/debug.php:373, templates/debug.php:454, templates/debug.php:491, templates/account/partials/site.php:231 +#: templates/account.php:365, templates/debug.php:375, templates/debug.php:459, templates/debug.php:511, templates/account/partials/site.php:239 msgid "Secret Key" msgstr "" -#: templates/account.php:299 +#: templates/account.php:368 msgctxt "as secret encryption key missing" msgid "No Secret" msgstr "" -#: templates/account.php:318, templates/account/partials/site.php:112, templates/account/partials/site.php:114 +#: templates/account.php:395, templates/account/partials/site.php:120, templates/account/partials/site.php:122 msgid "Trial" msgstr "" -#: templates/account.php:337, templates/debug.php:531, templates/account/partials/site.php:248 +#: templates/account.php:422, templates/debug.php:562, templates/account/partials/site.php:260 msgid "License Key" msgstr "" -#: templates/account.php:367 +#: templates/account.php:453 +msgid "Join the Beta program" +msgstr "" + +#: templates/account.php:459 msgid "not verified" msgstr "" -#: templates/account.php:376, templates/account/partials/addon.php:120 +#: templates/account.php:468, templates/account/partials/addon.php:190 msgid "Expired" msgstr "" -#: templates/account.php:428 +#: templates/account.php:528 msgid "Premium version" msgstr "" -#: templates/account.php:430 +#: templates/account.php:530 msgid "Free version" msgstr "" -#: templates/account.php:442 +#: templates/account.php:542 msgid "Verify Email" msgstr "" -#: templates/account.php:453 +#: templates/account.php:553 msgid "Download %s Version" msgstr "" -#: templates/account.php:467, templates/account.php:649, templates/account/partials/site.php:237, templates/account/partials/site.php:255 +#: templates/account.php:568, templates/account.php:820, templates/account/partials/site.php:248, templates/account/partials/site.php:270 msgctxt "verb" msgid "Show" msgstr "" -#: templates/account.php:481 +#: templates/account.php:583 msgid "What is your %s?" msgstr "" -#: templates/account.php:489, templates/account/billing.php:27 +#: templates/account.php:591, templates/account/billing.php:21 msgctxt "verb" msgid "Edit" msgstr "" -#: templates/account.php:502 +#: templates/account.php:616 msgid "Sites" msgstr "" -#: templates/account.php:513 +#: templates/account.php:629 msgid "Search by address" msgstr "" -#: templates/account.php:522, templates/account.php:570, templates/debug.php:236, templates/debug.php:364, templates/debug.php:449, templates/debug.php:486, templates/debug.php:524, templates/debug.php:597, templates/account/payments.php:35, templates/debug/logger.php:21 -msgid "ID" -msgstr "" - -#: templates/account.php:523, templates/debug.php:367 +#: templates/account.php:638, templates/debug.php:368 msgid "Address" msgstr "" -#: templates/account.php:524 +#: templates/account.php:639 msgid "License" msgstr "" -#: templates/account.php:525 +#: templates/account.php:640 msgid "Plan" msgstr "" -#: templates/account.php:573 +#: templates/account.php:685 msgctxt "as software license" msgid "License" msgstr "" -#: templates/account.php:643 +#: templates/account.php:814 msgctxt "verb" msgid "Hide" msgstr "" -#: templates/account.php:686 +#: templates/account.php:836, templates/forms/data-debug-mode.php:31 +msgid "Processing" +msgstr "" + +#: templates/account.php:839 +msgid "Get updates for bleeding edge Beta versions of %s." +msgstr "" + +#: templates/account.php:897 msgid "Cancelling %s" msgstr "" -#: templates/account.php:686, templates/account.php:703, templates/forms/subscription-cancellation.php:27, templates/forms/deactivation/form.php:117 +#: templates/account.php:897, templates/account.php:914, templates/forms/subscription-cancellation.php:27, templates/forms/deactivation/form.php:133 msgid "trial" msgstr "" -#: templates/account.php:701, templates/forms/deactivation/form.php:134 +#: templates/account.php:912, templates/forms/deactivation/form.php:150 msgid "Cancelling %s..." msgstr "" -#: templates/account.php:704, templates/forms/subscription-cancellation.php:28, templates/forms/deactivation/form.php:118 +#: templates/account.php:915, templates/forms/subscription-cancellation.php:28, templates/forms/deactivation/form.php:134 msgid "subscription" msgstr "" -#: templates/account.php:718 +#: templates/account.php:929 msgid "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?" msgstr "" -#: templates/add-ons.php:36 +#: templates/add-ons.php:38 +msgid "View details" +msgstr "" + +#: templates/add-ons.php:48 msgid "Add Ons for %s" msgstr "" -#: templates/add-ons.php:44 -msgid "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." +#: templates/add-ons.php:58 +msgid "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." msgstr "" -#: templates/add-ons.php:139 -msgid "View details" +#: templates/add-ons.php:229 +msgctxt "active add-on" +msgid "Active" +msgstr "" + +#: templates/add-ons.php:230 +msgctxt "installed add-on" +msgid "Installed" msgstr "" -#: templates/admin-notice.php:13, templates/forms/license-activation.php:208, templates/forms/resend-key.php:77 +#: templates/admin-notice.php:13, templates/forms/license-activation.php:207, templates/forms/resend-key.php:77 msgctxt "as close a window" msgid "Dismiss" msgstr "" @@ -1351,11 +1432,11 @@ msgstr "" msgid "Cancel Installation" msgstr "" -#: templates/checkout.php:172 +#: templates/checkout.php:180 msgid "Checkout" msgstr "" -#: templates/checkout.php:172 +#: templates/checkout.php:180 msgid "PCI compliant" msgstr "" @@ -1377,7 +1458,7 @@ msgstr "" msgid "Thanks %s!" msgstr "" -#: templates/connect.php:172, templates/forms/license-activation.php:43 +#: templates/connect.php:172, templates/forms/license-activation.php:46 msgid "Agree & Activate License" msgstr "" @@ -1425,15 +1506,15 @@ msgstr "" msgid "During the update process we detected %s site(s) in the network that are still pending your attention." msgstr "" -#: templates/connect.php:253, templates/forms/license-activation.php:46 +#: templates/connect.php:253, templates/forms/data-debug-mode.php:35, templates/forms/license-activation.php:49 msgid "License key" msgstr "" -#: templates/connect.php:256, templates/forms/license-activation.php:19 +#: templates/connect.php:256, templates/forms/license-activation.php:22 msgid "Can't find your license key?" msgstr "" -#: templates/connect.php:315, templates/connect.php:630, templates/forms/deactivation/retry-skip.php:20 +#: templates/connect.php:315, templates/connect.php:652, templates/forms/deactivation/retry-skip.php:20 msgctxt "verb" msgid "Skip" msgstr "" @@ -1482,7 +1563,7 @@ msgstr "" msgid "Newsletter" msgstr "" -#: templates/connect.php:391, templates/forms/license-activation.php:38 +#: templates/connect.php:391, templates/forms/license-activation.php:41 msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license." msgstr "" @@ -1494,10 +1575,6 @@ msgstr "" msgid "Don't have a license key?" msgstr "" -#: templates/connect.php:418 -msgid "Activate Free Version" -msgstr "" - #: templates/connect.php:420 msgid "Have a license key?" msgstr "" @@ -1514,12 +1591,12 @@ msgstr "" msgid "Terms of Service" msgstr "" -#: templates/connect.php:766 +#: templates/connect.php:805 msgctxt "as in the process of sending an email" msgid "Sending email" msgstr "" -#: templates/connect.php:767 +#: templates/connect.php:806 msgctxt "as activating plugin" msgid "Activating" msgstr "" @@ -1547,7 +1624,7 @@ msgctxt "as code debugging" msgid "Debugging" msgstr "" -#: templates/debug.php:54, templates/debug.php:248, templates/debug.php:374, templates/debug.php:492 +#: templates/debug.php:54, templates/debug.php:250, templates/debug.php:376, templates/debug.php:512 msgid "Actions" msgstr "" @@ -1583,186 +1660,190 @@ msgstr "" msgid "Set DB Option" msgstr "" -#: templates/debug.php:180 +#: templates/debug.php:182 msgid "Key" msgstr "" -#: templates/debug.php:181 +#: templates/debug.php:183 msgid "Value" msgstr "" -#: templates/debug.php:197 +#: templates/debug.php:199 msgctxt "as software development kit versions" msgid "SDK Versions" msgstr "" -#: templates/debug.php:202 +#: templates/debug.php:204 msgid "SDK Path" msgstr "" -#: templates/debug.php:203, templates/debug.php:242 +#: templates/debug.php:205, templates/debug.php:244 msgid "Module Path" msgstr "" -#: templates/debug.php:204 +#: templates/debug.php:206 msgid "Is Active" msgstr "" -#: templates/debug.php:232, templates/debug/plugins-themes-sync.php:35 +#: templates/debug.php:234, templates/debug/plugins-themes-sync.php:35 msgid "Plugins" msgstr "" -#: templates/debug.php:232, templates/debug/plugins-themes-sync.php:56 +#: templates/debug.php:234, templates/debug/plugins-themes-sync.php:56 msgid "Themes" msgstr "" -#: templates/debug.php:237, templates/debug.php:369, templates/debug.php:451, templates/debug/scheduled-crons.php:80 +#: templates/debug.php:239, templates/debug.php:370, templates/debug.php:456, templates/debug/scheduled-crons.php:80 msgid "Slug" msgstr "" -#: templates/debug.php:239, templates/debug.php:450 +#: templates/debug.php:241, templates/debug.php:455 msgid "Title" msgstr "" -#: templates/debug.php:240 +#: templates/debug.php:242 msgctxt "as application program interface" msgid "API" msgstr "" -#: templates/debug.php:241 +#: templates/debug.php:243 msgid "Freemius State" msgstr "" -#: templates/debug.php:245 +#: templates/debug.php:247 msgid "Network Blog" msgstr "" -#: templates/debug.php:246 +#: templates/debug.php:248 msgid "Network User" msgstr "" -#: templates/debug.php:283 +#: templates/debug.php:285 msgctxt "as connection was successful" msgid "Connected" msgstr "" -#: templates/debug.php:284 +#: templates/debug.php:286 msgctxt "as connection blocked" msgid "Blocked" msgstr "" -#: templates/debug.php:320 +#: templates/debug.php:322 msgid "Simulate Trial Promotion" msgstr "" -#: templates/debug.php:332 +#: templates/debug.php:334 msgid "Simulate Network Upgrade" msgstr "" -#: templates/debug.php:358 +#: templates/debug.php:359 msgid "%s Installs" msgstr "" -#: templates/debug.php:360 +#: templates/debug.php:361 msgctxt "like websites" msgid "Sites" msgstr "" -#: templates/debug.php:366, templates/account/partials/site.php:148 +#: templates/debug.php:367, templates/account/partials/site.php:156 msgid "Blog ID" msgstr "" -#: templates/debug.php:431, templates/debug.php:509, templates/account/partials/addon.php:339 +#: templates/debug.php:372 +msgid "License ID" +msgstr "" + +#: templates/debug.php:436, templates/debug.php:535, templates/account/partials/addon.php:435 msgctxt "verb" msgid "Delete" msgstr "" -#: templates/debug.php:445 +#: templates/debug.php:450 msgid "Add Ons of module %s" msgstr "" -#: templates/debug.php:482 +#: templates/debug.php:502 msgid "Users" msgstr "" -#: templates/debug.php:489 +#: templates/debug.php:509 msgid "Verified" msgstr "" -#: templates/debug.php:520 +#: templates/debug.php:551 msgid "%s Licenses" msgstr "" -#: templates/debug.php:525 +#: templates/debug.php:556 msgid "Plugin ID" msgstr "" -#: templates/debug.php:527 +#: templates/debug.php:558 msgid "Plan ID" msgstr "" -#: templates/debug.php:528 +#: templates/debug.php:559 msgid "Quota" msgstr "" -#: templates/debug.php:529 +#: templates/debug.php:560 msgid "Activated" msgstr "" -#: templates/debug.php:530 +#: templates/debug.php:561 msgid "Blocking" msgstr "" -#: templates/debug.php:532 +#: templates/debug.php:563 msgctxt "as expiration date" msgid "Expiration" msgstr "" -#: templates/debug.php:555 +#: templates/debug.php:590 msgid "Debug Log" msgstr "" -#: templates/debug.php:559 +#: templates/debug.php:594 msgid "All Types" msgstr "" -#: templates/debug.php:566 +#: templates/debug.php:601 msgid "All Requests" msgstr "" -#: templates/debug.php:571, templates/debug.php:600, templates/debug/logger.php:25 +#: templates/debug.php:606, templates/debug.php:635, templates/debug/logger.php:25 msgid "File" msgstr "" -#: templates/debug.php:572, templates/debug.php:598, templates/debug/logger.php:23 +#: templates/debug.php:607, templates/debug.php:633, templates/debug/logger.php:23 msgid "Function" msgstr "" -#: templates/debug.php:573 +#: templates/debug.php:608 msgid "Process ID" msgstr "" -#: templates/debug.php:574 +#: templates/debug.php:609 msgid "Logger" msgstr "" -#: templates/debug.php:575, templates/debug.php:599, templates/debug/logger.php:24 +#: templates/debug.php:610, templates/debug.php:634, templates/debug/logger.php:24 msgid "Message" msgstr "" -#: templates/debug.php:577 +#: templates/debug.php:612 msgid "Filter" msgstr "" -#: templates/debug.php:585 +#: templates/debug.php:620 msgid "Download" msgstr "" -#: templates/debug.php:596, templates/debug/logger.php:22 +#: templates/debug.php:631, templates/debug/logger.php:22 msgid "Type" msgstr "" -#: templates/debug.php:601, templates/debug/logger.php:26 +#: templates/debug.php:636, templates/debug/logger.php:26 msgid "Timestamp" msgstr "" @@ -1787,52 +1868,52 @@ msgstr "" msgid "Requests" msgstr "" -#: templates/account/billing.php:28 +#: templates/account/billing.php:22 msgctxt "verb" msgid "Update" msgstr "" -#: templates/account/billing.php:39 +#: templates/account/billing.php:33 msgid "Billing" msgstr "" -#: templates/account/billing.php:44, templates/account/billing.php:44 +#: templates/account/billing.php:38, templates/account/billing.php:38 msgid "Business name" msgstr "" -#: templates/account/billing.php:45, templates/account/billing.php:45 +#: templates/account/billing.php:39, templates/account/billing.php:39 msgid "Tax / VAT ID" msgstr "" -#: templates/account/billing.php:48, templates/account/billing.php:48, templates/account/billing.php:49, templates/account/billing.php:49 +#: templates/account/billing.php:42, templates/account/billing.php:42, templates/account/billing.php:43, templates/account/billing.php:43 msgid "Address Line %d" msgstr "" -#: templates/account/billing.php:52, templates/account/billing.php:52 +#: templates/account/billing.php:46, templates/account/billing.php:46 msgid "City" msgstr "" -#: templates/account/billing.php:52, templates/account/billing.php:52 +#: templates/account/billing.php:46, templates/account/billing.php:46 msgid "Town" msgstr "" -#: templates/account/billing.php:53, templates/account/billing.php:53 +#: templates/account/billing.php:47, templates/account/billing.php:47 msgid "ZIP / Postal Code" msgstr "" -#: templates/account/billing.php:308 +#: templates/account/billing.php:302 msgid "Country" msgstr "" -#: templates/account/billing.php:310 +#: templates/account/billing.php:304 msgid "Select Country" msgstr "" -#: templates/account/billing.php:317, templates/account/billing.php:318 +#: templates/account/billing.php:311, templates/account/billing.php:312 msgid "State" msgstr "" -#: templates/account/billing.php:317, templates/account/billing.php:318 +#: templates/account/billing.php:311, templates/account/billing.php:312 msgid "Province" msgstr "" @@ -2080,11 +2161,27 @@ msgstr "" msgid "Become an affiliate" msgstr "" -#: templates/forms/license-activation.php:20 +#: templates/forms/data-debug-mode.php:25 +msgid "Please enter the license key to enable the debug mode:" +msgstr "" + +#: templates/forms/data-debug-mode.php:27 +msgid "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:" +msgstr "" + +#: templates/forms/data-debug-mode.php:32 +msgid "Submit" +msgstr "" + +#: templates/forms/data-debug-mode.php:36 +msgid "User key" +msgstr "" + +#: templates/forms/license-activation.php:23 msgid "Please enter the license key that you received in the email right after the purchase:" msgstr "" -#: templates/forms/license-activation.php:25 +#: templates/forms/license-activation.php:28 msgid "Update License" msgstr "" @@ -2163,7 +2260,7 @@ msgstr "" msgid "Proceed" msgstr "" -#: templates/forms/subscription-cancellation.php:191, templates/forms/deactivation/form.php:150 +#: templates/forms/subscription-cancellation.php:191, templates/forms/deactivation/form.php:171 msgid "Cancel %s & Proceed" msgstr "" @@ -2175,35 +2272,39 @@ msgstr "" msgid "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial." msgstr "" -#: templates/js/style-premium-theme.php:37 +#: templates/js/style-premium-theme.php:39 msgid "Premium" msgstr "" -#: templates/partials/network-activation.php:23 +#: templates/js/style-premium-theme.php:42 +msgid "Beta" +msgstr "" + +#: templates/partials/network-activation.php:27 msgid "Activate license on all sites in the network." msgstr "" -#: templates/partials/network-activation.php:24 +#: templates/partials/network-activation.php:28 msgid "Apply on all sites in the network." msgstr "" -#: templates/partials/network-activation.php:27 +#: templates/partials/network-activation.php:31 msgid "Activate license on all pending sites." msgstr "" -#: templates/partials/network-activation.php:28 +#: templates/partials/network-activation.php:32 msgid "Apply on all pending sites." msgstr "" -#: templates/partials/network-activation.php:36, templates/partials/network-activation.php:68 +#: templates/partials/network-activation.php:40, templates/partials/network-activation.php:74 msgid "allow" msgstr "" -#: templates/partials/network-activation.php:38, templates/partials/network-activation.php:70 +#: templates/partials/network-activation.php:43, templates/partials/network-activation.php:77 msgid "delegate" msgstr "" -#: templates/partials/network-activation.php:41, templates/partials/network-activation.php:73 +#: templates/partials/network-activation.php:47, templates/partials/network-activation.php:81 msgid "skip" msgstr "" @@ -2228,31 +2329,32 @@ msgstr "" msgid "Last license" msgstr "" -#: templates/account/partials/addon.php:115 -msgid "Cancelled" +#. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the subscription' +#: templates/account/partials/addon.php:29 +msgid "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s." msgstr "" -#: templates/account/partials/addon.php:125 -msgid "No expiration" +#: templates/account/partials/addon.php:185 +msgid "Cancelled" msgstr "" -#: templates/account/partials/addon.php:264, templates/account/partials/addon.php:317 -msgid "Activate this add-on" +#: templates/account/partials/addon.php:195 +msgid "No expiration" msgstr "" -#: templates/account/partials/site.php:181 +#: templates/account/partials/site.php:189 msgid "Owner Name" msgstr "" -#: templates/account/partials/site.php:193 +#: templates/account/partials/site.php:201 msgid "Owner Email" msgstr "" -#: templates/account/partials/site.php:205 +#: templates/account/partials/site.php:213 msgid "Owner ID" msgstr "" -#: templates/account/partials/site.php:270 +#: templates/account/partials/site.php:286 msgid "Subscription" msgstr "" @@ -2264,47 +2366,47 @@ msgstr "" msgid "Contact Support" msgstr "" -#: templates/forms/deactivation/form.php:59 +#: templates/forms/deactivation/form.php:64 msgid "Anonymous feedback" msgstr "" -#: templates/forms/deactivation/form.php:66 +#: templates/forms/deactivation/form.php:70 msgid "Deactivate" msgstr "" -#: templates/forms/deactivation/form.php:68 +#: templates/forms/deactivation/form.php:72 msgid "Activate %s" msgstr "" -#: templates/forms/deactivation/form.php:80 +#: templates/forms/deactivation/form.php:87 msgid "Quick Feedback" msgstr "" -#: templates/forms/deactivation/form.php:84 +#: templates/forms/deactivation/form.php:91 msgid "If you have a moment, please let us know why you are %s" msgstr "" -#: templates/forms/deactivation/form.php:84 +#: templates/forms/deactivation/form.php:91 msgid "deactivating" msgstr "" -#: templates/forms/deactivation/form.php:84 +#: templates/forms/deactivation/form.php:91 msgid "switching" msgstr "" -#: templates/forms/deactivation/form.php:332 +#: templates/forms/deactivation/form.php:365 msgid "Submit & %s" msgstr "" -#: templates/forms/deactivation/form.php:353 +#: templates/forms/deactivation/form.php:386 msgid "Kindly tell us the reason so we can improve." msgstr "" -#: templates/forms/deactivation/form.php:478 +#: templates/forms/deactivation/form.php:511 msgid "Yes - %s" msgstr "" -#: templates/forms/deactivation/form.php:485 +#: templates/forms/deactivation/form.php:518 msgid "Skip & %s" msgstr "" diff --git a/external/Freemius/start.php b/external/Freemius/start.php index 0d2a48c0..db06fee6 100755 --- a/external/Freemius/start.php +++ b/external/Freemius/start.php @@ -15,7 +15,7 @@ * * @var string */ - $this_sdk_version = '2.2.4'; + $this_sdk_version = '2.3.1'; #region SDK Selection Logic -------------------------------------------------------------------- diff --git a/external/Freemius/templates/account.php b/external/Freemius/templates/account.php index 2ca85d7d..42af1b89 100755 --- a/external/Freemius/templates/account.php +++ b/external/Freemius/templates/account.php @@ -44,20 +44,26 @@ $site = $fs->get_site(); $name = $user->get_name(); $license = $fs->_get_license(); + $is_data_debug_mode = $fs->is_data_debug_mode(); + $is_whitelabeled = $fs->is_whitelabeled(); $subscription = ( is_object( $license ) ? $fs->_get_subscription( $license->id ) : null ); $plan = $fs->get_plan(); $is_active_subscription = ( is_object( $subscription ) && $subscription->is_active() ); $is_paid_trial = $fs->is_paid_trial(); - $has_paid_plan = $fs->has_paid_plan(); - $show_upgrade = ( $has_paid_plan && ! $is_paying && ! $is_paid_trial ); + $has_paid_plan = $fs->apply_filters( 'has_paid_plan_account', $fs->has_paid_plan() ); + $show_upgrade = ( ! $is_whitelabeled && $has_paid_plan && ! $is_paying && ! $is_paid_trial ); $trial_plan = $fs->get_trial_plan(); if ( $has_paid_plan ) { $fs->_add_license_activation_dialog_box(); } + if ( $fs->is_whitelabeled( true ) || $fs->is_data_debug_mode() ) { + $fs->_add_data_debug_mode_dialog_box(); + } + if ( fs_request_get_bool( 'auto_install' ) ) { $fs->_add_auto_installation_dialog_box(); } @@ -70,6 +76,11 @@ ) ); } + $payments = $fs->_fetch_payments(); + + $show_billing = ( ! $is_whitelabeled && is_array( $payments ) && 0 < count( $payments ) ); + + $has_tabs = $fs->_add_tabs_before_content(); if ( $has_tabs ) { @@ -80,8 +91,8 @@ $download_latest_text = fs_text_x_inline( 'Download Latest', 'as download latest version', 'download-latest', $slug ); $downgrading_plan_text = fs_text_inline( 'Downgrading your plan', 'downgrading-plan', $slug ); $cancelling_subscription_text = fs_text_inline( 'Cancelling the subscription', 'cancelling-subscription', $slug ); - /* translators: %1s: Either 'Downgrading your plan' or 'Cancelling the subscription' */ - $downgrade_x_confirm_text = fs_text_inline( '%1s will immediately stop all future recurring payments and your %s plan license will expire in %s.', 'downgrade-x-confirm', $slug ); + /* translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the subscription' */ + $downgrade_x_confirm_text = fs_text_inline( '%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s.', 'downgrade-x-confirm', $slug ); $prices_increase_text = fs_text_inline( 'Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price.', 'pricing-increase-warning', $slug ); $cancel_trial_confirm_text = fs_text_inline( 'Cancelling the trial will immediately block access to all premium features. Are you sure?', 'cancel-trial-confirm', $slug ); $after_downgrade_non_blocking_text = fs_text_inline( 'You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support.', 'after-downgrade-non-blocking', $slug ); @@ -103,6 +114,7 @@ $free_text = fs_text_inline( 'Free', 'free', $slug ); $activate_text = fs_text_inline( 'Activate', 'activate', $slug ); $plan_text = fs_text_x_inline( 'Plan', 'as product pricing plan', 'plan', $slug ); + $bundle_plan_text = fs_text_inline( 'Bundle Plan', 'bundle-plan', $slug ); $show_plan_row = true; $show_license_row = is_object( $license ); @@ -142,6 +154,27 @@ } } } + + $is_child_license = ( is_object( $license ) && FS_Plugin_License::is_valid_id( $license->parent_license_id ) ); + $bundle_subscription = null; + + if ( + $show_plan_row && + is_object( $license ) && + FS_Plugin_License::is_valid_id( $license->parent_license_id ) + ) { + $bundle_subscription = $fs->_get_subscription( $license->parent_license_id ); + } + + $is_active_bundle_subscription = ( is_object( $bundle_subscription ) && $bundle_subscription->is_active() ); + + $fs_blog_id = ( is_multisite() && ! is_network_admin() ) ? + get_current_blog_id() : + 0; + + $active_plugins_directories_map = Freemius::get_active_plugins_directories_map( $fs_blog_id ); + + $is_premium = $fs->is_premium(); ?> apply_filters( 'hide_account_tabs', false ) ) : ?> @@ -169,85 +202,102 @@ class="nav-tab"> - - - - - - title ) ); - } else { - echo esc_attr( sprintf( fs_text_inline( 'Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?', 'delete-account-confirm', $slug ), $fs->get_module_label( true ) ) ); - } - ?>')) this.parentNode.submit(); return false;"> - - + is_whitelabeled( true ) ) : ?> + + + + • + + + • - - - - - - - - - - - • + + + + + + + title ) ); + } else { + echo esc_attr( sprintf( fs_text_inline( 'Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?', 'delete-account-confirm', $slug ), $fs->get_module_label( true ) ) ); + } + ?>')) this.parentNode.submit(); return false;"> + + + • - is_lifetime() && - $is_active_subscription - ) : ?> - - - - - is_only_premium() ? fs_text_inline( 'Cancel Subscription', 'cancel-subscription', $slug ) : $downgrade_text ) ?> - - - • - - is_single_plan() ) : ?> - - - - • - - - - - - - - - - • - - - - - get_unique_affix() . '_sync_license' ) ?> - - - - + + + + + + + + + + + • + + is_lifetime() && + $is_active_subscription + ) : ?> + + + + + is_only_premium() ? fs_text_inline( 'Cancel Subscription', 'cancel-subscription', $slug ) : $downgrade_text ) ?> + + + • + + is_single_plan() ) : ?> + + + + • + + + + + + + + + + • + + + + + + get_unique_affix() . '_sync_license' ) ?> + + + @@ -256,26 +306,45 @@ class="dashicons dashicons-image-rotate"> apply_filters( 'hide_license_key', false ) ); $profile = array(); + + if ( ! $is_whitelabeled ) { + $profile[] = array( + 'id' => 'user_name', + 'title' => fs_text_inline( 'Name', 'name', $slug ), + 'value' => $name + ); + // if (isset($user->email) && false !== strpos($user->email, '@')) + $profile[] = array( + 'id' => 'email', + 'title' => fs_text_inline( 'Email', 'email', $slug ), + 'value' => $user->email + ); + + if ( is_numeric( $user->id ) ) { + $profile[] = array( + 'id' => 'user_id', + 'title' => fs_text_inline( 'User ID', 'user-id', $slug ), + 'value' => $user->id + ); + } + } + $profile[] = array( - 'id' => 'user_name', - 'title' => fs_text_inline( 'Name', 'name', $slug ), - 'value' => $name + 'id' => 'product', + 'title' => ( $fs->is_plugin() ? + fs_text_inline( 'Plugin', 'plugin', $slug ) : + fs_text_inline( 'Theme', 'theme', $slug ) ), + 'value' => $fs->get_plugin_title() ); - // if (isset($user->email) && false !== strpos($user->email, '@')) + $profile[] = array( - 'id' => 'email', - 'title' => fs_text_inline( 'Email', 'email', $slug ), - 'value' => $user->email + 'id' => 'product_id', + 'title' => ( $fs->is_plugin() ? + fs_text_inline( 'Plugin', 'plugin', $slug ) : + fs_text_inline( 'Theme', 'theme', $slug ) ) . ' ' . fs_text_inline( 'ID', 'id', $slug ), + 'value' => $fs->get_id() ); - if ( is_numeric( $user->id ) ) { - $profile[] = array( - 'id' => 'user_id', - 'title' => fs_text_inline( 'User ID', 'user-id', $slug ), - 'value' => $user->id - ); - } - if ( ! fs_is_network_admin()) { $profile[] = array( 'id' => 'site_id', @@ -307,6 +376,14 @@ class="dashicons dashicons-image-rotate"> $fs->get_plugin_version() ); + if ( $is_premium && ! $is_whitelabeled ) { + $profile[] = array( + 'id' => 'beta_program', + 'title' => '', + 'value' => $user->is_beta + ); + } + if ( $has_paid_plan ) { if ( $fs->is_trial() ) { if ( $show_plan_row ) { @@ -322,12 +399,20 @@ class="dashicons dashicons-image-rotate"> 'plan', - 'title' => $plan_text, + 'title' => ( $is_child_license ? ucfirst( $fs->get_module_type() ) . ' ' : '' ) . $plan_text, 'value' => strtoupper( is_string( $plan->name ) ? $plan->title : strtoupper( $free_text ) ) ); + + if ( $is_child_license ) { + $profile[] = array( + 'id' => 'bundle_plan', + 'title' => $bundle_plan_text, + 'value' => strtoupper( $license->parent_plan_title ) + ); + } } if ( is_object( $license ) ) { @@ -353,13 +438,20 @@ class="dashicons dashicons-image-rotate"> - : + - > + > - - + + + + + + /> @@ -371,7 +463,7 @@ class="dashicons dashicons-image-rotate"> is_lifetime() ) : ?> - is_first_payment_pending() ) : ?> + is_first_payment_pending() ) : ?> is_expired() ?> is_trial() ) : ?> trial_ends ) ) ) ) ?> + is_free_plan() && ! fs_is_network_admin() ? $fs->_get_available_premium_license( $site->is_localhost() ) : false ?> @@ -402,7 +495,7 @@ class="fs-tag "> - is_premium() ) : ?> + + + + + is_first_payment_pending() ) : ?> + next_payment ) ) ) ) ?> + + has_premium_version() ) : ?> - is_premium() ) : ?> + can_use_premium_code() ) : ?> @@ -432,7 +532,7 @@ class="fs-tag fs-can_use_premium_code() ? 'success' : 'warn' ?>" - + is_verified() ) : ?> @@ -464,10 +564,12 @@ class="fs-tag fs-can_use_premium_code() ? 'success' : 'warn' ?>" - - - - + + + + + + secret_key ) && in_array( $p['id'], array( @@ -492,8 +594,20 @@ class="fs-tag fs-can_use_premium_code() ? 'success' : 'warn' ?>" - + @@ -501,18 +615,19 @@ class="fs-tag fs-can_use_premium_code() ? 'success' : 'warn' ?>" - - is_premium() ) ) : ?> - - + + + + + + - @@ -545,10 +660,7 @@ class="fs-tag fs-can_use_premium_code() ? 'success' : 'warn' ?>" get_account_addons(); - if ( ! is_array( $account_addons ) ) { - $account_addons = array(); - } + $account_addons = $fs->get_updated_account_addons(); $installed_addons = $fs->get_installed_addons(); $installed_addons_ids = array(); @@ -578,12 +690,64 @@ class="fs-tag fs-can_use_premium_code() ? 'success' : 'warn' ?>" - is_whitelabeled_by_flag() ) { + $hide_all_addons_data = true; + + foreach ( $addons_to_show as $addon_id ) { + $is_addon_installed = isset( $installed_addons_ids_map[ $addon_id ] ); + $addon_info = $fs->_get_addon_info( $addon_id, $is_addon_installed ); + $is_addon_connected = $addon_info['is_connected']; + + $fs_addon = ( $is_addon_connected && $is_addon_installed ) ? + freemius( $addon_id ) : + null; + + $is_whitelabeled = is_object( $fs_addon ) ? + $fs_addon->is_whitelabeled( true ) : + $addon_info['is_whitelabeled']; + + if ( ! $is_whitelabeled ) { + $hide_all_addons_data = false; + } + + if ( $is_data_debug_mode ) { + $is_whitelabeled = false; + } + + $addon_info_by_id[ $addon_id ] = $addon_info; + } + } + foreach ( $addons_to_show as $addon_id ) { + $is_addon_installed = isset( $installed_addons_ids_map[ $addon_id ] ); + + if ( + $hide_all_addons_data && + ! $is_addon_installed && + ! file_exists( fs_normalize_path( WP_PLUGIN_DIR . '/' . $fs->get_addon_basename( $addon_id ) ) ) + ) { + continue; + } + $addon_view_params = array( - 'parent_fs' => $fs, - 'addon_id' => $addon_id, - 'odd' => $odd, + 'parent_fs' => $fs, + 'addon_id' => $addon_id, + 'odd' => $odd, + 'fs_blog_id' => $fs_blog_id, + 'active_plugins_directories_map' => &$active_plugins_directories_map, + 'is_addon_installed' => $is_addon_installed, + 'addon_info' => isset( $addon_info_by_id[ $addon_id ] ) ? + $addon_info_by_id[ $addon_id ] : + $fs->_get_addon_info( $addon_id, $is_addon_installed ), + 'is_whitelabeled' => ( $is_whitelabeled && ! $is_data_debug_mode ) ); fs_require_template( @@ -602,16 +766,23 @@ class="fs-tag fs-can_use_premium_code() ? 'success' : 'warn' ?>" do_action( 'after_account_details' ) ?> $VARS['id'] ); - fs_require_once_template( 'account/billing.php', $view_params ); - fs_require_once_template( 'account/payments.php', $view_params ); + if ( $show_billing ) { + $view_params = array( 'id' => $VARS['id'] ); + fs_require_once_template( 'account/billing.php', $view_params ); + fs_require_once_template( 'account/payments.php', $view_params ); + } ?> - _maybe_add_subscription_cancellation_dialog_box( true ) ?> + _get_subscription_cancellation_dialog_box_template_params( true ); + if ( ! empty( $subscription_cancellation_dialog_box_template_params ) ) { + fs_require_template( 'forms/subscription-cancellation.php', $subscription_cancellation_dialog_box_template_params ); + } + ?> - \ No newline at end of file diff --git a/external/Freemius/templates/account/partials/addon.php b/external/Freemius/templates/account/partials/addon.php index 4e719355..8f626706 100755 --- a/external/Freemius/templates/account/partials/addon.php +++ b/external/Freemius/templates/account/partials/addon.php @@ -8,12 +8,16 @@ $odd = $VARS['odd']; $slug = $fs->get_slug(); + $fs_blog_id = $VARS['fs_blog_id']; - $addon = $fs->get_addon( $addon_id ); + $active_plugins_directories_map = $VARS['active_plugins_directories_map']; + + $addon_info = $VARS['addon_info']; $is_addon_activated = $fs->is_addon_activated( $addon_id ); - $is_addon_connected = $fs->is_addon_connected( $addon_id ); + $is_addon_connected = $addon_info['is_connected']; + $is_addon_installed = $VARS['is_addon_installed']; - $fs_addon = $is_addon_connected ? + $fs_addon = ( $is_addon_connected && $is_addon_installed ) ? freemius( $addon_id ) : false; @@ -21,8 +25,8 @@ $download_latest_text = fs_text_x_inline( 'Download Latest', 'as download latest version', 'download-latest', $slug ); $downgrading_plan_text = fs_text_inline( 'Downgrading your plan', 'downgrading-plan', $slug ); $cancelling_subscription_text = fs_text_inline( 'Cancelling the subscription', 'cancelling-subscription', $slug ); - /* translators: %1s: Either 'Downgrading your plan' or 'Cancelling the subscription' */ - $downgrade_x_confirm_text = fs_text_inline( '%1s will immediately stop all future recurring payments and your %s plan license will expire in %s.', 'downgrade-x-confirm', $slug ); + /* translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the subscription' */ + $downgrade_x_confirm_text = fs_text_inline( '%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s.', 'downgrade-x-confirm', $slug ); $prices_increase_text = fs_text_inline( 'Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price.', 'pricing-increase-warning', $slug ); $cancel_trial_confirm_text = fs_text_inline( 'Cancelling the trial will immediately block access to all premium features. Are you sure?', 'cancel-trial-confirm', $slug ); $after_downgrade_non_blocking_text = fs_text_inline( 'You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support.', 'after-downgrade-non-blocking', $slug ); @@ -34,7 +38,6 @@ $renews_in_text = fs_text_inline( 'Auto renews in %s', 'renews-in', $slug ); /* translators: %s: Time period (e.g. Expires in "2 months") */ $expires_in_text = fs_text_inline( 'Expires in %s', 'expires-in', $slug ); - $sync_license_text = fs_text_x_inline( 'Sync License', 'as synchronize license', 'sync-license', $slug ); $cancel_trial_text = fs_text_inline( 'Cancel Trial', 'cancel-trial', $slug ); $change_plan_text = fs_text_inline( 'Change Plan', 'change-plan', $slug ); $upgrade_text = fs_text_x_inline( 'Upgrade', 'verb', 'upgrade', $slug ); @@ -48,11 +51,16 @@ // Defaults. $plan = null; $is_paid_trial = false; + /** + * @var FS_Plugin_License $license + */ $license = null; $site = null; $is_active_subscription = false; $subscription = null; $is_paying = false; + $show_upgrade = false; + $is_whitelabeled = $VARS['is_whitelabeled']; if ( is_object( $fs_addon ) ) { $is_paying = $fs_addon->is_paying(); @@ -63,18 +71,81 @@ $fs_addon->_get_subscription( $license->id ) : null ); $plan = $fs_addon->get_plan(); - $is_active_subscription = ( is_object( $subscription ) && $subscription->is_active() ); + $plan_name = $plan->name; + $plan_title = $plan->title; $is_paid_trial = $fs_addon->is_paid_trial(); - $show_upgrade = ( $fs_addon->has_paid_plan() && ! $is_paying && ! $is_paid_trial && ! $fs_addon->_has_premium_license() ); - $is_current_license_expired = is_object( $license ) && $license->is_expired(); + $version = $fs_addon->get_plugin_version(); + $is_whitelabeled = ( + $fs_addon->is_whitelabeled( true ) && + ! $fs_addon->get_parent_instance()->is_data_debug_mode() + ); + $show_upgrade = ( + ! $is_whitelabeled && + $fs_addon->has_paid_plan() && + ! $is_paying && + ! $is_paid_trial && + ! $fs_addon->_has_premium_license() + ); + } else if ( $is_addon_connected ) { + if ( + empty( $addon_info ) || + ! isset( $addon_info['site'] ) + ) { + $is_addon_connected = false; + } else { + /** + * @var FS_Site $site + */ + $site = $addon_info['site']; + $version = $addon_info['version']; + + $plan_name = isset( $addon_info['plan_name'] ) ? + $addon_info['plan_name'] : + ''; + + $plan_title = isset( $addon_info['plan_title'] ) ? + $addon_info['plan_title'] : + ''; + + if ( isset( $addon_info['license'] ) ) { + $license = $addon_info['license']; + } + + if ( isset( $addon_info['subscription'] ) ) { + $subscription = $addon_info['subscription']; + } + + $has_valid_and_active_license = ( + is_object( $license ) && + $license->is_active() && + $license->is_valid() + ); + + $is_paid_trial = ( + $site->is_trial() && + $has_valid_and_active_license && + ( $site->trial_plan_id == $license->plan_id ) + ); + + $is_whitelabeled = $addon_info['is_whitelabeled']; + } } + + $has_feature_enabled_license = ( + is_object( $license ) && + $license->is_features_enabled() + ); + + $is_active_subscription = ( is_object( $subscription ) && $subscription->is_active() ); + + $show_delete_install_button = ( ! $is_paying && WP_FS__DEV_MODE && ! $is_whitelabeled ); ?> > - title ?> + @@ -82,21 +153,20 @@ - get_plugin_version() ?> + - name ) ? $plan->title : $free_text ) ?> + - is_trial() || is_object( $license ) ) : ?> - + is_trial() || is_object( $license ) ) : ?> is_trial() ) { + if ( $site->is_trial() ) { $tags[] = array( 'label' => $trial_text, 'type' => 'success' ); $tags[] = array( @@ -143,132 +213,155 @@ printf( '%s' . "\n", $t['type'], $t['label'] ); } ?> + - - get_id(), - 'account', - 'deactivate_license', - fs_text_inline( 'Deactivate License', 'deactivate-license', $slug ), - '', - array( 'plugin_id' => $addon_id ), - false - ); - - $human_readable_license_expiration = human_time_diff( time(), strtotime( $license->expiration ) ); - $downgrade_confirmation_message = sprintf( - $downgrade_x_confirm_text, - ( $fs_addon->is_only_premium() ? $cancelling_subscription_text : $downgrading_plan_text ), - $plan->title, - $human_readable_license_expiration - ); - - $after_downgrade_message = ! $license->is_block_features ? - sprintf( $after_downgrade_non_blocking_text, $plan->title, $fs_addon->get_module_label( true ) ) : - sprintf( $after_downgrade_blocking_text, $plan->title ); - - if ( ! $license->is_lifetime() && $is_active_subscription ) { + if ( ! $is_whitelabeled ) { + if ( $is_paying ) { $buttons[] = fs_ui_get_action_button( $fs->get_id(), 'account', - 'downgrade_account', - esc_html( $fs_addon->is_only_premium() ? fs_text_inline( 'Cancel Subscription', 'cancel-subscription', $slug ) : $downgrade_text ), + 'deactivate_license', + fs_text_inline( 'Deactivate License', 'deactivate-license', $slug ), '', array( 'plugin_id' => $addon_id ), false, - false, - false, - ( $downgrade_confirmation_message . ' ' . $after_downgrade_message . ' ' . $prices_increase_text ), - 'POST' + true + ); + + $human_readable_license_expiration = human_time_diff( time(), strtotime( $license->expiration ) ); + $downgrade_confirmation_message = sprintf( + $downgrade_x_confirm_text, + ( $fs_addon->is_only_premium() ? $cancelling_subscription_text : $downgrading_plan_text ), + $plan->title, + $human_readable_license_expiration ); - } - } else if ( $is_paid_trial ) { - $buttons[] = fs_ui_get_action_button( - $fs->get_id(), - 'account', - 'cancel_trial', - esc_html( $cancel_trial_text ), - '', - array( 'plugin_id' => $addon_id ), - false, - false, - 'dashicons dashicons-download', - $cancel_trial_confirm_text, - 'POST' - ); - } else { - $premium_license = $fs_addon->_get_available_premium_license(); - if ( is_object( $premium_license ) ) { - $premium_plan = $fs_addon->_get_plan_by_id( $premium_license->plan_id ); - $site = $fs_addon->get_site(); + $after_downgrade_message = ! $license->is_block_features ? + sprintf( $after_downgrade_non_blocking_text, $plan->title, $fs_addon->get_module_label( true ) ) : + sprintf( $after_downgrade_blocking_text, $plan->title ); + if ( ! $license->is_lifetime() && $is_active_subscription ) { + $buttons[] = fs_ui_get_action_button( + $fs->get_id(), + 'account', + 'downgrade_account', + esc_html( $fs_addon->is_only_premium() ? fs_text_inline( 'Cancel Subscription', 'cancel-subscription', $slug ) : $downgrade_text ), + '', + array( 'plugin_id' => $addon_id ), + false, + false, + false, + ( $downgrade_confirmation_message . ' ' . $after_downgrade_message . ' ' . $prices_increase_text ), + 'POST' + ); + } + } else if ( $is_paid_trial ) { $buttons[] = fs_ui_get_action_button( $fs->get_id(), 'account', - 'activate_license', - esc_html( sprintf( $activate_plan_text, $premium_plan->title, ( $site->is_localhost() && $premium_license->is_free_localhost ) ? '[localhost]' : ( 1 < $premium_license->left() ? $premium_license->left() . ' left' : '' ) ) ), + 'cancel_trial', + esc_html( $cancel_trial_text ), '', - array( - 'plugin_id' => $addon_id, - 'license_id' => $premium_license->id, - ) + array( 'plugin_id' => $addon_id ), + false, + false, + 'dashicons dashicons-download', + $cancel_trial_confirm_text, + 'POST' ); + } else if ( ! $has_feature_enabled_license ) { + $premium_licenses = $fs_addon->get_available_premium_licenses(); + + if ( ! empty( $premium_licenses ) ) { + $premium_license = $premium_licenses[0]; + $has_multiple_premium_licenses = ( 1 < count( $premium_licenses ) ); + + if ( ! $has_multiple_premium_licenses ) { + $premium_plan = $fs_addon->_get_plan_by_id( $premium_license->plan_id ); + $site = $fs_addon->get_site(); + + $buttons[] = fs_ui_get_action_button( + $fs->get_id(), + 'account', + 'activate_license', + esc_html( sprintf( $activate_plan_text, $premium_plan->title, ( $site->is_localhost() && $premium_license->is_free_localhost ) ? '[localhost]' : ( 1 < $premium_license->left() ? $premium_license->left() . ' left' : '' ) ) ), + ($has_multiple_premium_licenses ? + 'activate-license-trigger ' . $fs_addon->get_unique_affix() : + ''), + array( + 'plugin_id' => $addon_id, + 'license_id' => $premium_license->id, + ), + true, + true + ); + + $is_license_activation_added = true; + } + } } } - if ( 0 == count( $buttons ) ) { - if ( $show_upgrade && $fs_addon->is_premium() ) { +// if ( 0 == count( $buttons ) ) { + if ( $fs_addon->is_premium() && ! $is_license_activation_added ) { $fs_addon->_add_license_activation_dialog_box(); $buttons[] = fs_ui_get_action_button( $fs->get_id(), 'account', 'activate_license', - fs_esc_html_inline( 'Activate License', 'activate-license', $slug ), + ( ! $has_feature_enabled_license ) ? + fs_esc_html_inline( 'Activate License', 'activate-license', $slug ) : + fs_esc_html_inline( 'Change License', 'change-license', $slug ), 'activate-license-trigger ' . $fs_addon->get_unique_affix(), array( 'plugin_id' => $addon_id, ), - false, + (! $has_feature_enabled_license), true ); - } - // Add sync license only if non of the other CTAs are visible. - $buttons[] = fs_ui_get_action_button( - $fs->get_id(), - 'account', - $fs->get_unique_affix() . '_sync_license', - esc_html( $sync_license_text ), - '', - array( 'plugin_id' => $addon_id ), - false, - true - ); + $is_license_activation_added = true; + } - } + if ( $fs_addon->has_paid_plan() ) { + // Add sync license only if non of the other CTAs are visible. + $buttons[] = fs_ui_get_action_button( + $fs->get_id(), + 'account', + $fs->get_unique_affix() . '_sync_license', + fs_esc_html_x_inline( 'Sync', 'as synchronize', 'sync', $slug ), + '', + array( 'plugin_id' => $addon_id ), + false, + true + ); + } +// } } else if ( ! $show_upgrade ) { if ( $fs->is_addon_installed( $addon_id ) ) { $addon_file = $fs->get_addon_basename( $addon_id ); - $buttons[] = sprintf( - '%s', - wp_nonce_url( 'plugins.php?action=activate&plugin=' . $addon_file, 'activate-plugin_' . $addon_file ), - fs_esc_attr_inline( 'Activate this add-on', 'activate-this-addon', $slug ), - $activate_text - ); + + if ( ! isset( $active_plugins_directories_map[ dirname( $addon_file ) ] ) ) { + $buttons[] = sprintf( + '%s', + wp_nonce_url( 'plugins.php?action=activate&plugin=' . $addon_file, 'activate-plugin_' . $addon_file ), + fs_esc_attr_inline( 'Activate this add-on', 'activate-this-addon', $slug ), + $activate_text + ); + } } else { if ( $fs->is_allowed_to_install() ) { $buttons[] = sprintf( '%s', - wp_nonce_url( self_admin_url( 'update.php?action=install-plugin&plugin=' . $addon->slug ), 'install-plugin_' . $addon->slug ), + wp_nonce_url( self_admin_url( 'update.php?' . ( ( isset( $addon_info['has_paid_plan'] ) && $addon_info['has_paid_plan'] ) ? 'fs_allow_updater_and_dialog=true&' : '' ) . 'action=install-plugin&plugin=' . $addon_info['slug'] ), 'install-plugin_' . $addon_info['slug'] ), fs_text_inline( 'Install Now', 'install-now', $slug ) ); } else { @@ -283,10 +376,10 @@ if ( $show_upgrade ) { $buttons[] = sprintf( ' %s', - esc_url( network_admin_url( 'plugin-install.php?fs_allow_updater_and_dialog=true&tab=plugin-information&parent_plugin_id=' . $fs->get_id() . '&plugin=' . $addon->slug . + esc_url( network_admin_url( 'plugin-install.php?fs_allow_updater_and_dialog=true' . ( ! empty( $fs_blog_id ) ? '&fs_blog_id=' . $fs_blog_id : '' ) . '&tab=plugin-information&parent_plugin_id=' . $fs->get_id() . '&plugin=' . $addon_info['slug'] . '&TB_iframe=true&width=600&height=550' ) ), - esc_attr( sprintf( fs_text_inline( 'More information about %s', 'more-information-about-x', $slug ), $addon->title ) ), - esc_attr( $addon->title ), + esc_attr( sprintf( fs_text_inline( 'More information about %s', 'more-information-about-x', $slug ), $addon_info['title'] ) ), + esc_attr( $addon_info['title'] ), ( $fs_addon->has_free_plan() ? $upgrade_text : fs_text_x_inline( 'Purchase', 'verb', 'purchase', $slug ) ) @@ -307,19 +400,22 @@ is_addon_installed( $addon_id ); ?> - - is_addon_installed( $addon_id ) ) : ?> + + get_addon_basename( $addon_id ) ?> + + is_allowed_to_install() ) : ?> + href=""> @@ -328,8 +424,8 @@ class="edit"> - - + + get_slug(); - $site = $VARS['site']; - $main_license = $VARS['license']; - $has_paid_plan = $fs->has_paid_plan(); - $is_premium = $fs->is_premium(); - $main_user = $fs->get_user(); - $blog_id = $site['blog_id']; + $fs = $VARS['freemius']; + $slug = $fs->get_slug(); + $site = $VARS['site']; + $main_license = $VARS['license']; + $is_data_debug_mode = $fs->is_data_debug_mode(); + $is_whitelabeled = $fs->is_whitelabeled(); + $has_paid_plan = $fs->has_paid_plan(); + $is_premium = $fs->is_premium(); + $main_user = $fs->get_user(); + $blog_id = $site['blog_id']; $install = $VARS['install']; $is_registered = ! empty( $install ); $license = null; $trial_plan = $fs->get_trial_plan(); $free_text = fs_text_inline( 'Free', 'free', $slug ); + + if ( $is_whitelabeled && $fs->is_delegated_connection( $blog_id ) ) { + $is_whitelabeled = $fs->is_whitelabeled( true, $blog_id ); + } ?> data-install-id="id ?>"> @@ -72,28 +78,30 @@ $view_params['is_localhost'] = FS_Site::is_localhost_by_address( $site['url'] ); } - if ( is_object( $license ) ) { - $view_params['license'] = $license; + if ( ! $is_whitelabeled ) { + if ( is_object( $license ) ) { + $view_params['license'] = $license; - // Show license deactivation button. - fs_require_template( 'account/partials/deactivate-license-button.php', $view_params ); - } else { - if ( is_object( $main_license ) && $main_license->can_activate( $view_params['is_localhost'] ) ) { - // Main license is available for activation. - $available_license = $main_license; + // Show license deactivation button. + fs_require_template( 'account/partials/deactivate-license-button.php', $view_params ); } else { - // Try to find any available license for activation. - $available_license = $fs->_get_available_premium_license( $view_params['is_localhost'] ); - } + if ( is_object( $main_license ) && $main_license->can_activate( $view_params['is_localhost'] ) ) { + // Main license is available for activation. + $available_license = $main_license; + } else { + // Try to find any available license for activation. + $available_license = $fs->_get_available_premium_license( $view_params['is_localhost'] ); + } - if ( is_object( $available_license ) ) { - $premium_plan = $fs->_get_plan_by_id( $available_license->plan_id ); + if ( is_object( $available_license ) ) { + $premium_plan = $fs->_get_plan_by_id( $available_license->plan_id ); - $view_params['license'] = $available_license; - $view_params['class'] .= ' button-primary'; - $view_params['plan'] = $premium_plan; + $view_params['license'] = $available_license; + $view_params['class'] .= ' button-primary'; + $view_params['plan'] = $premium_plan; - fs_require_template( 'account/partials/activate-license-button.php', $view_params ); + fs_require_template( 'account/partials/activate-license-button.php', $view_params ); + } } } } ?> @@ -106,7 +114,7 @@ $plan_title = $free_text; } else { if ( $install->is_trial() ) { - if ( $trial_plan->id == $install->trial_plan_id ) { + if ( is_object( $trial_plan ) && $trial_plan->id == $install->trial_plan_id ) { $plan_title = is_string( $trial_plan->name ) ? strtoupper( $trial_plan->title ) : fs_text_inline( 'Trial', 'trial', $slug ); @@ -231,10 +239,14 @@ class="dashicons dashicons-arrow-right-alt2"> : - secret_key, 0, 6 ) ) . str_pad( '', 23 * 6, '•' ) . htmlspecialchars( substr( $install->secret_key, - 3 ) ) ?> + secret_key ) ?> + + + + @@ -248,13 +260,17 @@ class="dashicons dashicons-arrow-right-alt2"> : - secret_key, 0, 6 ) ) . str_pad( '', 23 * 6, '•' ) . htmlspecialchars( substr( $license->secret_key, - 3 ) ) ?> + get_html_escaped_masked_secret_key() ?> + + + + @@ -294,8 +310,8 @@ class="dashicons dashicons-arrow-right-alt2"> > id ?> created ) ) ?> - $gross ?> + formatted_gross() ?> is_migrated() ) : ?> diff --git a/external/Freemius/templates/add-ons.php b/external/Freemius/templates/add-ons.php index ade0fc49..55327ff7 100755 --- a/external/Freemius/templates/add-ons.php +++ b/external/Freemius/templates/add-ons.php @@ -1,197 +1,502 @@ -get_slug(); - - $open_addon_slug = fs_request_get( 'slug' ); - - $open_addon = false; - - /** - * @var FS_Plugin[] - */ - $addons = $fs->get_addons(); - - $has_addons = ( is_array( $addons ) && 0 < count( $addons ) ); - - $has_tabs = $fs->_add_tabs_before_content(); -?> - - - get_plugin_name() ) ) ?> - - - - - - - - - - slug ) ); - - $price = 0; - $has_trial = false; - $has_free_plan = false; - $has_paid_plan = false; - - $result = $fs->get_api_plugin_scope()->get( $fs->add_show_pending( "/addons/{$addon->id}/pricing.json?type=visible" ) ); - if ( ! isset( $result->error ) ) { - $plans = $result->plans; - - if ( is_array( $plans ) && 0 < count( $plans ) ) { - foreach ( $plans as $plan ) { - if ( ! isset( $plan->pricing ) || - ! is_array( $plan->pricing ) || - 0 == count( $plan->pricing ) - ) { - // No pricing means a free plan. - $has_free_plan = true; - continue; - } - - - $has_paid_plan = true; - $has_trial = $has_trial || ( is_numeric( $plan->trial_period ) && ( $plan->trial_period > 0 ) ); - - $min_price = 999999; - foreach ( $plan->pricing as $pricing ) { - if ( ! is_null( $pricing->annual_price ) && $pricing->annual_price > 0 ) { - $min_price = min( $min_price, $pricing->annual_price ); - } else if ( ! is_null( $pricing->monthly_price ) && $pricing->monthly_price > 0 ) { - $min_price = min( $min_price, 12 * $pricing->monthly_price ); - } - } - - if ( $min_price < 999999 ) { - $price = $min_price; - } - - } - } - - if ( ! $has_paid_plan && ! $has_free_plan ) { - continue; - } - } - ?> - - ', - esc_url( network_admin_url( 'plugin-install.php?fs_allow_updater_and_dialog=true&tab=plugin-information&parent_plugin_id=' . $fs->get_id() . '&plugin=' . $addon->slug . - '&TB_iframe=true&width=600&height=550' ) ), - esc_attr( sprintf( fs_text_inline( 'More information about %s', 'more-information-about-x', $slug ), $addon->title ) ), - esc_attr( $addon->title ) - ); - ?> - info ) ) { - $addon->info = new stdClass(); - } - if ( ! isset( $addon->info->card_banner_url ) ) { - $addon->info->card_banner_url = '//dashboard.freemius.com/assets/img/marketing/blueprint-300x100.jpg'; - } - if ( ! isset( $addon->info->short_description ) ) { - $addon->info->short_description = 'What\'s the one thing your add-on does really, really well?'; - } - ?> - - - - - title ?> - - 0) - $descriptors[] = '$' . number_format( $price, 2 ); - if ($has_trial) - $descriptors[] = fs_text_x_inline( 'Trial', 'trial period', 'trial', $slug ); - - echo implode(' - ', $descriptors) ?> - - info->short_description ) ? $addon->info->short_description : 'SHORT DESCRIPTION' ?> - - - - - - - - - - -_add_tabs_after_content(); - } - - $params = array( - 'page' => 'addons', - 'module_id' => $fs->get_id(), - 'module_type' => $fs->get_module_type(), - 'module_slug' => $slug, - 'module_version' => $fs->get_plugin_version(), - ); +get_slug(); + + $open_addon_slug = fs_request_get( 'slug' ); + + $open_addon = false; + + $is_data_debug_mode = $fs->is_data_debug_mode(); + $is_whitelabeled = $fs->is_whitelabeled(); + + /** + * @var FS_Plugin[] + */ + $addons = $fs->get_addons(); + + $has_addons = ( is_array( $addons ) && 0 < count( $addons ) ); + + $account_addon_ids = $fs->get_updated_account_addons(); + + $download_latest_text = fs_text_x_inline( 'Download Latest', 'as download latest version', 'download-latest', $slug ); + $view_details_text = fs_text_inline( 'View details', 'view-details', $slug ); + + $has_tabs = $fs->_add_tabs_before_content(); + + $fs_blog_id = ( is_multisite() && ! is_network_admin() ) ? + get_current_blog_id() : + 0; +?> + + + get_plugin_name() ) ) ?> + + + do_action( 'addons/after_title' ) ?> + + + + + + + + _get_addons_plans_and_pricing_map_by_id(); + + $active_plugins_directories_map = Freemius::get_active_plugins_directories_map( $fs_blog_id ); + ?> + is_whitelabeled_by_flag() ) { + $hide_all_addons_data = true; + + $addon_ids = $fs->get_updated_account_addons(); + $installed_addons = $fs->get_installed_addons(); + foreach ( $installed_addons as $fs_addon ) { + $addon_ids[] = $fs_addon->get_id(); + } + + if ( ! empty( $addon_ids ) ) { + $addon_ids = array_unique( $addon_ids ); + } + + foreach ( $addon_ids as $addon_id ) { + $addon = $fs->get_addon( $addon_id ); + + if ( ! is_object( $addon ) ) { + continue; + } + + $addon_storage = FS_Storage::instance( WP_FS__MODULE_TYPE_PLUGIN, $addon->slug ); + + if ( ! $addon_storage->is_whitelabeled ) { + $hide_all_addons_data = false; + break; + } + + if ( $is_data_debug_mode ) { + $is_whitelabeled = false; + } + } + } + ?> + + get_addon_basename( $addon->id ); + + $is_addon_installed = file_exists( fs_normalize_path( WP_PLUGIN_DIR . '/' . $basename ) ); + + if ( ! $is_addon_installed && $hide_all_addons_data ) { + continue; + } + + $is_addon_activated = $is_addon_installed ? + $fs->is_addon_activated( $addon->id ) : + false; + + $is_plugin_active = ( + $is_addon_activated || + isset( $active_plugins_directories_map[ dirname( $basename ) ] ) + ); + + $open_addon = ( $open_addon || ( $open_addon_slug === $addon->slug ) ); + + $price = 0; + $has_trial = false; + $has_free_plan = false; + $has_paid_plan = false; + + if ( isset( $plans_and_pricing_by_addon_id[$addon->id] ) ) { + $plans = $plans_and_pricing_by_addon_id[$addon->id]; + + if ( is_array( $plans ) && 0 < count( $plans ) ) { + foreach ( $plans as $plan ) { + if ( ! isset( $plan->pricing ) || + ! is_array( $plan->pricing ) || + 0 == count( $plan->pricing ) + ) { + // No pricing means a free plan. + $has_free_plan = true; + continue; + } + + + $has_paid_plan = true; + $has_trial = $has_trial || ( is_numeric( $plan->trial_period ) && ( $plan->trial_period > 0 ) ); + + $min_price = 999999; + foreach ( $plan->pricing as $pricing ) { + $pricing = new FS_Pricing( $pricing ); + + if ( ! $pricing->is_usd() ) { + /** + * Skip non-USD pricing. + * + * @author Leo Fajardo (@leorw) + * @since 2.3.1 + */ + continue; + } + + if ( $pricing->has_annual() ) { + $min_price = min( $min_price, $pricing->annual_price ); + } else if ( $pricing->has_monthly() ) { + $min_price = min( $min_price, 12 * $pricing->monthly_price ); + } + } + + if ( $min_price < 999999 ) { + $price = $min_price; + } + + } + } + + if ( ! $has_paid_plan && ! $has_free_plan ) { + continue; + } + } + ?> + + get_id() . '&plugin=' . $addon->slug . + '&TB_iframe=true&width=600&height=550' ) ), + esc_attr( sprintf( fs_text_inline( 'More information about %s', 'more-information-about-x', $slug ), $addon->title ) ), + esc_attr( $addon->title ) + ) . ' class="thickbox%s">%s'; + + echo sprintf( + $view_details_link, + /** + * Additional class. + * + * @author Leo Fajardo (@leorw) + * @since 2.2.4 + */ + ' fs-overlay', + /** + * Set the view details link text to an empty string since it is an overlay that + * doesn't really need a text and whose purpose is to open the details dialog when + * the card is clicked. + * + * @author Leo Fajardo (@leorw) + * @since 2.2.4 + */ + '' + ); + ?> + info ) ) { + $addon->info = new stdClass(); + } + if ( ! isset( $addon->info->card_banner_url ) ) { + $addon->info->card_banner_url = '//dashboard.freemius.com/assets/img/marketing/blueprint-300x100.jpg'; + } + if ( ! isset( $addon->info->short_description ) ) { + $addon->info->short_description = 'What\'s the one thing your add-on does really, really well?'; + } + ?> + + + %s', + esc_html( $is_plugin_active ? + fs_text_x_inline( 'Active', 'active add-on', 'active-addon', $slug ) : + fs_text_x_inline( 'Installed', 'installed add-on', 'installed-addon', $slug ) + ) + ); + } + ?> + + title ?> + + 0) + $descriptors[] = '$' . number_format( $price, 2 ); + if ($has_trial) + $descriptors[] = fs_text_x_inline( 'Trial', 'trial period', 'trial', $slug ); + + echo implode(' - ', $descriptors); + + } ?> + + info->short_description ) ? $addon->info->short_description : 'SHORT DESCRIPTION' ?> + is_wp_org_compliant ); + + $is_allowed_to_install = ( + $fs->is_allowed_to_install() || + $is_free_only_wp_org_compliant + ); + + $show_premium_activation_or_installation_action = true; + + if ( ! in_array( $addon->id, $account_addon_ids ) ) { + $show_premium_activation_or_installation_action = false; + } else if ( $is_addon_installed ) { + /** + * If any add-on's version (free or premium) is installed, check if the + * premium version can be activated and show the relevant action. Otherwise, + * show the relevant action for the free version. + * + * @author Leo Fajardo (@leorw) + * @since 2.4.5 + */ + $fs_addon = $is_addon_activated ? + $fs->get_addon_instance( $addon->id ) : + null; + + $premium_plugin_basename = is_object( $fs_addon ) ? + $fs_addon->premium_plugin_basename() : + "{$addon->premium_slug}/{$addon->slug}.php"; + + if ( + ( $is_addon_activated && $fs_addon->is_premium() ) || + file_exists( fs_normalize_path( WP_PLUGIN_DIR . '/' . $premium_plugin_basename ) ) + ) { + $basename = $premium_plugin_basename; + } + + $show_premium_activation_or_installation_action = ( + ( ! $is_addon_activated || ! $fs_addon->is_premium() ) && + /** + * This check is needed for cases when an active add-on doesn't have an + * associated Freemius instance. + * + * @author Leo Fajardo (@leorw) + * @since 2.4.5 + */ + ( ! $is_plugin_active ) + ); + } + ?> + + + + _get_latest_download_local_url( $addon->id ); + ?> + + + + + %s', + wp_nonce_url( self_admin_url( 'update.php?' . ( ( $has_paid_plan || ! $addon->is_wp_org_compliant ) ? 'fs_allow_updater_and_dialog=true&' : '' ) . 'action=install-plugin&plugin=' . $addon->slug ), 'install-plugin_' . $addon->slug ), + fs_esc_html_inline( 'Install Now', 'install-now', $slug ) + ); + } else { + echo sprintf( + '%s', + wp_nonce_url( 'plugins.php?action=activate&plugin=' . $basename, 'activate-plugin_' . $basename ), + fs_esc_attr_inline( 'Activate this add-on', 'activate-this-addon', $addon->slug ), + fs_text_inline( 'Activate', 'activate', $addon->slug ) + ); + } + ?> + + + + + + + + + + + + + + + + + + + + + do_action( 'addons/after_addons' ) ?> + + +_add_tabs_after_content(); + } + + $params = array( + 'page' => 'addons', + 'module_id' => $fs->get_id(), + 'module_type' => $fs->get_module_type(), + 'module_slug' => $slug, + 'module_version' => $fs->get_plugin_version(), + ); fs_require_template( 'powered-by.php', $params ); \ No newline at end of file diff --git a/external/Freemius/templates/checkout.php b/external/Freemius/templates/checkout.php index c2aa68c4..a0969ccf 100755 --- a/external/Freemius/templates/checkout.php +++ b/external/Freemius/templates/checkout.php @@ -79,7 +79,12 @@ if ( $plugin_id == $fs->get_id() ) { $is_premium = $fs->is_premium(); - } else { + + $bundle_id = $fs->get_bundle_id(); + if ( ! is_null( $bundle_id ) ) { + $context_params['bundle_id'] = $bundle_id; + } + } else { // Identify the module code version of the checkout context module. if ( $fs->is_addon_activated( $plugin_id ) ) { $fs_addon = Freemius::get_instance_by_id( $plugin_id ); @@ -96,8 +101,11 @@ if ( $plugin_id != $fs->get_id() ) { if ( $fs->is_addon_activated( $plugin_id ) ) { - $fs_addon = Freemius::get_instance_by_id( $plugin_id ); - $site = $fs_addon->get_site(); + $fs_addon = Freemius::get_instance_by_id( $plugin_id ); + $addon_site = $fs_addon->get_site(); + if ( is_object( $addon_site ) ) { + $site = $addon_site; + } } } diff --git a/external/Freemius/templates/connect.php b/external/Freemius/templates/connect.php index e8378c21..706355ce 100755 --- a/external/Freemius/templates/connect.php +++ b/external/Freemius/templates/connect.php @@ -40,8 +40,8 @@ $freemius_site_www = 'https://freemius.com'; - $freemius_usage_tracking_url = $freemius_site_www . '/wordpress/usage-tracking/' . $fs->get_id() . "/{$slug}/"; - $freemius_plugin_terms_url = $freemius_site_www . '/terms/' . $fs->get_id() . "/{$slug}/"; + $freemius_usage_tracking_url = $fs->get_usage_tracking_terms_url(); + $freemius_plugin_terms_url = $fs->get_eula_url(); $freemius_site_url = $fs->is_premium() ? $freemius_site_www : @@ -72,7 +72,7 @@ $is_optin_dialog = ( $fs->is_theme() && $fs->is_themes_page() && - ( ! $fs->has_settings_menu() || $fs->is_free_wp_org_theme() ) + $fs->show_opt_in_on_themes_page() ); if ( $is_optin_dialog ) { @@ -314,7 +314,7 @@ class="wrapis_enable_anonymous() - + apply_filters( 'show_delegation_option', true ) ) : ?> @@ -474,6 +474,7 @@ class="fs-permission fs-"> $licenseSecret, $licenseKeyInput = $('#fs_license_key'), pauseCtaLabelUpdate = false, + isNetworkDelegating = false, /** * @author Leo Fajardo (@leorw) * @since 2.1.0 @@ -505,14 +506,15 @@ class="fs-permission fs-"> if ( isNetworkActive ) { var - $multisiteOptionsContainer = $( '#multisite_options_container' ), - $allSitesOptions = $( '#all_sites_options' ), - $applyOnAllSites = $( '#apply_on_all_sites' ), - $sitesListContainer = $( '#sites_list_container' ), + $multisiteOptionsContainer = $( '.fs-multisite-options-container' ), + $allSitesOptions = $( '.fs-all-sites-options' ), + $applyOnAllSites = $( '.fs-apply-on-all-sites-checkbox' ), + $sitesListContainer = $( '.fs-sites-list-container' ), totalSites = , maxSitesListHeight = null, $skipActivationButton = $( '#skip_activation' ), - $delegateToSiteAdminsButton = $( '#delegate_to_site_admins' ); + $delegateToSiteAdminsButton = $( '#delegate_to_site_admins' ), + hasAnyInstall = find_first_install() ) ? 'true' : 'false' ?>; $applyOnAllSites.click(function() { var isChecked = $( this ).is( ':checked' ); @@ -528,7 +530,7 @@ class="fs-permission fs-"> $delegateToSiteAdminsButton.toggle(); - $multisiteOptionsContainer.toggleClass( 'apply-on-all-sites', isChecked ); + $multisiteOptionsContainer.toggleClass( 'fs-apply-on-all-sites', isChecked ); $sitesListContainer.toggle( ! isChecked ); if ( ! isChecked && null === maxSitesListHeight ) { @@ -575,7 +577,7 @@ class="fs-permission fs-"> } }); - if (isNetworkUpgradeMode) { + if ( isNetworkUpgradeMode || hasAnyInstall ) { $skipActivationButton.click(function(){ $delegateToSiteAdminsButton.hide(); @@ -598,6 +600,16 @@ class="fs-permission fs-"> pauseCtaLabelUpdate = true; + /** + * Set to true so that the form submission handler can differentiate delegation from license + * activation and the proper AJAX action will be used (when delegating, the action should be + * `network_activate` and not `activate_license`). + * + * @author Leo Fajardo (@leorw) + * @since 2.3.0 + */ + isNetworkDelegating = true; + // Check all sites to be skipped. $allSitesOptions.find('.action.action-delegate').click(); @@ -605,6 +617,16 @@ class="fs-permission fs-"> pauseCtaLabelUpdate = false; + /** + * Set to false so that in case the previous AJAX request has failed, the form submission handler + * can differentiate license activation from delegation and the proper AJAX action will be used + * (when activating a license, the action should be `activate_license` and not `network_activate`). + * + * @author Leo Fajardo (@leorw) + * @since 2.3.0 + */ + isNetworkDelegating = false; + return false; }); } @@ -643,20 +665,31 @@ function updatePrimaryCtaText( actionType ) { */ if ( ajaxOptin ) { if (!hasContextUser || isNetworkUpgradeMode) { - + var action = null, + security = null; + + if ( requireLicenseKey && ! isNetworkDelegating ) { + action = 'get_ajax_action( 'activate_license' ) ?>'; + security = 'get_ajax_security( 'activate_license' ) ?>'; + } else { + action = 'get_ajax_action( 'network_activate' ) ?>'; + security = 'get_ajax_security( 'network_activate' ) ?>'; + } $('.fs-error').remove(); var licenseKey = $licenseKeyInput.val(), data = { - action : 'get_ajax_action( $action ) ?>', - security : 'get_ajax_security( $action ) ?>', + action : action, + security : security, license_key: licenseKey, module_id : 'get_id() ?>' }; - if (requireLicenseKey && + if ( + requireLicenseKey && + ! isNetworkDelegating && isMarketingAllowedByLicense.hasOwnProperty(licenseKey) ) { var @@ -706,12 +739,18 @@ function updatePrimaryCtaText( actionType ) { if ( ! requireLicenseKey) { site.action = $this.find('.action.selected').data('action-type'); + } else if ( isNetworkDelegating ) { + site.action = 'delegate'; } sites.push( site ); }); data.sites = sites; + + if ( hasAnyInstall ) { + data.has_any_install = hasAnyInstall; + } } /** diff --git a/external/Freemius/templates/debug.php b/external/Freemius/templates/debug.php index bafff161..f962f557 100755 --- a/external/Freemius/templates/debug.php +++ b/external/Freemius/templates/debug.php @@ -1,726 +1,759 @@ - -newest->version ?> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - get_option( 'ms_migration_complete', false, true ) ) : ?> - - - - - - - - - - - - - - - - - - - - 'WP_FS__REMOTE_ADDR', - 'val' => WP_FS__REMOTE_ADDR, - ), - array( - 'key' => 'WP_FS__ADDRESS_PRODUCTION', - 'val' => WP_FS__ADDRESS_PRODUCTION, - ), - array( - 'key' => 'FS_API__ADDRESS', - 'val' => FS_API__ADDRESS, - ), - array( - 'key' => 'FS_API__SANDBOX_ADDRESS', - 'val' => FS_API__SANDBOX_ADDRESS, - ), - array( - 'key' => 'WP_FS__DIR', - 'val' => WP_FS__DIR, - ), - ) -?> - - - - - - - - - - - > - - - - - - - - - - - - - - - - - - - plugins as $sdk_path => $data ) : ?> - version ) ?> - > - version ?> - - plugin_path ?> - - - - - - - - - - get_option( $module_type . 's' ) ?> - 0 ) : ?> - - - - - - - - - - - - - - - - - - - - - $data ) : ?> - file ); - } else { - $current_theme = wp_get_theme(); - $is_active = ( $current_theme->stylesheet === $data->file ); - - if ( ! $is_active && is_child_theme() ) { - $parent_theme = $current_theme->parent(); - - $is_active = ( ( $parent_theme instanceof WP_Theme ) && $parent_theme->stylesheet === $data->file ); - } - } - ?> - id ) : null ?> - has_api_connectivity() && $fs->is_on() ) { - echo ' style="background: #E6FFE6; font-weight: bold"'; - } else { - echo ' style="background: #ffd0d0; font-weight: bold"'; - } - } ?>> - id ?> - - version ?> - title ?> - has_api_connectivity() ) { - echo ' style="color: red; text-transform: uppercase;"'; - } ?>>has_api_connectivity() ? - fs_text_x_inline( 'Connected', 'as connection was successful' ) : - fs_text_x_inline( 'Blocked', 'as connection blocked' ) - ); - } ?> - is_on() ) { - echo ' style="color: red; text-transform: uppercase;"'; - } ?>>is_on() ? - $on_text : - $off_text - ); - } ?> - file ?> - public_key ?> - - get_network_install_blog_id(); - $network_user = $fs->get_network_user(); - } - ?> - - email; - } ?> - - - - has_trial_plan() ) : ?> - - - - - - - - - is_registered() ) : ?> - - - is_network_upgrade_mode() ) : ?> - - - - - - - - - - - - - - - - - - - 0 ) : ?> - / - - - - - - - - - - - - - - - - - - $sites ) : ?> - - - - id ?> - - blog_id ?> - url ) ?> - - - user_id ?> - plan_id ) ) { - if ( false === $all_plans ) { - $option_name = 'plans'; - if ( WP_FS__MODULE_TYPE_PLUGIN !== $module_type ) { - $option_name = $module_type . '_' . $option_name; - } - - $all_plans = $fs_options->get_option( $option_name, array() ); - } - - if ( false === $plans ) { - $plans = $all_plans[ $slug ]; - } - - foreach ( $plans as $plan ) { - $plan_id = Freemius::_decrypt( $plan->id ); - - if ( $site->plan_id == $plan_id ) { - $plan_name = Freemius::_decrypt( $plan->name ); - break; - } - } - } - - echo $plan_name; - ?> - public_key ?> - secret_key ) ?> - - - - - - - - - - - - - - - - - - - - - - $plugin_addons ) : ?> - - - - - - - - - - - - - - - - id ?> - title ?> - slug ?> - version ?> - public_key ?> - secret_key ) ?> - - - - - - - - - - - - - - - - - - - - - - $user ) : ?> - - id ?> - get_name() ?> - email ?> - is_verified ) ?> - public_key ?> - secret_key ) ?> - - - - - - - - - - - - - - - - 0 ) : ?> - - - - - - - - - - - - - - - - - - - id ?> - plugin_id ?> - user_id ?> - plan_id ?> - is_unlimited() ? 'Unlimited' : ( $license->is_single_site() ? 'Single Site' : $license->quota ) ?> - activated ?> - is_block_features ? 'Blocking' : 'Flexible' ?> - secret_key ) ?> - expiration ?> - - - - - - - - - - - - - - Warnings & Errors - Errors - Warnings - Info - - - - Sync - AJAX - WP Cron - - - - - - - - - - - - - - - - - - - - - - - - - # - - - - - - - - - - - {$log.log_order}. - {$log.type} - {$log.logger} - {$log.function} - - - {$log.message_short} - - {$log.message} - - {$log.file}:{$log.line} - {$log.created} - - - - - - - + +newest->version ?> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + get_option( 'ms_migration_complete', false, true ) ) : ?> + + + + + + + + + + + + + + + + + + + + 'WP_FS__REMOTE_ADDR', + 'val' => WP_FS__REMOTE_ADDR, + ), + array( + 'key' => 'WP_FS__ADDRESS_PRODUCTION', + 'val' => WP_FS__ADDRESS_PRODUCTION, + ), + array( + 'key' => 'FS_API__ADDRESS', + 'val' => FS_API__ADDRESS, + ), + array( + 'key' => 'FS_API__SANDBOX_ADDRESS', + 'val' => FS_API__SANDBOX_ADDRESS, + ), + array( + 'key' => 'WP_FS__DIR', + 'val' => WP_FS__DIR, + ), + ) +?> + + + + + + + + + + + > + + + + + + + + + + + + + + + + + + + plugins as $sdk_path => $data ) : ?> + version ) ?> + > + version ?> + + plugin_path ?> + + + + + + + + + + get_option( $module_type . 's' ), FS_Plugin::get_class_name() ) ?> + 0 ) : ?> + + + + + + + + + + + + + + + + + + + + + $data ) : ?> + file ); + } else { + $current_theme = wp_get_theme(); + $is_active = ( $current_theme->stylesheet === $data->file ); + + if ( ! $is_active && is_child_theme() ) { + $parent_theme = $current_theme->parent(); + + $is_active = ( ( $parent_theme instanceof WP_Theme ) && $parent_theme->stylesheet === $data->file ); + } + } + ?> + id ) : null ?> + has_api_connectivity() && $fs->is_on() ) { + echo ' style="background: #E6FFE6; font-weight: bold"'; + } else { + echo ' style="background: #ffd0d0; font-weight: bold"'; + } + } ?>> + id ?> + + version ?> + title ?> + has_api_connectivity() ) { + echo ' style="color: red; text-transform: uppercase;"'; + } ?>>has_api_connectivity() ? + fs_text_x_inline( 'Connected', 'as connection was successful' ) : + fs_text_x_inline( 'Blocked', 'as connection blocked' ) + ); + } ?> + is_on() ) { + echo ' style="color: red; text-transform: uppercase;"'; + } ?>>is_on() ? + $on_text : + $off_text + ); + } ?> + file ?> + public_key ?> + + get_network_install_blog_id(); + $network_user = $fs->get_network_user(); + } + ?> + + email; + } ?> + + + + has_trial_plan() ) : ?> + + + + + + + + + is_registered() ) : ?> + + + is_network_upgrade_mode() ) : ?> + + + + + + + + + + + + + + + + + + + 0 ) : ?> + / + + + + + + + + + + + + + + + + + + + $sites ) : ?> + + + + id ?> + + blog_id ?> + url ) ?> + + + user_id ?> + license_id) ? $site->license_id : '' ?> + plan_id ) ) { + if ( false === $all_plans ) { + $option_name = 'plans'; + if ( WP_FS__MODULE_TYPE_PLUGIN !== $module_type ) { + $option_name = $module_type . '_' . $option_name; + } + + $all_plans = fs_get_entities( $fs_options->get_option( $option_name, array() ), FS_Plugin_Plan::get_class_name() ); + } + + foreach ( $all_plans[ $slug ] as $plan ) { + $plan_id = Freemius::_decrypt( $plan->id ); + + if ( $site->plan_id == $plan_id ) { + $plan_name = Freemius::_decrypt( $plan->name ); + break; + } + } + } + + echo $plan_name; + ?> + public_key ?> + is_whitelabeled ? + FS_Plugin_License::mask_secret_key_for_html( $site->secret_key ) : + esc_html( $site->secret_key ); + ?> + + + + + + + + + + + + + + + + + + + + + + $plugin_addons ) : ?> + + + + + + + + + + + + + + + + id ?> + title ?> + slug ?> + version ?> + public_key ?> + secret_key ) ?> + + + + + +is_whitelabeled ) { + $users_with_developer_license_by_id[ $license->user_id ] = true; + } + } + } + +?> + + + + + + + + + + + + + + + + $user ) : ?> + + + id ?> + get_name() ?> + + + email ?> + + + is_verified ) ?> + public_key ?> + secret_key) : esc_html( $user->secret_key ) ?> + + + + + + + + + + + + + + + + + + 0 ) : ?> + + + + + + + + + + + + + + + + + + + id ?> + plugin_id ?> + user_id ?> + plan_id ?> + is_unlimited() ? 'Unlimited' : ( $license->is_single_site() ? 'Single Site' : $license->quota ) ?> + activated ?> + is_block_features ? 'Blocking' : 'Flexible' ?> + is_whitelabeled ? + $license->get_html_escaped_masked_secret_key() : + esc_html( $license->secret_key ); + ?> + expiration ?> + + + + + + + + + + + + + + Warnings & Errors + Errors + Warnings + Info + + + + Sync + AJAX + WP Cron + + + + + + + + + + + + + + + + + + + + + + + + + # + + + + + + + + + + + {$log.log_order}. + {$log.type} + {$log.logger} + {$log.function} + + + {$log.message_short} + + {$log.message} + + {$log.file}:{$log.line} + {$log.created} + + + + + + + diff --git a/external/Freemius/templates/debug/scheduled-crons.php b/external/Freemius/templates/debug/scheduled-crons.php index 1751e60e..47a715ea 100755 --- a/external/Freemius/templates/debug/scheduled-crons.php +++ b/external/Freemius/templates/debug/scheduled-crons.php @@ -19,7 +19,7 @@ ); foreach ( $module_types as $module_type ) { - $modules = $fs_options->get_option( $module_type . 's' ); + $modules = fs_get_entities( $fs_options->get_option( $module_type . 's' ), FS_Plugin::get_class_name() ); if ( is_array( $modules ) && count( $modules ) > 0 ) { foreach ( $modules as $slug => $data ) { if ( WP_FS__MODULE_TYPE_THEME === $module_type ) { diff --git a/external/Freemius/templates/forms/data-debug-mode.php b/external/Freemius/templates/forms/data-debug-mode.php new file mode 100755 index 00000000..e5f2bf21 --- /dev/null +++ b/external/Freemius/templates/forms/data-debug-mode.php @@ -0,0 +1,213 @@ +get_slug(); + $unique_affix = $fs->get_unique_affix(); + $last_license_user_id = $fs->get_last_license_user_id(); + $has_last_license_user_id = FS_User::is_valid_id( $last_license_user_id ); + + $message_above_input_field = ( ! $has_last_license_user_id ) ? + fs_text_inline( 'Please enter the license key to enable the debug mode:', 'submit-developer-license-key-message', $slug ) : + sprintf( + fs_text_inline( 'To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your "My Profile" section of your User Dashboard:', 'submit-addon-developer-key-message', $slug ), + $last_license_user_id + ); + + $processing_text = ( fs_esc_js_inline( 'Processing', 'processing', $slug ) . '...' ); + $submit_button_text = fs_text_inline( 'Submit', 'submit', $slug ); + $debug_license_link_text = fs_esc_html_inline( 'Start Debug', 'start-debug-license', $slug ); + $license_or_user_key_text = ( ! $has_last_license_user_id ) ? + fs_text_inline( 'License key', 'license-key' , $slug ) : + fs_text_inline( 'User key', 'user-key' , $slug ); + $input_html = ""; + + $modal_content_html = <<< HTML + + {$message_above_input_field} + {$input_html} +HTML; + + fs_enqueue_local_style( 'fs_dialog_boxes', '/admin/dialog-boxes.css' ); +?> + \ No newline at end of file diff --git a/external/Freemius/templates/forms/deactivation/form.php b/external/Freemius/templates/forms/deactivation/form.php index 755ac9ef..f15f6b6f 100755 --- a/external/Freemius/templates/forms/deactivation/form.php +++ b/external/Freemius/templates/forms/deactivation/form.php @@ -16,51 +16,55 @@ $fs = freemius( $VARS['id'] ); $slug = $fs->get_slug(); - $confirmation_message = $fs->apply_filters( 'uninstall_confirmation_message', '' ); + $subscription_cancellation_dialog_box_template_params = $VARS['subscription_cancellation_dialog_box_template_params']; + $show_deactivation_feedback_form = $VARS['show_deactivation_feedback_form']; + $confirmation_message = $VARS['uninstall_confirmation_message']; - $reasons = $VARS['reasons']; + $is_anonymous = ( ! $fs->is_registered() ); + $anonymous_feedback_checkbox_html = ''; - $reasons_list_items_html = ''; + $reasons_list_items_html = ''; - foreach ( $reasons as $reason ) { - $list_item_classes = 'reason' . ( ! empty( $reason['input_type'] ) ? ' has-input' : '' ); + if ( $show_deactivation_feedback_form ) { + $reasons = $VARS['reasons']; - if ( isset( $reason['internal_message'] ) && ! empty( $reason['internal_message'] ) ) { - $list_item_classes .= ' has-internal-message'; - $reason_internal_message = $reason['internal_message']; - } else { - $reason_internal_message = ''; - } - - $reason_input_type = ( ! empty( $reason['input_type'] ) ? $reason['input_type'] : '' ); - $reason_input_placeholder = ( ! empty( $reason['input_placeholder'] ) ? $reason['input_placeholder'] : '' ); - - $reason_list_item_html = <<< HTML - - - - - - {$reason['text']} - - {$reason_internal_message} - + foreach ( $reasons as $reason ) { + $list_item_classes = 'reason' . ( ! empty( $reason['input_type'] ) ? ' has-input' : '' ); + + if ( isset( $reason['internal_message'] ) && ! empty( $reason['internal_message'] ) ) { + $list_item_classes .= ' has-internal-message'; + $reason_internal_message = $reason['internal_message']; + } else { + $reason_internal_message = ''; + } + + $reason_input_type = ( ! empty( $reason['input_type'] ) ? $reason['input_type'] : '' ); + $reason_input_placeholder = ( ! empty( $reason['input_placeholder'] ) ? $reason['input_placeholder'] : '' ); + + $reason_list_item_html = <<< HTML + + + + + + {$reason['text']} + + {$reason_internal_message} + HTML; - $reasons_list_items_html .= $reason_list_item_html; - } + $reasons_list_items_html .= $reason_list_item_html; + } - $is_anonymous = ( ! $fs->is_registered() ); - if ( $is_anonymous ) { - $anonymous_feedback_checkbox_html = sprintf( - ' %s', - fs_esc_html_inline( 'Anonymous feedback', 'anonymous-feedback', $slug ) - ); - } else { - $anonymous_feedback_checkbox_html = ''; - } + if ( $is_anonymous ) { + $anonymous_feedback_checkbox_html = sprintf( + ' %s', + fs_esc_html_inline( 'Anonymous feedback', 'anonymous-feedback', $slug ) + ); + } + } // Aliases. $deactivate_text = fs_text_inline( 'Deactivate', 'deactivate', $slug ); @@ -68,8 +72,11 @@ $activate_x_text = fs_text_inline( 'Activate %s', 'activate-x', $slug ); fs_enqueue_local_style( 'fs_dialog_boxes', '/admin/dialog-boxes.css' ); + + if ( ! empty( $subscription_cancellation_dialog_box_template_params ) ) { + fs_require_template( 'forms/subscription-cancellation.php', $subscription_cancellation_dialog_box_template_params ); + } ?> -_maybe_add_subscription_cancellation_dialog_box() ?> diff --git a/external/Freemius/templates/forms/license-activation.php b/external/Freemius/templates/forms/license-activation.php index 0b455b12..e72b6a70 100755 --- a/external/Freemius/templates/forms/license-activation.php +++ b/external/Freemius/templates/forms/license-activation.php @@ -11,10 +11,13 @@ } /** + * @var array $VARS + * * @var Freemius $fs */ - $fs = freemius( $VARS['id'] ); - $slug = $fs->get_slug(); + $fs = freemius( $VARS['id'] ); + $slug = $fs->get_slug(); + $unique_affix = $fs->get_unique_affix(); $cant_find_license_key_text = fs_text_inline( "Can't find your license key?", 'cant-find-license-key', $slug ); $message_above_input_field = fs_text_inline( 'Please enter the license key that you received in the email right after the purchase:', 'activate-license-message', $slug ); @@ -28,9 +31,9 @@ $activate_button_text = $header_title; } else { $freemius_site_url = $fs->has_paid_plan() ? - 'https://freemius.com/wordpress/' : + 'https://freemius.com/' : // Insights platform information. - 'https://freemius.com/wordpress/usage-tracking/'; + $fs->get_usage_tracking_terms_url(); $freemius_link = 'freemius.com'; @@ -94,10 +97,10 @@ $total_available_licenses = count( $available_licenses ); if ( $total_available_licenses > 0 ) { $license_input_html = <<< HTML - + - + HTML; @@ -106,7 +109,7 @@ // Sort the licenses by number of activations left in descending order. krsort( $available_licenses ); - $license_input_html .= ''; + $license_input_html .= ''; /** * @var FS_Plugin_License $license @@ -114,14 +117,12 @@ foreach ( $available_licenses as $license ) { $label = sprintf( "%s-Site %s License - %s", - ( 1 == $license->quota ? - 'Single' : - $license->quota - ), - $fs->_get_plan_by_id( $license->plan_id )->title, - ( htmlspecialchars( substr( $license->secret_key, 0, 6 ) ) . - str_pad( '', 23 * 6, '•' ) . - htmlspecialchars( substr( $license->secret_key, - 3 ) ) ) + ( 1 == $license->quota ? + 'Single' : + ( $license->is_unlimited() ? 'Unlimited' : $license->quota ) + ), + $fs->_get_plan_by_id( $license->plan_id )->title, + $license->get_html_escaped_masked_secret_key() ); $license_input_html .= "{$label}"; @@ -139,17 +140,15 @@ "%s-Site %s License - %s", ( 1 == $available_license->quota ? 'Single' : - $available_license->quota + ( $available_license->is_unlimited() ? 'Unlimited' : $available_license->quota ) ), $fs->_get_plan_by_id( $available_license->plan_id )->title, - ( htmlspecialchars( substr( $available_license->secret_key, 0, 6 ) ) . - str_pad( '', 23 * 6, '•' ) . - htmlspecialchars( substr( $available_license->secret_key, - 3 ) ) ) + $available_license->get_html_escaped_masked_secret_key() ); $license_input_html .= <<< HTML - - Other: + + Other: - + @@ -176,7 +175,7 @@ HTML; } else { - $license_input_html = ""; + $license_input_html = ""; } /** @@ -201,7 +200,7 @@ $( document ).ready(function() { var modalContentHtml = , modalHtml = - '' + '' + ' ' + ' ' + ' ' @@ -217,22 +216,22 @@ + ' ' + '', $modal = $(modalHtml), - $activateLicenseLink = $('span.activate-license.get_unique_affix() ?> a, .activate-license-trigger.get_unique_affix() ?>'), + $activateLicenseLink = $('span.activate-license. a, .activate-license-trigger.'), $activateLicenseButton = $modal.find('.button-activate-license'), - $licenseKeyInput = $modal.find('input.license_key'), + $licenseKeyInput = $modal.find( 'input.fs-license-key' ), $licenseActivationMessage = $modal.find( '.license-activation-message' ), isNetworkActivation = ; $modal.appendTo($('body')); var - $licensesDropdown = $( '#licenses' ), - $licenseTypes = $( 'input[type="radio"][name="license_type"]' ), - $applyOnAllSites = $( '#apply_on_all_sites' ), - $sitesListContainer = $( '#sites_list_container' ), - $availableLicenseKey = $( '#available_license_key' ), - $otherLicenseKey = $( '#other_license_key' ), - $multisiteOptionsContainer = $( '#multisite_options_container' ), + $licensesDropdown = $modal.find( '.fs-licenses' ), + $licenseTypes = $modal.find( 'input[type="radio"][name="license_type"]' ), + $applyOnAllSites = $modal.find( '.fs-apply-on-all-sites-checkbox' ), + $sitesListContainer = $modal.find( '.fs-sites-list-container' ), + $availableLicenseKey = $modal.find( '.fs-available-license-key' ), + $otherLicenseKey = $modal.find( '#other_license_key_' ), + $multisiteOptionsContainer = $modal.find( '.fs-multisite-options-container' ), $activationsLeft = null, hasLicensesDropdown = ( $licensesDropdown.length > 0 ), hasLicenseTypes = ( $licenseTypes.length > 0 ), @@ -242,13 +241,13 @@ function registerEventHandlers() { var - $otherLicenseKeyContainer = $( '#other_license_key_container' ); + $otherLicenseKeyContainer = $modal.find( '.fs-other-license-key-container' ); if ( isNetworkActivation ) { $applyOnAllSites.click(function() { var applyOnAllSites = $( this ).is( ':checked' ); - $multisiteOptionsContainer.toggleClass( 'apply-on-all-sites', applyOnAllSites ); + $multisiteOptionsContainer.toggleClass( 'fs-apply-on-all-sites', applyOnAllSites ); showSites( ! applyOnAllSites ); @@ -292,7 +291,7 @@ function registerEventHandlers() { if ( hasLicenseTypes ) { $licenseTypes.change(function() { var - licenseKey = $( 'input.license_key' ).val().trim(), + licenseKey = $modal.find( 'input.fs-license-key' ).val().trim(), otherLicenseKeySelected = isOtherLicenseKeySelected(); if ( ( licenseKey.length > 0 || ( hasLicenseTypes && ! otherLicenseKeySelected ) ) && @@ -339,7 +338,7 @@ function registerEventHandlers() { showModal( evt ); }); - $modal.on('input propertychange', 'input.license_key', function () { + $modal.on('input propertychange', 'input.fs-license-key', function () { var licenseKey = $(this).val().trim(); @@ -351,11 +350,11 @@ function registerEventHandlers() { } }); - $modal.on( 'blur', 'input.license_key', function( evt ) { + $modal.on( 'blur', 'input.fs-license-key', function( evt ) { var licenseKey = $(this).val().trim(), $focusedElement = $( evt.relatedTarget ), - hasSelectedAvailableLicense = ( hasLicenseTypes && $focusedElement.parents( '#available_license_key_container' ).length > 0 ); + hasSelectedAvailableLicense = ( hasLicenseTypes && $focusedElement.parents( '.fs-available-license-key-container' ).length > 0 ); /** * If license key is empty, disable the license activation button. @@ -522,7 +521,7 @@ function hasValidLicenseKey() { licenseKey = $otherLicenseKey.val(); } } else { - licenseKey = $( 'input.license_key' ).val(); + licenseKey = $modal.find( 'input.fs-license-key' ).val(); } return ( licenseKey.trim().length > 0 ); @@ -557,11 +556,11 @@ function toggleActivationOnAllSites() { } // Cleanup previously auto-selected site. - $('#sites_list_container input[type=checkbox]:disabled') + $modal.find( '.fs-sites-list-container input[type=checkbox]:disabled' ) .attr('disabled', false) .attr('checked', false); - var $blogsWithActiveLicense = $('#sites_list_container tr[data-license-id=' + licenseID + '] input[type=checkbox]'); + var $blogsWithActiveLicense = $modal.find( '.fs-sites-list-container tr[data-license-id=' + licenseID + '] input[type=checkbox]' ); if ($blogsWithActiveLicense.length > 0) { $blogsWithActiveLicense.attr('checked', true) @@ -591,7 +590,7 @@ function toggleActivationOnAllSites() { // Update the label of the "Activate license on all sites" checkbox. $applyOnAllSites.parent().find( 'span' ).html( activateLicenseCheckboxLabel ); - $activationsLeft = $( '.activations-left' ); + $activationsLeft = $modal.find( '.activations-left' ); if ( hasSelectedSite() ) { enableActivateLicenseButton(); diff --git a/external/Freemius/templates/forms/optout.php b/external/Freemius/templates/forms/optout.php index a12e0f9b..63297a2f 100755 --- a/external/Freemius/templates/forms/optout.php +++ b/external/Freemius/templates/forms/optout.php @@ -238,7 +238,7 @@ function showError( msg ) { * @since 1.2.2.7 */ $('.theme-overlay').contentChange(function () { - if (!$(this).find('.theme-overlay').hasClass('active')) { + if (0 === $('.theme-overlay.active').length) { // Add opt-in/out button only to the currently active theme. return; } @@ -259,7 +259,9 @@ function showError( msg ) { $('.theme-wrap .theme-actions .active-theme').append($actionLink); - registerActionLinkClick(); + if ('' === href) { + registerActionLinkClick(); + } }); }); diff --git a/external/Freemius/templates/forms/premium-versions-upgrade-metadata.php b/external/Freemius/templates/forms/premium-versions-upgrade-metadata.php index d0dbf0f6..5f9fddd9 100755 --- a/external/Freemius/templates/forms/premium-versions-upgrade-metadata.php +++ b/external/Freemius/templates/forms/premium-versions-upgrade-metadata.php @@ -30,6 +30,8 @@ array( 'licenses' => $license->quota ) ); } + + $plugin_data = $fs->get_plugin_data(); ?> \ No newline at end of file + + \ No newline at end of file diff --git a/external/Freemius/templates/pricing.php b/external/Freemius/templates/pricing.php index 90758a04..865f3a57 100755 --- a/external/Freemius/templates/pricing.php +++ b/external/Freemius/templates/pricing.php @@ -57,6 +57,11 @@ 'plugin_version' => $fs->get_plugin_version(), ); + $bundle_id = $fs->get_bundle_id(); + if ( ! is_null( $bundle_id ) ) { + $context_params['bundle_id'] = $bundle_id; + } + // Get site context secure params. if ( $fs->is_registered() ) { $context_params = array_merge( $context_params, FS_Security::instance()->get_context_params( @@ -83,6 +88,7 @@ // Billing cycle. 'billing_cycle' => fs_request_get( 'billing_cycle', WP_FS__PERIOD_ANNUALLY ), 'is_network_admin' => fs_is_network_admin() ? 'true' : 'false', + 'currency' => $fs->apply_filters( 'default_currency', 'usd' ), ) ); if ( ! $fs->is_registered() ) { diff --git a/external/Freemius/templates/tabs.php b/external/Freemius/templates/tabs.php index e57e36df..7a983e4f 100755 --- a/external/Freemius/templates/tabs.php +++ b/external/Freemius/templates/tabs.php @@ -20,7 +20,7 @@ $menu_items = $fs->get_menu_items(); - $is_free_wp_org_theme = $fs->is_free_wp_org_theme(); + $show_settings_with_tabs = $fs->show_settings_with_tabs(); $tabs = array(); foreach ( $menu_items as $priority => $items ) { @@ -34,7 +34,7 @@ continue; } - if ( ! $is_free_wp_org_theme || ! $fs->is_submenu_item_visible( $submenu_name, true ) ) { + if ( ! $show_settings_with_tabs || ! $fs->is_submenu_item_visible( $submenu_name, true ) ) { continue; } } diff --git a/ilab-media-tools.php b/ilab-media-tools.php index d554a4e0..6d339346 100755 --- a/ilab-media-tools.php +++ b/ilab-media-tools.php @@ -5,7 +5,7 @@ Plugin URI: https://github.com/interfacelab/ilab-media-tools Description: Automatically upload media to Amazon S3 and integrate with Imgix, a real-time image processing CDN. Boosts site performance and simplifies workflows. Author: interfacelab -Version: 3.3.4 +Version: 3.3.5 Author URI: http://interfacelab.io */ // Copyright (c) 2016 Interfacelab LLC. All rights reserved. @@ -26,7 +26,7 @@ if ( function_exists( 'media_cloud_licensing' ) ) { - media_cloud_licensing()->set_basename( false, __FILE__ ); + media_cloud_licensing()->set_basename( true, __FILE__ ); return; } @@ -93,7 +93,7 @@ } // Version Defines -define( 'MEDIA_CLOUD_VERSION', '3.3.4' ); +define( 'MEDIA_CLOUD_VERSION', '3.3.5' ); define( 'MEDIA_CLOUD_INFO_VERSION', '1.0.0' ); // Directory defines define( 'ILAB_TOOLS_DIR', dirname( __FILE__ ) ); @@ -120,7 +120,9 @@ require_once 'helpers/ilab-media-tool-geometry-helpers.php'; // Freemius -if ( !function_exists( 'media_cloud_licensing' ) ) { +if ( function_exists( 'media_cloud_licensing' ) ) { + media_cloud_licensing()->set_basename( false, __FILE__ ); +} else { // Create a helper function for easy SDK access. /** * @return Freemius diff --git a/readme.txt b/readme.txt index 61a901e4..2e92cd92 100755 --- a/readme.txt +++ b/readme.txt @@ -1,11 +1,11 @@ === Media Cloud for Amazon S3, Imgix, Google Cloud Storage, DigitalOcean Spaces and more === -Contributors: mediacloud, interfacelab, freemius +Contributors: mediacloud, interfacelab Tags: offload, amazon, s3, imgix, uploads, google cloud storage, digital ocean spaces, wasabi, minio, media, cdn, rekognition, cloudfront, images, crop, image editing, image editor, media library, offload, offload s3, filepicker, smush, ewww, imagify, shortpixel Requires at least: 4.4 Tested up to: 5.3 License: GPLv3 or later License URI: http://www.gnu.org/licenses/gpl-3.0.html -Stable tag: 3.3.4 +Stable tag: 3.3.5 Requires PHP: 5.6.4 Automatically store media on Amazon S3, Google Cloud Storage, DigitalOcean Spaces + others. Serve CSS/JS assets through CDNs. Integrate with Imgix. @@ -108,6 +108,11 @@ No, I'm just one very enthusiastic customer. == Changelog == += 3.3.5 = + +* Video and audio short tag is now filtered to insure that the correct URL is always being used, vital for signed URLs. +* Fix for importing Offload Media 1.x metadata + = 3.3.4 = * Critical fix for Minio, DigitalOcean and other S3 compatible services. diff --git a/views/base/fields/advanced-presigned-urls.blade.php b/views/base/fields/advanced-presigned-urls.blade.php new file mode 100755 index 00000000..26432f0f --- /dev/null +++ b/views/base/fields/advanced-presigned-urls.blade.php @@ -0,0 +1,67 @@ + + + Pre-Sign Image URLs + + @include('base.fields.checkbox', ['name' => 'mcloud-storage-use-presigned-urls-images', 'conditions' => '', 'description' => 'Enable to generate signed URLs for images that will expire within a specified time period. If Use Pre-Signed URLs is enabled, this setting is ignored.', 'value' => \ILAB\MediaCloud\Utilities\Environment::Option('mcloud-storage-use-presigned-urls-images', null, false)]) + + + + Image URL Expiration + + + + The number of minutes the signed URL is valid for. If set to 0, the default Pre-Signed URL Expiration will be used. + + + + + Pre-Sign Video URLs + + @include('base.fields.checkbox', ['name' => 'mcloud-storage-use-presigned-urls-video', 'conditions' => '', 'description' => 'Enable to generate signed URLs for video files that will expire within a specified time period. If Use Pre-Signed URLs is enabled, this setting is ignored.', 'value' => \ILAB\MediaCloud\Utilities\Environment::Option('mcloud-storage-use-presigned-urls-video', null, false)]) + + + + Video URL Expiration + + + + The number of minutes the signed URL is valid for. If set to 0, the default Pre-Signed URL Expiration will be used. + + + + + Pre-Sign Audio URLs + + @include('base.fields.checkbox', ['name' => 'mcloud-storage-use-presigned-urls-audio', 'conditions' => '', 'description' => 'Enable to generate signed URLs for audio files that will expire within a specified time period. If Use Pre-Signed URLs is enabled, this setting is ignored.', 'value' => \ILAB\MediaCloud\Utilities\Environment::Option('mcloud-storage-use-presigned-urls-audio', null, false)]) + + + + Audio URL Expiration + + + + The number of minutes the signed URL is valid for. If set to 0, the default Pre-Signed URL Expiration will be used. + + + + + Pre-Sign Document URLs + + @include('base.fields.checkbox', ['name' => 'mcloud-storage-use-presigned-urls-docs', 'conditions' => '', 'description' => 'Enable to generate signed URLs for audio files that will expire within a specified time period. If Use Pre-Signed URLs is enabled, this setting is ignored.', 'value' => \ILAB\MediaCloud\Utilities\Environment::Option('mcloud-storage-use-presigned-urls-docs', null, false)]) + + + + Document URL Expiration + + + + The number of minutes the signed URL is valid for. If set to 0, the default Pre-Signed URL Expiration will be used. + + + + +@if($conditions) + +@endif \ No newline at end of file diff --git a/views/base/fields/advanced-privacy.blade.php b/views/base/fields/advanced-privacy.blade.php new file mode 100755 index 00000000..642e6359 --- /dev/null +++ b/views/base/fields/advanced-privacy.blade.php @@ -0,0 +1,66 @@ + + + + + Image Privacy + + + + Inherit + Public + Private + + This will set the privacy for image uploads. + + + + + Video Privacy + + + + Inherit + Public + Private + + This will set the privacy for video uploads. + + + + + Audio Privacy + + + + Inherit + Public + Private + + This will set the privacy for audio uploads. + + + + + Document Privacy + + + + Inherit + Public + Private + + This will set the privacy for document uploads. + + + + +@if($conditions) + +@endif \ No newline at end of file
%3s %4s
%3$s %4$s
secret_key, 0, 6 ) ) . str_pad( '', 23 * 6, '•' ) . htmlspecialchars( substr( $install->secret_key, - 3 ) ) ?>
secret_key ) ?>
secret_key, 0, 6 ) ) . str_pad( '', 23 * 6, '•' ) . htmlspecialchars( substr( $license->secret_key, - 3 ) ) ?>
get_html_escaped_masked_secret_key() ?>
{$message_above_input_field}
The number of minutes the signed URL is valid for. If set to 0, the default Pre-Signed URL Expiration will be used.
This will set the privacy for image uploads.
This will set the privacy for video uploads.
This will set the privacy for audio uploads.
This will set the privacy for document uploads.