Version Description
- Now compatible with (elemenator page builder) plugin
- Now compatible with (siteorigin live editor page builder) plugin
- Now compatible with (WordPress Page Builder Beaver Builder) plugin
- Now compatible with (Wordpress internal preview mode)
- New control panel (restore defaults) button added
- New control panel (preview alert message) button added
- New name for the top bar icon to fix its default choice in the previous version
- Translation file updated
- Some fixes
Download this release
Release Info
Developer | wp-buy |
Plugin | WP Content Copy Protection & No Right Click |
Version | 3.1 |
Comparing to | |
See all releases |
Code changes from version 2.9 to 3.1
- admin-core.php +162 -75
- languages/wp-content-copy-protector-ar.mo +0 -0
- languages/wp-content-copy-protector-ar.po +166 -110
- languages/wp-content-copy-protector.pot +415 -363
- preventer-index.php +48 -13
- readme.txt +13 -0
admin-core.php
CHANGED
@@ -7,9 +7,16 @@ if ( !current_user_can('edit_others_pages') ) { //protection for admin content
|
|
7 |
//define all variables the needed alot
|
8 |
include 'the_globals.php';
|
9 |
include 'notifications.php';
|
10 |
-
|
11 |
-
|
12 |
-
if(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
{
|
14 |
//----------------------------------------------------list the options array values
|
15 |
$single_posts_protection = '';
|
@@ -19,8 +26,8 @@ if($post_action == 'update')
|
|
19 |
$page_protection = '';
|
20 |
if(isset($_POST["page_protection"])) $page_protection = sanitize_text_field($_POST["page_protection"]);
|
21 |
|
22 |
-
$
|
23 |
-
if(isset($_POST["
|
24 |
|
25 |
$exclude_admin_from_protection = '';
|
26 |
if(isset($_POST["exclude_admin_from_protection"])) $exclude_admin_from_protection = sanitize_text_field($_POST["exclude_admin_from_protection"]);
|
@@ -79,7 +86,7 @@ if($post_action == 'update')
|
|
79 |
'single_posts_protection' => $single_posts_protection, // prevent content copy, take 2 parameters
|
80 |
'home_page_protection' => $home_page_protection, // PROTECT THE HOME PAGE OR NOT
|
81 |
'page_protection' => $page_protection, // protect pages by javascript
|
82 |
-
'
|
83 |
'right_click_protection_posts' => $right_click_protection_posts, //no comment here
|
84 |
'right_click_protection_homepage' => $right_click_protection_homepage, //no comment here
|
85 |
'right_click_protection_pages' => $right_click_protection_pages, //no comment here
|
@@ -105,7 +112,7 @@ if($post_action == 'update')
|
|
105 |
'prnt_scr_msg' => $prnt_scr_msg
|
106 |
);
|
107 |
|
108 |
-
if
|
109 |
update_option( 'wccp_settings' , $wccp_settings );
|
110 |
} else {
|
111 |
$deprecated = '';
|
@@ -118,60 +125,9 @@ if($post_action == 'update')
|
|
118 |
|
119 |
$wccp_settings = wccp_read_options();
|
120 |
?>
|
121 |
-
<style>
|
122 |
-
#aio_admin_main {
|
123 |
-
padding:10px;
|
124 |
-
margin: 10px;
|
125 |
-
background-color: #ffffff;
|
126 |
-
border:1px solid #EBDDE2;
|
127 |
-
display: relative;
|
128 |
-
overflow: auto;
|
129 |
-
}
|
130 |
-
.inner_block{
|
131 |
-
height: 370px;
|
132 |
-
display: inline;
|
133 |
-
min-width:770px;
|
134 |
-
}
|
135 |
-
#donate{
|
136 |
-
background-color: #EEFFEE;
|
137 |
-
border: 1px solid #66DD66;
|
138 |
-
border-radius: 10px 10px 10px 10px;
|
139 |
-
height: 58px;
|
140 |
-
padding: 10px;
|
141 |
-
margin: 15px;
|
142 |
-
}
|
143 |
-
.text-font {
|
144 |
-
color: #1ABC9C;
|
145 |
-
font-size: 14px;
|
146 |
-
line-height: 1.5;
|
147 |
-
padding-left: 3px;
|
148 |
-
transition: color 0.25s linear 0s;
|
149 |
-
}
|
150 |
-
.text-font:hover {
|
151 |
-
opacity: 1;
|
152 |
-
transition: color 0.25s linear 0s;
|
153 |
-
}
|
154 |
-
.simpleTabsContent{
|
155 |
-
border: 1px solid #E9E9E9;
|
156 |
-
padding: 4px;
|
157 |
-
}
|
158 |
-
div.simpleTabsContent{
|
159 |
-
margin-top:0;
|
160 |
-
border: 1px solid #E0E0E0;
|
161 |
-
display: none;
|
162 |
-
height: 100%;
|
163 |
-
min-height: 400px;
|
164 |
-
padding: 5px 15px 15px;
|
165 |
-
}
|
166 |
-
|
167 |
-
.size-full {
|
168 |
-
height: auto;
|
169 |
-
max-width: 100%;
|
170 |
-
}
|
171 |
-
</style>
|
172 |
<div id="wpccp_subscribe" class="notice notice-info is-dismissible">
|
173 |
<?php $admin_email_wccp = get_bloginfo("admin_email"); ?>
|
174 |
-
<table
|
175 |
<tr>
|
176 |
<td><h2 style="background-color:#FFFFFF;padding:3px;" class="alert-heading"><?php _e("WP Content Protection Plugin Group", 'wp-content-copy-protector') ?></h2></td>
|
177 |
<td rowspan="2">
|
@@ -210,6 +166,7 @@ if(localStorage.getItem('wpccp_subscribed') =='wpccp_subsbc_user')
|
|
210 |
}
|
211 |
</script>
|
212 |
<div id="aio_admin_main">
|
|
|
213 |
<form method="POST">
|
214 |
<input type="hidden" value="update" name="action">
|
215 |
<div class="simpleTabs">
|
@@ -295,18 +252,19 @@ if(localStorage.getItem('wpccp_subscribed') =='wpccp_subsbc_user')
|
|
295 |
<tr>
|
296 |
<td width="221" height="33"><font face="Tahoma" size="2"><?php _e('Plugin icon on top admin bar','wp-content-copy-protector'); ?></font></td>
|
297 |
<td>
|
298 |
-
<select size="1" name="
|
299 |
-
<?php
|
300 |
-
if
|
301 |
-
|
302 |
-
echo '<option selected value="Visible">'. __('Visible','wp-content-copy-protector') .'</option>';
|
303 |
-
echo '<option value="Hidden">'. __('Hidden','wp-content-copy-protector') .'</option>';
|
304 |
-
}
|
305 |
-
else
|
306 |
{
|
307 |
echo '<option selected value="Hidden">'. __('Hidden','wp-content-copy-protector') .'</option>';
|
308 |
echo '<option value="Visible">'. __('Visible','wp-content-copy-protector') .'</option>';
|
309 |
}
|
|
|
|
|
|
|
|
|
|
|
310 |
?>
|
311 |
</select></td>
|
312 |
<td>
|
@@ -385,14 +343,14 @@ if(localStorage.getItem('wpccp_subscribed') =='wpccp_subsbc_user')
|
|
385 |
<p><font color="#FF0000" face="Tahoma" size="2"><?php _e('Remaining premium options preview image ','wp-content-copy-protector'); ?></font>
|
386 |
<img src="<?php echo $pluginsurl ?>/images/click-here-arrow.png" id="irc_mi">
|
387 |
<b><font color="#0909FF"><u>
|
388 |
-
<a target="_blank" href="http://www.wp-buy.com/product/wp-content-copy-protection-pro
|
389 |
<font color="#0909FF"><?php _e('Preview & Pricing','wp-content-copy-protector'); ?></font></a></u></font></b>
|
390 |
</td>
|
391 |
</tr>
|
392 |
<tr>
|
393 |
<td height="264" colspan="2">
|
394 |
|
395 |
-
<a target="_blank" href="http://www.wp-buy.com/product/wp-content-copy-protection-pro
|
396 |
<img class="size-full" border="1" src="<?php echo $pluginsurl ?>/images/right-click-protection.jpg" style="border: 1px dotted #C0C0C0"></a><p> </td>
|
397 |
</tr>
|
398 |
</table></div>
|
@@ -464,17 +422,17 @@ if(localStorage.getItem('wpccp_subscribed') =='wpccp_subsbc_user')
|
|
464 |
<p><font color="#FF0000" face="Tahoma" size="3"><?php _e('Crazy discount offer is now running for a limited time!! You might love it','wp-content-copy-protector'); ?></font>
|
465 |
<img src="<?php echo $pluginsurl ?>/images/click-here-arrow.png" id="irc_mi">
|
466 |
<b><font color="#0909FF"><u>
|
467 |
-
<a target="_blank" href="http://www.wp-buy.com/product/wp-content-copy-protection-pro
|
468 |
<font color="#0909FF" size="3"><?php _e('See it now','wp-content-copy-protector'); ?></font></a></u></font></b>
|
469 |
-
<a target="_blank" href="http://www.wp-buy.com/product/wp-content-copy-protection-pro
|
470 |
<img class="size-full" border="1" src="<?php echo $pluginsurl ?>/images/smart-phones-protection.png" style="border: 1px dotted #C0C0C0">
|
471 |
</a>
|
472 |
<p> </p>
|
473 |
-
<a target="_blank" href="http://www.wp-buy.com/product/wp-content-copy-protection-pro
|
474 |
<img class="size-full" border="1" src="<?php echo $pluginsurl ?>/images/watermark-adv.jpg" style="border: 1px dotted #C0C0C0">
|
475 |
</a>
|
476 |
<p></p>
|
477 |
-
<a target="_blank" href="http://www.wp-buy.com/product/wp-content-copy-protection-pro
|
478 |
<img class="size-full" border="1" src="<?php echo $pluginsurl ?>/images/watermarking-adv-examples.png" style="border: 1px dotted #C0C0C0">
|
479 |
</a>
|
480 |
<p></p>
|
@@ -513,6 +471,135 @@ if(localStorage.getItem('wpccp_subscribed') =='wpccp_subsbc_user')
|
|
513 |
<p><a target="_blank" href="https://www.wp-buy.com/wpccp-subscribe">Subscribe</a> to our mailing list to get flash discounts</p>
|
514 |
</div>
|
515 |
</div><!-- simple tabs div end -->
|
516 |
-
<
|
|
|
|
|
|
|
|
|
|
|
517 |
</form>
|
518 |
-
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
//define all variables the needed alot
|
8 |
include 'the_globals.php';
|
9 |
include 'notifications.php';
|
10 |
+
add_action('admin_footer','alert_message');
|
11 |
+
|
12 |
+
if ( isset( $_POST['Restore_defaults'] ) )
|
13 |
+
{
|
14 |
+
update_option("wccp_settings" , "");
|
15 |
+
$new_url = "?page=wccpoptionspro";
|
16 |
+
header("Location: $new_url");
|
17 |
+
}
|
18 |
+
|
19 |
+
if(isset($_POST["Save_settings"]))
|
20 |
{
|
21 |
//----------------------------------------------------list the options array values
|
22 |
$single_posts_protection = '';
|
26 |
$page_protection = '';
|
27 |
if(isset($_POST["page_protection"])) $page_protection = sanitize_text_field($_POST["page_protection"]);
|
28 |
|
29 |
+
$top_bar_icon_btn = '';
|
30 |
+
if(isset($_POST["top_bar_icon_btn"])) $top_bar_icon_btn = sanitize_text_field($_POST["top_bar_icon_btn"]);
|
31 |
|
32 |
$exclude_admin_from_protection = '';
|
33 |
if(isset($_POST["exclude_admin_from_protection"])) $exclude_admin_from_protection = sanitize_text_field($_POST["exclude_admin_from_protection"]);
|
86 |
'single_posts_protection' => $single_posts_protection, // prevent content copy, take 2 parameters
|
87 |
'home_page_protection' => $home_page_protection, // PROTECT THE HOME PAGE OR NOT
|
88 |
'page_protection' => $page_protection, // protect pages by javascript
|
89 |
+
'top_bar_icon_btn' => $top_bar_icon_btn, // protection icon on top bar
|
90 |
'right_click_protection_posts' => $right_click_protection_posts, //no comment here
|
91 |
'right_click_protection_homepage' => $right_click_protection_homepage, //no comment here
|
92 |
'right_click_protection_pages' => $right_click_protection_pages, //no comment here
|
112 |
'prnt_scr_msg' => $prnt_scr_msg
|
113 |
);
|
114 |
|
115 |
+
if(get_option('wccp_settings') !== null) {
|
116 |
update_option( 'wccp_settings' , $wccp_settings );
|
117 |
} else {
|
118 |
$deprecated = '';
|
125 |
|
126 |
$wccp_settings = wccp_read_options();
|
127 |
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
128 |
<div id="wpccp_subscribe" class="notice notice-info is-dismissible">
|
129 |
<?php $admin_email_wccp = get_bloginfo("admin_email"); ?>
|
130 |
+
<table style="background-image:url(<?php echo $pluginsurl ?>/images/ad.png);background-repeat:no-repeat;" border="0" width="100%" cellspacing="0" cellpadding="0">
|
131 |
<tr>
|
132 |
<td><h2 style="background-color:#FFFFFF;padding:3px;" class="alert-heading"><?php _e("WP Content Protection Plugin Group", 'wp-content-copy-protector') ?></h2></td>
|
133 |
<td rowspan="2">
|
166 |
}
|
167 |
</script>
|
168 |
<div id="aio_admin_main">
|
169 |
+
<p style="margin: 20px 0 20px;font-size: 16px;font-weight: bold;color: rgba(30,140,190,.8);">WP Content Copy Protection & No Right Click (FREE)</p>
|
170 |
<form method="POST">
|
171 |
<input type="hidden" value="update" name="action">
|
172 |
<div class="simpleTabs">
|
252 |
<tr>
|
253 |
<td width="221" height="33"><font face="Tahoma" size="2"><?php _e('Plugin icon on top admin bar','wp-content-copy-protector'); ?></font></td>
|
254 |
<td>
|
255 |
+
<select size="1" name="top_bar_icon_btn">
|
256 |
+
<?php
|
257 |
+
//Check if Hidden first, because default value is Visible
|
258 |
+
if (array_key_exists("top_bar_icon_btn",$wccp_settings) && $wccp_settings['top_bar_icon_btn'] == 'Hidden')
|
|
|
|
|
|
|
|
|
259 |
{
|
260 |
echo '<option selected value="Hidden">'. __('Hidden','wp-content-copy-protector') .'</option>';
|
261 |
echo '<option value="Visible">'. __('Visible','wp-content-copy-protector') .'</option>';
|
262 |
}
|
263 |
+
else
|
264 |
+
{
|
265 |
+
echo '<option selected value="Visible">'. __('Visible','wp-content-copy-protector') .'</option>';
|
266 |
+
echo '<option value="Hidden">'. __('Hidden','wp-content-copy-protector') .'</option>';
|
267 |
+
}
|
268 |
?>
|
269 |
</select></td>
|
270 |
<td>
|
343 |
<p><font color="#FF0000" face="Tahoma" size="2"><?php _e('Remaining premium options preview image ','wp-content-copy-protector'); ?></font>
|
344 |
<img src="<?php echo $pluginsurl ?>/images/click-here-arrow.png" id="irc_mi">
|
345 |
<b><font color="#0909FF"><u>
|
346 |
+
<a target="_blank" href="http://www.wp-buy.com/product/wp-content-copy-protection-pro/?src=layer2">
|
347 |
<font color="#0909FF"><?php _e('Preview & Pricing','wp-content-copy-protector'); ?></font></a></u></font></b>
|
348 |
</td>
|
349 |
</tr>
|
350 |
<tr>
|
351 |
<td height="264" colspan="2">
|
352 |
|
353 |
+
<a target="_blank" href="http://www.wp-buy.com/product/wp-content-copy-protection-pro/?src=layer2">
|
354 |
<img class="size-full" border="1" src="<?php echo $pluginsurl ?>/images/right-click-protection.jpg" style="border: 1px dotted #C0C0C0"></a><p> </td>
|
355 |
</tr>
|
356 |
</table></div>
|
422 |
<p><font color="#FF0000" face="Tahoma" size="3"><?php _e('Crazy discount offer is now running for a limited time!! You might love it','wp-content-copy-protector'); ?></font>
|
423 |
<img src="<?php echo $pluginsurl ?>/images/click-here-arrow.png" id="irc_mi">
|
424 |
<b><font color="#0909FF"><u>
|
425 |
+
<a target="_blank" href="http://www.wp-buy.com/product/wp-content-copy-protection-pro/?src=more">
|
426 |
<font color="#0909FF" size="3"><?php _e('See it now','wp-content-copy-protector'); ?></font></a></u></font></b>
|
427 |
+
<a target="_blank" href="http://www.wp-buy.com/product/wp-content-copy-protection-pro/?src=more">
|
428 |
<img class="size-full" border="1" src="<?php echo $pluginsurl ?>/images/smart-phones-protection.png" style="border: 1px dotted #C0C0C0">
|
429 |
</a>
|
430 |
<p> </p>
|
431 |
+
<a target="_blank" href="http://www.wp-buy.com/product/wp-content-copy-protection-pro/?src=more">
|
432 |
<img class="size-full" border="1" src="<?php echo $pluginsurl ?>/images/watermark-adv.jpg" style="border: 1px dotted #C0C0C0">
|
433 |
</a>
|
434 |
<p></p>
|
435 |
+
<a target="_blank" href="http://www.wp-buy.com/product/wp-content-copy-protection-pro/?src=more">
|
436 |
<img class="size-full" border="1" src="<?php echo $pluginsurl ?>/images/watermarking-adv-examples.png" style="border: 1px dotted #C0C0C0">
|
437 |
</a>
|
438 |
<p></p>
|
471 |
<p><a target="_blank" href="https://www.wp-buy.com/wpccp-subscribe">Subscribe</a> to our mailing list to get flash discounts</p>
|
472 |
</div>
|
473 |
</div><!-- simple tabs div end -->
|
474 |
+
<div style="width:97%;" class="">
|
475 |
+
<div class="row justify-content-end form-btns">
|
476 |
+
<div class="col-15-auto"><input type="submit" class="btn wccp-form-button gray-btn" value="<?php _e('Restore defaults','wp-content-copy-protector'); ?>" name="Restore_defaults"></div>
|
477 |
+
<div class="col-15-auto"><input type="button" class="btn wccp-form-button blue-btn" value="<?php _e('Preview alert message','wp-content-copy-protector'); ?>" alt="Use CTRL+F5 after saving" onclick="show_wpcp_message('<?php _e('This is a preview message (do not forget to save changes)','wp-content-copy-protector'); ?>');" name="B5"></div>
|
478 |
+
<div class="col-15-auto"><input type="submit" class="btn wccp-form-button green-btn" value=" <?php _e('Save Settings','wp-content-copy-protector'); ?> " name="Save_settings"></div>
|
479 |
+
</div></div>
|
480 |
</form>
|
481 |
+
</div>
|
482 |
+
<style>
|
483 |
+
#aio_admin_main {
|
484 |
+
padding:10px;
|
485 |
+
margin: 10px;
|
486 |
+
background-color: #ffffff;
|
487 |
+
border:1px solid #EBDDE2;
|
488 |
+
display: relative;
|
489 |
+
overflow: auto;
|
490 |
+
}
|
491 |
+
.inner_block{
|
492 |
+
height: 370px;
|
493 |
+
display: inline;
|
494 |
+
min-width:770px;
|
495 |
+
}
|
496 |
+
#donate{
|
497 |
+
background-color: #EEFFEE;
|
498 |
+
border: 1px solid #66DD66;
|
499 |
+
border-radius: 10px 10px 10px 10px;
|
500 |
+
height: 58px;
|
501 |
+
padding: 10px;
|
502 |
+
margin: 15px;
|
503 |
+
}
|
504 |
+
.text-font {
|
505 |
+
color: #1ABC9C;
|
506 |
+
font-size: 14px;
|
507 |
+
line-height: 1.5;
|
508 |
+
padding-left: 3px;
|
509 |
+
transition: color 0.25s linear 0s;
|
510 |
+
}
|
511 |
+
.text-font:hover {
|
512 |
+
opacity: 1;
|
513 |
+
transition: color 0.25s linear 0s;
|
514 |
+
}
|
515 |
+
.simpleTabsContent{
|
516 |
+
border: 1px solid #E9E9E9;
|
517 |
+
padding: 4px;
|
518 |
+
}
|
519 |
+
div.simpleTabsContent{
|
520 |
+
margin-top:0;
|
521 |
+
border: 1px solid #E0E0E0;
|
522 |
+
display: none;
|
523 |
+
height: 100%;
|
524 |
+
min-height: 400px;
|
525 |
+
padding: 5px 15px 15px;
|
526 |
+
}
|
527 |
+
|
528 |
+
.size-full {
|
529 |
+
height: auto;
|
530 |
+
max-width: 100%;
|
531 |
+
}
|
532 |
+
|
533 |
+
.wccp-form-button {
|
534 |
+
color: white;
|
535 |
+
padding: 12px 28px;
|
536 |
+
text-align: center;
|
537 |
+
text-decoration: none;
|
538 |
+
display: inline-block;
|
539 |
+
font-size: 16px;
|
540 |
+
cursor: pointer;
|
541 |
+
transition-duration: 0.4s;
|
542 |
+
border: 2px solid;
|
543 |
+
border-radius: 5px;
|
544 |
+
}
|
545 |
+
|
546 |
+
.wccp-form-button:hover {background-color: white;}
|
547 |
+
|
548 |
+
.green-btn {background-color: #4CAF50; border-color: #4CAF50;} /* Green */
|
549 |
+
.green-btn:hover {color: #4CAF50;}
|
550 |
+
|
551 |
+
.blue-btn {background-color: #008CBA; border-color: #008CBA;} /* Blue */
|
552 |
+
.blue-btn:hover {color: #008CBA;}
|
553 |
+
|
554 |
+
.red-btn {background-color: #f44336; border-color: #f44336;} /* Red */
|
555 |
+
.red-btn:hover {color: #f44336;}
|
556 |
+
|
557 |
+
.gray-btn {background-color: #e7e7e7; color: black; border-color: #e7e7e7;} /* Gray */
|
558 |
+
.gray-btn:hover {color: #black;}
|
559 |
+
|
560 |
+
.black-btn {background-color: #555555; border-color: #555555;} /* Black */
|
561 |
+
.black-btn:hover {color: #555555;}
|
562 |
+
|
563 |
+
.form-btns .btn{
|
564 |
+
margin-right: 5px;
|
565 |
+
float: right;
|
566 |
+
}
|
567 |
+
@media (max-width: 435px)
|
568 |
+
{
|
569 |
+
.form-btns .btn
|
570 |
+
{
|
571 |
+
width:95% !important;
|
572 |
+
}
|
573 |
+
.form-btns
|
574 |
+
{
|
575 |
+
-webkit-box-pack: center!important;
|
576 |
+
-ms-flex-pack: center!important;
|
577 |
+
justify-content: center!important;
|
578 |
+
}
|
579 |
+
.form-btns div
|
580 |
+
{
|
581 |
+
width: 100%;
|
582 |
+
}
|
583 |
+
|
584 |
+
}
|
585 |
+
@media (min-width: 436px) and (max-width: 646px)
|
586 |
+
{
|
587 |
+
.form-btns .btn
|
588 |
+
{
|
589 |
+
width:390px !important;
|
590 |
+
}
|
591 |
+
.form-btns
|
592 |
+
{
|
593 |
+
-webkit-box-pack: center!important;
|
594 |
+
-ms-flex-pack: center!important;
|
595 |
+
justify-content: center!important;
|
596 |
+
}
|
597 |
+
}
|
598 |
+
@media (min-width: 647px) and (min-width: 768px)
|
599 |
+
{
|
600 |
+
.form-btns .btn
|
601 |
+
{
|
602 |
+
margin-right: 5px;
|
603 |
+
}
|
604 |
+
}
|
605 |
+
</style>
|
languages/wp-content-copy-protector-ar.mo
CHANGED
Binary file
|
languages/wp-content-copy-protector-ar.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WP Content Copy Protection & No Right Click\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2020-
|
6 |
-
"PO-Revision-Date: 2020-
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Arabic\n"
|
9 |
"Language: ar\n"
|
@@ -13,62 +13,82 @@ msgstr ""
|
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"X-Generator: Loco https://localise.biz/\n"
|
16 |
-
"X-Loco-Version: 2.
|
17 |
|
18 |
-
#: preventer-index.php:
|
19 |
-
msgid "
|
20 |
-
msgstr "
|
21 |
|
22 |
-
#:
|
23 |
-
msgid "
|
24 |
-
msgstr "
|
25 |
|
26 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
msgid "Dismiss"
|
28 |
msgstr "تجاهل"
|
29 |
|
30 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
msgid ""
|
32 |
"Begin your adventure to improve your WordPress website, Also you will win a "
|
33 |
msgstr "إبدا المغامرة واشترك معنا في القائمة البريدية ليصلك كل جديد!"
|
34 |
|
35 |
-
#: admin-core.php:
|
36 |
msgid "discount codes"
|
37 |
msgstr "كوبونات خصم"
|
38 |
|
39 |
-
#: admin-core.php:
|
40 |
msgid "Start it!"
|
41 |
msgstr "إشترك الآن"
|
42 |
|
43 |
-
#: admin-core.php:
|
44 |
msgid "Main Settings"
|
45 |
msgstr "الإعدادت الأساسية"
|
46 |
|
47 |
-
#: admin-core.php:
|
48 |
msgid "Premium RightClick Protection"
|
49 |
msgstr "الحماية من النقر بالزر الأيمن"
|
50 |
|
51 |
-
#: admin-core.php:
|
52 |
msgid "Premium Protection by CSS"
|
53 |
msgstr "الحماية بواسطة CSS"
|
54 |
|
55 |
-
#: admin-core.php:
|
56 |
msgid "More with pro"
|
57 |
msgstr "المزيد مع النسخة المتقدمة"
|
58 |
|
59 |
-
#: admin-core.php:
|
60 |
-
msgid "Other products"
|
61 |
-
msgstr "بلجنات أخرى"
|
62 |
-
|
63 |
-
#: admin-core.php:222
|
64 |
msgid "Copy Protection using JavaScript"
|
65 |
msgstr "حماية المحتوى بواسطة قوة الجافا سكريبت"
|
66 |
|
67 |
-
#: admin-core.php:
|
68 |
msgid "Basic Layer"
|
69 |
msgstr "المستوى الأساسي"
|
70 |
|
71 |
-
#: admin-core.php:
|
72 |
msgid ""
|
73 |
"This is the basic protection layer that uses <u>JavaScript</u> to protect "
|
74 |
"the posts, home page content from being copied by any other web site author."
|
@@ -76,51 +96,67 @@ msgstr ""
|
|
76 |
"في هذه الطبقة من الحماية يتم استخدام الجافاسكريبت لحماية الموقع والمحتوى "
|
77 |
"والصفحة الرئيسية من النسخ بواسطة أي سارق محتوى آخر."
|
78 |
|
79 |
-
#: admin-core.php:
|
80 |
msgid "Posts protection by <u>JavaScript</u>"
|
81 |
msgstr "حماية البوستات بواسطة <u>الجافاسكريبت</u>"
|
82 |
|
83 |
-
#: admin-core.php:
|
84 |
-
#: admin-core.php:
|
85 |
-
#: admin-core.php:
|
86 |
msgid "Enabled"
|
87 |
msgstr "تمكين"
|
88 |
|
89 |
-
#: admin-core.php:
|
90 |
-
#: admin-core.php:
|
91 |
-
#: admin-core.php:
|
92 |
msgid "Disabled"
|
93 |
msgstr "تعطيل"
|
94 |
|
95 |
-
#: admin-core.php:
|
96 |
msgid "For single posts content"
|
97 |
msgstr "يتم تطبيقه على محتوى البوستات المنشورة"
|
98 |
|
99 |
-
#: admin-core.php:
|
100 |
msgid "Homepage protection by <u>JavaScript</u>"
|
101 |
msgstr "حماية الصفحة الرئيسية بواسطة <u>الجافاسكريبت</u>"
|
102 |
|
103 |
-
#: admin-core.php:
|
104 |
msgid "Don't copy any thing! even from my homepage"
|
105 |
msgstr "منع نسخ أي شيء حتى من الصفحة الرئيسية لموقعي"
|
106 |
|
107 |
-
#: admin-core.php:
|
108 |
msgid "Static page's protection"
|
109 |
msgstr "حماية الصفحات الثابتة"
|
110 |
|
111 |
-
#: admin-core.php:
|
112 |
msgid "Use Premium Settings tab to customize more options"
|
113 |
msgstr "ستجد خيارات إضافية في التبويبات العلوية"
|
114 |
|
115 |
-
#: admin-core.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
116 |
msgid "Exclude <u>Admin</u> from protection"
|
117 |
msgstr "استثناء <u>مدير الموقع</u> من الحماية"
|
118 |
|
119 |
-
#: admin-core.php:
|
120 |
msgid "Premium"
|
121 |
msgstr "حصري"
|
122 |
|
123 |
-
#: admin-core.php:
|
124 |
msgid ""
|
125 |
"If <u>Yes</u>, The protection functions will be inactive for the admin when "
|
126 |
"he is logged in"
|
@@ -128,23 +164,23 @@ msgstr ""
|
|
128 |
"عند تحديد الخيار (نعم) سيتم تعطيل خيارات الحماية عندما يقوم مدير الموقع "
|
129 |
"بتسجيل الدخول لموقعه"
|
130 |
|
131 |
-
#: admin-core.php:
|
132 |
msgid "Selection disabled message"
|
133 |
msgstr "رسالة منع تحديد النصوص على الموقع"
|
134 |
|
135 |
-
#: admin-core.php:
|
136 |
msgid "Print preview message"
|
137 |
msgstr "رسالة التعطيل لصفحة (معاينة قبل الطباعة)"
|
138 |
|
139 |
-
#: admin-core.php:
|
140 |
msgid "Copy Protection on RightClick"
|
141 |
msgstr "حماية المحتوى عند النقر بزر الفأرة الأيمن"
|
142 |
|
143 |
-
#: admin-core.php:
|
144 |
msgid "Premium Layer 2"
|
145 |
msgstr "مستوى الحماية الثاني"
|
146 |
|
147 |
-
#: admin-core.php:
|
148 |
msgid ""
|
149 |
"In this protection layer your visitors will be able to <u>right click</u> on "
|
150 |
"a specific page elements only (such as Links as an example)"
|
@@ -152,40 +188,40 @@ msgstr ""
|
|
152 |
"في هذه الطبقة من الحماية فإن زوار موقعك سيكونوا قادرين على النقر بالزر "
|
153 |
"الأيمن للفأرة فوق بعض عناصر الصفحة (مثل الروابط وغيرها)"
|
154 |
|
155 |
-
#: admin-core.php:
|
156 |
msgid "Disable <u>RightClick</u> on"
|
157 |
msgstr "تعطيل النقر <u>بزر الفأرة الأيمن</u> على"
|
158 |
|
159 |
-
#: admin-core.php:
|
160 |
msgid "Posts"
|
161 |
msgstr "البوستات"
|
162 |
|
163 |
-
#: admin-core.php:
|
164 |
msgid "HomePage"
|
165 |
msgstr "الصفحة الرئيسية"
|
166 |
|
167 |
-
#: admin-core.php:
|
168 |
msgid "Static pages"
|
169 |
msgstr "الصفحات الثابتة"
|
170 |
|
171 |
-
#: admin-core.php:
|
172 |
msgid "Remaining premium options preview image "
|
173 |
msgstr ""
|
174 |
"عندما تشتري النسخة المتقدمة ستحصل على مميزات أخرى كما في الصورة التالية"
|
175 |
|
176 |
-
#: admin-core.php:
|
177 |
msgid "Preview & Pricing"
|
178 |
msgstr "استعراض المميزات والأسعار"
|
179 |
|
180 |
-
#: admin-core.php:
|
181 |
msgid "Protection by CSS Techniques"
|
182 |
msgstr "الحماية بواسطة تقنيات الستايل CSS"
|
183 |
|
184 |
-
#: admin-core.php:
|
185 |
msgid "Premium Layer 3"
|
186 |
msgstr "مستوى الحماية المميز 3"
|
187 |
|
188 |
-
#: admin-core.php:
|
189 |
msgid ""
|
190 |
"In this protection layer your website will be protected by some <u>CSS</u> "
|
191 |
"tricks that will word even if <u>JavaScript</u> is disabled from the browser "
|
@@ -195,35 +231,44 @@ msgstr ""
|
|
195 |
"الخاصة بلغة <u>CSS</u> الصديقة للمتصفحات وذلك في حال قام المستخدم بتعطيل "
|
196 |
"خاصية الجافا سكريبت من خيارات المتصفح"
|
197 |
|
198 |
-
#: admin-core.php:
|
199 |
msgid "<b>Home Page</b> Protection by CSS"
|
200 |
msgstr "حماية الصفحة الرئيسية بواسطة ملفات الستايل CSS"
|
201 |
|
202 |
-
#: admin-core.php:
|
203 |
msgid "Protect your Homepage by CSS tricks"
|
204 |
msgstr "إحمي الصفحة الرئيسية بواسطة تقنيات الستايل CSS"
|
205 |
|
206 |
-
#: admin-core.php:
|
207 |
msgid "<b>Posts</b> Protection by CSS"
|
208 |
msgstr "حماية البوستات بواسطة ملفات الستايل CSS"
|
209 |
|
210 |
-
#: admin-core.php:
|
211 |
msgid "Protect your single posts by CSS tricks"
|
212 |
msgstr "إحمي البوستات بواسطة تقنيات الستايل CSS"
|
213 |
|
214 |
-
#: admin-core.php:
|
215 |
msgid "<b>Pages</b> Protection by CSS"
|
216 |
msgstr "حماية الصفحات الثابتة بواسطة ملفات الستايل CSS"
|
217 |
|
218 |
-
#: admin-core.php:
|
219 |
msgid "Protect your static pages by CSS tricks"
|
220 |
msgstr "إحمي الصفحات الثابتة بواسطة تقنيات الستايل CSS"
|
221 |
|
222 |
-
#: admin-core.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
223 |
msgid "Basic features:"
|
224 |
msgstr "المميزات الأساسية:"
|
225 |
|
226 |
-
#: admin-core.php:
|
227 |
msgid ""
|
228 |
"Protect your content from selection and copy. this plugin makes protecting "
|
229 |
"your posts extremely simple without yelling at your readers"
|
@@ -231,61 +276,64 @@ msgstr ""
|
|
231 |
"احمي موقعك ومحتواك من السرقة والنسخ واللصق, هذه الإضافة ستحمي موقعك بدون أن "
|
232 |
"يشعر المستخدم العادي بالضجر أو الإزعاج"
|
233 |
|
234 |
-
#: admin-core.php:
|
235 |
msgid "No one can save images from your site."
|
236 |
msgstr "لا أحد سيتمكن من حفظ الصور عن صفحات موقعك"
|
237 |
|
238 |
-
#: admin-core.php:
|
239 |
-
|
|
|
240 |
msgstr "لا أحد سينقر بزر الفأرة الأيمن على الصفحات والصور"
|
241 |
|
242 |
-
#: admin-core.php:
|
243 |
-
msgid "
|
244 |
-
|
|
|
245 |
|
246 |
-
#: admin-core.php:
|
247 |
msgid "Disable the following keys"
|
248 |
msgstr "تعطيل مفاتيح الاختصارات التالية"
|
249 |
|
250 |
-
#: admin-core.php:
|
251 |
msgid "Advanced and easy to use control panel."
|
252 |
msgstr "لوحة تحكم سهلة وبسيطة وتحتوي خيارات متعددة"
|
253 |
|
254 |
-
#: admin-core.php:
|
255 |
-
|
|
|
256 |
msgstr "إذا رغبت, فلن يتمكن أحد من النقر على صورك بزر الفأرة الأيمن"
|
257 |
|
258 |
-
#: admin-core.php:
|
259 |
msgid "Premium features:"
|
260 |
msgstr "مميزات متقدمة:"
|
261 |
|
262 |
-
#: admin-core.php:
|
263 |
-
msgid "Get full
|
264 |
-
msgstr "تحكم كامل
|
265 |
|
266 |
-
#: admin-core.php:
|
267 |
msgid "Full watermarking"
|
268 |
msgstr "ميز صورك بعلامة مائية (أنت تختارها) مطبوعة فوق كل صورة"
|
269 |
|
270 |
-
#: admin-core.php:
|
271 |
msgid ""
|
272 |
-
"Show alert messages, when user made right click on images, text boxes,
|
273 |
-
" plain text.. etc"
|
274 |
msgstr ""
|
275 |
-
"إظهار
|
276 |
-
"
|
277 |
|
278 |
-
#: admin-core.php:
|
279 |
msgid "Admin can exclude Home page Or Single posts from being copy protected "
|
280 |
msgstr "يستطيع الأدمن استثناء أي صفحة او بوست من خاصية الحماية"
|
281 |
|
282 |
-
#: admin-core.php:
|
283 |
msgid "Admin can disable copy protection for admin users."
|
284 |
msgstr ""
|
285 |
"يمكنك إلغاء الحماية لمدراء الموقع بحيث ليتمكن الأدمن من إدارة المحتوى المحمي "
|
286 |
"بسهولة"
|
287 |
|
288 |
-
#: admin-core.php:
|
289 |
msgid ""
|
290 |
"3 protection layers (JavaScript protection, RightClick protection, CSS "
|
291 |
"protection)"
|
@@ -293,52 +341,60 @@ msgstr ""
|
|
293 |
"3 مستويات من الحماية (حماية بالجافاسكريبت , حماية من النقر بزر الفأرة الأيمن "
|
294 |
", حماية بواسطة ملفات الستايل)"
|
295 |
|
296 |
-
#: admin-core.php:
|
297 |
msgid ""
|
298 |
-
"Aggressive image protection (
|
299 |
-
"your images !!)"
|
300 |
-
msgstr "
|
|
|
301 |
|
302 |
-
#: admin-core.php:
|
303 |
msgid "Compatible with all major theme frameworks"
|
304 |
msgstr "متوافق مع أغلب الثيمات المعروفة والعالمية"
|
305 |
|
306 |
-
#: admin-core.php:
|
307 |
msgid "Compatible with all major browsers"
|
308 |
msgstr "متوافق مع أغلب المتصفحات الشهيرة"
|
309 |
|
310 |
-
#: admin-core.php:
|
311 |
-
msgid "Tested in IE9, IE10, Firefox, Google Chrome, Opera"
|
312 |
-
msgstr ""
|
313 |
-
"متوافق مع المتصفحات العالمية المشهورة مثل فايرفوكس وجوجل كروم وأوبرا وسفاري "
|
314 |
-
"وحتى متصفحات أغلب الهواتف الذكية"
|
315 |
|
316 |
-
#: admin-core.php:
|
317 |
msgid "Disables image drag and drop function"
|
318 |
msgstr "تعطيل خاصية السحب والإفلات للصور على المتصفح"
|
319 |
|
320 |
-
#: admin-core.php:
|
321 |
-
msgid "Works on
|
322 |
-
msgstr "يعمل بكفاءة على الهواتف الذكية"
|
323 |
|
324 |
-
#: admin-core.php:
|
325 |
msgid "Ability to set varying levels of protection per page or post."
|
326 |
msgstr ""
|
327 |
"القدرة على تحديد مستوىات الحماية للصفحات او البوستات أو الرئيسية بشكل منفصل"
|
328 |
|
329 |
-
#: admin-core.php:
|
330 |
-
msgid "
|
331 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
332 |
|
333 |
-
#: admin-core.php:
|
334 |
msgid "Save Settings"
|
335 |
msgstr "حفظ التغييرات"
|
336 |
|
337 |
-
#: notifications.php:
|
338 |
msgid "Leave A Review?"
|
339 |
msgstr "أترك تقييم"
|
340 |
|
341 |
-
#: notifications.php:
|
342 |
msgid ""
|
343 |
"We hope you've enjoyed using WP copy Protection :) Would you mind taking a "
|
344 |
"few minutes to write a review on WordPress.org?<br>Just writing simple "
|
@@ -348,19 +404,19 @@ msgstr ""
|
|
348 |
"تقييم 5 نجوم تنصح به باقي مجتمع ووردبرس بتحميل هذا المنتج؟ دقيقتين فقط من "
|
349 |
"وقتك ولك جزيل الشكر"
|
350 |
|
351 |
-
#: notifications.php:
|
352 |
msgid "Sure! I'd love to!"
|
353 |
msgstr "نعم أود ذلك, بكل سرور!!"
|
354 |
|
355 |
-
#: notifications.php:
|
356 |
msgid "I've already left a review"
|
357 |
msgstr "لقد فعلت!"
|
358 |
|
359 |
-
#: notifications.php:
|
360 |
msgid "Will Rate Later"
|
361 |
msgstr "ربما لاحقاً"
|
362 |
|
363 |
-
#: notifications.php:
|
364 |
msgid "Hide Forever"
|
365 |
msgstr "عدم الإظهار مطلقاً"
|
366 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WP Content Copy Protection & No Right Click\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2020-10-10 10:20+0000\n"
|
6 |
+
"PO-Revision-Date: 2020-10-10 10:39+0000\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Arabic\n"
|
9 |
"Language: ar\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"X-Generator: Loco https://localise.biz/\n"
|
16 |
+
"X-Loco-Version: 2.4.3; wp-5.5.1"
|
17 |
|
18 |
+
#: preventer-index.php:626
|
19 |
+
msgid "Settings"
|
20 |
+
msgstr "الإعدادات"
|
21 |
|
22 |
+
#: preventer-index.php:629
|
23 |
+
msgid "Go PRO"
|
24 |
+
msgstr "ترقية"
|
25 |
|
26 |
+
#: preventer-index.php:651
|
27 |
+
msgid ""
|
28 |
+
"You are running WP Content Copy Protection & No Right Click (free). To get "
|
29 |
+
"more features, you can "
|
30 |
+
msgstr ""
|
31 |
+
"أنت تستخدم الإصدار المجاني من إضافة الحماية من النسخ واللصق, للحصول على "
|
32 |
+
"مميزات إضافية يمكنك "
|
33 |
+
|
34 |
+
#: preventer-index.php:651
|
35 |
+
msgid "Upgrade Now"
|
36 |
+
msgstr "الترقية الآن"
|
37 |
+
|
38 |
+
#: preventer-index.php:651 admin-core.php:134
|
39 |
msgid "Dismiss"
|
40 |
msgstr "تجاهل"
|
41 |
|
42 |
+
#: preventer-index.php:723
|
43 |
+
msgid "Protection"
|
44 |
+
msgstr "حماية"
|
45 |
+
|
46 |
+
#: preventer-index.php:725
|
47 |
+
msgid "Copy Protection & No right click"
|
48 |
+
msgstr "إضافة الحماية من النسخ واللصق"
|
49 |
+
|
50 |
+
#: admin-core.php:132
|
51 |
+
msgid "WP Content Protection Plugin Group"
|
52 |
+
msgstr "المجموعة البريدية الخاصة بإضافة حماية المحتوى من النسخ"
|
53 |
+
|
54 |
+
#: admin-core.php:139
|
55 |
msgid ""
|
56 |
"Begin your adventure to improve your WordPress website, Also you will win a "
|
57 |
msgstr "إبدا المغامرة واشترك معنا في القائمة البريدية ليصلك كل جديد!"
|
58 |
|
59 |
+
#: admin-core.php:139
|
60 |
msgid "discount codes"
|
61 |
msgstr "كوبونات خصم"
|
62 |
|
63 |
+
#: admin-core.php:141
|
64 |
msgid "Start it!"
|
65 |
msgstr "إشترك الآن"
|
66 |
|
67 |
+
#: admin-core.php:174
|
68 |
msgid "Main Settings"
|
69 |
msgstr "الإعدادت الأساسية"
|
70 |
|
71 |
+
#: admin-core.php:175
|
72 |
msgid "Premium RightClick Protection"
|
73 |
msgstr "الحماية من النقر بالزر الأيمن"
|
74 |
|
75 |
+
#: admin-core.php:176
|
76 |
msgid "Premium Protection by CSS"
|
77 |
msgstr "الحماية بواسطة CSS"
|
78 |
|
79 |
+
#: admin-core.php:177
|
80 |
msgid "More with pro"
|
81 |
msgstr "المزيد مع النسخة المتقدمة"
|
82 |
|
83 |
+
#: admin-core.php:183
|
|
|
|
|
|
|
|
|
84 |
msgid "Copy Protection using JavaScript"
|
85 |
msgstr "حماية المحتوى بواسطة قوة الجافا سكريبت"
|
86 |
|
87 |
+
#: admin-core.php:183
|
88 |
msgid "Basic Layer"
|
89 |
msgstr "المستوى الأساسي"
|
90 |
|
91 |
+
#: admin-core.php:184
|
92 |
msgid ""
|
93 |
"This is the basic protection layer that uses <u>JavaScript</u> to protect "
|
94 |
"the posts, home page content from being copied by any other web site author."
|
96 |
"في هذه الطبقة من الحماية يتم استخدام الجافاسكريبت لحماية الموقع والمحتوى "
|
97 |
"والصفحة الرئيسية من النسخ بواسطة أي سارق محتوى آخر."
|
98 |
|
99 |
+
#: admin-core.php:191
|
100 |
msgid "Posts protection by <u>JavaScript</u>"
|
101 |
msgstr "حماية البوستات بواسطة <u>الجافاسكريبت</u>"
|
102 |
|
103 |
+
#: admin-core.php:197 admin-core.php:202 admin-core.php:218 admin-core.php:223
|
104 |
+
#: admin-core.php:239 admin-core.php:245 admin-core.php:373 admin-core.php:378
|
105 |
+
#: admin-core.php:394 admin-core.php:399
|
106 |
msgid "Enabled"
|
107 |
msgstr "تمكين"
|
108 |
|
109 |
+
#: admin-core.php:198 admin-core.php:203 admin-core.php:219 admin-core.php:224
|
110 |
+
#: admin-core.php:240 admin-core.php:244 admin-core.php:374 admin-core.php:379
|
111 |
+
#: admin-core.php:395 admin-core.php:400
|
112 |
msgid "Disabled"
|
113 |
msgstr "تعطيل"
|
114 |
|
115 |
+
#: admin-core.php:209
|
116 |
msgid "For single posts content"
|
117 |
msgstr "يتم تطبيقه على محتوى البوستات المنشورة"
|
118 |
|
119 |
+
#: admin-core.php:212
|
120 |
msgid "Homepage protection by <u>JavaScript</u>"
|
121 |
msgstr "حماية الصفحة الرئيسية بواسطة <u>الجافاسكريبت</u>"
|
122 |
|
123 |
+
#: admin-core.php:230
|
124 |
msgid "Don't copy any thing! even from my homepage"
|
125 |
msgstr "منع نسخ أي شيء حتى من الصفحة الرئيسية لموقعي"
|
126 |
|
127 |
+
#: admin-core.php:233
|
128 |
msgid "Static page's protection"
|
129 |
msgstr "حماية الصفحات الثابتة"
|
130 |
|
131 |
+
#: admin-core.php:250
|
132 |
msgid "Use Premium Settings tab to customize more options"
|
133 |
msgstr "ستجد خيارات إضافية في التبويبات العلوية"
|
134 |
|
135 |
+
#: admin-core.php:253
|
136 |
+
msgid "Plugin icon on top admin bar"
|
137 |
+
msgstr "أيقونة اللوحة في شريط الإدارة العلوي"
|
138 |
+
|
139 |
+
#: admin-core.php:260 admin-core.php:266
|
140 |
+
msgid "Hidden"
|
141 |
+
msgstr "إخفاء"
|
142 |
+
|
143 |
+
#: admin-core.php:261 admin-core.php:265
|
144 |
+
msgid "Visible"
|
145 |
+
msgstr "إظهار"
|
146 |
+
|
147 |
+
#: admin-core.php:271
|
148 |
+
msgid "Show/Hide the plugin icon on the top admin bar"
|
149 |
+
msgstr "إظهار أو إخفاء أيقونة البلجن في شريط الأدوات العلوي"
|
150 |
+
|
151 |
+
#: admin-core.php:274
|
152 |
msgid "Exclude <u>Admin</u> from protection"
|
153 |
msgstr "استثناء <u>مدير الموقع</u> من الحماية"
|
154 |
|
155 |
+
#: admin-core.php:276 admin-core.php:411
|
156 |
msgid "Premium"
|
157 |
msgstr "حصري"
|
158 |
|
159 |
+
#: admin-core.php:278
|
160 |
msgid ""
|
161 |
"If <u>Yes</u>, The protection functions will be inactive for the admin when "
|
162 |
"he is logged in"
|
164 |
"عند تحديد الخيار (نعم) سيتم تعطيل خيارات الحماية عندما يقوم مدير الموقع "
|
165 |
"بتسجيل الدخول لموقعه"
|
166 |
|
167 |
+
#: admin-core.php:281
|
168 |
msgid "Selection disabled message"
|
169 |
msgstr "رسالة منع تحديد النصوص على الموقع"
|
170 |
|
171 |
+
#: admin-core.php:292
|
172 |
msgid "Print preview message"
|
173 |
msgstr "رسالة التعطيل لصفحة (معاينة قبل الطباعة)"
|
174 |
|
175 |
+
#: admin-core.php:310
|
176 |
msgid "Copy Protection on RightClick"
|
177 |
msgstr "حماية المحتوى عند النقر بزر الفأرة الأيمن"
|
178 |
|
179 |
+
#: admin-core.php:310
|
180 |
msgid "Premium Layer 2"
|
181 |
msgstr "مستوى الحماية الثاني"
|
182 |
|
183 |
+
#: admin-core.php:311
|
184 |
msgid ""
|
185 |
"In this protection layer your visitors will be able to <u>right click</u> on "
|
186 |
"a specific page elements only (such as Links as an example)"
|
188 |
"في هذه الطبقة من الحماية فإن زوار موقعك سيكونوا قادرين على النقر بالزر "
|
189 |
"الأيمن للفأرة فوق بعض عناصر الصفحة (مثل الروابط وغيرها)"
|
190 |
|
191 |
+
#: admin-core.php:315
|
192 |
msgid "Disable <u>RightClick</u> on"
|
193 |
msgstr "تعطيل النقر <u>بزر الفأرة الأيمن</u> على"
|
194 |
|
195 |
+
#: admin-core.php:322
|
196 |
msgid "Posts"
|
197 |
msgstr "البوستات"
|
198 |
|
199 |
+
#: admin-core.php:328
|
200 |
msgid "HomePage"
|
201 |
msgstr "الصفحة الرئيسية"
|
202 |
|
203 |
+
#: admin-core.php:334
|
204 |
msgid "Static pages"
|
205 |
msgstr "الصفحات الثابتة"
|
206 |
|
207 |
+
#: admin-core.php:343
|
208 |
msgid "Remaining premium options preview image "
|
209 |
msgstr ""
|
210 |
"عندما تشتري النسخة المتقدمة ستحصل على مميزات أخرى كما في الصورة التالية"
|
211 |
|
212 |
+
#: admin-core.php:347
|
213 |
msgid "Preview & Pricing"
|
214 |
msgstr "استعراض المميزات والأسعار"
|
215 |
|
216 |
+
#: admin-core.php:359
|
217 |
msgid "Protection by CSS Techniques"
|
218 |
msgstr "الحماية بواسطة تقنيات الستايل CSS"
|
219 |
|
220 |
+
#: admin-core.php:359
|
221 |
msgid "Premium Layer 3"
|
222 |
msgstr "مستوى الحماية المميز 3"
|
223 |
|
224 |
+
#: admin-core.php:360
|
225 |
msgid ""
|
226 |
"In this protection layer your website will be protected by some <u>CSS</u> "
|
227 |
"tricks that will word even if <u>JavaScript</u> is disabled from the browser "
|
231 |
"الخاصة بلغة <u>CSS</u> الصديقة للمتصفحات وذلك في حال قام المستخدم بتعطيل "
|
232 |
"خاصية الجافا سكريبت من خيارات المتصفح"
|
233 |
|
234 |
+
#: admin-core.php:367
|
235 |
msgid "<b>Home Page</b> Protection by CSS"
|
236 |
msgstr "حماية الصفحة الرئيسية بواسطة ملفات الستايل CSS"
|
237 |
|
238 |
+
#: admin-core.php:385
|
239 |
msgid "Protect your Homepage by CSS tricks"
|
240 |
msgstr "إحمي الصفحة الرئيسية بواسطة تقنيات الستايل CSS"
|
241 |
|
242 |
+
#: admin-core.php:388
|
243 |
msgid "<b>Posts</b> Protection by CSS"
|
244 |
msgstr "حماية البوستات بواسطة ملفات الستايل CSS"
|
245 |
|
246 |
+
#: admin-core.php:406
|
247 |
msgid "Protect your single posts by CSS tricks"
|
248 |
msgstr "إحمي البوستات بواسطة تقنيات الستايل CSS"
|
249 |
|
250 |
+
#: admin-core.php:409
|
251 |
msgid "<b>Pages</b> Protection by CSS"
|
252 |
msgstr "حماية الصفحات الثابتة بواسطة ملفات الستايل CSS"
|
253 |
|
254 |
+
#: admin-core.php:413
|
255 |
msgid "Protect your static pages by CSS tricks"
|
256 |
msgstr "إحمي الصفحات الثابتة بواسطة تقنيات الستايل CSS"
|
257 |
|
258 |
+
#: admin-core.php:422
|
259 |
+
msgid ""
|
260 |
+
"Crazy discount offer is now running for a limited time!! You might love it"
|
261 |
+
msgstr "أسرع للحصول على الخصم المجنون لفترة محدودة, ستحبه بكل تاكيد!!"
|
262 |
+
|
263 |
+
#: admin-core.php:426
|
264 |
+
msgid "See it now"
|
265 |
+
msgstr "شاهده الآن"
|
266 |
+
|
267 |
+
#: admin-core.php:442
|
268 |
msgid "Basic features:"
|
269 |
msgstr "المميزات الأساسية:"
|
270 |
|
271 |
+
#: admin-core.php:444
|
272 |
msgid ""
|
273 |
"Protect your content from selection and copy. this plugin makes protecting "
|
274 |
"your posts extremely simple without yelling at your readers"
|
276 |
"احمي موقعك ومحتواك من السرقة والنسخ واللصق, هذه الإضافة ستحمي موقعك بدون أن "
|
277 |
"يشعر المستخدم العادي بالضجر أو الإزعاج"
|
278 |
|
279 |
+
#: admin-core.php:445
|
280 |
msgid "No one can save images from your site."
|
281 |
msgstr "لا أحد سيتمكن من حفظ الصور عن صفحات موقعك"
|
282 |
|
283 |
+
#: admin-core.php:446
|
284 |
+
#, fuzzy
|
285 |
+
msgid "No right-click or context menu."
|
286 |
msgstr "لا أحد سينقر بزر الفأرة الأيمن على الصفحات والصور"
|
287 |
|
288 |
+
#: admin-core.php:447
|
289 |
+
msgid ""
|
290 |
+
"Show alert message, Image Ad, or HTML Ad on saving images or right-click."
|
291 |
+
msgstr "إظهار رسالة تحذيرية أو إعلان عند نقر الزر الآيمن للفأرة على موقعك"
|
292 |
|
293 |
+
#: admin-core.php:448
|
294 |
msgid "Disable the following keys"
|
295 |
msgstr "تعطيل مفاتيح الاختصارات التالية"
|
296 |
|
297 |
+
#: admin-core.php:449
|
298 |
msgid "Advanced and easy to use control panel."
|
299 |
msgstr "لوحة تحكم سهلة وبسيطة وتحتوي خيارات متعددة"
|
300 |
|
301 |
+
#: admin-core.php:450
|
302 |
+
#, fuzzy
|
303 |
+
msgid "No one can right-click images on your site if you want"
|
304 |
msgstr "إذا رغبت, فلن يتمكن أحد من النقر على صورك بزر الفأرة الأيمن"
|
305 |
|
306 |
+
#: admin-core.php:453
|
307 |
msgid "Premium features:"
|
308 |
msgstr "مميزات متقدمة:"
|
309 |
|
310 |
+
#: admin-core.php:455
|
311 |
+
msgid "Get full control over Right-click or context menu"
|
312 |
+
msgstr "احصل على تحكم كامل بالقائمة التي تظهر عند نقر الزر الأيمن للفأرة"
|
313 |
|
314 |
+
#: admin-core.php:456
|
315 |
msgid "Full watermarking"
|
316 |
msgstr "ميز صورك بعلامة مائية (أنت تختارها) مطبوعة فوق كل صورة"
|
317 |
|
318 |
+
#: admin-core.php:457
|
319 |
msgid ""
|
320 |
+
"Show alert messages, when the user made right click on images, text boxes, "
|
321 |
+
"links, plain text.. etc"
|
322 |
msgstr ""
|
323 |
+
"إظهار رسالة تحذيرية أو إعلان عند نقر الزر الآيمن للفأرة على عناصر أنت تحددها "
|
324 |
+
"فقط في موقعك"
|
325 |
|
326 |
+
#: admin-core.php:458
|
327 |
msgid "Admin can exclude Home page Or Single posts from being copy protected "
|
328 |
msgstr "يستطيع الأدمن استثناء أي صفحة او بوست من خاصية الحماية"
|
329 |
|
330 |
+
#: admin-core.php:459
|
331 |
msgid "Admin can disable copy protection for admin users."
|
332 |
msgstr ""
|
333 |
"يمكنك إلغاء الحماية لمدراء الموقع بحيث ليتمكن الأدمن من إدارة المحتوى المحمي "
|
334 |
"بسهولة"
|
335 |
|
336 |
+
#: admin-core.php:460
|
337 |
msgid ""
|
338 |
"3 protection layers (JavaScript protection, RightClick protection, CSS "
|
339 |
"protection)"
|
341 |
"3 مستويات من الحماية (حماية بالجافاسكريبت , حماية من النقر بزر الفأرة الأيمن "
|
342 |
", حماية بواسطة ملفات الستايل)"
|
343 |
|
344 |
+
#: admin-core.php:461
|
345 |
msgid ""
|
346 |
+
"Aggressive image protection (it is nearly impossible for expert users to "
|
347 |
+
"steal your images !!)"
|
348 |
+
msgstr ""
|
349 |
+
"حماية قصوى على الصور, تقريبا المستخدم العادي سيشعر باستحالة الحصول على صورك"
|
350 |
|
351 |
+
#: admin-core.php:462
|
352 |
msgid "Compatible with all major theme frameworks"
|
353 |
msgstr "متوافق مع أغلب الثيمات المعروفة والعالمية"
|
354 |
|
355 |
+
#: admin-core.php:463
|
356 |
msgid "Compatible with all major browsers"
|
357 |
msgstr "متوافق مع أغلب المتصفحات الشهيرة"
|
358 |
|
359 |
+
#: admin-core.php:464
|
360 |
+
msgid "Tested in IE9, IE10, edge, Firefox, Google Chrome, Opera, safari"
|
361 |
+
msgstr "تم الفحص وهو يعمل بشكل كامل على جميع المتصفحات المشهورة"
|
|
|
|
|
362 |
|
363 |
+
#: admin-core.php:465
|
364 |
msgid "Disables image drag and drop function"
|
365 |
msgstr "تعطيل خاصية السحب والإفلات للصور على المتصفح"
|
366 |
|
367 |
+
#: admin-core.php:466
|
368 |
+
msgid "Works on smartphones."
|
369 |
+
msgstr "يعمل بكفاءة على الهواتف الذكية أيضاً"
|
370 |
|
371 |
+
#: admin-core.php:467
|
372 |
msgid "Ability to set varying levels of protection per page or post."
|
373 |
msgstr ""
|
374 |
"القدرة على تحديد مستوىات الحماية للصفحات او البوستات أو الرئيسية بشكل منفصل"
|
375 |
|
376 |
+
#: admin-core.php:476
|
377 |
+
msgid "Restore defaults"
|
378 |
+
msgstr "استعادة الافتراضيات"
|
379 |
+
|
380 |
+
#: admin-core.php:477
|
381 |
+
msgid "Preview alert message"
|
382 |
+
msgstr "معاينة رسالة التحذير"
|
383 |
+
|
384 |
+
#: admin-core.php:477
|
385 |
+
msgid "This is a preview message (do not forget to save changes)"
|
386 |
+
msgstr ""
|
387 |
+
"هذه الرسالة هي فقط للمعاينة وهذا النص سيظهر هنا فقط, لا تنسى حفظ الاعدادات"
|
388 |
|
389 |
+
#: admin-core.php:478
|
390 |
msgid "Save Settings"
|
391 |
msgstr "حفظ التغييرات"
|
392 |
|
393 |
+
#: notifications.php:140
|
394 |
msgid "Leave A Review?"
|
395 |
msgstr "أترك تقييم"
|
396 |
|
397 |
+
#: notifications.php:141
|
398 |
msgid ""
|
399 |
"We hope you've enjoyed using WP copy Protection :) Would you mind taking a "
|
400 |
"few minutes to write a review on WordPress.org?<br>Just writing simple "
|
404 |
"تقييم 5 نجوم تنصح به باقي مجتمع ووردبرس بتحميل هذا المنتج؟ دقيقتين فقط من "
|
405 |
"وقتك ولك جزيل الشكر"
|
406 |
|
407 |
+
#: notifications.php:143
|
408 |
msgid "Sure! I'd love to!"
|
409 |
msgstr "نعم أود ذلك, بكل سرور!!"
|
410 |
|
411 |
+
#: notifications.php:144
|
412 |
msgid "I've already left a review"
|
413 |
msgstr "لقد فعلت!"
|
414 |
|
415 |
+
#: notifications.php:145
|
416 |
msgid "Will Rate Later"
|
417 |
msgstr "ربما لاحقاً"
|
418 |
|
419 |
+
#: notifications.php:146
|
420 |
msgid "Hide Forever"
|
421 |
msgstr "عدم الإظهار مطلقاً"
|
422 |
|
languages/wp-content-copy-protector.pot
CHANGED
@@ -1,363 +1,415 @@
|
|
1 |
-
#, fuzzy
|
2 |
-
msgid ""
|
3 |
-
msgstr ""
|
4 |
-
"Project-Id-Version: WP Content Copy Protection & No Right Click\n"
|
5 |
-
"Report-Msgid-Bugs-To: \n"
|
6 |
-
"POT-Creation-Date: 2020-
|
7 |
-
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
8 |
-
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
9 |
-
"Language-Team: \n"
|
10 |
-
"Language: \n"
|
11 |
-
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
12 |
-
"MIME-Version: 1.0\n"
|
13 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
-
"Content-Transfer-Encoding: 8bit\n"
|
15 |
-
"X-Generator: Loco https://localise.biz/\n"
|
16 |
-
"X-Loco-Version: 2.3.1; wp-5.3.2"
|
17 |
-
|
18 |
-
#: preventer-index.php:
|
19 |
-
msgid "
|
20 |
-
msgstr ""
|
21 |
-
|
22 |
-
#:
|
23 |
-
msgid "
|
24 |
-
msgstr ""
|
25 |
-
|
26 |
-
#:
|
27 |
-
msgid "
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
"
|
75 |
-
msgstr ""
|
76 |
-
|
77 |
-
#: admin-core.php:
|
78 |
-
msgid "
|
79 |
-
msgstr ""
|
80 |
-
|
81 |
-
#: admin-core.php:
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
#: admin-core.php:
|
90 |
-
msgid "
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
#: admin-core.php:
|
102 |
-
msgid "
|
103 |
-
msgstr ""
|
104 |
-
|
105 |
-
#: admin-core.php:
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
"
|
125 |
-
msgstr ""
|
126 |
-
|
127 |
-
#: admin-core.php:
|
128 |
-
msgid "
|
129 |
-
msgstr ""
|
130 |
-
|
131 |
-
#: admin-core.php:
|
132 |
-
msgid "
|
133 |
-
msgstr ""
|
134 |
-
|
135 |
-
#: admin-core.php:
|
136 |
-
msgid "
|
137 |
-
msgstr ""
|
138 |
-
|
139 |
-
#: admin-core.php:
|
140 |
-
msgid "
|
141 |
-
msgstr ""
|
142 |
-
|
143 |
-
#: admin-core.php:
|
144 |
-
msgid ""
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
msgstr ""
|
160 |
-
|
161 |
-
#: admin-core.php:
|
162 |
-
msgid "
|
163 |
-
msgstr ""
|
164 |
-
|
165 |
-
#: admin-core.php:
|
166 |
-
msgid "
|
167 |
-
msgstr ""
|
168 |
-
|
169 |
-
#: admin-core.php:
|
170 |
-
msgid "
|
171 |
-
msgstr ""
|
172 |
-
|
173 |
-
#: admin-core.php:
|
174 |
-
msgid "
|
175 |
-
msgstr ""
|
176 |
-
|
177 |
-
#: admin-core.php:
|
178 |
-
msgid "
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
"
|
185 |
-
"
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
"
|
219 |
-
"
|
220 |
-
msgstr ""
|
221 |
-
|
222 |
-
#: admin-core.php:
|
223 |
-
msgid "
|
224 |
-
msgstr ""
|
225 |
-
|
226 |
-
#: admin-core.php:
|
227 |
-
msgid "
|
228 |
-
msgstr ""
|
229 |
-
|
230 |
-
#: admin-core.php:
|
231 |
-
msgid "
|
232 |
-
msgstr ""
|
233 |
-
|
234 |
-
#: admin-core.php:
|
235 |
-
msgid "
|
236 |
-
msgstr ""
|
237 |
-
|
238 |
-
#: admin-core.php:
|
239 |
-
msgid "
|
240 |
-
msgstr ""
|
241 |
-
|
242 |
-
#: admin-core.php:
|
243 |
-
msgid "
|
244 |
-
msgstr ""
|
245 |
-
|
246 |
-
#: admin-core.php:
|
247 |
-
msgid "
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
"
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
"
|
276 |
-
msgstr ""
|
277 |
-
|
278 |
-
#: admin-core.php:
|
279 |
-
msgid ""
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
msgstr ""
|
307 |
-
|
308 |
-
#: admin-core.php:
|
309 |
-
msgid "
|
310 |
-
msgstr ""
|
311 |
-
|
312 |
-
#: admin-core.php:
|
313 |
-
msgid "
|
314 |
-
msgstr ""
|
315 |
-
|
316 |
-
#:
|
317 |
-
msgid "
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
"
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
"
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
|
363 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#, fuzzy
|
2 |
+
msgid ""
|
3 |
+
msgstr ""
|
4 |
+
"Project-Id-Version: WP Content Copy Protection & No Right Click\n"
|
5 |
+
"Report-Msgid-Bugs-To: \n"
|
6 |
+
"POT-Creation-Date: 2020-10-10 10:46+0000\n"
|
7 |
+
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
8 |
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
9 |
+
"Language-Team: \n"
|
10 |
+
"Language: \n"
|
11 |
+
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
12 |
+
"MIME-Version: 1.0\n"
|
13 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
+
"Content-Transfer-Encoding: 8bit\n"
|
15 |
+
"X-Generator: Loco https://localise.biz/\n"
|
16 |
+
"X-Loco-Version: 2.3.1; wp-5.3.2"
|
17 |
+
|
18 |
+
#: preventer-index.php:626
|
19 |
+
msgid "Settings"
|
20 |
+
msgstr ""
|
21 |
+
|
22 |
+
#: preventer-index.php:629
|
23 |
+
msgid "Go PRO"
|
24 |
+
msgstr ""
|
25 |
+
|
26 |
+
#: preventer-index.php:651
|
27 |
+
msgid ""
|
28 |
+
"You are running WP Content Copy Protection & No Right Click (free). To get "
|
29 |
+
"more features, you can "
|
30 |
+
msgstr ""
|
31 |
+
|
32 |
+
#: preventer-index.php:651
|
33 |
+
msgid "Upgrade Now"
|
34 |
+
msgstr ""
|
35 |
+
|
36 |
+
#: preventer-index.php:651 admin-core.php:134
|
37 |
+
msgid "Dismiss"
|
38 |
+
msgstr ""
|
39 |
+
|
40 |
+
#: preventer-index.php:723
|
41 |
+
msgid "Protection"
|
42 |
+
msgstr ""
|
43 |
+
|
44 |
+
#: preventer-index.php:725
|
45 |
+
msgid "Copy Protection & No right click"
|
46 |
+
msgstr ""
|
47 |
+
|
48 |
+
#: admin-core.php:132
|
49 |
+
msgid "WP Content Protection Plugin Group"
|
50 |
+
msgstr ""
|
51 |
+
|
52 |
+
#: admin-core.php:139
|
53 |
+
msgid ""
|
54 |
+
"Begin your adventure to improve your WordPress website, Also you will win a "
|
55 |
+
msgstr ""
|
56 |
+
|
57 |
+
#: admin-core.php:139
|
58 |
+
msgid "discount codes"
|
59 |
+
msgstr ""
|
60 |
+
|
61 |
+
#: admin-core.php:141
|
62 |
+
msgid "Start it!"
|
63 |
+
msgstr ""
|
64 |
+
|
65 |
+
#: admin-core.php:174
|
66 |
+
msgid "Main Settings"
|
67 |
+
msgstr ""
|
68 |
+
|
69 |
+
#: admin-core.php:175
|
70 |
+
msgid "Premium RightClick Protection"
|
71 |
+
msgstr ""
|
72 |
+
|
73 |
+
#: admin-core.php:176
|
74 |
+
msgid "Premium Protection by CSS"
|
75 |
+
msgstr ""
|
76 |
+
|
77 |
+
#: admin-core.php:177
|
78 |
+
msgid "More with pro"
|
79 |
+
msgstr ""
|
80 |
+
|
81 |
+
#: admin-core.php:183
|
82 |
+
msgid "Copy Protection using JavaScript"
|
83 |
+
msgstr ""
|
84 |
+
|
85 |
+
#: admin-core.php:183
|
86 |
+
msgid "Basic Layer"
|
87 |
+
msgstr ""
|
88 |
+
|
89 |
+
#: admin-core.php:184
|
90 |
+
msgid ""
|
91 |
+
"This is the basic protection layer that uses <u>JavaScript</u> to protect "
|
92 |
+
"the posts, home page content from being copied by any other web site author."
|
93 |
+
msgstr ""
|
94 |
+
|
95 |
+
#: admin-core.php:191
|
96 |
+
msgid "Posts protection by <u>JavaScript</u>"
|
97 |
+
msgstr ""
|
98 |
+
|
99 |
+
#: admin-core.php:197 admin-core.php:202 admin-core.php:218 admin-core.php:223
|
100 |
+
#: admin-core.php:239 admin-core.php:245 admin-core.php:373 admin-core.php:378
|
101 |
+
#: admin-core.php:394 admin-core.php:399
|
102 |
+
msgid "Enabled"
|
103 |
+
msgstr ""
|
104 |
+
|
105 |
+
#: admin-core.php:198 admin-core.php:203 admin-core.php:219 admin-core.php:224
|
106 |
+
#: admin-core.php:240 admin-core.php:244 admin-core.php:374 admin-core.php:379
|
107 |
+
#: admin-core.php:395 admin-core.php:400
|
108 |
+
msgid "Disabled"
|
109 |
+
msgstr ""
|
110 |
+
|
111 |
+
#: admin-core.php:209
|
112 |
+
msgid "For single posts content"
|
113 |
+
msgstr ""
|
114 |
+
|
115 |
+
#: admin-core.php:212
|
116 |
+
msgid "Homepage protection by <u>JavaScript</u>"
|
117 |
+
msgstr ""
|
118 |
+
|
119 |
+
#: admin-core.php:230
|
120 |
+
msgid "Don't copy any thing! even from my homepage"
|
121 |
+
msgstr ""
|
122 |
+
|
123 |
+
#: admin-core.php:233
|
124 |
+
msgid "Static page's protection"
|
125 |
+
msgstr ""
|
126 |
+
|
127 |
+
#: admin-core.php:250
|
128 |
+
msgid "Use Premium Settings tab to customize more options"
|
129 |
+
msgstr ""
|
130 |
+
|
131 |
+
#: admin-core.php:253
|
132 |
+
msgid "Plugin icon on top admin bar"
|
133 |
+
msgstr ""
|
134 |
+
|
135 |
+
#: admin-core.php:260 admin-core.php:266
|
136 |
+
msgid "Hidden"
|
137 |
+
msgstr ""
|
138 |
+
|
139 |
+
#: admin-core.php:261 admin-core.php:265
|
140 |
+
msgid "Visible"
|
141 |
+
msgstr ""
|
142 |
+
|
143 |
+
#: admin-core.php:271
|
144 |
+
msgid "Show/Hide the plugin icon on the top admin bar"
|
145 |
+
msgstr ""
|
146 |
+
|
147 |
+
#: admin-core.php:274
|
148 |
+
msgid "Exclude <u>Admin</u> from protection"
|
149 |
+
msgstr ""
|
150 |
+
|
151 |
+
#: admin-core.php:276 admin-core.php:411
|
152 |
+
msgid "Premium"
|
153 |
+
msgstr ""
|
154 |
+
|
155 |
+
#: admin-core.php:278
|
156 |
+
msgid ""
|
157 |
+
"If <u>Yes</u>, The protection functions will be inactive for the admin when "
|
158 |
+
"he is logged in"
|
159 |
+
msgstr ""
|
160 |
+
|
161 |
+
#: admin-core.php:281
|
162 |
+
msgid "Selection disabled message"
|
163 |
+
msgstr ""
|
164 |
+
|
165 |
+
#: admin-core.php:292
|
166 |
+
msgid "Print preview message"
|
167 |
+
msgstr ""
|
168 |
+
|
169 |
+
#: admin-core.php:310
|
170 |
+
msgid "Copy Protection on RightClick"
|
171 |
+
msgstr ""
|
172 |
+
|
173 |
+
#: admin-core.php:310
|
174 |
+
msgid "Premium Layer 2"
|
175 |
+
msgstr ""
|
176 |
+
|
177 |
+
#: admin-core.php:311
|
178 |
+
msgid ""
|
179 |
+
"In this protection layer your visitors will be able to <u>right click</u> on "
|
180 |
+
"a specific page elements only (such as Links as an example)"
|
181 |
+
msgstr ""
|
182 |
+
|
183 |
+
#: admin-core.php:315
|
184 |
+
msgid "Disable <u>RightClick</u> on"
|
185 |
+
msgstr ""
|
186 |
+
|
187 |
+
#: admin-core.php:322
|
188 |
+
msgid "Posts"
|
189 |
+
msgstr ""
|
190 |
+
|
191 |
+
#: admin-core.php:328
|
192 |
+
msgid "HomePage"
|
193 |
+
msgstr ""
|
194 |
+
|
195 |
+
#: admin-core.php:334
|
196 |
+
msgid "Static pages"
|
197 |
+
msgstr ""
|
198 |
+
|
199 |
+
#: admin-core.php:343
|
200 |
+
msgid "Remaining premium options preview image "
|
201 |
+
msgstr ""
|
202 |
+
|
203 |
+
#: admin-core.php:347
|
204 |
+
msgid "Preview & Pricing"
|
205 |
+
msgstr ""
|
206 |
+
|
207 |
+
#: admin-core.php:359
|
208 |
+
msgid "Protection by CSS Techniques"
|
209 |
+
msgstr ""
|
210 |
+
|
211 |
+
#: admin-core.php:359
|
212 |
+
msgid "Premium Layer 3"
|
213 |
+
msgstr ""
|
214 |
+
|
215 |
+
#: admin-core.php:360
|
216 |
+
msgid ""
|
217 |
+
"In this protection layer your website will be protected by some <u>CSS</u> "
|
218 |
+
"tricks that will word even if <u>JavaScript</u> is disabled from the browser "
|
219 |
+
"settings"
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: admin-core.php:367
|
223 |
+
msgid "<b>Home Page</b> Protection by CSS"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
#: admin-core.php:385
|
227 |
+
msgid "Protect your Homepage by CSS tricks"
|
228 |
+
msgstr ""
|
229 |
+
|
230 |
+
#: admin-core.php:388
|
231 |
+
msgid "<b>Posts</b> Protection by CSS"
|
232 |
+
msgstr ""
|
233 |
+
|
234 |
+
#: admin-core.php:406
|
235 |
+
msgid "Protect your single posts by CSS tricks"
|
236 |
+
msgstr ""
|
237 |
+
|
238 |
+
#: admin-core.php:409
|
239 |
+
msgid "<b>Pages</b> Protection by CSS"
|
240 |
+
msgstr ""
|
241 |
+
|
242 |
+
#: admin-core.php:413
|
243 |
+
msgid "Protect your static pages by CSS tricks"
|
244 |
+
msgstr ""
|
245 |
+
|
246 |
+
#: admin-core.php:422
|
247 |
+
msgid ""
|
248 |
+
"Crazy discount offer is now running for a limited time!! You might love it"
|
249 |
+
msgstr ""
|
250 |
+
|
251 |
+
#: admin-core.php:426
|
252 |
+
msgid "See it now"
|
253 |
+
msgstr ""
|
254 |
+
|
255 |
+
#: admin-core.php:442
|
256 |
+
msgid "Basic features:"
|
257 |
+
msgstr ""
|
258 |
+
|
259 |
+
#: admin-core.php:444
|
260 |
+
msgid ""
|
261 |
+
"Protect your content from selection and copy. this plugin makes protecting "
|
262 |
+
"your posts extremely simple without yelling at your readers"
|
263 |
+
msgstr ""
|
264 |
+
|
265 |
+
#: admin-core.php:445
|
266 |
+
msgid "No one can save images from your site."
|
267 |
+
msgstr ""
|
268 |
+
|
269 |
+
#: admin-core.php:446
|
270 |
+
msgid "No right-click or context menu."
|
271 |
+
msgstr ""
|
272 |
+
|
273 |
+
#: admin-core.php:447
|
274 |
+
msgid ""
|
275 |
+
"Show alert message, Image Ad, or HTML Ad on saving images or right-click."
|
276 |
+
msgstr ""
|
277 |
+
|
278 |
+
#: admin-core.php:448
|
279 |
+
msgid "Disable the following keys"
|
280 |
+
msgstr ""
|
281 |
+
|
282 |
+
#: admin-core.php:449
|
283 |
+
msgid "Advanced and easy to use control panel."
|
284 |
+
msgstr ""
|
285 |
+
|
286 |
+
#: admin-core.php:450
|
287 |
+
msgid "No one can right-click images on your site if you want"
|
288 |
+
msgstr ""
|
289 |
+
|
290 |
+
#: admin-core.php:453
|
291 |
+
msgid "Premium features:"
|
292 |
+
msgstr ""
|
293 |
+
|
294 |
+
#: admin-core.php:455
|
295 |
+
msgid "Get full control over Right-click or context menu"
|
296 |
+
msgstr ""
|
297 |
+
|
298 |
+
#: admin-core.php:456
|
299 |
+
msgid "Full watermarking"
|
300 |
+
msgstr ""
|
301 |
+
|
302 |
+
#: admin-core.php:457
|
303 |
+
msgid ""
|
304 |
+
"Show alert messages, when the user made right click on images, text boxes, "
|
305 |
+
"links, plain text.. etc"
|
306 |
+
msgstr ""
|
307 |
+
|
308 |
+
#: admin-core.php:458
|
309 |
+
msgid "Admin can exclude Home page Or Single posts from being copy protected "
|
310 |
+
msgstr ""
|
311 |
+
|
312 |
+
#: admin-core.php:459
|
313 |
+
msgid "Admin can disable copy protection for admin users."
|
314 |
+
msgstr ""
|
315 |
+
|
316 |
+
#: admin-core.php:460
|
317 |
+
msgid ""
|
318 |
+
"3 protection layers (JavaScript protection, RightClick protection, CSS "
|
319 |
+
"protection)"
|
320 |
+
msgstr ""
|
321 |
+
|
322 |
+
#: admin-core.php:461
|
323 |
+
msgid ""
|
324 |
+
"Aggressive image protection (it is nearly impossible for expert users to "
|
325 |
+
"steal your images !!)"
|
326 |
+
msgstr ""
|
327 |
+
|
328 |
+
#: admin-core.php:462
|
329 |
+
msgid "Compatible with all major theme frameworks"
|
330 |
+
msgstr ""
|
331 |
+
|
332 |
+
#: admin-core.php:463
|
333 |
+
msgid "Compatible with all major browsers"
|
334 |
+
msgstr ""
|
335 |
+
|
336 |
+
#: admin-core.php:464
|
337 |
+
msgid "Tested in IE9, IE10, edge, Firefox, Google Chrome, Opera, safari"
|
338 |
+
msgstr ""
|
339 |
+
|
340 |
+
#: admin-core.php:465
|
341 |
+
msgid "Disables image drag and drop function"
|
342 |
+
msgstr ""
|
343 |
+
|
344 |
+
#: admin-core.php:466
|
345 |
+
msgid "Works on smartphones."
|
346 |
+
msgstr ""
|
347 |
+
|
348 |
+
#: admin-core.php:467
|
349 |
+
msgid "Ability to set varying levels of protection per page or post."
|
350 |
+
msgstr ""
|
351 |
+
|
352 |
+
#: admin-core.php:476
|
353 |
+
msgid "Restore defaults"
|
354 |
+
msgstr ""
|
355 |
+
|
356 |
+
#: admin-core.php:477
|
357 |
+
msgid "Preview alert message"
|
358 |
+
msgstr ""
|
359 |
+
|
360 |
+
#: admin-core.php:477
|
361 |
+
msgid "This is a preview message (do not forget to save changes)"
|
362 |
+
msgstr ""
|
363 |
+
|
364 |
+
#: admin-core.php:478
|
365 |
+
msgid "Save Settings"
|
366 |
+
msgstr ""
|
367 |
+
|
368 |
+
#: notifications.php:140
|
369 |
+
msgid "Leave A Review?"
|
370 |
+
msgstr ""
|
371 |
+
|
372 |
+
#: notifications.php:141
|
373 |
+
msgid ""
|
374 |
+
"We hope you've enjoyed using WP copy Protection :) Would you mind taking a "
|
375 |
+
"few minutes to write a review on WordPress.org?<br>Just writing simple "
|
376 |
+
"\"thank you\" will make us happy!"
|
377 |
+
msgstr ""
|
378 |
+
|
379 |
+
#: notifications.php:143
|
380 |
+
msgid "Sure! I'd love to!"
|
381 |
+
msgstr ""
|
382 |
+
|
383 |
+
#: notifications.php:144
|
384 |
+
msgid "I've already left a review"
|
385 |
+
msgstr ""
|
386 |
+
|
387 |
+
#: notifications.php:145
|
388 |
+
msgid "Will Rate Later"
|
389 |
+
msgstr ""
|
390 |
+
|
391 |
+
#: notifications.php:146
|
392 |
+
msgid "Hide Forever"
|
393 |
+
msgstr ""
|
394 |
+
|
395 |
+
#. Name of the plugin
|
396 |
+
msgid "WP Content Copy Protection & No Right Click"
|
397 |
+
msgstr ""
|
398 |
+
|
399 |
+
#. Description of the plugin
|
400 |
+
msgid ""
|
401 |
+
"This wp plugin protect the posts content from being copied by any other web "
|
402 |
+
"site author , you dont want your content to spread without your permission!!"
|
403 |
+
msgstr ""
|
404 |
+
|
405 |
+
#. URI of the plugin
|
406 |
+
msgid "http://wordpress.org/plugins/w-p-content-copy-protector/"
|
407 |
+
msgstr ""
|
408 |
+
|
409 |
+
#. Author of the plugin
|
410 |
+
msgid "wp-buy"
|
411 |
+
msgstr ""
|
412 |
+
|
413 |
+
#. Author URI of the plugin
|
414 |
+
msgid "http://www.wp-buy.com/"
|
415 |
+
msgstr ""
|
preventer-index.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: WP Content Copy Protection & No Right Click
|
4 |
Plugin URI: http://wordpress.org/plugins/w-p-content-copy-protector/
|
5 |
Description: This wp plugin protect the posts content from being copied by any other web site author , you dont want your content to spread without your permission!!
|
6 |
-
Version:
|
7 |
Author: wp-buy
|
8 |
Text Domain: wp-content-copy-protector
|
9 |
Domain Path: /languages
|
@@ -39,6 +39,9 @@ function wccp_enqueue_scripts() {
|
|
39 |
wp_register_style('simpletabscss', $pluginsurl.'/css/simpletabs.css');
|
40 |
wp_enqueue_style('simpletabscss');
|
41 |
|
|
|
|
|
|
|
42 |
wp_register_style('font-awesome.min.css', 'https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');
|
43 |
wp_enqueue_style('font-awesome.min.css');
|
44 |
}
|
@@ -48,7 +51,6 @@ add_action('admin_enqueue_scripts', 'wccp_enqueue_scripts');
|
|
48 |
//------------------------------------------------------------------------
|
49 |
function wpcp_disable_Right_Click()
|
50 |
{
|
51 |
-
global $wccp_settings;
|
52 |
?>
|
53 |
<script id="wpcp_disable_Right_Click" type="text/javascript">
|
54 |
document.ondragstart = function() { return false;}
|
@@ -65,7 +67,7 @@ function wpcp_disable_selection()
|
|
65 |
global $wccp_settings;
|
66 |
?>
|
67 |
<script id="wpcp_disable_selection" type="text/javascript">
|
68 |
-
var image_save_msg='You
|
69 |
var no_menu_msg='Context Menu disabled!';
|
70 |
var smessage = "<?php echo $wccp_settings['smessage'];?>";
|
71 |
|
@@ -533,13 +535,17 @@ if(!current_user_can( 'manage_options' ) || (current_user_can( 'manage_options'
|
|
533 |
return $classes;
|
534 |
}
|
535 |
}
|
536 |
-
|
537 |
-
|
538 |
-
|
539 |
-
|
540 |
-
add_action('
|
541 |
-
|
542 |
-
|
|
|
|
|
|
|
|
|
543 |
//-------------------------------------------------------Function to read options from the database
|
544 |
function wccp_read_options()
|
545 |
{
|
@@ -548,8 +554,37 @@ function wccp_read_options()
|
|
548 |
else
|
549 |
$wccp_settings = wccp_default_options();
|
550 |
|
|
|
|
|
|
|
|
|
|
|
|
|
551 |
return $wccp_settings;
|
552 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
553 |
//-------------------------------------------------------Set default values to the array
|
554 |
function wccp_default_options(){
|
555 |
$pluginsurl = plugins_url( '', __FILE__ );
|
@@ -558,7 +593,7 @@ function wccp_default_options(){
|
|
558 |
'single_posts_protection' => 'Enabled', // prevent content copy, take 3 parameters, 1.content: to prevent content copy only 2.all 3.none
|
559 |
'home_page_protection' => 'Enabled', //
|
560 |
'page_protection' => 'Enabled', //
|
561 |
-
'
|
562 |
'right_click_protection_posts' => 'checked', //
|
563 |
'right_click_protection_homepage' => 'checked', //
|
564 |
'right_click_protection_pages' => 'checked', //
|
@@ -653,9 +688,9 @@ $path = plugin_basename( __FILE__ );
|
|
653 |
add_action("after_plugin_row_{$path}", "wpccp_after_plugin_row", 10, 3 );
|
654 |
//---------------------------------------------Add button with icon to the admin bar
|
655 |
global $wccp_settings;
|
656 |
-
if(array_key_exists('
|
657 |
{
|
658 |
-
if($wccp_settings['
|
659 |
{
|
660 |
add_action('admin_bar_menu', 'wccp_free_add_items', 40);
|
661 |
add_action('wp_enqueue_scripts', 'wccp_free_top_bar_enqueue_style');
|
3 |
Plugin Name: WP Content Copy Protection & No Right Click
|
4 |
Plugin URI: http://wordpress.org/plugins/w-p-content-copy-protector/
|
5 |
Description: This wp plugin protect the posts content from being copied by any other web site author , you dont want your content to spread without your permission!!
|
6 |
+
Version: 3.1
|
7 |
Author: wp-buy
|
8 |
Text Domain: wp-content-copy-protector
|
9 |
Domain Path: /languages
|
39 |
wp_register_style('simpletabscss', $pluginsurl.'/css/simpletabs.css');
|
40 |
wp_enqueue_style('simpletabscss');
|
41 |
|
42 |
+
wp_register_style('bootstrap-grid.min', $pluginsurl.'/start-page-assests/css/bootstrap-grid.min.css');
|
43 |
+
wp_enqueue_style('bootstrap-grid.min');
|
44 |
+
|
45 |
wp_register_style('font-awesome.min.css', 'https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');
|
46 |
wp_enqueue_style('font-awesome.min.css');
|
47 |
}
|
51 |
//------------------------------------------------------------------------
|
52 |
function wpcp_disable_Right_Click()
|
53 |
{
|
|
|
54 |
?>
|
55 |
<script id="wpcp_disable_Right_Click" type="text/javascript">
|
56 |
document.ondragstart = function() { return false;}
|
67 |
global $wccp_settings;
|
68 |
?>
|
69 |
<script id="wpcp_disable_selection" type="text/javascript">
|
70 |
+
var image_save_msg='You are not allowed to save images!';
|
71 |
var no_menu_msg='Context Menu disabled!';
|
72 |
var smessage = "<?php echo $wccp_settings['smessage'];?>";
|
73 |
|
535 |
return $classes;
|
536 |
}
|
537 |
}
|
538 |
+
|
539 |
+
//Don't serve actions for live editors & builders
|
540 |
+
global $pagenow;
|
541 |
+
if ($pagenow != 'post.php' && !isset($_GET["elementor-preview"]) && !isset($_GET["siteorigin_panels_live_editor"]) && !isset($_GET["preview_id"]) && !isset($_GET["fl_builder"]) && !isset($_GET["et_fb"])) {
|
542 |
+
add_action('wp_head','wccp_main_settings');
|
543 |
+
add_action('wp_head','right_click_premium_settings');
|
544 |
+
add_action('wp_head','wccp_css_settings');
|
545 |
+
add_action('wp_footer','alert_message');
|
546 |
+
add_filter('body_class','wccp_class_names');
|
547 |
+
//add_filter( 'the_content', 'wccp_find_image_urls');
|
548 |
+
}
|
549 |
//-------------------------------------------------------Function to read options from the database
|
550 |
function wccp_read_options()
|
551 |
{
|
554 |
else
|
555 |
$wccp_settings = wccp_default_options();
|
556 |
|
557 |
+
$wccp_settings = array_merge(wccp_default_options(), $wccp_settings);//Set default value for any unexisted key
|
558 |
+
if ((isset($_GET['page']) && $_GET['page'] != 'wccpoptionspro') || !isset($_GET['page']))
|
559 |
+
{
|
560 |
+
//We don't want this merge to work inside plugin admin panel
|
561 |
+
|
562 |
+
}
|
563 |
return $wccp_settings;
|
564 |
}
|
565 |
+
//---------------------------------------------------------------------
|
566 |
+
//To use debug console in PHP because its just allowed using JavaScript
|
567 |
+
//---------------------------------------------------------------------
|
568 |
+
function wccp_free_debug_to_console($data)
|
569 |
+
{
|
570 |
+
global $wccp_pro_settings;
|
571 |
+
|
572 |
+
if(array_key_exists("developer_mode", $wccp_pro_settings))
|
573 |
+
{
|
574 |
+
if($wccp_pro_settings['developer_mode'] == "Yes")
|
575 |
+
{
|
576 |
+
$output = $data;
|
577 |
+
if ( is_array( $output ))
|
578 |
+
{
|
579 |
+
foreach ( $output as $element )
|
580 |
+
if(isset($element))
|
581 |
+
{
|
582 |
+
//echo "<script>console.log('Debug Objects: " . $element . "' );</script>";
|
583 |
+
}
|
584 |
+
}
|
585 |
+
}
|
586 |
+
}
|
587 |
+
}
|
588 |
//-------------------------------------------------------Set default values to the array
|
589 |
function wccp_default_options(){
|
590 |
$pluginsurl = plugins_url( '', __FILE__ );
|
593 |
'single_posts_protection' => 'Enabled', // prevent content copy, take 3 parameters, 1.content: to prevent content copy only 2.all 3.none
|
594 |
'home_page_protection' => 'Enabled', //
|
595 |
'page_protection' => 'Enabled', //
|
596 |
+
'top_bar_icon_btn' => 'Visible', //
|
597 |
'right_click_protection_posts' => 'checked', //
|
598 |
'right_click_protection_homepage' => 'checked', //
|
599 |
'right_click_protection_pages' => 'checked', //
|
688 |
add_action("after_plugin_row_{$path}", "wpccp_after_plugin_row", 10, 3 );
|
689 |
//---------------------------------------------Add button with icon to the admin bar
|
690 |
global $wccp_settings;
|
691 |
+
if(array_key_exists('top_bar_icon_btn', $wccp_settings))
|
692 |
{
|
693 |
+
if($wccp_settings['top_bar_icon_btn'] == 'Visible')
|
694 |
{
|
695 |
add_action('admin_bar_menu', 'wccp_free_add_items', 40);
|
696 |
add_action('wp_enqueue_scripts', 'wccp_free_top_bar_enqueue_style');
|
readme.txt
CHANGED
@@ -65,6 +65,19 @@ your posts extremely simple without yelling at your readers</li>
|
|
65 |
</ul>
|
66 |
|
67 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
68 |
= 2.9 =
|
69 |
<ul>
|
70 |
<li>Important fix for content editable tags</li>
|
65 |
</ul>
|
66 |
|
67 |
== Changelog ==
|
68 |
+
= 3.1 =
|
69 |
+
<ul>
|
70 |
+
<li>Now compatible with (elemenator page builder) plugin</li>
|
71 |
+
<li>Now compatible with (siteorigin live editor page builder) plugin</li>
|
72 |
+
<li>Now compatible with (WordPress Page Builder – Beaver Builder) plugin</li>
|
73 |
+
<li>Now compatible with (Wordpress internal preview mode)</li>
|
74 |
+
<li>New control panel (restore defaults) button added</li>
|
75 |
+
<li>New control panel (preview alert message) button added</li>
|
76 |
+
<li>New name for the top bar icon to fix its default choice in the previous version</li>
|
77 |
+
<li>Translation file updated</li>
|
78 |
+
<li>Some fixes</li>
|
79 |
+
</ul>
|
80 |
+
|
81 |
= 2.9 =
|
82 |
<ul>
|
83 |
<li>Important fix for content editable tags</li>
|