ITRO Popup Plugin - Version 4.4

Version Description

Popup can be disabled for mobile devices. Close cross can be changed for dark or light background.

Download this release

Release Info

Developer ITRO
Plugin Icon 128x128 ITRO Popup Plugin
Version 4.4
Comparing to
See all releases

Code changes from version 4.3.2 to 4.4

admin/index.php ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ <?php
2
+ //silence is golden
3
+ ?>
admin/popup-admin.php CHANGED
@@ -43,6 +43,8 @@ if( !isset($submitted_form ))
43
  /*opt 29*/'show_countdown',
44
  /*opt 30*/'auto_margin_check',
45
  /*opt 31*/'popup_padding',
 
 
46
  );
47
  $field_name=array(
48
  /*fld 0*/'custom_html',
@@ -173,9 +175,13 @@ if( isset($_POST[ $submitted_form ]) && $_POST[ $submitted_form ] == 'Y' || isse
173
  </div>
174
  </p>
175
 
176
- <!-- disable esc key !-->
177
  <h3><?php _e("GENERAL SETTINGS","itro-plugin")?></h3>
178
  <p id="<?php echo $opt_name[24]; ?>_div">
 
 
 
 
179
  <input type="checkbox" id="<?php echo $opt_name[24]; ?>" name="<?php echo $opt_name[24]; ?>" value="yes" <?php if($opt_val[24] == 'yes' ){echo 'checked="checked"';} ?> />
180
  <span onclick="itro_mutual_check('<?php echo $opt_name[24]; ?>','','')"><?php _e("Disable ESC key", 'itro-plugin' ); ?></span>
181
  <img style="vertical-align:super; cursor:help" src="<?php echo itroImages . 'question_mark.png' ; ?>"title="<?php _e('If you set this option popup can not be closed with ESC button of keyboard.','itro-plugin');?>" >
@@ -343,6 +349,15 @@ if( isset($_POST[ $submitted_form ]) && $_POST[ $submitted_form ] == 'Y' || isse
343
  <p><?php _e("Opaque background color", 'itro-plugin' ); ?>
344
  <input type="text" class="color" id="<?php echo $opt_name[26]; ?>" name="<?php echo $opt_name[26]; ?>" style="opacity:<?php echo $opt_val[25];?> ;" value="<?php echo $opt_val[26]; ?>" size="10">&nbsp;&nbsp;&nbsp;&nbsp;
345
  </p>
 
 
 
 
 
 
 
 
 
346
  </div>
347
 
348
  </div>
@@ -398,7 +413,7 @@ if( isset($_POST[ $submitted_form ]) && $_POST[ $submitted_form ] == 'Y' || isse
398
  <hr>
399
  <p class="submit">
400
  <input type="submit" name="Submit" class="button-primary" value="<?php esc_attr_e('Save Changes') ?>" />&nbsp;&nbsp;&nbsp;&nbsp;
401
- <input type="button" target="_blank" class="button" onClick="window.open('/?page_id=<?php echo itro_get_option('preview_id') ?>')" value="<?php echo _e('Preview page','itro-plugin' )?>">
402
  </p>
403
  </div>
404
 
@@ -415,7 +430,7 @@ if( isset($_POST[ $submitted_form ]) && $_POST[ $submitted_form ] == 'Y' || isse
415
  <hr>
416
  <p class="submit">
417
  <input type="submit" name="Submit" class="button-primary" value="<?php esc_attr_e('Save Changes') ?>" />&nbsp;&nbsp;&nbsp;&nbsp;
418
- <input type="button" target="_blank" class="button" onClick="window.open('/?page_id=<?php echo itro_get_option('preview_id') ?>')" value="<?php echo _e('Preview page','itro-plugin' )?>">
419
  </p>
420
  </div>
421
  </div>
43
  /*opt 29*/'show_countdown',
44
  /*opt 30*/'auto_margin_check',
45
  /*opt 31*/'popup_padding',
46
+ /*opt 32*/'disable_mobile',
47
+ /*opt 33*/'cross_selected',
48
  );
49
  $field_name=array(
50
  /*fld 0*/'custom_html',
175
  </div>
176
  </p>
177
 
178
+ <!-- disable esc key and mobile !-->
179
  <h3><?php _e("GENERAL SETTINGS","itro-plugin")?></h3>
180
  <p id="<?php echo $opt_name[24]; ?>_div">
181
+ <input type="checkbox" id="<?php echo $opt_name[32]; ?>" name="<?php echo $opt_name[32]; ?>" value="yes" <?php if($opt_val[32] == 'yes' ){echo 'checked="checked"';} ?> />
182
+ <span onclick="itro_mutual_check('<?php echo $opt_name[32]; ?>','','')"><?php _e("Disable on mobile device", 'itro-plugin' ); ?></span>
183
+ <img style="vertical-align:super; cursor:help" src="<?php echo itroImages . 'question_mark.png' ; ?>"title="<?php _e('Check this to disable popup on mobile devices','itro-plugin');?>" >
184
+ &nbsp;&nbsp;&nbsp;
185
  <input type="checkbox" id="<?php echo $opt_name[24]; ?>" name="<?php echo $opt_name[24]; ?>" value="yes" <?php if($opt_val[24] == 'yes' ){echo 'checked="checked"';} ?> />
186
  <span onclick="itro_mutual_check('<?php echo $opt_name[24]; ?>','','')"><?php _e("Disable ESC key", 'itro-plugin' ); ?></span>
187
  <img style="vertical-align:super; cursor:help" src="<?php echo itroImages . 'question_mark.png' ; ?>"title="<?php _e('If you set this option popup can not be closed with ESC button of keyboard.','itro-plugin');?>" >
349
  <p><?php _e("Opaque background color", 'itro-plugin' ); ?>
350
  <input type="text" class="color" id="<?php echo $opt_name[26]; ?>" name="<?php echo $opt_name[26]; ?>" style="opacity:<?php echo $opt_val[25];?> ;" value="<?php echo $opt_val[26]; ?>" size="10">&nbsp;&nbsp;&nbsp;&nbsp;
351
  </p>
352
+
353
+ <!-- close cross selection !-->
354
+ <p><?php _e("Close cross", 'itro-plugin' ); ?> <img style="vertical-align:super; cursor:help" src="<?php echo itroImages . 'question_mark.png' ; ?>" title="<?php _e("Select the colour combination of the closing cross on the upper right of popup.",'itro-plugin');?>" >
355
+ <select name="<?php echo $opt_name[33]; ?>" style="min-width:100px;">
356
+ <option value="black" <?php if(itro_get_option($opt_name[33])=='black') {echo 'selected="select"';} ?> ><?php _e("Black", 'itro-plugin' ); ?></option>
357
+ <option value="white" <?php if(itro_get_option($opt_name[33])=='white') {echo 'selected="select"';} ?> ><?php _e("White", 'itro-plugin' ); ?></option>
358
+ <option value="white_border" <?php if(itro_get_option($opt_name[33])=='white_border') {echo 'selected="select"';} ?> ><?php _e("White with border", 'itro-plugin' ); ?></option>
359
+ </select>
360
+ </p>
361
  </div>
362
 
363
  </div>
413
  <hr>
414
  <p class="submit">
415
  <input type="submit" name="Submit" class="button-primary" value="<?php esc_attr_e('Save Changes') ?>" />&nbsp;&nbsp;&nbsp;&nbsp;
416
+ <input type="button" target="_blank" class="button" onClick="window.open('<?php echo get_site_url() . '/?page_id=' . itro_get_option('preview_id'); ?>')" value="<?php echo _e('Preview page','itro-plugin' )?>">
417
  </p>
418
  </div>
419
 
430
  <hr>
431
  <p class="submit">
432
  <input type="submit" name="Submit" class="button-primary" value="<?php esc_attr_e('Save Changes') ?>" />&nbsp;&nbsp;&nbsp;&nbsp;
433
+ <input type="button" target="_blank" class="button" onClick="window.open('<?php echo get_site_url() . '/?page_id=' . itro_get_option('preview_id'); ?>')" value="<?php echo _e('Preview page','itro-plugin' )?>">
434
  </p>
435
  </div>
436
  </div>
css/itro-style.php CHANGED
@@ -49,7 +49,7 @@ function itro_style() { ?>
49
  margin: 0 auto;
50
  left:30px;
51
  right:30px;
52
- z-index: 9999999;
53
  <?php if( itro_get_option('popup_padding') != NULL ) { echo 'padding:' . itro_get_option('popup_padding') . 'px !important;'; }?>
54
  <?php
55
  if( itro_get_option('auto_margin_check') == NULL )
@@ -108,7 +108,7 @@ function itro_style() { ?>
108
  top: 100px;
109
  width: 100%;
110
  height: 100%;
111
- z-index: 999999;
112
  left: 0px ;
113
  right: 0px;
114
  top: 0px;
@@ -116,8 +116,17 @@ function itro_style() { ?>
116
  <?php if( itro_get_option('popup_delay') != 0 ) { echo 'visibility:hidden;'; } ?>
117
  opacity: <?php echo itro_get_option('popup_bg_opacity'); ?> ;
118
  filter:alpha(opacity = <?php echo ( itro_get_option('popup_bg_opacity') * 100); ?>); /* For IE8 and earlier */
119
- }
120
 
 
 
 
 
 
 
 
 
 
121
  </style>
122
  <?php
123
  }
49
  margin: 0 auto;
50
  left:30px;
51
  right:30px;
52
+ z-index: 2147483647 !important;
53
  <?php if( itro_get_option('popup_padding') != NULL ) { echo 'padding:' . itro_get_option('popup_padding') . 'px !important;'; }?>
54
  <?php
55
  if( itro_get_option('auto_margin_check') == NULL )
108
  top: 100px;
109
  width: 100%;
110
  height: 100%;
111
+ z-index: 2147483646 !important;
112
  left: 0px ;
113
  right: 0px;
114
  top: 0px;
116
  <?php if( itro_get_option('popup_delay') != 0 ) { echo 'visibility:hidden;'; } ?>
117
  opacity: <?php echo itro_get_option('popup_bg_opacity'); ?> ;
118
  filter:alpha(opacity = <?php echo ( itro_get_option('popup_bg_opacity') * 100); ?>); /* For IE8 and earlier */
119
+ }<?php
120
 
121
+ if( itro_get_option('disable_mobile') == 'yes' )
122
+ {
123
+ echo '
124
+ @media screen and (max-width: 1024px)
125
+ {
126
+ #itro_popup{display: none !important;}
127
+ #itro_opaco{display: none !important;}
128
+ }';
129
+ }?>
130
  </style>
131
  <?php
132
  }
images/close-icon-white-border.png ADDED
Binary file
images/close-icon-white.png ADDED
Binary file
languages/itro-plugin-en_GB.mo CHANGED
Binary file
languages/itro-plugin-en_GB.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: mc-plugin\n"
4
- "POT-Creation-Date: 2013-05-07 17:10+0100\n"
5
- "PO-Revision-Date: 2013-05-07 17:10+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: ITRO Corp\n"
8
  "MIME-Version: 1.0\n"
@@ -13,324 +13,354 @@ msgstr ""
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
- #: admin/popup-admin.php:125
17
  msgid "settings saved."
18
  msgstr ""
19
 
20
- #: admin/popup-admin.php:132
21
  msgid "I.T.RO. Popup Plugin - Settings"
22
  msgstr ""
23
 
24
- #: admin/popup-admin.php:144
25
  msgid "General Popup Option:"
26
  msgstr ""
27
 
28
- #: admin/popup-admin.php:151
29
  msgid "SHOW ADVANCED SETTINGS"
30
  msgstr ""
31
 
32
- #: admin/popup-admin.php:152
33
  msgid "Display many other options"
34
  msgstr ""
35
 
36
- #: admin/popup-admin.php:157
37
  msgid "DECIDE WHERE POPUP WILL BE DISPLAYED"
38
  msgstr ""
39
 
40
- #: admin/popup-admin.php:159
41
  msgid "Only selected pages"
42
  msgstr ""
43
 
44
- #: admin/popup-admin.php:159
45
  msgid "Multiple choise with CTRL+Click or SHIFT+Arrow up or down"
46
  msgstr ""
47
 
48
- #: admin/popup-admin.php:160
49
  msgid "All pages"
50
  msgstr ""
51
 
52
- #: admin/popup-admin.php:161
53
  msgid "No page"
54
  msgstr ""
55
 
56
- #: admin/popup-admin.php:165
57
  msgid "Blog homepage"
58
  msgstr ""
59
 
60
- #: admin/popup-admin.php:167
61
  msgid ""
62
  "If in your Settings->Reading you have set 'Front page displays: Your latest "
63
  "posts' and want to display the popup in the home, check this box."
64
  msgstr ""
65
 
66
- #: admin/popup-admin.php:176
67
  msgid "GENERAL SETTINGS"
68
  msgstr ""
69
 
70
- #: admin/popup-admin.php:179
 
 
 
 
 
 
 
 
71
  msgid "Disable ESC key"
72
  msgstr ""
73
 
74
- #: admin/popup-admin.php:180
75
  msgid ""
76
  "If you set this option popup can not be closed with ESC button of keyboard."
77
  msgstr ""
78
 
79
- #: admin/popup-admin.php:185
80
  msgid "Popup seconds:"
81
  msgstr ""
82
 
83
- #: admin/popup-admin.php:185
84
  msgid ""
85
  "Set seconds until the popup automatically close. Set it to zero to disable "
86
  "countdown."
87
  msgstr ""
88
 
89
- #: admin/popup-admin.php:193
90
  msgid "Popup delay:"
91
  msgstr ""
92
 
93
- #: admin/popup-admin.php:193
94
  msgid "Set seconds before the popup will be displayed"
95
  msgstr ""
96
 
97
- #: admin/popup-admin.php:201
98
  msgid "Next visualization (hours):"
99
  msgstr ""
100
 
101
- #: admin/popup-admin.php:201
102
  msgid ""
103
  "Set time for the next visualization of popup, to prevent annoying repeated "
104
  "visualizations, when someone visit pages"
105
  msgstr ""
106
 
107
- #: admin/popup-admin.php:207
108
  msgid "Delete cookie"
109
  msgstr ""
110
 
111
- #: admin/popup-admin.php:208
112
  msgid "Cookie deleted!"
113
  msgstr ""
114
 
115
- #: admin/popup-admin.php:213
116
  msgid "Show countdown"
117
  msgstr ""
118
 
119
- #: admin/popup-admin.php:214
120
  msgid ""
121
  "Show the countdown at the bottom of the popup which dispay the time before "
122
  "popup will close. If is hidden, it run anyway."
123
  msgstr ""
124
 
125
- #: admin/popup-admin.php:216
126
  msgid "Countdown font color:"
127
  msgstr ""
128
 
129
- #: admin/popup-admin.php:217
130
  msgid "Select the countdown font color."
131
  msgstr ""
132
 
133
- #: admin/popup-admin.php:221
134
  msgid "POPUP ASPECT"
135
  msgstr ""
136
 
137
- #: admin/popup-admin.php:225
138
  msgid "Popup width:"
139
  msgstr ""
140
 
141
- #: admin/popup-admin.php:225
142
  msgid ""
143
  "Use the % to change width dinamically with the browser window , or px for "
144
  "fixed dimension i.e: 30% or 200px"
145
  msgstr ""
146
 
147
- #: admin/popup-admin.php:239
148
  msgid "Popup height:"
149
  msgstr ""
150
 
151
- #: admin/popup-admin.php:239
152
  msgid "Select auto to adapt popup height to the content"
153
  msgstr ""
154
 
155
- #: admin/popup-admin.php:253
156
  msgid "Popup background color"
157
  msgstr ""
158
 
159
- #: admin/popup-admin.php:255
160
  msgid "Popup border color:"
161
  msgstr ""
162
 
163
- #: admin/popup-admin.php:261
164
  msgid "Popup border radius(px):"
165
  msgstr ""
166
 
167
- #: admin/popup-admin.php:269
168
  msgid "Popup border width(px):"
169
  msgstr ""
170
 
171
- #: admin/popup-admin.php:277
172
  msgid "Popup padding(px):"
173
  msgstr ""
174
 
175
- #: admin/popup-admin.php:284
176
  msgid "BACKGROUND IMAGE"
177
  msgstr ""
178
 
179
- #: admin/popup-admin.php:285
180
  msgid "Show image"
181
  msgstr ""
182
 
183
- #: admin/popup-admin.php:288
184
  msgid "No background"
185
  msgstr ""
186
 
187
- #: admin/popup-admin.php:291
188
  msgid "Upload Image"
189
  msgstr ""
190
 
191
- #: admin/popup-admin.php:294
192
  msgid "Popup position:"
193
  msgstr ""
194
 
195
- #: admin/popup-admin.php:294
196
  msgid ""
197
  "Setting ABSOLUTE the popup will be static on the page. Setting FIXED it will "
198
  "scroll with the page."
199
  msgstr ""
200
 
201
- #: admin/popup-admin.php:306
202
  msgid "Automatic top margin:"
203
  msgstr ""
204
 
205
- #: admin/popup-admin.php:307
206
  msgid ""
207
  "The system will try to auto center the popup, in case of problem deselect "
208
  "this option"
209
  msgstr ""
210
 
211
- #: admin/popup-admin.php:312
212
  msgid "Popup top margin(px):"
213
  msgstr ""
214
 
215
- #: admin/popup-admin.php:322
216
  msgid "Background opacity"
217
  msgstr ""
218
 
219
- #: admin/popup-admin.php:322
220
  msgid "Set the opacity of opaque background under the popup."
221
  msgstr ""
222
 
223
- #: admin/popup-admin.php:343
224
  msgid "Opaque background color"
225
  msgstr ""
226
 
227
- #: admin/popup-admin.php:353
228
- msgid "Age restriction settings:"
 
 
 
 
 
 
 
 
 
 
229
  msgstr ""
230
 
231
  #: admin/popup-admin.php:357
 
 
 
 
 
 
 
 
 
 
 
 
232
  msgid "Enable age validation"
233
  msgstr ""
234
 
235
- #: admin/popup-admin.php:360
236
  msgid "Enter button text:"
237
  msgstr ""
238
 
239
- #: admin/popup-admin.php:361
240
  msgid "i.e.: I AM OVER 18 - ENTER"
241
  msgstr ""
242
 
243
- #: admin/popup-admin.php:365
244
  msgid "Enter button background color:"
245
  msgstr ""
246
 
247
- #: admin/popup-admin.php:368
248
  msgid "Enter button border color:"
249
  msgstr ""
250
 
251
- #: admin/popup-admin.php:371
252
  msgid "Enter button font color:"
253
  msgstr ""
254
 
255
- #: admin/popup-admin.php:376
256
  msgid "Leave button text:"
257
  msgstr ""
258
 
259
- #: admin/popup-admin.php:377
260
  msgid "i.e.: I AM UNDER 18 - LEAVE"
261
  msgstr ""
262
 
263
- #: admin/popup-admin.php:379
264
  msgid "Leave button url:"
265
  msgstr ""
266
 
267
- #: admin/popup-admin.php:380
268
  msgid "i.e.: http://www.mysite.com/leave.html"
269
  msgstr ""
270
 
271
- #: admin/popup-admin.php:384
272
  msgid "Leave button background color:"
273
  msgstr ""
274
 
275
- #: admin/popup-admin.php:387
276
  msgid "Leave button border color:"
277
  msgstr ""
278
 
279
- #: admin/popup-admin.php:390
280
  msgid "Leave button font color:"
281
  msgstr ""
282
 
283
- #: admin/popup-admin.php:402 admin/popup-admin.php:419
284
  msgid "Preview page"
285
  msgstr ""
286
 
287
- #: admin/popup-admin.php:410
288
  msgid "Your text (or HTML code:)"
289
  msgstr ""
290
 
291
- #: admin/popup-admin.php:427
292
  msgid "Like it? Offer us a coffee! ;-)"
293
  msgstr ""
294
 
295
- #: admin/popup-admin.php:432
296
  msgid "Make your donation"
297
  msgstr ""
298
 
299
- #: admin/popup-admin.php:433
300
  msgid "little donation"
301
  msgstr ""
302
 
303
- #: admin/popup-admin.php:434
304
  msgid "right donation"
305
  msgstr ""
306
 
307
- #: admin/popup-admin.php:435
308
  msgid "normal donation"
309
  msgstr ""
310
 
311
- #: admin/popup-admin.php:436
312
  msgid "good donation"
313
  msgstr ""
314
 
315
- #: admin/popup-admin.php:437
316
  msgid "great donation"
317
  msgstr ""
318
 
319
- #: admin/popup-admin.php:453
320
  msgid "DELETE ALL DATA ON PLUGIN UNISTALL"
321
  msgstr ""
322
 
323
- #: admin/popup-admin.php:454
324
  msgid ""
325
  "Check this box if you want to delete or maintain database tables. It is "
326
  "usefull if you have to try to install again the plugin, without lost your "
327
  "settings."
328
  msgstr ""
329
 
330
- #: templates/itro-popup-template.php:19
331
- msgid "CLOSE"
332
  msgstr ""
333
 
334
- #: templates/itro-popup-template.php:20
335
- msgid "This popup will be closed in: "
336
  msgstr ""
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: mc-plugin\n"
4
+ "POT-Creation-Date: 2013-06-18 14:01+0100\n"
5
+ "PO-Revision-Date: 2013-06-18 14:01+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: ITRO Corp\n"
8
  "MIME-Version: 1.0\n"
13
  "X-Poedit-Basepath: ../\n"
14
  "X-Poedit-SearchPath-0: .\n"
15
 
16
+ #: admin/popup-admin.php:128
17
  msgid "settings saved."
18
  msgstr ""
19
 
20
+ #: admin/popup-admin.php:135
21
  msgid "I.T.RO. Popup Plugin - Settings"
22
  msgstr ""
23
 
24
+ #: admin/popup-admin.php:147
25
  msgid "General Popup Option:"
26
  msgstr ""
27
 
28
+ #: admin/popup-admin.php:154
29
  msgid "SHOW ADVANCED SETTINGS"
30
  msgstr ""
31
 
32
+ #: admin/popup-admin.php:155
33
  msgid "Display many other options"
34
  msgstr ""
35
 
36
+ #: admin/popup-admin.php:160
37
  msgid "DECIDE WHERE POPUP WILL BE DISPLAYED"
38
  msgstr ""
39
 
40
+ #: admin/popup-admin.php:162
41
  msgid "Only selected pages"
42
  msgstr ""
43
 
44
+ #: admin/popup-admin.php:162
45
  msgid "Multiple choise with CTRL+Click or SHIFT+Arrow up or down"
46
  msgstr ""
47
 
48
+ #: admin/popup-admin.php:163
49
  msgid "All pages"
50
  msgstr ""
51
 
52
+ #: admin/popup-admin.php:164
53
  msgid "No page"
54
  msgstr ""
55
 
56
+ #: admin/popup-admin.php:168
57
  msgid "Blog homepage"
58
  msgstr ""
59
 
60
+ #: admin/popup-admin.php:170
61
  msgid ""
62
  "If in your Settings->Reading you have set 'Front page displays: Your latest "
63
  "posts' and want to display the popup in the home, check this box."
64
  msgstr ""
65
 
66
+ #: admin/popup-admin.php:179
67
  msgid "GENERAL SETTINGS"
68
  msgstr ""
69
 
70
+ #: admin/popup-admin.php:182
71
+ msgid "Disable on mobile device"
72
+ msgstr ""
73
+
74
+ #: admin/popup-admin.php:183
75
+ msgid "Check this to disable popup on mobile devices"
76
+ msgstr ""
77
+
78
+ #: admin/popup-admin.php:186
79
  msgid "Disable ESC key"
80
  msgstr ""
81
 
82
+ #: admin/popup-admin.php:187
83
  msgid ""
84
  "If you set this option popup can not be closed with ESC button of keyboard."
85
  msgstr ""
86
 
87
+ #: admin/popup-admin.php:192
88
  msgid "Popup seconds:"
89
  msgstr ""
90
 
91
+ #: admin/popup-admin.php:192
92
  msgid ""
93
  "Set seconds until the popup automatically close. Set it to zero to disable "
94
  "countdown."
95
  msgstr ""
96
 
97
+ #: admin/popup-admin.php:200
98
  msgid "Popup delay:"
99
  msgstr ""
100
 
101
+ #: admin/popup-admin.php:200
102
  msgid "Set seconds before the popup will be displayed"
103
  msgstr ""
104
 
105
+ #: admin/popup-admin.php:208
106
  msgid "Next visualization (hours):"
107
  msgstr ""
108
 
109
+ #: admin/popup-admin.php:208
110
  msgid ""
111
  "Set time for the next visualization of popup, to prevent annoying repeated "
112
  "visualizations, when someone visit pages"
113
  msgstr ""
114
 
115
+ #: admin/popup-admin.php:214
116
  msgid "Delete cookie"
117
  msgstr ""
118
 
119
+ #: admin/popup-admin.php:215
120
  msgid "Cookie deleted!"
121
  msgstr ""
122
 
123
+ #: admin/popup-admin.php:220
124
  msgid "Show countdown"
125
  msgstr ""
126
 
127
+ #: admin/popup-admin.php:221
128
  msgid ""
129
  "Show the countdown at the bottom of the popup which dispay the time before "
130
  "popup will close. If is hidden, it run anyway."
131
  msgstr ""
132
 
133
+ #: admin/popup-admin.php:223
134
  msgid "Countdown font color:"
135
  msgstr ""
136
 
137
+ #: admin/popup-admin.php:224
138
  msgid "Select the countdown font color."
139
  msgstr ""
140
 
141
+ #: admin/popup-admin.php:228
142
  msgid "POPUP ASPECT"
143
  msgstr ""
144
 
145
+ #: admin/popup-admin.php:232
146
  msgid "Popup width:"
147
  msgstr ""
148
 
149
+ #: admin/popup-admin.php:232
150
  msgid ""
151
  "Use the % to change width dinamically with the browser window , or px for "
152
  "fixed dimension i.e: 30% or 200px"
153
  msgstr ""
154
 
155
+ #: admin/popup-admin.php:246
156
  msgid "Popup height:"
157
  msgstr ""
158
 
159
+ #: admin/popup-admin.php:246
160
  msgid "Select auto to adapt popup height to the content"
161
  msgstr ""
162
 
163
+ #: admin/popup-admin.php:260
164
  msgid "Popup background color"
165
  msgstr ""
166
 
167
+ #: admin/popup-admin.php:262
168
  msgid "Popup border color:"
169
  msgstr ""
170
 
171
+ #: admin/popup-admin.php:268
172
  msgid "Popup border radius(px):"
173
  msgstr ""
174
 
175
+ #: admin/popup-admin.php:276
176
  msgid "Popup border width(px):"
177
  msgstr ""
178
 
179
+ #: admin/popup-admin.php:284
180
  msgid "Popup padding(px):"
181
  msgstr ""
182
 
183
+ #: admin/popup-admin.php:291
184
  msgid "BACKGROUND IMAGE"
185
  msgstr ""
186
 
187
+ #: admin/popup-admin.php:292
188
  msgid "Show image"
189
  msgstr ""
190
 
191
+ #: admin/popup-admin.php:295
192
  msgid "No background"
193
  msgstr ""
194
 
195
+ #: admin/popup-admin.php:298
196
  msgid "Upload Image"
197
  msgstr ""
198
 
199
+ #: admin/popup-admin.php:301
200
  msgid "Popup position:"
201
  msgstr ""
202
 
203
+ #: admin/popup-admin.php:301
204
  msgid ""
205
  "Setting ABSOLUTE the popup will be static on the page. Setting FIXED it will "
206
  "scroll with the page."
207
  msgstr ""
208
 
209
+ #: admin/popup-admin.php:312
210
  msgid "Automatic top margin:"
211
  msgstr ""
212
 
213
+ #: admin/popup-admin.php:313
214
  msgid ""
215
  "The system will try to auto center the popup, in case of problem deselect "
216
  "this option"
217
  msgstr ""
218
 
219
+ #: admin/popup-admin.php:318
220
  msgid "Popup top margin(px):"
221
  msgstr ""
222
 
223
+ #: admin/popup-admin.php:328
224
  msgid "Background opacity"
225
  msgstr ""
226
 
227
+ #: admin/popup-admin.php:328
228
  msgid "Set the opacity of opaque background under the popup."
229
  msgstr ""
230
 
231
+ #: admin/popup-admin.php:349
232
  msgid "Opaque background color"
233
  msgstr ""
234
 
235
+ #: admin/popup-admin.php:354
236
+ msgid "Close cross"
237
+ msgstr ""
238
+
239
+ #: admin/popup-admin.php:354
240
+ msgid ""
241
+ "Select the colour combination of the closing cross on the upper right of "
242
+ "popup."
243
+ msgstr ""
244
+
245
+ #: admin/popup-admin.php:356
246
+ msgid "Black"
247
  msgstr ""
248
 
249
  #: admin/popup-admin.php:357
250
+ msgid "White"
251
+ msgstr ""
252
+
253
+ #: admin/popup-admin.php:358
254
+ msgid "White with border"
255
+ msgstr ""
256
+
257
+ #: admin/popup-admin.php:367
258
+ msgid "Age restriction settings:"
259
+ msgstr ""
260
+
261
+ #: admin/popup-admin.php:371
262
  msgid "Enable age validation"
263
  msgstr ""
264
 
265
+ #: admin/popup-admin.php:374
266
  msgid "Enter button text:"
267
  msgstr ""
268
 
269
+ #: admin/popup-admin.php:375
270
  msgid "i.e.: I AM OVER 18 - ENTER"
271
  msgstr ""
272
 
273
+ #: admin/popup-admin.php:379
274
  msgid "Enter button background color:"
275
  msgstr ""
276
 
277
+ #: admin/popup-admin.php:382
278
  msgid "Enter button border color:"
279
  msgstr ""
280
 
281
+ #: admin/popup-admin.php:385
282
  msgid "Enter button font color:"
283
  msgstr ""
284
 
285
+ #: admin/popup-admin.php:390
286
  msgid "Leave button text:"
287
  msgstr ""
288
 
289
+ #: admin/popup-admin.php:391
290
  msgid "i.e.: I AM UNDER 18 - LEAVE"
291
  msgstr ""
292
 
293
+ #: admin/popup-admin.php:393
294
  msgid "Leave button url:"
295
  msgstr ""
296
 
297
+ #: admin/popup-admin.php:394
298
  msgid "i.e.: http://www.mysite.com/leave.html"
299
  msgstr ""
300
 
301
+ #: admin/popup-admin.php:398
302
  msgid "Leave button background color:"
303
  msgstr ""
304
 
305
+ #: admin/popup-admin.php:401
306
  msgid "Leave button border color:"
307
  msgstr ""
308
 
309
+ #: admin/popup-admin.php:404
310
  msgid "Leave button font color:"
311
  msgstr ""
312
 
313
+ #: admin/popup-admin.php:416 admin/popup-admin.php:433
314
  msgid "Preview page"
315
  msgstr ""
316
 
317
+ #: admin/popup-admin.php:424
318
  msgid "Your text (or HTML code:)"
319
  msgstr ""
320
 
321
+ #: admin/popup-admin.php:441
322
  msgid "Like it? Offer us a coffee! ;-)"
323
  msgstr ""
324
 
325
+ #: admin/popup-admin.php:446
326
  msgid "Make your donation"
327
  msgstr ""
328
 
329
+ #: admin/popup-admin.php:447
330
  msgid "little donation"
331
  msgstr ""
332
 
333
+ #: admin/popup-admin.php:448
334
  msgid "right donation"
335
  msgstr ""
336
 
337
+ #: admin/popup-admin.php:449
338
  msgid "normal donation"
339
  msgstr ""
340
 
341
+ #: admin/popup-admin.php:450
342
  msgid "good donation"
343
  msgstr ""
344
 
345
+ #: admin/popup-admin.php:451
346
  msgid "great donation"
347
  msgstr ""
348
 
349
+ #: admin/popup-admin.php:467
350
  msgid "DELETE ALL DATA ON PLUGIN UNISTALL"
351
  msgstr ""
352
 
353
+ #: admin/popup-admin.php:468
354
  msgid ""
355
  "Check this box if you want to delete or maintain database tables. It is "
356
  "usefull if you have to try to install again the plugin, without lost your "
357
  "settings."
358
  msgstr ""
359
 
360
+ #: templates/itro-popup-template.php:22
361
+ msgid "This popup will be closed in: "
362
  msgstr ""
363
 
364
+ #: templates/itro-popup-template.php:37
365
+ msgid "CLOSE"
366
  msgstr ""
languages/itro-plugin-it_IT.mo CHANGED
Binary file
languages/itro-plugin-it_IT.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: mc-plugin\n"
4
- "POT-Creation-Date: 2013-05-07 17:10+0100\n"
5
- "PO-Revision-Date: 2013-05-07 17:11+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: ITRO Corp\n"
8
  "Language: ITALIANO\n"
@@ -14,51 +14,51 @@ msgstr ""
14
  "X-Poedit-Basepath: ../\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
- #: admin/popup-admin.php:125
18
  msgid "settings saved."
19
  msgstr "Impostazioni salvate"
20
 
21
- #: admin/popup-admin.php:132
22
  msgid "I.T.RO. Popup Plugin - Settings"
23
  msgstr "ITRO Popup Plugin - Impostazioni"
24
 
25
- #: admin/popup-admin.php:144
26
  msgid "General Popup Option:"
27
  msgstr "Impostazioni Generali"
28
 
29
- #: admin/popup-admin.php:151
30
  msgid "SHOW ADVANCED SETTINGS"
31
  msgstr "VISUALIZZA LE IMPOSTAZIONI AVANZATE"
32
 
33
- #: admin/popup-admin.php:152
34
  msgid "Display many other options"
35
  msgstr "Visualizza moltre altre funzioni per utenti avanzati"
36
 
37
- #: admin/popup-admin.php:157
38
  msgid "DECIDE WHERE POPUP WILL BE DISPLAYED"
39
  msgstr "DECIDERE DOVE VISUALIZZARE IL POPUP"
40
 
41
- #: admin/popup-admin.php:159
42
  msgid "Only selected pages"
43
  msgstr "Solo pagine selezionate"
44
 
45
- #: admin/popup-admin.php:159
46
  msgid "Multiple choise with CTRL+Click or SHIFT+Arrow up or down"
47
  msgstr "Scelta multipla con CTRL+Click o SHIFT+Freccia su o giu"
48
 
49
- #: admin/popup-admin.php:160
50
  msgid "All pages"
51
  msgstr "Tutte le pagine"
52
 
53
- #: admin/popup-admin.php:161
54
  msgid "No page"
55
  msgstr "Nessuna pagina"
56
 
57
- #: admin/popup-admin.php:165
58
  msgid "Blog homepage"
59
  msgstr "Blog homepage"
60
 
61
- #: admin/popup-admin.php:167
62
  msgid ""
63
  "If in your Settings->Reading you have set 'Front page displays: Your latest "
64
  "posts' and want to display the popup in the home, check this box."
@@ -67,26 +67,35 @@ msgstr ""
67
  "Gli ultimi articoli' e su vuole visualizzare il popup in home, sezionare la "
68
  "casella."
69
 
70
- #: admin/popup-admin.php:176
71
  msgid "GENERAL SETTINGS"
72
  msgstr "IMPOSTAZIONI GENERALI"
73
 
74
- #: admin/popup-admin.php:179
 
 
 
 
 
 
 
 
 
75
  msgid "Disable ESC key"
76
  msgstr "Disabilitare tasto ESC"
77
 
78
- #: admin/popup-admin.php:180
79
  msgid ""
80
  "If you set this option popup can not be closed with ESC button of keyboard."
81
  msgstr ""
82
  "Selezionando questa opzione il popup non può essere chiuso con il tasto ESC. "
83
  "Si chiuderà automaticamente solo con il conto alla rovescia."
84
 
85
- #: admin/popup-admin.php:185
86
  msgid "Popup seconds:"
87
  msgstr "Secondi popup:"
88
 
89
- #: admin/popup-admin.php:185
90
  msgid ""
91
  "Set seconds until the popup automatically close. Set it to zero to disable "
92
  "countdown."
@@ -94,19 +103,19 @@ msgstr ""
94
  "Imposta i secondi prima che il popup si chiuda automaticamente. Lasciare a "
95
  "zero per disabilitare il conto alla rovescia."
96
 
97
- #: admin/popup-admin.php:193
98
  msgid "Popup delay:"
99
  msgstr "Ritardo popup:"
100
 
101
- #: admin/popup-admin.php:193
102
  msgid "Set seconds before the popup will be displayed"
103
  msgstr "Imposta il tempo di ritardo prima che il popup venga visualizzato."
104
 
105
- #: admin/popup-admin.php:201
106
  msgid "Next visualization (hours):"
107
  msgstr "Prossima visualizzazione (ore):"
108
 
109
- #: admin/popup-admin.php:201
110
  msgid ""
111
  "Set time for the next visualization of popup, to prevent annoying repeated "
112
  "visualizations, when someone visit pages"
@@ -115,19 +124,19 @@ msgstr ""
115
  "della pagina. Serve ad evitare fastidiose ripetute visualizzazioni dello "
116
  "stesso."
117
 
118
- #: admin/popup-admin.php:207
119
  msgid "Delete cookie"
120
  msgstr "Elimina cookie"
121
 
122
- #: admin/popup-admin.php:208
123
  msgid "Cookie deleted!"
124
  msgstr "Cookie eliminato!"
125
 
126
- #: admin/popup-admin.php:213
127
  msgid "Show countdown"
128
  msgstr "Visualizza conto alla rovescia"
129
 
130
- #: admin/popup-admin.php:214
131
  msgid ""
132
  "Show the countdown at the bottom of the popup which dispay the time before "
133
  "popup will close. If is hidden, it run anyway."
@@ -135,23 +144,23 @@ msgstr ""
135
  "Visualizza il conto alla rovescia prima che il popup si chiuda, in fondo "
136
  "allo stesso. Anche se nascosto, funzionerà comunque."
137
 
138
- #: admin/popup-admin.php:216
139
  msgid "Countdown font color:"
140
  msgstr "Colore font:"
141
 
142
- #: admin/popup-admin.php:217
143
  msgid "Select the countdown font color."
144
  msgstr "Selezionare il colore del font del conto alla rovescia."
145
 
146
- #: admin/popup-admin.php:221
147
  msgid "POPUP ASPECT"
148
  msgstr "ASPETTO POPUP"
149
 
150
- #: admin/popup-admin.php:225
151
  msgid "Popup width:"
152
  msgstr "Larghezza Popup:"
153
 
154
- #: admin/popup-admin.php:225
155
  msgid ""
156
  "Use the % to change width dinamically with the browser window , or px for "
157
  "fixed dimension i.e: 30% or 200px"
@@ -159,55 +168,55 @@ msgstr ""
159
  "Usare il % per far cambiare dinamicamente le dimensioni con il "
160
  "ridimensionamento della finestra, o px per dimensioni fisse. es: 30% o 200px"
161
 
162
- #: admin/popup-admin.php:239
163
  msgid "Popup height:"
164
  msgstr "Altezza Popup:"
165
 
166
- #: admin/popup-admin.php:239
167
  msgid "Select auto to adapt popup height to the content"
168
  msgstr "Selezionare auto per far adattare l'altezza del popup al contenuto."
169
 
170
- #: admin/popup-admin.php:253
171
  msgid "Popup background color"
172
  msgstr "Colore di sfondo:"
173
 
174
- #: admin/popup-admin.php:255
175
  msgid "Popup border color:"
176
  msgstr "Colore bordo:"
177
 
178
- #: admin/popup-admin.php:261
179
  msgid "Popup border radius(px):"
180
  msgstr "Rotondità bordo popup(px):"
181
 
182
- #: admin/popup-admin.php:269
183
  msgid "Popup border width(px):"
184
  msgstr "Spessore bordo popup(px):"
185
 
186
- #: admin/popup-admin.php:277
187
  msgid "Popup padding(px):"
188
  msgstr "Spaziatura interna (px):"
189
 
190
- #: admin/popup-admin.php:284
191
  msgid "BACKGROUND IMAGE"
192
  msgstr "IMMAGINE DI SFONDO"
193
 
194
- #: admin/popup-admin.php:285
195
  msgid "Show image"
196
  msgstr "Visualizza immagine"
197
 
198
- #: admin/popup-admin.php:288
199
  msgid "No background"
200
  msgstr "Nessuno sfondo"
201
 
202
- #: admin/popup-admin.php:291
203
  msgid "Upload Image"
204
  msgstr "Carica Immagine"
205
 
206
- #: admin/popup-admin.php:294
207
  msgid "Popup position:"
208
  msgstr "Posizione del popup:"
209
 
210
- #: admin/popup-admin.php:294
211
  msgid ""
212
  "Setting ABSOLUTE the popup will be static on the page. Setting FIXED it will "
213
  "scroll with the page."
@@ -215,11 +224,11 @@ msgstr ""
215
  "Impostare ABSOLUTE per avere il popup fisso sulla pagina, FIXED per farlo "
216
  "scorrere con la pagina."
217
 
218
- #: admin/popup-admin.php:306
219
  msgid "Automatic top margin:"
220
  msgstr "Margine superiore automatico"
221
 
222
- #: admin/popup-admin.php:307
223
  msgid ""
224
  "The system will try to auto center the popup, in case of problem deselect "
225
  "this option"
@@ -227,119 +236,143 @@ msgstr ""
227
  "Il sistema proverà a centrare automaticamente il popup, in caso di problemi "
228
  "deselezionare questa opzione."
229
 
230
- #: admin/popup-admin.php:312
231
  msgid "Popup top margin(px):"
232
  msgstr "Margine superiore popup (px):"
233
 
234
- #: admin/popup-admin.php:322
235
  msgid "Background opacity"
236
  msgstr "Opacità sfondo"
237
 
238
- #: admin/popup-admin.php:322
239
  msgid "Set the opacity of opaque background under the popup."
240
  msgstr "Imposta l'opacità dello sfondo che compare dietro al popup."
241
 
242
- #: admin/popup-admin.php:343
243
  msgid "Opaque background color"
244
  msgstr "Colore sfondo opaco:"
245
 
246
- #: admin/popup-admin.php:353
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
247
  msgid "Age restriction settings:"
248
  msgstr "Sito con restrizioni di età:"
249
 
250
- #: admin/popup-admin.php:357
251
  msgid "Enable age validation"
252
  msgstr "Abilita blocco et&agrave;"
253
 
254
- #: admin/popup-admin.php:360
255
  msgid "Enter button text:"
256
  msgstr "Testo bottone di ingresso:"
257
 
258
- #: admin/popup-admin.php:361
259
  msgid "i.e.: I AM OVER 18 - ENTER"
260
  msgstr "es: HO PI&#218; DI 18 ANNI - ENTRA"
261
 
262
- #: admin/popup-admin.php:365
263
  msgid "Enter button background color:"
264
  msgstr "Colore di sfondo bottone di ingresso:"
265
 
266
- #: admin/popup-admin.php:368
267
  msgid "Enter button border color:"
268
  msgstr "Colore bordo pulsante di ingresso:"
269
 
270
- #: admin/popup-admin.php:371
271
  msgid "Enter button font color:"
272
  msgstr "Colore font pulsante di ingresso:"
273
 
274
- #: admin/popup-admin.php:376
275
  msgid "Leave button text:"
276
  msgstr "Testo pulsante di allontanamento:"
277
 
278
- #: admin/popup-admin.php:377
279
  msgid "i.e.: I AM UNDER 18 - LEAVE"
280
  msgstr "es: HO MENO DI 18 ANNI - ALLONTANAMI DAL SITO"
281
 
282
- #: admin/popup-admin.php:379
283
  msgid "Leave button url:"
284
  msgstr "Url bottone di allontanamento:"
285
 
286
- #: admin/popup-admin.php:380
287
  msgid "i.e.: http://www.mysite.com/leave.html"
288
  msgstr "es.: http://www.mysite.com/leave.html"
289
 
290
- #: admin/popup-admin.php:384
291
  msgid "Leave button background color:"
292
  msgstr "Colore di sfondo pulsante di allontanamento:"
293
 
294
- #: admin/popup-admin.php:387
295
  msgid "Leave button border color:"
296
  msgstr "Colore bordo pulsante allontanamento:"
297
 
298
- #: admin/popup-admin.php:390
299
  msgid "Leave button font color:"
300
  msgstr "Colore font pulsante allontanamento:"
301
 
302
- #: admin/popup-admin.php:402 admin/popup-admin.php:419
303
  msgid "Preview page"
304
  msgstr "Pagina di anteprima"
305
 
306
- #: admin/popup-admin.php:410
307
  msgid "Your text (or HTML code:)"
308
  msgstr "Il tuo testo (o il codice HTML)"
309
 
310
- #: admin/popup-admin.php:427
311
  msgid "Like it? Offer us a coffee! ;-)"
312
  msgstr "Il plugin ti piace? Offrici un caffè! ;-)"
313
 
314
- #: admin/popup-admin.php:432
315
  msgid "Make your donation"
316
  msgstr "Fai la tua donazione"
317
 
318
- #: admin/popup-admin.php:433
319
  msgid "little donation"
320
  msgstr "donazione piccola"
321
 
322
- #: admin/popup-admin.php:434
323
  msgid "right donation"
324
  msgstr "donazione giusta"
325
 
326
- #: admin/popup-admin.php:435
327
  msgid "normal donation"
328
  msgstr "donazione normale"
329
 
330
- #: admin/popup-admin.php:436
331
  msgid "good donation"
332
  msgstr "donazione corposa"
333
 
334
- #: admin/popup-admin.php:437
335
  msgid "great donation"
336
  msgstr "donazione grande"
337
 
338
- #: admin/popup-admin.php:453
339
  msgid "DELETE ALL DATA ON PLUGIN UNISTALL"
340
  msgstr "ELIMINA TUTTI DATI ALLA DISINSTALLAZIONE DEL PLUGIN"
341
 
342
- #: admin/popup-admin.php:454
343
  msgid ""
344
  "Check this box if you want to delete or maintain database tables. It is "
345
  "usefull if you have to try to install again the plugin, without lost your "
@@ -348,14 +381,14 @@ msgstr ""
348
  "Selezionare questa casella se si desidera rimuovere tutte le tabelle dal "
349
  "database."
350
 
351
- #: templates/itro-popup-template.php:19
352
- msgid "CLOSE"
353
- msgstr "CHIUDI"
354
-
355
- #: templates/itro-popup-template.php:20
356
  msgid "This popup will be closed in: "
357
  msgstr "Questo popup verr&agrave; chiuso tra:"
358
 
 
 
 
 
359
  #~ msgid "thiny donation"
360
  #~ msgstr "donazione minima"
361
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: mc-plugin\n"
4
+ "POT-Creation-Date: 2013-06-18 14:02+0100\n"
5
+ "PO-Revision-Date: 2013-06-18 14:02+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: ITRO Corp\n"
8
  "Language: ITALIANO\n"
14
  "X-Poedit-Basepath: ../\n"
15
  "X-Poedit-SearchPath-0: .\n"
16
 
17
+ #: admin/popup-admin.php:128
18
  msgid "settings saved."
19
  msgstr "Impostazioni salvate"
20
 
21
+ #: admin/popup-admin.php:135
22
  msgid "I.T.RO. Popup Plugin - Settings"
23
  msgstr "ITRO Popup Plugin - Impostazioni"
24
 
25
+ #: admin/popup-admin.php:147
26
  msgid "General Popup Option:"
27
  msgstr "Impostazioni Generali"
28
 
29
+ #: admin/popup-admin.php:154
30
  msgid "SHOW ADVANCED SETTINGS"
31
  msgstr "VISUALIZZA LE IMPOSTAZIONI AVANZATE"
32
 
33
+ #: admin/popup-admin.php:155
34
  msgid "Display many other options"
35
  msgstr "Visualizza moltre altre funzioni per utenti avanzati"
36
 
37
+ #: admin/popup-admin.php:160
38
  msgid "DECIDE WHERE POPUP WILL BE DISPLAYED"
39
  msgstr "DECIDERE DOVE VISUALIZZARE IL POPUP"
40
 
41
+ #: admin/popup-admin.php:162
42
  msgid "Only selected pages"
43
  msgstr "Solo pagine selezionate"
44
 
45
+ #: admin/popup-admin.php:162
46
  msgid "Multiple choise with CTRL+Click or SHIFT+Arrow up or down"
47
  msgstr "Scelta multipla con CTRL+Click o SHIFT+Freccia su o giu"
48
 
49
+ #: admin/popup-admin.php:163
50
  msgid "All pages"
51
  msgstr "Tutte le pagine"
52
 
53
+ #: admin/popup-admin.php:164
54
  msgid "No page"
55
  msgstr "Nessuna pagina"
56
 
57
+ #: admin/popup-admin.php:168
58
  msgid "Blog homepage"
59
  msgstr "Blog homepage"
60
 
61
+ #: admin/popup-admin.php:170
62
  msgid ""
63
  "If in your Settings->Reading you have set 'Front page displays: Your latest "
64
  "posts' and want to display the popup in the home, check this box."
67
  "Gli ultimi articoli' e su vuole visualizzare il popup in home, sezionare la "
68
  "casella."
69
 
70
+ #: admin/popup-admin.php:179
71
  msgid "GENERAL SETTINGS"
72
  msgstr "IMPOSTAZIONI GENERALI"
73
 
74
+ #: admin/popup-admin.php:182
75
+ msgid "Disable on mobile device"
76
+ msgstr "Disabilita per dispositivi mobili"
77
+
78
+ #: admin/popup-admin.php:183
79
+ msgid "Check this to disable popup on mobile devices"
80
+ msgstr ""
81
+ "Selezionare questo riquadro per disabilitare il popup sui dispositivi mobili."
82
+
83
+ #: admin/popup-admin.php:186
84
  msgid "Disable ESC key"
85
  msgstr "Disabilitare tasto ESC"
86
 
87
+ #: admin/popup-admin.php:187
88
  msgid ""
89
  "If you set this option popup can not be closed with ESC button of keyboard."
90
  msgstr ""
91
  "Selezionando questa opzione il popup non può essere chiuso con il tasto ESC. "
92
  "Si chiuderà automaticamente solo con il conto alla rovescia."
93
 
94
+ #: admin/popup-admin.php:192
95
  msgid "Popup seconds:"
96
  msgstr "Secondi popup:"
97
 
98
+ #: admin/popup-admin.php:192
99
  msgid ""
100
  "Set seconds until the popup automatically close. Set it to zero to disable "
101
  "countdown."
103
  "Imposta i secondi prima che il popup si chiuda automaticamente. Lasciare a "
104
  "zero per disabilitare il conto alla rovescia."
105
 
106
+ #: admin/popup-admin.php:200
107
  msgid "Popup delay:"
108
  msgstr "Ritardo popup:"
109
 
110
+ #: admin/popup-admin.php:200
111
  msgid "Set seconds before the popup will be displayed"
112
  msgstr "Imposta il tempo di ritardo prima che il popup venga visualizzato."
113
 
114
+ #: admin/popup-admin.php:208
115
  msgid "Next visualization (hours):"
116
  msgstr "Prossima visualizzazione (ore):"
117
 
118
+ #: admin/popup-admin.php:208
119
  msgid ""
120
  "Set time for the next visualization of popup, to prevent annoying repeated "
121
  "visualizations, when someone visit pages"
124
  "della pagina. Serve ad evitare fastidiose ripetute visualizzazioni dello "
125
  "stesso."
126
 
127
+ #: admin/popup-admin.php:214
128
  msgid "Delete cookie"
129
  msgstr "Elimina cookie"
130
 
131
+ #: admin/popup-admin.php:215
132
  msgid "Cookie deleted!"
133
  msgstr "Cookie eliminato!"
134
 
135
+ #: admin/popup-admin.php:220
136
  msgid "Show countdown"
137
  msgstr "Visualizza conto alla rovescia"
138
 
139
+ #: admin/popup-admin.php:221
140
  msgid ""
141
  "Show the countdown at the bottom of the popup which dispay the time before "
142
  "popup will close. If is hidden, it run anyway."
144
  "Visualizza il conto alla rovescia prima che il popup si chiuda, in fondo "
145
  "allo stesso. Anche se nascosto, funzionerà comunque."
146
 
147
+ #: admin/popup-admin.php:223
148
  msgid "Countdown font color:"
149
  msgstr "Colore font:"
150
 
151
+ #: admin/popup-admin.php:224
152
  msgid "Select the countdown font color."
153
  msgstr "Selezionare il colore del font del conto alla rovescia."
154
 
155
+ #: admin/popup-admin.php:228
156
  msgid "POPUP ASPECT"
157
  msgstr "ASPETTO POPUP"
158
 
159
+ #: admin/popup-admin.php:232
160
  msgid "Popup width:"
161
  msgstr "Larghezza Popup:"
162
 
163
+ #: admin/popup-admin.php:232
164
  msgid ""
165
  "Use the % to change width dinamically with the browser window , or px for "
166
  "fixed dimension i.e: 30% or 200px"
168
  "Usare il % per far cambiare dinamicamente le dimensioni con il "
169
  "ridimensionamento della finestra, o px per dimensioni fisse. es: 30% o 200px"
170
 
171
+ #: admin/popup-admin.php:246
172
  msgid "Popup height:"
173
  msgstr "Altezza Popup:"
174
 
175
+ #: admin/popup-admin.php:246
176
  msgid "Select auto to adapt popup height to the content"
177
  msgstr "Selezionare auto per far adattare l'altezza del popup al contenuto."
178
 
179
+ #: admin/popup-admin.php:260
180
  msgid "Popup background color"
181
  msgstr "Colore di sfondo:"
182
 
183
+ #: admin/popup-admin.php:262
184
  msgid "Popup border color:"
185
  msgstr "Colore bordo:"
186
 
187
+ #: admin/popup-admin.php:268
188
  msgid "Popup border radius(px):"
189
  msgstr "Rotondità bordo popup(px):"
190
 
191
+ #: admin/popup-admin.php:276
192
  msgid "Popup border width(px):"
193
  msgstr "Spessore bordo popup(px):"
194
 
195
+ #: admin/popup-admin.php:284
196
  msgid "Popup padding(px):"
197
  msgstr "Spaziatura interna (px):"
198
 
199
+ #: admin/popup-admin.php:291
200
  msgid "BACKGROUND IMAGE"
201
  msgstr "IMMAGINE DI SFONDO"
202
 
203
+ #: admin/popup-admin.php:292
204
  msgid "Show image"
205
  msgstr "Visualizza immagine"
206
 
207
+ #: admin/popup-admin.php:295
208
  msgid "No background"
209
  msgstr "Nessuno sfondo"
210
 
211
+ #: admin/popup-admin.php:298
212
  msgid "Upload Image"
213
  msgstr "Carica Immagine"
214
 
215
+ #: admin/popup-admin.php:301
216
  msgid "Popup position:"
217
  msgstr "Posizione del popup:"
218
 
219
+ #: admin/popup-admin.php:301
220
  msgid ""
221
  "Setting ABSOLUTE the popup will be static on the page. Setting FIXED it will "
222
  "scroll with the page."
224
  "Impostare ABSOLUTE per avere il popup fisso sulla pagina, FIXED per farlo "
225
  "scorrere con la pagina."
226
 
227
+ #: admin/popup-admin.php:312
228
  msgid "Automatic top margin:"
229
  msgstr "Margine superiore automatico"
230
 
231
+ #: admin/popup-admin.php:313
232
  msgid ""
233
  "The system will try to auto center the popup, in case of problem deselect "
234
  "this option"
236
  "Il sistema proverà a centrare automaticamente il popup, in caso di problemi "
237
  "deselezionare questa opzione."
238
 
239
+ #: admin/popup-admin.php:318
240
  msgid "Popup top margin(px):"
241
  msgstr "Margine superiore popup (px):"
242
 
243
+ #: admin/popup-admin.php:328
244
  msgid "Background opacity"
245
  msgstr "Opacità sfondo"
246
 
247
+ #: admin/popup-admin.php:328
248
  msgid "Set the opacity of opaque background under the popup."
249
  msgstr "Imposta l'opacità dello sfondo che compare dietro al popup."
250
 
251
+ #: admin/popup-admin.php:349
252
  msgid "Opaque background color"
253
  msgstr "Colore sfondo opaco:"
254
 
255
+ #: admin/popup-admin.php:354
256
+ msgid "Close cross"
257
+ msgstr "Croce di chiusura"
258
+
259
+ #: admin/popup-admin.php:354
260
+ msgid ""
261
+ "Select the colour combination of the closing cross on the upper right of "
262
+ "popup."
263
+ msgstr ""
264
+ "Selezionare la combinazione di colori per la croce di chiusura del popup, "
265
+ "posta in alto a destra,"
266
+
267
+ #: admin/popup-admin.php:356
268
+ msgid "Black"
269
+ msgstr "Nera"
270
+
271
+ #: admin/popup-admin.php:357
272
+ msgid "White"
273
+ msgstr "Bianca"
274
+
275
+ #: admin/popup-admin.php:358
276
+ msgid "White with border"
277
+ msgstr "Bianca con bordi"
278
+
279
+ #: admin/popup-admin.php:367
280
  msgid "Age restriction settings:"
281
  msgstr "Sito con restrizioni di età:"
282
 
283
+ #: admin/popup-admin.php:371
284
  msgid "Enable age validation"
285
  msgstr "Abilita blocco et&agrave;"
286
 
287
+ #: admin/popup-admin.php:374
288
  msgid "Enter button text:"
289
  msgstr "Testo bottone di ingresso:"
290
 
291
+ #: admin/popup-admin.php:375
292
  msgid "i.e.: I AM OVER 18 - ENTER"
293
  msgstr "es: HO PI&#218; DI 18 ANNI - ENTRA"
294
 
295
+ #: admin/popup-admin.php:379
296
  msgid "Enter button background color:"
297
  msgstr "Colore di sfondo bottone di ingresso:"
298
 
299
+ #: admin/popup-admin.php:382
300
  msgid "Enter button border color:"
301
  msgstr "Colore bordo pulsante di ingresso:"
302
 
303
+ #: admin/popup-admin.php:385
304
  msgid "Enter button font color:"
305
  msgstr "Colore font pulsante di ingresso:"
306
 
307
+ #: admin/popup-admin.php:390
308
  msgid "Leave button text:"
309
  msgstr "Testo pulsante di allontanamento:"
310
 
311
+ #: admin/popup-admin.php:391
312
  msgid "i.e.: I AM UNDER 18 - LEAVE"
313
  msgstr "es: HO MENO DI 18 ANNI - ALLONTANAMI DAL SITO"
314
 
315
+ #: admin/popup-admin.php:393
316
  msgid "Leave button url:"
317
  msgstr "Url bottone di allontanamento:"
318
 
319
+ #: admin/popup-admin.php:394
320
  msgid "i.e.: http://www.mysite.com/leave.html"
321
  msgstr "es.: http://www.mysite.com/leave.html"
322
 
323
+ #: admin/popup-admin.php:398
324
  msgid "Leave button background color:"
325
  msgstr "Colore di sfondo pulsante di allontanamento:"
326
 
327
+ #: admin/popup-admin.php:401
328
  msgid "Leave button border color:"
329
  msgstr "Colore bordo pulsante allontanamento:"
330
 
331
+ #: admin/popup-admin.php:404
332
  msgid "Leave button font color:"
333
  msgstr "Colore font pulsante allontanamento:"
334
 
335
+ #: admin/popup-admin.php:416 admin/popup-admin.php:433
336
  msgid "Preview page"
337
  msgstr "Pagina di anteprima"
338
 
339
+ #: admin/popup-admin.php:424
340
  msgid "Your text (or HTML code:)"
341
  msgstr "Il tuo testo (o il codice HTML)"
342
 
343
+ #: admin/popup-admin.php:441
344
  msgid "Like it? Offer us a coffee! ;-)"
345
  msgstr "Il plugin ti piace? Offrici un caffè! ;-)"
346
 
347
+ #: admin/popup-admin.php:446
348
  msgid "Make your donation"
349
  msgstr "Fai la tua donazione"
350
 
351
+ #: admin/popup-admin.php:447
352
  msgid "little donation"
353
  msgstr "donazione piccola"
354
 
355
+ #: admin/popup-admin.php:448
356
  msgid "right donation"
357
  msgstr "donazione giusta"
358
 
359
+ #: admin/popup-admin.php:449
360
  msgid "normal donation"
361
  msgstr "donazione normale"
362
 
363
+ #: admin/popup-admin.php:450
364
  msgid "good donation"
365
  msgstr "donazione corposa"
366
 
367
+ #: admin/popup-admin.php:451
368
  msgid "great donation"
369
  msgstr "donazione grande"
370
 
371
+ #: admin/popup-admin.php:467
372
  msgid "DELETE ALL DATA ON PLUGIN UNISTALL"
373
  msgstr "ELIMINA TUTTI DATI ALLA DISINSTALLAZIONE DEL PLUGIN"
374
 
375
+ #: admin/popup-admin.php:468
376
  msgid ""
377
  "Check this box if you want to delete or maintain database tables. It is "
378
  "usefull if you have to try to install again the plugin, without lost your "
381
  "Selezionare questa casella se si desidera rimuovere tutte le tabelle dal "
382
  "database."
383
 
384
+ #: templates/itro-popup-template.php:22
 
 
 
 
385
  msgid "This popup will be closed in: "
386
  msgstr "Questo popup verr&agrave; chiuso tra:"
387
 
388
+ #: templates/itro-popup-template.php:37
389
+ msgid "CLOSE"
390
+ msgstr "CHIUDI"
391
+
392
  #~ msgid "thiny donation"
393
  #~ msgstr "donazione minima"
394
 
mc-main.php CHANGED
@@ -8,12 +8,12 @@ Plugin URI: http://www.itro.eu/
8
  Description: EN - Show a perfecly centered customizable popup and a popup-system for age-restricted site and allow to insert own HTML code. IT - Visualizza un popup perfettamente centrato e personalizzabile con possibile blocco per i siti con restrizioni di eta' e permette di inserire il proprio codice HTML.
9
  Author: I.T.RO.(c) Sez. Informatica
10
  E-mail: support.itro@live.com
11
- Version: 4.3.2
12
  Author URI: http://www.itro.eu/
13
  */
14
 
15
  global $ITRO_VER;
16
- $ITRO_VER = 4.32;
17
  define('itroLocalPath', __DIR__);
18
  define('itroPath', plugins_url() . '/itro-popup/');
19
  define('itroImages', plugins_url() . '/itro-popup/images/');
8
  Description: EN - Show a perfecly centered customizable popup and a popup-system for age-restricted site and allow to insert own HTML code. IT - Visualizza un popup perfettamente centrato e personalizzabile con possibile blocco per i siti con restrizioni di eta' e permette di inserire il proprio codice HTML.
9
  Author: I.T.RO.(c) Sez. Informatica
10
  E-mail: support.itro@live.com
11
+ Version: 4.4
12
  Author URI: http://www.itro.eu/
13
  */
14
 
15
  global $ITRO_VER;
16
+ $ITRO_VER = 4.4;
17
  define('itroLocalPath', __DIR__);
18
  define('itroPath', plugins_url() . '/itro-popup/');
19
  define('itroImages', plugins_url() . '/itro-popup/images/');
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: ITRO
3
  Donate link: http://www.itro.eu/index.php/donate/
4
  Tags: popup, age restriction, block, violence, age validation, adult, adult content, content warning, wp editor, fancy box, fancy popup, custom popup, advertising popup, ads, ads popup, pop-up, lightbox, lightbox popup,
5
  Requires at least: 3.0.1
6
- Tested up to: 3.5.1
7
- Stable tag: 4.3.2
8
  License: GPLv3 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -75,6 +75,9 @@ DONATE NOW! - HELP US TO DEVELOP FOR YOU! [DONATE NOW](http://www.itro.eu/?page_
75
  no screenshot avaliable
76
 
77
  == Changelog ==
 
 
 
78
  = 4.3.2 =
79
  Woocommerce compatibility problem fixed (popup not works on shop page).
80
 
@@ -202,7 +205,7 @@ bug fixed: color table now works in admin pannel.
202
  First released version.
203
 
204
  == Upgrade Notice ==
205
- Woocommerce compatibility problem fixed (popup not works on shop page).
206
 
207
  == Notes ==
208
  FOR TUTORIAL AND FAQ VISIT THE OFFICIAL SITE [CLICK HERE!](http://www.itro.eu/?page_id=390)
3
  Donate link: http://www.itro.eu/index.php/donate/
4
  Tags: popup, age restriction, block, violence, age validation, adult, adult content, content warning, wp editor, fancy box, fancy popup, custom popup, advertising popup, ads, ads popup, pop-up, lightbox, lightbox popup,
5
  Requires at least: 3.0.1
6
+ Tested up to: 3.3
7
+ Stable tag: 4.4
8
  License: GPLv3 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
75
  no screenshot avaliable
76
 
77
  == Changelog ==
78
+ = 4.4 =
79
+ Popup can be disabled for mobile devices. Close cross can be changed for dark or light background.
80
+
81
  = 4.3.2 =
82
  Woocommerce compatibility problem fixed (popup not works on shop page).
83
 
205
  First released version.
206
 
207
  == Upgrade Notice ==
208
+ Popup can be disabled for mobile devices. Close cross can be changed for dark or light background.
209
 
210
  == Notes ==
211
  FOR TUTORIAL AND FAQ VISIT THE OFFICIAL SITE [CLICK HERE!](http://www.itro.eu/?page_id=390)
templates/itro-popup-template.php CHANGED
@@ -14,12 +14,29 @@ function itro_popup_template()
14
  }
15
  ?>
16
  </div> <?php
17
- if ( itro_get_option('age_restriction') == NULL )
18
- {?>
19
- <img id="close_cross" src="<?php echo itroPath . 'images/close-icon.png'; ?>" title="<?php _e('CLOSE','itro-plugin'); ?>" onclick="jQuery('#itro_popup').fadeOut(function(){itro_opaco.style.visibility='hidden';})">
20
- <div id="popup_countdown" align="center"><?php _e('This popup will be closed in: ','itro-plugin'); ?> <b id="timer"></b></div>
21
- <?php
22
- } ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
  </div>
24
  <div id="itro_opaco" style="visibility:hidden"></div>
25
  <?php
14
  }
15
  ?>
16
  </div> <?php
17
+ if( itro_get_option('age_restriction') == NULL )
18
+ {
19
+ if( itro_get_option('popup_time') != 0 )
20
+ {
21
+ echo '<div id="popup_countdown" align="center">';
22
+ _e('This popup will be closed in: ','itro-plugin');
23
+ echo '<b id="timer"></b></div>';
24
+ }
25
+
26
+ $selected_cross = itroPath . 'images/close-icon.png'; //default image (black cross)
27
+ switch( itro_get_option('cross_selected') )
28
+ {
29
+ case 'white':
30
+ $selected_cross = itroPath . 'images/close-icon-white.png';
31
+ break;
32
+ case 'white_border':
33
+ $selected_cross = itroPath . 'images/close-icon-white-border.png';
34
+ break;
35
+ }
36
+ echo '<img id="close_cross" src="' . $selected_cross . '" title="';
37
+ _e('CLOSE','itro-plugin');
38
+ echo '" onclick="jQuery(\'#itro_popup\').fadeOut(function(){itro_opaco.style.visibility=\'hidden\';})">';
39
+ }?>
40
  </div>
41
  <div id="itro_opaco" style="visibility:hidden"></div>
42
  <?php