Version Description
- Copy paste password to log in fields and any other text field is now possible
- Some script fixes
- Admin page Fix (mailing list join message will show your email before submit)
- Admin page Fix (Our other products list is ready to go)
Download this release
Release Info
Developer | wp-buy |
Plugin | WP Content Copy Protection & No Right Click |
Version | 2.3 |
Comparing to | |
See all releases |
Code changes from version 1.9 to 2.3
- admin-core.php +49 -8
- css/style-review.css +279 -0
- images/icon-128x128.png +0 -0
- images/other-products/1.gif +0 -0
- images/other-products/2.gif +0 -0
- images/other-products/3.gif +0 -0
- images/other-products/4.gif +0 -0
- languages/wp-content-copy-protector-ar.mo +0 -0
- languages/wp-content-copy-protector-ar.po +120 -87
- languages/wp-content-copy-protector.pot +188 -151
- notifications.php +159 -0
- preventer-index.php +22 -8
- readme.txt +21 -0
admin-core.php
CHANGED
@@ -6,6 +6,7 @@ if ( !current_user_can('edit_others_pages') ) { //protection for admin content
|
|
6 |
<?php
|
7 |
//define all variables the needed alot
|
8 |
include 'the_globals.php';
|
|
|
9 |
$post_action = '';
|
10 |
if(isset($_POST["action"])) $post_action = sanitize_text_field($_POST["action"]);
|
11 |
if($post_action == 'update')
|
@@ -80,7 +81,7 @@ if($post_action == 'update')
|
|
80 |
'right_click_protection_homepage' => $right_click_protection_homepage, //
|
81 |
'right_click_protection_pages' => $right_click_protection_pages, //
|
82 |
'home_css_protection' => $home_css_protection, // premium option
|
83 |
-
'posts_css_protection' =>
|
84 |
'pages_css_protection' => 'No', // premium option
|
85 |
'exclude_admin_from_protection' => 'No', // premium option
|
86 |
'img' => '', // premium option
|
@@ -159,9 +160,7 @@ div.simpleTabsContent{
|
|
159 |
min-height: 400px;
|
160 |
padding: 5px 15px 15px;
|
161 |
}
|
162 |
-
|
163 |
-
background: #FFFFFF;
|
164 |
-
}
|
165 |
.size-full {
|
166 |
height: auto;
|
167 |
max-width: 100%;
|
@@ -179,6 +178,7 @@ background: #FFFFFF;
|
|
179 |
<td style="padding-left: 77px;">
|
180 |
<h4>
|
181 |
<?php echo __("Begin your adventure to improve your WordPress website, Also you will win a ", 'wp-content-copy-protector') . ' <b style="color:red">' . __("discount codes" , 'wp-content-copy-protector') . '</b>'; ?>
|
|
|
182 |
<button type="button" class="btn btn-primary wpccp_subscribe_btn" onclick='wpccp_open_subscribe_page();'> <?php _e("Start it!", 'wp-content-copy-protector'); ?> </button>
|
183 |
</h4>
|
184 |
</td>
|
@@ -196,7 +196,8 @@ function wpccp_open_subscribe_page()
|
|
196 |
{
|
197 |
if(localStorage.getItem('wpccp_subscribed') !='wpccp_subsbc_user')
|
198 |
{
|
199 |
-
|
|
|
200 |
}
|
201 |
}
|
202 |
|
@@ -214,6 +215,7 @@ if(localStorage.getItem('wpccp_subscribed') =='wpccp_subsbc_user')
|
|
214 |
<li><a href="#"><?php _e('Premium RightClick Protection','wp-content-copy-protector'); ?></a></li>
|
215 |
<li><a href="#"><?php _e('Premium Protection by CSS','wp-content-copy-protector'); ?></a></li>
|
216 |
<li><a href="#"><?php _e('More with pro','wp-content-copy-protector'); ?></a></li>
|
|
|
217 |
</ul>
|
218 |
<div class="simpleTabsContent">
|
219 |
<table border="0" width="100%" cellspacing="0" cellpadding="0">
|
@@ -405,10 +407,23 @@ if(localStorage.getItem('wpccp_subscribed') =='wpccp_subsbc_user')
|
|
405 |
<tr>
|
406 |
<td width="221" height="77"><font face="Tahoma" size="2"><?php _e('<b>Posts</b> Protection by CSS','wp-content-copy-protector'); ?></font></td>
|
407 |
<td width="90" align="center">
|
408 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
409 |
</td>
|
410 |
<td>
|
411 |
-
<font face="Tahoma" size="2"><?php _e('Protect your single posts by CSS tricks','wp-content-copy-protector'); ?></font
|
412 |
</tr>
|
413 |
<tr>
|
414 |
<td width="221"><font face="Tahoma" size="2"><?php _e('<b>Pages</b> Protection by CSS','wp-content-copy-protector'); ?></font></td>
|
@@ -466,7 +481,33 @@ if(localStorage.getItem('wpccp_subscribed') =='wpccp_subsbc_user')
|
|
466 |
</ul>
|
467 |
<p><a href="https://www.wp-buy.com/wpccp-subscribe">Subscribe</a> to our mailing list to get flash discounts</p>
|
468 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
469 |
</div><!-- simple tabs div end -->
|
470 |
<p align="right"><input class="btn btn-success" type="submit" value=" <?php _e('Save Settings','wp-content-copy-protector'); ?> " name="B4" style="width: 193; height: 29;"> </p>
|
471 |
</form>
|
472 |
-
</div>
|
|
6 |
<?php
|
7 |
//define all variables the needed alot
|
8 |
include 'the_globals.php';
|
9 |
+
include 'notifications.php';
|
10 |
$post_action = '';
|
11 |
if(isset($_POST["action"])) $post_action = sanitize_text_field($_POST["action"]);
|
12 |
if($post_action == 'update')
|
81 |
'right_click_protection_homepage' => $right_click_protection_homepage, //
|
82 |
'right_click_protection_pages' => $right_click_protection_pages, //
|
83 |
'home_css_protection' => $home_css_protection, // premium option
|
84 |
+
'posts_css_protection' => $posts_css_protection, // premium option (unlocked and become free option)
|
85 |
'pages_css_protection' => 'No', // premium option
|
86 |
'exclude_admin_from_protection' => 'No', // premium option
|
87 |
'img' => '', // premium option
|
160 |
min-height: 400px;
|
161 |
padding: 5px 15px 15px;
|
162 |
}
|
163 |
+
|
|
|
|
|
164 |
.size-full {
|
165 |
height: auto;
|
166 |
max-width: 100%;
|
178 |
<td style="padding-left: 77px;">
|
179 |
<h4>
|
180 |
<?php echo __("Begin your adventure to improve your WordPress website, Also you will win a ", 'wp-content-copy-protector') . ' <b style="color:red">' . __("discount codes" , 'wp-content-copy-protector') . '</b>'; ?>
|
181 |
+
<input type="text" id="admin_email_wccp" name= "admin_email_wccp" value="<?php echo $admin_email_wccp; ?>" />
|
182 |
<button type="button" class="btn btn-primary wpccp_subscribe_btn" onclick='wpccp_open_subscribe_page();'> <?php _e("Start it!", 'wp-content-copy-protector'); ?> </button>
|
183 |
</h4>
|
184 |
</td>
|
196 |
{
|
197 |
if(localStorage.getItem('wpccp_subscribed') !='wpccp_subsbc_user')
|
198 |
{
|
199 |
+
var admin_email_wccp = document.getElementById('admin_email_wccp').value;
|
200 |
+
window.open('https://www.wp-buy.com/wpccp-subscribe/?email='+admin_email_wccp,'_blank');
|
201 |
}
|
202 |
}
|
203 |
|
215 |
<li><a href="#"><?php _e('Premium RightClick Protection','wp-content-copy-protector'); ?></a></li>
|
216 |
<li><a href="#"><?php _e('Premium Protection by CSS','wp-content-copy-protector'); ?></a></li>
|
217 |
<li><a href="#"><?php _e('More with pro','wp-content-copy-protector'); ?></a></li>
|
218 |
+
<li><a href="#"><?php _e('Other products','wp-content-copy-protector'); ?></a></li>
|
219 |
</ul>
|
220 |
<div class="simpleTabsContent">
|
221 |
<table border="0" width="100%" cellspacing="0" cellpadding="0">
|
407 |
<tr>
|
408 |
<td width="221" height="77"><font face="Tahoma" size="2"><?php _e('<b>Posts</b> Protection by CSS','wp-content-copy-protector'); ?></font></td>
|
409 |
<td width="90" align="center">
|
410 |
+
<select size="1" name="posts_css_protection">
|
411 |
+
<?php
|
412 |
+
if ($wccp_settings['posts_css_protection'] == 'Enabled')
|
413 |
+
{
|
414 |
+
echo '<option selected value="Enabled">'. __('Enabled','wp-content-copy-protector') .'</option>';
|
415 |
+
echo '<option value="Disabled">'. __('Disabled','wp-content-copy-protector') .'</option>';
|
416 |
+
}
|
417 |
+
else
|
418 |
+
{
|
419 |
+
echo '<option value="Enabled">'. __('Enabled','wp-content-copy-protector') .'</option>';
|
420 |
+
echo '<option selected value="Disabled">'. __('Disabled','wp-content-copy-protector') .'</option>';
|
421 |
+
}
|
422 |
+
?>
|
423 |
+
</select>
|
424 |
</td>
|
425 |
<td>
|
426 |
+
<font face="Tahoma" size="2"><?php _e('Protect your single posts by CSS tricks','wp-content-copy-protector'); ?></font> (Pro option - unlocked for free!!)</td>
|
427 |
</tr>
|
428 |
<tr>
|
429 |
<td width="221"><font face="Tahoma" size="2"><?php _e('<b>Pages</b> Protection by CSS','wp-content-copy-protector'); ?></font></td>
|
481 |
</ul>
|
482 |
<p><a href="https://www.wp-buy.com/wpccp-subscribe">Subscribe</a> to our mailing list to get flash discounts</p>
|
483 |
</div>
|
484 |
+
<div class="simpleTabsContent" id="a55">
|
485 |
+
<h4><?php _e('Other products:','wp-content-copy-protector'); ?></h4>
|
486 |
+
<div id="other-products">
|
487 |
+
<?php
|
488 |
+
$before_url = '';
|
489 |
+
if(is_multisite()) $before_url = "network/";
|
490 |
+
?>
|
491 |
+
<a href="<?php echo $before_url ?>plugin-install.php?s=wp-buy+codepressplugins++WP+Maintenance+Mode+Site+Under+Construction&tab=search&type=term">
|
492 |
+
<img class="size-full" border="1" src="<?php echo $pluginsurl ?>/images/other-products/1.gif" style="margin: 10px">
|
493 |
+
</a>
|
494 |
+
<a href="<?php echo $before_url ?>plugin-install.php?s=Post+List+Creator&tab=search&type=tag">
|
495 |
+
<img class="size-full" border="1" src="<?php echo $pluginsurl ?>/images/other-products/2.gif" style="margin: 10px">
|
496 |
+
</a>
|
497 |
+
<a href="<?php echo $before_url ?>plugin-install.php?s=wp-buy+Captchinoo&tab=search&type=term">
|
498 |
+
<img class="size-full" border="1" src="<?php echo $pluginsurl ?>/images/other-products/3.gif" style="margin: 10px">
|
499 |
+
</a>
|
500 |
+
<a href="<?php echo $before_url ?>plugin-install.php?s=wp-buy+Login+LockDown+–+Limit+Failed+Login+Attempts&tab=search&type=term">
|
501 |
+
<img class="size-full" border="1" src="<?php echo $pluginsurl ?>/images/other-products/4.gif" style="margin: 10px">
|
502 |
+
</a>
|
503 |
+
<style>
|
504 |
+
#other-products a,#other-products a:active,#other-products a:focus{
|
505 |
+
color: #fff;
|
506 |
+
}
|
507 |
+
</style>
|
508 |
+
</div>
|
509 |
</div><!-- simple tabs div end -->
|
510 |
<p align="right"><input class="btn btn-success" type="submit" value=" <?php _e('Save Settings','wp-content-copy-protector'); ?> " name="B4" style="width: 193; height: 29;"> </p>
|
511 |
</form>
|
512 |
+
</div>
|
513 |
+
|
css/style-review.css
ADDED
@@ -0,0 +1,279 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
.wccp_free_review-notice{
|
2 |
+
padding: 15px 15px 15px 0;
|
3 |
+
background-color: #fff;
|
4 |
+
border-radius: 3px;
|
5 |
+
margin: 20px 20px 0 0;
|
6 |
+
border-left: 4px solid rgb(67, 129, 228);
|
7 |
+
border-top: 1px solid #ccd0d4;
|
8 |
+
border-bottom: 1px solid #ccd0d4;
|
9 |
+
border-right: 1px solid #ccd0d4;
|
10 |
+
}
|
11 |
+
.wccp_free_review-notice:after{
|
12 |
+
content: '';
|
13 |
+
display: table;
|
14 |
+
clear: both;
|
15 |
+
}
|
16 |
+
.wccp_free_review-thumbnail{
|
17 |
+
width: 114px;
|
18 |
+
float: left;
|
19 |
+
line-height: 80px;
|
20 |
+
text-align: center;
|
21 |
+
border-right: 4px solid transparent;
|
22 |
+
}
|
23 |
+
.wccp_free_review-thumbnail img{
|
24 |
+
width: 68px;
|
25 |
+
vertical-align: middle;
|
26 |
+
}
|
27 |
+
.wccp_free_review-text{
|
28 |
+
overflow: hidden;
|
29 |
+
}
|
30 |
+
.wccp_free_review-text h3{
|
31 |
+
font-size: 24px;
|
32 |
+
margin: 0 0 5px;
|
33 |
+
font-weight: 400;
|
34 |
+
line-height: 1.3;
|
35 |
+
}
|
36 |
+
.wccp_free_review-text p{
|
37 |
+
font-size: 13px;
|
38 |
+
margin: 0 0 5px;
|
39 |
+
}
|
40 |
+
.wccp_free_review-ul{
|
41 |
+
margin: 0;
|
42 |
+
padding: 0;
|
43 |
+
}
|
44 |
+
.wccp_free_review-ul li{
|
45 |
+
display: inline-block;
|
46 |
+
margin-right: 15px;
|
47 |
+
}
|
48 |
+
.wccp_free_review-ul li a{
|
49 |
+
display: inline-block;
|
50 |
+
color: #10738B;
|
51 |
+
text-decoration: none;
|
52 |
+
padding-left: 26px;
|
53 |
+
position: relative;
|
54 |
+
}
|
55 |
+
.wccp_free_review-ul li a span{
|
56 |
+
position: absolute;
|
57 |
+
left: 0;
|
58 |
+
top: -2px;
|
59 |
+
}
|
60 |
+
.wccp_free_dasboard-pro-link{
|
61 |
+
color: #0cbb0c;
|
62 |
+
}
|
63 |
+
|
64 |
+
/* LoginPress Add-ons CSS @since 1.1.3 */
|
65 |
+
|
66 |
+
.wccp_free_alert-notice{
|
67 |
+
background: #fff;
|
68 |
+
margin: 20px 20px 0 0;
|
69 |
+
position: relative;
|
70 |
+
display: flex;
|
71 |
+
align-items: center;
|
72 |
+
clear: both;
|
73 |
+
}
|
74 |
+
.wccp_free_alert-notice>*{
|
75 |
+
-webkit-box-sizing: border-box;
|
76 |
+
box-sizing: border-box;
|
77 |
+
}
|
78 |
+
.wccp_free_alert-notice:after{
|
79 |
+
content: '';
|
80 |
+
display: table;
|
81 |
+
clear: both;
|
82 |
+
}
|
83 |
+
.wccp_free_alert-thumbnail{
|
84 |
+
width: 300px;
|
85 |
+
text-align: center;
|
86 |
+
position: relative;
|
87 |
+
}
|
88 |
+
.wccp_free_alert-thumbnail img{
|
89 |
+
width: 250px;
|
90 |
+
vertical-align: middle;
|
91 |
+
}
|
92 |
+
.wccp_free_alert-text{
|
93 |
+
padding: 16px 80px 16px 80px;
|
94 |
+
overflow: hidden;
|
95 |
+
background: #1a5fa4;
|
96 |
+
position: relative;
|
97 |
+
flex: 1;
|
98 |
+
}
|
99 |
+
.black_friday_notic .wccp_free_alert-text {
|
100 |
+
padding: 16px 10px 16px 80px;
|
101 |
+
}
|
102 |
+
.black_friday{
|
103 |
+
background: #000 !important;
|
104 |
+
text-align: center;
|
105 |
+
}
|
106 |
+
.black_friday:after{
|
107 |
+
display: none;
|
108 |
+
}
|
109 |
+
.black_friday_notic .wccp_free_alert-text {
|
110 |
+
display: flex;
|
111 |
+
align-items: center;
|
112 |
+
}
|
113 |
+
.black_friday_notic .wccp_free_alert-button-section {
|
114 |
+
width: 450px;
|
115 |
+
}
|
116 |
+
.wccp_free_addon-notice-link:focus{
|
117 |
+
outline: none;
|
118 |
+
box-shadow: none;
|
119 |
+
}
|
120 |
+
.wccp_free_alert-text:after{
|
121 |
+
width: 80px;
|
122 |
+
height: 100%;
|
123 |
+
background: #fff;
|
124 |
+
content: '';
|
125 |
+
position: absolute;
|
126 |
+
top: 0;
|
127 |
+
right: -40px;
|
128 |
+
transform: skewX(-20deg);
|
129 |
+
z-index: 1;
|
130 |
+
}
|
131 |
+
.wccp_free_alert-text:before{
|
132 |
+
width: 80px;
|
133 |
+
height: 100%;
|
134 |
+
background: #fff;
|
135 |
+
content: '';
|
136 |
+
position: absolute;
|
137 |
+
top: 0;
|
138 |
+
left: -40px;
|
139 |
+
transform: skewX(-20deg);
|
140 |
+
z-index: 1;
|
141 |
+
}
|
142 |
+
.wccp_free_alert-text h3{
|
143 |
+
font-size: 20px;
|
144 |
+
line-height: 24px;
|
145 |
+
margin: 0 0 10px;
|
146 |
+
color: #fff;
|
147 |
+
}
|
148 |
+
.wccp_free_alert-text p{
|
149 |
+
font-size: 16px;
|
150 |
+
margin: 0;
|
151 |
+
color: #fff;
|
152 |
+
}
|
153 |
+
.black_friday_sale_btn .wccp_free_alert-button {
|
154 |
+
display: inline-block;
|
155 |
+
padding: 24px 20px;
|
156 |
+
font-size: 38px;
|
157 |
+
background-color: #24afe9;
|
158 |
+
color: #000;
|
159 |
+
border-radius: 0px;
|
160 |
+
text-decoration: none;
|
161 |
+
font-weight: bold;
|
162 |
+
}
|
163 |
+
.wccp_free_alert-button-section{
|
164 |
+
width: 300px;
|
165 |
+
text-align: center;
|
166 |
+
position: relative;
|
167 |
+
}
|
168 |
+
.wccp_free_alert-button{
|
169 |
+
height: auto;
|
170 |
+
padding: 0;
|
171 |
+
color: #1a5fa4;
|
172 |
+
border: 0;
|
173 |
+
border-radius: 5px;
|
174 |
+
background: none;
|
175 |
+
font-size: 16px;
|
176 |
+
font-weight: bold;
|
177 |
+
text-decoration: underline;
|
178 |
+
cursor: pointer;
|
179 |
+
}
|
180 |
+
.wccp_free_alert-button:focus{
|
181 |
+
outline: none;
|
182 |
+
box-shadow: none;
|
183 |
+
}
|
184 |
+
.wp-core-ui .wccp_free_alert-notice.notice.is-dismissible{
|
185 |
+
padding: 0px;
|
186 |
+
border-left: 0px;
|
187 |
+
}
|
188 |
+
.wccp_free_alert-notice .notice-dismiss{
|
189 |
+
text-decoration: none;
|
190 |
+
z-index: 1;
|
191 |
+
}
|
192 |
+
.wccp_free_addon-notice-link{
|
193 |
+
display: flex;
|
194 |
+
align-items: center;
|
195 |
+
flex: 1;
|
196 |
+
text-decoration: none;
|
197 |
+
}
|
198 |
+
.wccp_free_notice-logo{
|
199 |
+
width: 72px;
|
200 |
+
text-align: center;
|
201 |
+
position: relative;
|
202 |
+
margin: 10px;
|
203 |
+
}
|
204 |
+
.wccp_free_notice-logo img{
|
205 |
+
width: 50px;
|
206 |
+
vertical-align: middle;
|
207 |
+
}
|
208 |
+
|
209 |
+
.wccp_free_notice-discription{
|
210 |
+
overflow: hidden;
|
211 |
+
width: calc(100% - 50px);
|
212 |
+
}
|
213 |
+
.wccp_free_notification.wccp_free_notice-success{
|
214 |
+
border:1px solid #6ab074;
|
215 |
+
background: #e6f0e8;
|
216 |
+
margin: 36px 20px 0 0;
|
217 |
+
display: -webkit-box;
|
218 |
+
display: -ms-flexbox;
|
219 |
+
display: flex;
|
220 |
+
-webkit-box-align: center;
|
221 |
+
-ms-flex-align: center;
|
222 |
+
align-items: center;
|
223 |
+
}
|
224 |
+
.wccp_free_notice-success .wccp_free_notice-discription p{
|
225 |
+
color: #21573a;
|
226 |
+
}
|
227 |
+
.wccp_free_notification.wccp_free_notice-success .wccp_free_notification-close:before{
|
228 |
+
color: #21573a;
|
229 |
+
}
|
230 |
+
@media screen and (max-width: 1300px) {
|
231 |
+
.wccp_free_alert-thumbnail{
|
232 |
+
width: 200px;
|
233 |
+
}
|
234 |
+
.wccp_free_alert-thumbnail img{
|
235 |
+
width: 170px;
|
236 |
+
}
|
237 |
+
.wccp_free_alert-button-section{
|
238 |
+
width: 200px;
|
239 |
+
}
|
240 |
+
}
|
241 |
+
@media screen and (max-width: 1100px) {
|
242 |
+
.wccp_free_alert-thumbnail{
|
243 |
+
display: none;
|
244 |
+
}
|
245 |
+
.wccp_free_alert-thumbnail img{
|
246 |
+
width: 150px;
|
247 |
+
}
|
248 |
+
.wccp_free_alert-text{
|
249 |
+
padding-left: 30px;
|
250 |
+
}
|
251 |
+
.wccp_free_alert-text:before,.wccp_free_alert-text:after{
|
252 |
+
display: none;
|
253 |
+
}
|
254 |
+
}
|
255 |
+
@media screen and (max-width: 782px) {
|
256 |
+
.wccp_free_alert-text{
|
257 |
+
padding-right: 40px;
|
258 |
+
padding-bottom: 50px;
|
259 |
+
}
|
260 |
+
.wccp_free_alert-button-section{
|
261 |
+
width: auto;
|
262 |
+
text-align: left;
|
263 |
+
}
|
264 |
+
.wccp_free_alert-button-section{
|
265 |
+
position: absolute;
|
266 |
+
bottom: 20px;
|
267 |
+
left: 33px;
|
268 |
+
}
|
269 |
+
.wccp_free_alert-button{
|
270 |
+
color: #fff;
|
271 |
+
}
|
272 |
+
.wccp_free_alert-notice .notice-dismiss:before{
|
273 |
+
color: #fff;
|
274 |
+
}
|
275 |
+
.black_friday_sale_btn .wccp_free_alert-button{
|
276 |
+
width: 310px;
|
277 |
+
text-align: center;
|
278 |
+
}
|
279 |
+
}
|
images/icon-128x128.png
ADDED
Binary file
|
images/other-products/1.gif
ADDED
Binary file
|
images/other-products/2.gif
ADDED
Binary file
|
images/other-products/3.gif
ADDED
Binary file
|
images/other-products/4.gif
ADDED
Binary file
|
languages/wp-content-copy-protector-ar.mo
CHANGED
Binary file
|
languages/wp-content-copy-protector-ar.po
CHANGED
@@ -2,9 +2,9 @@ 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:
|
8 |
"Language-Team: Arabic\n"
|
9 |
"Language: ar\n"
|
10 |
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100 >= 3 "
|
@@ -13,65 +13,62 @@ 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.3.
|
17 |
|
18 |
-
#: preventer-index.php:
|
19 |
msgid "WP Content Copy Protection"
|
20 |
msgstr "حماية المحتوى من النسخ واللصق"
|
21 |
|
22 |
-
#: admin-core.php:
|
23 |
msgid "WP Content Protection Plugin Group"
|
24 |
msgstr "المجموعة البريدية الخاصة بإضافة حماية المحتوى من النسخ"
|
25 |
|
26 |
-
#: admin-core.php:
|
27 |
-
msgid "
|
28 |
-
msgstr "
|
29 |
|
30 |
-
#: admin-core.php:
|
31 |
msgid ""
|
32 |
-
"to
|
33 |
-
"
|
34 |
-
msgstr ""
|
35 |
-
"لتحصل على أخر الأخبار المتعلقة بهذه الإضافة وكل التحديثات القادمة مع تلميحات "
|
36 |
-
"ومساعدات إضافية ورسائل مختصرة تحمل"
|
37 |
|
38 |
-
#: admin-core.php:
|
39 |
-
msgid "discount codes
|
40 |
msgstr "كوبونات خصم"
|
41 |
|
42 |
-
#: admin-core.php:
|
43 |
-
msgid "
|
44 |
-
msgstr "
|
45 |
|
46 |
-
#: admin-core.php:
|
47 |
-
msgid "Dismiss this notice"
|
48 |
-
msgstr "تجاهل هذا الصندوق"
|
49 |
-
|
50 |
-
#: admin-core.php:208
|
51 |
msgid "Main Settings"
|
52 |
msgstr "الإعدادت الأساسية"
|
53 |
|
54 |
-
#: admin-core.php:
|
55 |
msgid "Premium RightClick Protection"
|
56 |
msgstr "الحماية من النقر بالزر الأيمن"
|
57 |
|
58 |
-
#: admin-core.php:
|
59 |
msgid "Premium Protection by CSS"
|
60 |
msgstr "الحماية بواسطة CSS"
|
61 |
|
62 |
-
#: admin-core.php:
|
63 |
msgid "More with pro"
|
64 |
msgstr "المزيد مع النسخة المتقدمة"
|
65 |
|
66 |
-
#: admin-core.php:
|
|
|
|
|
|
|
|
|
67 |
msgid "Copy Protection using JavaScript"
|
68 |
msgstr "حماية المحتوى بواسطة قوة الجافا سكريبت"
|
69 |
|
70 |
-
#: admin-core.php:
|
71 |
msgid "Basic Layer"
|
72 |
msgstr "المستوى الأساسي"
|
73 |
|
74 |
-
#: admin-core.php:
|
75 |
msgid ""
|
76 |
"This is the basic protection layer that uses <u>JavaScript</u> to protect "
|
77 |
"the posts, home page content from being copied by any other web site author."
|
@@ -79,49 +76,51 @@ msgstr ""
|
|
79 |
"في هذه الطبقة من الحماية يتم استخدام الجافاسكريبت لحماية الموقع والمحتوى "
|
80 |
"والصفحة الرئيسية من النسخ بواسطة أي سارق محتوى آخر."
|
81 |
|
82 |
-
#: admin-core.php:
|
83 |
msgid "Posts protection by <u>JavaScript</u>"
|
84 |
msgstr "حماية البوستات بواسطة <u>الجافاسكريبت</u>"
|
85 |
|
86 |
-
#: admin-core.php:
|
87 |
-
#: admin-core.php:
|
|
|
88 |
msgid "Enabled"
|
89 |
msgstr "تمكين"
|
90 |
|
91 |
-
#: admin-core.php:
|
92 |
-
#: admin-core.php:
|
|
|
93 |
msgid "Disabled"
|
94 |
msgstr "تعطيل"
|
95 |
|
96 |
-
#: admin-core.php:
|
97 |
msgid "For single posts content"
|
98 |
msgstr "يتم تطبيقه على محتوى البوستات المنشورة"
|
99 |
|
100 |
-
#: admin-core.php:
|
101 |
msgid "Homepage protection by <u>JavaScript</u>"
|
102 |
msgstr "حماية الصفحة الرئيسية بواسطة <u>الجافاسكريبت</u>"
|
103 |
|
104 |
-
#: admin-core.php:
|
105 |
msgid "Don't copy any thing! even from my homepage"
|
106 |
msgstr "منع نسخ أي شيء حتى من الصفحة الرئيسية لموقعي"
|
107 |
|
108 |
-
#: admin-core.php:
|
109 |
msgid "Static page's protection"
|
110 |
msgstr "حماية الصفحات الثابتة"
|
111 |
|
112 |
-
#: admin-core.php:
|
113 |
msgid "Use Premium Settings tab to customize more options"
|
114 |
msgstr "ستجد خيارات إضافية في التبويبات العلوية"
|
115 |
|
116 |
-
#: admin-core.php:
|
117 |
msgid "Exclude <u>Admin</u> from protection"
|
118 |
msgstr "استثناء <u>مدير الموقع</u> من الحماية"
|
119 |
|
120 |
-
#: admin-core.php:
|
121 |
msgid "Premium"
|
122 |
msgstr "حصري"
|
123 |
|
124 |
-
#: admin-core.php:
|
125 |
msgid ""
|
126 |
"If <u>Yes</u>, The protection functions will be inactive for the admin when "
|
127 |
"he is logged in"
|
@@ -129,23 +128,23 @@ msgstr ""
|
|
129 |
"عند تحديد الخيار (نعم) سيتم تعطيل خيارات الحماية عندما يقوم مدير الموقع "
|
130 |
"بتسجيل الدخول لموقعه"
|
131 |
|
132 |
-
#: admin-core.php:
|
133 |
msgid "Selection disabled message"
|
134 |
msgstr "رسالة منع تحديد النصوص على الموقع"
|
135 |
|
136 |
-
#: admin-core.php:
|
137 |
msgid "Print preview message"
|
138 |
msgstr "رسالة التعطيل لصفحة (معاينة قبل الطباعة)"
|
139 |
|
140 |
-
#: admin-core.php:
|
141 |
msgid "Copy Protection on RightClick"
|
142 |
msgstr "حماية المحتوى عند النقر بزر الفأرة الأيمن"
|
143 |
|
144 |
-
#: admin-core.php:
|
145 |
msgid "Premium Layer 2"
|
146 |
msgstr "مستوى الحماية الثاني"
|
147 |
|
148 |
-
#: admin-core.php:
|
149 |
msgid ""
|
150 |
"In this protection layer your visitors will be able to <u>right click</u> on "
|
151 |
"a specific page elements only (such as Links as an example)"
|
@@ -153,40 +152,40 @@ msgstr ""
|
|
153 |
"في هذه الطبقة من الحماية فإن زوار موقعك سيكونوا قادرين على النقر بالزر "
|
154 |
"الأيمن للفأرة فوق بعض عناصر الصفحة (مثل الروابط وغيرها)"
|
155 |
|
156 |
-
#: admin-core.php:
|
157 |
msgid "Disable <u>RightClick</u> on"
|
158 |
msgstr "تعطيل النقر <u>بزر الفأرة الأيمن</u> على"
|
159 |
|
160 |
-
#: admin-core.php:
|
161 |
msgid "Posts"
|
162 |
msgstr "البوستات"
|
163 |
|
164 |
-
#: admin-core.php:
|
165 |
msgid "HomePage"
|
166 |
msgstr "الصفحة الرئيسية"
|
167 |
|
168 |
-
#: admin-core.php:
|
169 |
msgid "Static pages"
|
170 |
msgstr "الصفحات الثابتة"
|
171 |
|
172 |
-
#: admin-core.php:
|
173 |
msgid "Remaining premium options preview image "
|
174 |
msgstr ""
|
175 |
"عندما تشتري النسخة المتقدمة ستحصل على مميزات أخرى كما في الصورة التالية"
|
176 |
|
177 |
-
#: admin-core.php:
|
178 |
msgid "Preview & Pricing"
|
179 |
msgstr "استعراض المميزات والأسعار"
|
180 |
|
181 |
-
#: admin-core.php:
|
182 |
msgid "Protection by CSS Techniques"
|
183 |
msgstr "الحماية بواسطة تقنيات الستايل CSS"
|
184 |
|
185 |
-
#: admin-core.php:
|
186 |
msgid "Premium Layer 3"
|
187 |
msgstr "مستوى الحماية المميز 3"
|
188 |
|
189 |
-
#: admin-core.php:
|
190 |
msgid ""
|
191 |
"In this protection layer your website will be protected by some <u>CSS</u> "
|
192 |
"tricks that will word even if <u>JavaScript</u> is disabled from the browser "
|
@@ -196,35 +195,35 @@ msgstr ""
|
|
196 |
"الخاصة بلغة <u>CSS</u> الصديقة للمتصفحات وذلك في حال قام المستخدم بتعطيل "
|
197 |
"خاصية الجافا سكريبت من خيارات المتصفح"
|
198 |
|
199 |
-
#: admin-core.php:
|
200 |
msgid "<b>Home Page</b> Protection by CSS"
|
201 |
msgstr "حماية الصفحة الرئيسية بواسطة ملفات الستايل CSS"
|
202 |
|
203 |
-
#: admin-core.php:
|
204 |
msgid "Protect your Homepage by CSS tricks"
|
205 |
msgstr "إحمي الصفحة الرئيسية بواسطة تقنيات الستايل CSS"
|
206 |
|
207 |
-
#: admin-core.php:
|
208 |
msgid "<b>Posts</b> Protection by CSS"
|
209 |
msgstr "حماية البوستات بواسطة ملفات الستايل CSS"
|
210 |
|
211 |
-
#: admin-core.php:
|
212 |
msgid "Protect your single posts by CSS tricks"
|
213 |
msgstr "إحمي البوستات بواسطة تقنيات الستايل CSS"
|
214 |
|
215 |
-
#: admin-core.php:
|
216 |
msgid "<b>Pages</b> Protection by CSS"
|
217 |
msgstr "حماية الصفحات الثابتة بواسطة ملفات الستايل CSS"
|
218 |
|
219 |
-
#: admin-core.php:
|
220 |
msgid "Protect your static pages by CSS tricks"
|
221 |
msgstr "إحمي الصفحات الثابتة بواسطة تقنيات الستايل CSS"
|
222 |
|
223 |
-
#: admin-core.php:
|
224 |
msgid "Basic features:"
|
225 |
msgstr "المميزات الأساسية:"
|
226 |
|
227 |
-
#: admin-core.php:
|
228 |
msgid ""
|
229 |
"Protect your content from selection and copy. this plugin makes protecting "
|
230 |
"your posts extremely simple without yelling at your readers"
|
@@ -232,43 +231,43 @@ msgstr ""
|
|
232 |
"احمي موقعك ومحتواك من السرقة والنسخ واللصق, هذه الإضافة ستحمي موقعك بدون أن "
|
233 |
"يشعر المستخدم العادي بالضجر أو الإزعاج"
|
234 |
|
235 |
-
#: admin-core.php:
|
236 |
msgid "No one can save images from your site."
|
237 |
msgstr "لا أحد سيتمكن من حفظ الصور عن صفحات موقعك"
|
238 |
|
239 |
-
#: admin-core.php:
|
240 |
msgid "No right click or context menu."
|
241 |
msgstr "لا أحد سينقر بزر الفأرة الأيمن على الصفحات والصور"
|
242 |
|
243 |
-
#: admin-core.php:
|
244 |
msgid "Show alert message, Image Ad or HTML Ad on save images or right click."
|
245 |
msgstr "ضع رسالة مميزة أو إعلان للبيع عند النقر فوق الصور الخاصة بك"
|
246 |
|
247 |
-
#: admin-core.php:
|
248 |
msgid "Disable the following keys"
|
249 |
msgstr "تعطيل مفاتيح الاختصارات التالية"
|
250 |
|
251 |
-
#: admin-core.php:
|
252 |
msgid "Advanced and easy to use control panel."
|
253 |
msgstr "لوحة تحكم سهلة وبسيطة وتحتوي خيارات متعددة"
|
254 |
|
255 |
-
#: admin-core.php:
|
256 |
msgid "No one can right click images on your site if you want"
|
257 |
msgstr "إذا رغبت, فلن يتمكن أحد من النقر على صورك بزر الفأرة الأيمن"
|
258 |
|
259 |
-
#: admin-core.php:
|
260 |
msgid "Premium features:"
|
261 |
msgstr "مميزات متقدمة:"
|
262 |
|
263 |
-
#: admin-core.php:
|
264 |
msgid "Get full Control on Right click or context menu"
|
265 |
msgstr "تحكم كامل بخصائص النقر على صفحات موقعك"
|
266 |
|
267 |
-
#: admin-core.php:
|
268 |
msgid "Full watermarking"
|
269 |
msgstr "ميز صورك بعلامة مائية (أنت تختارها) مطبوعة فوق كل صورة"
|
270 |
|
271 |
-
#: admin-core.php:
|
272 |
msgid ""
|
273 |
"Show alert messages, when user made right click on images, text boxes, links,"
|
274 |
" plain text.. etc"
|
@@ -276,17 +275,17 @@ msgstr ""
|
|
276 |
"إظهار رسائل تحذيرية بمدة محددة بالثواني عندما يقوم المستخدم بمحاولة سرقة "
|
277 |
"المحتوى او الصور أو النصوص ..الخ"
|
278 |
|
279 |
-
#: admin-core.php:
|
280 |
msgid "Admin can exclude Home page Or Single posts from being copy protected "
|
281 |
msgstr "يستطيع الأدمن استثناء أي صفحة او بوست من خاصية الحماية"
|
282 |
|
283 |
-
#: admin-core.php:
|
284 |
msgid "Admin can disable copy protection for admin users."
|
285 |
msgstr ""
|
286 |
"يمكنك إلغاء الحماية لمدراء الموقع بحيث ليتمكن الأدمن من إدارة المحتوى المحمي "
|
287 |
"بسهولة"
|
288 |
|
289 |
-
#: admin-core.php:
|
290 |
msgid ""
|
291 |
"3 protection layers (JavaScript protection, RightClick protection, CSS "
|
292 |
"protection)"
|
@@ -294,43 +293,77 @@ msgstr ""
|
|
294 |
"3 مستويات من الحماية (حماية بالجافاسكريبت , حماية من النقر بزر الفأرة الأيمن "
|
295 |
", حماية بواسطة ملفات الستايل)"
|
296 |
|
297 |
-
#: admin-core.php:
|
298 |
msgid ""
|
299 |
"Aggressive image protection (its near impossible for expert users to steal "
|
300 |
"your images !!)"
|
301 |
msgstr "حماية قوية جدا للصور (تقريبا يستحيل على الشخص العادي سرقة صورك) !!"
|
302 |
|
303 |
-
#: admin-core.php:
|
304 |
msgid "Compatible with all major theme frameworks"
|
305 |
msgstr "متوافق مع أغلب الثيمات المعروفة والعالمية"
|
306 |
|
307 |
-
#: admin-core.php:
|
308 |
msgid "Compatible with all major browsers"
|
309 |
msgstr "متوافق مع أغلب المتصفحات الشهيرة"
|
310 |
|
311 |
-
#: admin-core.php:
|
312 |
msgid "Tested in IE9, IE10, Firefox, Google Chrome, Opera"
|
313 |
msgstr ""
|
314 |
"متوافق مع المتصفحات العالمية المشهورة مثل فايرفوكس وجوجل كروم وأوبرا وسفاري "
|
315 |
"وحتى متصفحات أغلب الهواتف الذكية"
|
316 |
|
317 |
-
#: admin-core.php:
|
318 |
msgid "Disables image drag and drop function"
|
319 |
msgstr "تعطيل خاصية السحب والإفلات للصور على المتصفح"
|
320 |
|
321 |
-
#: admin-core.php:
|
322 |
msgid "Works on smart phones."
|
323 |
msgstr "يعمل بكفاءة على الهواتف الذكية"
|
324 |
|
325 |
-
#: admin-core.php:
|
326 |
msgid "Ability to set varying levels of protection per page or post."
|
327 |
msgstr ""
|
328 |
"القدرة على تحديد مستوىات الحماية للصفحات او البوستات أو الرئيسية بشكل منفصل"
|
329 |
|
330 |
-
#: admin-core.php:
|
|
|
|
|
|
|
|
|
331 |
msgid "Save Settings"
|
332 |
msgstr "حفظ التغييرات"
|
333 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
334 |
#. Name of the plugin
|
335 |
msgid "WP Content Copy Protection & No Right Click"
|
336 |
msgstr "إضافة حماية المحتوى من النسخ ومنع النقرات بزر الفأرة الأيمن"
|
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-04-21 19:12+0000\n"
|
6 |
+
"PO-Revision-Date: 2020-04-21 19:17+0000\n"
|
7 |
+
"Last-Translator: \n"
|
8 |
"Language-Team: Arabic\n"
|
9 |
"Language: ar\n"
|
10 |
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100 >= 3 "
|
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.3; wp-5.3.2"
|
17 |
|
18 |
+
#: preventer-index.php:562
|
19 |
msgid "WP Content Copy Protection"
|
20 |
msgstr "حماية المحتوى من النسخ واللصق"
|
21 |
|
22 |
+
#: admin-core.php:173
|
23 |
msgid "WP Content Protection Plugin Group"
|
24 |
msgstr "المجموعة البريدية الخاصة بإضافة حماية المحتوى من النسخ"
|
25 |
|
26 |
+
#: admin-core.php:175
|
27 |
+
msgid "Dismiss"
|
28 |
+
msgstr "تجاهل"
|
29 |
|
30 |
+
#: admin-core.php:180
|
31 |
msgid ""
|
32 |
+
"Begin your adventure to improve your WordPress website, Also you will win a "
|
33 |
+
msgstr "إبدا المغامرة واشترك معنا في القائمة البريدية ليصلك كل جديد!"
|
|
|
|
|
|
|
34 |
|
35 |
+
#: admin-core.php:180
|
36 |
+
msgid "discount codes"
|
37 |
msgstr "كوبونات خصم"
|
38 |
|
39 |
+
#: admin-core.php:181
|
40 |
+
msgid "Start it!"
|
41 |
+
msgstr "إشترك الآن"
|
42 |
|
43 |
+
#: admin-core.php:212
|
|
|
|
|
|
|
|
|
44 |
msgid "Main Settings"
|
45 |
msgstr "الإعدادت الأساسية"
|
46 |
|
47 |
+
#: admin-core.php:213
|
48 |
msgid "Premium RightClick Protection"
|
49 |
msgstr "الحماية من النقر بالزر الأيمن"
|
50 |
|
51 |
+
#: admin-core.php:214
|
52 |
msgid "Premium Protection by CSS"
|
53 |
msgstr "الحماية بواسطة CSS"
|
54 |
|
55 |
+
#: admin-core.php:215
|
56 |
msgid "More with pro"
|
57 |
msgstr "المزيد مع النسخة المتقدمة"
|
58 |
|
59 |
+
#: admin-core.php:216
|
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:222
|
68 |
msgid "Basic Layer"
|
69 |
msgstr "المستوى الأساسي"
|
70 |
|
71 |
+
#: admin-core.php:223
|
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 |
"في هذه الطبقة من الحماية يتم استخدام الجافاسكريبت لحماية الموقع والمحتوى "
|
77 |
"والصفحة الرئيسية من النسخ بواسطة أي سارق محتوى آخر."
|
78 |
|
79 |
+
#: admin-core.php:230
|
80 |
msgid "Posts protection by <u>JavaScript</u>"
|
81 |
msgstr "حماية البوستات بواسطة <u>الجافاسكريبت</u>"
|
82 |
|
83 |
+
#: admin-core.php:236 admin-core.php:241 admin-core.php:257 admin-core.php:262
|
84 |
+
#: admin-core.php:278 admin-core.php:284 admin-core.php:391 admin-core.php:396
|
85 |
+
#: admin-core.php:412 admin-core.php:417
|
86 |
msgid "Enabled"
|
87 |
msgstr "تمكين"
|
88 |
|
89 |
+
#: admin-core.php:237 admin-core.php:242 admin-core.php:258 admin-core.php:263
|
90 |
+
#: admin-core.php:279 admin-core.php:283 admin-core.php:392 admin-core.php:397
|
91 |
+
#: admin-core.php:413 admin-core.php:418
|
92 |
msgid "Disabled"
|
93 |
msgstr "تعطيل"
|
94 |
|
95 |
+
#: admin-core.php:248
|
96 |
msgid "For single posts content"
|
97 |
msgstr "يتم تطبيقه على محتوى البوستات المنشورة"
|
98 |
|
99 |
+
#: admin-core.php:251
|
100 |
msgid "Homepage protection by <u>JavaScript</u>"
|
101 |
msgstr "حماية الصفحة الرئيسية بواسطة <u>الجافاسكريبت</u>"
|
102 |
|
103 |
+
#: admin-core.php:269
|
104 |
msgid "Don't copy any thing! even from my homepage"
|
105 |
msgstr "منع نسخ أي شيء حتى من الصفحة الرئيسية لموقعي"
|
106 |
|
107 |
+
#: admin-core.php:272
|
108 |
msgid "Static page's protection"
|
109 |
msgstr "حماية الصفحات الثابتة"
|
110 |
|
111 |
+
#: admin-core.php:289
|
112 |
msgid "Use Premium Settings tab to customize more options"
|
113 |
msgstr "ستجد خيارات إضافية في التبويبات العلوية"
|
114 |
|
115 |
+
#: admin-core.php:292
|
116 |
msgid "Exclude <u>Admin</u> from protection"
|
117 |
msgstr "استثناء <u>مدير الموقع</u> من الحماية"
|
118 |
|
119 |
+
#: admin-core.php:294 admin-core.php:429
|
120 |
msgid "Premium"
|
121 |
msgstr "حصري"
|
122 |
|
123 |
+
#: admin-core.php:296
|
124 |
msgid ""
|
125 |
"If <u>Yes</u>, The protection functions will be inactive for the admin when "
|
126 |
"he is logged in"
|
128 |
"عند تحديد الخيار (نعم) سيتم تعطيل خيارات الحماية عندما يقوم مدير الموقع "
|
129 |
"بتسجيل الدخول لموقعه"
|
130 |
|
131 |
+
#: admin-core.php:299
|
132 |
msgid "Selection disabled message"
|
133 |
msgstr "رسالة منع تحديد النصوص على الموقع"
|
134 |
|
135 |
+
#: admin-core.php:310
|
136 |
msgid "Print preview message"
|
137 |
msgstr "رسالة التعطيل لصفحة (معاينة قبل الطباعة)"
|
138 |
|
139 |
+
#: admin-core.php:328
|
140 |
msgid "Copy Protection on RightClick"
|
141 |
msgstr "حماية المحتوى عند النقر بزر الفأرة الأيمن"
|
142 |
|
143 |
+
#: admin-core.php:328
|
144 |
msgid "Premium Layer 2"
|
145 |
msgstr "مستوى الحماية الثاني"
|
146 |
|
147 |
+
#: admin-core.php:329
|
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 |
"في هذه الطبقة من الحماية فإن زوار موقعك سيكونوا قادرين على النقر بالزر "
|
153 |
"الأيمن للفأرة فوق بعض عناصر الصفحة (مثل الروابط وغيرها)"
|
154 |
|
155 |
+
#: admin-core.php:333
|
156 |
msgid "Disable <u>RightClick</u> on"
|
157 |
msgstr "تعطيل النقر <u>بزر الفأرة الأيمن</u> على"
|
158 |
|
159 |
+
#: admin-core.php:340
|
160 |
msgid "Posts"
|
161 |
msgstr "البوستات"
|
162 |
|
163 |
+
#: admin-core.php:346
|
164 |
msgid "HomePage"
|
165 |
msgstr "الصفحة الرئيسية"
|
166 |
|
167 |
+
#: admin-core.php:352
|
168 |
msgid "Static pages"
|
169 |
msgstr "الصفحات الثابتة"
|
170 |
|
171 |
+
#: admin-core.php:361
|
172 |
msgid "Remaining premium options preview image "
|
173 |
msgstr ""
|
174 |
"عندما تشتري النسخة المتقدمة ستحصل على مميزات أخرى كما في الصورة التالية"
|
175 |
|
176 |
+
#: admin-core.php:365
|
177 |
msgid "Preview & Pricing"
|
178 |
msgstr "استعراض المميزات والأسعار"
|
179 |
|
180 |
+
#: admin-core.php:377
|
181 |
msgid "Protection by CSS Techniques"
|
182 |
msgstr "الحماية بواسطة تقنيات الستايل CSS"
|
183 |
|
184 |
+
#: admin-core.php:377
|
185 |
msgid "Premium Layer 3"
|
186 |
msgstr "مستوى الحماية المميز 3"
|
187 |
|
188 |
+
#: admin-core.php:378
|
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 |
"الخاصة بلغة <u>CSS</u> الصديقة للمتصفحات وذلك في حال قام المستخدم بتعطيل "
|
196 |
"خاصية الجافا سكريبت من خيارات المتصفح"
|
197 |
|
198 |
+
#: admin-core.php:385
|
199 |
msgid "<b>Home Page</b> Protection by CSS"
|
200 |
msgstr "حماية الصفحة الرئيسية بواسطة ملفات الستايل CSS"
|
201 |
|
202 |
+
#: admin-core.php:403
|
203 |
msgid "Protect your Homepage by CSS tricks"
|
204 |
msgstr "إحمي الصفحة الرئيسية بواسطة تقنيات الستايل CSS"
|
205 |
|
206 |
+
#: admin-core.php:406
|
207 |
msgid "<b>Posts</b> Protection by CSS"
|
208 |
msgstr "حماية البوستات بواسطة ملفات الستايل CSS"
|
209 |
|
210 |
+
#: admin-core.php:424
|
211 |
msgid "Protect your single posts by CSS tricks"
|
212 |
msgstr "إحمي البوستات بواسطة تقنيات الستايل CSS"
|
213 |
|
214 |
+
#: admin-core.php:427
|
215 |
msgid "<b>Pages</b> Protection by CSS"
|
216 |
msgstr "حماية الصفحات الثابتة بواسطة ملفات الستايل CSS"
|
217 |
|
218 |
+
#: admin-core.php:431
|
219 |
msgid "Protect your static pages by CSS tricks"
|
220 |
msgstr "إحمي الصفحات الثابتة بواسطة تقنيات الستايل CSS"
|
221 |
|
222 |
+
#: admin-core.php:453
|
223 |
msgid "Basic features:"
|
224 |
msgstr "المميزات الأساسية:"
|
225 |
|
226 |
+
#: admin-core.php:455
|
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 |
"احمي موقعك ومحتواك من السرقة والنسخ واللصق, هذه الإضافة ستحمي موقعك بدون أن "
|
232 |
"يشعر المستخدم العادي بالضجر أو الإزعاج"
|
233 |
|
234 |
+
#: admin-core.php:456
|
235 |
msgid "No one can save images from your site."
|
236 |
msgstr "لا أحد سيتمكن من حفظ الصور عن صفحات موقعك"
|
237 |
|
238 |
+
#: admin-core.php:457
|
239 |
msgid "No right click or context menu."
|
240 |
msgstr "لا أحد سينقر بزر الفأرة الأيمن على الصفحات والصور"
|
241 |
|
242 |
+
#: admin-core.php:458
|
243 |
msgid "Show alert message, Image Ad or HTML Ad on save images or right click."
|
244 |
msgstr "ضع رسالة مميزة أو إعلان للبيع عند النقر فوق الصور الخاصة بك"
|
245 |
|
246 |
+
#: admin-core.php:459
|
247 |
msgid "Disable the following keys"
|
248 |
msgstr "تعطيل مفاتيح الاختصارات التالية"
|
249 |
|
250 |
+
#: admin-core.php:460
|
251 |
msgid "Advanced and easy to use control panel."
|
252 |
msgstr "لوحة تحكم سهلة وبسيطة وتحتوي خيارات متعددة"
|
253 |
|
254 |
+
#: admin-core.php:461
|
255 |
msgid "No one can right click images on your site if you want"
|
256 |
msgstr "إذا رغبت, فلن يتمكن أحد من النقر على صورك بزر الفأرة الأيمن"
|
257 |
|
258 |
+
#: admin-core.php:464
|
259 |
msgid "Premium features:"
|
260 |
msgstr "مميزات متقدمة:"
|
261 |
|
262 |
+
#: admin-core.php:466
|
263 |
msgid "Get full Control on Right click or context menu"
|
264 |
msgstr "تحكم كامل بخصائص النقر على صفحات موقعك"
|
265 |
|
266 |
+
#: admin-core.php:467
|
267 |
msgid "Full watermarking"
|
268 |
msgstr "ميز صورك بعلامة مائية (أنت تختارها) مطبوعة فوق كل صورة"
|
269 |
|
270 |
+
#: admin-core.php:468
|
271 |
msgid ""
|
272 |
"Show alert messages, when user made right click on images, text boxes, links,"
|
273 |
" plain text.. etc"
|
275 |
"إظهار رسائل تحذيرية بمدة محددة بالثواني عندما يقوم المستخدم بمحاولة سرقة "
|
276 |
"المحتوى او الصور أو النصوص ..الخ"
|
277 |
|
278 |
+
#: admin-core.php:469
|
279 |
msgid "Admin can exclude Home page Or Single posts from being copy protected "
|
280 |
msgstr "يستطيع الأدمن استثناء أي صفحة او بوست من خاصية الحماية"
|
281 |
|
282 |
+
#: admin-core.php:470
|
283 |
msgid "Admin can disable copy protection for admin users."
|
284 |
msgstr ""
|
285 |
"يمكنك إلغاء الحماية لمدراء الموقع بحيث ليتمكن الأدمن من إدارة المحتوى المحمي "
|
286 |
"بسهولة"
|
287 |
|
288 |
+
#: admin-core.php:471
|
289 |
msgid ""
|
290 |
"3 protection layers (JavaScript protection, RightClick protection, CSS "
|
291 |
"protection)"
|
293 |
"3 مستويات من الحماية (حماية بالجافاسكريبت , حماية من النقر بزر الفأرة الأيمن "
|
294 |
", حماية بواسطة ملفات الستايل)"
|
295 |
|
296 |
+
#: admin-core.php:472
|
297 |
msgid ""
|
298 |
"Aggressive image protection (its near impossible for expert users to steal "
|
299 |
"your images !!)"
|
300 |
msgstr "حماية قوية جدا للصور (تقريبا يستحيل على الشخص العادي سرقة صورك) !!"
|
301 |
|
302 |
+
#: admin-core.php:473
|
303 |
msgid "Compatible with all major theme frameworks"
|
304 |
msgstr "متوافق مع أغلب الثيمات المعروفة والعالمية"
|
305 |
|
306 |
+
#: admin-core.php:474
|
307 |
msgid "Compatible with all major browsers"
|
308 |
msgstr "متوافق مع أغلب المتصفحات الشهيرة"
|
309 |
|
310 |
+
#: admin-core.php:475
|
311 |
msgid "Tested in IE9, IE10, Firefox, Google Chrome, Opera"
|
312 |
msgstr ""
|
313 |
"متوافق مع المتصفحات العالمية المشهورة مثل فايرفوكس وجوجل كروم وأوبرا وسفاري "
|
314 |
"وحتى متصفحات أغلب الهواتف الذكية"
|
315 |
|
316 |
+
#: admin-core.php:476
|
317 |
msgid "Disables image drag and drop function"
|
318 |
msgstr "تعطيل خاصية السحب والإفلات للصور على المتصفح"
|
319 |
|
320 |
+
#: admin-core.php:477
|
321 |
msgid "Works on smart phones."
|
322 |
msgstr "يعمل بكفاءة على الهواتف الذكية"
|
323 |
|
324 |
+
#: admin-core.php:478
|
325 |
msgid "Ability to set varying levels of protection per page or post."
|
326 |
msgstr ""
|
327 |
"القدرة على تحديد مستوىات الحماية للصفحات او البوستات أو الرئيسية بشكل منفصل"
|
328 |
|
329 |
+
#: admin-core.php:483
|
330 |
+
msgid "Other products:"
|
331 |
+
msgstr "بلجنات اخرى ننصح بها:"
|
332 |
+
|
333 |
+
#: admin-core.php:505
|
334 |
msgid "Save Settings"
|
335 |
msgstr "حفظ التغييرات"
|
336 |
|
337 |
+
#: notifications.php:141
|
338 |
+
msgid "Leave A Review?"
|
339 |
+
msgstr "أترك تقييم"
|
340 |
+
|
341 |
+
#: notifications.php:142
|
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 "
|
345 |
+
"\"thank you\" will make us happy!"
|
346 |
+
msgstr ""
|
347 |
+
"نتمنى أنك كنت مسرورا باستخدامك لبلجن الحماية من النسخ الخاص بنا, لم لا تترك "
|
348 |
+
"تقييم 5 نجوم تنصح به باقي مجتمع ووردبرس بتحميل هذا المنتج؟ دقيقتين فقط من "
|
349 |
+
"وقتك ولك جزيل الشكر"
|
350 |
+
|
351 |
+
#: notifications.php:144
|
352 |
+
msgid "Sure! I'd love to!"
|
353 |
+
msgstr "نعم أود ذلك, بكل سرور!!"
|
354 |
+
|
355 |
+
#: notifications.php:145
|
356 |
+
msgid "I've already left a review"
|
357 |
+
msgstr "لقد فعلت!"
|
358 |
+
|
359 |
+
#: notifications.php:146
|
360 |
+
msgid "Will Rate Later"
|
361 |
+
msgstr "ربما لاحقاً"
|
362 |
+
|
363 |
+
#: notifications.php:147
|
364 |
+
msgid "Hide Forever"
|
365 |
+
msgstr "عدم الإظهار مطلقاً"
|
366 |
+
|
367 |
#. Name of the plugin
|
368 |
msgid "WP Content Copy Protection & No Right Click"
|
369 |
msgstr "إضافة حماية المحتوى من النسخ ومنع النقرات بزر الفأرة الأيمن"
|
languages/wp-content-copy-protector.pot
CHANGED
@@ -3,7 +3,7 @@ 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"
|
@@ -15,151 +15,167 @@ msgstr ""
|
|
15 |
"X-Generator: Loco https://localise.biz/\n"
|
16 |
"X-Loco-Version: 2.3.1; wp-5.3.2"
|
17 |
|
18 |
-
#:
|
19 |
-
msgid ""
|
20 |
-
"3 protection layers (JavaScript protection, RightClick protection, CSS "
|
21 |
-
"protection)"
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: admin-core.php:
|
25 |
-
msgid "
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: admin-core.php:
|
29 |
-
msgid "
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: admin-core.php:
|
33 |
-
msgid "
|
|
|
34 |
msgstr ""
|
35 |
|
36 |
-
#: admin-core.php:
|
37 |
-
msgid "
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: admin-core.php:
|
41 |
-
msgid "
|
42 |
msgstr ""
|
43 |
|
44 |
-
#: admin-core.php:
|
45 |
-
msgid "
|
46 |
msgstr ""
|
47 |
|
48 |
-
#: admin-core.php:
|
49 |
-
msgid "
|
50 |
msgstr ""
|
51 |
|
52 |
-
#: admin-core.php:
|
53 |
-
msgid ""
|
54 |
-
"Aggressive image protection (its near impossible for expert users to steal "
|
55 |
-
"your images !!)"
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: admin-core.php:
|
59 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
60 |
msgstr ""
|
61 |
|
62 |
#: admin-core.php:222
|
63 |
msgid "Basic Layer"
|
64 |
msgstr ""
|
65 |
|
66 |
-
#: admin-core.php:
|
67 |
msgid ""
|
68 |
-
"
|
|
|
69 |
msgstr ""
|
70 |
|
71 |
-
#: admin-core.php:
|
72 |
-
msgid "
|
73 |
msgstr ""
|
74 |
|
75 |
-
#: admin-core.php:
|
76 |
-
|
|
|
|
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: admin-core.php:
|
80 |
-
|
|
|
|
|
81 |
msgstr ""
|
82 |
|
83 |
-
#: admin-core.php:
|
84 |
-
msgid "
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: admin-core.php:
|
88 |
-
msgid "
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: admin-core.php:
|
92 |
-
msgid "
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: admin-core.php:
|
96 |
-
|
97 |
-
msgid "Disabled"
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: admin-core.php:
|
101 |
-
msgid "
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: admin-core.php:
|
105 |
-
msgid "
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: admin-core.php:
|
109 |
-
msgid "
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: admin-core.php:
|
113 |
-
msgid "
|
|
|
|
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: admin-core.php:
|
117 |
-
|
118 |
-
msgid "Enabled"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: admin-core.php:
|
122 |
-
msgid "
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: admin-core.php:
|
126 |
-
msgid "
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: admin-core.php:
|
130 |
-
msgid "
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: admin-core.php:
|
134 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
135 |
msgstr ""
|
136 |
|
137 |
#: admin-core.php:346
|
138 |
msgid "HomePage"
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: admin-core.php:
|
142 |
-
msgid "
|
143 |
msgstr ""
|
144 |
|
145 |
-
|
146 |
-
msgid "
|
147 |
msgstr ""
|
148 |
|
149 |
-
|
150 |
-
msgid "
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: admin-core.php:
|
154 |
-
msgid ""
|
155 |
-
"If <u>Yes</u>, The protection functions will be inactive for the admin when "
|
156 |
-
"he is logged in"
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: admin-core.php:
|
160 |
-
msgid ""
|
161 |
-
"In this protection layer your visitors will be able to <u>right click</u> on "
|
162 |
-
"a specific page elements only (such as Links as an example)"
|
163 |
msgstr ""
|
164 |
|
165 |
#: admin-core.php:378
|
@@ -169,158 +185,179 @@ msgid ""
|
|
169 |
"settings"
|
170 |
msgstr ""
|
171 |
|
172 |
-
#: admin-core.php:
|
173 |
-
msgid "
|
174 |
msgstr ""
|
175 |
|
176 |
-
#: admin-core.php:
|
177 |
-
msgid "
|
178 |
msgstr ""
|
179 |
|
180 |
-
#: admin-core.php:
|
181 |
-
msgid "
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: admin-core.php:
|
185 |
-
msgid "
|
186 |
msgstr ""
|
187 |
|
188 |
-
#: admin-core.php:
|
189 |
-
msgid "
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: admin-core.php:
|
193 |
-
msgid "
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: admin-core.php:
|
197 |
-
msgid "
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: admin-core.php:
|
201 |
-
msgid "
|
|
|
|
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: admin-core.php:
|
205 |
-
msgid "
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: admin-core.php:
|
209 |
-
msgid "
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: admin-core.php:
|
213 |
-
msgid "
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: admin-core.php:
|
217 |
-
msgid "
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: admin-core.php:
|
221 |
-
msgid "
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: admin-core.php:
|
225 |
-
msgid "
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: admin-core.php:
|
229 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: admin-core.php:
|
233 |
msgid ""
|
234 |
-
"
|
235 |
-
"
|
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 |
msgstr ""
|
249 |
|
250 |
-
#: admin-core.php:
|
251 |
-
msgid "
|
|
|
|
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: admin-core.php:
|
255 |
-
msgid "
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: admin-core.php:
|
259 |
-
msgid "
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: admin-core.php:
|
263 |
-
msgid "
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: admin-core.php:
|
267 |
-
msgid "
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: admin-core.php:
|
271 |
-
msgid ""
|
272 |
-
"Show alert messages, when user made right click on images, text boxes, links,"
|
273 |
-
" plain text.. etc"
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: admin-core.php:
|
277 |
-
msgid "
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: admin-core.php:
|
281 |
-
msgid "
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: admin-core.php:
|
285 |
-
msgid "
|
286 |
msgstr ""
|
287 |
|
288 |
-
#:
|
289 |
-
msgid "
|
290 |
msgstr ""
|
291 |
|
292 |
-
#:
|
293 |
msgid ""
|
294 |
-
"
|
295 |
-
"
|
|
|
296 |
msgstr ""
|
297 |
|
298 |
-
|
299 |
-
msgid ""
|
300 |
-
"This wp plugin protect the posts content from being copied by any other web "
|
301 |
-
"site author , you dont want your content to spread without your permission!!"
|
302 |
msgstr ""
|
303 |
|
304 |
-
#:
|
305 |
-
msgid "
|
306 |
msgstr ""
|
307 |
|
308 |
-
#:
|
309 |
-
msgid "
|
310 |
msgstr ""
|
311 |
|
312 |
-
#:
|
313 |
-
msgid "
|
314 |
msgstr ""
|
315 |
|
316 |
#. Name of the plugin
|
317 |
msgid "WP Content Copy Protection & No Right Click"
|
318 |
msgstr ""
|
319 |
|
320 |
-
|
321 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
322 |
msgstr ""
|
323 |
|
324 |
#. Author of the plugin
|
325 |
msgid "wp-buy"
|
326 |
msgstr ""
|
|
|
|
|
|
|
|
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-04-21 19:12+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"
|
15 |
"X-Generator: Loco https://localise.biz/\n"
|
16 |
"X-Loco-Version: 2.3.1; wp-5.3.2"
|
17 |
|
18 |
+
#: preventer-index.php:562
|
19 |
+
msgid "WP Content Copy Protection"
|
|
|
|
|
20 |
msgstr ""
|
21 |
|
22 |
+
#: admin-core.php:173
|
23 |
+
msgid "WP Content Protection Plugin Group"
|
24 |
msgstr ""
|
25 |
|
26 |
+
#: admin-core.php:175
|
27 |
+
msgid "Dismiss"
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: admin-core.php:180
|
31 |
+
msgid ""
|
32 |
+
"Begin your adventure to improve your WordPress website, Also you will win a "
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: admin-core.php:180
|
36 |
+
msgid "discount codes"
|
37 |
msgstr ""
|
38 |
|
39 |
+
#: admin-core.php:181
|
40 |
+
msgid "Start it!"
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: admin-core.php:212
|
44 |
+
msgid "Main Settings"
|
45 |
msgstr ""
|
46 |
|
47 |
+
#: admin-core.php:213
|
48 |
+
msgid "Premium RightClick Protection"
|
49 |
msgstr ""
|
50 |
|
51 |
+
#: admin-core.php:214
|
52 |
+
msgid "Premium Protection by CSS"
|
|
|
|
|
53 |
msgstr ""
|
54 |
|
55 |
+
#: admin-core.php:215
|
56 |
+
msgid "More with pro"
|
57 |
+
msgstr ""
|
58 |
+
|
59 |
+
#: admin-core.php:216
|
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:222
|
68 |
msgid "Basic Layer"
|
69 |
msgstr ""
|
70 |
|
71 |
+
#: admin-core.php:223
|
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."
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: admin-core.php:230
|
78 |
+
msgid "Posts protection by <u>JavaScript</u>"
|
79 |
msgstr ""
|
80 |
|
81 |
+
#: admin-core.php:236 admin-core.php:241 admin-core.php:257 admin-core.php:262
|
82 |
+
#: admin-core.php:278 admin-core.php:284 admin-core.php:391 admin-core.php:396
|
83 |
+
#: admin-core.php:412 admin-core.php:417
|
84 |
+
msgid "Enabled"
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: admin-core.php:237 admin-core.php:242 admin-core.php:258 admin-core.php:263
|
88 |
+
#: admin-core.php:279 admin-core.php:283 admin-core.php:392 admin-core.php:397
|
89 |
+
#: admin-core.php:413 admin-core.php:418
|
90 |
+
msgid "Disabled"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: admin-core.php:248
|
94 |
+
msgid "For single posts content"
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: admin-core.php:251
|
98 |
+
msgid "Homepage protection by <u>JavaScript</u>"
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: admin-core.php:269
|
102 |
+
msgid "Don't copy any thing! even from my homepage"
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: admin-core.php:272
|
106 |
+
msgid "Static page's protection"
|
|
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: admin-core.php:289
|
110 |
+
msgid "Use Premium Settings tab to customize more options"
|
111 |
msgstr ""
|
112 |
|
113 |
+
#: admin-core.php:292
|
114 |
+
msgid "Exclude <u>Admin</u> from protection"
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: admin-core.php:294 admin-core.php:429
|
118 |
+
msgid "Premium"
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: admin-core.php:296
|
122 |
+
msgid ""
|
123 |
+
"If <u>Yes</u>, The protection functions will be inactive for the admin when "
|
124 |
+
"he is logged in"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: admin-core.php:299
|
128 |
+
msgid "Selection disabled message"
|
|
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: admin-core.php:310
|
132 |
+
msgid "Print preview message"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: admin-core.php:328
|
136 |
+
msgid "Copy Protection on RightClick"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: admin-core.php:328
|
140 |
+
msgid "Premium Layer 2"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: admin-core.php:329
|
144 |
+
msgid ""
|
145 |
+
"In this protection layer your visitors will be able to <u>right click</u> on "
|
146 |
+
"a specific page elements only (such as Links as an example)"
|
147 |
+
msgstr ""
|
148 |
+
|
149 |
+
#: admin-core.php:333
|
150 |
+
msgid "Disable <u>RightClick</u> on"
|
151 |
+
msgstr ""
|
152 |
+
|
153 |
+
#: admin-core.php:340
|
154 |
+
msgid "Posts"
|
155 |
msgstr ""
|
156 |
|
157 |
#: admin-core.php:346
|
158 |
msgid "HomePage"
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: admin-core.php:352
|
162 |
+
msgid "Static pages"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: admin-core.php:361
|
166 |
+
msgid "Remaining premium options preview image "
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: admin-core.php:365
|
170 |
+
msgid "Preview & Pricing"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: admin-core.php:377
|
174 |
+
msgid "Protection by CSS Techniques"
|
|
|
|
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: admin-core.php:377
|
178 |
+
msgid "Premium Layer 3"
|
|
|
|
|
179 |
msgstr ""
|
180 |
|
181 |
#: admin-core.php:378
|
185 |
"settings"
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: admin-core.php:385
|
189 |
+
msgid "<b>Home Page</b> Protection by CSS"
|
190 |
msgstr ""
|
191 |
|
192 |
+
#: admin-core.php:403
|
193 |
+
msgid "Protect your Homepage by CSS tricks"
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: admin-core.php:406
|
197 |
+
msgid "<b>Posts</b> Protection by CSS"
|
198 |
msgstr ""
|
199 |
|
200 |
+
#: admin-core.php:424
|
201 |
+
msgid "Protect your single posts by CSS tricks"
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: admin-core.php:427
|
205 |
+
msgid "<b>Pages</b> Protection by CSS"
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: admin-core.php:431
|
209 |
+
msgid "Protect your static pages by CSS tricks"
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: admin-core.php:453
|
213 |
+
msgid "Basic features:"
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: admin-core.php:455
|
217 |
+
msgid ""
|
218 |
+
"Protect your content from selection and copy. this plugin makes protecting "
|
219 |
+
"your posts extremely simple without yelling at your readers"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: admin-core.php:456
|
223 |
+
msgid "No one can save images from your site."
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: admin-core.php:457
|
227 |
+
msgid "No right click or context menu."
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: admin-core.php:458
|
231 |
+
msgid "Show alert message, Image Ad or HTML Ad on save images or right click."
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: admin-core.php:459
|
235 |
+
msgid "Disable the following keys"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: admin-core.php:460
|
239 |
+
msgid "Advanced and easy to use control panel."
|
240 |
msgstr ""
|
241 |
|
242 |
+
#: admin-core.php:461
|
243 |
+
msgid "No one can right click images on your site if you want"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: admin-core.php:464
|
247 |
+
msgid "Premium features:"
|
248 |
+
msgstr ""
|
249 |
+
|
250 |
+
#: admin-core.php:466
|
251 |
+
msgid "Get full Control on Right click or context menu"
|
252 |
+
msgstr ""
|
253 |
+
|
254 |
+
#: admin-core.php:467
|
255 |
+
msgid "Full watermarking"
|
256 |
msgstr ""
|
257 |
|
258 |
+
#: admin-core.php:468
|
259 |
msgid ""
|
260 |
+
"Show alert messages, when user made right click on images, text boxes, links,"
|
261 |
+
" plain text.. etc"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: admin-core.php:469
|
265 |
+
msgid "Admin can exclude Home page Or Single posts from being copy protected "
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: admin-core.php:470
|
269 |
+
msgid "Admin can disable copy protection for admin users."
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: admin-core.php:471
|
273 |
+
msgid ""
|
274 |
+
"3 protection layers (JavaScript protection, RightClick protection, CSS "
|
275 |
+
"protection)"
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: admin-core.php:472
|
279 |
+
msgid ""
|
280 |
+
"Aggressive image protection (its near impossible for expert users to steal "
|
281 |
+
"your images !!)"
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: admin-core.php:473
|
285 |
+
msgid "Compatible with all major theme frameworks"
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: admin-core.php:474
|
289 |
+
msgid "Compatible with all major browsers"
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: admin-core.php:475
|
293 |
+
msgid "Tested in IE9, IE10, Firefox, Google Chrome, Opera"
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: admin-core.php:476
|
297 |
+
msgid "Disables image drag and drop function"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: admin-core.php:477
|
301 |
+
msgid "Works on smart phones."
|
|
|
|
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: admin-core.php:478
|
305 |
+
msgid "Ability to set varying levels of protection per page or post."
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: admin-core.php:483
|
309 |
+
msgid "Other products:"
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: admin-core.php:505
|
313 |
+
msgid "Save Settings"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: notifications.php:141
|
317 |
+
msgid "Leave A Review?"
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: notifications.php:142
|
321 |
msgid ""
|
322 |
+
"We hope you've enjoyed using WP copy Protection :) Would you mind taking a "
|
323 |
+
"few minutes to write a review on WordPress.org?<br>Just writing simple "
|
324 |
+
"\"thank you\" will make us happy!"
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: notifications.php:144
|
328 |
+
msgid "Sure! I'd love to!"
|
|
|
|
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: notifications.php:145
|
332 |
+
msgid "I've already left a review"
|
333 |
msgstr ""
|
334 |
|
335 |
+
#: notifications.php:146
|
336 |
+
msgid "Will Rate Later"
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: notifications.php:147
|
340 |
+
msgid "Hide Forever"
|
341 |
msgstr ""
|
342 |
|
343 |
#. Name of the plugin
|
344 |
msgid "WP Content Copy Protection & No Right Click"
|
345 |
msgstr ""
|
346 |
|
347 |
+
#. Description of the plugin
|
348 |
+
msgid ""
|
349 |
+
"This wp plugin protect the posts content from being copied by any other web "
|
350 |
+
"site author , you dont want your content to spread without your permission!!"
|
351 |
+
msgstr ""
|
352 |
+
|
353 |
+
#. URI of the plugin
|
354 |
+
msgid "http://wordpress.org/plugins/w-p-content-copy-protector/"
|
355 |
msgstr ""
|
356 |
|
357 |
#. Author of the plugin
|
358 |
msgid "wp-buy"
|
359 |
msgstr ""
|
360 |
+
|
361 |
+
#. Author URI of the plugin
|
362 |
+
msgid "http://www.wp-buy.com/"
|
363 |
+
msgstr ""
|
notifications.php
ADDED
@@ -0,0 +1,159 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
3 |
+
// Exit if accessed directly.
|
4 |
+
exit;
|
5 |
+
}
|
6 |
+
// Use your own prefix, i use "wccp_free_", replace it;
|
7 |
+
$icon_path = plugins_url( '/images/icon-128x128.png' , __FILE__);
|
8 |
+
$rating_url = "https://wordpress.org/support/plugin/wp-content-copy-protector/reviews/?filter=5#new-post";
|
9 |
+
$activation_time = 604800; // 7 days in seconds
|
10 |
+
$file_version = 2.1;
|
11 |
+
$development_mode = false; // Put yes to allow development mode, you will see the rating notice without timers
|
12 |
+
|
13 |
+
/**
|
14 |
+
* @since 1.9
|
15 |
+
* @version 1.9
|
16 |
+
* @class wccp_free_Notification
|
17 |
+
*/
|
18 |
+
|
19 |
+
if ( ! class_exists( 'wccp_free_Notification' ) ) :
|
20 |
+
|
21 |
+
class wccp_free_Notification {
|
22 |
+
|
23 |
+
/* * * * * * * * * *
|
24 |
+
* Class constructor
|
25 |
+
* * * * * * * * * */
|
26 |
+
public function __construct() {
|
27 |
+
|
28 |
+
$this->_hooks();
|
29 |
+
}
|
30 |
+
|
31 |
+
/**
|
32 |
+
* Hook into actions and filters
|
33 |
+
* @since 1.0.0
|
34 |
+
* @version 1.2.1
|
35 |
+
*/
|
36 |
+
private function _hooks() {
|
37 |
+
add_action( 'admin_init', array( $this, 'wccp_free_review_notice' ) );
|
38 |
+
}
|
39 |
+
|
40 |
+
/**
|
41 |
+
* Ask users to review our plugin on wordpress.org
|
42 |
+
*
|
43 |
+
* @since 1.0.11
|
44 |
+
* @return boolean false
|
45 |
+
* @version 1.1.3
|
46 |
+
*/
|
47 |
+
public function wccp_free_review_notice() {
|
48 |
+
|
49 |
+
global $file_version, $activation_time, $development_mode;
|
50 |
+
|
51 |
+
$this->wccp_free_review_dismissal();
|
52 |
+
|
53 |
+
$this->wccp_free_review_pending();
|
54 |
+
|
55 |
+
$activation_time = get_site_option( 'wccp_free_active_time' );
|
56 |
+
|
57 |
+
$review_dismissal = get_site_option( 'wccp_free_review_dismiss' );
|
58 |
+
|
59 |
+
if ($review_dismissal == 'yes' && !$development_mode) return;
|
60 |
+
|
61 |
+
if ( !$activation_time && !$development_mode ) :
|
62 |
+
|
63 |
+
$activation_time = time(); // Reset Time to current time.
|
64 |
+
add_site_option( 'wccp_free_active_time', $activation_time );
|
65 |
+
|
66 |
+
endif;
|
67 |
+
if ($development_mode) $activation_time = 432001; //This variable used to show the message always for testing purposes only
|
68 |
+
// 432000 = 5 Days in seconds.
|
69 |
+
if ( time() - $activation_time > 432000 ) :
|
70 |
+
|
71 |
+
wp_enqueue_style( 'wccp_free_review_stlye', plugins_url( '/css/style-review.css', __FILE__ ), array(), $file_version );
|
72 |
+
add_action( 'admin_notices' , array( $this, 'wccp_free_review_notice_message' ) );
|
73 |
+
|
74 |
+
endif;
|
75 |
+
}
|
76 |
+
|
77 |
+
/**
|
78 |
+
* Check and Dismiss review message.
|
79 |
+
*
|
80 |
+
* @since 1.9
|
81 |
+
*/
|
82 |
+
private function wccp_free_review_dismissal() {
|
83 |
+
|
84 |
+
if ( ! is_admin() ||
|
85 |
+
! current_user_can( 'manage_options' ) ||
|
86 |
+
! isset( $_GET['_wpnonce'] ) ||
|
87 |
+
! wp_verify_nonce( sanitize_key( wp_unslash( $_GET['_wpnonce'] ) ), 'wccp_free_review-nonce' ) ||
|
88 |
+
! isset( $_GET['wccp_free_review_dismiss'] ) ) :
|
89 |
+
|
90 |
+
return;
|
91 |
+
endif;
|
92 |
+
|
93 |
+
add_site_option( 'wccp_free_review_dismiss', 'yes' );
|
94 |
+
}
|
95 |
+
|
96 |
+
/**
|
97 |
+
* Set time to current so review notice will popup after 14 days
|
98 |
+
*
|
99 |
+
* @since 1.9
|
100 |
+
*/
|
101 |
+
private function wccp_free_review_pending() {
|
102 |
+
|
103 |
+
if ( ! is_admin() ||
|
104 |
+
! current_user_can( 'manage_options' ) ||
|
105 |
+
! isset( $_GET['_wpnonce'] ) ||
|
106 |
+
! wp_verify_nonce( sanitize_key( wp_unslash( $_GET['_wpnonce'] ) ), 'wccp_free_review-nonce' ) ||
|
107 |
+
! isset( $_GET['wccp_free_review_later'] ) ) :
|
108 |
+
|
109 |
+
return;
|
110 |
+
endif;
|
111 |
+
|
112 |
+
// Reset Time to current time.
|
113 |
+
update_site_option( 'wccp_free_active_time', time() );
|
114 |
+
}
|
115 |
+
|
116 |
+
/**
|
117 |
+
* Review notice message
|
118 |
+
*
|
119 |
+
* @since 1.0.11
|
120 |
+
*/
|
121 |
+
public function wccp_free_review_notice_message() {
|
122 |
+
|
123 |
+
$scheme = ( wp_parse_url( $_SERVER['REQUEST_URI'], PHP_URL_QUERY ) ) ? '&' : '?';
|
124 |
+
$url = $_SERVER['REQUEST_URI'] . $scheme . 'wccp_free_review_dismiss=yes';
|
125 |
+
$dismiss_url = wp_nonce_url( $url, 'wccp_free_review-nonce' );
|
126 |
+
|
127 |
+
$_later_link = $_SERVER['REQUEST_URI'] . $scheme . 'wccp_free_review_later=yes';
|
128 |
+
$later_url = wp_nonce_url( $_later_link, 'wccp_free_review-nonce' );
|
129 |
+
|
130 |
+
global $icon_path;
|
131 |
+
|
132 |
+
global $rating_url;
|
133 |
+
?>
|
134 |
+
|
135 |
+
<div class="wccp_free_review-notice">
|
136 |
+
<div class="wccp_free_review-thumbnail">
|
137 |
+
<img src="<?php echo $icon_path; ?>" alt="">
|
138 |
+
</div>
|
139 |
+
<div class="wccp_free_review-text">
|
140 |
+
<h3><?php _e( 'Leave A Review?', 'wp-content-copy-protector' ) ?></h3>
|
141 |
+
<p><?php _e( 'We hope you\'ve enjoyed using WP copy Protection :) Would you mind taking a few minutes to write a review on WordPress.org?<br>Just writing simple "thank you" will make us happy!', 'wp-content-copy-protector' ) ?></p>
|
142 |
+
<ul class="wccp_free_review-ul">
|
143 |
+
<li><a href="<?php echo $rating_url; ?>" target="_blank"><span class="dashicons dashicons-external"></span><?php _e( 'Sure! I\'d love to!', 'wp-content-copy-protector' ) ?></a></li>
|
144 |
+
<li><a href="<?php echo $dismiss_url ?>"><span class="dashicons dashicons-smiley"></span><?php _e( 'I\'ve already left a review', 'wp-content-copy-protector' ) ?></a></li>
|
145 |
+
<li><a href="<?php echo $later_url ?>"><span class="dashicons dashicons-calendar-alt"></span><?php _e( 'Will Rate Later', 'wp-content-copy-protector' ) ?></a></li>
|
146 |
+
<li><a href="<?php echo $dismiss_url ?>"><span class="dashicons dashicons-dismiss"></span><?php _e( 'Hide Forever', 'wp-content-copy-protector' ) ?></a></li></ul>
|
147 |
+
</div>
|
148 |
+
</div>
|
149 |
+
<?php
|
150 |
+
}
|
151 |
+
}
|
152 |
+
|
153 |
+
endif;
|
154 |
+
$admincore = '';
|
155 |
+
if (isset($_GET['page'])) $admincore = sanitize_text_field($_GET['page']);
|
156 |
+
if($admincore != 'wccpoptionspro') {
|
157 |
+
new wccp_free_Notification();
|
158 |
+
}
|
159 |
+
?>
|
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
|
@@ -14,7 +14,7 @@ Author URI: http://www.wp-buy.com/
|
|
14 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
15 |
//define all variables the needed alot
|
16 |
include 'the_globals.php';
|
17 |
-
|
18 |
$wccp_settings = wccp_read_options();
|
19 |
//---------------------------------------------------------------------------------------------
|
20 |
//Load plugin textdomain to load translations
|
@@ -72,6 +72,15 @@ var image_save_msg='You Can Not Save images!';
|
|
72 |
|
73 |
function disableEnterKey(e)
|
74 |
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
75 |
if (e.ctrlKey){
|
76 |
var key;
|
77 |
if(window.event)
|
@@ -79,7 +88,7 @@ function disableEnterKey(e)
|
|
79 |
else
|
80 |
key = e.which; //firefox (97)
|
81 |
//if (key != 17) alert(key);
|
82 |
-
if (key == 97 || key == 65 || key == 67 || key == 99 || key == 88 || key == 120 || key == 26 || key == 85 || key == 86 || key == 83 || key == 43)
|
83 |
{
|
84 |
show_wpcp_message('You are not allowed to copy content or view source');
|
85 |
return false;
|
@@ -91,12 +100,19 @@ function disableEnterKey(e)
|
|
91 |
//////////////////////////////////////////////////////////////////////////////////////
|
92 |
function disable_copy(e)
|
93 |
{
|
94 |
-
var elemtype = e.target.
|
95 |
-
|
96 |
elemtype = elemtype.toUpperCase();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
97 |
var checker_IMG = '<?php echo $wccp_settings['img'];?>';
|
98 |
if (elemtype == "IMG" && checker_IMG == 'checked' && e.detail >= 2) {show_wpcp_message(alertMsg_IMG);return false;}
|
99 |
-
if (elemtype != "TEXT"
|
100 |
{
|
101 |
if (smessage !== "" && e.detail == 2)
|
102 |
show_wpcp_message(smessage);
|
@@ -116,8 +132,6 @@ function disable_copy_ie()
|
|
116 |
if (elemtype == "IMG") {show_wpcp_message(alertMsg_IMG);return false;}
|
117 |
if (elemtype != "TEXT" && elemtype != "TEXTAREA" && elemtype != "INPUT" && elemtype != "PASSWORD" && elemtype != "SELECT" && elemtype != "OPTION" && elemtype != "EMBED")
|
118 |
{
|
119 |
-
//alert(navigator.userAgent.indexOf('MSIE'));
|
120 |
-
//if (smessage !== "") show_wpcp_message(smessage);
|
121 |
return false;
|
122 |
}
|
123 |
}
|
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: 2.3
|
7 |
Author: wp-buy
|
8 |
Text Domain: wp-content-copy-protector
|
9 |
Domain Path: /languages
|
14 |
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
15 |
//define all variables the needed alot
|
16 |
include 'the_globals.php';
|
17 |
+
include_once('notifications.php');
|
18 |
$wccp_settings = wccp_read_options();
|
19 |
//---------------------------------------------------------------------------------------------
|
20 |
//Load plugin textdomain to load translations
|
72 |
|
73 |
function disableEnterKey(e)
|
74 |
{
|
75 |
+
var elemtype = e.target.tagName;
|
76 |
+
|
77 |
+
elemtype = elemtype.toUpperCase();
|
78 |
+
|
79 |
+
if (elemtype == "TEXT" || elemtype == "TEXTAREA" || elemtype == "INPUT" || elemtype == "PASSWORD" || elemtype == "SELECT" || elemtype == "OPTION" || elemtype == "EMBED")
|
80 |
+
{
|
81 |
+
elemtype = 'TEXT';
|
82 |
+
}
|
83 |
+
|
84 |
if (e.ctrlKey){
|
85 |
var key;
|
86 |
if(window.event)
|
88 |
else
|
89 |
key = e.which; //firefox (97)
|
90 |
//if (key != 17) alert(key);
|
91 |
+
if (elemtype!= 'TEXT' && (key == 97 || key == 65 || key == 67 || key == 99 || key == 88 || key == 120 || key == 26 || key == 85 || key == 86 || key == 83 || key == 43))
|
92 |
{
|
93 |
show_wpcp_message('You are not allowed to copy content or view source');
|
94 |
return false;
|
100 |
//////////////////////////////////////////////////////////////////////////////////////
|
101 |
function disable_copy(e)
|
102 |
{
|
103 |
+
var elemtype = e.target.tagName;
|
104 |
+
|
105 |
elemtype = elemtype.toUpperCase();
|
106 |
+
|
107 |
+
if (elemtype == "TEXT" || elemtype == "TEXTAREA" || elemtype == "INPUT" || elemtype == "PASSWORD" || elemtype == "SELECT" || elemtype == "OPTION" || elemtype == "EMBED")
|
108 |
+
{
|
109 |
+
elemtype = 'TEXT';
|
110 |
+
}
|
111 |
+
var isSafari = /Safari/.test(navigator.userAgent) && /Apple Computer/.test(navigator.vendor);
|
112 |
+
|
113 |
var checker_IMG = '<?php echo $wccp_settings['img'];?>';
|
114 |
if (elemtype == "IMG" && checker_IMG == 'checked' && e.detail >= 2) {show_wpcp_message(alertMsg_IMG);return false;}
|
115 |
+
if (elemtype != "TEXT")
|
116 |
{
|
117 |
if (smessage !== "" && e.detail == 2)
|
118 |
show_wpcp_message(smessage);
|
132 |
if (elemtype == "IMG") {show_wpcp_message(alertMsg_IMG);return false;}
|
133 |
if (elemtype != "TEXT" && elemtype != "TEXTAREA" && elemtype != "INPUT" && elemtype != "PASSWORD" && elemtype != "SELECT" && elemtype != "OPTION" && elemtype != "EMBED")
|
134 |
{
|
|
|
|
|
135 |
return false;
|
136 |
}
|
137 |
}
|
readme.txt
CHANGED
@@ -64,6 +64,27 @@ your posts extremely simple without yelling at your readers</li>
|
|
64 |
</ul>
|
65 |
|
66 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
67 |
= 1.9 =
|
68 |
<ul>
|
69 |
<li>Translation slug is now the same as the plugin slug</li>
|
64 |
</ul>
|
65 |
|
66 |
== Changelog ==
|
67 |
+
=2.4=
|
68 |
+
<ul>
|
69 |
+
<li>This update is happen because of help, alot of help from Kenedy Torcatt https://wordpress.org/support/users/kenedyt/, So many thanks to him forever</li>
|
70 |
+
</ul>
|
71 |
+
= 2.3 =
|
72 |
+
<ul>
|
73 |
+
<li>Copy paste password to log in fields and any other text field is now possible</li>
|
74 |
+
<li>Some script fixes</li>
|
75 |
+
<li>Admin page Fix (mailing list join message will show your email before submit)</li>
|
76 |
+
<li>Admin page Fix (Our other products list is ready to go)</li>
|
77 |
+
</ul>
|
78 |
+
= 2.2 =
|
79 |
+
<ul>
|
80 |
+
<li>Admin page Fix</li>
|
81 |
+
</ul>
|
82 |
+
= 2.1 =
|
83 |
+
<ul>
|
84 |
+
<li>Fix iphone & ipad posts protection</li>
|
85 |
+
<li>Premium feature unlocked!! the second option inside CSS protection tab</li>
|
86 |
+
<li>"Review us" admin dismissable notice added</li>
|
87 |
+
</ul>
|
88 |
= 1.9 =
|
89 |
<ul>
|
90 |
<li>Translation slug is now the same as the plugin slug</li>
|